diff options
78 files changed, 2498 insertions, 2537 deletions
@@ -97,6 +97,7 @@ - drill ts/fi through verify mode, add methods to keep fi abstract. - use mmap when calculating file digests on verify, ~20% faster. - permit --dbpath and --root with signature (i.e. --import) modes. + - beecrypt: add types.h, eliminate need for config.gnu.h. 4.0.3 -> 4.0.4: - solaris: translate i86pc to i386 (#57182). diff --git a/beecrypt/.cvsignore b/beecrypt/.cvsignore index 52496e94f..9bcac96b0 100644 --- a/beecrypt/.cvsignore +++ b/beecrypt/.cvsignore @@ -6,11 +6,11 @@ Doxyfile Makefile Makefile.in apidocs -becrypt.spec +beecrypt.spec beecrypt-*.tar.gz +config.h config.cache config.guess -config.gnu.h config.log config.status config.sub @@ -27,3 +27,4 @@ ltmain.sh stamp-h stamp-h1 stamp-h.in +types.h diff --git a/beecrypt/Makefile.am b/beecrypt/Makefile.am index 78a7c24a3..591bbd547 100644 --- a/beecrypt/Makefile.am +++ b/beecrypt/Makefile.am @@ -56,7 +56,10 @@ libbeecrypt_la_LDFLAGS = -version-info $(LIBBEECRYPT_LT_CURRENT):$(LIBBEECRYPT_L pkginclude_HEADERS = base64.h beecrypt.h blockmode.h blockpad.h blowfish.h blowfishopt.h dhaes.h dldp.h dlkp.h dlpk.h dlsvdp-dh.h dsa.h elgamal.h endianness.h entropy.h fips180.h fips180opt.h fips186.h hmac.h hmacmd5.h hmacsha1.h hmacsha256.h md5.h memchunk.h mp32.h mp32barrett.h mp32number.h mp32opt.h mp32prime.h mtprng.h rsa.h rsakp.h rsapk.h sha256.h timestamp.h -EXTRA_DIST = BENCHMARKS BUGS CONTRIBUTORS Doxyfile.in Doxyheader README.DLL README.WIN32 beecrypt.def beecrypt.mcp beecrypt.rc beecrypt.spec config.h config.gas.h config.win.h javaglue.h +EXTRA_DIST = BENCHMARKS BUGS CONTRIBUTORS Doxyfile.in Doxyheader README.DLL README.WIN32 beecrypt.def beecrypt.mcp beecrypt.rc beecrypt.spec types.h config.gas.h config.win.h javaglue.h + +noinst_HEADERS = debug.h system.h +BUILT_SOURCES = blowfishopt.S fips180opt.S mp32opt.S .PHONY: beetest beetest: all diff --git a/beecrypt/Makefile.in b/beecrypt/Makefile.in index ba22212e9..e9536c1b1 100644 --- a/beecrypt/Makefile.in +++ b/beecrypt/Makefile.in @@ -116,7 +116,17 @@ ac_cv_have_java = @ac_cv_have_java@ ac_cv_have_javac = @ac_cv_have_javac@ am__include = @am__include@ am__quote = @am__quote@ +double8_type = @double8_type@ +float4_type = @float4_type@ install_sh = @install_sh@ +int16_type = @int16_type@ +int32_type = @int32_type@ +int64_type = @int64_type@ +int8_type = @int8_type@ +uint16_type = @uint16_type@ +uint32_type = @uint32_type@ +uint64_type = @uint64_type@ +uint8_type = @uint8_type@ LIBBEECRYPT_LT_CURRENT = 4 LIBBEECRYPT_LT_AGE = 2 @@ -144,14 +154,17 @@ libbeecrypt_la_LDFLAGS = -version-info $(LIBBEECRYPT_LT_CURRENT):$(LIBBEECRYPT_L pkginclude_HEADERS = base64.h beecrypt.h blockmode.h blockpad.h blowfish.h blowfishopt.h dhaes.h dldp.h dlkp.h dlpk.h dlsvdp-dh.h dsa.h elgamal.h endianness.h entropy.h fips180.h fips180opt.h fips186.h hmac.h hmacmd5.h hmacsha1.h hmacsha256.h md5.h memchunk.h mp32.h mp32barrett.h mp32number.h mp32opt.h mp32prime.h mtprng.h rsa.h rsakp.h rsapk.h sha256.h timestamp.h -EXTRA_DIST = BENCHMARKS BUGS CONTRIBUTORS Doxyfile.in Doxyheader README.DLL README.WIN32 beecrypt.def beecrypt.mcp beecrypt.rc beecrypt.spec config.h config.gas.h config.win.h javaglue.h +EXTRA_DIST = BENCHMARKS BUGS CONTRIBUTORS Doxyfile.in Doxyheader README.DLL README.WIN32 beecrypt.def beecrypt.mcp beecrypt.rc beecrypt.spec types.h config.gas.h config.win.h javaglue.h + +noinst_HEADERS = debug.h system.h +BUILT_SOURCES = blowfishopt.S fips180opt.S mp32opt.S DOXYGEN = /usr/bin/doxygen subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = config.gnu.h -CONFIG_CLEAN_FILES = Doxyfile beecrypt.spec +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = Doxyfile beecrypt.spec types.h LTLIBRARIES = $(lib_LTLIBRARIES) am_libbeecrypt_la_OBJECTS = base64.lo beecrypt.lo blockmode.lo \ @@ -178,22 +191,23 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ CFLAGS = @CFLAGS@ DIST_SOURCES = $(libbeecrypt_la_SOURCES) -HEADERS = $(pkginclude_HEADERS) +HEADERS = $(noinst_HEADERS) $(pkginclude_HEADERS) RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \ uninstall-info-recursive all-recursive install-data-recursive \ install-exec-recursive installdirs-recursive install-recursive \ uninstall-recursive check-recursive installcheck-recursive -DIST_COMMON = README $(pkginclude_HEADERS) ./stamp-h.in AUTHORS COPYING \ - COPYING.LIB ChangeLog Doxyfile.in INSTALL Makefile.am \ - Makefile.in NEWS acconfig.h aclocal.m4 beecrypt.spec.in \ - config.gnu.h.in config.guess config.sub configure configure.in \ - depcomp install-sh ltconfig ltmain.sh missing mkinstalldirs +DIST_COMMON = README $(noinst_HEADERS) $(pkginclude_HEADERS) \ + ./stamp-h.in AUTHORS COPYING COPYING.LIB ChangeLog Doxyfile.in \ + INSTALL Makefile.am Makefile.in NEWS acconfig.h aclocal.m4 \ + beecrypt.spec.in config.guess config.h.in config.sub configure \ + configure.in depcomp install-sh ltconfig ltmain.sh missing \ + mkinstalldirs types.h.in DIST_SUBDIRS = $(SUBDIRS) SOURCES = $(libbeecrypt_la_SOURCES) -all: config.gnu.h +all: $(BUILT_SOURCES) config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: @@ -222,19 +236,19 @@ $(srcdir)/configure: $(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENC $(ACLOCAL_M4): configure.in cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) -config.gnu.h: stamp-h +config.h: stamp-h @if test ! -f $@; then \ rm -f stamp-h; \ $(MAKE) stamp-h; \ else :; fi -stamp-h: $(srcdir)/config.gnu.h.in $(top_builddir)/config.status +stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h stamp-hT @echo timestamp > stamp-hT 2> /dev/null cd $(top_builddir) \ - && CONFIG_FILES= CONFIG_HEADERS=config.gnu.h \ + && CONFIG_FILES= CONFIG_HEADERS=config.h \ $(SHELL) ./config.status @mv stamp-hT stamp-h -$(srcdir)/config.gnu.h.in: $(srcdir)/./stamp-h.in +$(srcdir)/config.h.in: $(srcdir)/./stamp-h.in @if test ! -f $@; then \ rm -f $(srcdir)/./stamp-h.in; \ $(MAKE) $(srcdir)/./stamp-h.in; \ @@ -246,11 +260,13 @@ $(srcdir)/./stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) $(top_srcdir)/a @mv $(srcdir)/./stamp-h.inT $(srcdir)/./stamp-h.in distclean-hdr: - -rm -f config.gnu.h + -rm -f config.h Doxyfile: $(top_builddir)/config.status Doxyfile.in cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status beecrypt.spec: $(top_builddir)/config.status beecrypt.spec.in cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status +types.h: $(top_builddir)/config.status types.h.in + cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) $(mkinstalldirs) $(DESTDIR)$(libdir) @@ -372,7 +388,7 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) END { for (i in files) print i; }'`; \ mkid -fID $$unique $(LISP) -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.gnu.h.in $(TAGS_DEPENDENCIES) \ +TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ @@ -387,8 +403,8 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) config.gnu.h.in $(TAGS_DEPENDENCIES) done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)config.gnu.h.in$$unique$(LISP)$$tags" \ - || etags $(ETAGS_ARGS) $$tags config.gnu.h.in $$unique $(LISP) + test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \ + || etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) GTAGS: here=`CDPATH=: && cd $(top_builddir) && pwd` \ @@ -485,7 +501,7 @@ distcheck: dist sed 'h;s/./=/g;p;x;p;x' check-am: all-am check: check-recursive -all-am: Makefile $(LTLIBRARIES) $(HEADERS) config.gnu.h +all-am: Makefile $(LTLIBRARIES) $(HEADERS) config.h installdirs: installdirs-recursive installdirs-am: $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(pkgincludedir) @@ -513,6 +529,7 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." + -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-recursive clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \ diff --git a/beecrypt/base64.c b/beecrypt/base64.c index ea53453c1..15103eec7 100644 --- a/beecrypt/base64.c +++ b/beecrypt/base64.c @@ -25,28 +25,13 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "base64.h" +#include "debug.h" /*@unchecked@*/ static int _debug = 0; -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif -#if HAVE_CTYPE_H -# include <ctype.h> -#endif -#if HAVE_UNISTD_H -# include <unistd.h> -#endif - -#include <stdio.h> - /*@unchecked@*/ /*@observer@*/ static const char* to_b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; diff --git a/beecrypt/beecrypt.c b/beecrypt/beecrypt.c index 21f88924a..e614f1b24 100644 --- a/beecrypt/beecrypt.c +++ b/beecrypt/beecrypt.c @@ -26,22 +26,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "beecrypt.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif -#if WIN32 -# include <windows.h> -#endif +#include "debug.h" #if defined(__LCLINT__) /* XXX from /usr/include/bits/sigest.h in glibc-2.2.4 */ diff --git a/beecrypt/beecrypt.h b/beecrypt/beecrypt.h index 289499d46..ebca53236 100644 --- a/beecrypt/beecrypt.h +++ b/beecrypt/beecrypt.h @@ -26,9 +26,7 @@ #ifndef _BEECRYPT_H #define _BEECRYPT_H -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif +#include "types.h" #include "memchunk.h" #include "mp32number.h" diff --git a/beecrypt/beetest.c b/beecrypt/beetest.c index cb2ddc894..cf568a425 100644 --- a/beecrypt/beetest.c +++ b/beecrypt/beetest.c @@ -23,6 +23,7 @@ * */ +#include "system.h" #include "beecrypt.h" #include "blockmode.h" #include "blowfish.h" @@ -35,18 +36,7 @@ #include "md5.h" #include "rsa.h" #include "sha256.h" - -#if HAVE_STDLIB_H -#include <stdlib.h> -#endif -#if HAVE_ERRNO_H -#include <errno.h> -#endif -#if HAVE_TIME_H -#include <time.h> -#endif - -#include <stdio.h> +#include "debug.h" static const char* dsa_p = "8df2a494492276aa3d25759bb06869cbeac0d83afb8d0cf7cbb8324f0d7882e5d0762fc5b7210eafc2e9adac32ab7aac49693dfbf83724c2ec0736ee31c80291"; static const char* dsa_q = "c773218c737ec8ee993b4f2ded30f48edace915f"; diff --git a/beecrypt/blockmode.c b/beecrypt/blockmode.c index 92da8309e..d803459ec 100644 --- a/beecrypt/blockmode.c +++ b/beecrypt/blockmode.c @@ -25,10 +25,10 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "blockmode.h" #include "mp32.h" +#include "debug.h" int blockEncrypt(const blockCipher* bc, blockCipherParam* bp, cipherMode mode, int blocks, uint32* dst, const uint32* src) { diff --git a/beecrypt/blockpad.c b/beecrypt/blockpad.c index 7bf7ca713..f4ec46f09 100644 --- a/beecrypt/blockpad.c +++ b/beecrypt/blockpad.c @@ -25,19 +25,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "blockpad.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif +#include "debug.h" memchunk* pkcs5Pad(int blockbytes, memchunk* tmp) { diff --git a/beecrypt/blowfish.c b/beecrypt/blowfish.c index 7eaec7a69..61adec10f 100644 --- a/beecrypt/blowfish.c +++ b/beecrypt/blowfish.c @@ -32,12 +32,10 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "blowfish.h" #include "endianness.h" - -#include <string.h> +#include "debug.h" /** */ diff --git a/beecrypt/config.gas.h b/beecrypt/config.gas.h index 66d6b0132..f27de3f9e 100644 --- a/beecrypt/config.gas.h +++ b/beecrypt/config.gas.h @@ -1,7 +1,7 @@ #ifndef _CONFIG_GAS_H #define _CONFIG_GAS_H -#include "config.gnu.h" +#include "config.h" #ifndef C_FUNCTION_NAME # if LEADING_UNDERSCORE @@ -31,6 +31,17 @@ # define ALIGNMENT 8 #endif +#define LABEL(name) C_FUNCTION_NAME(name): +#if DARWIN +# define LOCAL(name) L##name +#else +# if __STDC__ +# define LOCAL(name) .L##name +# else +# define LOCAL(name) .L/**/name +# endif +#endif + #if CYGWIN # define C_FUNCTION_BEGIN(name) \ .align ALIGNMENT; \ @@ -38,8 +49,7 @@ .def C_FUNCTION_NAME(name); \ .scl 2; \ .type 32; \ - .endef; \ -C_FUNCTION_NAME(name): + .endef # define C_FUNCTION_END(name, label) #else # if SOLARIS @@ -51,23 +61,21 @@ C_FUNCTION_NAME(name): # endif # if DARWIN # define C_FUNCTION_BEGIN(name) \ - .type C_FUNCTION_NAME(name),C_FUNCTION_TYPE; \ -C_FUNCTION_NAME(name): + .globl C_FUNCTION_NAME(name) +# define C_FUNCTION_END(name, label) # elif defined(OPTIMIZE_IA64) # define C_FUNCTION_BEGIN(name) \ .align ALIGNMENT; \ .global name#; \ - .proc name#; \ -name: + .proc name# # define C_FUNCTION_END(name) \ .endp name# # else # define C_FUNCTION_BEGIN(name) \ .align ALIGNMENT; \ - .global C_FUNCTION_NAME(name); \ -C_FUNCTION_NAME(name): -# define C_FUNCTION_END(name, label) \ - label: .size name,label-name; + .global C_FUNCTION_NAME(name) +# define C_FUNCTION_END(name, label) \ + label: .size C_FUNCTION_NAME(name), label - C_FUNCTION_NAME(name); # endif #endif diff --git a/beecrypt/config.h b/beecrypt/config.h index dbab02eff..08f796d42 100644 --- a/beecrypt/config.h +++ b/beecrypt/config.h @@ -1,9 +1,11 @@ +/* config.h. Generated automatically by configure. */ +/* config.h.in. Generated automatically from configure.in by autoheader. */ /* - * config.h + * acconfig.h * - * Config.h generic config file + * acconfig.h pre-announces symbols defines by configure.in * - * Copyright (c) 2000 Virtual Unlimited B.V. + * Copyright (c) 2001 Virtual Unlimited B.V. * * Author: Bob Deblier <bob@virtualunlimited.com> * @@ -23,57 +25,239 @@ * */ -#ifndef _CONFIG_H -#define _CONFIG_H +#ifndef _REENTRANT +#define _REENTRANT +#endif -#if defined(_WIN32) && !defined(WIN32) -# define WIN32 1 +#define AIX 0 +#define BEOS 0 +#define CYGWIN 0 +#define DARWIN 0 +#define FREEBSD 0 +#define HPUX 0 +#define LINUX 1 +#define MACOSX 0 +#define NETBSD 0 +#define OPENBSD 0 +#define OSF 0 +#define QNX 0 +#define SCO_UNIX 0 +#define SOLARIS 0 +#ifndef WIN32 +# define WIN32 0 #endif +#define LEADING_UNDERSCORE 0 +#define NO_UNDERSCORES 1 -#if WIN32 && !__CYGWIN32__ -# include "config.win.h" -# ifdef BEECRYPT_DLL_EXPORT -# define BEECRYPTAPI __declspec(dllexport) -# else -# define BEECRYPTAPI __declspec(dllimport) -# endif -/*typedef UINT8_TYPE byte;*/ -#else -# include "config.gnu.h" -# define BEECRYPTAPI -typedef UINT8_TYPE byte; -#endif +#define JAVAGLUE 0 + +#define HAVE_ERRNO_H 1 +#define HAVE_STRING_H 1 +#define HAVE_CTYPE_H 1 +#define HAVE_STDLIB_H 1 +/* #undef HAVE_MTMALLOC_H */ + +#define HAVE_UNISTD_H 1 +#define HAVE_FCNTL_H 1 + +#define HAVE_TIME_H 1 + +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_SYS_TIME_H 1 + +#define ENABLE_THREADS 1 +/* #undef HAVE_THREAD_H */ +#define HAVE_PTHREAD_H 1 +/* #undef HAVE_SYNCH_H */ +#define HAVE_SEMAPHORE_H 1 + +#define ENABLE_AIO 1 +#define HAVE_AIO_H 1 + +#define HAVE_TERMIO_H 1 +#define HAVE_TERMIOS_H 1 + +/* #undef HAVE_SYS_AUDIOIO_H */ +#define HAVE_SYS_IOCTL_H 1 +#define HAVE_SYS_SOUNDCARD_H 1 + +#define HAVE_GETTIMEOFDAY 1 +/* #undef HAVE_GETHRTIME */ + +#define HAVE_DEV_DSP 1 +/* #undef HAVE_DEV_AUDIO */ +#define HAVE_DEV_RANDOM 1 +#define HAVE_DEV_URANDOM 1 +#define HAVE_DEV_TTY 1 + +#define HAVE_LONG_LONG 1 +#define HAVE_UNSIGNED_LONG_LONG 1 + +/* #undef INT8_TYPE */ +/* #undef INT16_TYPE */ +/* #undef INT32_TYPE */ +/* #undef INT64_TYPE */ + +/* #undef UINT8_TYPE */ +/* #undef UINT16_TYPE */ +/* #undef UINT32_TYPE */ +/* #undef UINT64_TYPE */ -#ifndef ROTL32 -# define ROTL32(x, s) (((x) << (s)) | ((x) >> (32 - (s)))) +/* #undef FLOAT4_TYPE */ +/* #undef DOUBLE8_TYPE */ + +#if LINUX +#define _LIBC_REENTRANT #endif -#ifndef ROTR32 -# define ROTR32(x, s) (((x) >> (s)) | ((x) << (32 - (s)))) + +#ifndef __cplusplus +/* #undef inline */ #endif -/*@-typeuse@*/ -typedef INT8_TYPE int8; -/*@=typeuse@*/ -typedef INT16_TYPE int16; -typedef INT32_TYPE int32; -typedef INT64_TYPE int64; +/* Define if you have the <aio.h> header file. */ +#define HAVE_AIO_H 1 -typedef UINT8_TYPE uint8; -typedef UINT16_TYPE uint16; -typedef UINT32_TYPE uint32; -/*@-duplicatequals@*/ -typedef UINT64_TYPE uint64; -/*@=duplicatequals@*/ +/* Define if you have the <ctype.h> header file. */ +#define HAVE_CTYPE_H 1 -typedef INT8_TYPE javabyte; -typedef INT16_TYPE javashort; -typedef INT32_TYPE javaint; -typedef INT64_TYPE javalong; +/* Define if you have the <dlfcn.h> header file. */ +#define HAVE_DLFCN_H 1 -typedef UINT16_TYPE javachar; +/* Define if you have the <errno.h> header file. */ +#define HAVE_ERRNO_H 1 -typedef FLOAT4_TYPE javafloat; -typedef DOUBLE8_TYPE javadouble; +/* Define if you have the <fcntl.h> header file. */ +#define HAVE_FCNTL_H 1 -#endif +/* Define if you have the <inttypes.h> header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define if you have the `mtmalloc' library (-lmtmalloc). */ +/* #undef HAVE_LIBMTMALLOC */ + +/* Define if you have the `pthread' library (-lpthread). */ +#define HAVE_LIBPTHREAD 1 + +/* Define if you have the `thread' library (-lthread). */ +/* #undef HAVE_LIBTHREAD */ + +/* Define if you have the <memory.h> header file. */ +#define HAVE_MEMORY_H 1 + +/* Define if you have the <mtmalloc.h> header file. */ +/* #undef HAVE_MTMALLOC_H */ + +/* Define if you have the <pthread.h> header file. */ +#define HAVE_PTHREAD_H 1 + +/* Define if you have the <semaphore.h> header file. */ +#define HAVE_SEMAPHORE_H 1 + +/* Define if you have the <stdint.h> header file. */ +#define HAVE_STDINT_H 1 + +/* Define if you have the <stdlib.h> header file. */ +#define HAVE_STDLIB_H 1 + +/* Define if you have the <strings.h> header file. */ +#define HAVE_STRINGS_H 1 + +/* Define if you have the <string.h> header file. */ +#define HAVE_STRING_H 1 + +/* Define if you have the <synch.h> header file. */ +/* #undef HAVE_SYNCH_H */ + +/* Define if you have the <sys/audioio.h> header file. */ +/* #undef HAVE_SYS_AUDIOIO_H */ + +/* Define if you have the <sys/ioctl.h> header file. */ +#define HAVE_SYS_IOCTL_H 1 + +/* Define if you have the <sys/soundcard.h> header file. */ +#define HAVE_SYS_SOUNDCARD_H 1 + +/* Define if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define if you have the <sys/time.h> header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define if you have the <termios.h> header file. */ +#define HAVE_TERMIOS_H 1 + +/* Define if you have the <termio.h> header file. */ +#define HAVE_TERMIO_H 1 + +/* Define if you have the <thread.h> header file. */ +/* #undef HAVE_THREAD_H */ + +/* Define if you have the <time.h> header file. */ +#define HAVE_TIME_H 1 + +/* Define if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* Name of package */ +#define PACKAGE "beecrypt" + +/* The size of a `char', as computed by sizeof. */ +#define SIZEOF_CHAR 1 + +/* The size of a `double', as computed by sizeof. */ +#define SIZEOF_DOUBLE 8 + +/* The size of a `float', as computed by sizeof. */ +#define SIZEOF_FLOAT 4 + +/* The size of a `int', as computed by sizeof. */ +#define SIZEOF_INT 4 + +/* The size of a `long', as computed by sizeof. */ +#define SIZEOF_LONG 4 + +/* The size of a `long long', as computed by sizeof. */ +#define SIZEOF_LONG_LONG 8 + +/* The size of a `short', as computed by sizeof. */ +#define SIZEOF_SHORT 2 + +/* The size of a `unsigned char', as computed by sizeof. */ +#define SIZEOF_UNSIGNED_CHAR 1 + +/* The size of a `unsigned int', as computed by sizeof. */ +#define SIZEOF_UNSIGNED_INT 4 + +/* The size of a `unsigned long', as computed by sizeof. */ +#define SIZEOF_UNSIGNED_LONG 4 + +/* The size of a `unsigned long long', as computed by sizeof. */ +#define SIZEOF_UNSIGNED_LONG_LONG 8 + +/* The size of a `unsigned short', as computed by sizeof. */ +#define SIZEOF_UNSIGNED_SHORT 2 + +/* Define if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "2.2.0" + +/* Define if your processor stores words with the most significant byte first + (like Motorola and SPARC, unlike Intel and VAX). */ +/* #undef WORDS_BIGENDIAN */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define as `__inline' if that's what the C compiler calls it, or to nothing + if it is not supported. */ +/* #undef inline */ + +/* Define to `unsigned' if <sys/types.h> does not define. */ +/* #undef size_t */ diff --git a/beecrypt/config.gnu.h.in b/beecrypt/config.h.in index f93c9e1d6..8bd2412fd 100644 --- a/beecrypt/config.gnu.h.in +++ b/beecrypt/config.h.in @@ -1,4 +1,4 @@ -/* config.gnu.h.in. Generated automatically from configure.in by autoheader. */ +/* config.h.in. Generated automatically from configure.in by autoheader. */ /* * acconfig.h * diff --git a/beecrypt/configure.in b/beecrypt/configure.in index d29aca05b..36b1e986a 100644 --- a/beecrypt/configure.in +++ b/beecrypt/configure.in @@ -4,7 +4,7 @@ dnl Initialization AC_INIT(beecrypt.c) AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE(beecrypt, 2.2.0) -AM_CONFIG_HEADER(config.gnu.h) +AM_CONFIG_HEADER(config.h) dnl Automake AM_DISABLE_STATIC @@ -577,12 +577,12 @@ dnl Checks for word sizes AC_CHECK_SIZEOF(char) AC_CHECK_SIZEOF(unsigned char) if test "$ac_cv_sizeof_char" -eq 1; then - AC_DEFINE(INT8_TYPE, [char]) + AC_SUBST(int8_type, "char") else AC_MSG_ERROR([compiler has no 1 byte char]) fi if test "$ac_cv_sizeof_unsigned_char" -eq 1; then - AC_DEFINE(UINT8_TYPE, [unsigned char]) + AC_SUBST(uint8_type, "unsigned char") else AC_MSG_ERROR([compiler has no 1 byte unsigned char]) fi @@ -590,12 +590,12 @@ fi AC_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(unsigned short) if test "$ac_cv_sizeof_short" -eq 2; then - AC_DEFINE(INT16_TYPE, [short]) + AC_SUBST(int16_type, "short") else AC_MSG_ERROR([compiler has no 2 byte short]) fi if test "$ac_cv_sizeof_unsigned_short" -eq 2; then - AC_DEFINE(UINT16_TYPE, [unsigned short]) + AC_SUBST(uint16_type, "unsigned short") else AC_MSG_ERROR([compiler has no 2 byte unsigned short]) fi @@ -605,38 +605,38 @@ AC_CHECK_SIZEOF(unsigned int) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(unsigned long) if test "$ac_cv_sizeof_int" -eq 4; then - AC_DEFINE(INT32_TYPE, [int]) + AC_SUBST(int32_type, "int") elif test "$ac_cv_sizeof_long" -eq 4; then - AC_DEFINE(INT32_TYPE, [long]) + AC_SUBST(int32_type, "long") else AC_MSG_ERROR([compiler has no 4 byte integer]) fi if test "$ac_cv_sizeof_unsigned_int" -eq 4; then - AC_DEFINE(UINT32_TYPE, [unsigned int]) + AC_SUBST(uint32_type, "unsigned int") elif test "$ac_cv_sizeof_unsigned_long" -eq 4; then - AC_DEFINE(UINT32_TYPE, [unsigned long]) + AC_SUBST(uint32_type, "unsigned long") else AC_MSG_ERROR([compiler has no 4 byte unsigned integer]) fi if test "$ac_cv_sizeof_long" -eq 8; then - AC_DEFINE(INT64_TYPE, [long]) + AC_SUBST(int64_type, "long") else AC_CHECK_SIZEOF(long long) if test "$ac_cv_sizeof_long_long" -eq 8; then AC_DEFINE(HAVE_LONG_LONG) - AC_DEFINE(INT64_TYPE, [long long]) + AC_SUBST(int64_type, "long long") else AC_MSG_ERROR([compiler has no 8 byte integer]) fi fi if test "$ac_cv_sizeof_unsigned_long" -eq 8; then - AC_DEFINE(UINT64_TYPE, [unsigned long]) + AC_SUBST(uint64_type, "unsigned long") else AC_CHECK_SIZEOF(unsigned long long) if test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then AC_DEFINE(HAVE_UNSIGNED_LONG_LONG) - AC_DEFINE(UINT64_TYPE, [unsigned long long]) + AC_SUBST(uint64_type, "unsigned long long") else AC_MSG_ERROR([compiler has no 8 byte unsigned integer]) fi @@ -644,14 +644,14 @@ fi AC_CHECK_SIZEOF(float) if test "$ac_cv_sizeof_float" -eq 4; then - AC_DEFINE(FLOAT4_TYPE, [float]) + AC_SUBST(float4_type, "float") else AC_MSG_ERROR([compiler has no 4 byte float]) fi AC_CHECK_SIZEOF(double) if test "$ac_cv_sizeof_double" -eq 8; then - AC_DEFINE(DOUBLE8_TYPE, [double]) + AC_SUBST(double8_type, "double") else AC_MSG_ERROR([compiler has no 8 byte double]) fi @@ -797,7 +797,7 @@ EOF fi dnl Output -AC_OUTPUT([ Doxyfile Makefile beecrypt.spec +AC_OUTPUT([ Doxyfile Makefile beecrypt.spec types.h docs/Makefile gas/Makefile masm/Makefile mwerks/Makefile tests/Makefile ], [ diff --git a/beecrypt/debug.h b/beecrypt/debug.h new file mode 100644 index 000000000..44c8d6471 --- /dev/null +++ b/beecrypt/debug.h @@ -0,0 +1,20 @@ +/** + * To be included after all other includes. + */ +#ifndef H_DEBUG +#define H_DEBUG + +#include <assert.h> + +#ifdef __LCLINT__ +#define ntohl(_x) (_x) +#define ntohs(_x) (_x) +#define htonl(_x) (_x) +#define htons(_x) (_x) +#endif + +#ifdef DMALLOC +#include <dmalloc.h> +#endif + +#endif /* H_DEBUG */ diff --git a/beecrypt/dhaes.c b/beecrypt/dhaes.c index da4bd0b11..5f89bcd76 100644 --- a/beecrypt/dhaes.c +++ b/beecrypt/dhaes.c @@ -48,19 +48,12 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "dhaes.h" #include "dlsvdp-dh.h" #include "blockmode.h" #include "blockpad.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" int dhaes_pUsable(const dhaes_pParameters* params) { diff --git a/beecrypt/dldp.c b/beecrypt/dldp.c index b8c6bd169..26ee75f81 100644 --- a/beecrypt/dldp.c +++ b/beecrypt/dldp.c @@ -27,18 +27,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "dldp.h" #include "mp32.h" #include "mp32prime.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC -# include <malloc.h> -#endif +#include "debug.h" /** */ diff --git a/beecrypt/dlkp.c b/beecrypt/dlkp.c index 3229ae048..67f86093a 100644 --- a/beecrypt/dlkp.c +++ b/beecrypt/dlkp.c @@ -27,9 +27,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "dlkp.h" +#include "debug.h" int dlkp_pPair(dlkp_p* kp, randomGeneratorContext* rgc, const dldp_p* param) { diff --git a/beecrypt/dlpk.c b/beecrypt/dlpk.c index 78b64bdd5..6d53bdb0e 100644 --- a/beecrypt/dlpk.c +++ b/beecrypt/dlpk.c @@ -25,10 +25,10 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "dlpk.h" #include "mp32.h" +#include "debug.h" int dlpk_pInit(dlpk_p* pk) { diff --git a/beecrypt/dlsvdp-dh.c b/beecrypt/dlsvdp-dh.c index ac8b425c5..837b9943e 100644 --- a/beecrypt/dlsvdp-dh.c +++ b/beecrypt/dlsvdp-dh.c @@ -25,9 +25,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "dlsvdp-dh.h" +#include "debug.h" int dlsvdp_pDHSecret(const dldp_p* dp, const mp32number* x, const mp32number* y, mp32number* s) { diff --git a/beecrypt/docs/Makefile.in b/beecrypt/docs/Makefile.in index 0e4449b8e..0597f5c03 100644 --- a/beecrypt/docs/Makefile.in +++ b/beecrypt/docs/Makefile.in @@ -108,14 +108,24 @@ ac_cv_have_java = @ac_cv_have_java@ ac_cv_have_javac = @ac_cv_have_javac@ am__include = @am__include@ am__quote = @am__quote@ +double8_type = @double8_type@ +float4_type = @float4_type@ install_sh = @install_sh@ +int16_type = @int16_type@ +int32_type = @int32_type@ +int64_type = @int64_type@ +int8_type = @int8_type@ +uint16_type = @uint16_type@ +uint32_type = @uint32_type@ +uint64_type = @uint64_type@ +uint8_type = @uint8_type@ AUTOMAKE_OPTIONS = gnu no-dependencies EXTRA_DIST = index.html installing.html using.html developing.html api.html manual.css subdir = docs mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.gnu.h +CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = depcomp = DIST_SOURCES = diff --git a/beecrypt/dsa.c b/beecrypt/dsa.c index 3db13fb7a..8497035cf 100644 --- a/beecrypt/dsa.c +++ b/beecrypt/dsa.c @@ -41,18 +41,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "dsa.h" #include "dldp.h" #include "mp32.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" /*@unchecked@*/ static int _debug = 0; diff --git a/beecrypt/elgamal.c b/beecrypt/elgamal.c index 768f59c6e..2573f1b8d 100644 --- a/beecrypt/elgamal.c +++ b/beecrypt/elgamal.c @@ -54,18 +54,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "elgamal.h" #include "dldp.h" #include "mp32.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" int elgv1sign(const mp32barrett* p, const mp32barrett* n, const mp32number* g, randomGeneratorContext* rgc, const mp32number* hm, const mp32number* x, mp32number* r, mp32number* s) { diff --git a/beecrypt/endianness.c b/beecrypt/endianness.c index 2de4daba6..d54db9098 100644 --- a/beecrypt/endianness.c +++ b/beecrypt/endianness.c @@ -23,15 +23,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "endianness.h" - -#if HAVE_STRING_H -# include <string.h> -#endif - -#include <stdio.h> +#include "debug.h" /*@-shiftimplementation@*/ int16 swap16(int16 n) diff --git a/beecrypt/entropy.c b/beecrypt/entropy.c index 528d9930f..62d90f0e5 100644 --- a/beecrypt/entropy.c +++ b/beecrypt/entropy.c @@ -28,6 +28,7 @@ #define BEECRYPT_DLL_EXPORT +#include "system.h" #include "entropy.h" #include "endianness.h" @@ -39,13 +40,6 @@ # if HAVE_SYS_IOCTL_H # include <sys/ioctl.h> # endif -# if HAVE_SYS_STAT_H -# include <sys/types.h> -# include <sys/stat.h> -# endif -# if HAVE_SYS_TIME_H -# include <sys/time.h> -# endif # if HAVE_SYS_AUDIOIO_H # include <sys/audioio.h> # endif @@ -119,23 +113,7 @@ aio_fsync (int __operation, struct aiocb *__aiocbp) # endif #endif -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_FCNTL_H -# include <fcntl.h> -#endif -#if HAVE_UNISTD_H -# include <unistd.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif -#if HAVE_ERRNO_H -# include <errno.h> -#endif - -#include <stdio.h> +#include "debug.h" #if WIN32 static HINSTANCE entropy_instance = (HINSTANCE) 0; diff --git a/beecrypt/fips180.c b/beecrypt/fips180.c index ba02be9f8..1ded34d64 100644 --- a/beecrypt/fips180.c +++ b/beecrypt/fips180.c @@ -28,11 +28,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "fips180.h" #include "mp32.h" #include "endianness.h" +#include "debug.h" /** \ingroup HASH_sha1_m */ diff --git a/beecrypt/fips186.c b/beecrypt/fips186.c index be5908232..72fae95a6 100644 --- a/beecrypt/fips186.c +++ b/beecrypt/fips186.c @@ -25,18 +25,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "fips186.h" #include "mp32.h" #include "mp32opt.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" /** */ diff --git a/beecrypt/gas/Makefile.in b/beecrypt/gas/Makefile.in index f1c5f46bb..311198cdf 100644 --- a/beecrypt/gas/Makefile.in +++ b/beecrypt/gas/Makefile.in @@ -108,14 +108,24 @@ ac_cv_have_java = @ac_cv_have_java@ ac_cv_have_javac = @ac_cv_have_javac@ am__include = @am__include@ am__quote = @am__quote@ +double8_type = @double8_type@ +float4_type = @float4_type@ install_sh = @install_sh@ +int16_type = @int16_type@ +int32_type = @int32_type@ +int64_type = @int64_type@ +int8_type = @int8_type@ +uint16_type = @uint16_type@ +uint32_type = @uint32_type@ +uint64_type = @uint64_type@ +uint8_type = @uint8_type@ AUTOMAKE_OPTIONS = gnu no-dependencies EXTRA_DIST = blowfishopt.i586.S fips180opt.i586.S mp32opt.arm.S mp32opt.i386.S mp32opt.ia64.S mp32opt.powerpc.S mp32opt.sparcv8.S mp32opt.sparcv9.S mp64opt.ia64.S subdir = gas mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.gnu.h +CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = depcomp = DIST_SOURCES = diff --git a/beecrypt/hmac.c b/beecrypt/hmac.c index ae51c290d..2554a1f37 100644 --- a/beecrypt/hmac.c +++ b/beecrypt/hmac.c @@ -25,10 +25,10 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "hmac.h" #include "endianness.h" +#include "debug.h" #define HMAC_IPAD 0x36363636 #define HMAC_OPAD 0x5c5c5c5c diff --git a/beecrypt/hmacmd5.c b/beecrypt/hmacmd5.c index 8c0fcf388..42754bdd1 100644 --- a/beecrypt/hmacmd5.c +++ b/beecrypt/hmacmd5.c @@ -25,9 +25,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "hmacmd5.h" +#include "debug.h" /*@-sizeoftype@*/ const keyedHashFunction hmacmd5 = { "HMAC-MD5", sizeof(hmacmd5Param), 64, 4 * sizeof(uint32), 64, 512, 32, (const keyedHashFunctionSetup) hmacmd5Setup, (const keyedHashFunctionReset) hmacmd5Reset, (const keyedHashFunctionUpdate) hmacmd5Update, (const keyedHashFunctionDigest) hmacmd5Digest }; diff --git a/beecrypt/hmacsha1.c b/beecrypt/hmacsha1.c index 198dd346f..0c490707b 100644 --- a/beecrypt/hmacsha1.c +++ b/beecrypt/hmacsha1.c @@ -25,9 +25,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "hmacsha1.h" +#include "debug.h" /*@-sizeoftype@*/ const keyedHashFunction hmacsha1 = { "HMAC-SHA-1", sizeof(hmacsha1Param), 64, 5 * sizeof(uint32), 64, 512, 32, (keyedHashFunctionSetup) hmacsha1Setup, (keyedHashFunctionReset) hmacsha1Reset, (keyedHashFunctionUpdate) hmacsha1Update, (keyedHashFunctionDigest) hmacsha1Digest }; diff --git a/beecrypt/hmacsha256.c b/beecrypt/hmacsha256.c index 900368923..317b2cc00 100644 --- a/beecrypt/hmacsha256.c +++ b/beecrypt/hmacsha256.c @@ -25,9 +25,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "hmacsha256.h" +#include "debug.h" /*@-sizeoftype@*/ const keyedHashFunction hmacsha256 = { "HMAC-SHA-256", sizeof(hmacsha256Param), 64, 8 * sizeof(uint32), 64, 512, 32, (keyedHashFunctionSetup) hmacsha256Setup, (keyedHashFunctionReset) hmacsha256Reset, (keyedHashFunctionUpdate) hmacsha256Update, (keyedHashFunctionDigest) hmacsha256Digest }; diff --git a/beecrypt/javaglue.c b/beecrypt/javaglue.c index 251abfc9b..2f1465f78 100644 --- a/beecrypt/javaglue.c +++ b/beecrypt/javaglue.c @@ -7,6 +7,7 @@ #define JNIEXPORT /*@unused@*/ #define JNICALL +#include "system.h" #include "beecrypt.h" #include "blockmode.h" @@ -15,14 +16,8 @@ #if JAVAGLUE -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif - #include "javaglue.h" +#include "debug.h" /* For now, I'm lazy ... */ /*@-nullpass -nullret -shiftsigned -usedef -temptrans -freshtrans @*/ diff --git a/beecrypt/masm/Makefile.in b/beecrypt/masm/Makefile.in index 9837efd6c..5c485006b 100644 --- a/beecrypt/masm/Makefile.in +++ b/beecrypt/masm/Makefile.in @@ -108,14 +108,24 @@ ac_cv_have_java = @ac_cv_have_java@ ac_cv_have_javac = @ac_cv_have_javac@ am__include = @am__include@ am__quote = @am__quote@ +double8_type = @double8_type@ +float4_type = @float4_type@ install_sh = @install_sh@ +int16_type = @int16_type@ +int32_type = @int32_type@ +int64_type = @int64_type@ +int8_type = @int8_type@ +uint16_type = @uint16_type@ +uint32_type = @uint32_type@ +uint64_type = @uint64_type@ +uint8_type = @uint8_type@ AUTOMAKE_OPTIONS = gnu no-dependencies EXTRA_DIST = blowfishopt.i586.asm fips180opt.i586.asm mp32opt.i386.asm subdir = masm mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.gnu.h +CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = depcomp = DIST_SOURCES = diff --git a/beecrypt/md5.c b/beecrypt/md5.c index 1c6e3b9e7..34e91d1e6 100644 --- a/beecrypt/md5.c +++ b/beecrypt/md5.c @@ -25,11 +25,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "md5.h" #include "mp32.h" #include "endianness.h" +#include "debug.h" /** \ingroup HASH_md5_m */ diff --git a/beecrypt/memchunk.c b/beecrypt/memchunk.c index 40597be9b..59fa2ee6f 100644 --- a/beecrypt/memchunk.c +++ b/beecrypt/memchunk.c @@ -23,16 +23,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "memchunk.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" /*@-compdef@*/ /* tmp->data is undefined */ memchunk* memchunkAlloc(int size) diff --git a/beecrypt/memchunk.h b/beecrypt/memchunk.h index 559a061c8..64d8e0ee4 100644 --- a/beecrypt/memchunk.h +++ b/beecrypt/memchunk.h @@ -25,9 +25,7 @@ #ifndef _MEMCHUNK_H #define _MEMCHUNK_H -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif +#include "types.h" typedef struct { diff --git a/beecrypt/mp32.c b/beecrypt/mp32.c index 8b218cc65..190d31bbe 100644 --- a/beecrypt/mp32.c +++ b/beecrypt/mp32.c @@ -25,11 +25,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "mp32.h" - -#include <stdio.h> +#include "debug.h" #ifndef ASM_MP32ZERO void mp32zero(register uint32 xsize, register uint32* xdata) diff --git a/beecrypt/mp32barrett.c b/beecrypt/mp32barrett.c index 25d211fda..bada4a887 100644 --- a/beecrypt/mp32barrett.c +++ b/beecrypt/mp32barrett.c @@ -31,20 +31,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "mp32.h" #include "mp32prime.h" #include "mp32barrett.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif - -#include <stdio.h> +#include "debug.h" /** * mp32bzero diff --git a/beecrypt/mp32number.c b/beecrypt/mp32number.c index 342887228..b7c9c11ff 100644 --- a/beecrypt/mp32number.c +++ b/beecrypt/mp32number.c @@ -27,17 +27,10 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "mp32number.h" #include "mp32.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" /*@-nullstate@*/ /* n->data may be NULL */ void mp32nzero(mp32number* n) diff --git a/beecrypt/mp32number.h b/beecrypt/mp32number.h index 9ad04b5a4..a5700411c 100644 --- a/beecrypt/mp32number.h +++ b/beecrypt/mp32number.h @@ -28,9 +28,7 @@ #ifndef _MP32NUMBER_H #define _MP32NUMBER_H -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif +#include "types.h" /** */ diff --git a/beecrypt/mp32prime.c b/beecrypt/mp32prime.c index 2c83d3697..c7955e748 100644 --- a/beecrypt/mp32prime.c +++ b/beecrypt/mp32prime.c @@ -25,20 +25,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "mp32prime.h" #include "mp32.h" #include "mp32barrett.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif - -#include <stdio.h> +#include "debug.h" /** * A word of explanation here on what these tables accomplish: diff --git a/beecrypt/mtprng.c b/beecrypt/mtprng.c index acbbff113..6e4db6638 100644 --- a/beecrypt/mtprng.c +++ b/beecrypt/mtprng.c @@ -35,18 +35,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "mtprng.h" #include "mp32.h" #include "mp32opt.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" #define hiBit(a) ((a) & 0x80000000) #define loBit(a) ((a) & 0x1) diff --git a/beecrypt/mwerks/Makefile.in b/beecrypt/mwerks/Makefile.in index b17d9b5ac..75a3ccdcc 100644 --- a/beecrypt/mwerks/Makefile.in +++ b/beecrypt/mwerks/Makefile.in @@ -108,14 +108,24 @@ ac_cv_have_java = @ac_cv_have_java@ ac_cv_have_javac = @ac_cv_have_javac@ am__include = @am__include@ am__quote = @am__quote@ +double8_type = @double8_type@ +float4_type = @float4_type@ install_sh = @install_sh@ +int16_type = @int16_type@ +int32_type = @int32_type@ +int64_type = @int64_type@ +int8_type = @int8_type@ +uint16_type = @uint16_type@ +uint32_type = @uint32_type@ +uint64_type = @uint64_type@ +uint8_type = @uint8_type@ AUTOMAKE_OPTIONS = gnu no-dependencies EXTRA_DIST = beecrypt.pch blowfishopt.i586.asm fips180opt.i586.asm mp32opt.i386.asm subdir = mwerks mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.gnu.h +CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = depcomp = DIST_SOURCES = diff --git a/beecrypt/rsa.c b/beecrypt/rsa.c index 78c0068b1..6628c6d3e 100644 --- a/beecrypt/rsa.c +++ b/beecrypt/rsa.c @@ -25,17 +25,10 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "rsa.h" #include "mp32.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif +#include "debug.h" int rsapri(const rsakp* kp, const mp32number* m, mp32number* c) { diff --git a/beecrypt/rsakp.c b/beecrypt/rsakp.c index 159ce0716..10d0a7457 100644 --- a/beecrypt/rsakp.c +++ b/beecrypt/rsakp.c @@ -27,21 +27,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "rsakp.h" #include "mp32prime.h" #include "mp32.h" - -#if HAVE_STDLIB_H -# include <stdlib.h> -#endif -#if HAVE_MALLOC_H -# include <malloc.h> -#endif -#if HAVE_STRING_H -# include <string.h> -#endif +#include "debug.h" int rsakpMake(rsakp* kp, randomGeneratorContext* rgc, int nsize) { diff --git a/beecrypt/rsapk.c b/beecrypt/rsapk.c index 5032941be..50a2091a7 100644 --- a/beecrypt/rsapk.c +++ b/beecrypt/rsapk.c @@ -27,13 +27,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "rsapk.h" - -#if HAVE_STRING_H -# include <string.h> -#endif +#include "debug.h" int rsapkInit(rsapk* pk) { diff --git a/beecrypt/sha256.c b/beecrypt/sha256.c index 437fb7018..cd3db258e 100644 --- a/beecrypt/sha256.c +++ b/beecrypt/sha256.c @@ -25,11 +25,11 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "sha256.h" #include "mp32.h" #include "endianness.h" +#include "debug.h" /** */ diff --git a/beecrypt/system.h b/beecrypt/system.h new file mode 100644 index 000000000..58426c180 --- /dev/null +++ b/beecrypt/system.h @@ -0,0 +1,72 @@ +/** + * \file beecrypt/system.h + */ + +#ifndef H_SYSTEM +#define H_SYSTEM + +#define BEECRYPT_DLL_EXPORT + +#if defined(_WIN32) && !defined(WIN32) +# define WIN32 1 +#endif + +#if WIN32 && !__CYGWIN32__ +# include "config.win.h" +#else +# ifdef HAVE_CONFIG_H +# include "config.h" +# endif +#endif + +#include "types.h" + +#if HAVE_SYS_STAT_H +# include <sys/types.h> +# include <sys/stat.h> +#endif + +#include <stdio.h> + +#ifdef HAVE_UNISTD_H +# include <unistd.h> +#endif + +#if TIME_WITH_SYS_TIME +# include <sys/time.h> +# include <time.h> +#else +# if HAVE_SYS_TIME_H +# include <sys/time.h> +# else +# include <time.h> +# endif +#endif + +#ifdef HAVE_STRING_H +# include <string.h> +#endif + +#if HAVE_ERRNO_H +# include <errno.h> +#endif + +#if HAVE_STDLIB_H +# include <stdlib.h> +#endif + +#ifdef HAVE_FCNTL_H +# include <fcntl.h> +#else +# include <sys/file.h> +#endif + +#if HAVE_CTYPE_H +# include <ctype.h> +#endif + +#if HAVE_MALLOC_H +# include <malloc.h> +#endif + +#endif /* H_SYSTEM */ diff --git a/beecrypt/tests/Makefile.in b/beecrypt/tests/Makefile.in index 7b780aa9c..66bbd17cc 100644 --- a/beecrypt/tests/Makefile.in +++ b/beecrypt/tests/Makefile.in @@ -108,7 +108,17 @@ ac_cv_have_java = @ac_cv_have_java@ ac_cv_have_javac = @ac_cv_have_javac@ am__include = @am__include@ am__quote = @am__quote@ +double8_type = @double8_type@ +float4_type = @float4_type@ install_sh = @install_sh@ +int16_type = @int16_type@ +int32_type = @int32_type@ +int64_type = @int64_type@ +int8_type = @int8_type@ +uint16_type = @uint16_type@ +uint32_type = @uint32_type@ +uint64_type = @uint64_type@ +uint8_type = @uint8_type@ AUTOMAKE_OPTIONS = gnu no-dependencies @@ -123,7 +133,7 @@ beetest_LDFLAGS = -all-static openpgp_SOURCES = openpgp.c subdir = tests mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.gnu.h +CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = EXTRA_PROGRAMS = beetest$(EXEEXT) openpgp$(EXEEXT) am_beetest_OBJECTS = beetest.$(OBJEXT) diff --git a/beecrypt/timestamp.c b/beecrypt/timestamp.c index d4eead2a3..54f5d927d 100644 --- a/beecrypt/timestamp.c +++ b/beecrypt/timestamp.c @@ -23,16 +23,9 @@ * */ -#define BEECRYPT_DLL_EXPORT - +#include "system.h" #include "timestamp.h" - -#if HAVE_TIME_H -# include <time.h> -#endif -#if HAVE_SYS_TIME_H -# include <sys/time.h> -#endif +#include "debug.h" javalong timestamp() { diff --git a/beecrypt/types.h.in b/beecrypt/types.h.in new file mode 100644 index 000000000..f4870a177 --- /dev/null +++ b/beecrypt/types.h.in @@ -0,0 +1,71 @@ +/* + * types.h + * + * Types.h generic system types file + * + * Copyright (c) 2000 Virtual Unlimited B.V. + * + * Author: Bob Deblier <bob@virtualunlimited.com> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#ifndef _TYPES_H +#define _TYPES_H + +#ifndef ROTL32 +# define ROTL32(x, s) (((x) << (s)) | ((x) >> (32 - (s)))) +#endif +#ifndef ROTR32 +# define ROTR32(x, s) (((x) >> (s)) | ((x) << (32 - (s)))) +#endif + +#if WIN32 && !__CYGWIN32__ +# ifdef BEECRYPT_DLL_EXPORT +# define BEECRYPTAPI __declspec(dllexport) +# else +# define BEECRYPTAPI __declspec(dllimport) +# endif +#else +# define BEECRYPTAPI +typedef @uint8_type@ byte; +#endif + +/*@-typeuse@*/ +typedef @int8_type@ int8; +/*@=typeuse@*/ +typedef @int16_type@ int16; +typedef @int32_type@ int32; +typedef @int64_type@ int64; + +typedef @uint8_type@ uint8; +typedef @uint16_type@ uint16; +typedef @uint32_type@ uint32; +/*@-duplicatequals@*/ +typedef @uint64_type@ uint64; +/*@=duplicatequals@*/ + +typedef @int8_type@ javabyte; +typedef @int16_type@ javashort; +typedef @int32_type@ javaint; +typedef @int64_type@ javalong; + +typedef @uint16_type@ javachar; + +typedef @float4_type@ javafloat; +typedef @double8_type@ javadouble; + +#endif @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n" "Language-Team: Czech <cs@li.org>\n" @@ -203,124 +203,124 @@ msgstr "Tento program lze volnì ¹íøit podle podmínek GNU GPL." msgid "Usage: %s {--help}\n" msgstr "Pou¾ití: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "Volba --rcfile byla odstranìna.\n" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Pou¾ijte volbu \"--macros <soubor:...>\".\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "specifikovat lze jen jeden hlavní re¾im" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "najednou lze provést jen jeden typ dotazu èi ovìøení" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "neoèekávanı pøíznak pro dotaz" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "neoèekávanı formát dotazu" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "neoèekávanı zdroj dotazu" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "vynucena mù¾e bıt jen instalace, aktualizace, smazání zdrojovıch kódù a spec " "souboru" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "soubory mohou bıt pøemístìny jen pøi instalaci balíèkù" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "pou¾ít lze jen jeden z parametrù --prefix nebo --relocate" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate a --excludepath je mo¾no pou¾ít jen pøi instalaci novıch balíèkù" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix je mo¾no pou¾ít jen pøi instalaci novıch balíèkù" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "parametry pro --prefix musejí zaèínat znakem /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "pou¾ít lze jen jeden z parametrù --excludedocs a --includedocs" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles mù¾e bıt pou¾it jen pøi instalaci balíèkù" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb mù¾e bıt pou¾it jen pøi instalaci a odstraòování balíèkù" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -328,7 +328,7 @@ msgstr "" "volba pro potlaèení skriptù mù¾e bıt pou¾ita jen pøi instalaci nebo pøi " "odstraòování balíèkù" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -336,7 +336,7 @@ msgstr "" "volba pro potlaèení triggerù mù¾e bıt pou¾ita jen pøi instalaci nebo " "odstraòování balíèkù" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -344,13 +344,13 @@ msgstr "" "--nodeps mù¾e bıt pou¾it jen pøi sestavování, rekompilaci, instalaci, " "odstraòování a kontrole" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test mù¾e bıt pou¾it jen pøi instalaci, odstraòování a sestavování" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -358,82 +358,82 @@ msgstr "" "--root (-r) mù¾e bıt pou¾it jen pøi instalaci, odstraòování, dotazech nebo " "znovuvytvoøení databáze" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "parametry pro --root (-r) musejí zaèínat znakem /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "¾ádné soubory k podepsání\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "pøístup k souboru %s se nezdaøil\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp nenalezeno: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Vlo¾te heslovou frázi: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Chybná heslová fráze\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Heslová fráze je v poøádku.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "©patná %%_signature spec v souboru maker.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign mù¾e bıt pou¾it jen pøi sestavování balíèkù" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "spu¹tìní selhalo\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "ke znovusestavení nezadány ¾ádné balíèky" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "pro sestavení nezadány ¾ádné spec soubory" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "pro sestavení nezadány ¾ádné tar soubory" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "k podepsání nezadány ¾ádné balíèky" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "nezadány ¾ádné balíèky pro instalaci" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "k dotazu nezadány ¾ádné parametry" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "pro kontrolu nezadány ¾ádné balíèky" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "neoèekávané parametry pro --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "k dotazu nezadány ¾ádné parametry" @@ -862,7 +862,7 @@ msgstr "Nemohu pøeèíst payload z %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Nemohu zapsat payload do %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Zapsáno: %s\n" @@ -1576,37 +1576,37 @@ msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "vytvoøen adresáø %s s právy %04o.\n" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s ulo¾eno jako %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s odstranìní %s selhalo: Adresáø není prázdnı\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s selhal: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink %s selhal: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s vytvoøen jako %s\n" @@ -2227,12 +2227,12 @@ msgstr "rozbalování archívu selhalo %s%s: %s\n" msgid " on file " msgstr " na souboru " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nemohu otevøít %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s selhalo\n" @@ -2660,141 +2660,141 @@ msgstr "Nemohu otevøít %s pro ètení: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "nemohu otevøít databázi balíèkù v %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "není obyèejnı soubor -- pøeskakuji kontrolu velikosti\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" "Pøedpokl. délka: %12d = hlavièka(%d)+signatura(%d)+vıplò(%d)+data(%d)\n" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "Aktuální délka: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Chybí podpis\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Starı PGP podpis\n" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starı (pouze interní) podpis! Jak jste to získali!?\n" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nemohu spustit %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "pgp selhalo\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "pgp selhalo pøi zápisu podpisu\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "Velikost podpisu PGP: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "nemohu èíst podpis\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Pøeèteno %d bajtù PGP podpisu\n" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "gpg selhalo\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "gpg selhalo pøi zápisu podpisu\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "Velikost GPG podpisu: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Pøeèteno %d bajtù GPG podpisu\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "©patná %%_signature spec v souboru maker\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru\n" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru\n" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Velikost hlavièky je pøili¹ velká" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "vynechat pøípadné MD5 souèty" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "Chybí podpis\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Podpisu: velikost(%d)+vata(%d)\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n" "Language-Team: Danish <dansk@klid.dk>\n" @@ -203,135 +203,135 @@ msgstr "Dette program kan frit distribueres under betingelserne i GNU GPL" msgid "Usage: %s {--help}\n" msgstr "Brug: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "Tilvalget --rcfile er fjernet.\n" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Brug \"--macros <fil:...>\" i stedet..\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "kun ét hovedtilvalg kan angives" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "kun én af forespørgsel/verificér kan udføres ad gangen" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "uventet forespørgselsflag" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "uventet forespørgselsformat" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "uventet forespørgselskilde" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath angivet ved en operation, der ikke benytter en database" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "kun installation, opgradering, rmsource og rmspec kan tvinges igennem" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "filer kan kun omrokeres under installation" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "kun én af --prefix eller --relocate kan bruges" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate og --excludepath kan kun bruges, når nye pakker installeres" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan kun bruges, når nye pakker installeres" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "parametre til --prefix skal starte med et /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan kun angives ved installation" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent kan kun angives ved installation" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan kun angives ved installation" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs kan kun angives ved installation" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs kan kun angives ved installation" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs kan kun angives ved installation" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "kun én af --excludedocs og --includedocs kan angives" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch kan kun angives ved installation" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos kan kun angives ved installation" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize kan kun angives ved installation" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches kan kun angives ved installation" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles kan kun angives ved installation" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb kan kun angives ved installation og sletning" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb kan kun angives ved installation og sletning" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--notriggers kan kun angives ved installation og sletning af pakker" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -339,13 +339,13 @@ msgstr "" "--nodeps kan kun angives ved opbygning, genopbygning, genoversættelse, " "installation, sletning og verifikation" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test kan kun angives ved installation, sletning og opbygning" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -353,82 +353,82 @@ msgstr "" "--root (-r) kan kun angives ved installation, sletning, forespørgsel og " "genopbygning af databasen" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "parameteren til --root (-r) skal starte med et /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "ingen filer at underskrive\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "kan ikke tilgå filen %s\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp ikke fundet: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Indtast adgangskode: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Adgangskode ikke godkendt\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Adgangskode godkendt.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Ugyldig angivelse af %%_signature i makrofil.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign kan kun bruges ved pakkeopbygning" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "eksekvering mislykkedes\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "ingen pakkefiler angivet til genopbygning" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "ingen spec-fil angivet til opbygning" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "ingen tar-arkiver angivet til opbygning" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "ingen pakker angivet ved signering" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "ingen pakker angivet ved installation" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "ingen parametre angivet ved forespørgsel" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "ingen parametre angivet ved verifikation" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "uventede parametre til --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "ingen parametre angivet ved forespørgsel" @@ -859,7 +859,7 @@ msgstr "Kunne ikke læse pakkeindhold fra %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -1575,37 +1575,37 @@ msgstr "" msgid "%10d %s\n" msgstr "linie %d: %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s gemt som %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kan ikke fjerne %s - katalog ikke tomt\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "åbning af %s mislykkedes %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s oprettet som %s\n" @@ -2245,12 +2245,12 @@ msgstr "udpakning af arkiv mislykkedes%s%s: %s\n" msgid " on file " msgstr " for fil " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "kunne ikke åbne %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s mislykkedes\n" @@ -2680,140 +2680,140 @@ msgstr "Kunne ikke åbne %s for læsning: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "kunne ikke åbne Packages-database i %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "filen er ikke regulær -- overspringer størrelsestjek\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "Forventet størrelse: %12d = indled(%d)+sign(%d)+fyld(%d)+data(%d)\n" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr " Faktisk størrelse: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Ingen signatur\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Gammel PGP-signatur\n" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammel (internt brug) signatur! Hvordan fik du fingre i den!?\n" -#: lib/signature.c:221 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signaturstørrelse: %d\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunne ikke udføre %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "pgp fejlede\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "pgp kunne ikke skrive signatur\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP-signaturstørrelse: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "kunne ikke læse signaturen\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fik %d byte af PGP-signatur\n" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "gpg fejlede\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "gpg kunne ikke skrive signaturen\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstørrelse: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fik %d byte GPG-signatur\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du skal angive \"%%_gpg_name\" i din makrofil\n" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Hovedstørrelse er for stor" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "overspring eventuelle MD5-signaturer" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "Ingen signatur\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Signaturfyld : %d\n" @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n" "Language-Team: German <de@li.org>\n" @@ -249,132 +249,132 @@ msgstr "Dies darf unter den Bedingungen der »GNU GPL« frei verteilt werden" msgid "Usage: %s {--help}\n" msgstr "Benutzung: rpm {--help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Benutzen Sie stattdessen -e oder --erase\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "Es darf nur ein Hauptmodus angegeben werden" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "" "Nur nur eine Art der Anfrage/Überprüfung kann pro Programmlauf durchgeführt " "werden" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "nur die Installation und Aktualisierung darf erzwungen werden" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "Dateien können nur während der Paketinstallation verschoben werden" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden" -#: rpmqv.c:735 +#: rpmqv.c:739 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "Argumente zu --prefix müssen mit einem / beginnen" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:782 +#: rpmqv.c:786 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb kann nur während der Paketinstallation und -deinstallation " "angegeben werden" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -383,7 +383,7 @@ msgstr "" "--justdb kann nur während der Paketinstallation und -deinstallation " "angegeben werden" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -392,7 +392,7 @@ msgstr "" "--justdb kann nur während der Paketinstallation und -deinstallation " "angegeben werden" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -401,7 +401,7 @@ msgstr "" "--nodeps darf nur während der Paketinstallation, -deinstallation und -" "überprüfung angegeben werden" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -409,7 +409,7 @@ msgstr "" "--test darf nur während der Paketinstallation, -deinstallation und -" "erstellung angegeben werden" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -417,84 +417,84 @@ msgstr "" "--root (-r) darf nur während der Paketinstallation, -deinstallation, -" "anfrage und Datenbankneuerstellungen angegeben werden" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "Argumente zu --root (-r) müssen mit einem / beginnen" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmqv.c:879 +#: rpmqv.c:883 #, fuzzy msgid "pgp not found: " msgstr "Datei auf dem Server nicht gefunden" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Das Passwort ist richtig.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign darf nur während der Paketerstellung benutzt werden" -#: rpmqv.c:919 +#: rpmqv.c:923 #, fuzzy msgid "exec failed\n" msgstr "%s: Öffnen fehlgeschlagen\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "Es wurde kein spec-Datei für die Erstellung angegeben" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "Es wurde keine tar-Datei für die Erstellung angegeben" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "Es wurden keine Pakete für die Signatur angeben" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "Es wurden keine Pakete für die Installation angegeben" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "Es wurden keine Argumente für die Anfrage angegeben" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "Es wurden keine Argumente für die Überprüfung angegeben" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "Unerwartete Argumente zu --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "Es wurden keine Argumente für die Anfrage angegeben" @@ -956,7 +956,7 @@ msgstr "Nicht möglich %s zu schreiben" msgid "Unable to write payload to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1714,37 +1714,37 @@ msgstr "" msgid "%10d %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -2413,12 +2413,12 @@ msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp fehlgeschlagen" @@ -2860,147 +2860,147 @@ msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." msgid "cannot open Packages database in %s\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Keine Signatur verfügbar\n" -#: lib/signature.c:156 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Alte Signatur (nur intern)! Wie bist du daran gekommen!?" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "pgp fehlgeschlagen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "nicht möglich, die Signatur zu lesen" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "pgp fehlgeschlagen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "alle MD5-Signaturen überspringen" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Keine Signatur verfügbar\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n" "Language-Team: Finnish <linux@sot.com>\n" "Content-Type: text/plain; charset=\n" @@ -203,128 +203,128 @@ msgstr "Tätä ohjelmaa voi vapaasti levittää GNU GPL:n puittessa" msgid "Usage: %s {--help}\n" msgstr "käyttö: rpm {--help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Käytä sen sijaan -e tai --erase .\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "vain yksi päämoodi voidaan määritellä" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "vain asennus tai päivitys voidaan pakottaa" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "vain toinen --prefix tai --relocate voidaan antaa" -#: rpmqv.c:735 +#: rpmqv.c:739 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "--prefix parametrien pitää alkaa /-merkillä" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:782 +#: rpmqv.c:786 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -332,7 +332,7 @@ msgid "" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -340,7 +340,7 @@ msgid "" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -349,7 +349,7 @@ msgstr "" "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai " "tarkistettaessa" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -357,7 +357,7 @@ msgstr "" "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja " "käännettäessä" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,84 +365,84 @@ msgstr "" "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, " "kyseltäessä ja tietokannan uudelleenluonnissa" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "parametrit --root (-r):lle alettava /-merkillä" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmqv.c:879 +#: rpmqv.c:883 #, fuzzy msgid "pgp not found: " msgstr "Tiedostoa ei löytynyt palvelimelta" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign: voidaan käyttää vain paketteja käännettäessä" -#: rpmqv.c:919 +#: rpmqv.c:923 #, fuzzy msgid "exec failed\n" msgstr "%s: avaus ei onnistunut\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "uudelleenkäännolle ei määritelty paketteja" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "käännökselle ei annettu määrittelytiedostoja" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "käännökselle ei määritelty tar-tiedostoja" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "allekirjoitukselle ei määritelty paketteja" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "asennukselle ei määritelty paketteja" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "kyselylle ei annettu parametrejä" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "tarkistukselle ei annettu parametrejä" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "--querytags: odottamattomia parametrejä" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "kyselylle ei annettu parametrejä" @@ -874,7 +874,7 @@ msgstr "%s:n kirjoitus ei onnistu" msgid "Unable to write payload to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1600,37 +1600,37 @@ msgstr "" msgid "%10d %s\n" msgstr "en voinut avata %s: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "en voi poistaa %s -hakemisto ei ole tyhjä" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -2290,12 +2290,12 @@ msgstr "%s:n avaus ei onnistunut: %s\n" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp epäonnistui" @@ -2728,147 +2728,147 @@ 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/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/signature.c:156 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "pgp epäonnistui" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "en voinut lukea allekirjoitusta" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "pgp epäonnistui" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ohita MD5-allekirjoitukset" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -211,146 +211,146 @@ msgstr "Peut tre redistribu librement selon les termes de la GNU GPL" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Utilisez de prfrence -e ou --erase.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "un seul type de requte/vrification peut tre effectu la fois" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "source de requte inattendue" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "source de requte inattendue" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "source de requte inattendue" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "seules l'installation et la mise jour peuvent tre forces" -#: rpmqv.c:729 +#: rpmqv.c:733 #, fuzzy msgid "files may only be relocated during package installation" msgstr "" "--replacefiles ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:732 +#: rpmqv.c:736 #, fuzzy msgid "only one of --prefix or --relocate may be used" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:735 +#: rpmqv.c:739 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--clean ne peut tre spcifi que lors de la construction d'un package" -#: rpmqv.c:738 +#: rpmqv.c:742 #, fuzzy msgid "--prefix may only be used when installing new packages" msgstr "--sign ne peut tre spcifi que lors de la construction d'un package" -#: rpmqv.c:741 +#: rpmqv.c:745 #, fuzzy msgid "arguments to --prefix must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "" "--replacefiles ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:761 +#: rpmqv.c:765 #, fuzzy msgid "--excludedocs may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:765 +#: rpmqv.c:769 #, fuzzy msgid "--includedocs may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:769 +#: rpmqv.c:773 #, fuzzy msgid "only one of --excludedocs and --includedocs may be specified" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:773 +#: rpmqv.c:777 #, fuzzy msgid "--ignorearch may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:777 +#: rpmqv.c:781 #, fuzzy msgid "--ignoreos may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:782 +#: rpmqv.c:786 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:786 +#: rpmqv.c:790 #, fuzzy msgid "--allmatches may only be specified during package erasure" msgstr "" "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:790 +#: rpmqv.c:794 #, fuzzy msgid "--allfiles may only be specified during package installation" msgstr "" "--replacefiles ne peut tre spcifi que lors de l'installation d'un package" -#: rpmqv.c:795 +#: rpmqv.c:799 #, fuzzy msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -359,7 +359,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -368,7 +368,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -377,7 +377,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:814 +#: rpmqv.c:818 #, fuzzy msgid "" "--test may only be specified during package installation, erasure, and " @@ -386,7 +386,7 @@ msgstr "" "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un " "package" -#: rpmqv.c:819 +#: rpmqv.c:823 #, fuzzy msgid "" "--root (-r) may only be specified during installation, erasure, querying, " @@ -395,85 +395,85 @@ msgstr "" "--root (-r) ne peut tre spcifi que lors de l'installation, de la " "dsinstallation ou de l'interrogation d'un package" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpmqv.c:883 #, fuzzy msgid "pgp not found: " msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "La vrification du mot de passe a chou\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Mot de passe correct.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign ne peut tre spcifi que lors de la construction d'un package" -#: rpmqv.c:919 +#: rpmqv.c:923 #, fuzzy msgid "exec failed\n" msgstr "La construction a chou.\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "aucun package n'a t spcifi pour la reconstruction" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "aucun package n'a t spcifi pour la construction" -#: rpmqv.c:1021 +#: rpmqv.c:1025 #, fuzzy msgid "no tar files given for build" msgstr "aucun package n'a t spcifi pour la construction" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "aucun argument n'a t fourni pour la requte" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "aucun argument n'a t fourni pour la vrification" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "aucun argument n'a t fourni pour la requte" @@ -900,7 +900,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1626,37 +1626,37 @@ msgstr "" msgid "%10d %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2327,12 +2327,12 @@ msgstr "La construction a chou.\n" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "La construction a chou.\n" @@ -2762,144 +2762,144 @@ msgstr "impossible d'ouvrir: %s\n" msgid "cannot open Packages database in %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr " --sign - genre une signature PGP" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "La construction a chou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "La construction a chou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr " --sign - genre une signature PGP" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n" "Language-Team: Galician <trasno@ceu.fi.udc.es>\n" @@ -201,225 +201,225 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1043 +#: rpmqv.c:1047 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1141 msgid "no arguments given" msgstr "" @@ -840,7 +840,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1537,37 +1537,37 @@ msgstr "" msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2166,12 +2166,12 @@ msgstr "" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2595,137 +2595,137 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen <ra@hp.is>\n" "Language-Team: is <kde-isl@mmedia.is>\n" @@ -202,225 +202,225 @@ msgstr "Şessu má dreifa frjálst samkvæmt skilmálum GNU GPL" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1043 +#: rpmqv.c:1047 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1141 msgid "no arguments given" msgstr "" @@ -845,7 +845,7 @@ msgstr "Get ekki lesiğ innihald %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Get ekki ritağ innihald í %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Skrifaği: %s\n" @@ -1544,37 +1544,37 @@ msgstr "" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s vistağ sem %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s brást: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s gat ekki eytt %s: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s búiğ til sem %s\n" @@ -2182,12 +2182,12 @@ msgstr "" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "gat ekki opnağ %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s brást\n" @@ -2611,137 +2611,137 @@ msgstr "Get ekki opnağ %s til lesturs: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "get ekki opnağ pakka gagnagrunn í\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Gat ekki keyrt %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "pgp brást\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "pgp gat ekki lesiğ undirskriftina\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "get ekki lesiğ undirskriftina\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "ggp brást\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "gpg get ekki lesiğ undirskriftina\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n" "Language-Team: JRPM <jrpm@linux.or.jp>\n" @@ -216,62 +216,62 @@ msgstr "GNU°ìÈ̸øÍ»ÈÍѵöÂú½ñ¤Î²¼¤Ç¼«Í³¤ËÇÛÉۤǤ¤Ş¤¹" msgid "Usage: %s {--help}\n" msgstr "»ÈÍÑË¡: rpm {--help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, fuzzy, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "°ú¿ô½èÍı(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "°ì¤Ä¤Î¥á¥¸¥ã¡¼¥â¡¼¥É¤Î¤ß¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "Ì䤤¹ç¤ï¤»/¸¡¾Ú¤Ï°ìÅ٤˰ì¤Ä¤·¤«¼Â¹Ô¤Ç¤¤Ş¤»¤ó" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥é¥°" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥©¡¼¥Ş¥Ã¥È" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥½¡¼¥¹" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Ş¤¹" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "¥¤¥ó¥¹¥È¡¼¥ë¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¡¢¥½¡¼¥¹ºï½ü¡¢¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ëºï½ü»ş¤Î¤ß¶¯À©¤Ç¤" "¤Ş¤¹" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ßºÆÇÛÃ֤Ǥ¤Ş¤¹" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ¤â¤·¤¯¤Ï --relocate ¤Î¤¤¤º¤ì¤«¤Î¤ß»ÈÍѤǤ¤Ş¤¹" -#: rpmqv.c:735 +#: rpmqv.c:739 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" @@ -279,82 +279,82 @@ msgstr "" "--relocate ¤È --excludepath ¤Ï¿·¤·¤¤¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤¤Î¤ß»ÈÍÑ" "¤Ç¤¤Ş¤¹" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix ¤Ï¿·µ¬¤Ë¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤¤Î¤ß»ÈÍѤǤ¤Ş¤¹" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ¤Ø¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Ş¤é¤Í¤Ğ¤Ê¤ê¤Ş¤»¤ó" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ¤È --includedocs ¤Ï¤É¤Á¤é¤«°ìÊı¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "-ignoreos ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:782 +#: rpmqv.c:786 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "-ignoresize ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Îºï½ü»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -362,13 +362,13 @@ msgid "" msgstr "" "--nodeps ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎºîÀ®¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢ºîÀ®»ş¤Î¤ß»ØÄê¤Ç¤¤Ş¤¹" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -376,83 +376,83 @@ msgstr "" "--root (-r) ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢Ì䤤¹ç¤ï¤»¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹ºÆ¹½ÃÛ»ş¤Î¤ß»ØÄê¤Ç" "¤¤Ş¤¹" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Ş¤é¤Í¤Ğ¤Ê¤ê¤Ş¤»¤ó" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "½ğ̾¤¹¤ë¤¿¤á¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Ş¤»¤ó\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Ş¤»¤ó\n" -#: rpmqv.c:879 +#: rpmqv.c:883 #, fuzzy msgid "pgp not found: " msgstr "pgp ¤¬¸«¤Ä¤«¤ê¤Ş¤»¤ó: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÆşÎϤ·¤Æ¤¯¤À¤µ¤¤: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Ş¤·¤¿\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤ÏÀµ¾ï¤Ç¤¹¡¥\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "¥Ş¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign ¤Ï¥Ñ¥Ã¥±¡¼¥¸ºîÀ®»ş¤Î¤ß»ÈÍѤǤ¤Ş¤¹" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "¼Â¹Ô¼ºÇÔ\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "ºÆºîÀ®¤¹¤ë¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "½ğ̾¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "¸¡¾Ú¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Ş¤»¤ó" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "--querytags ¤Î°ú¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Ş¤¹" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Ş¤»¤ó" @@ -892,7 +892,7 @@ msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤¤Ş¤»¤ó: %s" msgid "Unable to write payload to %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤¹ş¤ß¤Ë¼ºÇÔ¤·¤Ş¤·¤¿: %s" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "½ñ¤¹ş¤ßÃæ: %s\n" @@ -1623,37 +1623,37 @@ msgstr "" msgid "%10d %s\n" msgstr "%d ¹ÔÌÜ: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "·Ù¹ğ: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Ş¤¹" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ¤òºï½ü¤Ç¤¤Ş¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Ş¤»¤ó" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "·Ù¹ğ: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Ş¤¹" @@ -2335,12 +2335,12 @@ msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿Ä¹¤Ë¼ºÇÔ %s%s: %s" msgid " on file " msgstr "¥Õ¥¡¥¤¥ë¾å" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s ¼ºÇÔ" @@ -2773,147 +2773,147 @@ msgstr "Æɤ߹ş¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Ş¤»¤ó: %s¡£" msgid "cannot open Packages database in %s\n" msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Ş¤»¤ó\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" "¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Ş¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥¥Ã¥×¤·¤Ş¤¹\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "½ğ̾¥µ¥¤¥º: %d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "½ğ̾¤Ï¤¢¤ê¤Ş¤»¤ó\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "¸Å¤¤ PGP ½ğ̾\n" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ğ̾! ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Ş¤·¤¿¤«!?" -#: lib/signature.c:221 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "½ğ̾¥µ¥¤¥º: %d\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s ¤ò¼Â¹Ô¤Ç¤¤Ş¤»¤ó¤Ç¤·¤¿: %s" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "pgp ¼ºÇÔ" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ¤¬½ğ̾¤ò½ñ¤¹ş¤à¤Î¤Ë¼ºÇÔ¤·¤Ş¤·¤¿" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ½ğ̾¥µ¥¤¥º: %s\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "½ğ̾¤òÆɤळ¤È¤¬¤Ç¤¤Ş¤»¤ó" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "PGP ½ğ̾¤Î %d ¥Ğ¥¤¥È¤ò¼èÆÀ\n" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "gpg ¼ºÇÔ" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg ¤¬½ğ̾¤ò½ñ¤¹ş¤à¤Î¤Ë¼ºÇÔ¤·¤Ş¤·¤¿" -#: lib/signature.c:426 +#: lib/signature.c:430 #, fuzzy, c-format msgid "GPG sig size: %d\n" msgstr "GPG ½ğ̾¥µ¥¤¥º: %s\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, fuzzy, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG ½ğ̾¤Î %d ¥Ğ¥¤¥È¤ò¼èÆÀ\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "¥Ş¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¥Ş¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ğ¤Ê¤ê¤Ş¤»¤ó" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¥Ş¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ğ¤Ê¤ê¤Ş¤»¤ó" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礤¹¤®¤Ş¤¹" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "MD5 ½ğ̾¤ò¥¹¥¥Ã¥×¤·¤Ş¤¹" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "½ğ̾¤Ï¤¢¤ê¤Ş¤»¤ó\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "½ğ̾¥Ñ¥Ã¥É: %d\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-09-07 22:03+0900\n" "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n" "Language-Team: GNU Translation project <ko@li.org>\n" @@ -203,135 +203,135 @@ msgstr "ÀÌ ÇÁ·Î±×·¥Àº GNU Public License ³»¿¡¼ ÀÚÀ¯·Ó°Ô Àç¹èÆ÷µÉ ¼ö ÀÖ½À´Ï´Ù." msgid "Usage: %s {--help}\n" msgstr " »ç¿ë¹ı: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "--rcfile ¿É¼ÇÀÌ Á¦°ÅµÇ¾ú½À´Ï´Ù.\n" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "´ë½Å \"--macros <ÆÄÀÏ:..>\" À» »ç¿ëÇÕ´Ï´Ù.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "(%d) ÀÇ Àμö ó¸® °úÁ¤ Áß ³»ºÎ ¿À·ù°¡ ¹ß»ıÇß½À´Ï´Ù :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "ÇϳªÀÇ ÁÖ¿ä(major) ¸ğµå¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "ÁúÀÇ/°ËÁõ Áß¿¡¼ ÇÑ°¡Áö À¯ÇüÀº µ¿½Ã¿¡ ¼öÇàµÉ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "ºÎÀûÀıÇÑ ÁúÀÇ Ç÷¡±× ÀÔ´Ï´Ù" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "ºÎÀûÀıÇÑ ÁúÀÇ Çü½Ä ÀÔ´Ï´Ù" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "ºÎÀûÀıÇÑ ÁúÀÇ ¼Ò½º ÀÔ´Ï´Ù" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath ´Â µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÏÁö ¾Ê±â À§ÇÑ ¿É¼ÇÀÔ´Ï´Ù" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "¼³Ä¡, ¾÷±×·¹À̵å, ¼Ò½º »èÁ¦, spec ÆÄÀÏ »èÁ¦½Ã¿¡¸¸ ¼öÇàµË´Ï´Ù" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÆÄÀÏÀ» Àç¹èÄ¡ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ¶Ç´Â --relocate ¿É¼Ç Áß Çϳª¸¸ »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate ¿Í --excludepath ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆĞÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÏ½Ç ¼ö " "ÀÖ½À´Ï´Ù" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆĞÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ¿É¼ÇÀÇ Àμö´Â ¹İµå½Ã '/' ·Î ½ÃÀ۵Ǿî¾ß ÇÕ´Ï´Ù" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ¿Í --includedocs ¿É¼Ç¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ¿É¼ÇÀº ÆĞÅ°Áö »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "½ºÅ©¸³Æ® ÇØÁ¦ ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "Æ®¸®°Å ÇØÁ¦ ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -339,13 +339,13 @@ msgstr "" "--nodeps ¿É¼ÇÀº ÆĞÅ°Áö Á¦ÀÛ, ÀçÁ¦ÀÛ(rebuild), ÀçÄÄÆÄÀÏ(recompile), ¼³Ä¡, »è" "Á¦, °ËÁõ½Ã¿¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡, »èÁ¦, Á¦À۽ÿ¡¸¸ ÁöÁ¤ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -353,82 +353,82 @@ msgstr "" "--root (-r) ¿É¼ÇÀº ÆĞÅ°Áö ¼³Ä¡, »èÁ¦, ÁúÀÇ, µ¥ÀÌÅͺ£À̽º À籸Ãà½Ã¿¡¸¸ ÁöÁ¤ÇÏ" "½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ¿É¼ÇÀÇ Àμö´Â ¹İµå½Ã '/' ·Î ½ÃÀ۵Ǿî¾ß ÇÕ´Ï´Ù" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "¼¸íÇÒ ÆÄÀÏÀÌ ¾ø½À´Ï´Ù\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "%s ÆÄÀÏ¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp¸¦ ãÀ» ¼ö ¾øÀ½: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Æнº ±¸¹®(pass phrase) ÀÔ·Â: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Æнº ±¸¹®(pass phrase) °Ë»ç¿¡ ½ÇÆĞÇß½À´Ï´Ù\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ¿Ã¹Ù¸¨´Ï´Ù.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign ¿É¼ÇÀº ÆĞÅ°Áö Á¦À۽ÿ¡¸¸ »ç¿ëÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "½ÇÇà¿¡ ½ÇÆĞÇß½À´Ï´Ù\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "ÀçÁ¦ÀÛ(rebuild)ÇÒ ÆĞÅ°Áö ÆÄÀÏÀ» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "ÆĞÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ spec ÆÄÀÏÀ» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "ÆĞÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ tar ÆÄÀÏÀ» ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "¼¸íÇÒ ÆĞÅ°Áö¸¦ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "¼³Ä¡ÇÒ ÆĞÅ°Áö¸¦ ÁöÁ¤ÇÏÁö ¾ÊÀ¸¼Ì½À´Ï´Ù" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "°ËÁõ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "--querytags ¿É¼Ç¿¡ ºÎÀûÀıÇÑ Àμö°¡ ÁöÁ¤µÇ¾ú½À´Ï´Ù " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" @@ -853,7 +853,7 @@ msgstr "%s ÀÇ payload¸¦ ÀĞÀ» ¼ö ¾øÀ½: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "%s ¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "ÀÛ¼º: %s\n" @@ -1567,37 +1567,37 @@ msgstr "========= ÆĞÅ°Áö¿¡ µğ·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%04o Çã°¡±Ç(perms)ÀÇ %s µğ·ºÅ丮°¡ »ı¼ºµÇ¾ú½À´Ï´Ù.\n" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼ ¾ÆÄ«À̺ê ÆÄÀÏ %s (À»)¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s (ÀÌ)°¡ %s (À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s %s µğ·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆĞÇÔ: ºó µğ·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s %s µğ·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆĞÇÔ: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s %s ¸µÅ©¸¦ ÇØÁ¦Çϴµ¥ ½ÇÆĞÇÔ: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s (ÀÌ)°¡ %s (À¸)·Î »ı¼ºµÇ¾ú½À´Ï´Ù\n" @@ -2233,12 +2233,12 @@ msgstr "¾ÆÄ«À̺긦 Ǫ´Âµ¥ ½ÇÆĞÇÔ%s%s: %s\n" msgid " on file " msgstr " ´ÙÀ½ ÆÄÀÏ¿¡ " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%2$s ÆÄÀÏÀÇ %1$s (ÀÌ)°¡ ½ÇÆĞÇÔ: %3$s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, c-format msgid "%s failed: %s\n" msgstr "%s (ÀÌ)°¡ ½ÇÆĞÇÔ: %s\n" @@ -2666,140 +2666,140 @@ msgstr "%s (À»)¸¦ ¿ ¼ö ¾øÀ½: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "%s ¾ÈÀÇ ÆĞÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "ÆÄÀÏÀÌ ¿Ã¹Ù¸£Áö(regular) ¾Ê½À´Ï´Ù -- ¿ë·® °Ë»ç¸¦ »ı·«ÇÕ´Ï´Ù\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "¿¹»ó(Expected) ¿ë·®: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr " ½ÇÁ¦ ¿ë·®: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "¼¸íÀÌ ¾ø½À´Ï´Ù\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "ÀÌÀü PGP ¼¸í\n" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼¸í! ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "¼¸í: size(%d)+pad(%d)\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "pgp¿¡ ½ÇÆĞÇÔ\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "pgp ¼¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆĞÇß½À´Ï´Ù\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ¼¸í ¿ë·®: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "¼¸íÀ» ÀĞÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼¸íÀ» ¾ò¾ú½À´Ï´Ù\n" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "gpg¿¡ ½ÇÆĞÇÔ\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "gpg ¼¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆĞÇß½À´Ï´Ù\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG ¼¸í ¿ë·®: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "%d ¹ÙÀÌÆ®ÀÇ GPG ¼¸íÀ» ¾ò¾ú½À´Ï´Ù\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_gpg_name\" À» ¼³Á¤ÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù\n" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_pgp_name\" À» ¼³Á¤ÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù\n" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "MD5 ¼¸íÀº °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "¼¸íÀÌ ¾ø½À´Ï´Ù\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "¼¸í: size(%d)+pad(%d)\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n" "Language-Team: Norwegian <no@li.org>\n" @@ -203,122 +203,122 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "Bruk: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Bruk -e eller --erase i stedet.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Intern feil i argumentprosesseringen (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "kun ett større modi kan spesifiseres" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "én type spørring/verifisering kan utføres om gangen" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "uventede flagg for spørring" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "ventet spørringsformat" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "uventet spørringskilde" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath oppgitt for operasjon som ikke bruker en database" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "kun installasjon, oppgradering, rmsource og rmspec kan tvinges" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "filer kan kun omplasseres under pakkeinstallasjon" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "kune en av --prefix eller --relocate kan brukes" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate og --excludepath kan kun brukes ved installasjon av nye pakker" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan kun brukes ved installasjon av nye pakker" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argumenter til --prefix må begynne med en /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -326,7 +326,7 @@ msgstr "" "skript som slår av alternativer kan kun spesifiseres under pakkeinstallasjon " "og sletting" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -334,100 +334,100 @@ msgstr "" "alternativer som slår av utløsing kan kun spesifiseres under " "pakkeinstallasjon, og sletting" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "ingen filer å signere\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "kan ikke aksessere fil %s\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp ikke funnet: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Skriv inn passord: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Passordsjekk feilet\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Passord er ok.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "kjøring feilet\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "ingen pakkefiler oppgitt for ombygging" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "ingen spec-fil oppgitt for bygging" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "ingen tar-fil oppgitt for bygging" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "ingen pakker oppgitt for signering" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "ingen pakker oppgitt for installering" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "ingen argumenter oppgitt for spørring" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "ingen argumenter oppgitt for verifisering" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "uventede argumenter til --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "ingen argumenter oppgitt for spørring" @@ -856,7 +856,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive \"payload\" til %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -1559,37 +1559,37 @@ msgstr "" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s lagret som %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir av %s feilet: Katalogen er ikke tom\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s feilet: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s feilet: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s opprettet som %s\n" @@ -2207,12 +2207,12 @@ msgstr "" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s feilet\n" @@ -2636,139 +2636,139 @@ msgstr "Kunne ikke åpne spec fil %s: %s\n" msgid "cannot open Packages database in %s\n" msgstr "kan ikke åpne pakkedatabase i %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunne ikke kjøre %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "For stor header" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "hopp over MD5-signaturer" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n" "Language-Team: Polish <pl@li.org>\n" @@ -212,138 +212,138 @@ msgstr "Program mo¿e byæ swobodnie rozpowszechniany na warunkach licencji GNU" msgid "Usage: %s {--help}\n" msgstr "U¿ycie: rpm {--help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "U¿yj -e lub --erase\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "tylko jeden typ odpytywania/sprawdzania mo¿na wykonaæ na raz" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "b³êdna konstrukcja argumentów odpytywania" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "b³êdna konstrukcja argumentów odpytywania" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "b³êdna konstrukcja argumentów odpytywania" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate i --excludepath mo¿na u¿yæ tylko w trakcie instalacji nowych " "pakietów" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix mo¿na u¿yæ tylko w trakcie instalacji nowych pakietów" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -352,14 +352,14 @@ msgstr "" "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub " "sprawdzania pakietów" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub budowania pakietów" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -367,82 +367,82 @@ msgstr "" "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania " "pakietów lub przebudowywania bazy" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "brak dostêpu do pliku %s\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "nie znaleziono pgp: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Podaj has³o: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Weryfikacja has³a nieudana\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Has³o jest prawid³owe.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "B³êdny %%_signature spec w pliku makra.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "wykonanie nie powiod³o siê\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "nie podano nazw pakietów do przebudowania" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "nie podano nazw plików spec do budowania" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "nie podano nazw plików tar do budowania" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "nie podano nazwy pakietu do podpisania" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "nie podano nazw plików do zainstalowania" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "nie podano argumentów dla trybu zapytañ" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "nie podano argumentów dla sprawdzania" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "nieoczekiwane argumenty dla --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "nie podano argumentów dla trybu zapytañ" @@ -882,7 +882,7 @@ msgstr "Nie mo¿na odczytaæ ikony: %s" msgid "Unable to write payload to %s: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -1606,37 +1606,37 @@ msgstr "" msgid "%10d %s\n" msgstr "linia %d: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ostrze¿enie: %s zapisany jako %s" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "skasowanie katalogu %s nie powiod³o siê" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ostrze¿enie: %s utworzony jako %s" @@ -2292,12 +2292,12 @@ msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s" msgid " on file " msgstr " na pliku " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s nie powiod³o siê" @@ -2727,146 +2727,146 @@ msgstr "Nie mo¿na otworzyæ %s do odczytu: %s." msgid "cannot open Packages database in %s\n" msgstr "nie mo¿na otworzyæ %s/packages.rpm\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Brak sygnatury\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Stara sygnatura PGP\n" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stara (tylko wewnêtrzna) sygnatura! Sk±d Ty to wzi±³e¶!?" -#: lib/signature.c:221 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nie mo¿na uruchomiæ %s" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "pgp nie powiod³o siê" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "zapisanie sygnatury przez pgp nie powiod³o siê" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "rozmiar sygnatury PGP: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "nie mo¿na odczytaæ sygnatury" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Mam %d bajtów sygnatury PGP\n" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "gpg nie powiod³o siê" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "zapisanie sygnatury przez gpg nie powiod³o siê" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "rozmiar sygnatury GPG: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Mam %d bajtów sygnatury GPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "B³êdny %%_signature spec w pliku makra.\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Rozmiar nag³ówka jest zbyt du¿y" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "pomiñ wszelkie sygnatury MD5" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "Brak sygnatury\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Blok sygnatury: %d\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9d86e0be5..9d831ba09 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" #: build.c:36 #, fuzzy @@ -218,139 +218,139 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "uso: rpm {--help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Use -e ou --erase no lugar.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "somente um modo principal pode ser especificado" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "um tipo de pesquisa/verificao pode ser feita por vez" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath passado para uma operao que no usa um banco de dados" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "somente instalao e atualizao podem ser foradas" -#: rpmqv.c:729 +#: rpmqv.c:733 #, fuzzy msgid "files may only be relocated during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:732 +#: rpmqv.c:736 #, fuzzy msgid "only one of --prefix or --relocate may be used" msgstr "somente um entre --excludedocs e --includedocs pode ser especificado" -#: rpmqv.c:735 +#: rpmqv.c:739 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argumentos para --prefix devem comear com uma /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "" "--hash (-h) somente podem ser especificado durante instalaes de pacotes" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" "--replacepkgs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "" "--excludedocs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "" "--includedocs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "somente um entre --excludedocs e --includedocs pode ser especificado" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "" "--ignorearch somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:782 +#: rpmqv.c:786 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "" "--allmatches somente pode ser especificado durante desinstalaes de pacotes" -#: rpmqv.c:790 +#: rpmqv.c:794 #, fuzzy msgid "--allfiles may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:795 +#: rpmqv.c:799 #, fuzzy msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " @@ -359,7 +359,7 @@ msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " @@ -368,7 +368,7 @@ msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -377,7 +377,7 @@ msgstr "" "--nodeps somente pode ser especificado durante [des]instalaes e verificaes " "de pacotes" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -385,7 +385,7 @@ msgstr "" "--test somente pode ser especificado durante [des]instalaes e construes de " "pacotes" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -393,84 +393,84 @@ msgstr "" "--root (-r) somente pode ser especificado durante [des]instalaes, pesquisas " "e reconstruo de bancos de dados" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "argumentos para --root (-r) devem comear com uma /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpmqv.c:883 #, fuzzy msgid "pgp not found: " msgstr "no foi passado pacote para desinstalao" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Checagem de pass phrase falhou\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Pass phrase ok.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign somente pode ser usado durante a construo de pacotes" -#: rpmqv.c:919 +#: rpmqv.c:923 #, fuzzy msgid "exec failed\n" msgstr "Construo falhou.\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "no foram passados pacotes para reconstruo" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "no foi passado arquivo spec para construo" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "no foram passados arquivos tar para construo" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "no foram passados pacotes para assinatura" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "no foi passado pacote para instalao" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "no foi passado argumento para pesquisa" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "no foi passado argumento para verificao" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "argumentos no esperados em --querytags" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "no foi passado argumento para pesquisa" @@ -947,7 +947,7 @@ msgstr "No consegui abrir: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1719,40 +1719,40 @@ msgstr "" msgid "%10d %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" # , c-format -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "No consegui abrir: %s\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Construo falhou.\n" # , c-format -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "No consegui abrir: %s\n" @@ -2414,12 +2414,12 @@ msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "Construo falhou.\n" @@ -2878,146 +2878,146 @@ msgstr "No consegui abrir: %s\n" msgid "cannot open Packages database in %s\n" msgstr "No consegui abrir: %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" # , c-format -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "Construo falhou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "Construo falhou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "desconsidere quaisquer assinaturas MD5" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "gere assinatura PGP" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton <gafton@redhat.com>\n" "Language-Team: Romanian <ro@li.org>\n" @@ -201,225 +201,225 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1043 +#: rpmqv.c:1047 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1141 msgid "no arguments given" msgstr "" @@ -840,7 +840,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1537,37 +1537,37 @@ msgstr "" msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2166,12 +2166,12 @@ msgstr "" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2595,137 +2595,137 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 0dc437bce..1c4806c6a 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -207,225 +207,225 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1043 +#: rpmqv.c:1047 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1141 msgid "no arguments given" msgstr "" @@ -846,7 +846,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1543,37 +1543,37 @@ msgstr "" msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2172,12 +2172,12 @@ msgstr "" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, c-format msgid "%s failed: %s\n" msgstr "" @@ -2601,137 +2601,137 @@ msgstr "" msgid "cannot open Packages database in %s\n" msgstr "" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-08-29 13:55-0400\n" "Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n" "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n" @@ -205,128 +205,128 @@ msgstr "üÔÕ ĞÒÏÇÒÁÍÍÕ ÍÏÖÎÏ Ó×ÏÂÏÄÎÏ ÒÁÓĞÒÏÓÔÒÁÎÑÔØ ÎÁ ÕÓÌÏ×ÉÑÈ GNU GPL" msgid "Usage: %s {--help}\n" msgstr "éÓĞÏÌØÚÏ×ÁÎÉÅ: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "×ÁÒÉÁÎÔ --rcfile ÂÏÌØÛÅ ÎÅ ÉÓĞÏÌØÚÕÅÔÓÑ.\n" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "÷ÍÅÓÔÏ ÜÔÏÇÏ ÉÓĞÏÌØÚÕÊÔÅ \"--macros <ÆÁÊÌ:...>\".\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ĞÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÏÄÉÎ ÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "ÚÁ ÏÄÉÎ ÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓĞÏÌÎÅÎ ÔÏÌØËÏ ÏÄÉÎ ÔÉĞ ĞÒÏ×ÅÒËÉ ÉÌÉ ÚÁĞÒÏÓÁ" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÆÌÁÇÉ ÚÁĞÒÏÓÁ" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÆÏÒÍÁÔ ÚÁĞÒÏÓÁ" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏŞÎÉË ÚÁĞÒÏÓÁ" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "ĞÁÒÁÍÅÔÒ --dbpath ÚÁÄÁÎ ÄÌÑ ÏĞÅÒÁÃÉÉ, ÎÅ ÉÓĞÏÌØÚÕÀİÅÊ ÂÁÚÕ ÄÁÎÎÙÈ" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "ĞÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× " "É ÆÁÊÌÁ ÓĞÅÃÉÆÉËÁÃÉÉ" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ĞÅÒÅÍÅİÅÎÙ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "" "ÍÏÖÅÔ ÂÙÔØ ÉÓĞÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ÏÄÉÎ ÉÚ ×ÁÒÉÁÎÔÏ× --prefix ÉÌÉ --relocate" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "×ÁÒÉÁÎÔÙ --relocate É --excludepath ÍÏÖÎÏ ÉÓĞÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ " "ÎÏ×ÙÈ ĞÁËÅÔÏ×" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "×ÁÒÉÁÎÔ --prefix ÍÏÖÎÏ ÉÓĞÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ĞÁËÅÔÏ×" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁŞÉÎÁÔØÓÑ Ó /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" "ÍÏÖÅÔ ÂÙÔØ ÉÓĞÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ÏÄÉÎ ÉÚ ĞÁÒÁÍÅÔÒÏ× --excludedocs ÉÌÉ --" "includedocs" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÄÁÌÅÎÉÉ ĞÁËÅÔÁ" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ĞÁËÅÔÁ" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ĞÁËÅÔÁ" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -334,7 +334,7 @@ msgstr "" "ĞÁÒÁÍÅÔÒÙ ÚÁĞÒÅÔÁ ÓÃÅÎÁÒÉÅ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎÙ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ " "ÕÄÁÌÅÎÉÉ ĞÁËÅÔÁ" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -342,7 +342,7 @@ msgstr "" "ĞÁÒÁÍÅÔÒÙ ÚÁĞÒÅÔÁ ÔÒÉÇÇÅÒÏ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ " "ÕÄÁÌÅÎÉÉ ĞÁËÅÔÁ(Ï×)" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -350,14 +350,14 @@ msgstr "" "--nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ĞÒÏ×ÅÒËÉ " "ĞÁËÅÔÏ×" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ ĞÁËÅÔÁ" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,82 +365,82 @@ msgstr "" "--root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ĞÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, ÚÁĞÒÏÓÁÈ " "ĞÁËÅÔÁ É ĞÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁŞÉÎÁÔØÓÑ Ó /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "ÎÅÔ ÆÁÊÌÏ× ÄÌÑ ĞÏÄĞÉÓÉ\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "ÎÅÔ ÄÏÓÔÕĞÁ Ë ÆÁÊÌÕ %s\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp ÎÅ ÎÁÊÄÅÎ: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "÷×ÅÄÉÔÅ ËÌÀŞÅ×ÕÀ ÆÒÁÚÕ: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "îÅ×ÅÒÎÁÑ ËÌÀŞÅ×ÁÑ ÆÒÁÚÁ\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "ëÌÀŞÅ×ÁÑ ÆÒÁÚÁ ĞÒÉÎÑÔÁ.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "îÅ×ÅÒÎÁÑ ÓĞÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign ÍÏÖÅÔ ÂÙÔØ ÉÓĞÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ĞÒÉ ÓÂÏÒËÅ ĞÁËÅÔÏ×" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "ÚÁĞÕÓË ÎÅ ÕÄÁÌÓÑ\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "ÎÅ ÚÁÄÁÎÙ ĞÁËÅÔÙ ÄÌÑ ĞÅÒÅÓÂÏÒËÉ" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "ÎÅ ÚÁÄÁÎ ÆÁÊÌ ÓĞÅÃÉÆÉËÁÃÉÉ ÄÌÑ ÓÂÏÒËÉ ĞÁËÅÔÁ" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ĞÁËÅÔÁ" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "ÎÅ ÚÁÄÁÎÙ ĞÁËÅÔÙ ÄÌÑ ĞÏÄĞÉÓÉ" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "ÎÅ ÚÁÄÁÎÙ ĞÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁĞÒÏÓÁ" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁĞÒÏÓÁ" @@ -865,7 +865,7 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ĞÒÏŞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÉÚ %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁĞÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "úÁĞÉÓÁÎ: %s\n" @@ -1586,37 +1586,37 @@ msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀŞÅÎÙ × ĞÁËÅÔ Ñ×ÎÏ:\n" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ĞÒÁ×ÁÍÉ ÄÏÓÔÕĞÁ %04o.\n" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓĞÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ĞÕÓÔ\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s ÓÏÚÄÁÎ ËÁË %s\n" @@ -2240,12 +2240,12 @@ msgstr "ÒÁÓĞÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n" msgid " on file " msgstr " ÎÁ ÆÁÊÌÅ " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, c-format msgid "%s failed: %s\n" msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n" @@ -2673,141 +2673,141 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ŞÔÅÎÉÑ: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "ÎÅÏÂÙŞÎÙÊ ÆÁÊÌ -- ĞÒÏĞÕÓËÁÀ ĞÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "ïÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "æÁËÔÉŞÅÓËÉÊ ÒÁÚÍÅÒ: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "ğÏÄĞÉÓÉ ÎÅÔ\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "óÔÁÒÁÑ ĞÏÄĞÉÓØ PGP\n" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓĞÏÌØÚÏ×ÁÎÉÑ) ĞÏÄĞÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "ğÏÄĞÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁĞÏÌÎÅÎÉÅ(%d)\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÌÎÉÔØ %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "ÏÛÉÂËÁ pgp\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "ÏÛÉÂËÁ pgp ĞÒÉ ÚÁĞÉÓÉ ĞÏÄĞÉÓÉ\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "òÁÚÍÅÒ ĞÏÄĞÉÓÉ PGP: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ĞÒÏŞÅÓÔØ ĞÏÄĞÉÓØ\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "ğÏÌÕŞÅÎÏ %d ÂÁÊÔ ĞÏÄĞÉÓÉ PGP\n" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "ÏÛÉÂËÁ gpg\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "ÏÛÉÂËÁ gpg ĞÒÉ ÚÁĞÉÓÉ ĞÏÄĞÉÓÉ\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "òÁÚÍÅÒ ĞÏÄĞÉÓÉ GPG: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "ğÏÌÕŞÅÎÏ %d ÂÁÊÔ ĞÏÄĞÉÓÉ GPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "îÅ×ÅÒÎÁÑ ÓĞÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ĞÒÏĞÕÓÔÉÔØ ×ÓÅ MD5-ĞÏÄĞÉÓÉ" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "ğÏÄĞÉÓÉ ÎÅÔ\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "ğÏÄĞÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁĞÏÌÎÅÎÉÅ(%d)\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n" "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n" @@ -206,141 +206,141 @@ msgstr "Program mô¾e by» voµne redistribuovanı v súlade s podmienkami GNU GPL" msgid "Usage: %s {--help}\n" msgstr "pou¾itie: rpm {--help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Namiesto nich pou¾ite -e alebo --erase.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "mô¾e by» pou¾itı iba jeden hlavnı re¾im" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "naraz mô¾e by» vykonanı jeden typ otázky alebo overenia" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "neoèakávanı zdroj pre otázku" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "neoèakávanı zdroj pre otázku" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "neoèakávanı zdroj pre otázku" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "iba in¹talácia, aktualizácia a odstránenie zdrojov mô¾u by» vynútené" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "súbory mô¾u by» presunuté iba poèas inètalácie balíka" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "mo¾e by» pou¾itá iba jedna z volieb --prefix a --relocate" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate a --excludepath mô¾u by» pou¾ité iba poèas in¹talácie novıch " "balíkov" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix mô¾e by» pou¾itı iba poèas in¹talácie novıch balíkov" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argumenty pre --prefix musia zaèína» znakom /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) mô¾e by» pou¾itı iba poèas in¹talácie balíka" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "mô¾e by» pou¾itá iba jedna voµba z --excludedocs a --includedocs" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches mô¾e by» pou¾ité iba poèas odstránenia balíkov" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles mô¾e by» pou¾ité iba poèas in¹talácie balíka" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -349,7 +349,7 @@ msgstr "" "--nodeps mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo overenia " "balíka" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -357,7 +357,7 @@ msgstr "" "--test mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo zostavenia " "balíka" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,82 +365,82 @@ msgstr "" "--root (-r) mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka, " "otázky alebo znovuzostavenia databázy" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenty pre --root (-r) musia zaèína» znakom /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "nie je mo¾né pracova» so súborom %s\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp nebolo nájdené: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Kontrola hesla zlyhala\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Heslo je v poriadku.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "vykonanie zlyhalo\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "neboli zadané ¾iadne balíky na podpis" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "neboli zadané ¾iadne balíky pre in¹taláciu" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "neboli zadané ¾iadne argumenty pre otázku" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "neboli zadané ¾iadne argumenty pre overenie" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "neoèakávané argumenty pre --querytags" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "neboli zadané ¾iadne argumenty pre otázku" @@ -880,7 +880,7 @@ msgstr "Nie je mo¾né preèíta» ikonu: %s" msgid "Unable to write payload to %s: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Zapísané: %s\n" @@ -1605,37 +1605,37 @@ msgstr "" msgid "%10d %s\n" msgstr "riadok %d: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varovanie: %s uchovanı ako %s" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s zlyhalo: %s" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varovanie: %s vytvorené ako %s" @@ -2289,12 +2289,12 @@ msgstr "rozbalenie archívu zlyhalo%s%s: %s" msgid " on file " msgstr " pre súbor " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s zlyhalo" @@ -2724,146 +2724,146 @@ msgstr "Nie je mo¾né otvori» %s pre èítanie: %s." msgid "cannot open Packages database in %s\n" msgstr "nie je mo¾né otvori» %s/packages.rpm\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "nejde o be¾nı súbor - kontrola veµkosti vynechaná\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "Veµkos» podpisu: %d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Podpis nie je k dispozícii\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Starı PGP podpis\n" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starı (iba internı) podpis! Ako ste sa k tomu dostali?!" -#: lib/signature.c:221 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Veµkos» podpisu: %d\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nie je mo¾né spusti» %s" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "pgp zlyhalo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp sa nepodarilo zapísa» podpis" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "Veµkos» PGP podpisu: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "nie je mo¾né preèíta» podpis" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Preèítanı PGP podpis obsahuje %d bajtov\n" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "gpg zlyhalo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg sa nepodarilo zapísa» podpis" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "Veµkos» GPG podpisu: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Preèítanı GPG podpis obsahuje %d bajtov\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Priveµká hlavièka" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "vynecha» akékoµvek MD5 podpisy" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "Podpis nie je k dispozícii\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Doplnenie podpisu: %d\n" @@ -1,12 +1,12 @@ # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr. # Copyright (C) 2000 Free Software Foundation, Inc. # Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000. -# $Id: sl.po,v 1.234 2002/04/08 18:56:43 jbj Exp $ +# $Id: sl.po,v 1.235 2002/04/10 20:01:04 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n" "Language-Team: Slovenian <sl@li.org>\n" @@ -210,137 +210,137 @@ msgstr "Ta program je dovoljeno razpeèevati pod pogoji navedenimi v GNU GPL." msgid "Usage: %s {--help}\n" msgstr "Uporaba: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Namesto njiju uporabite -e ali --erase.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "izbran sme biti le en glavni naèin" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "samo en tip poizvedbe/preverjanja je mo¾en naenkrat" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "neprièakovane zastavice pri poizvedbi" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "neprièakovana oblika poizvedbe" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "neprièakovan izvor poizvedbe" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath podan, vendar, èeprav nepotreben" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "datoteke smemo premakniti samo med namestitvijo paketa" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "izbiri --prefix in --relocate se medsebojno izkljuèujeta" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "izbiri --relocate in --excludepath se lahko uporabi le pri namestitvi" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix se sme uporabiti le pri namestitvi" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argumenti izbire --prefix se morajo zaèeti z /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) sme biti podan le ob namestitvi paketa" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent sme biti podan le ob namestitvi paketa" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles sme biti podan le ob namestitvi paketa" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs sme biti podan le ob namestitvi paketa" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs sme biti podatn le ob namestitvi paketa" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs sme biti podan le ob namestitvi paketa" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "izbiri --excludedocs in --includedocs se medsebojno izkljuèujeta" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch sme biti podan le ob namestitvi paketa" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos sme podan le ob namestitvi paketa" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize sme biti podan le ob namestitvi paketa" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches sme biti podan le ob odstranitvi paketa" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles sme biti podati le ob namestitvi paketa" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -348,14 +348,14 @@ msgstr "" "--nodeps sme biti podan le ob izgradnji, vnovièni izgradnji, prevajanju, " "namestitvi, odstranitvi ali preverjanju paketa" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test sme biti podan le ob namestitvi, odstranitvi ali izgradnji paketa" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -363,82 +363,82 @@ msgstr "" "--root (-r) sme biti podan le ob namestitvi, odstranitvi poizvedbi ali " "vnovièni izgradnji paketa" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenti izbire --root (-r) se morajo zaèeti z /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "ni datotek, ki bi jih lahko podpisal\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "dostop do datoteke %s ni mo¾en\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp manjka: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Vnesite pristopno geslo: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Preverjanje pristopnega gesla neuspe¹no\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Pristopno geslo je pravo.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign sme biti podan le ob izgradnji paketa" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "izvajanje je bilo neuspe¹no\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "paketi za vnovièno izgradnjo niso navedeni" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "datoteka spec za izgradnjo manjka" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "arhiv tar za izgradnjo manjka" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "paketi katere bi bilo potrebno podpisati niso navedeni" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "paketi katere bi bilo potrebno namestiti niso navedeni" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "argumenti za poizvedbo niso podani" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "argumenti za preverjanje niso podani" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "neprièakovani argumenti za --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "argumenti za poizvedbo niso podani" @@ -878,7 +878,7 @@ msgstr "Ikone %s ni mo¾no prebrati: %s" msgid "Unable to write payload to %s: %s\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -1606,37 +1606,37 @@ msgstr "" msgid "%10d %s\n" msgstr "vrstica %d: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "opozorilo: %s shranjen kot %s" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ni mo¾no odstraniti %s - imenik ni prazen" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "odstranitev imenika %s je bila neuspe¹na: %s" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "opozorilo: %s ustvarjen kot %s" @@ -2288,12 +2288,12 @@ msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s" msgid " on file " msgstr " za datoteko " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s neuspe¹en" @@ -2724,146 +2724,146 @@ msgstr "%s ni mo¾no odpreti za branje: %s." msgid "cannot open Packages database in %s\n" msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, fuzzy, c-format msgid " Actual size: %12d\n" msgstr "Dol¾. podpisa : %d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Podpis manjka\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Stari podpis PGP\n" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?" -#: lib/signature.c:221 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Dol¾. podpisa : %d\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Ni mo¾no izvesti %s: %s" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "pgp je bil neuspe¹en" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp je bil neuspe¹en pri zapisu podpisa" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "Dol¾. podpisa PGP: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "branje podpisa je bilo neuspe¹no" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prebrano %d bajtov podpisa PGP\n" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "gpg je bil neuspe¹en" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg je boil neuspe¹en pri zapisu podpisa" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "Dol¾. podpisa GnuPG: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Prebrano %d bajtov podpisa GnuPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Glava je predolga" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "preskoèi vse podpise MD5" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "Podpis manjka\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Dol¾. polnila : %d\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" @@ -201,141 +201,141 @@ msgstr "Mo¾ete slobodno distribuirati dalje pod odredbama GNU GPL" msgid "Usage: %s {--help}\n" msgstr "kori¹æenje: {rpm --help}" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 +#: rpmqv.c:598 #, fuzzy msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Koristite -e ili --erase.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "samo jedan glavni re¾im mo¾e biti naveden" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "samo jedan tip upita/provere mo¾e biti urağen odjednom" -#: rpmqv.c:674 +#: rpmqv.c:678 #, fuzzy msgid "unexpected query flags" msgstr "neoèekivan izvor upita" -#: rpmqv.c:677 +#: rpmqv.c:681 #, fuzzy msgid "unexpected query format" msgstr "neoèekivan izvor upita" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "neoèekivan izvor upita" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka" -#: rpmqv.c:727 +#: rpmqv.c:731 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "samo instalacija i a¾uriranje mogu biti forsirane" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate" -#: rpmqv.c:735 +#: rpmqv.c:739 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate mo¾ete koristiti samo kad instalirate novi paket" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argumenti za --prefix moraju poèeti znakom /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:782 +#: rpmqv.c:786 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:800 +#: rpmqv.c:804 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:805 +#: rpmqv.c:809 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:809 +#: rpmqv.c:813 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -343,14 +343,14 @@ msgid "" msgstr "" "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test mo¾ete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -358,84 +358,84 @@ msgstr "" "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili " "rekreiranja baze podataka" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenti za --root (-r) moraju poèeti znakom /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpmqv.c:864 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmqv.c:879 +#: rpmqv.c:883 #, fuzzy msgid "pgp not found: " msgstr "Datoteka nije pronağena na serveru" -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Neuspela provera lozinke\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Lozinka je dobra.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa" -#: rpmqv.c:919 +#: rpmqv.c:923 #, fuzzy msgid "exec failed\n" msgstr "%s: Neuspelo otvaranje\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "nedosataje paket za rekreiranje" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "nedostaje specifikacije za kreiranje" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "nedostaju 'tar' datoteke za kreiranje" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "nedostaje paket za potpisivanje" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "nedostaje paket za instalaciju" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "nedostaju argumenti za upit" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "nedostaju argumenti za proveru" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "neoèekivani argumenti za --querytags" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "nedostaju argumenti za upit" @@ -867,7 +867,7 @@ msgstr "Ne mogu da upi¹em %s" msgid "Unable to write payload to %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -1593,37 +1593,37 @@ msgstr "" msgid "%10d %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ne mogu da uklonim %s - direktorijum nije prazan" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "neuspela komanda rmdir %s: %s" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -2281,12 +2281,12 @@ msgstr "neuspelo otvaranje %s: %s\n" msgid " on file " msgstr "" -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "PGP omanuo" @@ -2719,147 +2719,147 @@ msgstr "Ne mogu da otvorim %s za èitanje: %s" msgid "cannot open Packages database in %s\n" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:152 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/signature.c:156 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "napravi PGP potpis" -#: lib/signature.c:167 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stari (interni) potpis! Odakle vam!?" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Ne mogu da izvr¹im PGP" -#: lib/signature.c:316 +#: lib/signature.c:320 #, fuzzy msgid "pgp failed\n" msgstr "PGP omanuo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 #, fuzzy msgid "pgp failed to write signature\n" msgstr "PGP nije uspeo da zapi¹e potpis" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 #, fuzzy msgid "unable to read the signature\n" msgstr "ne mogu da proèitam potpis" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:418 #, fuzzy msgid "gpg failed\n" msgstr "PGP omanuo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 #, fuzzy msgid "gpg failed to write signature\n" msgstr "PGP nije uspeo da zapi¹e potpis" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:732 +#: lib/signature.c:736 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" -#: lib/signature.c:745 +#: lib/signature.c:749 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" -#: lib/signature.c:789 +#: lib/signature.c:793 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "preskoèi sve MD5 potpise" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-09-12 14:18+0200\n" "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n" "Language-Team: Swedish <sv@li.org>\n" @@ -202,123 +202,123 @@ msgstr "Det här programmet kan distribueras fritt enligt villkoren i GNU GPL" msgid "Usage: %s {--help}\n" msgstr "Användning: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "Flaggan --rcfile har tagits bort.\n" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Använd \"--macros <fil:...>\" istället.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Internt fel i argumenthantering (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "enbart ett huvudläge kan anges" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "endast en typ av fråga/verifiering kan utföras åt gången" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "oväntade frågeflaggor" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "oväntat frågeformat" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "oväntad frågekälla" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath angivet för en operation som inte använder någon databas" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "enbart installation, uppgradering, rmsource och rmspec kan tvingas fram" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "filer kan relokeras endast under paketinstallation" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "enbart en av --prefix eller --relocate kan användas" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate och --excludepath kan endast användas när nya paket installeras" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan endast användas när nya paket installeras" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "argument till --prefix måste börja med /" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan enbart användas vid paketinstallation" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent kan enbart användas vid paketinstallation" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan enbart användas vid paketinstallation" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs kan enbart användas vid paketinstallation" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs kan enbart användas vid paketinstallation" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs kan enbart användas vid paketinstallation" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "enbart en av --excludedocs och --includedocs kan användas" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch kan enbart användas vid paketinstallation" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos kan enbart användas vid paketinstallation" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize kan enbart användas vid paketinstallation" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches kan enbart användas när paket raderas" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles kan enbart användas vid paketinstallation" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb kan enbart användas när paket installeras eller raderas" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -326,7 +326,7 @@ msgstr "" "skriptdeaktiveringsflaggor kan enbart användas när paket installeras eller " "raderas" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -334,7 +334,7 @@ msgstr "" "utlösardeaktiveringsflaggor kan enbart användas när paket installeras eller " "raderas" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -342,13 +342,13 @@ msgstr "" "--nodeps kan enbart användas när paket byggs, byggs om, kompileras om, " "installeras, raderas eller verifieras" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test kan enbart användas när paket installeras, raderas eller byggs" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -356,82 +356,82 @@ msgstr "" "--root (-r) kan enbart användas när paket installeras, raderas, frågas eller " "databasen byggs om" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "argument till --root (-r) måste börja med /" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "inga filer att signera\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "kan inte komma åt filen %s\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp hittades inte: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Ange lösenfras: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Kontrollen av lösenfrasen misslyckades\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Lösenfrasen är ok.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Felaktig %%_signature-spec i makrofil.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign kan enbart användas vid pakettillverkning" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "exec misslyckades\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "inga paketfiler angivna för omtillverkning" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "inga specfiler angivna för tillverkning" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "inga tar-filer angivna för tillverkning" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "inga paket angivna för signering" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "inga paket angivna för installation" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "inga parametrar angivna för fråga" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "inga parametrar angivna för verifiering" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "oväntade argument till --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "inga parametrar angivna för fråga" @@ -856,7 +856,7 @@ msgstr "Kan inte läsa last från %s: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "Kan inte skriva last till %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -1570,37 +1570,37 @@ msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "katalog %s skapad med rättigheter %04o.\n" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "arkivfil %s fanns inte i huvudets fillista\n" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s sparades som %s\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir av %s misslyckades: Katalogen är inte tom\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s misslyckades: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s misslyckades: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s skapades som %s\n" @@ -2224,12 +2224,12 @@ msgstr "uppackning av arkiv misslyckades%s%s: %s\n" msgid " on file " msgstr " vid fil " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s misslyckades på fil %s: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, c-format msgid "%s failed: %s\n" msgstr "%s misslyckades: %s\n" @@ -2657,142 +2657,142 @@ msgstr "Kan inte öppna %s för läsning: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "kan inte öppna paketdatabas i %s\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" "Förväntad storlek: %12d = inledning(%d)+signaturer(%d)+utfyllnad(%d)+data(%" "d)\n" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr " Faktisk storlek: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Ingen signatur\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Gammal PGP-signatur\n" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammal (endast intern) signatur! Hur fick du tag i den!?\n" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunde inte köra %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "pgp misslyckades\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "pgp misslyckades att skriva en signatur\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP signaturstorlek: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "kan inte läsa signaturen\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fick %d byte PGP-signatur\n" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "gpg misslyckades\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "gpg kunde inte skriva signatur\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstorlek: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fick %d byte GPG-signatur\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Felaktig %%_signature-spec i makrofil\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil\n" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil\n" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Huvudstorleken för stor" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "hoppa över eventuella MD5-signaturer" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "Ingen signatur\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-04-08 13:10-0400\n" +"POT-Creation-Date: 2002-04-10 15:55-0400\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n" "Language-Team: Turkish <tr@li.org>\n" @@ -204,126 +204,126 @@ msgstr "Bu program GNU GPL koşullarına uygun olarak serbestçe dağıtılabilir." msgid "Usage: %s {--help}\n" msgstr "Kullanımı: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:597 msgid "The --rcfile option has been eliminated.\n" msgstr "--rcfile seçeneği kaldırılmıştı.\n" -#: rpmqv.c:594 +#: rpmqv.c:598 msgid "Use \"--macros <file:...>\" instead.\n" msgstr "Yerine \"--macros <dosya:...>\" kullanın.\n" -#: rpmqv.c:600 +#: rpmqv.c:604 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "(%d) argümanı işlenirken iç hata oluştu :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:645 rpmqv.c:651 rpmqv.c:657 rpmqv.c:695 msgid "only one major mode may be specified" msgstr "sadece bir ana kip belirtilebilir" -#: rpmqv.c:670 +#: rpmqv.c:674 msgid "one type of query/verify may be performed at a time" msgstr "bir anda sadece bir tarz sorgulama/denetleme yapılabilir" -#: rpmqv.c:674 +#: rpmqv.c:678 msgid "unexpected query flags" msgstr "beklenmeyen sorgulama bayrakları" -#: rpmqv.c:677 +#: rpmqv.c:681 msgid "unexpected query format" msgstr "beklenmeyen sorgulama biçemi" -#: rpmqv.c:680 +#: rpmqv.c:684 msgid "unexpected query source" msgstr "beklenmeyen sorgulama kaynağı" -#: rpmqv.c:721 +#: rpmqv.c:725 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath bir veritabanı kullanmayan işlemler için verilmiş" -#: rpmqv.c:727 +#: rpmqv.c:731 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "sadece kaynak ve spec silme işlemleri, kurma, güncelleme işlemleri için " "zorlanabilir" -#: rpmqv.c:729 +#: rpmqv.c:733 msgid "files may only be relocated during package installation" msgstr "" "dosyalar sadece paket kurulumu sırasında yeni yerlerine yerleştirilebilir" -#: rpmqv.c:732 +#: rpmqv.c:736 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanılabilir" -#: rpmqv.c:735 +#: rpmqv.c:739 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate ve --excludepath sadece yeni paket kurulumunda kullanılabilir" -#: rpmqv.c:738 +#: rpmqv.c:742 msgid "--prefix may only be used when installing new packages" msgstr "--prefix sadece yeni paketlerin kurulması sırasında kullanılabilir" -#: rpmqv.c:741 +#: rpmqv.c:745 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ile belirtilenler '/' ile başlamalı" -#: rpmqv.c:744 +#: rpmqv.c:748 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:748 +#: rpmqv.c:752 msgid "--percent may only be specified during package installation" msgstr "--percent sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:753 +#: rpmqv.c:757 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:757 +#: rpmqv.c:761 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:761 +#: rpmqv.c:765 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:765 +#: rpmqv.c:769 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:769 +#: rpmqv.c:773 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ve --includedocs bir arada kullanılamaz" -#: rpmqv.c:773 +#: rpmqv.c:777 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:777 +#: rpmqv.c:781 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:782 +#: rpmqv.c:786 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:786 +#: rpmqv.c:790 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:790 +#: rpmqv.c:794 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles sadece paket kurulumu sırasında kullanılabilir" -#: rpmqv.c:795 +#: rpmqv.c:799 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb sadece paket kurulumu ve kaldırılması sırasında kullanılabilir" -#: rpmqv.c:800 +#: rpmqv.c:804 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -331,7 +331,7 @@ msgstr "" "betik iptal etme seçenekleri sadece paketin kurulması ve silinmesi sırasında " "kullanılabilir" -#: rpmqv.c:805 +#: rpmqv.c:809 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -339,7 +339,7 @@ msgstr "" "tetikleme iptal seçenekleri sadece paketin kurulması ve silinmesi sırasında " "kullanılabilir" -#: rpmqv.c:809 +#: rpmqv.c:813 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -347,7 +347,7 @@ msgstr "" "--nodeps sadece paket oluşturma, yeniden oluşturma, yeniden derleme, " "kurulum, kaldırma ve denetleme işlemlerinde kullanılabilir" -#: rpmqv.c:814 +#: rpmqv.c:818 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -355,7 +355,7 @@ msgstr "" "--test sadece paket kurulumu, kaldırılması ve oluşturulması işlemlerinde " "kullanılabilir" -#: rpmqv.c:819 +#: rpmqv.c:823 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -363,82 +363,82 @@ msgstr "" "--root (-r) sadece kurulum, kaldırma, sorgulama ve yeniden veritabanı " "oluşturma işlemlerinde kullanılabilir" -#: rpmqv.c:831 +#: rpmqv.c:835 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ile verilenler '/' ile başlamalı" -#: rpmqv.c:855 +#: rpmqv.c:859 msgid "no files to sign\n" msgstr "imzalanacak dosya yok\n" -#: rpmqv.c:860 +#: rpmqv.c:864 #, c-format msgid "cannot access file %s\n" msgstr "%s dosyası bulunamıyor\n" -#: rpmqv.c:879 +#: rpmqv.c:883 msgid "pgp not found: " msgstr "pgp bulunamadı: " -#: rpmqv.c:884 +#: rpmqv.c:888 msgid "Enter pass phrase: " msgstr "Anahtar parolasını girin: " -#: rpmqv.c:886 +#: rpmqv.c:890 msgid "Pass phrase check failed\n" msgstr "Anahtar parolası kontrolü başarısız\n" -#: rpmqv.c:890 +#: rpmqv.c:894 msgid "Pass phrase is good.\n" msgstr "Anahtar parolası doğru.\n" -#: rpmqv.c:895 +#: rpmqv.c:899 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Makro dosyasındaki %%_signature spec geçersiz.\n" -#: rpmqv.c:902 +#: rpmqv.c:906 msgid "--sign may only be used during package building" msgstr "--sign sadece paket oluşturulurken kullanılabilir" -#: rpmqv.c:919 +#: rpmqv.c:923 msgid "exec failed\n" msgstr "icra başarısız\n" -#: rpmqv.c:951 +#: rpmqv.c:955 msgid "no packages files given for rebuild" msgstr "yeniden oluşturmak için paket dosyaları belirtilmemiş" -#: rpmqv.c:1019 +#: rpmqv.c:1023 msgid "no spec files given for build" msgstr "oluşturma için gerekli spec dosyası belirtilmemiş" -#: rpmqv.c:1021 +#: rpmqv.c:1025 msgid "no tar files given for build" msgstr "oluşturma için gereken tar dosyaları belirtilmemiş" -#: rpmqv.c:1043 +#: rpmqv.c:1047 #, fuzzy msgid "no packages given for erase" msgstr "imzalanacak paket(ler) belirtilmedi" -#: rpmqv.c:1084 +#: rpmqv.c:1088 msgid "no packages given for install" msgstr "yüklenecek paket(ler) belirtilmedi" -#: rpmqv.c:1100 +#: rpmqv.c:1104 msgid "no arguments given for query" msgstr "sorgulama için hiç argüman belirtilmedi" -#: rpmqv.c:1113 +#: rpmqv.c:1117 msgid "no arguments given for verify" msgstr "denetleme için hiç argüman belirtilmedi" -#: rpmqv.c:1121 +#: rpmqv.c:1125 msgid "unexpected arguments to --querytags " msgstr "--querytags ile beklenmeyen girdiler" -#: rpmqv.c:1137 +#: rpmqv.c:1141 #, fuzzy msgid "no arguments given" msgstr "sorgulama için hiç argüman belirtilmedi" @@ -867,7 +867,7 @@ msgstr "%s'den payload okunamadı: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "%s'e payload yazılamadı: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:699 lib/psm.c:1725 #, c-format msgid "Wrote: %s\n" msgstr "Yazıldı: %s\n" @@ -1590,37 +1590,37 @@ msgstr "========= Pakette bulunmayan dizinler:\n" msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1196 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%s dizin %04o izinleriyle oluşturuldu.\n" -#: lib/fsm.c:1476 +#: lib/fsm.c:1487 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1599 lib/fsm.c:1731 +#: lib/fsm.c:1610 lib/fsm.c:1742 #, c-format msgid "%s saved as %s\n" msgstr "%s %s olarak kaydedildi\n" -#: lib/fsm.c:1757 +#: lib/fsm.c:1768 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s / %s dizin silinemedi - Dizin boş değil\n" -#: lib/fsm.c:1763 +#: lib/fsm.c:1774 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s / %s dizinin silinmesi başarısız: %s\n" -#: lib/fsm.c:1773 +#: lib/fsm.c:1784 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s / %s bağ kaldırılamadı: %s\n" -#: lib/fsm.c:1795 +#: lib/fsm.c:1804 #, c-format msgid "%s created as %s\n" msgstr "%s %s olarak oluşturuldu\n" @@ -2247,12 +2247,12 @@ msgstr "arşiv paketi açılırken başarısız%s%s: %s\n" msgid " on file " msgstr " dosyada " -#: lib/psm.c:1726 +#: lib/psm.c:1733 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s açılamadı: %s\n" -#: lib/psm.c:1729 +#: lib/psm.c:1736 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s başarısız\n" @@ -2680,140 +2680,140 @@ msgstr "%s okuma erişimi için açılamadı: %s.\n" msgid "cannot open Packages database in %s\n" msgstr "%s de Paket veritabanı açılamadı\n" -#: lib/signature.c:118 +#: lib/signature.c:122 msgid "file is not regular -- skipping size check\n" msgstr "dosya normal değil -- uzunluk denetimi atlanıyor\n" -#: lib/signature.c:127 +#: lib/signature.c:131 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "gereken boyut: %12d = (%d)uç+(%d)imza+(%d)iz+(%d)veri\n" -#: lib/signature.c:132 +#: lib/signature.c:136 #, c-format msgid " Actual size: %12d\n" msgstr " Gerçek boyut: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:156 msgid "No signature\n" msgstr "İmza yok\n" -#: lib/signature.c:156 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Eski PGP imzası\n" -#: lib/signature.c:167 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Eski imza !!! Bunu nasıl aldın!?\n" -#: lib/signature.c:221 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "İmza: boyut(%d)+iz(%d)\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 +#: lib/signature.c:304 lib/signature.c:401 lib/signature.c:668 +#: lib/signature.c:701 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s icra edilemedi: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:320 msgid "pgp failed\n" msgstr "pgp hata verdi\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:327 msgid "pgp failed to write signature\n" msgstr "pgp imzasının yazılması başarısız\n" -#: lib/signature.c:328 +#: lib/signature.c:332 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP imza uzunluğu: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:346 lib/signature.c:444 msgid "unable to read the signature\n" msgstr "imza okunamadı\n" -#: lib/signature.c:347 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "GPG imzasının %d baytı alındı\n" -#: lib/signature.c:414 +#: lib/signature.c:418 msgid "gpg failed\n" msgstr "gpg hata verdi\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:425 msgid "gpg failed to write signature\n" msgstr "imzanın yazılması sırasında gpg hata verdi\n" -#: lib/signature.c:426 +#: lib/signature.c:430 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG imza uzunluğu: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:449 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG imzasının %d baytı alındı\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:706 lib/signature.c:757 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Makro dosyasında %%_signature spec geçersiz\n" -#: lib/signature.c:732 +#: lib/signature.c:736 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Makro dosyanızda \"%%_pgp_name\" tanımlanmış olmalı\n" -#: lib/signature.c:745 +#: lib/signature.c:749 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Makro dosyanızda \"%%_pgp_name\" belirtmelisiniz\n" -#: lib/signature.c:789 +#: lib/signature.c:793 #, fuzzy msgid "Header+Payload size: " msgstr "Başlık çok uzun" -#: lib/signature.c:825 +#: lib/signature.c:829 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:874 +#: lib/signature.c:878 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1061 +#: lib/signature.c:1065 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "tüm MD5 imzalarını atlar" -#: lib/signature.c:1171 +#: lib/signature.c:1175 msgid "Header " msgstr "" -#: lib/signature.c:1172 +#: lib/signature.c:1176 #, fuzzy msgid "V3 DSA signature: " msgstr "İmza yok\n" -#: lib/signature.c:1247 +#: lib/signature.c:1251 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1274 +#: lib/signature.c:1278 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1278 +#: lib/signature.c:1282 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "İmza: boyut(%d)+iz(%d)\n" @@ -15,12 +15,12 @@ %define __prefix /usr %{expand: %%define __share %(if [ -d %{__prefix}/share/man ]; then echo /share ; else echo %%{nil} ; fi)} -Summary: The Red Hat package management system. +Summary: The RPM package management system. Name: rpm %define version 4.1 Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.02 +Release: 0.04 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -57,18 +57,18 @@ BuildRoot: %{_tmppath}/%{name}-root %description The RPM Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, -verifying, querying, and updating software packages. Each software +verifying, querying, and updating software packages. Each software package consists of an archive of files along with information about the package like its version, a description, etc. %package devel -Summary: Development files for applications which will manipulate RPM packages. +Summary: Development files for manipulating RPM packages. Group: Development/Libraries Requires: rpm = %{rpm_version}, popt = 1.7 %description devel -This package contains the RPM C library and header files. These -development files will simplify the process of writing programs which +This package contains the RPM C library and header files. These +development files will simplify the process of writing programs that manipulate RPM packages and databases. These files are intended to simplify the process of creating graphical package managers or any other tools that need an intimate knowledge of RPM packages in order @@ -83,8 +83,8 @@ Group: Development/Tools Requires: rpm = %{rpm_version} %description build -This package contains scripts and executable programs that are used to -build packages using RPM. +The rpm-build package contains the scripts and executable programs +that are used to build packages using the RPM Package Manager. %if %{with_python_subpackage} %package python @@ -95,9 +95,9 @@ Requires: python >= %{with_python_version} Requires: popt = 1.7 %description python -The rpm-python package contains a module which permits applications +The rpm-python package contains a module that permits applications written in the Python programming language to use the interface -supplied by RPM (RPM Package Manager) libraries. +supplied by RPM Package Manager libraries. This package should be installed if you want to develop Python programs that will manipulate RPM packages and databases. @@ -129,7 +129,7 @@ implementations. At this time, the interface only provides access to the database of installed packages, and header data retrieval for RPM and SRPM files -is not yet installed. Error management and the export of most defined +is not yet installed. Error management and the export of most defined constants, through RPM::Error and RPM::Constants, respectively, are also available. @@ -141,25 +141,22 @@ Group: Development/Libraries Version: 1.7 %description -n popt -Popt is a C library for parsing command line parameters. Popt was +Popt is a C library for parsing command line parameters. Popt was heavily influenced by the getopt() and getopt_long() functions, but it -improves on them by allowing more powerful argument expansion. Popt +improves on them by allowing more powerful argument expansion. Popt can parse arbitrary argv[] style arrays and automatically set -variables based on command line arguments. Popt allows command line +variables based on command line arguments. Popt allows command line arguments to be aliased via configuration files and includes utility functions for parsing arbitrary strings into argv[] arrays using shell-like rules. -Install popt if you're a C programmer and you'd like to use its -capabilities. - %prep %setup -q %build %ifos linux -CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} --sysconfdir=/etc --localstatedir=/var --infodir='${prefix}%{__share}/info' --mandir='${prefix}%{__share}/man' +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} --sysconfdir=/etc --localstatedir=/var --infodir='${prefix}%{__share}/info' --mandir='${prefix}%{__share}/man' --with-python=%{with_python_version} --without-javaglue %else CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} %endif @@ -524,6 +521,9 @@ fi %{__prefix}/include/popt.h %changelog +* Wed Apr 10 2002 Jeff Johnsion <jbj@redhat.com> 4.1-0.04 +- beecrypt: add types.h, eliminate need for config.gnu.h. + * Sat Mar 16 2002 Jeff Johnson <jbj@redhat.com> - *really* dump signature header immutable region. @@ -533,140 +533,3 @@ fi - drill ts/fi through verify mode, add methods to keep fi abstract. - use mmap when calculating file digests on verify, ~20% faster. - permit --dbpath and --root with signature (i.e. --import) modes. - -* Mon Sep 24 2001 Jeff Johnson <jbj@redhat.com> -- Start rpm-4.1. -- loosely wire beecrypt library into rpm. -- drop rpmio/base64.[ch] in favor of beecrypt versions. -- drop lib/md5*.[ch] files in favor of beecrypt. -- legacy: drop brokenMD5 support (rpm-2.3.3 to rpm-2.3.8 on sparc). -- eliminate DYING code. -- bind beecrypt md5/sha1 underneath rpmio. -- create RFC-2440 OpenPGP API in rpmio. -- proof-of-concept GPG/DSA verification for legacy signatures. -- upgrade to beecrypt-2.2.0pre. -- proof-of-concept PGP/RSA verification for legacy signatures. -- ratchet up to lclint "strict" level. -- upgrade to db-4.0.7. -- use only header methods, routines are now static. -- beecrypt is at least as good as pgp/gpg on verify, pulling the plug. -- add :base64 and :armor format extensions, dump binary tags in hex. -- proof-of-concept pubkey retrieval from RPM-{PGP,GPG}-KEY. -- stupid macros to configure public key file paths. -- all symbols but hdrVec are now forward references in linkage. -- generate an rpm header on the fly for imported pubkeys. -- wire transactions through rpmcli signature modes. -- wire transactions through rpmcli query/verify modes. -- wire transactions through rpmcli install/erase modes. -- legacy signatures always checked where possible on package read. -- wire transactions through rpmcli build modes. -- lazy rpmdb open/close through transaction methods (mostly anyways). -- no-brainer refcounts for rpmdb object. -- check added header against transaction set, replace if newer. -- transaction sets created in cli main. -- no-brainer refcounts for ts object. -- memory indices for dependency check are typedef'd and abstract'd. -- no-brainer refcounts for fi object, debug the mess. -- dump the header early in transaction, recreate fi before installing. -- start hiding availablePackage data/methods in rpmal.c/rpmal.h. -- add some dinky availablePackage methods. -- transaction.c: cleanly uncouple availablePackage from TFI_t. -- add header refcount annotations throughout. -- depends.c: availablePackage is (almost) opaque. -- invent some toy transactionElement iterators. -- create rpmDepSet constructors/destructors. -- create toy rpmDepSet iterators. -- rpmRangesOverlap renamed to dsCompare, add dsNotify method as well. -- depends.c: rpmDepSet is (almost) opaque, move to rpmds.[ch]. -- rpmds: create dsProblem(), dsiGetDNEVR() retrieved DNEVR, not N. -- depends.h: hack around teIterator() et al from include for now. -- rpmds: move trigger dependencies into a rpmDepSet as well. -- rpmal: availablePackage is totally opaque, alKey with index replaces. -- fix: harmless typo in db3 chroot hack. -- fix: big-endian's with sizeof(time_t) != sizeof(int_32) mtime broken. -- fix: add Korean message catalogs (#54473). -- add RPHNPLATFORM and PLATFORM tags. -- linear search on added package provides is dumb. -- discarding entire signature header when using --addsign is dumb. -- rip out rpmDependencyConflict, replace with rpmProblem instead. -- no-brainer refcounts for rpmProblemSet object. -- header tag sets are per-transactionElement, not per-availablePackage. -- no-brainer refcounts for rpmDepSet and rpmFNSet objects. -- strip header tags for erased as well as installed transactionElements. -- common structure elements for unification of TFI_t and rpmFNSet. -- factor per-transactionElement data out of TFI_t through pointer ref. -- unify rpmFNSet into TFI_t. -- eliminate header reference in rpmtransAddPackage, use TFI_t data. -- commit to using rpmDepSet and TFI_t, not header. -- lclint rpmio fiddles. -- split file info tag sets into rpmfi.c. -- create toy TFI_t iterators. -- tweak overlapped file fingerprint retrieval for speed. -- transaction.c: use wrappers/iterators to access TFI_t. -- annotations to make a transactionElement opaque. -- use array of pointers rather than contiguous array for ts->order. -- methods to complete making transactionElement opaque. -- use TR_REMOVED relations as well as TR_ADDED for ordering. -- drop requirement that removed packages immediately follow added. -- hybrid chainsaw/presentation ordering algorithm. -- convert file md5sum's to binary on the fly, reducing memory footprint. -- header handling moved to librpmdb to avoid linkage loops. -- fix a couple dinky memory leaks. -- build with an internal zlib for now. -- protect brp-compress against /bin/ls output ambiguity (#56656,#56336). -- 3 madvise calls and a 16Mb mmapped buffer == ~5% install speedup. Wow. -- use db-4.0.14 final internally. -- 1st crack at making zlib rsync friendly. -- lclint-3.0.0.19 fiddles. -- solaris: translate i86pc to i386 (#57182). -- fix: %%GNUconfigure breaks with single quotes (#57264). -- simple automake wrapper for zlib. -- add buildarch lines for hppa (#57728). -- sparc: make dbenv per-rpmdb, not per-dbi. -- handle lazy db open's in chroot with absolute path, not prefix strip. -- Depends should use CDB if configured. -- autodetect python 1.5/2.2. -- make rpm-perl package self-hosting (#57748). -- permit gpg/pgp/pgp5 execs to be reconfigured. -- fix: signing multiple times dinna work, discard immutable region. -- remove poptmodule.so for separate packaging. -- permit subset installs for %%lang colored hardlink file sets. -- missing key(s) on keyring when verifying a signature is now an error. -- remove dependency whiteout. -- splint fiddles. -- ppc64 arch added (#58634,#58636). -- turn on auto-generated perl requirements (#58519, #58536, #58537). -- fix: %%exclude functional (again). -- trap SIGILL for ppc64 inline asm voodoo fix from cross-dressed ppc32. -- rpm-perl: force numeric comparison on rpm version (#58882). -- fix: fancy hash fiddles if not a tty. -- fix: handle /.../ correctly in rpmCleanPath(). -- legacy: configurable whiteout for known Red Hat dependency loops. -- perl.req: don't mis-generate dependencies like perl(::path/to/foo.pl). -- permit args to be hidden within %%__find_{requires,provides}. -- a couple more perl.{prov,req} fiddles. -- macro for %%files, always include %%defattr(), redhat config only. -- fix: drop header region when writing repackaged legacy header. -- bail on %%files macro. -- transaction rollbacks are functional. -- generate index for pkgid (aka Sigmd5) tag, query/verify by pkgid. -- generate index for hdrid (aka Sha1header) tag, query/verify by hdrid. -- generate index for fileid (aka Filemd5s) tag, query/verify by fileid. -- query/verify by install transaction id. -- rpm-4.0.4 release candidate. -- add cpanflute2, another perl.req fiddle. -- make peace with gcc-3.1, remove compiler cruft. -- make peace with automake et al in 8.0, ugh. -- add payload uncompressed size to signature to avoid rewriting header. -- drill header sha1 into signature parallel to header+payload md5. -- mandatory "most effective" signature check on query/verify/install. -- don't bother adding empty filemd's to index. -- add Pubkey index, using signer id as binary key. -- display pubkeys in hex when debugging db access. -- retrieve pubkey(s) from rpmdb, not from detached signature file. -- reapply Berkeley DB patch #4491. -- add header DSA signature. -- add header RSA signature (untested, disabled for now). -- don't bother with signing check if 16 bits of hash don't match. -- only V3 signatures for now. -- wire --nodigest/--nosignature options to checksig/query/verify modes. diff --git a/rpm.spec.in b/rpm.spec.in index a876c76ff..6e44398f7 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -15,12 +15,12 @@ %define __prefix /usr %{expand: %%define __share %(if [ -d %{__prefix}/share/man ]; then echo /share ; else echo %%{nil} ; fi)} -Summary: The Red Hat package management system. +Summary: The RPM package management system. Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.02 +Release: 0.04 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -57,18 +57,18 @@ BuildRoot: %{_tmppath}/%{name}-root %description The RPM Package Manager (RPM) is a powerful command line driven package management system capable of installing, uninstalling, -verifying, querying, and updating software packages. Each software +verifying, querying, and updating software packages. Each software package consists of an archive of files along with information about the package like its version, a description, etc. %package devel -Summary: Development files for applications which will manipulate RPM packages. +Summary: Development files for manipulating RPM packages. Group: Development/Libraries Requires: rpm = %{rpm_version}, popt = 1.7 %description devel -This package contains the RPM C library and header files. These -development files will simplify the process of writing programs which +This package contains the RPM C library and header files. These +development files will simplify the process of writing programs that manipulate RPM packages and databases. These files are intended to simplify the process of creating graphical package managers or any other tools that need an intimate knowledge of RPM packages in order @@ -83,8 +83,8 @@ Group: Development/Tools Requires: rpm = %{rpm_version} %description build -This package contains scripts and executable programs that are used to -build packages using RPM. +The rpm-build package contains the scripts and executable programs +that are used to build packages using the RPM Package Manager. %if %{with_python_subpackage} %package python @@ -95,9 +95,9 @@ Requires: python >= %{with_python_version} Requires: popt = 1.7 %description python -The rpm-python package contains a module which permits applications +The rpm-python package contains a module that permits applications written in the Python programming language to use the interface -supplied by RPM (RPM Package Manager) libraries. +supplied by RPM Package Manager libraries. This package should be installed if you want to develop Python programs that will manipulate RPM packages and databases. @@ -129,7 +129,7 @@ implementations. At this time, the interface only provides access to the database of installed packages, and header data retrieval for RPM and SRPM files -is not yet installed. Error management and the export of most defined +is not yet installed. Error management and the export of most defined constants, through RPM::Error and RPM::Constants, respectively, are also available. @@ -141,25 +141,22 @@ Group: Development/Libraries Version: 1.7 %description -n popt -Popt is a C library for parsing command line parameters. Popt was +Popt is a C library for parsing command line parameters. Popt was heavily influenced by the getopt() and getopt_long() functions, but it -improves on them by allowing more powerful argument expansion. Popt +improves on them by allowing more powerful argument expansion. Popt can parse arbitrary argv[] style arrays and automatically set -variables based on command line arguments. Popt allows command line +variables based on command line arguments. Popt allows command line arguments to be aliased via configuration files and includes utility functions for parsing arbitrary strings into argv[] arrays using shell-like rules. -Install popt if you're a C programmer and you'd like to use its -capabilities. - %prep %setup -q %build %ifos linux -CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} --sysconfdir=/etc --localstatedir=/var --infodir='${prefix}%{__share}/info' --mandir='${prefix}%{__share}/man' +CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} --sysconfdir=/etc --localstatedir=/var --infodir='${prefix}%{__share}/info' --mandir='${prefix}%{__share}/man' --with-python=%{with_python_version} --without-javaglue %else CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{__prefix} %endif @@ -524,6 +521,9 @@ fi %{__prefix}/include/popt.h %changelog +* Wed Apr 10 2002 Jeff Johnsion <jbj@redhat.com> 4.1-0.04 +- beecrypt: add types.h, eliminate need for config.gnu.h. + * Sat Mar 16 2002 Jeff Johnson <jbj@redhat.com> - *really* dump signature header immutable region. @@ -533,140 +533,3 @@ fi - drill ts/fi through verify mode, add methods to keep fi abstract. - use mmap when calculating file digests on verify, ~20% faster. - permit --dbpath and --root with signature (i.e. --import) modes. - -* Mon Sep 24 2001 Jeff Johnson <jbj@redhat.com> -- Start rpm-4.1. -- loosely wire beecrypt library into rpm. -- drop rpmio/base64.[ch] in favor of beecrypt versions. -- drop lib/md5*.[ch] files in favor of beecrypt. -- legacy: drop brokenMD5 support (rpm-2.3.3 to rpm-2.3.8 on sparc). -- eliminate DYING code. -- bind beecrypt md5/sha1 underneath rpmio. -- create RFC-2440 OpenPGP API in rpmio. -- proof-of-concept GPG/DSA verification for legacy signatures. -- upgrade to beecrypt-2.2.0pre. -- proof-of-concept PGP/RSA verification for legacy signatures. -- ratchet up to lclint "strict" level. -- upgrade to db-4.0.7. -- use only header methods, routines are now static. -- beecrypt is at least as good as pgp/gpg on verify, pulling the plug. -- add :base64 and :armor format extensions, dump binary tags in hex. -- proof-of-concept pubkey retrieval from RPM-{PGP,GPG}-KEY. -- stupid macros to configure public key file paths. -- all symbols but hdrVec are now forward references in linkage. -- generate an rpm header on the fly for imported pubkeys. -- wire transactions through rpmcli signature modes. -- wire transactions through rpmcli query/verify modes. -- wire transactions through rpmcli install/erase modes. -- legacy signatures always checked where possible on package read. -- wire transactions through rpmcli build modes. -- lazy rpmdb open/close through transaction methods (mostly anyways). -- no-brainer refcounts for rpmdb object. -- check added header against transaction set, replace if newer. -- transaction sets created in cli main. -- no-brainer refcounts for ts object. -- memory indices for dependency check are typedef'd and abstract'd. -- no-brainer refcounts for fi object, debug the mess. -- dump the header early in transaction, recreate fi before installing. -- start hiding availablePackage data/methods in rpmal.c/rpmal.h. -- add some dinky availablePackage methods. -- transaction.c: cleanly uncouple availablePackage from TFI_t. -- add header refcount annotations throughout. -- depends.c: availablePackage is (almost) opaque. -- invent some toy transactionElement iterators. -- create rpmDepSet constructors/destructors. -- create toy rpmDepSet iterators. -- rpmRangesOverlap renamed to dsCompare, add dsNotify method as well. -- depends.c: rpmDepSet is (almost) opaque, move to rpmds.[ch]. -- rpmds: create dsProblem(), dsiGetDNEVR() retrieved DNEVR, not N. -- depends.h: hack around teIterator() et al from include for now. -- rpmds: move trigger dependencies into a rpmDepSet as well. -- rpmal: availablePackage is totally opaque, alKey with index replaces. -- fix: harmless typo in db3 chroot hack. -- fix: big-endian's with sizeof(time_t) != sizeof(int_32) mtime broken. -- fix: add Korean message catalogs (#54473). -- add RPHNPLATFORM and PLATFORM tags. -- linear search on added package provides is dumb. -- discarding entire signature header when using --addsign is dumb. -- rip out rpmDependencyConflict, replace with rpmProblem instead. -- no-brainer refcounts for rpmProblemSet object. -- header tag sets are per-transactionElement, not per-availablePackage. -- no-brainer refcounts for rpmDepSet and rpmFNSet objects. -- strip header tags for erased as well as installed transactionElements. -- common structure elements for unification of TFI_t and rpmFNSet. -- factor per-transactionElement data out of TFI_t through pointer ref. -- unify rpmFNSet into TFI_t. -- eliminate header reference in rpmtransAddPackage, use TFI_t data. -- commit to using rpmDepSet and TFI_t, not header. -- lclint rpmio fiddles. -- split file info tag sets into rpmfi.c. -- create toy TFI_t iterators. -- tweak overlapped file fingerprint retrieval for speed. -- transaction.c: use wrappers/iterators to access TFI_t. -- annotations to make a transactionElement opaque. -- use array of pointers rather than contiguous array for ts->order. -- methods to complete making transactionElement opaque. -- use TR_REMOVED relations as well as TR_ADDED for ordering. -- drop requirement that removed packages immediately follow added. -- hybrid chainsaw/presentation ordering algorithm. -- convert file md5sum's to binary on the fly, reducing memory footprint. -- header handling moved to librpmdb to avoid linkage loops. -- fix a couple dinky memory leaks. -- build with an internal zlib for now. -- protect brp-compress against /bin/ls output ambiguity (#56656,#56336). -- 3 madvise calls and a 16Mb mmapped buffer == ~5% install speedup. Wow. -- use db-4.0.14 final internally. -- 1st crack at making zlib rsync friendly. -- lclint-3.0.0.19 fiddles. -- solaris: translate i86pc to i386 (#57182). -- fix: %%GNUconfigure breaks with single quotes (#57264). -- simple automake wrapper for zlib. -- add buildarch lines for hppa (#57728). -- sparc: make dbenv per-rpmdb, not per-dbi. -- handle lazy db open's in chroot with absolute path, not prefix strip. -- Depends should use CDB if configured. -- autodetect python 1.5/2.2. -- make rpm-perl package self-hosting (#57748). -- permit gpg/pgp/pgp5 execs to be reconfigured. -- fix: signing multiple times dinna work, discard immutable region. -- remove poptmodule.so for separate packaging. -- permit subset installs for %%lang colored hardlink file sets. -- missing key(s) on keyring when verifying a signature is now an error. -- remove dependency whiteout. -- splint fiddles. -- ppc64 arch added (#58634,#58636). -- turn on auto-generated perl requirements (#58519, #58536, #58537). -- fix: %%exclude functional (again). -- trap SIGILL for ppc64 inline asm voodoo fix from cross-dressed ppc32. -- rpm-perl: force numeric comparison on rpm version (#58882). -- fix: fancy hash fiddles if not a tty. -- fix: handle /.../ correctly in rpmCleanPath(). -- legacy: configurable whiteout for known Red Hat dependency loops. -- perl.req: don't mis-generate dependencies like perl(::path/to/foo.pl). -- permit args to be hidden within %%__find_{requires,provides}. -- a couple more perl.{prov,req} fiddles. -- macro for %%files, always include %%defattr(), redhat config only. -- fix: drop header region when writing repackaged legacy header. -- bail on %%files macro. -- transaction rollbacks are functional. -- generate index for pkgid (aka Sigmd5) tag, query/verify by pkgid. -- generate index for hdrid (aka Sha1header) tag, query/verify by hdrid. -- generate index for fileid (aka Filemd5s) tag, query/verify by fileid. -- query/verify by install transaction id. -- rpm-4.0.4 release candidate. -- add cpanflute2, another perl.req fiddle. -- make peace with gcc-3.1, remove compiler cruft. -- make peace with automake et al in 8.0, ugh. -- add payload uncompressed size to signature to avoid rewriting header. -- drill header sha1 into signature parallel to header+payload md5. -- mandatory "most effective" signature check on query/verify/install. -- don't bother adding empty filemd's to index. -- add Pubkey index, using signer id as binary key. -- display pubkeys in hex when debugging db access. -- retrieve pubkey(s) from rpmdb, not from detached signature file. -- reapply Berkeley DB patch #4491. -- add header DSA signature. -- add header RSA signature (untested, disabled for now). -- don't bother with signing check if 16 bits of hash don't match. -- only V3 signatures for now. -- wire --nodigest/--nosignature options to checksig/query/verify modes. diff --git a/rpmio/digest.c b/rpmio/digest.c index af4f8c02d..53294eaac 100644 --- a/rpmio/digest.c +++ b/rpmio/digest.c @@ -3,11 +3,11 @@ */ #include "system.h" -#include "rpmio_internal.h" #include "beecrypt.h" #include "md5.h" #include "endianness.h" #include "fips180.h" +#include "rpmio_internal.h" #include "debug.h" #ifdef SHA_DEBUG diff --git a/rpmio/rpmio_internal.h b/rpmio/rpmio_internal.h index 78838be14..5681ed450 100644 --- a/rpmio/rpmio_internal.h +++ b/rpmio/rpmio_internal.h @@ -472,7 +472,7 @@ void fdInitDigest(FD_t fd, pgpHashAlgo hashalgo, int flags) * Update digest(s) attached to fd. */ /*@unused@*/ static inline -void fdUpdateDigests(FD_t fd, const byte * buf, ssize_t buflen) +void fdUpdateDigests(FD_t fd, const unsigned char * buf, ssize_t buflen) /*@modifies fd @*/ { int i; @@ -536,7 +536,7 @@ int fdFileno(/*@null@*/ void * cookie) /** */ int rpmioSlurp(const char * fn, - /*@out@*/ const byte ** bp, /*@out@*/ ssize_t * blenp) + /*@out@*/ const unsigned char ** bp, /*@out@*/ ssize_t * blenp) /*@globals fileSystem @*/ /*@modifies *bp, *blenp, fileSystem @*/; diff --git a/rpmio/rpmpgp.h b/rpmio/rpmpgp.h index a121aca10..9c63c96d0 100644 --- a/rpmio/rpmpgp.h +++ b/rpmio/rpmpgp.h @@ -10,6 +10,7 @@ * Copyright (C) The Internet Society (1998). All Rights Reserved. */ +#include "types.h" #include "base64.h" #include "dsa.h" #include "endianness.h" |