- spelling corrections (#112728).

CVS patchset: 7047
CVS date: 2003/12/30 13:14:49
This commit is contained in:
jbj 2003-12-30 13:14:49 +00:00
parent af5973adad
commit b106986999
74 changed files with 7472 additions and 6734 deletions

View File

@ -32,6 +32,7 @@
- perl.req: avoid regex misfire on '^use' in "= <<" assign (#109934).
- find-debuginfo.sh: permit stripping unwritable by non-root (#112429).
- missing build dependency (#111104).
- spelling corrections (#112728).
4.2 -> 4.2.1:
- fix: nested %if handling, optind initialization posix vs. glibc.

View File

@ -1,4 +1,4 @@
/*! \page builddpendencies Generating buiild dependencies automatically
/*! \page builddependencies Generating build dependencies automatically
As we start updating packages for the next Red Hat distro, I'd like to see
packages start to make use of build dependencies. Basically build

View File

@ -13,7 +13,7 @@ Simply use
Buildroot: <dir>
\endverbatim
in your spec file. The acutal buildroot used by RPM during the
in your spec file. The actual buildroot used by RPM during the
build will be available to you (and your %prep, %build, and %install
sections) as the environment variable RPM_BUILD_ROOT. You must
make sure that the files for the package are installed into the
@ -86,7 +86,7 @@ and specified
we would end up with the directory /usr/lib/perl5/site_perl being
owned by the library package. This directory is in fact used by ALL
perl libriares and should be owned by the package for perl not any of
perl libraries and should be owned by the package for perl not any of
its libraries. It is important that the %files command specifies all
the known directories explicitly. So this would be preferable:
@ -104,7 +104,7 @@ package is removed, RPM will try to remove each of the perl-MD5 files and
then try to remove the dir itself. If there's still files in the
site_perl directory (e.g. from other packages) then the Unix rmdir(2)
will fail and you will get a non-zero return code from RPM. If the
rmdir succeds then you will no longer have a site_perl directory on
rmdir succeeds then you will no longer have a site_perl directory on
your machine even though this directory was created when Perl was
installed.
@ -116,7 +116,7 @@ Explicit use of %files can help make the packager aware of potential
problems before they happen. When you try to install a package which
contains file names already used by other packages on the system then
RPM will warn you of the problem and give a fatal error. This error can
be overriden with --force and the installed file will be replaced by the
be overridden with --force and the installed file will be replaced by the
new file and when the new package is removed the file will be removed as well.
*/

View File

@ -1,4 +1,4 @@
/*! \page conditionalbulds Passing conditional parameters into a rpm build
/*! \page conditionalbuilds Passing conditional parameters into a rpm build
Source code is often built with optional features enabled or disabled.
When source code is packaged using rpm, the various features can be
@ -48,7 +48,7 @@ So the spec file should be written
%{?_with_ldap} \
...
\endverbatim
so that, if "--with ldap" was used as a build option, then confgure
so that, if "--with ldap" was used as a build option, then configure
will be invoked (after macro expansion) as
\verbatim
./configure --with-ldap ...

View File

@ -51,7 +51,7 @@ specifies
release=3
\endverbatim
The epoch (if present) is a monotonically inceasing integer, neither the
The epoch (if present) is a monotonically increasing integer, neither the
version or the release can contain the '-' hyphen character, and the dependency
parser does not permit white space within a definition. Unspecified epoch
and releases are assumed to be zero, and are interpreted as "providing all"
@ -78,10 +78,10 @@ strcmp(3). First, the boundaries of the segments are found using
isdigit(3)/isalpha(3). Each segment is then compared in order with the
right most segment being the least significant. The alphabetical
portions are compared using a lexical graphical ascii ordering, the
digit segments strip leading zeroes's and compare the strlen before
digit segments strip leading zeroes and compare the strlen before
doing a strcmp. If both numerical strings are equal, the longer string
is larger. Notice that the algorithm has no knowledge of decimal fractions,
and perl-5.6 is "older" than perl-5.00503 because the number 6 si less than
and perl-5.6 is "older" than perl-5.00503 because the number 6 is less than
the number 503.
The concept of "newer" used by rpm to determine when a package should be
@ -172,9 +172,9 @@ to eliminate the need for most packages to use explicit Requires: lines.
\subsection dependencies_custom Custom Automatic Dependency
The automatic dependency programs are found via macro expansion. Thus
sites can very the amount of dependnecy processing that are performed
sites can very the amount of dependency processing that are performed
locally, by changing the executable/script which is run. Dependency
processing can even be changed on a per-package basis if the macros's are
processing can even be changed on a per-package basis if the macros are
defined in the spec file. To allow for maximum configurability the
dependency programs are shell scripts which can be duplicated and edited
for site specific needs.
@ -183,7 +183,7 @@ The macros: %__find_provides, %__find_prereq, %__find_requires,
%__find_conflicts, %__find_obsoletes, if they exist, are expanded to
the name of a program to exec. For each package, the program receives
the glob'ed %files manifest on stdin and returns dependencies on stdout. The
deiscovered dependencies are parsed exactly as if they were found after
discovered dependencies are parsed exactly as if they were found after
\verbatim
Provides:
@ -210,11 +210,11 @@ which can be overridden (or even undefined) within a spec file.
Modules for interpreted languages like perl and tcl impose additional
dependency requirements on packages. A script written for an interpreter
often requires language specfic modules to be installed in order to execute
correctly. In order to automatically detect langiage specific modules, each
often requires language specific modules to be installed in order to execute
correctly. In order to automatically detect language specific modules, each
interpreter may have its own find-provides and find-requires. To prevent
module name collisions between interpreters, module names are enclosed within
parentheses and a conventional interpreter specific identifier is pre-pended:
parentheses and a conventional interpreter specific identifier is prepended:
\verbatim
@ -225,7 +225,7 @@ parentheses and a conventional interpreter specific identifier is pre-pended:
The output of a per-interpreter find-requires (notice in this example the
first requirement is a package and the rest are langague specific modules)
first requirement is a package and the rest are language specific modules)
\verbatim
Mail-Header >= 1.01
@ -247,7 +247,7 @@ with appropriate per-interpreter hooks into
/usr/lib/rpm/find-{provides,requires}
\endverbatim
@todo per-interpreter dependency generators are not located in subdiretories.
@todo per-interpreter dependency generators are not located in subdirectories.
Notice that shell dependencies will require that all %post et al scriptlets
be processed by the find-requires. Since a shell script depends on all the
@ -318,7 +318,7 @@ all, nor generate an error message.
\subsection dependencies_branching Branching Version
It is quite common to need to branch a set of sources in version
control. It is not so obvious how those branches should be repesented
control. It is not so obvious how those branches should be represented
in the package version numbers. Here is one solution.
You have a bag of features that are injected into a package in a
@ -356,7 +356,7 @@ Another alternative scheme might be:
\subsection dependencies_build Build dependencies
The following dependencies are availible at build time. These are
The following dependencies are available at build time. These are
similar to the install time version but these apply only during
package creation and are specified in the specfile not in the binary
package.

View File

@ -3,11 +3,11 @@
The header data structure has changed in rpm-4.0.[12] to preserve the
original header from a package. The goal is to keep the original
header intact so that metadata can be verified separately from the
payload by the RHN up2date client and by the rpm commmand line verify
payload by the RHN up2date client and by the rpm command line verify
mode using signatures saved in the rpm database. I believe the change
is entirely forward and backward compatible, and will not require
any artifacts like changing the version number of packaging or
adding an "rpmlib(...)" tracking dependendency. We'll see ...
adding an "rpmlib(...)" tracking dependency. We'll see ...
Here's a short description of the change. An rpm header has three sections:
\verbatim

View File

@ -22,8 +22,8 @@ All whitespace surrounding <body> is removed. Name may be composed
of alphanumeric characters, and the character `_' and must be at least
3 characters in length. A macro without an (opts) field is "simple" in that
only recursive macro expansion is performed. A parameterized macro contains
an (opts) field. The opts (i.e. string between parantheses) is passed
exactly as is to getopts(3) for argc/argv processing at the beginning of
an (opts) field. The opts (i.e. string between parentheses) is passed
exactly as is to getopt(3) for argc/argv processing at the beginning of
a macro invocation. While a parameterized macro is being expanded, the
following shell-like macros are available:
@ -167,7 +167,7 @@ This expands to:
(echo -n "My arg is 5" ; sleep 5 ; echo done.)
\endverbatim
This will cause all occurances of %1 in the macro definition to be
This will cause all occurrences of %1 in the macro definition to be
replaced by the first argument to the macro, but only if the macro
is invoked as "%mymacro 5". Invoking as "%{mymacro} 5" will not work
as desired in this case.

View File

@ -150,7 +150,7 @@ braces.
\subsection queryformat_example Example: Viewing the Verify Flags
The follwing example query is run against dev becuase I know %verify
The following example query is run against dev because I know %verify
is used there.
\verbatim
rpm -q --qf '[%{filenames} %{fileverifyflags}\n]' dev

View File

@ -1,4 +1,4 @@
/*! \page relocateable Relocateable packages
/*! \page relocatable Relocatable packages
Relocatable packages are a way to give the user a little control
over the installation location of a package. For example, a vendor
@ -6,7 +6,7 @@ may distribute their software to install in "/opt" but you'd like
it to install in "/usr/opt". If the vendor were distributing a
relocatable RPM package, it would be easy.
\subsection relcateable_building Building a Relocatable Package
\subsection relocatable_building Building a Relocatable Package
Not all software can be "relocatable". Before continuing you should
think about how the program works, what files it accesses, what other
@ -35,7 +35,7 @@ into the spec file so that the /usr and /etc directories may be
relocated separately when this package is installed.
\subsection relcateable_installing Installing Relocatable Packages
\subsection relocatable_installing Installing Relocatable Packages
By default, RPM will install a relocatable package in the prefix
directory listed in the spec file. You can override this on the
@ -51,7 +51,7 @@ separately by using syntax like:
rpm ... --relocate /opt=/usr/opt --relocate /etc=/usr/etc ...
\endverbatim
If any of the Prefixs are not being relocated they can be skipped on
If any of the Prefixes is not being relocated they can be skipped on
the command line
*/

View File

@ -64,7 +64,7 @@ Package signature verification is the same as previous releases:
rpm -K <package>
\endverbatim
RPM will verify evey signature in the package, which may include
RPM will verify every signature in the package, which may include
more than one PGP signature. The output indicates what types of
signatures are being checked. If any checks fail you'll see a
"NOT OK" message, and you should be worried.

View File

@ -5,9 +5,9 @@ A few additions have been made to the spec file format.
Name
The Name tag contains the proper name of the package. Names must not
include whitespace and may include a hyphan '-' (unlike version and release
include whitespace and may include a hyphen '-' (unlike version and release
tags). Names should not include any numeric operators ('<', '>','=') as
future versions of rpm may need to reserve charcters other than '-'.
future versions of rpm may need to reserve characters other than '-'.
By default subpackages are named by prepending `<main package>-' to
the subpackages name(s). If you wish to change the name of a
@ -61,7 +61,7 @@ might be changed to:
\endverbatim
The description is free form text, but there are two things to note.
The first regards reformating. Lines that begin with white space
The first regards reformatting. Lines that begin with white space
are considered "pre-formatted" and will be left alone. Adjacent
lines without leading whitespace are considered a single paragraph
and may be subject to formatting by glint or another RPM tool.
@ -78,7 +78,7 @@ package contains).
\subsection specfile_buildarchitectures BuildArchitectures: Tag
This tag specifies the arctecture which the resulting binary package
This tag specifies the architecture which the resulting binary package
will run on. Typically this is a CPU architecture like sparc,
i386. The string 'noarch' is reserved for specifying that the
resulting binary package is platform independent. Typical platform
@ -108,11 +108,11 @@ script so that false problems are not displayed during package verification.
%verify(not size md5 mtime) %{prefix}/bin/javaswarm
\endverbatim
\subsection specfile_globbing Shell Gobbing of %files Section
\subsection specfile_globbing Shell Globbing of %files Section
The usual rules for shell globbing apply. Most special characters can
be escaped by prefixing them with a '\'. Spaces are used to separate
file names and so must be escaped by enclsing the file name with quotes.
file names and so must be escaped by enclosing the file name with quotes.
For example:
\verbatim
@ -202,7 +202,7 @@ you would add
\endverbatim
to your spec file.
If your package was like dump and could not be built w/o a specific vesion of
If your package was like dump and could not be built w/o a specific version of
the libraries to access an ext2 file system, you could express this as
\verbatim
BuildRequires: e2fsprofs-devel = 1.17-1

View File

@ -13,7 +13,7 @@ Say the package "mymailer" needs an /etc/mymailer/mailer symlink which points
to the mail transport agent to use. If sendmail is installed, the link should
point to /usr/bin/sendmail, but it vmail is installed, the link should
instead point to /usr/bin/vmail. If both packages are present, we don't care
where the link points (realisticaly, sendmail and vmail should conflict
where the link points (realistically, sendmail and vmail should conflict
with one another), while if neither package is installed the link should
not exist at all.

View File

@ -338,7 +338,7 @@ This is intended to make \fBrpm\fR easy to run from
other tools.
.TP
\fB--prefix \fINEWPATH\fB\fR
For relocateable binary packages, translate all file paths that
For relocatable binary packages, translate all file paths that
start with the installation prefix in the package relocation hint(s)
to \fINEWPATH\fR.
.TP

View File

@ -88,7 +88,7 @@ The default \fIFILELIST\fR is
Pipes the output of \fBrpm\fR to the command \fICMD\fR.
.TP
\fB--dbpath \fIDIRECTORY\fB\fR
Use the database in \fIDIRECTORY\fR rathen
Use the database in \fIDIRECTORY\fR rather
than the default path \fI/var/lib/rpm\fR
.TP
\fB--root \fIDIRECTORY\fB\fR

View File

@ -28,7 +28,7 @@ There are no \fBrpmcache\fR specific options, only common \fBrpm\fR options.
See the \fBrpmcache\fR usage message for what is currently implemented.
.PP
The file tree path to be searched is configured using rpm
macros. The final path is the concatentaion of 5 individual
macros. The final path is the concatenation of 5 individual
elements. Here are the macro names used to configure \fBrpmcache\fR, in
the same order that they will be concatenated to build the
file tree path that will be walked:

View File

@ -174,7 +174,7 @@ struct poptOption rpmInstallPoptTable[] = {
{ "badreloc", '\0', POPT_BIT_SET,
&rpmIArgs.probFilter, RPMPROB_FILTER_FORCERELOCATE,
N_("relocate files in non-relocateable package"), NULL},
N_("relocate files in non-relocatable package"), NULL},
{ "dirstash", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
&rpmIArgs.transFlags, RPMTRANS_FLAG_DIRSTASH,
N_("save erased package files by renaming into sub-directory"), NULL},

View File

@ -1238,7 +1238,7 @@ assert(psm->mi == NULL);
if (fc <= 0) break;
/*
* Old format relocateable packages need the entire default
* Old format relocatable packages need the entire default
* prefix stripped to form the cpio list, while all other packages
* need the leading / stripped.
*/

View File

@ -534,7 +534,7 @@ if (fileURL[0] == '=') {
const char * name;
xx = headerNVR(eiu->h, &name, NULL, NULL);
rpmMessage(RPMMESS_ERROR,
_("package %s is not relocateable\n"), name);
_("package %s is not relocatable\n"), name);
eiu->numFailed++;
goto exit;
/*@notreached@*/

View File

@ -220,7 +220,7 @@ const char * rpmProblemString(const rpmProblem prob)
break;
case RPMPROB_BADRELOCATE:
rc = snprintf(buf, nb,
_("path %s in package %s is not relocateable"),
_("path %s in package %s is not relocatable"),
str1, pkgNEVR);
break;
case RPMPROB_NEW_FILE_CONFLICT:

View File

@ -28,7 +28,7 @@ typedef enum rpmProblemType_e {
RPMPROB_BADARCH, /*!< package ... is for a different architecture */
RPMPROB_BADOS, /*!< package ... is for a different operating system */
RPMPROB_PKG_INSTALLED, /*!< package ... is already installed */
RPMPROB_BADRELOCATE,/*!< path ... is not relocateable for package ... */
RPMPROB_BADRELOCATE,/*!< path ... is not relocatable for package ... */
RPMPROB_REQUIRES, /*!< package ... has unsatisfied Requires: ... */
RPMPROB_CONFLICT, /*!< package ... has unsatisfied Conflicts: ... */
RPMPROB_NEW_FILE_CONFLICT, /*!< file ... conflicts between attemped installs of ... */

598
po/cs.po

File diff suppressed because it is too large Load Diff

600
po/da.po

File diff suppressed because it is too large Load Diff

595
po/de.po

File diff suppressed because it is too large Load Diff

595
po/fi.po

File diff suppressed because it is too large Load Diff

600
po/fr.po

File diff suppressed because it is too large Load Diff

599
po/gl.po

File diff suppressed because it is too large Load Diff

605
po/is.po

File diff suppressed because it is too large Load Diff

595
po/ja.po

File diff suppressed because it is too large Load Diff

600
po/ko.po

File diff suppressed because it is too large Load Diff

626
po/no.po

File diff suppressed because it is too large Load Diff

600
po/pl.po

File diff suppressed because it is too large Load Diff

600
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

599
po/ro.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

600
po/ru.po

File diff suppressed because it is too large Load Diff

595
po/sk.po

File diff suppressed because it is too large Load Diff

605
po/sl.po

File diff suppressed because it is too large Load Diff

595
po/sr.po

File diff suppressed because it is too large Load Diff

600
po/sv.po

File diff suppressed because it is too large Load Diff

600
po/tr.po

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-07-24 00:03+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "neznámé èíslo chyby"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "volba (%d) není v popt implementována\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "chybí argument"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "neznámá volba"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "po¾adovány vzájemnì výluèné logické operace"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg nesmí být NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "aliasy vnoøené pøíli¹ hluboko"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "chyba v quotování parametrù"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "chybná numerická hodnota"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "èíslo je pøíli¹ velké nebo pøíli¹ malé"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "selhala alokace pamìti"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "neznámá chyba"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Vypí¹e tuto nápovìdu"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Vypí¹e krátký návod k pou¾ití"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Zobrazit implicitní volby ve zprávì"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "NONE"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Pou¾ití:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[VOLBY...]"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: Sun Jan 21 2001 04:30:32+0200\n"
"Last-Translator: Martin Hansen <mah@k64.dk>\n"
"Language-Team: Dansk <dansk@klid.dk>\n"
@ -15,100 +15,100 @@ msgstr ""
msgid "unknown errno"
msgstr "ukendt fejlnr."
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "tilvalgstype (%d) er ikke implementeret i popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "mangler argument"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "ukendt tilvalg"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "de ønskede handlinger udelukker hinanden"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "aliaser er for dybt indlejret"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "fejl i parameter citering"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "ugyldig numerisk værdi"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "nummer for stort, eller for lille"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "ukendt fejl"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Vis denne hjælpemeddelelse"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Vis kortfattet brugsanvisning"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Vis kortfattet brugsanvisning"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "INGEN"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Brug:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[TILVALG...]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Leandro Lucarella <luca@linuxmendoza.org.ar>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,100 +19,100 @@ msgstr ""
msgid "unknown errno"
msgstr "errno desconocido"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "tipo de opcin (%d) no implementada en popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "falta argumento"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "opcin desconocida"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "requerida operacin lgica mutuamente exclusiva"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "alias anidados muy profundamente"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "error en cita de parmetros"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "valor numrico invlido"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "nmero muy largo o muy pequeo"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "error desconocido"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Muestra este mensaje de ayuda"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Indica el modo de uso resumido"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Indica el modo de uso resumido"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "NONE"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Modo de Uso:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[OPCIN...]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.8.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2003-06-22 23:43+0200\n"
"Last-Translator: RPM French Translation <rpm-fr@livna.org>\n"
"Language-Team: RPM French Translation <rpm-fr@livna.org>\n"
@ -24,99 +24,99 @@ msgstr ""
msgid "unknown errno"
msgstr "errno inconnu"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "type(%d) d'option non implémenté dans popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "argument manquant"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "option iconnue"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "opérations logiques mutuellement exclusives requises"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg ne devrait pas être NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "les alias sont trop entremellés"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "erreur en citant les paramètres"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "valeur numérique invalide"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "nombre trop grand ou trop petit"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "échec de l'allocation de mémoire"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "erreur inconnue"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Montre ce message d'aide"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Affiche un bref descriptif de l'utilisation"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Afficher les valeurs par défaut des options dans le message"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "RIEN"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "ENTIER"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "CHAINE"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOTTANT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Utilisation:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[OPTION...]"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-01-17 01:01+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@ -14,100 +14,100 @@ msgstr ""
msgid "unknown errno"
msgstr "errno descoñecido"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "tipo de opción (%d) non implementada en popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "falta un argumento"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "opción descoñecida"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "solicitáronse operacións lóxicas mutuamente excluíntes"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "aliases aniñados a un nivel demasiado profundo"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "erro nas comiñas do parámetro"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "valor numérico non válido"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "número demasiado grande ou pequeno"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "erro descoñecido"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Amosar esta mensaxe de axuda"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Amosar brevemente o xeito de utilización"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Amosar brevemente o xeito de utilización"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "NADA"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "CADEA"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Uso:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[OPCIÓN...]"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2000-08-03 23:26+0200\n"
"Last-Translator: László Németh <nemeth@qwertynet.hu>\n"
"Language-Team: Hungarian\n"
@ -14,100 +14,100 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "E súgó megjelenítése"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Rövid használati utasítás megjelenítése"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Rövid használati utasítás megjelenítése"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-06-08 01:35+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "óþekkt villunúmer"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "rofagerðin (%d) er ekki studd í popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "vantar viðfang"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "óþekktur rofi"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "beðið um rofa sem slökkva hvor á öðrum"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg ætti ekki að vera NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "alíasar of flóknir"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "villa í viðföngum (gæsalappir og svo frv.)"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "ógilt tölulegt gildi"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "talan of stór eða smá"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "ekki tókst að taka frá minni"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "óþekkt villa"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Sýna þessa hjálp"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Sýna stuttar notkunarleiðbeiningar"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Sýna sjálfgefin gildi rofa í skilaboðum"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "ENGIN"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Notkun:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[ROFI...]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-09-06 20:06+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "알 수 없는 오류코드(errno) 입니다"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "옵션 유형 (%d)은 popt에서 사용할 수 없습니다\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "인수가 지정되지 않았습니다"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "알 수 없는 옵션입니다"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "양쪽에 배타적 논리 연산이 지정되었습니다"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "옵션->인수가 NULL이 되어서는 안됩니다"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "별칭(alias)이 복잡하게 설정되었습니다"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "매개변수에 오류가 있습니다"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "잘못된 수치 값입니다"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "숫자가 너무 크거나 너무 적습니다"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "메모리 할당에 실패했습니다"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "알 수 없는 오류입니다"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "이 도움말을 보여줍니다"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "간단한 사용법을 보여줍니다"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "기본적인 옵션을 보여줍니다"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "없음(NONE)"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "값(VAL)"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "정수(INT)"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "정수(LONG)"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "문자열(STRING)"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "소수(FLOAT)"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "소수(DOUBLE)"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "인수(ARG)"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "사용법:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[옵션...]"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-06-27 11:05+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "ukjent errno"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "flaggtype (%d) ikke implementert i popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "manglende argument"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "ukjent flagg"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "gjensidig eksluderende logiske operasjoner forespurt"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg må ikke være NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "aliaser med for dype løkker"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "feil i parametersitering"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "ugyldig numerisk verdi"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "tallet er for stort eller lite"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "minneallokering feilet"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "ukjent feil"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Vis denne hjelpmeldingen"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Vis kort bruksmelding"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Vis forvalgte flagg i melding"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "INGEN"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VERDI"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "HELTALL"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRENG"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLYTTALL"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Bruk:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[FLAGG...]"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.9-20030515\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2003-06-08 20:32+0200\n"
"Last-Translator: Jakub Bogusz <qboosh@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@ -18,100 +18,100 @@ msgstr ""
msgid "unknown errno"
msgstr "nieznane errno"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "rodzaj opcji (%d) nie zaimplementowany w popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "brak parametru"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "nieznana opcja"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "¿±danie wykluczaj±cych siê operacji"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg nie mo¿e byæ NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "zbyt du¿e zag³êbienie aliasów"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "b³±d w cytowaniu parametru"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "b³êdna warto¶æ liczbowa"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "liczba zbyt du¿a lub zbyt ma³a"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "b³±d alokacji pamiêci"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "nieznany b³±d"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Poka¿ tê pomoc"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Wy¶wietl skrócony sposób u¿ycia"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Wy¶wietl domy¶lne opcje w opisie"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "BRAK"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "WART"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "£AÑCUCH"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "PARAM"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Sk³adnia:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[OPCJA...]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -20,99 +20,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2002-02-13 18:32+0000\n"
"Last-Translator: Pedro Morais <morais@kde.org>\n"
"Language-Team: pt <morais@kde.org>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "errno desconhecido"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "tipo de opção (%d) não implementado no popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "falta um argumento"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "opção desconhecida"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "foram pedidas operações lógicas mutuamente exclusivas"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg não deve ser NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "'aliases' demasiado aninhados"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "erros no 'quoting' de parâmetros"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "valor númerico inválido"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "número demasiado grando ou pequeno"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "alocação de memória falhou"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "erro desconhecido"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Mostrar esta mensagem de ajuda"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Mostrar uma mensagem de utilização sucinta"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Mostrar valor por omissão das opções na mensagem"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "NONE"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Utilização:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[OPÇÃO...]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2000-06-14 23:23+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@ -14,101 +14,101 @@ msgstr ""
msgid "unknown errno"
msgstr "eroare necunoscuta"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "optiunea de tipul (%d) nu este implementata in popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "argument lipsa"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "optiune necunoscuta"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "recursivitate infinita la optiunile sinonime"
#: popt.c:1174
#: popt.c:1194
#, fuzzy
msgid "error in parameter quoting"
msgstr "eroare la insertie parametru"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "valoare numarica invalida"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "numar prea mare sau prea mic"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "eroare necuinoscuta"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Afisare mesaj de help"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Afisare mesaj sintaxa sumar"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Afisare mesaj sintaxa sumar"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Sintaxa:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[OPTIUNE...]"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-07-05 21:00-0500\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÎÏÍÅÒ ÏÛÉÂËÉ"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "ÏÂÒÁÂÏÔËÁ ÐÁÒÁÍÅÔÒÁ (%d) × popt ÎÅ ÐÒÅÄÕÓÍÏÔÒÅÎÁ\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "ÐÒÏÐÕÝÅÎ ÁÒÇÕÍÅÎÔ"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÐÁÒÁÍÅÔÒ"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "ÚÁÐÒÏÛÅÎÙ ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÝÉÅ ÌÏÇÉÞÅÓËÉÅ ÏÐÅÒÁÃÉÉ"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg ÎÅ ÍÏÖÅÔ ÂÙÔØ NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "ÐÒÅ×ÙÛÅÎ ÕÒÏ×ÅÎØ ÄÏÐÕÓÔÉÍÏÊ ÒÅËÕÒÓÉÉ ÐÏÄÓÔÁÎÏ×ÏË"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "ÏÛÉÂËa ÐÏÍÅÝÅÎÉÑ ÐÁÒÁÍÅÔÒÏ× × ËÁ×ÙÞËÉ"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "ÎÅÐÒÁ×ÉÌØÎÏÅ ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ ÚÁ ÐÒÅÄÅÌÁÍÉ ÐÒÅÄÕÓÍÏÔÒÅÎÎÏÇÏ"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "ÏÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ ÐÁÍÑÔÉ"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "ðÏËÁÚÁÔØ ÜÔÏ ÓÏÏÂÝÅÎÉÅ"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "ðÏËÁÚÁÔØ ËÒÁÔËÕÀ ÉÎÓÔÒÕËÃÉÀ ÐÏ ÉÓÐÏÌØÚÏ×ÁÎÉÀ"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "ðÏËÁÚÁÔØ ÐÁÒÁÍÅÔÒÙ ÐÏ ÕÍÏÌÞÁÎÉÀ"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "NONE"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VAL"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[ðáòáíåôò...]"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 1999-08-04 21:40+0200\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@ -18,100 +18,100 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Vypísa» túto správu"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Zobrazi» struèný návod na pou¾itie"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Zobrazi» struèný návod na pou¾itie"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2000-09-05 12:30+0200\n"
"Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@ -14,100 +14,100 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Prika¾i to sporoèilo s pomoèjo"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Prika¾i kratko sporoèilo o uporabi"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Prika¾i kratko sporoèilo o uporabi"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2001-07-12 22:26+0100\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
@ -14,99 +14,99 @@ msgstr ""
msgid "unknown errno"
msgstr "okänt felnummer"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "flaggtypen (%d) är inte implementerad i popt\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "argument saknas"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "okänd flagga"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "ömsesidigt uteslutande logiska operationer begärdes"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr "opt->arg får inte vara NULL"
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "alias är nästlade för djupt"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "fel i parametercitering"
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "ogiltigt numeriskt värde"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "talet för stort eller för litet"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr "minnesallokering misslyckades"
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "okänt fel"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Visa denna hjälptext"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Visa en kortfattad användningstext"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr "Visa standardalternativ för flaggor i meddelande"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "INGET"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "VÄRDE"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "HELTAL"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LÅNG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRÄNG"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLYTTAL"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DUBBEL"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Användning:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[FLAGGA...]"

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 2000-02-11 13:01+0200\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
@ -14,100 +14,100 @@ msgstr ""
msgid "unknown errno"
msgstr "bilinmeyen hata no"
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr "seçenek türü (%d) popt için geçersiz\n"
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr "argüman eksik"
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr "bilinmeyen seçenek"
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr "birbirini dýþlayan mantýksal iþlemler istendi"
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr "adlarda çok fazla içiçelikler"
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr "parametrelerde týrnak iþaretleme hatalý "
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr "sayýsal deðer geçersiz"
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr "sayý ya çok büyük ya da çok küçük"
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr "bilinmeyen hata"
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Bu yardým iletisini gösterir"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Kýsa bir kullaným iletisi göster"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Kýsa bir kullaným iletisi göster"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr "YOK"
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr "DEÐ"
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr "INT"
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr "LONG"
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr "STRING"
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr "FLOAT"
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr "DOUBLE"
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr "ARG"
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr "Kullanýmý:"
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr "[SEÇENEK...]"

View File

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 1999-09-30 16:54+0200\n"
"Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@ -18,100 +18,100 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "ðÏËÁÚÁÔÉ ÃÀ ÄÏצÄËÕ"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
"Last-Translator: Nobody yet\n"
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
@ -22,100 +22,100 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "Mostrer ci messaedje d' aide chal"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "Mostre on court messaedje so kmint vos è siervi"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "Mostre on court messaedje so kmint vos è siervi"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,99 +19,99 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr ""
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr ""
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
msgid "Display option defaults in message"
msgstr ""
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

View File

@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: popt 1.6.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-12-07 15:21-0500\n"
"POT-Creation-Date: 2003-12-30 08:12-0500\n"
"PO-Revision-Date: 1999-11-11 05:04+0800\n"
"Last-Translator: Dillion Chen <dillon.chen@turbolinux.com.cn>\n"
"Language-Team: TLDN\n"
@ -14,100 +14,100 @@ msgstr ""
msgid "unknown errno"
msgstr ""
#: popt.c:944
#: popt.c:964
#, c-format
msgid "option type (%d) not implemented in popt\n"
msgstr ""
#: popt.c:1164
#: popt.c:1184
msgid "missing argument"
msgstr ""
#: popt.c:1166
#: popt.c:1186
msgid "unknown option"
msgstr ""
#: popt.c:1168
#: popt.c:1188
msgid "mutually exclusive logical operations requested"
msgstr ""
#: popt.c:1170
#: popt.c:1190
msgid "opt->arg should not be NULL"
msgstr ""
#: popt.c:1172
#: popt.c:1192
msgid "aliases nested too deeply"
msgstr ""
#: popt.c:1174
#: popt.c:1194
msgid "error in parameter quoting"
msgstr ""
#: popt.c:1176
#: popt.c:1196
msgid "invalid numeric value"
msgstr ""
#: popt.c:1178
#: popt.c:1198
msgid "number too large or too small"
msgstr ""
#: popt.c:1180
#: popt.c:1200
msgid "memory allocation failed"
msgstr ""
#: popt.c:1184
#: popt.c:1204
msgid "unknown error"
msgstr ""
#: popthelp.c:61
#: popthelp.c:58 popthelp.c:73
msgid "Show this help message"
msgstr "显示这条帮助信息"
#: popthelp.c:62
#: popthelp.c:59 popthelp.c:74
msgid "Display brief usage message"
msgstr "显示简短使用信息"
#: popthelp.c:65
#: popthelp.c:62 popthelp.c:77
#, fuzzy
msgid "Display option defaults in message"
msgstr "显示简短使用信息"
#: popthelp.c:107
#: popthelp.c:122
msgid "NONE"
msgstr ""
#: popthelp.c:109
#: popthelp.c:124
msgid "VAL"
msgstr ""
#: popthelp.c:113
#: popthelp.c:128
msgid "INT"
msgstr ""
#: popthelp.c:114
#: popthelp.c:129
msgid "LONG"
msgstr ""
#: popthelp.c:115
#: popthelp.c:130
msgid "STRING"
msgstr ""
#: popthelp.c:116
#: popthelp.c:131
msgid "FLOAT"
msgstr ""
#: popthelp.c:117
#: popthelp.c:132
msgid "DOUBLE"
msgstr ""
#: popthelp.c:118
#: popthelp.c:133
msgid "ARG"
msgstr ""
#: popthelp.c:493
#: popthelp.c:508
msgid "Usage:"
msgstr ""
#: popthelp.c:517
#: popthelp.c:532
msgid "[OPTION...]"
msgstr ""

2
rpm.c
View File

@ -434,7 +434,7 @@ static void printHelp(void) {
printHelpLine(_(" --relocate <oldpath>=<newpath>"),
_("relocate files from <oldpath> to <newpath>"));
printHelpLine( " --badreloc ",
_("relocate files in non-relocateable package"));
_("relocate files in non-relocatable package"));
printHelpLine(_(" --prefix <dir> "),
_("relocate the package to <dir>, if relocatable"));
printHelpLine(_(" --dbpath <dir> "),

View File

@ -531,7 +531,7 @@ void legacyRetrofit(Header h, const struct rpmlead * lead)
(void) headerRemoveEntry(h, RPMTAG_FILEGIDS);
/*
* We switched the way we do relocateable packages. We fix some of
* We switched the way we do relocatable packages. We fix some of
* it up here, though the install code still has to be a bit
* careful. This fixup makes queries give the new values though,
* which is quite handy.

View File

@ -57,7 +57,7 @@ rpm alias --requires --qf \
--POPTdesc=$"list capabilities required by package(s)"
rpm alias -R --requires
rpm alias --info --qf 'Name : %-27{NAME} Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocateable)}|\n\
rpm alias --info --qf 'Name : %-27{NAME} Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocatable)}|\n\
Version : %-27{VERSION} Vendor: %{VENDOR}\n\
Release : %-27{RELEASE} Build Date: %{BUILDTIME:date}\n\
Install Date: %|INSTALLTIME?{%-27{INSTALLTIME:date}}:{(not installed) }| Build Host: %{BUILDHOST}\n\
@ -334,7 +334,7 @@ rpmq alias --requires --qf \
--POPTdesc=$"list capabilities required by package(s)"
rpmq alias -R --requires
rpmq alias --info --qf 'Name : %-27{NAME} Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocateable)}|\n\
rpmq alias --info --qf 'Name : %-27{NAME} Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocatable)}|\n\
Version : %-27{VERSION} Vendor: %{VENDOR}\n\
Release : %-27{RELEASE} Build Date: %{BUILDTIME:date}\n\
Install Date: %|INSTALLTIME?{%-27{INSTALLTIME:date}}:{(not installed) }| Build Host: %{BUILDHOST}\n\
@ -429,7 +429,7 @@ rpmquery alias --requires --qf \
--POPTdesc=$"list capabilities required by package(s)"
rpmquery alias -R --requires
rpmquery alias --info --qf 'Name : %-27{NAME} Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocateable)}|\n\
rpmquery alias --info --qf 'Name : %-27{NAME} Relocations: %|PREFIXES?{[%{PREFIXES} ]}:{(not relocatable)}|\n\
Version : %-27{VERSION} Vendor: %{VENDOR}\n\
Release : %-27{RELEASE} Build Date: %{BUILDTIME:date}\n\
Install Date: %|INSTALLTIME?{%-27{INSTALLTIME:date}}:{(not installed) }| Build Host: %{BUILDHOST}\n\