From 752cac72e220dcad4e6fce39508e714e59e3e0a1 Mon Sep 17 00:00:00 2001 From: jbj Date: Thu, 11 Dec 2003 19:09:58 +0000 Subject: [PATCH] - only internal Berkeley db from now on. - revive "make dist". CVS patchset: 6971 CVS date: 2003/12/11 19:09:58 --- .exclude | 1 + CHANGES | 2 + Makefile.am | 6 ++- autogen.sh | 4 +- beecrypt/autogen.sh | 4 +- build/.splintrc | 1 - build/rpmfc.c | 24 +++++++-- configure.ac | 67 ++---------------------- doc/rpm.8 | 2 +- expat/autogen.sh | 4 +- file/autogen.sh | 10 ++-- file/doc/Makefile.am | 2 +- installplatform | 2 +- lib/poptALL.c | 5 ++ lib/rpmchecksig.c | 2 +- macros.in | 6 ++- po/cs.po | 131 +++++++++++++++++++++++----------------------- po/da.po | 131 +++++++++++++++++++++++----------------------- po/de.po | 131 +++++++++++++++++++++++----------------------- po/fi.po | 131 +++++++++++++++++++++++----------------------- po/fr.po | 131 +++++++++++++++++++++++----------------------- po/gl.po | 131 +++++++++++++++++++++++----------------------- po/is.po | 131 +++++++++++++++++++++++----------------------- po/ja.po | 131 +++++++++++++++++++++++----------------------- po/ko.po | 131 +++++++++++++++++++++++----------------------- po/no.po | 131 +++++++++++++++++++++++----------------------- po/pl.po | 131 +++++++++++++++++++++++----------------------- po/pt.po | 131 +++++++++++++++++++++++----------------------- po/pt_BR.po | 131 +++++++++++++++++++++++----------------------- po/ro.po | 131 +++++++++++++++++++++++----------------------- po/rpm.pot | 131 +++++++++++++++++++++++----------------------- po/ru.po | 131 +++++++++++++++++++++++----------------------- po/sk.po | 131 +++++++++++++++++++++++----------------------- po/sl.po | 133 ++++++++++++++++++++++++----------------------- po/sr.po | 131 +++++++++++++++++++++++----------------------- po/sv.po | 131 +++++++++++++++++++++++----------------------- po/tr.po | 131 +++++++++++++++++++++++----------------------- popt/po/cs.po | 53 ++++++++++--------- popt/po/da.po | 53 ++++++++++--------- popt/po/de.po | 53 ++++++++++--------- popt/po/es.po | 53 ++++++++++--------- popt/po/eu_ES.po | 53 ++++++++++--------- popt/po/fi.po | 53 ++++++++++--------- popt/po/fr.po | 53 ++++++++++--------- popt/po/gl.po | 53 ++++++++++--------- popt/po/hu.po | 53 ++++++++++--------- popt/po/id.po | 53 ++++++++++--------- popt/po/is.po | 53 ++++++++++--------- popt/po/it.po | 53 ++++++++++--------- popt/po/ja.po | 53 ++++++++++--------- popt/po/ko.po | 53 ++++++++++--------- popt/po/no.po | 53 ++++++++++--------- popt/po/pl.po | 39 +++++++------- popt/po/popt.pot | 53 ++++++++++--------- popt/po/pt.po | 53 ++++++++++--------- popt/po/pt_BR.po | 53 ++++++++++--------- popt/po/ro.po | 53 ++++++++++--------- popt/po/ru.po | 53 ++++++++++--------- popt/po/sk.po | 53 ++++++++++--------- popt/po/sl.po | 53 ++++++++++--------- popt/po/sr.po | 53 ++++++++++--------- popt/po/sv.po | 53 ++++++++++--------- popt/po/tr.po | 53 ++++++++++--------- popt/po/uk.po | 53 ++++++++++--------- popt/po/wa.po | 53 ++++++++++--------- popt/po/zh.po | 53 ++++++++++--------- popt/po/zh_CN.GB2312.po | 53 ++++++++++--------- python/Makefile.am | 3 +- python/rpmdb/Makefile.am | 3 +- rpm.spec.in | 17 ++++-- rpmdb/Makefile.am | 27 +++++----- rpmrc.in | 13 +++-- tools/convertdb1.c | 4 ++ zlib/Makefile.am | 3 +- 74 files changed, 2288 insertions(+), 2253 deletions(-) diff --git a/.exclude b/.exclude index 4690ee6..3bbafb9 100644 --- a/.exclude +++ b/.exclude @@ -5,6 +5,7 @@ CVS .libs apidocs autodeps +autom4te.cache intl scripts po diff --git a/CHANGES b/CHANGES index 5c6a575..1b2e06b 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,8 @@ - permit secondary tag match patterns with RPMQV_ALL. - fix: cut-n-paste error setting nopromote for Conflicts: (#81965). - don't use error string after gzclose (Dmitry V. Levin). + - only internal Berkeley db from now on. + - revive "make dist". 4.2 -> 4.2.1: - fix: nested %if handling, optind initialization posix vs. glibc. diff --git a/Makefile.am b/Makefile.am index dac6074..a2596e2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -172,7 +172,11 @@ install-data-local: mipsel*) $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/mipsel ;;\ mips*) $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/mips ;;\ powerpc*) $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppc ;\ - $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppc64 ;;\ + $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppciseries ;\ + $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppcpseries ;\ + $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppc64 ;\ + $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppc64iseries ;\ + $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/ppc64pseries ;;\ *) $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/@host_cpu@ ;;\ esac $(mkinstalldirs) $(DESTDIR)$(pkgsrcdir)/RPMS/noarch diff --git a/autogen.sh b/autogen.sh index 3348b57..50331a7 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,12 +5,12 @@ export LDFLAGS LTV="libtoolize (GNU libtool) 1.5" ACV="autoconf (GNU Autoconf) 2.57" -AMV="automake (GNU automake) 1.7.8" +AMV="automake (GNU automake) 1.7.9" USAGE=" This script documents the versions of the tools I'm using to build rpm: libtool-1.5 autoconf-2.57 - automake-1.7.8 + automake-1.7.9 Simply edit this script to change the libtool/autoconf/automake versions checked if you need to, as rpm should build (and has built) with all recent versions of libtool/autoconf/automake. diff --git a/beecrypt/autogen.sh b/beecrypt/autogen.sh index abb1bdf..02d297f 100755 --- a/beecrypt/autogen.sh +++ b/beecrypt/autogen.sh @@ -5,12 +5,12 @@ export LDFLAGS LTV="libtoolize (GNU libtool) 1.5" ACV="autoconf (GNU Autoconf) 2.57" -AMV="automake (GNU automake) 1.7.8" +AMV="automake (GNU automake) 1.7.9" USAGE=" This script documents the versions of the tools I'm using to build rpm: libtool-1.5 autoconf-2.57 - automake-1.7.8 + automake-1.7.9 Simply edit this script to change the libtool/autoconf/automake versions checked if you need to, as rpm should build (and has built) with all recent versions of libtool/autoconf/automake. diff --git a/build/.splintrc b/build/.splintrc index 94feff0..548a245 100644 --- a/build/.splintrc +++ b/build/.splintrc @@ -3,7 +3,6 @@ +partial +forcehints -#-warnunixlib -warnposix +unixlib diff --git a/build/rpmfc.c b/build/rpmfc.c index 3d5813e..0c60715 100644 --- a/build/rpmfc.c +++ b/build/rpmfc.c @@ -733,8 +733,8 @@ static int rpmfcSCRIPT(rpmfc fc) * @return 0 on success */ static int rpmfcELF(rpmfc fc) - /*@globals fileSystem, internalState @*/ - /*@modifies fc, fileSystem, internalState @*/ + /*@globals rpmGlobalMacroContext, h_errno, fileSystem, internalState @*/ + /*@modifies fc, rpmGlobalMacroContext, fileSystem, internalState @*/ { #if HAVE_GELF_H && HAVE_LIBELF const char * fn = fc->fn[fc->ix]; @@ -762,6 +762,13 @@ static int rpmfcELF(rpmfc fc) int isElf64; int isDSO; int gotSONAME = 0; + static int filter_GLIBC_PRIVATE = 0; + static int oneshot = 0; + + if (oneshot == 0) { + oneshot = 1; + filter_GLIBC_PRIVATE = rpmExpandNumeric("%{?_filter_GLIBC_PRIVATE}"); + } /* Files with executable bit set only. */ if (stat(fn, st) != 0) @@ -823,7 +830,11 @@ static int rpmfcELF(rpmfc fc) soname = xstrdup(s); auxoffset += aux->vda_next; /*@innercontinue@*/ continue; - } else if (soname != NULL) { + } else + if (soname != NULL + && !(filter_GLIBC_PRIVATE != 0 + && !strcmp(s, "GLIBC_PRIVATE"))) + { buf[0] = '\0'; t = buf; t = stpcpy( stpcpy( stpcpy( stpcpy(t, soname), "("), s), ")"); @@ -878,7 +889,12 @@ static int rpmfcELF(rpmfc fc) s = elf_strptr(elf, shdr->sh_link, aux->vna_name); if (s == NULL) /*@innerbreak@*/ break; - if (soname != NULL) { + + /* Filter dependencies that contain GLIBC_PRIVATE */ + if (soname != NULL + && !(filter_GLIBC_PRIVATE != 0 + && !strcmp(s, "GLIBC_PRIVATE"))) + { buf[0] = '\0'; t = buf; t = stpcpy( stpcpy( stpcpy( stpcpy(t, soname), "("), s), ")"); diff --git a/configure.ac b/configure.ac index 7396ec5..8173264 100644 --- a/configure.ac +++ b/configure.ac @@ -472,58 +472,11 @@ dnl for this macro (not LIBS=...), otherwise the check for dbopen dnl will fail. AC_CHECK_LIB(port, writev) -WITH_DB_SUBDIR= -WITH_INTERNAL_DB=0 -DBLIBSRCS="" -libdb3="" -libdb3a="" - -dnl -dnl Detect whether internal Berkeley DB should be built. -dnl -withval=yes -AC_ARG_WITH(db, [ --without-db do not use internal Berkeley db]) - -if test $withval = no ; then -dnl ------------------ without internal db - -AC_CHECK_HEADERS(db3/db.h) - -dnl Check for Berkeley db3 API. -AC_CHECK_FUNC(db_create, [DBLIBSRCS="$DBLIBSRCS db3.c"], - AC_CHECK_LIB(db-3.2, db_create, [DBLIBSRCS="$DBLIBSRCS db3.c"; libdb3="-ldb-3.2"], - AC_CHECK_LIB(db-3.1, db_create, [DBLIBSRCS="$DBLIBSRCS db3.c"; libdb3="-ldb-3.1"], - AC_CHECK_LIB(db-3.0, db_create, [DBLIBSRCS="$DBLIBSRCS db3.c"; libdb3="-ldb-3.0"], - AC_CHECK_LIB(db, db_create, [DBLIBSRCS="$DBLIBSRCS db3.c"; libdb3="-ldb"], - ) - ) - ) - ) -) - -if test X"$DBLIBSRCS" = X; then - AC_MSG_ERROR([sorry rpm requires libdb-3.x.a (from the Berkeley db package)]) -fi - -if test -n "$libdb3" -a -n "$libthread" ; then - AC_MSG_CHECKING(whether $libdb3 needs $libthread) - saveLIBS="$LIBS" - LIBS="$LIBS $libdb3" - AC_TRY_LINK_FUNC(db_create, AC_MSG_RESULT(no), - [libdb3="$libdb3 $libthread"; AC_MSG_RESULT(yes)]) - LIBS="$saveLIBS" -fi - -else dnl ------------------ with internal db - AC_DEFINE(HAVE_DB3_DB_H, 1, [Define if you have the header file]) - WITH_DB_SUBDIR=db3 - WITH_INTERNAL_DB=1 - DBLIBSRCS="db3.c" - libdb3="# \$(top_builddir)/db3/libdb.la" - libdb3a="\$(top_builddir)/db3/libdb.a" -dnl INCPATH="-I\$(top_builddir)/$(WITH_DB_SUBDIR) $INCPATH" -fi +AC_DEFINE(HAVE_DB3_DB_H, 1, [Define if you have the header file]) +WITH_DB_SUBDIR=db3 +WITH_INTERNAL_DB=1 +DBLIBSRCS="db3.c" AC_SUBST(WITH_DB_SUBDIR) AC_SUBST(WITH_INTERNAL_DB) @@ -533,15 +486,6 @@ DBLIBOBJS=`echo $DBLIBSRCS | sed -e "s/\.c/\.lo/g"` AC_SUBST(DBLIBSRCS) AC_SUBST(DBLIBOBJS) -AC_SUBST(libdb3) -AC_SUBST(libdb3a) - -for dbi in $DBLIBSRCS; do - case $dbi in - db3.c) AC_DEFINE(USE_DB3, 1, [Use the Berkeley db3 API?]) ;; - db1.c) AC_DEFINE(USE_DB1, 1, [Use the Berkeley db1 retrofit to db3 API?]) ;; - esac -done dnl AmigaOS and IXEmul have a fork() dummy case "$target" in @@ -791,7 +735,6 @@ AC_TYPE_MODE_T AC_TYPE_OFF_T AC_TYPE_PID_T AC_TYPE_SIZE_T -AC_TYPE_ST_RDEV_T dnl Checks for library functions. AC_FUNC_ALLOCA @@ -1293,8 +1236,6 @@ AC_OUTPUT([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec python/Makefile python/rpmdb/Makefile python/rpmdb/test/Makefile - python/mpw/Makefile - python/mpw/test/Makefile ], [ echo timestamp > popt/stamp-h.in echo timestamp > beecrypt/stamp-h.in echo timestamp > stamp-h.in diff --git a/doc/rpm.8 b/doc/rpm.8 index 7f53ce3..539ac4c 100644 --- a/doc/rpm.8 +++ b/doc/rpm.8 @@ -896,7 +896,7 @@ The build modes of rpm are now resident in the executable. Although legacy compatibility provided by the popt aliases below has been adequate, the compatibility is not perfect; hence build mode compatibility through popt aliases is being removed from rpm. -Install the \fBrpm-build\fR package, and see +Install the \fBrpmbuild\fR package, and see \fBrpmbuild\fR(8) for documentation of all the \fBrpm\fR build modes previously documented here in \fBrpm\fR(8). diff --git a/expat/autogen.sh b/expat/autogen.sh index e07248f..f385239 100755 --- a/expat/autogen.sh +++ b/expat/autogen.sh @@ -5,12 +5,12 @@ export LDFLAGS LTV="libtoolize (GNU libtool) 1.4.3" ACV="autoconf (GNU Autoconf) 2.57" -AMV="automake (GNU automake) 1.7.5" +AMV="automake (GNU automake) 1.7.9" USAGE=" This script documents the versions of the tools I'm using to build rpm: libtool-1.4.3 autoconf-2.57 - automake-1.7.5 + automake-1.7.9 Simply edit this script to change the libtool/autoconf/automake versions checked if you need to, as rpm should build (and has built) with all recent versions of libtool/autoconf/automake. diff --git a/file/autogen.sh b/file/autogen.sh index e07248f..cfabd77 100755 --- a/file/autogen.sh +++ b/file/autogen.sh @@ -3,20 +3,20 @@ export CFLAGS export LDFLAGS -LTV="libtoolize (GNU libtool) 1.4.3" +LTV="libtoolize (GNU libtool) 1.5" ACV="autoconf (GNU Autoconf) 2.57" -AMV="automake (GNU automake) 1.7.5" +AMV="automake (GNU automake) 1.7.9" USAGE=" This script documents the versions of the tools I'm using to build rpm: - libtool-1.4.3 + libtool-1.5 autoconf-2.57 - automake-1.7.5 + automake-1.7.9 Simply edit this script to change the libtool/autoconf/automake versions checked if you need to, as rpm should build (and has built) with all recent versions of libtool/autoconf/automake. " -[ "`libtoolize --version`" != "$LTV" ] && echo "$USAGE" && exit 1 +[ "`libtoolize --version | head -1`" != "$LTV" ] && echo "$USAGE" && exit 1 [ "`autoconf --version | head -1`" != "$ACV" ] && echo "$USAGE" && exit 1 [ "`automake --version | head -1 | sed -e 's/1\.4[a-z]/1.4/'`" != "$AMV" ] && echo "$USAGE" && exit 1 diff --git a/file/doc/Makefile.am b/file/doc/Makefile.am index 126de05..8790ef3 100644 --- a/file/doc/Makefile.am +++ b/file/doc/Makefile.am @@ -6,7 +6,7 @@ fsect = @fsect@ #man_MANS = file.1 $(man_MAGIC) # libmagic.3 noinst_MANS = file.1 $(man_MAGIC) # libmagic.3 -EXTRA_DIST = file.man magic.man libmagic.man +EXTRA_DIST = file.man magic.man # libmagic.man CLEANFILES = $(man_MANS) file.1: Makefile file.man diff --git a/installplatform b/installplatform index c619fdb..0fb8b5c 100755 --- a/installplatform +++ b/installplatform @@ -33,7 +33,7 @@ case "$arch" in i[3456]86|athlon) SUBSTS='s_i386_i386_ s_i386_i486_ s_i386_i586_ s_i386_i686_ s_i386_athlon_' ;; alpha*) SUBSTS='s_alpha_alpha_ s_alpha_alphaev5_ s_alpha_alphaev56_ s_alpha_alphapca56_ s_alpha_alphaev6_ s_alpha_alphaev67_' ;; sparc*) SUBSTS='s_sparc\(64\|v9\)_sparc_ s_sparc64_sparcv9_;s_sparc\([^v]\|$\)_sparcv9\1_ s_sparcv9_sparc64_;s_sparc\([^6]\|$\)_sparc64\1_' ;; - powerpc*|ppc*) SUBSTS='s_ppc64_ppc_ s_ppc\([^6]\|$\)_ppc64\1_' ;; + powerpc*|ppc*) SUBSTS='s_ppc64_ppc_ s_ppc\([^6ip]\|$\)_ppc64\1_ s_ppc\([^6ip]\|$\)_ppciseries_ s_ppc\([^6ip]\|$\)_ppcpseries_ s_ppc\([^6ip]\|$\)_ppc64iseries_ s_ppc\([^6ip]\|$\)_ppc64pseries_' ;; s390*) SUBSTS='s_s390x_s390_ s_s390\([^x]\|$\)_s390x\1_' ;; *) SUBSTS=y___ ;; esac diff --git a/lib/poptALL.c b/lib/poptALL.c index 6d9ed6a..ae0e546 100644 --- a/lib/poptALL.c +++ b/lib/poptALL.c @@ -37,6 +37,9 @@ extern int _fsm_threads; extern int _hdr_debug; /*@unchecked@*/ +extern int _print_pkts; + +/*@unchecked@*/ extern int _psm_debug; /*@unchecked@*/ @@ -288,6 +291,8 @@ struct poptOption rpmcliAllPoptTable[] = { { "poptdebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_popt_debug, -1, N_("debug option/argument processing"), NULL}, #endif + { "prtpkts", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_print_pkts, -1, + NULL, NULL}, { "psmdebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_psm_debug, -1, N_("debug package state machine"), NULL}, { "psmthreads", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_psm_threads, -1, diff --git a/lib/rpmchecksig.c b/lib/rpmchecksig.c index 1ddc448..56415bb 100644 --- a/lib/rpmchecksig.c +++ b/lib/rpmchecksig.c @@ -22,7 +22,7 @@ /*@access pgpDigParams @*/ /*@unchecked@*/ -static int _print_pkts = 0; +extern int _print_pkts = 0; /** */ diff --git a/macros.in b/macros.in index c8093a8..1e8f3b7 100644 --- a/macros.in +++ b/macros.in @@ -1,7 +1,7 @@ #/*! \page config_macros Default configuration: @RPMCONFIGDIR@/macros # \verbatim # -# $Id: macros.in,v 1.139 2003/07/02 19:26:04 jbj Exp $ +# $Id: macros.in,v 1.140 2003/12/11 19:09:59 jbj Exp $ # # This is a global RPM configuration file. All changes made here will # be lost when the rpm package is upgraded. Any per-system configuration @@ -324,6 +324,10 @@ package or when debugging this package.\ %_use_internal_dependency_generator 1 # +# Filter GLIBC_PRIVATE Provides:/Requires: +%_filter_GLIBC_PRIVATE 0 + +# # Path to scripts to autogenerate package dependencies, # # Note: Used iff _use_internal_dependency_generator is zero. diff --git a/po/cs.po b/po/cs.po index 809b01f..4fc96c5 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -109,7 +110,7 @@ msgstr "Spole msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM verze %s\n" @@ -1242,19 +1243,19 @@ msgstr "nekontrolovat z msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "generovat hlavièky balíèkù kompatibilní s RPM verze 2 a 3" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "nekontrolovat závislosti balíèkù" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "nekontrolovat architekturu balíèku" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1645,117 +1646,117 @@ msgstr "%s: readLead selhalo\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread selhalo: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "vypsat expanzi makra +" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 #, fuzzy msgid "read instead of default file(s)" msgstr "èíst místo implicitního makro souboru" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "zakázat pou¾ití libio(3) API" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "odeslat stdout do " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "pou¾ít jako adresáø nejvy¹¹í úrovnì" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "zobrazit známé znaèky pro dotazy" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "zobrazit finální konfiguraci rpmrc a maker" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "poskytnout výstu s ménì detaily" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "poskytnout detailnìj¹í výstup" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "vypsat pou¾ívanou verzi rpm" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "ladit nástroj stavu souborù" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "ladit nástroj stavu souborù" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "ladit protokol datového toku" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "ladit nástroj stavu souborù" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "ladit nástroj stavu souborù" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "ladit rpmio I/O" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "ladit manipulaci s URL cache" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2272,7 +2273,7 @@ msgstr "nemohu otev msgid "%s failed: %s\n" msgstr "%s selhalo\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "nesprávný formát: %s\n" @@ -2321,7 +2322,7 @@ msgid "package has neither file owner or id lists\n" msgstr "balíèek nemá vlastníka souboru ani seznamy id\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2547,32 +2548,32 @@ msgstr "bal msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 #, fuzzy msgid "========== relocations\n" msgstr "========== ukládání tsort relací\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vyøazen: %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s vytvoøen jako %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Provádìní(%s): %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "Provádìní(%s): %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "nemohu provést dotaz %s: %s\n" @@ -2906,46 +2907,46 @@ msgstr "Nemohu otev msgid "cannot open Packages database in %s\n" msgstr "nemohu otevøít RPM databázi v %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "Chybí '(' v %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "nemohu otevøít RPM databázi v %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "øádek: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "RPM verze %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "získávám seznam pøipojených systémù souborù\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3167,86 +3168,86 @@ msgstr "chyb msgid "Unsatisfied dependencies for %s: " msgstr "chybné závislosti pøi sestavování:\n" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "nemohu vytvoøit %s: %s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 #, fuzzy msgid "shared" msgstr "sdílen v síti " -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/da.po b/po/da.po index 1445913..a55bf59 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -109,7 +110,7 @@ msgstr "F msgid "%s: %s\n" msgstr "fil %s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM version %s\n" @@ -1242,19 +1243,19 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" "generér pakkehoved(er), der er kompatible med (gamle) rpm[23]-indpakninger" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "undlad at tjekke pakkers afhængighedskrav" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "tjek ikke pakkens arkitektur" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1644,113 +1645,113 @@ msgstr "%s: readLead mislykkedes\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread mislykkedes: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "udlæs makroudvidelse af +" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 #, fuzzy msgid "read instead of default file(s)" msgstr "læs i stedet for standard makrofil(er)" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "undlad at benytte libio(3)-API" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "send standard-ud til " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "brug som topniveau-katalog" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "vis kendte forespørgselsmærker" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "vis den endelige rpmrc og makrokonfiguration" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "medtag mindre detaljerede oplysninger" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "medtag mere detaljerede oplysninger" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "vis versionen af rpm som benyttes" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "aflus protokol-datastrøm" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "aflus rpmio I/O" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "aflus URL-bufferhåndtering" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2283,7 +2284,7 @@ msgstr "kunne ikke msgid "%s failed: %s\n" msgstr "%s mislykkedes\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "ugyldigt format: %s\n" @@ -2332,7 +2333,7 @@ msgid "package has neither file owner or id lists\n" msgstr "pakke har hverken filejerskabs- eller id-lister\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2558,31 +2559,31 @@ msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s oversprunget grundet manglende ok-flag\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== gemmer omrokeringer\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ekskluderer %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omrokerer %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "ekskluderer %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "omrokerer %s til %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "omrokerer kataloget %s til %s\n" @@ -2919,48 +2920,48 @@ msgstr "Kunne ikke msgid "cannot open Packages database in %s\n" msgstr "kunne ikke åbne Packages-database i %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "ugyldigt pakkenummer: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "Manglende '(' i %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "ugyldigt pakkenummer: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "kan ikke åbne rpm-database i %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "linie: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "" "kilder i: %s\n" "\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "henter liste over monterede filsystemer\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3177,85 +3178,85 @@ msgstr "manglende %s" msgid "Unsatisfied dependencies for %s: " msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "db%d fejl(%d) fra %s: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "db%d fejl(%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "lukkede db-miljø %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "fjernede db-miljø %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "åbner db-miljø %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "lukkede db-indeks %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "lukkede db-indeks %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "åbner db-indeks %s/%s %s mode=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "kan ikke opnå %s lås på %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "eksklusiv" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "delt" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, fuzzy, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "ukendt db-tilvalg: \"%s\" ignoreret\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s har ugyldig talværdi, overspringes\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s har for stor eller lille 'long'-værdi, overspringes\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s har for stor eller lille heltalsværdi, overspringes\n" diff --git a/po/de.po b/po/de.po index fc331ef..2bb74fd 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -152,7 +153,7 @@ msgid "%s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM Version %s\n" @@ -1363,19 +1364,19 @@ msgstr "Dateiabh msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "Dateiabhängigkeiten nicht überprüfen" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "Paket-Architektur nicht überprüfen" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1779,119 +1780,119 @@ msgstr "%s: msgid "%s: Fread failed: %s\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "Die benutzte RPM-Version anzeigen" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "Standard-Ausgabe nach umleiten" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr " als Stammverzeichnis benutzen" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "Die benutzte RPM-Version anzeigen" # , c-format -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" # , c-format -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2447,7 +2448,7 @@ msgstr " msgid "%s failed: %s\n" msgstr "pgp fehlgeschlagen" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "Fehler beim Format %s\n" @@ -2498,7 +2499,7 @@ msgid "package has neither file owner or id lists\n" msgstr "Paket hat keinen Namen" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" @@ -2727,33 +2728,33 @@ msgstr "Paket %s wird nicht in %s aufgef msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" # , c-format -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Hole %s heraus\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "kann Datei %s nicht öffnen: " # , c-format -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Hole %s heraus\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" @@ -3096,47 +3097,47 @@ msgstr "Datei %s kann nicht zum Lesen ge msgid "cannot open Packages database in %s\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "fehlende { nach %{" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" # , c-format -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "Hole %s heraus\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3357,85 +3358,85 @@ msgstr "fehlende { nach %{" msgid "Unsatisfied dependencies for %s: " msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "kann %s lock für die Datenbank nicht bekommen" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "exklusiv" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "geteilt" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index df1c37a..8c3694f 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 1998-05-02 21:41:47-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" @@ -109,7 +110,7 @@ msgstr "" msgid "%s: %s\n" msgstr "en voinut avata %s: %s" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM versio %s\n" @@ -1260,19 +1261,19 @@ msgstr " msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "älä tarkista paketin riippuvuuksia" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "älä tarkista paketin arkkitehtuuria" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1669,115 +1670,115 @@ msgstr "%s: readLead ep msgid "%s: Fread failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "tulosta käytetyn rpm:n versio" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "lähetä vakiotuloste :lle" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "käytä ylimpänä hakemistona" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "tulosta käytetyn rpm:n versio" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "en voinut avata %s: %s" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "en voinut avata %s: %s" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "en voinut avata %s: %s" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "en voinut avata %s: %s" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2327,7 +2328,7 @@ msgstr "en voinut avata %s: %s" msgid "%s failed: %s\n" msgstr "pgp epäonnistui" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "virhe formaatissa: %s\n" @@ -2378,7 +2379,7 @@ msgid "package has neither file owner or id lists\n" msgstr "paketilla ei ole nimeä" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" @@ -2603,31 +2604,31 @@ msgstr "paketti %s ei ole %s:ss msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Haen: %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Haen: %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" @@ -2961,45 +2962,45 @@ msgstr "En voi avata %s luettavaksi: %s." msgid "cannot open Packages database in %s\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "puuttuva '{' '%':n jälkeen" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "en voinut avata %s: %s" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "Haen: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3220,85 +3221,85 @@ msgstr "puuttuva '{' '%':n j msgid "Unsatisfied dependencies for %s: " msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "en voi saada %s lukitusta tietokantaan" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "poissulkevaa" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "jaettua" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/fr.po b/po/fr.po index 4046328..d5748ab 100644 --- a/po/fr.po +++ b/po/fr.po @@ -11,7 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: RPM 4.2.1\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2003-07-06 01:36+0200\n" "Last-Translator: RPM French Translation \n" "Language-Team: RPM French Translation \n" @@ -119,7 +120,7 @@ msgstr "Options communes à tous les modes de rpm:" msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM version %s\n" @@ -1263,17 +1264,17 @@ msgstr "ne pas vérifier les dépendances de construction" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "générer un(des) entête(s) compatible(s) avec l'emballage rpm[23]" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "ne pas vérifier les sommes de hachage du paquetage" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "ne pas vérifier l'entête de la base de données à la récupération" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "ne pas vérifier la(les) signature(s) du paquetage" @@ -1662,110 +1663,110 @@ msgstr "%s: headerRead a échoué: %s" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread a échoué: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "prédéfinir la MACRO avec l'EXPRression" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "'MACRO EXPR'" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "definit MACRO ayant pour valeur EXPR" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "affiche la macro-expansion d'EXPR" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "'EXPR'" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "Lire au lieu du(des) fichier(s) par défaut" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "utilisation de l'API libio(3) désactivée" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "envoyer la sortie standard à CMD" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "CMD" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "utiliser RACINE comme répertoire racine" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "RACINE" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "afficher les tags de requête connus" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "afficher la configuration finale des macros et rpmrc" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "afficher moins de détails" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "afficher plus de détails" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "afficher la version de rpm utilisé" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "déboguer la machine à états du fichier de la charge utile" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "déboguer la machine à états du fichier de la charge utile" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "déboguer le flux de données du protocole" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "déboguer le traitement des options/arguments" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "déboguer la machine à état du paquetage" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "déboguer la machine à état du paquetage" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "déboguer les E/S de rpmio" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "déboguer la manipulation de cache d'URL" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "%s: table d'option mal configurée (%d)\n" @@ -2278,7 +2279,7 @@ msgstr "échec de %s sur le fichier %s: %s\n" msgid "%s failed: %s\n" msgstr "échec %s: %s\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "format incorrect: %s\n" @@ -2327,7 +2328,7 @@ msgstr "" "le paquetage n'a ni la liste des id ni celle des possesseurs de fichiers\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2552,31 +2553,31 @@ msgstr "le paquetage %s a un(e) %s non-satisfaites: %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s ignoré à cause du drapeau missingok\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== relogements\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d exclus %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d reloge %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "exclusion de %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "relogement de %s vers %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "relogement du répertoire %s vers %s\n" @@ -2921,45 +2922,45 @@ msgstr "Impossible d'ouvrir %s en lecture: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "impossible d'ouvrir la base de données Package dans %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, c-format msgid "extra '(' in package label: %s\n" msgstr "'(' supplémentaire dans le label du paquetage: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, c-format msgid "missing '(' in package label: %s\n" msgstr "'(' manquante dans le label du paquetage: %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, c-format msgid "missing ')' in package label: %s\n" msgstr "')' manquante dans le label du paquetage: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "Impossible d'ouvrir la base de données Solve dans %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "Ajout de: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "Suggestion: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "systèmes de fichiers montés:\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "%5d 0x%04x %5u %12ld %12ld %s\n" @@ -3176,87 +3177,87 @@ msgstr "manquant %c %s" msgid "Unsatisfied dependencies for %s: " msgstr "dépendances non satisfaites pour %s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "erreur db%d(%d) de %s: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "erreur db%d(%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "fermeture db environnement %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "enlèvement db environnement %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "ouverture db environnement %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "fermeture index db %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "vérif. db index %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" "trouvés(%d) mutex posix non-partagés, rajout de DB_PRIVATE, utilisation des " "verrous fcntl\n" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "ouverture index db %s/%s %s mode=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "impossible d'avoir le verrou %s sur %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "exclusif" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "partagé" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "verrouillage index db %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "options de db inconnues: \"%s\" ignoré.\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s est une valeur numérique invalide, ignoré\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s est une valeur 'long' trop petite ou trop grande, ignoré\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s est une valeur entière trop petite ou trop grande, ignoré\n" diff --git a/po/gl.po b/po/gl.po index ca18b4a..aebec47 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -107,7 +108,7 @@ msgstr "" msgid "%s: %s\n" msgstr "" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "" @@ -1211,17 +1212,17 @@ msgstr "" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "" @@ -1600,108 +1601,108 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2194,7 +2195,7 @@ msgstr "" msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "" @@ -2242,7 +2243,7 @@ msgid "package has neither file owner or id lists\n" msgstr "" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2463,31 +2464,31 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2816,45 +2817,45 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, c-format msgid "extra '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, c-format msgid "missing '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, c-format msgid "missing ')' in package label: %s\n" msgstr "" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3067,85 +3068,85 @@ msgstr "" msgid "Unsatisfied dependencies for %s: " msgstr "" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/is.po b/po/is.po index c5ac4a8..140e79a 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -108,7 +109,7 @@ msgstr "" msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM útgáfa %s\n" @@ -1219,19 +1220,19 @@ msgstr "ekki sko msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "ekki skoða pakkaskilyrðin" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "ekki skoða pakkaskilyrðin" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1613,110 +1614,110 @@ msgstr "%s: Fseek br msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "prenta útvíkkun fjölva +" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "senda frálag í " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "sýna endanlega rpmrc og stillingar fjölva" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "prenta útgáfunúmer rpm sem verið er að nota" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2222,7 +2223,7 @@ msgstr "gat ekki opna msgid "%s failed: %s\n" msgstr "%s brást\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "" @@ -2270,7 +2271,7 @@ msgid "package has neither file owner or id lists\n" msgstr "" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2491,31 +2492,31 @@ msgstr "get ekki opna msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "lína %d: %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "%5d færa %s -> %s\n" @@ -2846,45 +2847,45 @@ msgstr "Get ekki opna msgid "cannot open Packages database in %s\n" msgstr "get ekki opnað pakka gagnagrunn í %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, c-format msgid "extra '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "vantar '(' í %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "vantar '(' í %s %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "get ekki opnað pakka gagnagrunn í %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "lína: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3098,85 +3099,85 @@ msgstr "vantar %s" msgid "Unsatisfied dependencies for %s: " msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "lokaði gagnagrunnsumhverfi %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "fjarlægði gagnagrunnsumhverfi %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "opna gagnagrunnsumhverfi %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "einka" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "deildann" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index c57404e..77a08ff 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -116,7 +117,7 @@ msgstr "" msgid "%s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM ¥Ð¡¼¥¸¥ç¥ó %s\n" @@ -1279,19 +1280,19 @@ msgstr " msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1692,116 +1693,116 @@ msgstr "%s: readLead msgid "%s: Fread failed: %s\n" msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "ɸ½à½ÐÎϤò ¤Ø¥Ñ¥¤¥×¤·¤Þ¤¹" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2364,7 +2365,7 @@ msgstr "%s msgid "%s failed: %s\n" msgstr "%s ¼ºÇÔ" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n" @@ -2414,7 +2415,7 @@ msgid "package has neither file owner or id lists\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2642,31 +2643,31 @@ msgstr " msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" @@ -3009,46 +3010,46 @@ msgstr " msgid "cannot open Packages database in %s\n" msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "¹ÔÌÜ: %s" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "¥½¡¼¥¹¤Ï: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3270,85 +3271,85 @@ msgstr "%s msgid "Unsatisfied dependencies for %s: " msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "½ü³°" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "¶¦Í­" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/ko.po b/po/ko.po index cb45c0b..ecd1f3f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.4\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2002-03-04 17:17+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -109,7 +110,7 @@ msgstr " msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM ¹öÀü - %s\n" @@ -1228,19 +1229,19 @@ msgstr " msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "(±âÁ¸ÀÇ) rpm[23] ÆÐŰ¡°ú ȣȯÇÏ´Â ÆÐÅ°Áö Çì´õ¸¦ »ý¼ºÇÕ´Ï´Ù" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1631,117 +1632,117 @@ msgstr "%s: readLead msgid "%s: Fread failed: %s\n" msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "<Ç¥Çö½Ä>+ ÀÇ ¸ÅÅ©·Î È®ÀåÀ» Ãâ·ÂÇÕ´Ï´Ù" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 #, fuzzy msgid "read instead of default file(s)" msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "libio(3) APIÀÇ »ç¿ëÀ» ÇØÁ¦ÇÕ´Ï´Ù" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "Ç¥ÁØÃâ·ÂÀ» <¸í·É>À¸·Î º¸³À´Ï´Ù" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "ÁúÀÇ Å±׸¦ º¸¿©ÁÝ´Ï´Ù" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "ÇöÀç ¼³Á¤µÇ¾î ÀÖ´Â rpmrcÀÇ ³»¿ë°ú ¸ÅÅ©·Î¸¦ º¸¿©ÁÝ´Ï´Ù" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "ÀÚ¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "¾ÆÁÖ »ó¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "ÇöÀç »ç¿ëµÇ°í ÀÖ´Â rpm ¹öÀüÀ» Ç¥½ÃÇÕ´Ï´Ù" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "µ¥ÀÌÅÍ ½ºÆ®¸² ÇÁ·ÎÅäÄÝÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Àμö 󸮰úÁ¤ (%d) µµÁß ³»ºÎ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "ÄÄÇ»ÅÍÀÇ »óÅÂ(state) ÆÄÀÏÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "rpmio ÀÔ/Ãâ·ÂÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "URL ij½Ã Çڵ鸵À» µð¹ö±× ÇÕ´Ï´Ù" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2262,7 +2263,7 @@ msgstr "%2$s msgid "%s failed: %s\n" msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n" @@ -2311,7 +2312,7 @@ msgid "package has neither file owner or id lists\n" msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2536,31 +2537,31 @@ msgstr "%s msgid "%s skipped due to missingok flag\n" msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== Àç¹èÄ¡\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d Á¦¿Ü %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d Àç¹èÄ¡ %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n" @@ -2900,45 +2901,45 @@ msgstr "%s( msgid "cannot open Packages database in %s\n" msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "%s %s¿¡ '(' °¡ ¾ø½À´Ï´Ù\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "%sÀÇ rpm µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "Çà: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3155,85 +3156,85 @@ msgstr " msgid "Unsatisfied dependencies for %s: " msgstr "%s-%s-%s¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "%3$sÀÇ db%1$d ¿À·ù(%2$d): %4$s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "db%d ¿À·ù(%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "´ÝÈù db ȯ°æ %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "»èÁ¦µÈ db ȯ°æ %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "¿©´ÂÁß db ȯ°æ %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "´ÝÈù db À妽º %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "°ËÁõµÈ db À妽º %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "¿©´ÂÁß db À妽º %s/%s %s ¸ðµå=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "%2$s/%3$sÀÇ Àá±ÝµÈ(lock) %1$s(À»)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "Æó¼âÀû(exclusive)" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "°øÀ¯µÊ" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "Àá±ÝµÈ db À妽º %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "ÀÎÁõµÇÁö ¾ÊÀº db ¿É¼Ç: \"%s\"(À»)¸¦ ¹«½ÃÇÕ´Ï´Ù.\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s(Àº)´Â ºÎÀûÇÕÇÑ ¼öÄ¡ °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s(Àº)´Â ³Ê¹« Å©°Å³ª ³Ê¹« ÀûÀº Á¤¼ö(long) °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s(Àº)´Â ³Ê¹« Å©°Å³ª ³Ê¹« ÀûÀº Á¤¼ö(int) °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" diff --git a/po/no.po b/po/no.po index c0cb965..044b9ae 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -108,7 +109,7 @@ msgstr "" msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM versjon %s\n" @@ -1234,19 +1235,19 @@ msgstr "ikke verifiser pakkeavhengigheter" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "ikke verifiser pakkeavhengigheter" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "ikke verifiser pakkearkitektur" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1628,113 +1629,113 @@ msgstr "%s: readLead feilet\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread feilet: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "skriv ut makroutvidelsen av +" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 #, fuzzy msgid "read instead of default file(s)" msgstr "les i stedet for standard makrofil(er)" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "slå av bruk av libio(3) API" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "send stdout til " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "bruk som toppnivåkatalog" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "vis kjente tagger for spørring" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "vis endelig rpmrc og makrokonfigurasjon" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "gi mindre detaljert info" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "gi mer detaljert info" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "skriv ut hvilken versjon av rpm som brukes" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "feilsøking på protokoll-datastrøm" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Intern feil i argumentprosesseringen (%d) :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "feilsøk rpmio I/U" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "feilsøk URL-cache håndtering" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2248,7 +2249,7 @@ msgstr "klarte ikke msgid "%s failed: %s\n" msgstr "%s feilet\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "ukorrekt format: %s\n" @@ -2297,7 +2298,7 @@ msgid "package has neither file owner or id lists\n" msgstr "pakken har verken fileier eller id-lister\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2518,31 +2519,31 @@ msgstr "pakke %s er i konflikt: %s\n" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "eksluderer %s %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omplasser %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "eksluderer %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "relokerer %s til %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "relokerer katalog %s til %s\n" @@ -2876,46 +2877,46 @@ msgstr "Kunne ikke msgid "cannot open Packages database in %s\n" msgstr "kan ikke åpne pakkedatabase i %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "ugyldig pakkenummer: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "Mangler '(' i %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "ugyldig pakkenummer: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "kan ikke åpne database i %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "Installerer %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "Henter %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "henter liste over monterte filsystemer\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3131,85 +3132,85 @@ msgstr "mangler %s" msgid "Unsatisfied dependencies for %s: " msgstr "feilede avhengigheter:\n" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 40f72f7..96f9a09 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.3-20030515\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2003-06-08 22:42+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -115,7 +116,7 @@ msgstr "Wsp msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM wersja %s\n" @@ -1241,17 +1242,17 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" "generuj nag³ówki pakietu kompatybilne z (wymieraj±cymi) pakietami rpm[23]" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "nie sprawdzaj skrótów pakietu" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "nie sprawdzaj nag³ówków bazy danych przy odczycie" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "nie sprawdzaj sygnatur pakietu" @@ -1634,108 +1635,108 @@ msgstr "%s: headerRead nie powiod msgid "%s: Fread failed: %s\n" msgstr "%s: Fread nie powiod³o siê: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "predefiniuj MAKRO z warto¶ci± WYR" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "'MAKRO WYR'" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "definiuj MAKRO z warto¶ci± WYR" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "wy¶wietl rozwiniêcie makr z WYR" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "'WYR'" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "czytaj zamiast domy¶lnego pliku(ów)" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "wy³±cz u¿ywanie API libio(3)" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "przeka¿ standardowe wyj¶cie do POLECENIA" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "POLECENIE" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "u¿yj KAGALOGu jako katalogu najwy¿szego poziomu" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "KATALOG" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "wy¶wietl znane etykiety zapytañ" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "wy¶wietl ostateczn± konfiguracjê rpmrc i makr" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "u¿ywaj mniej szczegó³owego wyj¶cia" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "u¿ywaj bardziej szczegó³owego wyj¶cia" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "wy¶wietl wersjê u¿ywanego rpm-a" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "¶led¼ maszynê stanu danych pliku" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "u¿yj w±tków dla maszyny stanu plików" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "¶led¼ strumieñ danych protoko³u" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "¶led¼ przetwarzanie opcji/argumentów" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "¶led¼ maszynê stanu pakietu" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "u¿yj w±tków dla maszyny stanu pakietów" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "¶led¼ wej¶cie/wyj¶cie rpmio" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "¶led¼ obs³ugê buforowania URL-i" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "%s: tabela opcji b³êdnie skonfigurowana (%d)\n" @@ -2234,7 +2235,7 @@ msgstr "%s nie powi msgid "%s failed: %s\n" msgstr "%s nie powiod³o siê: %s\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "b³êdny format: %s\n" @@ -2282,7 +2283,7 @@ msgid "package has neither file owner or id lists\n" msgstr "pakiet nie ma list w³a¶cicieli ani id plików\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2505,31 +2506,31 @@ msgstr "pakiet %s ma niespe msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== przesuniêcia\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d wy³±czenie %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d przesuniêcie %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "wy³±czanie %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "przesuwanie katalogu %s do %s\n" @@ -2860,45 +2861,45 @@ msgstr "Nie mo msgid "cannot open Packages database in %s\n" msgstr "nie mo¿na otworzyæ bazy danych Packages w %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "b³êdny numer pakietu: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "Brak '(' w %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "b³êdny numer pakietu: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "nie mo¿na otworzyæ bazy danych Solve w %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "Dodawane: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "Sugerowane: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "podmontowane systemy plików:\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr " i urz bloków bl.wolnych i.wolnych punkt montowania\n" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "%5d 0x%04x %5u %12ld %12ld %s\n" @@ -3111,87 +3112,87 @@ msgstr "brak %c %s" msgid "Unsatisfied dependencies for %s: " msgstr "Niespe³nione zale¿no¶ci dla %s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "b³±d db%d(%d) z %s: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "b³±d db%d(%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "zamkniêto ¶rodowisko db %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "usuniêto ¶rodowisko db %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "otwieranie ¶rodowiska db %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "zamkniêto indeks db %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "sprawdzono indeks db %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" "znaleziono wy³±czne muteksy posix(%d), dodanie DB_PRIVATE, u¿ycie blokady " "fcntl\n" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "otwieranie indeksu db %s/%s %s w trybie 0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "nie mo¿na uzyskaæ %s blokady na %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "wy³±cznej" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "dzielonej" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "zablokowano indeks db %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "nierozpoznana opcja db: \"%s\" zignorowana.\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s ma b³êdn± warto¶æ liczbow±, pominiêto\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ma zbyt du¿± lub zbyt ma³± warto¶æ long, pominiêto\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s ma zbyt du¿± lub zbyt ma³± warto¶æ ca³kowit±, pominiêto\n" diff --git a/po/pt.po b/po/pt.po index c6aa60f..0d3ed26 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2002-02-14 10:51+0000\n" "Last-Translator: José Nuno Coelho Sanarra Pires \n" "Language-Team: pt +" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 #, fuzzy msgid "read instead of default file(s)" msgstr "ler o em vez do(s) ficheiro(s) de macros por omissão" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "desactivar o uso da API da libio(3)" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "manda o stdout para " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "usa como a directoria de topo" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "mostrar as opções de pesquisa conhecidas" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "mostra a configuração final do rpmrc e das macros" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "devolver um resultado menos detalhado" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "devolver um resultado mais detalhado" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "imprime a versão do RPM que está a usar" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "depurar máquina de estados de ficheiros" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "depurar máquina de estados de ficheiros" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "depurar a sequência de dados do protocolo" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Erro interno no processamento de argumentos (%d) :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "depurar máquina de estados de ficheiros" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "depurar máquina de estados de ficheiros" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "depurar a E/S da rpmio" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "depurar a gestão da 'cache' de URLs" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2273,7 +2274,7 @@ msgstr "%s falhou no ficheiro %s: %s\n" msgid "%s failed: %s\n" msgstr "%s falhou: %s\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "formato incorrecto: %s\n" @@ -2322,7 +2323,7 @@ msgid "package has neither file owner or id lists\n" msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2548,31 +2549,31 @@ msgstr "o pacote %s tem requisitos n msgid "%s skipped due to missingok flag\n" msgstr "%s ignorado devido à opção missingok\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== mudanças de local\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d excluir o %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d mudar de local %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "a excluir o %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "a mudar o %s para %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "a mudar a directoria %s para %s\n" @@ -2910,45 +2911,45 @@ msgstr "N msgid "cannot open Packages database in %s\n" msgstr "não consigo abrir a base de dados Packages em %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "número de pacote inválido: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "Falta um '(' em %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "número de pacote inválido: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "não consigo a base de dados do RPM em %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "linha: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "A obter o %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3166,85 +3167,85 @@ msgstr "falta %s" msgid "Unsatisfied dependencies for %s: " msgstr "Dependências não satisfeitas para o %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "erro do db%d (%d) do %s: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "erro do db%d (%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "fechei o ambiente do db %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "removi o ambiente do db %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "a aceder ao ambiente do db %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "fechei o índice do db %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "verifiquei o índice do db %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "a abrir o índice do db %s/%s %s modo=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "não consigo trancar o %s no %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "exclusivo" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "partilhado" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "tranquei o índice do db %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "opção do db desconhecida: \"%s\" ignorada.\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "O %s tem um valor numérico inválido, foi ignorado\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "O %s tem um valor demasiado elevado ou pequeno, foi ignorado\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "O %s tem um valor inteiro demasiado elevado ou pequeno, foi ignorado\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index cdd721a..aec41c8 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,7 +4,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" @@ -123,7 +124,7 @@ msgstr "No consegui ler o arquivo spec de %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM verso %s\n" @@ -1375,19 +1376,19 @@ msgstr "no verifique as dependncias do pacote" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "no verifique as dependncias do pacote" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "no verifique a arquitetura do pacote" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1793,119 +1794,119 @@ msgstr "No consegui abrir: %s\n" msgid "%s: Fread failed: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "mostra a verso do programa rpm sendo usado" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "envia a saida padro para " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "use como diretrio raiz" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "mostra a verso do programa rpm sendo usado" # , c-format -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "No consegui abrir: %s\n" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" # , c-format -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "No consegui abrir: %s\n" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2459,7 +2460,7 @@ msgstr "No consegui abrir: %s\n" msgid "%s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "" @@ -2510,7 +2511,7 @@ msgid "package has neither file owner or id lists\n" msgstr "no foi passado pacote para instalao" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" @@ -2744,7 +2745,7 @@ msgstr "no foi passado pacote para instalao" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" @@ -2756,13 +2757,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "RPM verso %s\n" # , c-format -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "No consegui abrir: %s\n" @@ -2775,19 +2776,19 @@ msgstr "No consegui abrir: %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "RPM verso %s\n" # , c-format -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "No consegui abrir: %s\n" @@ -3140,29 +3141,29 @@ msgstr "No consegui abrir: %s\n" msgid "cannot open Packages database in %s\n" msgstr "No consegui abrir: %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, c-format msgid "extra '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "instale pacote" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "instale pacote" # , c-format -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" @@ -3175,20 +3176,20 @@ msgstr "No consegui ler o arquivo spec de %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "RPM verso %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3418,85 +3419,85 @@ msgstr "" msgid "Unsatisfied dependencies for %s: " msgstr "lista dependncias do pacote" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "no foi passado pacote para desinstalao" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/ro.po b/po/ro.po index 7a78944..9b22ac5 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -107,7 +108,7 @@ msgstr "" msgid "%s: %s\n" msgstr "" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "" @@ -1211,17 +1212,17 @@ msgstr "" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "" @@ -1600,108 +1601,108 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2194,7 +2195,7 @@ msgstr "" msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "" @@ -2242,7 +2243,7 @@ msgid "package has neither file owner or id lists\n" msgstr "" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2463,31 +2464,31 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2816,45 +2817,45 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, c-format msgid "extra '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, c-format msgid "missing '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, c-format msgid "missing ')' in package label: %s\n" msgstr "" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3067,85 +3068,85 @@ msgstr "" msgid "Unsatisfied dependencies for %s: " msgstr "" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index a71711a..0c67248 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -7,7 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,7 +114,7 @@ msgstr "" msgid "%s: %s\n" msgstr "" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "" @@ -1217,17 +1218,17 @@ msgstr "" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "" @@ -1606,108 +1607,108 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 msgid "use threads for file state machine" msgstr "" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 msgid "use threads for package state machine" msgstr "" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2200,7 +2201,7 @@ msgstr "" msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "" @@ -2248,7 +2249,7 @@ msgid "package has neither file owner or id lists\n" msgstr "" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2469,31 +2470,31 @@ msgstr "" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2822,45 +2823,45 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, c-format msgid "extra '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, c-format msgid "missing '(' in package label: %s\n" msgstr "" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, c-format msgid "missing ')' in package label: %s\n" msgstr "" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3073,85 +3074,85 @@ msgstr "" msgid "Unsatisfied dependencies for %s: " msgstr "" -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index da01ec6..d2302c0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2002-08-27 13:36-0400\n" "Last-Translator: Eugene Kanter, \n" "Language-Team: Black Cat Linux Team \n" @@ -110,7 +111,7 @@ msgstr " msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM ×ÅÒÓÉÑ %s\n" @@ -1247,17 +1248,17 @@ msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" "ÓÏÚÄÁÔØ ÚÁÇÏÌÏ×ÏË(ËÉ) ÐÁËÅÔÁ, ÓÏ×ÍÅÓÔÉÍÙÅ Ó (ÕÓÔÁÒÅ×ÛÉÍÉ) ÆÏÒÍÁÔÁÍÉ rpm[23]" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÁÊÄÖÅÓÔ ÐÁËÅÔÁ(Ï×)" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁÇÏÌÏ×ËÉ, ÉÚ×ÌÅËÁÅÍÙÅ ÉÚ ÂÁÚÙ ÄÁÎÎÙÈ" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÏÄÐÉÓØ(É) × ÐÁËÅÔÅ(ÁÈ)" @@ -1641,110 +1642,110 @@ msgstr "%s: msgid "%s: Fread failed: %s\n" msgstr "%s: ÏÛÉÂËÁ Fread: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "ÐÒÅÏÐÒÅÄÅÌÉÔØ MACRO ÓÏ ÚÎÁÞÅÎÉÅÍ EXPR" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "'MACRO EXPR'" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "ÏÐÒÅÄÅÌÉÔØ MACRO ÓÏ ÚÎÁÞÅÎÉÅÍ EXPR" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "×Ù×ÅÓÔÉ ÚÎÁÞÅÎÉÅ ÍÁËÒÏÓÁ EXPR" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "'EXPR'" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ ×ÍÅÓÔÏ ÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "ÚÁÐÒÅÔÉÔØ ÉÓÐÏÌØÚÏ×ÁÎÉÅ libio(3) API" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × CMD" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "CMD" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ ROOT ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "ROOT" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "ÏÔÏÂÒÁÚÉÔØ ÉÚ×ÅÓÔÎÙÅ ËÌÀÞÉ ÚÁÐÒÏÓÁ" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "ÐÏËÁÚÁÔØ ÔÅËÕÝÅÅ ÚÎÁÞÅÎÉÅ rpmrc É ÍÁËÒÏÓÏ×" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "×Ù×ÏÄÉÔØ ÍÉÎÉÍÕÍ ÓÏÏÂÝÅÎÉÊ" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "×Ù×ÏÄÉÔØ ÂÏÌÅÅ ÄÅÔÁÌØÎÙÅ ÓÏÏÂÝÅÎÉÑ" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "×Ù×ÅÓÔÉ ÎÏÍÅÒ ×ÅÒÓÉÉ ÜÔÏÊ ÐÒÇÒÁÍÍÙ" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÒÉÓÏÅÄÉÎÅÎÎÙÈ ÆÁÊÌÏ× " -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÒÉÓÏÅÄÉÎÅÎÎÙÈ ÆÁÊÌÏ× " -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "ÏÔÌÁÄËÁ ÐÒÏÔÏËÏÌÁ ÐÏÔÏËÁ ÄÁÎÎÙÈ" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ ÐÁÒÁÍÅÔÒÏ×/ÁÒÇÕÍÅÎÔÏ×" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÁËÅÔÏ×" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "ÏÔÌÁÄËÁ ÍÁÛÉÎÙ ÓÏÓÔÏÑÎÉÑ ÐÁËÅÔÏ×" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "ÏÔÌÁÄËÁ ÐÒÏÃÅÓÓÁ ××ÏÄÁ/×Ù×ÏÄÁ rpmio" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ URL ËÜÛ" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "%s: ÔÁÂÌÉÃÁ ÐÁÒÁÍÅÔÒÏ× ÎÅÐÒÁ×ÉÌØÎÏ ÎÁÓÔÒÏÅÎÁ (%d)\n" @@ -2246,7 +2247,7 @@ msgstr "%s msgid "%s failed: %s\n" msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n" @@ -2294,7 +2295,7 @@ msgid "package has neither file owner or id lists\n" msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2518,31 +2519,31 @@ msgstr " msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ÉÓËÌÀÞÅÎ %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n" @@ -2872,46 +2873,46 @@ msgstr " msgid "cannot open Packages database in %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÒÁÚÒÅÛÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ × %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "äÏÂÁ×ÌÑÅÔÓÑ: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "ðÒÅÄÌÁÇÁÅÔÓÑ: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "ÓÔÒÏÉÔÓÑ ÓÐÉÓÏË ÓÍÏÎÔÉÒÏ×ÁÎÎÙÈ ÆÁÊÌÏ×ÙÈ ÓÉÓÔÅÍ\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3124,85 +3125,85 @@ msgstr " msgid "Unsatisfied dependencies for %s: " msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "ÏÛÉÂËÁ(%d) db%d ÉÚ %s: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "ÏÛÉÂËÁ(%d) db%d: %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "ÚÁËÒÙÔÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "ÕÄÁÌÅÎÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "ÚÁËÒÙÔ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "ÐÒÏ×ÅÒÅÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s mode=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÎÁ %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "ÒÁÚÄÅÌÑÅÍÙÊ" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "ÚÁÂÌÏËÉÒÏ×ÁÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "ÎÅÏÐÏÚÎÁÎÎÙÊ ÐÁÒÁÍÅÔÒ ÂÁÚÙ ÄÁÎÎÙÈ: \"%s\" ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎ\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ %s, ÐÒÏÐÕÝÅÎÏ\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ÉÍÅÅÔ ÓÌÉÛËÏÍ ÍÁÌÕÀ ÉÌÉ ÓÌÉÛËÏÍ ÂÏÌØÛÕÀ ×ÅÌÉÞÉÎÕ long, ÐÒÏÐÕÝÅÎÏ\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/sk.po b/po/sk.po index 3014db7..11d4e4d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -109,7 +110,7 @@ msgstr "" msgid "%s: %s\n" msgstr "súbor %s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM verzia %s\n" @@ -1264,19 +1265,19 @@ msgstr "neoverova msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "neoverova» závislosti balíka" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "neoverova» architektúru balíka" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1670,116 +1671,116 @@ msgstr "%s: readLead zlyhalo\n" msgid "%s: Fread failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "vypísa» verziu pou¾ívaného rpm" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "posla» ¹tandardný výstup do " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "pou¾i» ako adresár najvy¹¹ej úrovne" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "vypísa» verziu pou¾ívaného rpm" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "chybný stav súboru: %s" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "chybný stav súboru: %s" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "chybný stav súboru: %s" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "chybný stav súboru: %s" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2326,7 +2327,7 @@ msgstr "nepodarilo sa otvori msgid "%s failed: %s\n" msgstr "%s zlyhalo" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "chyba formátu: %s\n" @@ -2376,7 +2377,7 @@ msgid "package has neither file owner or id lists\n" msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" @@ -2601,31 +2602,31 @@ msgstr "po msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vynechaný: %s" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "presúva sa %s do %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "vynecháva sa %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "presúva sa %s do %s\n" @@ -2959,45 +2960,45 @@ msgstr "Nie je mo msgid "cannot open Packages database in %s\n" msgstr "nie je mo¾né otvori» %s/packages.rpm\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "chybné èíslo balíku: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "chýbajúce %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "chybné èíslo balíku: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "nie je mo¾né otvori» %s/packages.rpm\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "riadok: %s" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "zdroje v: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3219,85 +3220,85 @@ msgstr "ch msgid "Unsatisfied dependencies for %s: " msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "otvára sa databáza s právami 0x%x v %s\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "nie je mo¾né získa» %s zámok pre databázu" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "výhradný" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "zdieµaný" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/sl.po b/po/sl.po index f89c242..43050dc 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,12 +1,13 @@ # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr. # Copyright (C) 2000 Free Software Foundation, Inc. # Primo¾ Peterlin , 2000. -# $Id: sl.po,v 1.381 2003/11/23 19:52:11 jbj Exp $ +# $Id: sl.po,v 1.382 2003/12/11 19:10:36 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -114,7 +115,7 @@ msgstr "" msgid "%s: %s\n" msgstr "datoteka %s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM razlièica %s\n" @@ -1268,19 +1269,19 @@ msgstr "brez preverjanja soodvisnosti paketa" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "brez preverjanja soodvisnosti paketa" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "brez preverjanja arhitekture paketa" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1673,116 +1674,116 @@ msgstr "%s: readLead je bil neuspe msgid "%s: Fread failed: %s\n" msgstr "%s: branje Fread je bilo neuspe¹no: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "uporabljana razlièica rpm" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "standardni izhod preusmerjen na " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "uporabi za korenski imenik" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "prika¾i znane znaèke za poizvedovanje" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "prika¾i konèni rpmrc in nastavitev makra" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "razlièica rpm, ki jo uporabljate" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "okvarjeno stanje datoteke: %s" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "okvarjeno stanje datoteke: %s" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "okvarjeno stanje datoteke: %s" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "okvarjeno stanje datoteke: %s" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2326,7 +2327,7 @@ msgstr "neuspe msgid "%s failed: %s\n" msgstr "%s neuspe¹en" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "napaka v obliki: %s\n" @@ -2376,7 +2377,7 @@ msgid "package has neither file owner or id lists\n" msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2603,31 +2604,31 @@ msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je izkljuèen: %s" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "premikanje %s v %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "premikanje %s v %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "premiokanje imenika %s v %s\n" @@ -2962,46 +2963,46 @@ msgstr "%s ni mo msgid "cannot open Packages database in %s\n" msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "neveljavna ¹tevilka paketa: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "Manjkajoèi ,(` v %s %s" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "neveljavna ¹tevilka paketa: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "datoteke %s/packages.rpm ni mogo¾no odpreti\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "vrstica: %s" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "izvori v: %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3223,85 +3224,85 @@ msgstr "manjka %s\n" msgid "Unsatisfied dependencies for %s: " msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, fuzzy, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "db%d napaka(%d)" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, fuzzy, c-format msgid "db%d error(%d): %s\n" msgstr "db%d napaka(%d)" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "zaprto db okolje %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, fuzzy, c-format msgid "removed db environment %s/%s\n" msgstr "odstranjeno db okolje %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "odpiranje db okolja %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "zaprto db kazalo %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "zaprto db kazalo %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "odpiranje db kazala %s/%s %s naèin=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ni mo¾no zakleniti z %s datotek %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "izkljuèujoèe" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "skupno" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "zaklenjeno db kazalo %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, fuzzy, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "dbiSetConfig: neprepoznana izbira db: \"%s\" prezrto\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s ima neveljavno ¹tevilèno vrednost, prezrto\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ima preveliko ali premajhno dolgo (long) vrednost, prezrto\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/sr.po b/po/sr.po index 3292f8c..2b4b740 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -107,7 +108,7 @@ msgstr "" msgid "%s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM verzija %s\n" @@ -1253,19 +1254,19 @@ msgstr "nemoj proveravati zavisnosti paketa" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "nemoj proveravati zavisnosti paketa" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "nemoj proveravati arhitekturu paketa" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1660,115 +1661,115 @@ msgstr "%s: Neuspeo 'readLead'\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "napi¹i verziju rpm-a koja se koristi" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "po¹alji standardni izlaz u " -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "koristi kao direktorijum najvi¹eg nivoa" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "napi¹i verziju rpm-a koja se koristi" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "neuspelo otvaranje %s: %s" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "neuspelo otvaranje %s: %s" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "neuspelo otvaranje %s: %s" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "neuspelo otvaranje %s: %s" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2318,7 +2319,7 @@ msgstr "neuspelo otvaranje %s: %s" msgid "%s failed: %s\n" msgstr "PGP omanuo" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "gre¹ka u formatu: %s\n" @@ -2369,7 +2370,7 @@ msgid "package has neither file owner or id lists\n" msgstr "paket nema imena" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, fuzzy, c-format msgid "open of %s failed: %s\n" @@ -2594,31 +2595,31 @@ msgstr "paket %s nije naveden u %s" msgid "%s skipped due to missingok flag\n" msgstr "" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Pribavljam %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Pribavljam %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" @@ -2952,45 +2953,45 @@ msgstr "Ne mogu da otvorim %s za msgid "cannot open Packages database in %s\n" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "nedostaje { posle %" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "Pribavljam %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3211,85 +3212,85 @@ msgstr "nedostaje { posle %" msgid "Unsatisfied dependencies for %s: " msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "ekskluzivno" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "deljeno" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" diff --git a/po/sv.po b/po/sv.po index d0f1dad..de73553 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.2\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2003-02-05 12:40+0100\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -107,7 +108,7 @@ msgstr "Gemensamma flaggor f msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM version %s\n" @@ -1233,17 +1234,17 @@ msgstr "verifiera inte byggberoenden" msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "generera pakethuvuden kompatibla med (äldre) rpm[23]-paketering" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 msgid "don't verify package digest(s)" msgstr "verifiera inte paketkontrollsummor" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 msgid "don't verify database header(s) when retrieved" msgstr "verifiera inte databashuvuden när de hämtas" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 msgid "don't verify package signature(s)" msgstr "verifiera inte paketsignatur(er)" @@ -1626,110 +1627,110 @@ msgstr "%s: headerRead misslyckades: %s" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread misslyckades: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "fördefiniera MAKRO till värdet UTTR" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "'MAKRO UTTR'" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "definiera MAKRO till värdet UTTR" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 msgid "print macro expansion of EXPR" msgstr "skriv ut makroexpansion av UTTR" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "'UTTR'" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 msgid "read instead of default file(s)" msgstr "läs istället för standardfil(er)" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "inaktivera användningen av libio(3)-API:et" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 msgid "send stdout to CMD" msgstr "skicka standard ut till KMD" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "KMD" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 msgid "use ROOT as top level directory" msgstr "använd ROT som toppnivåkatalog" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "ROT" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "visa kända frågetaggar" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "visa slutliga rpmrc- och makrokonfigurationer" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "visa mindre detaljerad utdata" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "visa mer detaljerad utdata" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "visa vilken version av rpm som används" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 msgid "debug payload file state machine" msgstr "felsök lastfilstillståndsmaskin" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "felsök lastfilstillståndsmaskin" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "felsök protokolldataström" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 msgid "debug option/argument processing" msgstr "felsök flagg-/argumenthantering" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 msgid "debug package state machine" msgstr "felsök pakettillståndsmaskin" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "felsök pakettillståndsmaskin" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "felsök rpmio I/O" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "felsök cache-hanteringen av URL:ar" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "%s: flaggtabell felkonfigurerad (%d)\n" @@ -2230,7 +2231,7 @@ msgstr "%s misslyckades p msgid "%s failed: %s\n" msgstr "%s misslyckades: %s\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "fel format: %s\n" @@ -2278,7 +2279,7 @@ msgid "package has neither file owner or id lists\n" msgstr "paketet har varken filägare eller id-listor\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2501,31 +2502,31 @@ msgstr "paket %s har ouppfyllda %s: %s\n" msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== omflyttningar\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d utesluter %s\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d flyttar om %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "hoppar över %s %s\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "flyttar %s till %s\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "flyttar katalogen %s till %s\n" @@ -2854,45 +2855,45 @@ msgstr "Kan inte msgid "cannot open Packages database in %s\n" msgstr "kan inte öppna paketdatabas i %s\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "\"(\" saknas i %s %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, c-format msgid "cannot open Solve database in %s\n" msgstr "kan inte öppna Solve-databas i %s\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, c-format msgid "Adding: %s\n" msgstr "Lägger till: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, c-format msgid "Suggesting: %s\n" msgstr "Föreslår %s\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 msgid "mounted filesystems:\n" msgstr "monterade filsystem:\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr " i enhet bstrl btillg itillg monteringspunkt\n" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "%5d 0x%04x %5u %12ld %12ld %s\n" @@ -3107,86 +3108,86 @@ msgstr "saknas %c %s" msgid "Unsatisfied dependencies for %s: " msgstr "Ouppfyllda beroenden för %s: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "db%d-fel(%d) från %s: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "db%d-fel(%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "stängde db-miljö %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "tog bort db-miljö %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "öppnar db-miljö %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "stängde db-index %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "verifierade db-index %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" "odelad posix-mutex funna(%d), lägger till DB_PRIVATE, använder fcntl-lås\n" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "öppnar db-index %s/%s %s rättighet=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "kan inte få %s lås på %s/%s\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "uteslutande" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "delat" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "okänd db-flagga: \"%s\" ignorerad\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s har ogiltigt ogiltigt numeriskt värde, hoppar över\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s har för stort eller för litet \"long\"-värde, hoppar över\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s har för stort eller för litet heltalsvärde, hoppar över\n" diff --git a/po/tr.po b/po/tr.po index 73c2ec8..3e9d797 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2003-08-26 15:43-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:11-0500\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -110,7 +111,7 @@ msgstr "T msgid "%s: %s\n" msgstr "dosya %s: %s\n" -#: rpmqv.c:129 lib/poptALL.c:111 +#: rpmqv.c:129 lib/poptALL.c:114 #, c-format msgid "RPM version %s\n" msgstr "RPM Sürüm %s\n" @@ -1256,19 +1257,19 @@ msgstr "paket ba msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "paket baþlýklarýný (eski) rpm[23] paketleme ile uyumlu üretir" -#: build/poptBT.c:229 lib/poptALL.c:232 lib/poptI.c:254 lib/poptQV.c:329 +#: build/poptBT.c:229 lib/poptALL.c:235 lib/poptI.c:254 lib/poptQV.c:329 #: lib/poptQV.c:338 lib/poptQV.c:377 #, fuzzy msgid "don't verify package digest(s)" msgstr "paket baðýmlýlýklarý doðrulanmaz" -#: build/poptBT.c:231 lib/poptALL.c:234 lib/poptI.c:256 lib/poptQV.c:332 +#: build/poptBT.c:231 lib/poptALL.c:237 lib/poptI.c:256 lib/poptQV.c:332 #: lib/poptQV.c:340 lib/poptQV.c:380 #, fuzzy msgid "don't verify database header(s) when retrieved" msgstr "paket mimarisi denetlenmez" -#: build/poptBT.c:233 lib/poptALL.c:240 lib/poptI.c:258 lib/poptQV.c:335 +#: build/poptBT.c:233 lib/poptALL.c:243 lib/poptI.c:258 lib/poptQV.c:335 #: lib/poptQV.c:342 lib/poptQV.c:382 #, fuzzy msgid "don't verify package signature(s)" @@ -1661,117 +1662,117 @@ msgstr "%s: readLead ba msgid "%s: Fread failed: %s\n" msgstr "%s: Fread baþarýsýz: %s\n" -#: lib/poptALL.c:219 +#: lib/poptALL.c:222 msgid "predefine MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:220 lib/poptALL.c:223 +#: lib/poptALL.c:223 lib/poptALL.c:226 msgid "'MACRO EXPR'" msgstr "" -#: lib/poptALL.c:222 +#: lib/poptALL.c:225 msgid "define MACRO with value EXPR" msgstr "" -#: lib/poptALL.c:225 +#: lib/poptALL.c:228 #, fuzzy msgid "print macro expansion of EXPR" msgstr "+ için makro açýlýmýný gösterir" -#: lib/poptALL.c:226 +#: lib/poptALL.c:229 msgid "'EXPR'" msgstr "" -#: lib/poptALL.c:228 lib/poptALL.c:247 lib/poptALL.c:251 +#: lib/poptALL.c:231 lib/poptALL.c:250 lib/poptALL.c:254 #, fuzzy msgid "read instead of default file(s)" msgstr "öntanýmlý makro dosyasý yerine okunur" -#: lib/poptALL.c:229 lib/poptALL.c:248 lib/poptALL.c:252 +#: lib/poptALL.c:232 lib/poptALL.c:251 lib/poptALL.c:255 msgid "" msgstr "" -#: lib/poptALL.c:237 lib/poptALL.c:271 +#: lib/poptALL.c:240 lib/poptALL.c:274 msgid "disable use of libio(3) API" msgstr "libio(3) API kullanýmýný iptal eder" -#: lib/poptALL.c:243 +#: lib/poptALL.c:246 #, fuzzy msgid "send stdout to CMD" msgstr "standart çýktýyý 'a gönderir" -#: lib/poptALL.c:244 +#: lib/poptALL.c:247 msgid "CMD" msgstr "" -#: lib/poptALL.c:255 +#: lib/poptALL.c:258 #, fuzzy msgid "use ROOT as top level directory" msgstr "Üst düzey dizin olarak kullanýlýr" -#: lib/poptALL.c:256 +#: lib/poptALL.c:259 msgid "ROOT" msgstr "" -#: lib/poptALL.c:259 +#: lib/poptALL.c:262 msgid "display known query tags" msgstr "tanýmlanmýþ sorgulama etiketlerini gösterir" -#: lib/poptALL.c:261 +#: lib/poptALL.c:264 msgid "display final rpmrc and macro configuration" msgstr "son rpmrc ve makro yapýlandýrmasýný gösterir" -#: lib/poptALL.c:263 +#: lib/poptALL.c:266 msgid "provide less detailed output" msgstr "daha az ayrýntýlý çýktý saðlar" -#: lib/poptALL.c:265 +#: lib/poptALL.c:268 msgid "provide more detailed output" msgstr "daha ayrýntýlý çýktý saðlar" -#: lib/poptALL.c:267 +#: lib/poptALL.c:270 msgid "print the version of rpm being used" msgstr "Kullanýlan RPM sürümünü verir" -#: lib/poptALL.c:280 +#: lib/poptALL.c:283 #, fuzzy msgid "debug payload file state machine" msgstr "hata ayýklama dosyasý durum motoru" -#: lib/poptALL.c:282 +#: lib/poptALL.c:285 #, fuzzy msgid "use threads for file state machine" msgstr "hata ayýklama dosyasý durum motoru" -#: lib/poptALL.c:284 +#: lib/poptALL.c:287 msgid "debug protocol data stream" msgstr "protokol veri akýþýnda hata kontrolu" -#: lib/poptALL.c:289 +#: lib/poptALL.c:292 #, fuzzy msgid "debug option/argument processing" msgstr "(%d) argümaný iþlenirken iç hata oluþtu :-(\n" -#: lib/poptALL.c:292 +#: lib/poptALL.c:297 #, fuzzy msgid "debug package state machine" msgstr "hata ayýklama dosyasý durum motoru" -#: lib/poptALL.c:294 +#: lib/poptALL.c:299 #, fuzzy msgid "use threads for package state machine" msgstr "hata ayýklama dosyasý durum motoru" -#: lib/poptALL.c:306 +#: lib/poptALL.c:311 msgid "debug rpmio I/O" msgstr "rpmio G/Ç hata kontrolu" -#: lib/poptALL.c:318 +#: lib/poptALL.c:323 msgid "debug URL cache handling" msgstr "URL arabellek kullanýmý hata kontrolu" #. @-nullpass@ -#: lib/poptALL.c:388 +#: lib/poptALL.c:393 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" @@ -2290,7 +2291,7 @@ msgstr "%s a msgid "%s failed: %s\n" msgstr "%s baþarýsýz\n" -#: lib/query.c:118 lib/rpmts.c:558 +#: lib/query.c:118 lib/rpmts.c:565 #, c-format msgid "incorrect format: %s\n" msgstr "biçem yanlýþ: %s\n" @@ -2339,7 +2340,7 @@ msgid "package has neither file owner or id lists\n" msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n" #: lib/query.c:428 lib/query.c:475 lib/rpminstall.c:123 lib/rpminstall.c:462 -#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:569 +#: lib/rpminstall.c:593 lib/rpminstall.c:1018 lib/rpmts.c:576 #: tools/rpmgraph.c:120 tools/rpmgraph.c:157 #, c-format msgid "open of %s failed: %s\n" @@ -2564,31 +2565,31 @@ msgstr "paket %s-%s-%s gereksinimi tatmin edici de msgid "%s skipped due to missingok flag\n" msgstr "missingok flamasýndan dolayý %s atlandý\n" -#: lib/rpmfi.c:783 +#: lib/rpmfi.c:784 msgid "========== relocations\n" msgstr "========== yeniden konumlama\n" -#: lib/rpmfi.c:787 +#: lib/rpmfi.c:788 #, c-format msgid "%5d exclude %s\n" msgstr "%5d %s'i dýþlýyor\n" -#: lib/rpmfi.c:790 +#: lib/rpmfi.c:791 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n" -#: lib/rpmfi.c:918 +#: lib/rpmfi.c:919 #, c-format msgid "excluding %s %s\n" msgstr "%s %s dýþlanýyor\n" -#: lib/rpmfi.c:928 +#: lib/rpmfi.c:929 #, c-format msgid "relocating %s to %s\n" msgstr "%s %s'e konumlanýyor\n" -#: lib/rpmfi.c:1015 +#: lib/rpmfi.c:1021 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s dizini %s de yeniden konumlanýyor\n" @@ -2922,46 +2923,46 @@ msgstr "%s okuma eri msgid "cannot open Packages database in %s\n" msgstr "%s de Paket veritabaný açýlamadý\n" -#: lib/rpmts.c:246 +#: lib/rpmts.c:252 #, fuzzy, c-format msgid "extra '(' in package label: %s\n" msgstr "geçersiz paket numarasý: %s\n" -#: lib/rpmts.c:264 +#: lib/rpmts.c:270 #, fuzzy, c-format msgid "missing '(' in package label: %s\n" msgstr "%s içinde '(' yok: %s\n" -#: lib/rpmts.c:272 +#: lib/rpmts.c:278 #, fuzzy, c-format msgid "missing ')' in package label: %s\n" msgstr "geçersiz paket numarasý: %s\n" -#: lib/rpmts.c:448 +#: lib/rpmts.c:455 #, fuzzy, c-format msgid "cannot open Solve database in %s\n" msgstr "%s dizininde rpm veritabaný açýlamýyor\n" -#: lib/rpmts.c:590 +#: lib/rpmts.c:597 #, fuzzy, c-format msgid "Adding: %s\n" msgstr "satýr: %s\n" -#: lib/rpmts.c:602 +#: lib/rpmts.c:609 #, fuzzy, c-format msgid "Suggesting: %s\n" msgstr "%s alýnýyor\n" -#: lib/rpmts.c:1070 +#: lib/rpmts.c:1077 #, fuzzy msgid "mounted filesystems:\n" msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n" -#: lib/rpmts.c:1072 +#: lib/rpmts.c:1079 msgid " i dev bsize bavail iavail mount point\n" msgstr "" -#: lib/rpmts.c:1128 +#: lib/rpmts.c:1135 #, c-format msgid "%5d 0x%04x %5u %12ld %12ld %s\n" msgstr "" @@ -3178,85 +3179,85 @@ msgstr "eksik %s" msgid "Unsatisfied dependencies for %s: " msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: " -#: rpmdb/db3.c:156 +#: rpmdb/db3.c:160 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "db%d hata(%d) %s'den: %s\n" -#: rpmdb/db3.c:159 +#: rpmdb/db3.c:163 #, c-format msgid "db%d error(%d): %s\n" msgstr "db%d hata(%d): %s\n" -#: rpmdb/db3.c:185 +#: rpmdb/db3.c:189 #, c-format msgid "closed db environment %s/%s\n" msgstr "kapandý db ortamý %s/%s\n" -#: rpmdb/db3.c:203 +#: rpmdb/db3.c:207 #, c-format msgid "removed db environment %s/%s\n" msgstr "silindi db ortamý %s/%s\n" -#: rpmdb/db3.c:292 +#: rpmdb/db3.c:296 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "açýlýyor db ortamý %s/%s %s\n" -#: rpmdb/db3.c:779 +#: rpmdb/db3.c:782 #, c-format msgid "closed db index %s/%s\n" msgstr "kapandý db endeks %s/%s\n" -#: rpmdb/db3.c:846 +#: rpmdb/db3.c:849 #, c-format msgid "verified db index %s/%s\n" msgstr "doðrulandý db endeks %s/%s\n" -#: rpmdb/db3.c:986 +#: rpmdb/db3.c:989 #, c-format msgid "unshared posix mutexes found(%d), adding DB_PRIVATE, using fcntl lock\n" msgstr "" -#: rpmdb/db3.c:1090 +#: rpmdb/db3.c:1093 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "açýlýyor db endeks %s/%s %s kip=0x%x\n" -#: rpmdb/db3.c:1328 +#: rpmdb/db3.c:1331 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "%s kilit %s/%s'den alýnamadý\n" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "exclusive" msgstr "baðdaþýk" -#: rpmdb/db3.c:1330 +#: rpmdb/db3.c:1333 msgid "shared" msgstr "paylaþýmlý" -#: rpmdb/db3.c:1334 +#: rpmdb/db3.c:1337 #, c-format msgid "locked db index %s/%s\n" msgstr "kilitli db endeks %s/%s\n" -#: rpmdb/dbconfig.c:329 +#: rpmdb/dbconfig.c:337 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "tanýnmayan db seçeneði: \"%s\" yoksayýldý\n" -#: rpmdb/dbconfig.c:369 +#: rpmdb/dbconfig.c:377 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s geçersiz sayýsal deðer içeriyor, atlandý\n" -#: rpmdb/dbconfig.c:378 +#: rpmdb/dbconfig.c:386 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ya çok büyük ya da çok küçük 'long' deðer içeriyor, atlandý\n" -#: rpmdb/dbconfig.c:387 +#: rpmdb/dbconfig.c:395 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s ya çok büyük ya da çok küçük 'integer' deðer içeriyor, atlandý\n" diff --git a/popt/po/cs.po b/popt/po/cs.po index 4147cbc..b5f4d1f 100644 --- a/popt/po/cs.po +++ b/popt/po/cs.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-07-24 00:03+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "neznámé èíslo chyby" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "volba (%d) není v popt implementována\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "chybí argument" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "neznámá volba" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "po¾adovány vzájemnì výluèné logické operace" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg nesmí být NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "aliasy vnoøené pøíli¹ hluboko" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "chyba v quotování parametrù" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "chybná numerická hodnota" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "èíslo je pøíli¹ velké nebo pøíli¹ malé" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "selhala alokace pamìti" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "neznámá chyba" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Vypí¹e tuto nápovìdu" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Vypí¹e krátký návod k pou¾ití" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Zobrazit implicitní volby ve zprávì" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "NONE" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Pou¾ití:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[VOLBY...]" diff --git a/popt/po/da.po b/popt/po/da.po index 53f0a32..f0f9023 100644 --- a/popt/po/da.po +++ b/popt/po/da.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: Sun Jan 21 2001 04:30:32+0200\n" "Last-Translator: Martin Hansen \n" "Language-Team: Dansk \n" @@ -10,104 +11,104 @@ msgstr "" "Content-Transfer-Encoding: 8-bit\n" "X-Generator: KTranslator v 0.6.0\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "ukendt fejlnr." -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "tilvalgstype (%d) er ikke implementeret i popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "mangler argument" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "ukendt tilvalg" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "de ønskede handlinger udelukker hinanden" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "aliaser er for dybt indlejret" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "fejl i parameter citering" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "ugyldig numerisk værdi" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "nummer for stort, eller for lille" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "ukendt fejl" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Vis denne hjælpemeddelelse" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Vis kortfattet brugsanvisning" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Vis kortfattet brugsanvisning" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "INGEN" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Brug:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[TILVALG...]" diff --git a/popt/po/de.po b/popt/po/de.po index 56db8fe..7cce06e 100644 --- a/popt/po/de.po +++ b/popt/po/de.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/es.po b/popt/po/es.po index e2c50b7..09c65c6 100644 --- a/popt/po/es.po +++ b/popt/po/es.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Leandro Lucarella \n" "Language-Team: LANGUAGE \n" @@ -14,104 +15,104 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "errno desconocido" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "tipo de opcin (%d) no implementada en popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "falta argumento" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "opcin desconocida" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "requerida operacin lgica mutuamente exclusiva" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "alias anidados muy profundamente" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "error en cita de parmetros" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "valor numrico invlido" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "nmero muy largo o muy pequeo" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "error desconocido" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Muestra este mensaje de ayuda" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Indica el modo de uso resumido" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Indica el modo de uso resumido" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "NONE" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Modo de Uso:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[OPCIN...]" diff --git a/popt/po/eu_ES.po b/popt/po/eu_ES.po index 56db8fe..7cce06e 100644 --- a/popt/po/eu_ES.po +++ b/popt/po/eu_ES.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/fi.po b/popt/po/fi.po index 56db8fe..7cce06e 100644 --- a/popt/po/fi.po +++ b/popt/po/fi.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/fr.po b/popt/po/fr.po index 7e9994e..21bcfe3 100644 --- a/popt/po/fr.po +++ b/popt/po/fr.po @@ -11,7 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.8.1\n" -"POT-Creation-Date: 2003-03-19 12:16-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2003-06-22 23:43+0200\n" "Last-Translator: RPM French Translation \n" "Language-Team: RPM French Translation \n" @@ -19,103 +20,103 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8-bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "errno inconnu" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "type(%d) d'option non implémenté dans popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "argument manquant" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "option iconnue" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "opérations logiques mutuellement exclusives requises" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg ne devrait pas être NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "les alias sont trop entremellés" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "erreur en citant les paramètres" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "valeur numérique invalide" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "nombre trop grand ou trop petit" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "échec de l'allocation de mémoire" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "erreur inconnue" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Montre ce message d'aide" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Affiche un bref descriptif de l'utilisation" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Afficher les valeurs par défaut des options dans le message" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "RIEN" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "ENTIER" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "CHAINE" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOTTANT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Utilisation:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[OPTION...]" diff --git a/popt/po/gl.po b/popt/po/gl.po index b052100..f9bbca2 100644 --- a/popt/po/gl.po +++ b/popt/po/gl.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-01-17 01:01+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -9,104 +10,104 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "errno descoñecido" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "tipo de opción (%d) non implementada en popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "falta un argumento" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "opción descoñecida" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "solicitáronse operacións lóxicas mutuamente excluíntes" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "aliases aniñados a un nivel demasiado profundo" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "erro nas comiñas do parámetro" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "valor numérico non válido" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "número demasiado grande ou pequeno" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "erro descoñecido" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Amosar esta mensaxe de axuda" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Amosar brevemente o xeito de utilización" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Amosar brevemente o xeito de utilización" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "NADA" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "CADEA" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Uso:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[OPCIÓN...]" diff --git a/popt/po/hu.po b/popt/po/hu.po index b0930ff..08f15d5 100644 --- a/popt/po/hu.po +++ b/popt/po/hu.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2000-08-03 23:26+0200\n" "Last-Translator: László Németh \n" "Language-Team: Hungarian\n" @@ -9,104 +10,104 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8-bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "E súgó megjelenítése" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Rövid használati utasítás megjelenítése" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Rövid használati utasítás megjelenítése" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/id.po b/popt/po/id.po index 56db8fe..7cce06e 100644 --- a/popt/po/id.po +++ b/popt/po/id.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/is.po b/popt/po/is.po index a8ecaaf..f68db48 100644 --- a/popt/po/is.po +++ b/popt/po/is.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-06-08 01:35+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "óþekkt villunúmer" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "rofagerðin (%d) er ekki studd í popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "vantar viðfang" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "óþekktur rofi" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "beðið um rofa sem slökkva hvor á öðrum" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg ætti ekki að vera NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "alíasar of flóknir" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "villa í viðföngum (gæsalappir og svo frv.)" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "ógilt tölulegt gildi" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "talan of stór eða smá" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "ekki tókst að taka frá minni" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "óþekkt villa" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Sýna þessa hjálp" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Sýna stuttar notkunarleiðbeiningar" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Sýna sjálfgefin gildi rofa í skilaboðum" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "ENGIN" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Notkun:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[ROFI...]" diff --git a/popt/po/it.po b/popt/po/it.po index 56db8fe..7cce06e 100644 --- a/popt/po/it.po +++ b/popt/po/it.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/ja.po b/popt/po/ja.po index 56db8fe..7cce06e 100644 --- a/popt/po/ja.po +++ b/popt/po/ja.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/ko.po b/popt/po/ko.po index 3fb4ded..c3b64a2 100644 --- a/popt/po/ko.po +++ b/popt/po/ko.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-09-06 20:06+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=EUC-KR\n" "Content-Transfer-Encoding: 8-bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "¾Ë ¼ö ¾ø´Â ¿À·ùÄÚµå(errno) ÀÔ´Ï´Ù" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "¿É¼Ç À¯Çü (%d)Àº popt¿¡¼­ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "¾Ë ¼ö ¾ø´Â ¿É¼ÇÀÔ´Ï´Ù" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "¾çÂÊ¿¡ ¹èŸÀû ³í¸® ¿¬»êÀÌ ÁöÁ¤µÇ¾ú½À´Ï´Ù" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "¿É¼Ç->Àμö°¡ NULLÀÌ µÇ¾î¼­´Â ¾ÈµË´Ï´Ù" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "º°Äª(alias)ÀÌ º¹ÀâÇÏ°Ô ¼³Á¤µÇ¾ú½À´Ï´Ù" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "¸Å°³º¯¼ö¿¡ ¿À·ù°¡ ÀÖ½À´Ï´Ù" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "À߸øµÈ ¼öÄ¡ °ªÀÔ´Ï´Ù" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "¼ýÀÚ°¡ ³Ê¹« Å©°Å³ª ³Ê¹« Àû½À´Ï´Ù" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "¸Þ¸ð¸® ÇÒ´ç¿¡ ½ÇÆÐÇß½À´Ï´Ù" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "¾Ë ¼ö ¾ø´Â ¿À·ùÀÔ´Ï´Ù" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "ÀÌ µµ¿ò¸»À» º¸¿©ÁÝ´Ï´Ù" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "°£´ÜÇÑ »ç¿ë¹ýÀ» º¸¿©ÁÝ´Ï´Ù" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "±âº»ÀûÀÎ ¿É¼ÇÀ» º¸¿©ÁÝ´Ï´Ù" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "¾øÀ½(NONE)" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "°ª(VAL)" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "Á¤¼ö(INT)" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "Á¤¼ö(LONG)" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "¹®ÀÚ¿­(STRING)" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "¼Ò¼ö(FLOAT)" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "¼Ò¼ö(DOUBLE)" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "Àμö(ARG)" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "»ç¿ë¹ý:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[¿É¼Ç...]" diff --git a/popt/po/no.po b/popt/po/no.po index bbaa51c..4773d64 100644 --- a/popt/po/no.po +++ b/popt/po/no.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-06-27 11:05+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8-bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "ukjent errno" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "flaggtype (%d) ikke implementert i popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "manglende argument" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "ukjent flagg" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "gjensidig eksluderende logiske operasjoner forespurt" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg må ikke være NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "aliaser med for dype løkker" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "feil i parametersitering" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "ugyldig numerisk verdi" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "tallet er for stort eller lite" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "minneallokering feilet" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "ukjent feil" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Vis denne hjelpmeldingen" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Vis kort bruksmelding" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Vis forvalgte flagg i melding" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "INGEN" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VERDI" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "HELTALL" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRENG" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLYTTALL" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Bruk:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[FLAGG...]" diff --git a/popt/po/pl.po b/popt/po/pl.po index 69066ea..ef4ca4e 100644 --- a/popt/po/pl.po +++ b/popt/po/pl.po @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.9-20030515\n" -"POT-Creation-Date: 2003-05-15 18:57+0200\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2003-06-08 20:32+0200\n" "Last-Translator: Jakub Bogusz \n" "Language-Team: Polish \n" @@ -62,62 +63,60 @@ msgstr "b msgid "unknown error" msgstr "nieznany b³±d" -#: popthelp.c:58 +#: popthelp.c:61 msgid "Show this help message" msgstr "Poka¿ tê pomoc" -#: popthelp.c:59 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Wy¶wietl skrócony sposób u¿ycia" -#: popthelp.c:62 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Wy¶wietl domy¶lne opcje w opisie" -#: popthelp.c:104 +#: popthelp.c:107 msgid "NONE" msgstr "BRAK" -#: popthelp.c:106 +#: popthelp.c:109 msgid "VAL" msgstr "WART" -#: popthelp.c:110 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:111 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:112 +#: popthelp.c:115 msgid "STRING" msgstr "£AÑCUCH" -#: popthelp.c:113 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:114 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:115 +#: popthelp.c:118 msgid "ARG" msgstr "PARAM" -#: popthelp.c:490 +#: popthelp.c:493 msgid "Usage:" msgstr "Sk³adnia:" -#: popthelp.c:514 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[OPCJA...]" -#: popt.h:158 -msgid "Options implemented via popt alias/exec:" -msgstr "Opcje zaimplementowane poprzez popt alias/exec:" +#~ msgid "Options implemented via popt alias/exec:" +#~ msgstr "Opcje zaimplementowane poprzez popt alias/exec:" -#: popt.h:168 -msgid "Help options:" -msgstr "Opcje pomocy:" +#~ msgid "Help options:" +#~ msgstr "Opcje pomocy:" diff --git a/popt/po/popt.pot b/popt/po/popt.pot index 7adb48c..176e818 100644 --- a/popt/po/popt.pot +++ b/popt/po/popt.pot @@ -7,7 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -15,103 +16,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/pt.po b/popt/po/pt.po index e3d85e2..458e648 100644 --- a/popt/po/pt.po +++ b/popt/po/pt.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2002-02-13 18:32+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "errno desconhecido" -#: popt.c:940 +#: popt.c:944 #, 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:1160 +#: popt.c:1164 msgid "missing argument" msgstr "falta um argumento" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "opção desconhecida" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "foram pedidas operações lógicas mutuamente exclusivas" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg não deve ser NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "'aliases' demasiado aninhados" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "erros no 'quoting' de parâmetros" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "valor númerico inválido" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "número demasiado grando ou pequeno" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "alocação de memória falhou" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "erro desconhecido" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Mostrar esta mensagem de ajuda" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Mostrar uma mensagem de utilização sucinta" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Mostrar valor por omissão das opções na mensagem" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "NONE" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Utilização:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[OPÇÃO...]" diff --git a/popt/po/pt_BR.po b/popt/po/pt_BR.po index 56db8fe..7cce06e 100644 --- a/popt/po/pt_BR.po +++ b/popt/po/pt_BR.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/ro.po b/popt/po/ro.po index a60e9fd..4c68c56 100644 --- a/popt/po/ro.po +++ b/popt/po/ro.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2000-06-14 23:23+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -9,105 +10,105 @@ msgstr "" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "eroare necunoscuta" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "optiunea de tipul (%d) nu este implementata in popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "argument lipsa" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "optiune necunoscuta" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "recursivitate infinita la optiunile sinonime" -#: popt.c:1170 +#: popt.c:1174 #, fuzzy msgid "error in parameter quoting" msgstr "eroare la insertie parametru" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "valoare numarica invalida" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "numar prea mare sau prea mic" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "eroare necuinoscuta" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Afisare mesaj de help" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Afisare mesaj sintaxa sumar" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Afisare mesaj sintaxa sumar" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Sintaxa:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[OPTIUNE...]" diff --git a/popt/po/ru.po b/popt/po/ru.po index 3aee845..c6ff1cc 100644 --- a/popt/po/ru.po +++ b/popt/po/ru.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-07-05 21:00-0500\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=koi8-r\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÎÏÍÅÒ ÏÛÉÂËÉ" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "ÏÂÒÁÂÏÔËÁ ÐÁÒÁÍÅÔÒÁ (%d) × popt ÎÅ ÐÒÅÄÕÓÍÏÔÒÅÎÁ\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "ÐÒÏÐÕÝÅÎ ÁÒÇÕÍÅÎÔ" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÐÁÒÁÍÅÔÒ" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "ÚÁÐÒÏÛÅÎÙ ×ÚÁÉÍÎÏ ÉÓËÌÀÞÁÀÝÉÅ ÌÏÇÉÞÅÓËÉÅ ÏÐÅÒÁÃÉÉ" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg ÎÅ ÍÏÖÅÔ ÂÙÔØ NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "ÐÒÅ×ÙÛÅÎ ÕÒÏ×ÅÎØ ÄÏÐÕÓÔÉÍÏÊ ÒÅËÕÒÓÉÉ ÐÏÄÓÔÁÎÏ×ÏË" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "ÏÛÉÂËa ÐÏÍÅÝÅÎÉÑ ÐÁÒÁÍÅÔÒÏ× × ËÁ×ÙÞËÉ" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "ÎÅÐÒÁ×ÉÌØÎÏÅ ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ ÚÁ ÐÒÅÄÅÌÁÍÉ ÐÒÅÄÕÓÍÏÔÒÅÎÎÏÇÏ" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "ÏÛÉÂËÁ ×ÙÄÅÌÅÎÉÑ ÐÁÍÑÔÉ" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "ðÏËÁÚÁÔØ ÜÔÏ ÓÏÏÂÝÅÎÉÅ" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "ðÏËÁÚÁÔØ ËÒÁÔËÕÀ ÉÎÓÔÒÕËÃÉÀ ÐÏ ÉÓÐÏÌØÚÏ×ÁÎÉÀ" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "ðÏËÁÚÁÔØ ÐÁÒÁÍÅÔÒÙ ÐÏ ÕÍÏÌÞÁÎÉÀ" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "NONE" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VAL" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[ðáòáíåôò...]" diff --git a/popt/po/sk.po b/popt/po/sk.po index a91a986..5898923 100644 --- a/popt/po/sk.po +++ b/popt/po/sk.po @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 1999-08-04 21:40+0200\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -13,104 +14,104 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Vypísa» túto správu" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Zobrazi» struèný návod na pou¾itie" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Zobrazi» struèný návod na pou¾itie" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sl.po b/popt/po/sl.po index 8907b2f..369f312 100644 --- a/popt/po/sl.po +++ b/popt/po/sl.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2000-09-05 12:30+0200\n" "Last-Translator: Roman Maurer \n" "Language-Team: Slovenian \n" @@ -9,104 +10,104 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Prika¾i to sporoèilo s pomoèjo" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Prika¾i kratko sporoèilo o uporabi" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Prika¾i kratko sporoèilo o uporabi" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sr.po b/popt/po/sr.po index 56db8fe..7cce06e 100644 --- a/popt/po/sr.po +++ b/popt/po/sr.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sv.po b/popt/po/sv.po index 43a1155..0f1d816 100644 --- a/popt/po/sv.po +++ b/popt/po/sv.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2001-07-12 22:26+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -9,103 +10,103 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "okänt felnummer" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "flaggtypen (%d) är inte implementerad i popt\n" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "argument saknas" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "okänd flagga" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "ömsesidigt uteslutande logiska operationer begärdes" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "opt->arg får inte vara NULL" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "alias är nästlade för djupt" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "fel i parametercitering" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "ogiltigt numeriskt värde" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "talet för stort eller för litet" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "minnesallokering misslyckades" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "okänt fel" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Visa denna hjälptext" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Visa en kortfattad användningstext" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "Visa standardalternativ för flaggor i meddelande" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "INGET" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "VÄRDE" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "HELTAL" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LÅNG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRÄNG" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLYTTAL" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DUBBEL" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Användning:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[FLAGGA...]" diff --git a/popt/po/tr.po b/popt/po/tr.po index bfb7e06..0b5f813 100644 --- a/popt/po/tr.po +++ b/popt/po/tr.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 2000-02-11 13:01+0200\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -9,104 +10,104 @@ msgstr "" "Content-Type: text/plain; charset=iso8859-9\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "bilinmeyen hata no" -#: popt.c:940 +#: popt.c:944 #, 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:1160 +#: popt.c:1164 msgid "missing argument" msgstr "argüman eksik" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "bilinmeyen seçenek" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "birbirini dýþlayan mantýksal iþlemler istendi" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "adlarda çok fazla içiçelikler" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "parametrelerde týrnak iþaretleme hatalý " -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "sayýsal deðer geçersiz" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "sayý ya çok büyük ya da çok küçük" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "bilinmeyen hata" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Bu yardým iletisini gösterir" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Kýsa bir kullaným iletisi göster" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Kýsa bir kullaným iletisi göster" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "YOK" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "DEÐ" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "INT" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "LONG" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "STRING" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "FLOAT" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "DOUBLE" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "ARG" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "Kullanýmý:" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "[SEÇENEK...]" diff --git a/popt/po/uk.po b/popt/po/uk.po index fa295d6..50ee2fa 100644 --- a/popt/po/uk.po +++ b/popt/po/uk.po @@ -5,7 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 1999-09-30 16:54+0200\n" "Last-Translator: Yuri Syrota \n" "Language-Team: Ukrainian \n" @@ -13,104 +14,104 @@ msgstr "" "Content-Type: text/plain; charset=koi8-u\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "ðÏËÁÚÁÔÉ ÃÀ ÄÏצÄËÕ" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/wa.po b/popt/po/wa.po index 715ebd6..5e3ddd5 100644 --- a/popt/po/wa.po +++ b/popt/po/wa.po @@ -9,7 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 1999-03-18 23:11+0100\n" "Last-Translator: Nobody yet\n" "Language-Team: walon \n" @@ -17,104 +18,104 @@ msgstr "" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "Mostrer ci messaedje d' aide chal" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "Mostre on court messaedje so kmint vos è siervi" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "Mostre on court messaedje so kmint vos è siervi" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/zh.po b/popt/po/zh.po index 56db8fe..7cce06e 100644 --- a/popt/po/zh.po +++ b/popt/po/zh.po @@ -6,7 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,103 +15,103 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "" -#: popthelp.c:61 +#: popthelp.c:65 msgid "Display option defaults in message" msgstr "" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/zh_CN.GB2312.po b/popt/po/zh_CN.GB2312.po index 33601d3..7d37818 100644 --- a/popt/po/zh_CN.GB2312.po +++ b/popt/po/zh_CN.GB2312.po @@ -1,7 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2003-03-19 11:03-0500\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2003-12-07 15:21-0500\n" "PO-Revision-Date: 1999-11-11 05:04+0800\n" "Last-Translator: Dillion Chen \n" "Language-Team: TLDN\n" @@ -9,104 +10,104 @@ msgstr "" "Content-Type: text/plain; charset=gb2312\n" "Content-Transfer-Encoding: 8bit\n" -#: popt.c:34 +#: popt.c:35 msgid "unknown errno" msgstr "" -#: popt.c:940 +#: popt.c:944 #, c-format msgid "option type (%d) not implemented in popt\n" msgstr "" -#: popt.c:1160 +#: popt.c:1164 msgid "missing argument" msgstr "" -#: popt.c:1162 +#: popt.c:1166 msgid "unknown option" msgstr "" -#: popt.c:1164 +#: popt.c:1168 msgid "mutually exclusive logical operations requested" msgstr "" -#: popt.c:1166 +#: popt.c:1170 msgid "opt->arg should not be NULL" msgstr "" -#: popt.c:1168 +#: popt.c:1172 msgid "aliases nested too deeply" msgstr "" -#: popt.c:1170 +#: popt.c:1174 msgid "error in parameter quoting" msgstr "" -#: popt.c:1172 +#: popt.c:1176 msgid "invalid numeric value" msgstr "" -#: popt.c:1174 +#: popt.c:1178 msgid "number too large or too small" msgstr "" -#: popt.c:1176 +#: popt.c:1180 msgid "memory allocation failed" msgstr "" -#: popt.c:1180 +#: popt.c:1184 msgid "unknown error" msgstr "" -#: popthelp.c:57 +#: popthelp.c:61 msgid "Show this help message" msgstr "ÏÔʾÕâÌõ°ïÖúÐÅÏ¢" -#: popthelp.c:58 +#: popthelp.c:62 msgid "Display brief usage message" msgstr "ÏÔʾ¼ò¶ÌʹÓÃÐÅÏ¢" -#: popthelp.c:61 +#: popthelp.c:65 #, fuzzy msgid "Display option defaults in message" msgstr "ÏÔʾ¼ò¶ÌʹÓÃÐÅÏ¢" -#: popthelp.c:103 +#: popthelp.c:107 msgid "NONE" msgstr "" -#: popthelp.c:105 +#: popthelp.c:109 msgid "VAL" msgstr "" -#: popthelp.c:109 +#: popthelp.c:113 msgid "INT" msgstr "" -#: popthelp.c:110 +#: popthelp.c:114 msgid "LONG" msgstr "" -#: popthelp.c:111 +#: popthelp.c:115 msgid "STRING" msgstr "" -#: popthelp.c:112 +#: popthelp.c:116 msgid "FLOAT" msgstr "" -#: popthelp.c:113 +#: popthelp.c:117 msgid "DOUBLE" msgstr "" -#: popthelp.c:114 +#: popthelp.c:118 msgid "ARG" msgstr "" -#: popthelp.c:486 +#: popthelp.c:493 msgid "Usage:" msgstr "" -#: popthelp.c:510 +#: popthelp.c:517 msgid "[OPTION...]" msgstr "" diff --git a/python/Makefile.am b/python/Makefile.am index 9993213..300a6a0 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -6,7 +6,8 @@ LINT = splint PYVER= @WITH_PYTHON_VERSION@ -pylibdir = $(shell python -c 'import sys; print sys.path[1]') +# XXX grrr, sys.path[1] wrong value in python-2.3.2 +pylibdir = $(shell python -c 'import sys; print sys.path[2]') pyincdir = $(prefix)/include/python${PYVER} SUBDIRS = rpmdb diff --git a/python/rpmdb/Makefile.am b/python/rpmdb/Makefile.am index b162bd8..0f34d48 100644 --- a/python/rpmdb/Makefile.am +++ b/python/rpmdb/Makefile.am @@ -9,7 +9,8 @@ SUBDIRS = test EXTRA_DIST = \ __init__.py dbobj.py db.py dbrecio.py dbshelve.py dbtables.py dbutils.py -pylibdir = $(shell python -c 'import sys; print sys.path[1]') +# XXX grrr, sys.path[1] wrong value in python-2.3.2 +pylibdir = $(shell python -c 'import sys; print sys.path[2]') rpmdbdir = $(pylibdir)/site-packages/rpmdb rpmdb_SCRIPTS = \ diff --git a/rpm.spec.in b/rpm.spec.in index 587cd7d..d5d4b61 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -20,10 +20,10 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.1 +Release: 0.2 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz -Copyright: GPL +License: GPL Conflicts: patch < 2.5 %ifos linux Prereq: fileutils shadow-utils @@ -36,8 +36,8 @@ BuildRequires: elfutils-libelf BuildRequires: zlib-devel -BuildRequires: beecrypt-devel >= 0:3.0.0-2 -Requires: beecrypt-devel >= 0:3.0.0-2 +BuildRequires: beecrypt-devel >= 3.0.1 +Requires: beecrypt-devel >= 3.0.1 # XXX Red Hat 5.2 has not bzip2 or python %if %{with_bzip2} @@ -134,7 +134,7 @@ CFLAGS="$RPM_OPT_FLAGS -fPIC"; export CFLAGS %else CFLAGS="$RPM_OPT_FLAGS"; export CFLAGS %endif -CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} --sysconfdir=/etc \ +./configure --prefix=%{__prefix} --sysconfdir=/etc \ --localstatedir=/var --infodir='${prefix}%{__share}/info' \ --mandir='${prefix}%{__share}/man' \ $WITH_PYTHON --without-javaglue @@ -143,6 +143,9 @@ CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} $WITH_PYTHON \ --without-javaglue %endif +# XXX hack out O_DIRECT support in db4 for now. +perl -pi -e 's/#define HAVE_O_DIRECT 1/#undef HAVE_O_DIRECT/' db3/db_config.h + make %install @@ -473,6 +476,10 @@ exit 0 %{__includedir}/popt.h %changelog +* Sun Dec 7 2003 Jeff Johnson 4.3-0.2 +- only internal Berkeley db from now on. +- revive "make dist". + * Wed Mar 19 2003 Jeff Johnson 4.3-0.1 - upgrade to zlib-1.2.beta7. - pass structure pointer, not args, through headerSprintf call chain. diff --git a/rpmdb/Makefile.am b/rpmdb/Makefile.am index 3e4e3ff..9c41991 100644 --- a/rpmdb/Makefile.am +++ b/rpmdb/Makefile.am @@ -36,10 +36,11 @@ mylibs = librpmdb.la LIBS = -DB3LO = $(shell cat $(top_builddir)/$(WITH_DB_SUBDIR)/db3lobjs) -DB3LOBJS = $(DB3LO:%.lo=%.o) +# XXX watchout, ../db3/libdb.la created by this Makefile may surprise +libdb_la = $(top_builddir)/$(WITH_DB_SUBDIR)/libdb.la -LDFLAGS = -L$(DESTDIR)$(usrlibdir) +# XXX grrr, RPM_BUILD_ROOT prevents build pollution if/when -lrpm different +LDFLAGS = -L$(RPM_BUILD_ROOT)$(usrlibdir) -L$(DESTDIR)$(usrlibdir) usrlibdir = $(libdir)@MARK64@ usrlib_LTLIBRARIES = librpmdb.la @@ -51,10 +52,9 @@ librpmdb_la_SOURCES = \ librpmdb_la_LDFLAGS = -release 4.3 \ $(top_builddir)/rpmio/librpmio.la \ $(top_builddir)/popt/libpopt.la \ - @WITH_LIBELF_LIB@ \ - @libdb3@ -librpmdb_la_LIBADD = $(DBLIBOBJS) $(DB3LOBJS) -librpmdb_la_DEPENDENCIES = $(DBLIBOBJS) .created + @WITH_LIBELF_LIB@ +librpmdb_la_LIBADD = $(DBLIBOBJS) $(libdb_la) +librpmdb_la_DEPENDENCIES = $(DBLIBOBJS) $(libdb_la) # XXX make sure that db.h symlink is generated dbconfig.c db3.c: db.h @@ -80,11 +80,9 @@ tagtbl.c: Makefile.am $(top_srcdir)/lib/rpmlib.h db.h: @ln -sf ../$(WITH_DB_SUBDIR)/db.h $@ -.created: db.h - for lo in $(DB3LOBJS); do \ - [ -f $$lo ] || $(LN_S) $(top_builddir)/$(WITH_DB_SUBDIR)/$$lo $$lo ; \ - done - touch $@ +# XXX grrr, force noinst libdb.la for db3. +$(libdb_la): + sed -e"/^libdir=/s/^.*$$/libdir=''/" < $(top_builddir)/$(WITH_DB_SUBDIR)/libdb-4.1.la > $(libdb_la) rpmdb_archive_SOURCES = rpmdb_archive_LDADD = \ @@ -164,10 +162,9 @@ rpmdb_verify_LDADD = \ librpmdb.la clean-local: - rm -f $(DB3LOBJS) *.o .created db.h + rm -f *.o db.h $(libdb_la) -# XXX TODO: figger why .created addition here dinna work -BUILT_SOURCES = tagtbl.c # .created +BUILT_SOURCES = tagtbl.c rpmdb.lcd: Makefile.am ${librpmdb_la_SOURCES} ${pkginc_HEADERS} ${noinst_HEADERS} -lclint ${DEFS} ${INCLUDES} ${librpmdb_la_SOURCES} -dump $@ 2>/dev/null diff --git a/rpmrc.in b/rpmrc.in index b49b7bf..4e6335c 100644 --- a/rpmrc.in +++ b/rpmrc.in @@ -1,7 +1,7 @@ #/*! \page config_rpmrc Default configuration: /usr/lib/rpm/rpmrc # \verbatim # -# $Id: rpmrc.in,v 2.56 2003/07/02 19:26:04 jbj Exp $ +# $Id: rpmrc.in,v 2.57 2003/12/11 19:09:59 jbj Exp $ # # This is a global RPM configuration file. All changes made here will # be lost when the rpm package is upgraded. Any per-system configuration @@ -18,6 +18,7 @@ optflags: i686 -O2 -g -march=i686 optflags: athlon -O2 -g -march=athlon optflags: ia64 -O2 -g optflags: x86_64 -O2 -g +optflags: amd64 -O2 -g optflags: alpha -O2 -g -mieee optflags: alphaev5 -O2 -g -mieee -mcpu=ev5 @@ -70,6 +71,7 @@ arch_canon: i586: i586 1 arch_canon: i486: i486 1 arch_canon: i386: i386 1 arch_canon: x86_64: x86_64 1 +arch_canon: amd64: amd64 1 arch_canon: alpha: alpha 2 arch_canon: alphaev5: alphaev5 2 @@ -118,8 +120,8 @@ arch_canon: i370: i370 14 arch_canon: s390x: s390x 15 arch_canon: ppc64: ppc64 16 -arch_canon: ppc64pseries: ppc64pseries 16 -arch_canon: ppc64iseries: ppc64iseries 16 +arch_canon: ppc64pseries: ppc64pseries 16 +arch_canon: ppc64iseries: ppc64iseries 16 arch_canon: sh: sh 17 arch_canon: xtensa: xtensa 18 @@ -200,6 +202,7 @@ buildarchtranslate: s390x: s390x buildarchtranslate: ia64: ia64 buildarchtranslate: x86_64: x86_64 +buildarchtranslate: amd64: x86_64 ############################################################# # Architecture compatibility @@ -268,7 +271,8 @@ arch_compat: s390x: s390 noarch arch_compat: ia64: noarch -arch_compat: x86_64: athlon noarch +arch_compat: x86_64: amd64 athlon noarch +arch_compat: amd64: x86_64 athlon noarch os_compat: IRIX64: IRIX os_compat: solaris2.7: solaris2.3 solaris2.4 solaris2.5 solaris2.6 @@ -356,6 +360,7 @@ buildarch_compat: s390x: noarch buildarch_compat: ia64: noarch buildarch_compat: x86_64: noarch +buildarch_compat: amd64: noarch macrofiles: @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.specspo:@SYSCONFIGDIR@/macros.prelink:@SYSCONFIGDIR@/macros.solve:@SYSCONFIGDIR@/macros.up2date:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros diff --git a/tools/convertdb1.c b/tools/convertdb1.c index f0fdec5..829768d 100644 --- a/tools/convertdb1.c +++ b/tools/convertdb1.c @@ -238,6 +238,10 @@ main(int argc, char ** argv) exit(1); } rpmInitMacros(NULL, "/usr/lib/rpm/macros"); + + /* speed things up */ + (void) rpmDefineMacro(NULL, "_rpmdb_rebuild %{nil}", -1); + if (rpmdbOpen("/", &db, O_RDWR, 0644)) { fprintf(stderr, "could not open rpm database\n"); exit(1); diff --git a/zlib/Makefile.am b/zlib/Makefile.am index bdc0253..9f7c782 100644 --- a/zlib/Makefile.am +++ b/zlib/Makefile.am @@ -3,8 +3,7 @@ AUTOMAKE_OPTIONS = 1.4 foreign LINT = splint EXTRA_DIST = algorithm.txt ChangeLog Doxyfile FAQ INDEX README \ - zlib.3 zlib.spec \ - amiga/* contrib/* msdos/* nt/* os2/* + old/* zlib.spec noinst_HEADERS = \ crc32.h deflate.h inffast.h inffixed.h inflate.h \ -- 2.7.4