summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES1
-rw-r--r--lib/cpio.h48
-rw-r--r--misc/Makefile.am4
-rw-r--r--misc/fstrcmp.h25
-rw-r--r--misc/libgettext.h182
-rw-r--r--misc/message.h129
-rw-r--r--misc/po-lex.h83
-rw-r--r--misc/str-list.h50
-rw-r--r--po/cs.po1129
-rw-r--r--po/da.po1090
-rw-r--r--po/de.po1126
-rw-r--r--po/es.po1072
-rw-r--r--po/fi.po1120
-rw-r--r--po/fr.po1084
-rw-r--r--po/gl.po1072
-rw-r--r--po/hu.po1072
-rw-r--r--po/id.po1072
-rw-r--r--po/is.po1072
-rw-r--r--po/it.po1072
-rw-r--r--po/ja.po1131
-rw-r--r--po/ko.po1072
-rw-r--r--po/no.po1081
-rw-r--r--po/pl.po1125
-rw-r--r--po/pt.po1072
-rw-r--r--po/pt_BR.po1096
-rw-r--r--po/ro.po1072
-rw-r--r--po/ru.po1126
-rw-r--r--po/sk.po1128
-rw-r--r--po/sl.po1128
-rw-r--r--po/sr.po1120
-rw-r--r--po/sv.po1129
-rw-r--r--po/tr.po1120
-rw-r--r--po/uk.po1072
-rw-r--r--po/wa.po1072
-rw-r--r--po/zh.po1072
-rw-r--r--po/zh_CN.GB2312.po1072
-rw-r--r--popt/po/cs.po6
-rw-r--r--popt/po/da.po6
-rw-r--r--popt/po/de.po6
-rw-r--r--popt/po/es.po6
-rw-r--r--popt/po/fi.po6
-rw-r--r--popt/po/fr.po6
-rw-r--r--popt/po/gl.po6
-rw-r--r--popt/po/hu.po6
-rw-r--r--popt/po/id.po6
-rw-r--r--popt/po/is.po6
-rw-r--r--popt/po/it.po6
-rw-r--r--popt/po/ja.po6
-rw-r--r--popt/po/ko.po6
-rw-r--r--popt/po/no.po6
-rw-r--r--popt/po/pl.po6
-rw-r--r--popt/po/pt.po6
-rw-r--r--popt/po/pt_BR.po6
-rw-r--r--popt/po/ro.po6
-rw-r--r--popt/po/ru.po6
-rw-r--r--popt/po/sk.po6
-rw-r--r--popt/po/sl.po6
-rw-r--r--popt/po/sr.po6
-rw-r--r--popt/po/sv.po6
-rw-r--r--popt/po/tr.po6
-rw-r--r--popt/po/uk.po6
-rw-r--r--popt/po/wa.po6
-rw-r--r--popt/po/zh.po6
-rw-r--r--popt/po/zh_CN.GB2312.po6
-rw-r--r--rpm.spec3
-rw-r--r--tools/Makefile.am11
-rw-r--r--tools/fstrcmp.c636
-rw-r--r--tools/message.c1409
-rw-r--r--tools/rpmgettext.c1102
-rw-r--r--tools/str-list.c146
70 files changed, 14450 insertions, 20216 deletions
diff --git a/CHANGES b/CHANGES
index 0871ffd33..24828020d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,6 @@
4.0 -> 4.1
- add doxygen and lclint annotations most everywhere.
+ - rip out rpm{get,put}text, use getpo.sh and specspo instead.
- rip out rpmrc configuration.
- consistent return for all signature verification.
- use enum for signature header tags.
diff --git a/lib/cpio.h b/lib/cpio.h
index 5e6f7b3d4..4ee42163f 100644
--- a/lib/cpio.h
+++ b/lib/cpio.h
@@ -23,28 +23,32 @@
*/
#define CPIOERR_CHECK_ERRNO 0x00008000
-#define CPIOERR_BAD_MAGIC (2 )
-#define CPIOERR_BAD_HEADER (3 )
-#define CPIOERR_OPEN_FAILED (4 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_CHMOD_FAILED (5 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_CHOWN_FAILED (6 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_WRITE_FAILED (7 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_UTIME_FAILED (8 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_UNLINK_FAILED (9 | CPIOERR_CHECK_ERRNO)
-
-#define CPIOERR_SYMLINK_FAILED (11 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_STAT_FAILED (12 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_MKDIR_FAILED (13 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_MKNOD_FAILED (14 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_MKFIFO_FAILED (15 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_LINK_FAILED (16 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_READLINK_FAILED (17 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_READ_FAILED (18 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_COPY_FAILED (19 | CPIOERR_CHECK_ERRNO)
-#define CPIOERR_HDR_SIZE (20 )
-#define CPIOERR_UNKNOWN_FILETYPE (21 )
-#define CPIOERR_MISSING_HARDLINK (22 )
-#define CPIOERR_INTERNAL (23 )
+/** \ingroup payload
+ */
+enum cpioErrorReturns {
+ CPIOERR_BAD_MAGIC = (2 ),
+ CPIOERR_BAD_HEADER = (3 ),
+ CPIOERR_OPEN_FAILED = (4 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_CHMOD_FAILED = (5 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_CHOWN_FAILED = (6 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_WRITE_FAILED = (7 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_UTIME_FAILED = (8 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_UNLINK_FAILED = (9 | CPIOERR_CHECK_ERRNO),
+
+ CPIOERR_SYMLINK_FAILED = (11 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_STAT_FAILED = (12 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_MKDIR_FAILED = (13 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_MKNOD_FAILED = (14 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_MKFIFO_FAILED = (15 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_LINK_FAILED = (16 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_READLINK_FAILED = (17 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_READ_FAILED = (18 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_COPY_FAILED = (19 | CPIOERR_CHECK_ERRNO),
+ CPIOERR_HDR_SIZE = (20 ),
+ CPIOERR_UNKNOWN_FILETYPE = (21 ),
+ CPIOERR_MISSING_HARDLINK = (22 ),
+ CPIOERR_INTERNAL = (23 )
+};
#define CPIO_MAP_PATH (1 << 0)
#define CPIO_MAP_MODE (1 << 1)
diff --git a/misc/Makefile.am b/misc/Makefile.am
index 462c41439..5a67c24f7 100644
--- a/misc/Makefile.am
+++ b/misc/Makefile.am
@@ -15,9 +15,7 @@ EXTRA_DIST = \
strtoul.c
noinst_HEADERS = \
- err.h error.h fnmatch.h fstrcmp.h \
- glob.h libgettext.h message.h po-lex.h \
- str-list.h fstrcmp.h
+ err.h error.h fnmatch.h glob.h
noinst_LIBRARIES = libmisc.a
diff --git a/misc/fstrcmp.h b/misc/fstrcmp.h
deleted file mode 100644
index 04047171f..000000000
--- a/misc/fstrcmp.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* GNU gettext - internationalization aids
- Copyright (C) 1995 Free Software Foundation, Inc.
-
- This file was written by Peter Miller <pmiller@agso.gov.au>
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifndef _FSTRCMP_H
-#define _FSTRCMP_H
-
-double fstrcmp PARAMS ((const char *__s1, const char *__s2));
-
-#endif
diff --git a/misc/libgettext.h b/misc/libgettext.h
deleted file mode 100644
index 3a92960ae..000000000
--- a/misc/libgettext.h
+++ /dev/null
@@ -1,182 +0,0 @@
-/* Message catalogs for internationalization.
- Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-/* Because on some systems (e.g. Solaris) we sometimes have to include
- the systems libintl.h as well as this file we have more complex
- include protection above. But the systems header might perhaps also
- define _LIBINTL_H and therefore we have to protect the definition here. */
-
-#if !defined _LIBINTL_H || !defined _LIBGETTEXT_H
-#ifndef _LIBINTL_H
-# define _LIBINTL_H 1
-#endif
-#define _LIBGETTEXT_H 1
-
-/* We define an additional symbol to signal that we use the GNU
- implementation of gettext. */
-#define __USE_GNU_GETTEXT 1
-
-#include <sys/types.h>
-
-#if HAVE_LOCALE_H
-# include <locale.h>
-#endif
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/* @@ end of prolog @@ */
-
-#ifndef PARAMS
-# if __STDC__ || defined __cplusplus
-# define PARAMS(args) args
-# else
-# define PARAMS(args) ()
-# endif
-#endif
-
-#ifndef NULL
-# if !defined __cplusplus || defined __GNUC__
-# define NULL ((void *) 0)
-# else
-# define NULL (0)
-# endif
-#endif
-
-#if !HAVE_LC_MESSAGES
-/* This value determines the behaviour of the gettext() and dgettext()
- function. But some system does not have this defined. Define it
- to a default value. */
-# define LC_MESSAGES (-1)
-#endif
-
-
-/* Declarations for gettext-using-catgets interface. Derived from
- Jim Meyering's libintl.h. */
-struct _msg_ent
-{
- const char *_msg;
- int _msg_number;
-};
-
-
-#if HAVE_CATGETS
-/* These two variables are defined in the automatically by po-to-tbl.sed
- generated file `cat-id-tbl.c'. */
-extern const struct _msg_ent _msg_tbl[];
-extern int _msg_tbl_length;
-#endif
-
-
-/* For automatical extraction of messages sometimes no real
- translation is needed. Instead the string itself is the result. */
-#define gettext_noop(Str) (Str)
-
-/* Look up MSGID in the current default message catalog for the current
- LC_MESSAGES locale. If not found, returns MSGID itself (the default
- text). */
-extern char *gettext PARAMS ((const char *__msgid));
-extern char *gettext__ PARAMS ((const char *__msgid));
-
-/* Look up MSGID in the DOMAINNAME message catalog for the current
- LC_MESSAGES locale. */
-extern char *dgettext PARAMS ((const char *__domainname, const char *__msgid));
-extern char *dgettext__ PARAMS ((const char *__domainname,
- const char *__msgid));
-
-/* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY
- locale. */
-extern char *dcgettext PARAMS ((const char *__domainname, const char *__msgid,
- int __category));
-extern char *dcgettext__ PARAMS ((const char *__domainname,
- const char *__msgid, int __category));
-
-
-/* Set the current default message catalog to DOMAINNAME.
- If DOMAINNAME is null, return the current default.
- If DOMAINNAME is "", reset to the default of "messages". */
-extern char *textdomain PARAMS ((const char *__domainname));
-extern char *textdomain__ PARAMS ((const char *__domainname));
-
-/* Specify that the DOMAINNAME message catalog will be found
- in DIRNAME rather than in the system locale data base. */
-extern char *bindtextdomain PARAMS ((const char *__domainname,
- const char *__dirname));
-extern char *bindtextdomain__ PARAMS ((const char *__domainname,
- const char *__dirname));
-
-#if ENABLE_NLS
-
-/* Solaris 2.3 has the gettext function but dcgettext is missing.
- So we omit this optimization for Solaris 2.3. BTW, Solaris 2.4
- has dcgettext. */
-# if !HAVE_CATGETS && (!HAVE_GETTEXT || HAVE_DCGETTEXT)
-
-# define gettext(Msgid) \
- dgettext (NULL, Msgid)
-
-# define dgettext(Domainname, Msgid) \
- dcgettext (Domainname, Msgid, LC_MESSAGES)
-
-# if defined __GNUC__ && __GNUC__ == 2 && __GNUC_MINOR__ >= 7
-/* This global variable is defined in loadmsgcat.c. We need a sign,
- whether a new catalog was loaded, which can be associated with all
- translations. */
-extern int _nl_msg_cat_cntr;
-
-# define dcgettext(Domainname, Msgid, Category) \
- (__extension__ \
- ({ \
- char *__result; \
- if (__builtin_constant_p (Msgid)) \
- { \
- static char *__translation__; \
- static int __catalog_counter__; \
- if (! __translation__ || __catalog_counter__ != _nl_msg_cat_cntr) \
- { \
- __translation__ = \
- dcgettext__ (Domainname, Msgid, Category); \
- __catalog_counter__ = _nl_msg_cat_cntr; \
- } \
- __result = __translation__; \
- } \
- else \
- __result = dcgettext__ (Domainname, Msgid, Category); \
- __result; \
- }))
-# endif
-# endif
-
-#else
-
-# define gettext(Msgid) (Msgid)
-# define dgettext(Domainname, Msgid) (Msgid)
-# define dcgettext(Domainname, Msgid, Category) (Msgid)
-# define textdomain(Domainname) ((char *) Domainname)
-# define bindtextdomain(Domainname, Dirname) ((char *) Dirname)
-
-#endif
-
-/* @@ begin of epilog @@ */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
diff --git a/misc/message.h b/misc/message.h
deleted file mode 100644
index 149b8b388..000000000
--- a/misc/message.h
+++ /dev/null
@@ -1,129 +0,0 @@
-/* GNU gettext - internationalization aids
- Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
-
- This file was written by Peter Miller <millerp@canb.auug.org.au>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free SoftwareFoundation,
- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifndef _MESSAGE_H
-#define _MESSAGE_H
-
-#include "po-lex.h"
-#include "str-list.h"
-
-/* According to Sun's Uniforum proposal the default message domain is
- named `messages'. */
-#define MESSAGE_DOMAIN_DEFAULT "messages"
-
-
-/* Is current msgid a format string? */
-enum is_c_format
-{
- undecided,
- yes,
- no,
- possible,
- impossible
-};
-
-typedef struct message_variant_ty message_variant_ty;
-struct message_variant_ty
-{
- const char *domain;
- lex_pos_ty pos;
- const char *msgstr;
-};
-
-typedef struct message_ty message_ty;
-struct message_ty
-{
- /* Plain comments (#) appearing before the message. */
- string_list_ty *comment;
-
- /* Extracted comments (#.) appearing before the message. */
- string_list_ty *comment_dot;
-
- /* File position comments (#:) appearing before the message, one for
- each unique file position instance, sorted by file name and then
- by line. */
- size_t filepos_count;
- lex_pos_ty *filepos;
-
- /* Informations from special comments (e.g. generated by msgmerge). */
- int is_fuzzy;
- enum is_c_format is_c_format;
-
- /* Do we want the string to be wrapped in the emitted PO file? */
- enum is_c_format do_wrap;
-
- /* The msgid string. */
- const char *msgid;
-
- /* The msgstr strings, one for each observed domain in the file. */
- size_t variant_count;
- message_variant_ty *variant;
-
- /* Used for checking that messages have been used, in the msgcmp and
- msgmerge programs. */
- int used;
-
- /* If set the message is obsolete and while writing out it should be
- commented out. */
- int obsolete;
-};
-
-message_ty *message_alloc PARAMS ((char *msgid));
-void message_free PARAMS ((message_ty *));
-
-message_variant_ty *message_variant_search PARAMS ((message_ty *mp,
- const char *domain));
-void message_variant_append PARAMS ((message_ty *mp, const char *domain,
- const char *msgstr,
- const lex_pos_ty *pp));
-void message_comment_append PARAMS ((message_ty *, const char *));
-void message_comment_dot_append PARAMS ((message_ty *, const char *));
-message_ty *message_copy PARAMS ((message_ty *));
-message_ty *message_merge PARAMS ((message_ty *def, message_ty *ref));
-void message_comment_filepos PARAMS ((message_ty *, const char *, size_t));
-void message_print_style_indent PARAMS ((void));
-void message_print_style_uniforum PARAMS ((void));
-void message_print_style_escape PARAMS ((int));
-
-
-typedef struct message_list_ty message_list_ty;
-struct message_list_ty
-{
- message_ty **item;
- size_t nitems;
- size_t nitems_max;
-};
-
-message_list_ty *message_list_alloc PARAMS ((void));
-void message_list_free PARAMS ((message_list_ty *));
-void message_list_append PARAMS ((message_list_ty *, message_ty *));
-void message_list_delete_nth PARAMS ((message_list_ty *, size_t));
-message_ty *message_list_search PARAMS ((message_list_ty *, const char *));
-message_ty *message_list_search_fuzzy PARAMS ((message_list_ty *,
- const char *));
-void message_list_print PARAMS ((message_list_ty *, const char *, int, int));
-void message_list_sort_by_msgid PARAMS ((message_list_ty *));
-void message_list_sort_by_filepos PARAMS ((message_list_ty *));
-
-enum is_c_format parse_c_format_description_string PARAMS ((const char *s));
-enum is_c_format parse_c_width_description_string PARAMS ((const char *s));
-int possible_c_format_p PARAMS ((enum is_c_format));
-void message_page_width_set PARAMS ((size_t width));
-
-#endif /* message.h */
diff --git a/misc/po-lex.h b/misc/po-lex.h
deleted file mode 100644
index fd95d9749..000000000
--- a/misc/po-lex.h
+++ /dev/null
@@ -1,83 +0,0 @@
-/* GNU gettext - internationalization aids
- Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
-
- This file was written by Peter Miller <millerp@canb.auug.org.au>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software Foundation,
- Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifndef _PO_LEX_H
-#define _PO_LEX_H
-
-#include <sys/types.h>
-#include "error.h"
-
-typedef struct lex_pos_ty lex_pos_ty;
-struct lex_pos_ty
-{
- char *file_name;
- size_t line_number;
-};
-
-
-/* Global variables from po-lex.c. */
-extern lex_pos_ty gram_pos;
-extern size_t gram_max_allowed_errors;
-
-
-void lex_open PARAMS ((const char *__fname));
-void lex_close PARAMS ((void));
-int po_gram_lex PARAMS ((void));
-void po_lex_pass_comments PARAMS ((int __flag));
-void po_lex_pass_obsolete_entries PARAMS ((int __flag));
-
-
-/* GCC is smart enough to allow optimizations like this. */
-#if __STDC__ && defined __GNUC__ && __GNUC__ >= 2
-
-
-/* CAUTION: If you change this macro, you must also make identical
- changes to the function of the same name in src/po-lex.c */
-
-# define po_gram_error(fmt, args...) \
- do { \
- error_at_line (0, 0, gram_pos.file_name, gram_pos.line_number, \
- fmt, ## args); \
- if (*fmt == '.') \
- --error_message_count; \
- else if (error_message_count >= gram_max_allowed_errors) \
- error (1, 0, _("too many errors, aborting")); \
- } while (0)
-
-
-/* CAUTION: If you change this macro, you must also make identical
- changes to the function of the same name in src/po-lex.c */
-
-# define gram_error_at_line(pos, fmt, args...) \
- do { \
- error_at_line (0, 0, (pos)->file_name, (pos)->line_number, \
- fmt, ## args); \
- if (*fmt == '.') \
- --error_message_count; \
- else if (error_message_count >= gram_max_allowed_errors) \
- error (1, 0, _("too many errors, aborting")); \
- } while (0)
-#else
-void po_gram_error PARAMS ((const char *__fmt, ...));
-void gram_error_at_line PARAMS ((const lex_pos_ty *__pos, const char *__fmt,
- ...));
-#endif
-
-
-#endif
diff --git a/misc/str-list.h b/misc/str-list.h
deleted file mode 100644
index 9e2b99817..000000000
--- a/misc/str-list.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/* GNU gettext - internationalization aids
- Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
-
- This file was written by Peter Miller <millerp@canb.auug.org.au>
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifndef SRC_STR_LIST_H
-#define SRC_STR_LIST_H 1
-
-#ifdef STC_HEADERS
-# define __need_size_t
-# define __need_NULL
-# include <stddef.h>
-#else
-# include <sys/types.h>
-# include <stdio.h>
-#endif
-
-/* Type describing list of strings implemented using a dynamic array. */
-typedef struct string_list_ty string_list_ty;
-struct string_list_ty
-{
- const char **item;
- size_t nitems;
- size_t nitems_max;
-};
-
-
-string_list_ty *string_list_alloc PARAMS ((void));
-void string_list_append PARAMS ((string_list_ty *__slp, const char *__s));
-void string_list_append_unique PARAMS ((string_list_ty *__slp,
- const char *__s));
-void string_list_free PARAMS ((string_list_ty *__slp));
-char *string_list_join PARAMS ((const string_list_ty *__slp));
-int string_list_member PARAMS ((const string_list_ty *__slp, const char *__s));
-
-#endif
diff --git a/po/cs.po b/po/cs.po
index 88893af41..8843f64bd 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-08-08 22:37+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "chyba: nemohu otevøít %s/packages.rpm\n"
@@ -23,39 +23,39 @@ msgstr "chybné závislosti pøi sestavování:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Nelze otevøít spec soubor %s: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Nelze otevøít rouru pro tar: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Nelze èíst spec soubor %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Nelze pøejmenovat %s: na %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Soubor %s není obyèejný soubor\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Nezdá se, ¾e by %s byl spec soubor.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Sestavuji cílové platformy: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "Sestavuji pro cíl %s\n"
@@ -714,15 +714,15 @@ msgstr "binární balíèek (pøíprava, kompilace, instalace, zabalení)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src balíèek (pøíprava, kompilace, instalace, zabalení)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "pøeskoèit pøímo na urèenou etapu (pouze pro c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "po dokonèení odstranit sestavovací strom"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr "po dokonèení odstranit zdrojové kódy"
@@ -1290,7 +1290,7 @@ msgstr " --httpport <port> "
msgid " Package specification options:"
msgstr " Volby pro specifikaci balíèku:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr "dotázat/ovìøit v¹echny balíèky"
@@ -1475,603 +1475,603 @@ msgstr "pro sestavení nezadány ¾ádné spec soubory"
msgid "no tar files given for build"
msgstr "pro sestavení nezadány ¾ádné tar soubory"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr "Nelze otevøít doèasný soubor."
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Provádìní(%s): %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Spu¹tìní %s selhalo (%s): %s"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "Návratový kód chyby ze %s: (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr "chyba syntaxe pøi zpracování =="
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr "chyba syntaxe pøi zpracování &&"
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr "chyba syntaxe pøi zpracování ||"
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr "chyba pøi parsování ve výrazu"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "nedoplnìná ("
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr "nedefinovaný identifikátor"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- jen s èísly"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! jen s èísly"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "typy musí souhlasit"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* / nejsou podporovány pro øetìzce"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- není podporováno pro øetìzce"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& a || není podporováno pro øetìzce"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr "chyba syntaxe ve výrazu"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK selhal: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Chybí '(' v %s %s"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Chybí ')' v %s(%s"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "Neplatný %s token: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Neprázdný znak následuje %s(): %s"
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "©patná syntaxe: %s(%s)"
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "©patná práva: %s(%s)"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "©patná práva adresáøe: %s(%s)"
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Neobvyklá délka locale: \"%.*s\" v %%lang(%s)"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Duplicitní locale %.*s v %%lang(%s)"
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "Dosa¾en limit pro %%docdir"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "Jen jeden parametr pro %%docdir"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "Dav soubory na jednom øádku: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Soubor musí zaèínat \"/\": %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Nelze míchat speciální %%doc s ostatnímí formáty: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "Soubor uveden dvakrát: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s"
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Soubor nesouhlasí s prefixem (%s): %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "Soubor nenalezen: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "©patný vlastník/skupina: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Soubor %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Soubor potøebuje úvodní \"/\": %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr "Soubor nenalezen: %s"
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr "Nemohu otevøít %%files soubor %s: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "øádek: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr "©patný soubor: %s: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "©patný vlastník/skupina: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "Nemohu spustit %s: %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "Nemohu provést fork %s: %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s selhalo"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "Nemohu zapsat v¹echna data do %s"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Hledám %s: (pou¾it %s)...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr "Selhalo vyhledání %s:"
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Zpracovávám soubory: %s-%s-%s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: Dosa¾en limit v getUname()\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: Dosa¾en limit v getGname()\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nemohu získat jméno poèítaèe: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "vytváøení archívu selhalo na souboru %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "zápis cpio_copy selhal: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "ètení cpio_copy selhalo: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Nemohu otevøít PreIn soubor: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Nemohu otevøít PreUn soubor: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Nemohu otevøít PostIn soubor: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Nemohu otevøít PostUn soubor: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Nemohu otevøít VerifyScript soubor: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Nemohu otevøít soubor se spu¹tí (trigger): %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otevøení %s: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: ètení %s: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s není RPM balíèek\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: ètení hlavièky z %s\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "©patná CSA data"
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Nemohu otevøít %s: %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "Nemohu zapsat balíèek: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "Generuji podpis: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nemohu otevøít cíl pro podepsání %s: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Nemohu èíst cíl pro podepsání %s: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr "Nemohu zapsat balíèek %s: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapsáno: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nemohu vygenerovat jméno souboru pro balíèek %s: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "øádek: %d: druhý %s"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "Polo¾ky %%changelog musí zaèínat znakem *"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "nekompletní polo¾ka %%changelog"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "¹patný datum v %%changelog: %s"
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog není seøazen sestupnì podle èasu"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "chybìjící jméno v %%changelog"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "¾ádný popis v %%changelog"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "øádek %d: Chyba pøi parsování %%description: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "øádek %d: ¹patná volba %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "øádek %d: Pøíli¹ mnoho jmen: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "øádek %d: Balíèek neexistuje: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "øádek %d: Druhé description"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "øádek %d: Chyba pøi parsování %%files: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "øádek %d: Druhý %%files seznam"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektura je vyøazena: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektura není vyøazena: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je vyøazen: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "OS není vyøazen: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Duplikovaná polo¾ka %s v balíèku: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nemohu otevøít ikonu %s: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nemohu pøeèíst ikonu %s: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámý typ ikony: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "øádek %d: Poèkozená znaèka: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "øádek %d: Prázdná znaèka: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "øádek %d: Nepøípustný znak '-' v %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot nemù¾e být \"/\": %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "øádek %d: Prefixy nesmí konèit znakem \"/\": %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "øádek %d: Docdir musí zaèínat '/': %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "øádek %d: ©patný formát BuildArchitecture: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interní chyba: ©patná znaèka: %d"
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "¹patná specifikace balíèku: %s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "Balíèek ji¾ existuje: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "øádek %d: Neznámá znaèka: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "Spec soubor nemù¾e pou¾ít BuildRoot"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "©patný zdroj: %s: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "Patch èíslo %d neexistuje"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "Zdroj èíslo %d neexistuje"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Nemohu naèíst nosource %s: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "Chyba pøi parsování %%setup: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "øádek %d: ©patný parametr v %%setup %c: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "øádek %d: ©patná volba v %%setup %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "øádek %d: K %%patch -b potøebuji parametr: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "øádek %d: K %%patch -z potøebuji parametr: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "øádek %d: K %%patch -p potøebuji parametr: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "øádek %d: ©patný parametr pro %%patch -p: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "Pøíli¹ mnoho patchù!"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "øádek %d: ©patný parametr pro %%patch: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "øádek %d: druhý %%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
@@ -2079,42 +2079,42 @@ msgstr ""
"øádek %d: Polo¾ky v závislostech musí zaèínat alfanumerickým znakem, '_' "
"nebo '/': %s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "øádek %d: Jméno souboru není dovoleno: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "øádek %d: Jméno s verzí není dovoleno: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr "øádek %d: Vy¾adována verze: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "øádek %d: spou¹tì (triggery) musí mít --: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "øádek %d: Chyba pøi parsování %s: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "øádek %d: jméno skriptu musí zaèínat '/': %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "øádek %d: Druhý %s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "øádek %d: %s"
@@ -2129,103 +2129,103 @@ msgstr "Nemohu otevøít %s: %s\n"
msgid "Unclosed %%if"
msgstr "Neuzavøený %%if"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean vrátil %d"
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: %%else bez poèíteèního if"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: %%endif bez poèáteèního if"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "po¹kozený pøíkaz %%include"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "®ádné architektury pro sestavení"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "Balíèek nemá ¾ádné %%description: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "archive = %s, fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "øádek %d: ©patné èíslo: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "øádek %d: ©patné èíslo %s: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "øádek %d: ©patné èíslo %s: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Nemohu pøejmenovat %s na %s: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "Nemohu provést unlink %s: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr "(chyba: 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "©patné magické èíslo"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "©patná nebo neèitelná hlavièka"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "Velikost hlavièky je pøili¹ velká"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr "Neznámý typ souboru"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr "Chybìjící hardlink"
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr "Interní chyba"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr "selhal - "
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2234,198 +2234,198 @@ msgstr ""
"Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n"
"\tA %s\tB %s\n"
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr "%s: %-45s ANO (pøidány soubory)\n"
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr "%s: %-45s %-3s (ke¹ováno)\n"
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr "%s: %-45s ANO (db soubory)\n"
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr "%s: %-45s ANO (db poskytuje)\n"
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr "%s: %-45s NE\n"
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "balíèek %s koliduje: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "smyèka v øetìzu podmínek: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr "db%d error(%d)"
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr " provádím %s"
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr "zavøen db soubor %s\n"
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr "odstranìn db soubor %s\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr "¹patný db soubor %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "otevírám db soubor %s mode 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "nemohu zamknout databázi %s"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "výhradní"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "sdílený"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr "zavøeno db prostøedí %s/%s(%s)\n"
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr "smazáno db prostøedí %s/%s(%s)\n"
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr "otevøeno db prostøedí %s/%s(%s) %s\n"
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr "zavøen db index %s/%s(%s)\n"
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr "otevøen db index %s/%s(%s) %s mode=0x%x\n"
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr "dbiSetConfig: ignorována neznámá db volba: \"%s\"\n"
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s má neplatnou numerickou hodnotu, pøeskoèeno\n"
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s má moc velkou nebo moc malou long hodnotu, pøeskoèeno\n"
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s má pøíli¹ velkou nebo moc malou celoèíselnou hodnotu, pøeskoèeno\n"
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr "uzavøeno DB prostøedí %s/%s\n"
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr "odstranìno db prostøedí %s/%s\n"
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "otevírám db environment %s/%s %s\n"
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr "uzavøen db index %s/%s\n"
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otevírám db index %s/%s %s mode=0x%x\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nemohu zamknout databázi zámkem %s v %s/%s\n"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr "uzamèen db index %s/%s\n"
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2439,669 +2439,670 @@ msgstr ""
"Pokud tento pøíkaz nevyøe¹í problém, naleznete více informací\n"
"na http://www.rpm.org nebo v diskuzním listu rpm-list@redhat.com.\n"
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(není èíslo)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() nevrátil velikost polo¾ky fugger: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "nemohu zjistit stav %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr "získávám seznam pøipojených systémù souborù\n"
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "nemohu otevøít %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "soubor %s je na neznámém zaøízení"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "Poèet RPM_STRING_TYPE pro grabData() musí být 1.\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datový typ %d není podporován\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Chybný poèet pro headerAddEntry(): %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "chybí { po %"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "po %{ chybí }"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "prázdný formát znaèky"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "prázdné jméno znaèky"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "neznámá znaèka"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "na konci pole oèekáváno ]"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "neoèekávaná ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "neoèekávaná }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "ve výrazu oèekáván ?"
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "ve výrazu je po ? oèekávána {"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "ve výrazu je oèekávána }"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "v podvýrazu je po ? oèekávána :"
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "ve výrazu je po : oèekávána {"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "na konci výrazu je oèekáváno |"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(neznámý typ)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr " soubor: %s akce: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "skupina %s neexistuje - pou¾ita skupina root"
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "hodnova %%instchangelog v makro souboru má být èíslo, ale není"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozbalování archívu selhalo %s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr " na souboru "
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "instaluji zdrojový balíèek\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr "nemohu vytvoøir adresáø pro zdrojové soubory: %s"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "nemohu zapsat do %s"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "zdrojové soubory v: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr "nemohu vytvoøit adresáø pro spec soubory: %s"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "spec soubor v: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "zdrojový balíèek neobsahuje spec soubor"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "pøejmenovávám %s na %s\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "pøejmenování %s na %s selhalo: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balíèek: %s-%s-%s test souborù = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "ukonèuji instalaci, proto¾e je spu¹tìn --test\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "spou¹tím pøípadný pøedinstalaèní skript\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "varování: %s vytvoøeno jako %s"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "varování: %s ulo¾eno jako %s"
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr "spou¹tím pøípadný postinstalaèní skript\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "chyba pøi vytváøení doèasného souboru %s"
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "práce s balíèky verze 1 není podporována touto verzí RPM"
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "tato verze RPM podporuje práci s balíèky s hlavním (major) èíslem <= 4"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "buildroot ji¾ byl nastaven"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr "provádím %%prep èást podle spec souboru"
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr "provádím %%prep èást podle spec souboru"
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr "provádím %%install èást podle spec souboru"
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr "kontrola èásti %%files ve spec souboru"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr "vytvoøení zdrojového a binárního balíèku podle spec souboru"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr "vytvoøení binárního balíèku podle spec souboru"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr "vytvoøení zdrojového balíèku podle spec souboru"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr "provádím %%prep èást z tar souboru"
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr "provádím %%build èást z tar souboru"
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr "provádím %%install èást z tar souboru"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr "kontrola èásti %%files z tar souboru"
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr "vytvoøení zdrojového a binárního balíèku z tar souboru"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr "vytvoøení binárního balíèku z tar souboru"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr "vytvoøení zdrojového balíèku z tar souboru"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr "vytvoøení binárního balíèku ze zdrojového"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr "provádím %%install èást ze zdrojového balíèku"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr "build root pøedefinován"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr "nespou¹tìt ¾ádné etapy vytváøení balíèku"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "ignorovat I18N zprávy ve spec souboru"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr "po dokonèení odstranit spec soubor"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "cílová platforma pøedefinována"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "vyhledat I18N øetìzce katalogu spec souboru"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr "dotaz/ovìøení balíèku vlastnícího <soubor>"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr "dotaz/ovìøení balíèkù ve skupinì"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr "dotaz/ovìøení souboru s balíèkem"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr "re¾im dotazù"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr "zobrazit známé znaèky pro dotazy"
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr "dotaz na spec soubor"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr "dotazy na balíèky aktivované balíèkem"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr "re¾im kontroly"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr "re¾im kontroly (zastaralý)"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr "dotázat balíèky vy¾adující schopnost"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr "dotázat balíèky poskytující schopnost"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr "vypsat v¹echny konfiguraèní soubory"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr "vypsat v¹echny soubory s dokumentací"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr "zobrazit základní informace o souborech"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr "vypsat soubory v balíèku"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "pou¾ij následující formát dotazù"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr "nahradit i18n sekce do spec souboru"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "zobrazit stav vypsaných souborù"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr "zobrazit roz¹íøený výpis souborù"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je nutné pro %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " koliduje s %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "balíèek %s-%s-%s je pro jinou architekturu"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "balíèek %s-%s-%s je pro jiný operaèní systém"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "balíèek %s-%s-%s je ji¾ nainstalován"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "cesta %s není pøemístitelná pro balíèek %s-%s-%s"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr "soubor %s zpùsobuje konflikt mezi instalovaným %s-%s-%s a %s-%s-%s"
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr "soubor %s z instalace %s-%s-%s koliduje se souborem z balíèku %s-%s-%s"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "balíèek %s-%s-%s (který je novìj¹í, ne¾ %s-%s-%s) je ji¾ nainstalován"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "instalace balíèku %s-%s-%s potøebuje %ld%cb na systému souborù %s"
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "v balíèku %s-%s-%s pøedtransakèní syscall(s): %s selhalo: %s"
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s-%s-%s"
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "chyba ve formátu: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(neobsahuje ¾ádné soubory)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "normální "
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "nahrazen "
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "neinstalován "
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "sdílen v síti "
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámý %3d) "
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(chybí stav) "
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "balíèek nemá vlastníka souboru ani seznamy id"
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr "nemohu provést dotaz %s: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otevøení %s selhalo: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "dotaz na %s se nezdaøil\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n"
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr "¾ádné balíèky\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "¾ádný balíèek neaktivuje %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "¾ádný balíèek nevy¾aduje %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "¾ádný balíèek neposkytuje %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "soubor %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "soubor %s nevlastní ¾ádný balíèek\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "neplatné èíslo balíèku: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr "záznam balíèku èíslo: %u\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "záznam %d nelze pøeèíst\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "balíèek %s není nainstalován\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: otevøení selhalo: %s\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr "makeTempFile selhalo\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite selhalo: %s\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread selhalo: %s\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead selhalo\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: RPM v1.0 nelze podepsat\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Nemohu znovu podepsat RPM v2.0\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature selhalo\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Není dostupný ¾ádný podpis\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead selhalo: %s\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature selhalo: %s\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Není dostupný ¾ádný podpis (RPM v1.0)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "NENÍ OK"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr " (CHYBÍ KLÍÈ:"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr " (NEDÙVÌRYHODNÝ KLÍÈ:"
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "OK"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr "dbiTagsInit: neznámá znaèka: \"%s\" ignorována\n"
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3115,17 +3116,17 @@ msgstr ""
" a nastavte \"%%_dbapi 3\" (tj. vytvoøte nebo upravte /etc/rpm/macros).\n"
"\n"
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "nemohu otevøít index %s pøi pou¾ívání db%d - %s (%d)"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr "nemohu otevøít index %s"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3141,7 +3142,7 @@ msgstr ""
" jako root.\n"
"\n"
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3156,7 +3157,7 @@ msgstr ""
" a nastavte \"%%_dbapi %d\" (tj. vytvoøte nebo upravte /etc/rpm/macros).\n"
"\n"
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3174,26 +3175,26 @@ msgstr ""
" \"%%_dbapi_rebuild %d\" (tj. vytvoøte nebo upravte /etc/rpm/macros).\n"
"\n"
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "chyba(%d) pøi získávání záznamu \"%s\" z indexu %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr "chyba(%d) pøi ukládání záznamu %s do %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr "chyba(%d) pøi odstraòování záznamu %s z %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "nebyla nastavena dbpath"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
@@ -3202,333 +3203,238 @@ msgstr ""
"formátu databáze"
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr "chyba(%d) pøi poèítání balíèkù"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "%s: nemohu èíst hlavièku na 0x%x"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr "odstraòuji 0 %s polo¾ek.\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "odstraòuji \"%s\" z indexu %s.\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "odstraòuji %d polo¾ek z indexu %s.\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr "chyba(%d) pøi alokaci nové instance balíèku"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr "pøidávám 0 %s polo¾ek.\n"
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "pøidávám \"%s\" do indexu %s\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "pøidávám %d polo¾ek do indexu %s.\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "databázi %s pøevádím do %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "doèasná databáze %s ji¾ existuje"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr "vytváøím adresáø %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "chyba pøi vytváøení adresáøe %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otevírám starou databázi s dbapi %d\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otevírám novou databázi s dbapi %d\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "záznam èíslo %d v databázi je chybný -- vynechávám."
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "nemohu pøidat záznam - pùvodnì u %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"databázi nelze zvovu vytvoøit; pùvodní databáze zùstává na svém místì\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "starou databázi nelze nahradit novou databází!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "pro obnovení nahraïte soubory v %s soubory z %s"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr "ma¾u adresáø %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "nemohu odstranit adresáø %s: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "poèítám balíèky pro instalaci\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "nalezeno %d balíèkù\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "hledám balíèky pro sta¾ení\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "pøeskakuji %s - rpmGlob selhal(%d)\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Stahuji %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr " ... jako %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "pøeskakuji %s - pøenos selhal - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "pøijato %d balíèkù\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "nemohu otevøít soubor %s: %s\n"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nemù¾e být nainstalován\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nemohu otevøít databázi balíèkù v %s\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr "balíèek %s není pøemístitelný\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr "chyba pøi ètení ze souboru %s\n"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "soubor %s vy¾aduje novìj¹í verzi RPM\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "nalezeno %d zdrojových a %d binárních balíèkù\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "nevyøe¹ené závislosti:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "instaluji binární balíèky\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" urèuje více balíèkù\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Instaluji %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "ètení selhalo: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "chybí druhá ':' u %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "chybí název architektury u %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Neúplný datový øádek %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "Pøíli¹ mnoho parametrù v datovém øádku %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Chybné èíslo architektury nebo OS: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Neúplný standardní øádek %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "Pøíli¹ mnoho parametrù ve výchozím øádku u %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "Nemohu expandovat %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr "Nemohu èíst %s, HOME je pøíli¹ velký."
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Nemohu otevøít %s pro ètení: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Nemohu èíst %s: %s."
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "chybí ':' (nalezeno na 0x%02x) v %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "chybí parametr pro %s u %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "expanze %s selhala na %s:%d \"%s\""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "nemohu otevøít soubor %s na %s:%d: %s"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "chybí architektura pro %s u %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "chybná volba '%s' u %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "Neznámý systém: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "Zkontaktujte prosím rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "velikost podpisu: %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "Hlavièka+Archiv: %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "oèekáv. velikost: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n"
@@ -3588,7 +3494,7 @@ msgstr "nemohu èíst podpis"
msgid "Got %d bytes of PGP sig\n"
msgstr "Pøeèteno %d bajtù PGP podpisu\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr "Nemohu spustit gpg"
@@ -3620,311 +3526,368 @@ msgstr "Generuji PGP podpis.\n"
msgid "Generating signature using GPG.\n"
msgstr "Generuji GPG podpis.\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Nemohu spustit pgp. Vynechte kontroly PGP pomocí --nopgp."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "spu¹tìní selhalo!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Nelze spustit gpg. Vynechte kontroly GPG pomocí --nogpg."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Nemohu spustit pgp"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "Neplatná %%_signature v makro souboru"
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru"
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr "vynechávám soubor %s%s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr "vynechávám adresáø %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "pøemís»uji %s do %s\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "pøemís»uji adresáø %s do %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "nemohu odstranit %s - adresáø není prázdný"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "rmdir %s selhalo: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "odstranìní %s selhalo: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "odstraní se soubory test = %d\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "spou¹tím pøípadný postdeinstalaèní skript\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d"
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr "nekontrolovat soubory v balíèku"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
"balíèek neobsahuje ani u¾ivatelská jména ani seznam id (nemìlo by se nikdy "
"stát)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
"balíèek neobsahuje ani jména skupin ani seznam id (nemìlo by se nikdy stát)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "chybí %s\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "Úspìch"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr "Chybná odezva FTP serveru"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr "IO chyba serveru"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "Timeout serveru"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr "Nelze pøevést jméno na IP adresu poèítaèe"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr "Nelze pøevést IP na jméno poèítaèe"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr "Pøipojení k serveru selhalo"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr "Selhalo navázání datového spojení se serverem"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "IO chyba pøi lokálním souboru"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Chyba pøi nastavení vzdáleného serveru do pasivního re¾imu"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Soubor nebyl na serveru nalezen"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "Probíhá pøeru¹ení"
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "Neznámá nebo neoèekávaná chyba"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "pøihla¹ování na %s jako %s, heslo %s\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktivní %d prázdný %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(prázdný)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(prázdný)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "Makro %%%s má neukonèené tìlo"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "Makro %%%s má neplatné jméno (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "Makro %%%s má neukonèené parametry"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "Makro %%%s má prázdné tìlo"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "Expanze makra %%%s selhala"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "Makro %%%s má neplatné jméno (%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "Makro %%%s (%s) nebylo pou¾ito pod úrovní %d"
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "Neznámá volba: %c v %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "Hloubka rekurze(%d) je vìt¹í, ne¾ max(%d)"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr "Neukonèené %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr "Za %% následuje neparsovatelné makro"
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "makro %%%.*s nenalezeno, pøeskakuji"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "Cílový buffer pøetekl"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Soubor %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Soubor %s je men¹í, ne¾ %d bajtù"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "varování: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "chyba: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatální chyba: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "interní chyba (chyba v rpm?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr "alokace pamìti (%u bajtù) vrátila NULL.\n"
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr "varování: u %p ctrl %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr "varování: u %p data %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr "varování: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Heslo pro %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "chyba: %sport musí být èíslo\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "url port musí být èíslo\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr "nemohu otevøít %s: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr "nemohu vytvoøit %s: %s\n"
+
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "chybí druhá ':' u %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "chybí název architektury u %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Neúplný datový øádek %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "Pøíli¹ mnoho parametrù v datovém øádku %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Chybné èíslo architektury nebo OS: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Neúplný standardní øádek %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "Pøíli¹ mnoho parametrù ve výchozím øádku u %s:%d"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "Nemohu expandovat %s"
+
+#~ msgid "Cannot read %s, HOME is too large."
+#~ msgstr "Nemohu èíst %s, HOME je pøíli¹ velký."
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Nemohu otevøít %s pro ètení: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Nemohu èíst %s: %s."
+
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "chybí ':' (nalezeno na 0x%02x) v %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "chybí parametr pro %s u %s:%d"
+
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "expanze %s selhala na %s:%d \"%s\""
+
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "nemohu otevøít soubor %s na %s:%d: %s"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "chybí architektura pro %s u %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "chybná volba '%s' u %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "Neznámý systém: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "Zkontaktujte prosím rpm-list@redhat.com\n"
diff --git a/po/da.po b/po/da.po
index 482c9a76d..be8829890 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "Kan ikke åbne %s/packages.rpm\n"
@@ -23,39 +23,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr "Kan ikke åbne spec-fil %s: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Filen er ikke en regulær fil: %s\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Filen %s synes ikke at være en spec-fil.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -705,15 +705,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1261,7 +1261,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1447,644 +1447,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2099,301 +2099,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2403,669 +2403,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr "ingen pakker\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "ugyldig pakkenummer: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "IKKE OK"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "OK"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3074,17 +3075,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "kan ikke åbne %s ved %s:%d: %s"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "kan ikke åbne %s: %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3094,7 +3095,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3104,7 +3105,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3115,358 +3116,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr "opretter kataloget %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr "fjener kataloget %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "fundet %d pakke(r)\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "leder efter pakker til at hente\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Modtager %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "modtager %d pakker\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan ikke åbne fil %s: %s\n"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Kan ikke åbne %s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "installerer binære pakker\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åbne %s: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "Kan ikke udvide %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "kan ikke åbne %s ved %s:%d: %s"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "manglende arkitektur for %s ved %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "ugyldig flag '%s' ved %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "Ukendt system: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "Kontakt venligst rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3526,7 +3432,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3558,312 +3464,330 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "fjernelse af %s fejlede: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "Succés"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "Tidsudløb for tjener"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Fil ikke fundet på tjener"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktiv %d tom %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(tom)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(tom)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "Makro %%%s har ugyldig navn (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "advarsel: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "fejl: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatal fejl: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "intern fejl (rpm fejl?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Adgangskode for %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
+#~ msgid "Cannot expand %s"
+#~ msgstr "Kan ikke udvide %s"
+
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "kan ikke åbne %s ved %s:%d: %s"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "manglende arkitektur for %s ved %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "ugyldig flag '%s' ved %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "Ukendt system: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "Kontakt venligst rpm-list@redhat.com\n"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/de.po b/po/de.po
index ba71723e9..91981044d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -45,7 +45,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
@@ -62,41 +62,41 @@ msgid "Unable to open spec file %s: %s\n"
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
# , c-format
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
#. Give up
-#: build.c:149
+#: build.c:147
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
# , c-format
-#: build.c:176
+#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s scheint kein RPM-Paket zu sein\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
@@ -799,15 +799,15 @@ msgstr ""
"Binär- und Quellpaket erstellen (präparieren, kompilieren, installieren und "
"Paketieren"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "Direkt zur angegeben Stufe springen (nur für c und i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "Erstellungsdateibaum nach Beendigung löschen"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "Quellen und spec-Dateien nach Beendigung löschen"
@@ -1417,7 +1417,7 @@ msgstr " -b<STUFE> <SPEC> "
msgid " Package specification options:"
msgstr " Optionen der Paketauswahl:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "Anfrage an alle Pakete"
@@ -1643,678 +1643,678 @@ msgid "no tar files given for build"
msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
# , c-format
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
# , c-format
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Hole %s heraus\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:241
+#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:250
+#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:292
+#: build/expression.c:288
#, fuzzy
msgid "parse error in expression"
msgstr "? im Ausdruck erwartet"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
#, fuzzy
msgid "syntax error in expression"
msgstr "? im Ausdruck erwartet"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "fehlende { nach %{"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "fehlender ':' bei %s:%d"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
# , c-format
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Lesen von %s fehlgeschlagen: %s."
# , c-format
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
# , c-format
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:713
+#: build/files.c:714
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
# , c-format
-#: build/files.c:812
+#: build/files.c:813
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
# , c-format
-#: build/files.c:1010
+#: build/files.c:1011
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/files.c:1020
+#: build/files.c:1021
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Datei auf dem Server nicht gefunden"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
# , c-format
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Datei auf dem Server nicht gefunden"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
# , c-format
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Konnte pgp nicht durchführen"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
-#: build/files.c:1720
+#: build/files.c:1721
#, fuzzy, c-format
msgid "%s failed"
msgstr "pgp fehlgeschlagen"
# , c-format
-#: build/files.c:1724
+#: build/files.c:1725
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "anlegen von %s fehlgeschlagen\n"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
# , c-format
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "anlegen von %s fehlgeschlagen\n"
# , c-format
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
# , c-format
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "lesen fehlgeschlagen: %s (%d)"
-#: build/pack.c:155
+#: build/pack.c:156
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:162
+#: build/pack.c:163
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:169
+#: build/pack.c:170
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:176
+#: build/pack.c:177
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "Fehler: kann Datei %s nicht öffnen\n"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
# , c-format
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/pack.c:257
+#: build/pack.c:258
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "Fehler: %s scheint zu keinem RPM-Paket zu gehören\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "Fehler beim Eintrag %s von %s"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
# , c-format
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen\n"
# , c-format
-#: build/pack.c:434
+#: build/pack.c:437
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Nicht möglich %s zu schreiben"
-#: build/pack.c:449
+#: build/pack.c:452
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "PGP-Signatur generieren"
# , c-format
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "Nicht möglich %s zu schreiben"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
# , c-format
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nicht möglich %s zu schreiben"
# , c-format
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nicht möglich %s zu schreiben"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(unbekannter Typ)"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "fehlende Architektur für %s bei %s:%d"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Optionen der Paketauswahl:"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
# , c-format
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, fuzzy, c-format
msgid "No patch number %d"
msgstr "(keine Zahl)"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
# , c-format
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "Verschiebungen müssen mit einem »/« beginnen"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
# , c-format
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
# , c-format
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -2330,308 +2330,308 @@ msgstr "Öffnen von %s fehlgeschlagen\n"
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
#, fuzzy
msgid "No buildable architectures"
msgstr "Paket-Architektur nicht überprüfen"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "ungültige Paket-Nummer: %s\n"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
# , c-format
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Lesen von %s fehlgeschlagen: %s."
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "Fehler: "
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
#, fuzzy
msgid "Unknown file type"
msgstr "(unbekannter Typ)"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
#, fuzzy
msgid "Internal error"
msgstr "Fataler Fehler: "
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "pgp fehlgeschlagen"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "Paket %s wird nicht in %s aufgeführt"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
# , c-format
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "kann %s lock für die Datenbank nicht bekommen"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "exklusiv"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "geteilt"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kann %s lock für die Datenbank nicht bekommen"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2641,722 +2641,723 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(keine Zahl)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
# , c-format
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
# , c-format
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "fehlende { nach %{"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "fehlende } nach %{"
# »Tag« übersetzen??? -ke-
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "leeres »Tag«-Format"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "leerer »Tag«-Name"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "unbekannter »Tag«"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "] am Ende des Arrays erwartet"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "unerwartete ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "unerwartete }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "? im Ausdruck erwartet"
-#: lib/header.c:1655
+#: lib/header.c:1691
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "{ nach ? im Ausdruck erwartet"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "} im Ausdruck erwartet"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ": nach ? Unterausdruck erwartet"
-#: lib/header.c:1688
+#: lib/header.c:1724
#, fuzzy
msgid "{ expected after : in expression"
msgstr "{ nach : im Ausdruck erwartet"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "| am Ende des Ausdrucks erwartet"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(unbekannter Typ)"
# , c-format
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
#, fuzzy
msgid "installing a source package\n"
msgstr "Paket installieren"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
-#: lib/install.c:685
+#: lib/install.c:717
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
#, fuzzy
msgid "source package contains no .spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/install.c:913
+#: lib/install.c:939
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
"Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
#, fuzzy
msgid "build source package from tar ball"
msgstr "Erstelle die Pakete für das Betriebssystem <BS>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr ""
"Binärpaket erstellen (präparieren, kompilieren, installieren und paketieren)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "Paket installieren"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
#, fuzzy
msgid "override build root"
msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "Keine Stufen ausführen"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "Quellen und spec-Dateien nach Beendigung löschen"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "Paket hat keinen Namen"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "Anfrage an alle Pakete"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "Anfrage-Modus"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr "Anfrage von %s fehlgeschlagen\n"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "Anfrage-Modus"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "Anfrage-Modus"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
#, fuzzy
msgid "query the packages which require a capability"
msgstr "Anfrage nach Paketen, die die Fähigkeit <i> benötigen"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "Dokumentation installieren"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr "Paketinformationen anzeigen"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "Paket installieren"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
#, fuzzy
msgid "use the following query format"
msgstr "Unerwartete Quelle der Anfrage"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr "Dateiliste des Pakets anzeigen"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " wird von %s-%s-%s gebraucht\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " steht im Konflikt mit %s-%s-%s\n"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:99
+#: lib/problems.c:103
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:104
+#: lib/problems.c:108
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " steht im Konflikt mit %s-%s-%s\n"
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
# FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/problems.c:147
+#: lib/problems.c:151
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "Fehler beim Format %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(beinhaltet keine Dateien)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
#, fuzzy
msgid "not installed "
msgstr "Paket %s ist nicht installiert\n"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(unbekannter Typ)"
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "öffnen von %s fehlgeschlagen: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s scheint kein RPM-Paket zu sein\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "Anfrage von %s fehlgeschlagen\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "Anfrage an alle Pakete"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "kein Paket triggert %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "kein Paket verlangt %s\n"
# oder besser: ... listet %s auf? -ke-
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "kein Paket stellt %s bereit\n"
# , c-format
-#: lib/query.c:651
+#: lib/query.c:655
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "die Datei »%s« gehört zu keinem Paket\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "ungültige Paket-Nummer: %s\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "Eintrag %d konnte nicht gelesen werden\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Kann v1.0-RPM nicht signieren\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Keine Signatur verfügbar\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (FEHLENDE SCHLüSSEL)"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3365,17 +3366,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3385,7 +3386,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3395,7 +3396,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3406,372 +3407,274 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "Fehler beim Eintrag %s von %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
# FIXME
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "»dbpath« ist nicht gesetzt"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
# FIXME
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
# FIXME
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
# FIXME
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "die temporäre Datenbank %s existiert schon"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
"Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
# , c-format
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
#, fuzzy
msgid "counting packages to install\n"
msgstr "Es wurden keine Pakete für die Installation angegeben"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, fuzzy, c-format
msgid "found %d packages\n"
msgstr "Anfrage an alle Pakete"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
#, fuzzy
msgid "looking for packages to download\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
# , c-format
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Hole %s heraus\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "kann Datei %s nicht öffnen: "
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "Fehler: %s kann nicht installiert werden\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "Paket %s ist nicht installiert\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
#, fuzzy
msgid "installing binary packages\n"
msgstr "Paket installieren"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" bezeichnet mehrere Pakete\n"
# oder besser: "... verletzen" ?
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Fehler: kann %s nicht öffnen\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Installiere %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "lesen fehlgeschlagen: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "fehlendes zweites ':' bei %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "fehlender Name cer Architektur bei %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Unvollständige Datenzeile bei %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "Zu viele Argumente in der Datenzeile bei %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Unzureichende arch/os Zahl: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Unvollständige Standardzeile bei %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "Zu viele Argumente in der Standardzeile bei %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-# , c-format
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-
-# , c-format
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Lesen von %s fehlgeschlagen: %s."
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "fehlender ':' bei %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "fehlendes Argument für %s bei %s:%d"
-
-# , c-format
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "Öffnen von %s fehlgeschlagen: %s"
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "kann Datei %s nicht öffnen: "
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "fehlende Architektur für %s bei %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "unzureichende Option '%s' bei %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3834,7 +3737,7 @@ msgstr "nicht möglich, die Signatur zu lesen"
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "Konnte pgp nicht durchführen"
@@ -3871,331 +3774,382 @@ msgstr "PGP-Signatur generieren"
msgid "Generating signature using GPG.\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
#, fuzzy
msgid "exec failed!\n"
msgstr "%s: Öffnen fehlgeschlagen\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Konnte pgp nicht durchführen"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
-#: lib/signature.c:765
+#: lib/signature.c:767
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
# , c-format
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "Hole %s heraus\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "Entfernen von %s fehlgeschlagen: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "öffnen von %s fehlgeschlagen: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "Ausführung des Skripts fehlgeschlagen"
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "Paket installieren"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, fuzzy, c-format
msgid "missing %s\n"
msgstr "fehlende { nach %{"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
#, fuzzy
msgid "Bad server response"
msgstr "Nicht passende Antwort des FTP-Servers"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
#, fuzzy
msgid "Server IO error"
msgstr "FTP IO-Fehler"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
#, fuzzy
msgid "Server timeout"
msgstr "Timeout des FTP-Servers"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "Unmöglich die Hostadresse des FTP-Servers zu bestimmen"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "Unmöglich den Hostnamen des FTP-Servers zu bestimmen"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
#, fuzzy
msgid "Failed to connect to server"
msgstr "Verbindung zum FTP-Server fehlgeschlagen"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "IO-Fehler bei lokaler Datei"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Fehler beim Setzen des FTP-Servers in den passiven Modus"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Datei auf dem Server nicht gefunden"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "FTP Unbekannter oder nicht erwarteter Fehler"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "Paket %s in %s nicht gefunden"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
# , c-format
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "Öffnen von %s fehlgeschlagen: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "Warnung: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "Fehler: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "Fataler Fehler: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Passworf für %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
#, fuzzy
msgid "url port must be a number\n"
msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
# , c-format
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
# , c-format
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "anlegen von %s fehlgeschlagen\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "fehlendes zweites ':' bei %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "fehlender Name cer Architektur bei %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Unvollständige Datenzeile bei %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "Zu viele Argumente in der Datenzeile bei %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Unzureichende arch/os Zahl: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Unvollständige Standardzeile bei %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "Zu viele Argumente in der Standardzeile bei %s:%d"
+
+# , c-format
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
+
+# , c-format
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Lesen von %s fehlgeschlagen: %s."
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "fehlender ':' bei %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "fehlendes Argument für %s bei %s:%d"
+
+# , c-format
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "Öffnen von %s fehlgeschlagen: %s"
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "kann Datei %s nicht öffnen: "
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "fehlende Architektur für %s bei %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "unzureichende Option '%s' bei %s:%d"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/es.po b/po/es.po
index 23cd0fd67..3237da2f5 100644
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index f53b2b7ca..2a534e71b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
@@ -9,7 +9,7 @@ msgstr ""
"Xgettext-Options: --default-domain=rpm --add-comments --keyword=_ "
"--keyword=N_\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
@@ -24,39 +24,39 @@ msgstr "puuttuvat riippuvuudet:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "En voi avata %s luettavaksi: %s."
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "%s:n avaus epäonnistui\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "En voi lukea %s: %s."
-#: build.c:176
+#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s ei vaikuta RPM-paketilta\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "virhe etsittäessä pakettia %s\n"
@@ -756,15 +756,15 @@ msgstr "binääripaketti (valmistele, käännä, asenna, paketoi)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src-paketti (valmistele, käännä, asenna, paketoi)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "siirry suoraan määriteltyyn vaiheeseen (vain c ja i yhteydessä)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "poista käännöspuu, kun valmis"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
@@ -1376,7 +1376,7 @@ msgstr " -b<vaihe> <määrittely> "
msgid " Package specification options:"
msgstr " Paketin määrittelyparametrit:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "kysele kaikki paketit"
@@ -1600,651 +1600,651 @@ msgstr "käännökselle ei annettu määrittelytiedostoja"
msgid "no tar files given for build"
msgstr "käännökselle ei määritelty tar-tiedostoja"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "En voi avata %s luettavaksi: %s."
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Haen: %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:241
+#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:250
+#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:292
+#: build/expression.c:288
#, fuzzy
msgid "parse error in expression"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
#, fuzzy
msgid "syntax error in expression"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "puuttuva '{' '%':n jälkeen"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "puuttuva ':', %s:%d"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "En voi lukea %s: %s."
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "En voi lukea %s: %s."
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "en voinut avata %s: %s"
-#: build/files.c:713
+#: build/files.c:714
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "En voi lukea %s: %s."
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "En voi lukea %s: %s."
-#: build/files.c:1020
+#: build/files.c:1021
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "en voinut avata %s: %s"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "En voinut ajaa pgp:tä"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "En voinut ajaa pgp:tä"
-#: build/files.c:1720
+#: build/files.c:1721
#, fuzzy, c-format
msgid "%s failed"
msgstr "pgp epäonnistui"
-#: build/files.c:1724
+#: build/files.c:1725
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "%s:n luonti epäonnistui\n"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "%s:n luonti epäonnistui\n"
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "en voinut avata %s: %s"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "luku epäonnistui: %s (%d)"
-#: build/pack.c:155
+#: build/pack.c:156
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:162
+#: build/pack.c:163
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:169
+#: build/pack.c:170
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:176
+#: build/pack.c:177
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "virhe: tiedostoa %s ei voi avata\n"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: build/pack.c:257
+#: build/pack.c:258
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "virhe: %s ei vaikuta RPM paketilta\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "virhe luettaessa tietuetta %s %s:stä"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s:n avaus epäonnistui\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:449
+#: build/pack.c:452
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "generoi PGP-allekirjoitus"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "%s:n kirjoitus ei onnistu"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(tuntematon tyyppi)"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "en voinut avata %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Paketin määrittelyparametrit:"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "En voi lukea %s: %s."
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, fuzzy, c-format
msgid "No patch number %d"
msgstr "(ei ole luku)"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "En voi lukea %s: %s."
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "siirtojen pitää alkaa /-merkillä"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "en voinut avata %s: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "en voinut avata %s: %s"
@@ -2259,306 +2259,306 @@ msgstr "%s:n avaus epäonnistui\n"
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
#, fuzzy
msgid "No buildable architectures"
msgstr "älä tarkista paketin arkkitehtuuria"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paketti %s ei ole %s:ssä"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "virheellinen paketin numero: %s\n"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "En voi lukea %s: %s."
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "virhe: "
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
#, fuzzy
msgid "Unknown file type"
msgstr "(tuntematon tyyppi)"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
#, fuzzy
msgid "Internal error"
msgstr "vakava virhe: "
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "pgp epäonnistui"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "paketti %s ei ole %s:ssä"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "paketti %s ei ole %s:ssä"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "silmukka edellytysten ketjussa: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "en voinut avata %s: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "en voi saada %s lukitusta tietokantaan"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "poissulkevaa"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "jaettua"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "en voi saada %s lukitusta tietokantaan"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2568,709 +2568,710 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(ei ole luku)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "en voinut avata %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "en voinut avata %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "puuttuva '{' '%':n jälkeen"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "puuttuva '{' '%{':n jälkeen"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "tyhjä nimiön formaatti"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "tyhjä nimiön nimi"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "tuntematon nimiö"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "']' puuttuu taulukkomäärittelyn lopusta"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "odottamaton ']'"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "odottamaton '}'"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "odotin '?'-merkkiä ilmauksessa"
-#: lib/header.c:1655
+#: lib/header.c:1691
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa "
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "odotin '}'-merkkiä ilmauksessa"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa "
-#: lib/header.c:1688
+#: lib/header.c:1724
#, fuzzy
msgid "{ expected after : in expression"
msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa "
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "odotin '}'-merkkiä ilmauksen lopussa"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(tuntematon tyyppi)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
#, fuzzy
msgid "installing a source package\n"
msgstr "asenna paketti"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/install.c:685
+#: lib/install.c:717
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
#, fuzzy
msgid "source package contains no .spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
"tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
#, fuzzy
msgid "build source package from tar ball"
msgstr "käännä paketit käyttöjärjestelmälle <kj>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "binääripaketti (valmistele, käännä, asenna, paketoi)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "asenna paketti"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
#, fuzzy
msgid "override build root"
msgstr "käytä <hakem> käännöspuun juurena"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "älä suorita mitään vaiheita"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "paketilla ei ole nimeä"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "kysele kaikki paketit"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "kyselymoodi"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr "%s:n kysely ei onnistunut\n"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "kyselymoodi"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "kyselymoodi"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
#, fuzzy
msgid "query the packages which require a capability"
msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "asenna dokumentaatio"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr "näytä paketin tiedot"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "asenna paketti"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
#, fuzzy
msgid "use the following query format"
msgstr "odottamaton kyselyn lähde"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr "näytä paketin tiedostolistaus"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr "vaatii %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " on ristiriidassa %s-%s-%s:n kanssa\n"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n"
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "virhe formaatissa: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(ei tiedostoja)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
#, fuzzy
msgid "not installed "
msgstr "paketti %s ei ole asennettu\n"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(tuntematon tyyppi)"
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "virhe: en voi avata %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s:n avaus ei onnistunut: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s ei vaikuta RPM-paketilta\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "%s:n kysely ei onnistunut\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "%s:n kysely ei onnistunut\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "kysele kaikki paketit"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "mikään paketti ei laukaise %s:a\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "mikään pakettie ei tarvitse %s:a\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "mikään paketti ei tarjoa %s:a\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "tiedostoa %s ei omista mikään paketti\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "virheellinen paketin numero: %s\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "tietuetta %d ei voitu lukea\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: avaus ei onnistunut\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: avaus ei onnistunut\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature epäonnistui\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ei allekirjoitusta saatavilla\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature epäonnistui\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
#, fuzzy
msgid " (MISSING KEYS:"
msgstr "(PUUTTUVAT AVAIMET)"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3279,17 +3280,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3299,7 +3300,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3309,7 +3310,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3320,361 +3321,266 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "virhe luettaessa tietuetta %s %s:stä"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "virhe talletettaessa tietuetta %s %s:ään"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "dbpath ei ole asetettu"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "virhe etsittäessä pakettia %s\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "en voi lukea headeria %d:stä päivittäessä"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "virhe etsittäessä pakettia %s\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "väliaikainen tietokanta %s on jo olemassa"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "en voi lisätä tietuetta %d:stä"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "en voinut avata %s: %s"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
#, fuzzy
msgid "counting packages to install\n"
msgstr "asennukselle ei määritelty paketteja"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, fuzzy, c-format
msgid "found %d packages\n"
msgstr "kysele kaikki paketit"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
#, fuzzy
msgid "looking for packages to download\n"
msgstr "virhe etsittäessä pakettia %s\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Haen: %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "virhe: %s ei voida asentaa\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "virhe: en voi avata %s%s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paketti %s ei ole asennettu\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ryhmässä %s ei ole paketteja\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "puuttuvat riippuvuudet:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
#, fuzzy
msgid "installing binary packages\n"
msgstr "asenna paketti"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" määrittää useita paketteja\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "virhe: en voi avata %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Asennan: %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "luku epäonnistui: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "toinen ':' puuttuu, %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "puuttuva arkkitehtuurin nimi, %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Epätäydellinen datarivi, %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "liian monta parametriä datarivillä %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Epätäydellinen oletusrivi, %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "liian monta parametriä oletusrivillä %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "En voi avata %s luettavaksi: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "En voi lukea %s: %s."
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "puuttuva ':', %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "%s:n puuttuva parametri %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "en voinut avata %s: %s"
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "en voinut avata tiedostoa %s: "
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "huono parametri '%s', %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3737,7 +3643,7 @@ msgstr "en voinut lukea allekirjoitusta"
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "En voinut ajaa pgp:tä"
@@ -3774,327 +3680,375 @@ msgstr "generoi PGP-allekirjoitus"
msgid "Generating signature using GPG.\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus"
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
#, fuzzy
msgid "exec failed!\n"
msgstr "%s: avaus ei onnistunut\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus"
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "En voinut ajaa pgp:tä"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
-#: lib/signature.c:765
+#: lib/signature.c:767
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "Haen: %s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "%s:n rmdir epäonnistui: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s:n poisto epäonnistui: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "skriptin ajo epäonnistui"
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "asenna paketti"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, fuzzy, c-format
msgid "missing %s\n"
msgstr "puuttuva '{' '%':n jälkeen"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
#, fuzzy
msgid "Bad server response"
msgstr "Virheellinen FTP-palvelijan vastaus"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
#, fuzzy
msgid "Server IO error"
msgstr "FTP:n IO-virhe"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
#, fuzzy
msgid "Server timeout"
msgstr "FTP-palvelimen timeout"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "FTP-palvelimen osoitetta ei löytynyt"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "FTP-palvelimen nimeä ei löytynyt"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
#, fuzzy
msgid "Failed to connect to server"
msgstr "En saanut yhteyttä FTP-palvelijaan"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "En saanut data-yhteyttä FTP-palvelijaan"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "Paikallisen tiedoston IO-virhe"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Virhe asetettaessa palvelinta passiiviin moodiin"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Tiedostoa ei löytynyt palvelimelta"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "FTP:n tuntematon tai odottamaton virhe"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "paketti %s ei ole %s:ssä"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "en voinut avata %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "varoitus: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "virhe: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "vakava virhe: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "%s@%s:n salasana: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "virhe: ftpport pitää olla luku\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
#, fuzzy
msgid "url port must be a number\n"
msgstr "virhe: ftpport pitää olla luku\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "en voinut avata %s: %s"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "%s:n luonti epäonnistui\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "toinen ':' puuttuu, %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "puuttuva arkkitehtuurin nimi, %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Epätäydellinen datarivi, %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "liian monta parametriä datarivillä %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Huono arkkitehtuuri/käyttöjärjestelmä numero: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Epätäydellinen oletusrivi, %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "liian monta parametriä oletusrivillä %s:%d"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "En voi avata %s luettavaksi: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "En voi lukea %s: %s."
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "puuttuva ':', %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "%s:n puuttuva parametri %s:%d"
+
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "en voinut avata %s: %s"
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "en voinut avata tiedostoa %s: "
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "huono parametri '%s', %s:%d"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/fr.po b/po/fr.po
index 7d51b8ddc..77fc2a0b3 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
msgid ""
-msgstr "POT-Creation-Date: 2000-08-14 09:19-0400\n"
+msgstr "POT-Creation-Date: 2000-08-27 20:56-0400\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -16,39 +16,39 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build.c:176
+#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "impossible d'ouvrir: %s\n"
@@ -757,19 +757,19 @@ msgstr "\t\t\t b - package binaire (prépare, compile, installe, package)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "\t\t\t a - package bin/src (prépare, compile, installe, package)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
#, fuzzy
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
" --short-circuit - passe directement à l'étape spécifiée (seulement "
"pour c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
#, fuzzy
msgid "remove build tree when done"
msgstr " --clean - efface l'arborescence après construction"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr " --clean - efface l'arborescence après construction"
@@ -1393,7 +1393,7 @@ msgstr " --checksig <pkg>+ - vérifie la signature PGP"
msgid " Package specification options:"
msgstr " Options de spécification de package:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr ""
@@ -1616,646 +1616,646 @@ msgstr "aucun package n'a été spécifié pour la construction"
msgid "no tar files given for build"
msgstr "aucun package n'a été spécifié pour la construction"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "impossible d'ouvrir: %s\n"
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "La construction a échoué.\n"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:713
+#: build/files.c:714
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1720
+#: build/files.c:1721
#, fuzzy, c-format
msgid "%s failed"
msgstr "La construction a échoué.\n"
-#: build/files.c:1724
+#: build/files.c:1725
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "impossible d'ouvrir: %s\n"
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:449
+#: build/pack.c:452
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr " --sign - genère une signature PGP"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Options de spécification de package:"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "les arguments de --root (-r) doivent commencer par un /"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "impossible d'ouvrir: %s\n"
@@ -2270,304 +2270,304 @@ msgstr "impossible d'ouvrir: %s\n"
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
#, fuzzy
msgid "No buildable architectures"
msgstr "%s ne peut être construit sur cette architecture\n"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "La construction a échoué.\n"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "aucun package n'a été spécifié pour l'installation"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, fuzzy, c-format
msgid "cannot get %s lock on database"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2577,708 +2577,709 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, fuzzy, c-format
msgid "failed to open %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
#, fuzzy
msgid "unexpected ]"
msgstr "source de requête inattendue"
-#: lib/header.c:1593
+#: lib/header.c:1626
#, fuzzy
msgid "unexpected }"
msgstr "source de requête inattendue"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
#, fuzzy
msgid "source package contains no .spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "\t\t\t b - package binaire (prépare, compile, installe, package)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr " --clean - efface l'arborescence après construction"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr ""
" -c - donne uniquement la liste des fichiers de "
"configuration (implique -l)"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr ""
" -d - donne uniquement la liste des fichiers de "
"documentation (implique -l)"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr ""
" -i - affiche les informations relatives à un package"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
#, fuzzy
msgid "use the following query format"
msgstr "source de requête inattendue"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr ""
" -f <file>+ - interroge le package à qui appartient <file>"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr " -l - affiche la liste des packages"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
#, fuzzy
msgid "not installed "
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "La construction a échoué.\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "La construction a échoué.\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3287,17 +3288,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3307,7 +3308,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3317,7 +3318,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3328,359 +3329,264 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
#, fuzzy
msgid "counting packages to install\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "aucun package n'a été spécifié pour l'installation"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, fuzzy, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "impossible d'ouvrir: %s\n"
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "impossible d'ouvrir: %s\n"
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "impossible d'ouvrir: %s\n"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3742,7 +3648,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3778,314 +3684,326 @@ msgstr " --sign - genère une signature PGP"
msgid "Generating signature using GPG.\n"
msgstr " --sign - genère une signature PGP"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "aucun package n'a été spécifié pour la désinstallation"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
#, fuzzy
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "impossible d'ouvrir: %s\n"
+
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "impossible d'ouvrir: %s\n"
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "impossible d'ouvrir: %s\n"
+
+#, fuzzy
#~ msgid ""
#~ " [--triggeredby] [--ftpport] [--ftpproxy <host>]"
#~ msgstr " qui matchent <pkg>"
diff --git a/po/gl.po b/po/gl.po
index 23cd0fd67..3237da2f5 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index 23cd0fd67..3237da2f5 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/id.po b/po/id.po
index 23cd0fd67..3237da2f5 100644
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/is.po b/po/is.po
index 8cd61d061..bc3c68049 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 1.37\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-08-02 13:00+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "get ekki opnað %s/packages.rpm\n"
@@ -23,39 +23,39 @@ msgstr "gat ekki útbúið pakkaskilyrði:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Get ekki opnað spec skrána %s: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Gat ekki opnað pípu í tar: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Gat ekki lesið spec skrá frá %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Gat ekki endurnefnt %s sem %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Skráin er ekki venjuleg skrá: %s\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Skráin %s virðist ekki vera specskrá.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Þýði fyrir markkerfi: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "Þýði fyrir markkerfi %s\n"
@@ -706,15 +706,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1254,7 +1254,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1439,644 +1439,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2091,301 +2091,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2395,669 +2395,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3066,17 +3067,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr "get ekki opnað index í %s"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3086,7 +3087,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3096,7 +3097,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3107,358 +3108,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "get ekki opnað pakka gagnagrunn í\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3518,7 +3424,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3550,308 +3456,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "Óþekkt eða óvænt villa"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== virkt %d tómt %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "+Oþekkt viðfang %c í %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "Fjölvi %%%.*s fanmst ekki. Sleppi"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Skrá %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Skráin %s er minni en %d bæti"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "aðvörun: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "villa: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "banvæn villa: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "innvær villa (í rpm?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr "minnisfrátekt (%u bæta) skilaði NULL.\n"
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr "aðvörun: u %p ctrl %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr "aðvörun: u %p data %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr "aðvörun: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Lykilorð fyrir %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "villa: %sport verður að vera tala\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "gátt slóðar verður að vera tala\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr "gat ekki opnað %s: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr "gat ekki búið til %s: %s\n"
diff --git a/po/it.po b/po/it.po
index 23cd0fd67..3237da2f5 100644
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/ja.po b/po/ja.po
index 99a7f3eea..2cb690ecc 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=EUC-JP\n"
"Content-Transfer-Encoding: EUC-JP\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
@@ -29,39 +29,39 @@ msgstr "°Í¸À­¤Î·çÇ¡:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "spec ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "tar ¥Ñ¥¤¥×¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "%s ¤«¤é spec ¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "ÉáÄ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s\n"
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï ¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "ºîÀ®Ã楿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à: %s\n"
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n"
@@ -83,7 +83,7 @@ msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n"
# build root [BuildRoot]
# net share [¥Í¥Ã¥È¶¦Í­]
# reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.109 2000/08/14 18:18:57 jbj Exp $
+# $Id: ja.po,v 1.110 2000/08/28 01:50:49 jbj Exp $
#: rpm.c:178 rpmqv.c:257
#, c-format
msgid "rpm: %s\n"
@@ -754,15 +754,15 @@ msgstr "¥Ð¥¤¥Ê¥ê¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "¥Ð¥¤¥Ê¥ê/¥½¡¼¥¹¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "»ØÄꤷ¤¿²áÄø¤Þ¤Ç¥¹¥­¥Ã¥×¤·¤Þ¤¹ (c¡¢i ¤Ç¤Î¤ßÍ­¸ú)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ó¥°¸åºîÀ®¥Ä¥ê¡¼¤òºï½ü¤·¤Þ¤¹"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "½ªÎ»¸å¥½¡¼¥¹¤òºï½ü¤·¤Þ¤¹"
@@ -1337,7 +1337,7 @@ msgstr ""
msgid " Package specification options:"
msgstr " ¥Ñ¥Ã¥±¡¼¥¸»ØÄꥪ¥×¥·¥ç¥ó:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "Á´¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
@@ -1552,651 +1552,651 @@ msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
msgid "no tar files given for build"
msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó"
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "¼Â¹ÔÃæ: %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "%s ¤Î¼Â¹Ô¤Ë¼ºÇÔ (%s)"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "%s ¤ÎÉÔÀµ¤Ê½ªÎ»¥¹¥Æ¡¼¥¿¥¹ (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ =="
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ &&"
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ ||"
-#: build/expression.c:292
+#: build/expression.c:288
#, fuzzy
msgid "parse error in expression"
msgstr "¼°Ãæ¤Ç¹½Ê¸²òÀÏ¥¨¥é¡¼"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "°ìÃפ·¤Ê¤¤ ("
-#: build/expression.c:339
+#: build/expression.c:335
#, fuzzy
msgid "undefined identifier"
msgstr "ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¼±ÊÌ»Ò"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- ¿ô¤Î¤ß"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! ¿ô¤Î¤ß"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "·¿¤Ï°ìÃפ·¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* / ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& ¤È || ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
#, fuzzy
msgid "syntax error in expression"
msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK ¼ºÇÔ: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó %s(%s "
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "̵¸ú¤Ê %s ¤Î¥È¡¼¥¯¥ó: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "%s() ¤Ë³¤¯¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "ÉÔÀµ¤Êʸˡ: %s(%s)"
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
-#: build/files.c:407
+#: build/files.c:408
#, fuzzy, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "ÉÔÀµ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)"
-#: build/files.c:531
+#: build/files.c:532
#, fuzzy
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "°Û¾ï¤Ê¥í¥«¡¼¥ëĹ: \"%.*s\" %%lang(%s)"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Ê£¿ô¤Î¥í¥«¡¼¥ë %.*s %%lang(%s)"
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "%%docdir ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "%%docdir ¤Î°ú¿ô¤Ï1¤Ä¤Î¤ß¤Ç¤¹"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "1¹Ô¤Ë2¤Ä¤Î¥Õ¥¡¥¤¥ë: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "¥Õ¥¡¥¤¥ë¤Ï \"/\" ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "¾¤Î¥Õ¥©¡¼¥à¤ÇÆÃÊÌ¤Ê %%doc ¤òº®¤¼¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "¹ÔÌÜ: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s ¼ºÇÔ"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: build/files.c:1820
+#: build/files.c:1821
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:"
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: getUname() ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: getGname() ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "¥Û¥¹¥È̾¤òÀµ¼°¤Ê¤â¤Î¤Ë¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, fuzzy, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy ¤Ç½ñ¤­¹þ¤ß¼ºÇÔ: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy ¤ÇÆɤ߹þ¤ß¼ºÇÔ: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "PreIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "PreUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "PostIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "PostUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "VerifyScript ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "¥È¥ê¥¬¡¼¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: %s ¤Î¥ª¡¼¥×¥ó: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: %s ¤ÎÆɤ߹þ¤ß: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: %s ¤«¤é¤Î¥Ø¥Ã¥À¤ÎÆɤ߹þ¤ß\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "ÉÔÀµ¤Ê CSA ¥Ç¡¼¥¿"
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "½ð̾¤ÎÀ¸À®Ãæ: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "sigtarget ¤ÎÆɤ߹þ¤ß¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "sigtarget ¤ÎÆɤ߹þ¤ß¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Î ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "%%chagelog ¥¨¥ó¥È¥ê¤Ï * ¤Ç»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "ÉÔ´°Á´¤Ê %%changelog ¥¨¥ó¥È¥ê"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "%%changelog Ãæ¤ÎÉÔÀµ¤ÊÆüÉÕ: %s"
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog ¤Ï½½¿Ê¿ô¤ÎǯÂå½ç¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤»¤ó"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "%%changelog Ãæ¤Ë̾Á°¤¬¤¢¤ê¤Þ¤»¤ó"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "%%changelog Ãæ¤ËÀâÌÀ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "%d ¹ÔÌÜ: %%description ¤Î²òÀÏ¥¨¥é¡¼: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó %s:%s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "%d ¹ÔÌÜ: ̾Á°¤¬Â¿¤¹¤®¤Þ¤¹: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "%d ¹ÔÌÜ: ¥Ñ¥Ã¥±¡¼¥¸¤¬Â¸ºß¤·¤Þ¤»¤ó: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤÎÀâÌÀ"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "%d ¹ÔÌÜ: %%files ¤Î²òÀÏ¥¨¥é¡¼: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%files ¥ê¥¹¥È"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "OS ¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "%s ¥Õ¥£¡¼¥ë¥É¤Ï¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ËɬÍפǤ¹: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ÎÆó½Å¤Î %s ¥¨¥ó¥È¥ê: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "ÉÔÌÀ¤Ê¥¢¥¤¥³¥ó¥¿¥¤¥×: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "%d ¹ÔÌÜ: ¶õ¤Î¥¿¥°: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "%d ¹ÔÌÜ: Prefixes ¤Ï \"/\" ¤Ç½ª¤ï¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "%d ¹ÔÌÜ: Docdir ¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤¯¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "%d ¹ÔÌÜ: Epoch/Serial ¥Õ¥£¡¼¥ë¥É¤ÏÈÖ¹æ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê BuildArchitecture ¥Õ¥©¡¼¥Þ¥Ã¥È: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "ÆâÉô¥¨¥é¡¼: ¤Ë¤»¤Î¥¿¥° %d"
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "ÉÔÀµ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Î»ØÄê: %s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÌÀ¤Ê¥¿¥°: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ï BuildRoot ¤ò»ÈÍѤǤ­¤Þ¤»¤ó"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "ÉÔÀµ¤Ê¥½¡¼¥¹: %s : %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "¥Ñ¥Ã¥ÁÈÖ¹æ %d ¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "¥½¡¼¥¹ÈÖ¹æ %d ¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "nosource %s ¤ò¥À¥¦¥ó¥í¡¼¥É¤Ç¤­¤Þ¤»¤ó: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "%%setup ¤Î¹½Ê¸²òÀÏ¥¨¥é¡¼: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "%d ¹ÔÌÜ: %%setup %c ¤Ø¤ÎÉÔÀµ¤Ê°ú¿ô: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %%setup ¥ª¥×¥·¥ç¥ó %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "%d ¹ÔÌÜ: %%patch -b ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "%d ¹ÔÌÜ: %%patch -z ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "%d ¹ÔÌÜ: %%patch -p ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %%patch -p ¤Ø¤Î°ú¿ô: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "¥Ñ¥Ã¥Á¤¬Â¿¤¹¤®¤Þ¤¹"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "%d ¹ÔÌÜ: %%patch ¤Ø¤ÎÉÔÀµ¤Ê°ú¿ô: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
"%d ¹ÔÌÜ: °Í¸À­¥È¡¼¥¯¥ó¤Ï±Ñ¿ô»ú¡¢'_'¡¢'/' ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "%d ¹ÔÌÜ: ¥Õ¥¡¥¤¥ë̾¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥óÉÕ¤±¤µ¤ì¤¿¥Õ¥¡¥¤¥ë̾¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "%d ¹ÔÌÜ: ¥È¥ê¥¬¡¼¤Ï -- ¤¬¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "%d ¹ÔÌÜ: %s ¤Î¹½Ê¸²òÀÏ¥¨¥é¡¼: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "%d ¹ÔÌÜ: ¥¹¥¯¥ê¥×¥È¥×¥í¥°¥é¥à¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "%d ¹ÔÌÜ: %s"
@@ -2211,108 +2211,108 @@ msgstr "¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n"
msgid "Unclosed %%if"
msgstr "%%if ¤¬ÊĤ¸¤Æ¤¤¤Þ¤»¤ó"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s%d: parseExpressionBoolean ¤¬ %d ¤òÊÖ¤·¤Þ¤·¤¿"
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
#, fuzzy
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%else ¤¬¤¢¤ê¤Þ¤¹"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
#, fuzzy
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%endif ¤¬¤¢¤ê¤Þ¤¹"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "¤ª¤«¤·¤Ê %%include ¥¹¥Æ¡¼¥È¥á¥ó¥È¤Ç¤¹"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "ºîÀ®(build)²Äǽ¤Ê¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï¤¢¤ê¤Þ¤»¤ó"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "¥¢¡¼¥«¥¤¥Ö = %s, fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤ÊÈÖ¹æ: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤¬¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, fuzzy, c-format
msgid "can't unlink %s: %s\n"
msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "(¥¨¥é¡¼ 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
#, fuzzy
msgid "Unknown file type"
msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
#, fuzzy
msgid "Internal error"
msgstr "ÆâÉô¥¨¥é¡¼"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "¼ºÇÔ - "
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2321,198 +2321,198 @@ msgstr ""
"\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n"
"\tA %s\tB %s\n"
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, fuzzy, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr "%s: %s ¤Ï¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
-#: lib/depends.c:874
+#: lib/depends.c:964
#, fuzzy, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, fuzzy, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤¹: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "prerequisite ¥Á¥§¡¼¥ó¤Î¥ë¡¼¥×: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "½ü³°"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "¶¦Í­"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db3.c:484
+#: lib/db3.c:492
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2527,127 +2527,127 @@ msgstr ""
"http://www.rpm.org ¤â¤·¤¯¤Ï rpm-list@redhat.com ¥á¡¼¥ê¥ó¥°¥ê¥¹¥È¤«¤é\n"
"¾ÜºÙ¤Ê¾ðÊ󤬼èÆÀ¤Ç¤­¤Þ¤¹¡£\n"
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() fugger ¥µ¥¤¥º¤òÊÖ¤¹¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "stat %s ¤Ë¼ºÇÔ: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "headerAddEntry() ¤ÎÉÔÀµ¤Ê¥«¥¦¥ó¥È: %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "% ¤Î¸å¤Ë { ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "%{ ¤Î¸å¤Ë } ¤¬¤¢¤ê¤Þ¤»¤ó"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "¶õ¤Î¥¿¥°¥Õ¥©¡¼¥Þ¥Ã¥È"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "¶õ¤Î¥¿¥°Ì¾"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "ÉÔÌÀ¤Ê¥¿¥°"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "ÇÛÎó¤Î¸å¤Ë ] ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "ͽ´ü¤»¤Ì ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "ͽ´ü¤»¤Ì }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "¼°Ãæ¤Ç ? ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "¼°Ãæ¤Ç ? ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "¼°Ãæ¤Ë } ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "°Ê²¼¤Î ? ¥µ¥Ö¼°¤Î ¤Ë: ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "¼°Ãæ¤Ç : ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "¼°¤Î½ª¤ê¤Ë | ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s: ¥¢¥¯¥·¥ç¥ó: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
-#: lib/install.c:205
+#: lib/install.c:230
#, fuzzy
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
@@ -2656,342 +2656,343 @@ msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, fuzzy, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
#, fuzzy
msgid " on file "
msgstr "¥Õ¥¡¥¤¥ë¾å"
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "¥½¡¼¥¹¤Ï: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "spec ¥Õ¥¡¥¤¥ë¤Ï: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
-#: lib/install.c:1128
+#: lib/install.c:1154
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
"¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "¥Ó¥ë¥É¥ë¡¼¥È¤Ï¤¹¤Ç¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤­´¹¤¨¤Þ¤¹"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "¥Ð¥¤¥Ê¥ê¤ò¥Ñ¥Ã¥±¡¼¥¸²½ (prep¡¢compile¡¢install¡¢package)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
#, fuzzy
msgid "override build root"
msgstr "¥Ó¥ë¥É¥ë¡¼¥È¤ò¾å½ñ¤­¤·¤Þ¤¹"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "ºîÀ®¤¹¤ë¤¿¤á¤Î¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤«¤é I18N ¤Ê msgstr ¤ò¼õ¤±Æþ¤ì¤Þ¤»¤ó"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "½ªÎ»¸å¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "¥¿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤ò¾å½ñ¤­¤·¤Þ¤¹"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¥«¥¿¥í¥°Ãæ¤Î I18N ʸ»úÎó¤òõ¤·¤Æ¤¤¤Þ¤¹"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "<file> ¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "¥°¥ë¡¼¥×Ãæ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹\n"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
#, fuzzy
msgid "query the packages which require a capability"
msgstr ""
"µ¡Ç½¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤Æ\n"
"Ì䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "µ¡Ç½¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "Á´¤Æ¤Î¥É¥­¥å¥á¥ó¥È¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr "´ðËÜŪ¤Ê¥Õ¥¡¥¤¥ë¾ðÊó¤ò¥À¥ó¥×¤·¤Þ¤¹"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹\n"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "°Ê²¼¤ÎÌ䤤¹ç¤ï¤»¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤­´¹¤¨¤Þ¤¹"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "Îóµó¤·¤¿¥Õ¥¡¥¤¥ë¤Î¾õÂÖ¤òɽ¼¨¤·¤Þ¤¹"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr "¤Ï %s-%s-%s ¤ËɬÍפȤµ¤ì¤Æ¤¤¤Þ¤¹\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " %s-%s-%s ¤È¶¥¹ç¤·¤Þ¤¹\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã¸þ¤±¤Ç¤¹"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï°Û¤Ê¤ë OS ¸þ¤±¤Ç¤¹"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
"¥Õ¥¡¥¤¥ë %s ¤Ï %s-%s-%s ¤È %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:125
+#: lib/problems.c:129
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
@@ -2999,244 +3000,244 @@ msgstr ""
"%s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤«¤é¤Î¥Õ¥¡¥¤¥ë %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s "
"¤«¤é¤Î¥Õ¥¡¥¤¥ë¤È¶¥¹ç¤·¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s (%s-%s-%s¤è¤ê¤â¿·¤·¤¤¤â¤Î) "
"¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ï %ld%cb ¤¬É¬ÍפǤ¹(%s "
"¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¾å¤Ç)"
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "Ä̾ï"
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "¥Í¥Ã¥È¶¦Í­"
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(̤ÃΤΠ%3d)"
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)"
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "makeTempFile ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: v1.0 ¤Î RPM ¤Ë¤Ï½ð̾¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (¥­¡¼¤Îʶ¼º) "
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr " (¿®Íê¤Ç¤­¤Ê¤¤¸°:"
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3245,17 +3246,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó %s:%d"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3265,7 +3266,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3275,7 +3276,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3286,360 +3287,265 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, fuzzy, c-format
msgid "removing 0 %s entries.\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ÎºîÀ®¥¨¥é¡¼: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤ò¿ô¤¨¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤òõ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr "%s ¤È¤·¤Æ...\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¼èÆÀ¤·¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "°Í¸À­¤Î·çÇ¡:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "Æɤ߹þ¤ß¤Î¼ºÇÔ: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "2ÈÖÌܤΠ':' ¤¬¤¢¤ê¤Þ¤»¤ó(%s:%d ¤Ç)"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "%s:%d ¤Ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã̾¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤¬ÉÔ´°Á´¤Ç¤¹"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤Ë°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "ÉÔÀµ¤Ê arch/os ÈÖ¹æ: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "%s:%d ¤ÇÉÔ´°Á´¤Ê¥Ç¥Õ¥©¥ë¥È¹Ô"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "%s:%d ¤Ç¥Ç¥Õ¥©¥ë¥È¹Ô¤Ï°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "¿­Ä¥¤Ç¤­¤Þ¤»¤ó %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "%s:%d ¤Ç ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "%s ¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "%s ¤Î¿­Ä¥¼ºÇÔ %s:%d \"%s\""
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó %s:%d"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "%s ÍѤΥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "½ð̾¥µ¥¤¥º : %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "¥Ø¥Ã¥À + ¥¢¡¼¥«¥¤¥Ö: %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "´üÂÔ¤µ¤ì¤ë¥µ¥¤¥º: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
"¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
@@ -3700,7 +3606,7 @@ msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
msgid "Got %d bytes of PGP sig\n"
msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
@@ -3737,334 +3643,391 @@ msgstr "PGP ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
msgid "Generating signature using GPG.\n"
msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
"pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n"
"PGP ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nopgp ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "¼Â¹Ô¼ºÇÔ!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
"gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n"
"GPG ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nogpg ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Ç̵¸ú¤Ê %%_signature ¥¹¥Ú¥Ã¥¯"
-#: lib/signature.c:753
+#: lib/signature.c:755
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: lib/signature.c:765
+#: lib/signature.c:767
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s ¤Îºï½ü¤Ë¼ºÇÔ: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "¥Õ¥¡¥¤¥ë test = %d ¤òºï½ü¤·¤Þ¤¹\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸¤Ï ¥æ¡¼¥¶Ì¾¤È id "
"¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id "
"¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "À®¸ù"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
#, fuzzy
msgid "Bad server response"
msgstr "¥µ¡¼¥Ð¤«¤éÀµ¾ï¤Ê±þÅú¤¬¤¢¤ê¤Þ¤»¤ó"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
#, fuzzy
msgid "Server IO error"
msgstr "¥µ¡¼¥Ð IO ¥¨¥é¡¼"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
#, fuzzy
msgid "Server timeout"
msgstr "¥µ¡¼¥Ð¥¿¥¤¥à¥¢¥¦¥È"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "¥µ¡¼¥Ð¤Î¥Û¥¹¥È¥¢¥É¥ì¥¹¤òÄ´¤Ù¤é¤ì¤Þ¤»¤ó"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "¥µ¡¼¥Ð¤Î¥Û¥¹¥È̾¤òÄ´¤Ù¤é¤ì¤Þ¤»¤ó"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
#, fuzzy
msgid "Failed to connect to server"
msgstr "¥µ¡¼¥Ð¤Ø¤ÎÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "¥µ¡¼¥Ð¤È¤Î¥Ç¡¼¥¿¥³¥Í¥¯¥·¥ç¥ó¤Î³ÎΩ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¤Î IO ¥¨¥é¡¼"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "¥ê¥â¡¼¥È¥µ¡¼¥Ð¤Î¥Ñ¥Ã¥·¥Ö¥â¡¼¥ÉÀßÄꥨ¥é¡¼"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "¥µ¡¼¥Ð¾å¤Ë¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "½èÍýÃæ¤Î¥¢¥Ü¡¼¥È"
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "ÉÔÌÀ¤â¤·¤¯¤Ïͽ´ü¤»¤Ì¥¨¥é¡¼"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "%s ¤Ø %s pw %s ¤È¤·¤Æ¥í¥°¥¤¥óÃæ\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== ¥¢¥¯¥Æ¥£¥Ö %d ¥¨¥ó¥×¥Æ¥£ %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "¥Þ¥¯¥í %%%s ¤Ï¥Ü¥Ç¥£¤¬½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "¥Þ¥¯¥í %%%s ¤Ï°ãË¡¤Ê̾Á°¤Ç¤¹(%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "¥Þ¥¯¥í %%%s ¤Ï opts ¤¬½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "¥Þ¥¯¥í %%%s ¤Ï¶õ¤Î¥Ü¥Ç¥£¤Ç¤¹"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "¥Þ¥¯¥í %%%s ¤Ï¿­Ä¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "¥Þ¥¯¥í %%%s ¤Ï°ãË¡¤Ê̾Á°¤Ç¤¹(%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "¥Þ¥¯¥í %%%s (%s) ¤Ï¥ì¥Ù¥ë %d °Ê²¼¤Ç»ÈÍѤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿"
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, fuzzy, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "ÉÔÌÀ¤Ê¥ª¥×¥·¥ç¥ó %c (%s(%s)Ãæ¤Ë)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "ºÆµ¢¤Î¿¼¤µ(%d)¤¬ºÇÂçÃÍ(%d)¤è¤ê¤âÂ礭¤¤"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, fuzzy, c-format
msgid "Unterminated %c: %s"
msgstr "½ªÃ¼¤µ¤ì¤Æ¤¤¤Ê¤¤ %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr "A %% ¤Ï¹½Ê¸²òÀϤǤ­¤Ê¤¤¥Þ¥¯¥í¤¬Â³¤¤¤Æ¤¤¤Þ¤¹"
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "¥Þ¥¯¥í %%%.*s ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¡¢¥¹¥­¥Ã¥×¤·¤Þ¤¹"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "¥¿¡¼¥²¥Ã¥È¥Ð¥Ã¥Õ¥¡¥ª¡¼¥Ð¡¼¥Õ¥í¡¼"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "¥Õ¥¡¥¤¥ë %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "¥Õ¥¡¥¤¥ë %s: ¤Ï %d ¥Ð¥¤¥È¤è¤ê¾®¤µ¤¤¤Ç¤¹"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "·Ù¹ð: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "¥¨¥é¡¼: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "Ã×̿Ū¤Ê¥¨¥é¡¼: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "ÆâÉôŪ¤Ê¥¨¥é¡¼ (rpm ¤Î¥Ð¥°?)"
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "%s@%s ¤Î¥Ñ¥¹¥ï¡¼¥É:"
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "¥¨¥é¡¼: %s¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
#, fuzzy
msgid "url port must be a number\n"
msgstr "url ¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "2ÈÖÌܤΠ':' ¤¬¤¢¤ê¤Þ¤»¤ó(%s:%d ¤Ç)"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "%s:%d ¤Ë¥¢¡¼¥­¥Æ¥¯¥Á¥ã̾¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤¬ÉÔ´°Á´¤Ç¤¹"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "%s:%d ¤Ç¥Ç¡¼¥¿¹Ô¤Ë°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "ÉÔÀµ¤Ê arch/os ÈÖ¹æ: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "%s:%d ¤ÇÉÔ´°Á´¤Ê¥Ç¥Õ¥©¥ë¥È¹Ô"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "%s:%d ¤Ç¥Ç¥Õ¥©¥ë¥È¹Ô¤Ï°ú¿ô¤¬Â¿¤¹¤®¤Þ¤¹"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "¿­Ä¥¤Ç¤­¤Þ¤»¤ó %s"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£"
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "%s:%d ¤Ç ':' ¤¬¤¢¤ê¤Þ¤»¤ó"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "%s ¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó %s:%d"
+
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "%s ¤Î¿­Ä¥¼ºÇÔ %s:%d \"%s\""
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó %s:%d"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "%s ÍѤΥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
+
#, fuzzy
#~ msgid "RPM database already exists"
#~ msgstr "RPM ¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
diff --git a/po/ko.po b/po/ko.po
index 23cd0fd67..3237da2f5 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/no.po b/po/no.po
index 6519a208a..67166a5d3 100644
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-08-04 02:59+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "kan ikke åpne %s/packages.rpm\n"
@@ -23,39 +23,39 @@ msgstr "feil med avhengigheter under bygging:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Kunne ikke åpne tar rør: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Feil under lesing av spec fil fra %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Feil under endring av navn fra %s til %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Filen er ikke en vanlig fil: %s\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Fil %s ser ikke ut til å være en spec fil.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Bygger målplattformene: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "Bygger for mål %s\n"
@@ -708,15 +708,15 @@ msgstr "binær pakke (prep, kompilér, installér, pakk)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src pakke (prep, kompilér, installér, pakk)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "hopp rett til spesifisert steg (kun for c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "fjern byggtréet når ferdig"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr "fjern kildekoden når ferdig"
@@ -1256,7 +1256,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1441,644 +1441,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2093,301 +2093,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2397,669 +2397,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3068,17 +3069,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr "kan ikke åpne %s indeks"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3088,7 +3089,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3098,7 +3099,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3109,358 +3110,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakke %s kan ikke relokeres\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr "feil under lesing fra fil %s\n"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "fil %s trenger en nyere versjon av RPM\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "fant %d kilde- og %d binærpakker\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "feilede avhengigheter:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "installerer binærpakker\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" spesifiserer flere pakker\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan ikke åpne %s: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Installerer %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "lesing feilet: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "mangler andre ':' ved %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "manglende navn på arkitektur ved %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Ukomplett datalinje ved %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3520,7 +3426,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3552,308 +3458,317 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "Overflyt i målbuffer"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Fil %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Fil %s er mindre enn %d bytes"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "advarsel: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "feil: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatal feil: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "intern feil (rpm feil?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr "advarseo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Passord for %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "feil: %s-port må være et tall\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "url-port må være et tall\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr "klarte ikke å åpne %s: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr "kunne ikke opprette %s: %s\n"
+
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "mangler andre ':' ved %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "manglende navn på arkitektur ved %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Ukomplett datalinje ved %s:%d"
diff --git a/po/pl.po b/po/pl.po
index 547e345e1..107a426ba 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -16,7 +16,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
@@ -30,39 +30,39 @@ msgstr "niespe³nione zale¿no¶ci:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Nie mo¿na otworzyæ pliku spec: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Otwarcie potoku tara nie powiod³o siê: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Odczytanie pliku spec z %s nie powiod³o siê\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Zmiana nazwy %s na %s nie powiod³a siê\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Plik: %s nie jest regularnym plikiem\n"
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s nie wygl±da na pakiet RPM\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Budowanie dla platform: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "Budowanie dla %s\n"
@@ -743,15 +743,15 @@ msgstr "pakiet binarny (preparuj, kompiluj, instaluj, pakiet)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "pakiet binarny/¼ród³owy (preparuj, kompiluj, instaluj, pakiet)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "przejd¼ od razu do podanego etapu (tylko dla c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "usuñ budowane drzewo po skoñczeniu"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr "usuñ ¼ród³a po zakoñczeniu"
@@ -1337,7 +1337,7 @@ msgstr " --httpport <port> "
msgid " Package specification options:"
msgstr " Opcje selekcjonuj±ce pakiety:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "odpytuj wszystkie pakiety"
@@ -1563,650 +1563,650 @@ msgstr "nie podano nazw plików spec do budowania"
msgid "no tar files given for build"
msgstr "nie podano nazw plików tar do budowania"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "Nie mo¿na otworzyæ pliku tymczasowego"
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Wykonywanie: %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Wykonanie %s nie powiod³o siê (%s)"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "B³êdny status wyj¶cia z %s (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/expression.c:241
+#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/expression.c:250
+#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr "b³±d interpretacji wyra¿enia"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "niesparowane ("
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr "nieznany identyfikator"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- tylko na liczbach"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! tylko na liczbach"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "typy musz± siê zgadzaæ"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* / nie jest wspierane dla ³añcuchów znakowych"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- nie jest wspierane dla ³añcuchów znakowych"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& i || nie jest wspierane dla ³añcuchów znakowych"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr "b³±d sk³adni w wyra¿eniu"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK nie powiod³o siê: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Brak '(' w %s %s"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Brak ')' w %s(%s"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "B³êdny znak %s: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Brak bia³ego znaku po %s(): %s"
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "B³êdna sk³adnia: %s(%s)"
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "B³êdne okre¶lenie trybu: %s(%s)"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "B³êdne okre¶lenie dirmode: %s(%s)"
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Niespotykana d³ugo¶æ okre¶lenia lokalizacji \"%.*s\" w %%lang(%s)"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)"
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "Limit trafieñ dla %%docdir"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "Tylko jeden argument dla %%docdir"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "Dwa pliki w jedenj linii: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Nie mo¿na mieszaæ specjalnej %%doc z innymi formami: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "Plik podany dwukrotnie: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Plik nie zgadza siê z prefiksem (%s): %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "Nie znaleziono pliku: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "B³êdny u¿ytkownik/grupa: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Plik %4d: 0%o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Plik musi siê zaczynaæ od \"/\": %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Nie znaleziono pliku: %s"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "linia: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "plik %s: %s\n"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "B³êdny u¿ytkownik/grupa: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Nie mo¿na uruchomiæ %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Nie mo¿na wykonaæ fork na %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s nie powiod³o siê"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
-#: build/files.c:1820
+#: build/files.c:1821
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Wyszukiwanie wymaganych zasobów...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "Wyszukiwanie nie powiod³o siê"
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Przetwarzanie plików: %s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: Limit trafieñ w getUname()\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: Limit trafieñ w getGname()\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nie mo¿na rozwi±zaæ nazwy systemu: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "zapis w trybie cpio_copy nie powiód³ siê: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "odczyt w trybie cpio_copy nie powiód³ siê: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PreIn: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PreUn: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PostIn: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Nie mo¿na otworzyæ pliku PostUn: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Nie mo¿na otworzyæ pliku VerifyScript: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Nie mo¿na otworzyæ skryptu Trigger: %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otwieranie %s: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: czytanie %s: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s nie jest pakietem RPM\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: czytanie nag³ówka z %s\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "B³êdne dane CSA"
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Nie mo¿na otworzyæ %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "Generowanie sygnatury: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nie mo¿na odczytaæ sigtarget: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Nie mo¿na odczytaæ sigtarget: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "Nie mo¿na zapisaæ pakietu: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nie mo¿na wygenerowaæ wyj¶ciowej nazwy dla pakietu %s: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "nie mo¿na utworzyæ %s"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "linia %d: druga %s"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "wpisy %%changelog musz± zaczynaæ siê od *"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "niekompletny wpis %%changelog"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "b³êdna data w %%changelog: %s"
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "wpisy w %%changelog u³o¿one niechronologicznie"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "brak nazwiska w %%changelog"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "brak opisu w %%changelog"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "linia %d: b³±d w interpretacji wpisu %%description: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "linia %d: B³edna opcja %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "linia %d: Zbyt du¿o nazw: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "linia %d: Pakiet nie istnieje: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "linia %d: Drugi opis"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "linia %d: B³±d w interpretacji wpisu %%files: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "linia %d: Druga lista %%files"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektura nie jest wspierana: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektura nie jest wspierana: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "Ten OS nie jest wspierany: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "Ten OS nie jest wspierany: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "pole %s musi byæ obecne w pakiecie: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Podwójne wpisy %s w pakiecie: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nie mo¿na odczytaæ ikony: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "Nieznany typ ikony: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "linia %d: Niepoprawna forma etykiety: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "linia %d: Pusta etykieta: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "linia %d: Nielegalny znak '-' w %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "linia %d: Prefiksy nie mog± siê koñczyæ na \"/\": %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "linia %d: pole Epoch/Serial musi byæ liczb±: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d"
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "B³êdna specyfikacja pakietu: $s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "Pakiet ju¿ istnieje: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "linia %d: Nieznana etykieta: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "B³êdne ¼ród³o: %s: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "Brak ³aty numer %d"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "Brak ¼ród³a numer %d"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "B³±d przetwarzania %%setup: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "linia %d: B³êdny argument dla %%setup %c: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "linia %d: B³êdna opcja %%setup %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "linia %d: Wymagany argument dla %%patch -b: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "linia %d: Wymagany argument dla %%patch -z: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "linia %d: Wymagany argument dla %%patch -p: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "linia %d: B³êdny argument dla %%patch -p: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "Zbyt wiele ³at!"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "linia %d: B³êdny argument dla %%patch: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "linia %d: druga sekcja %%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
"linia %d: Znaki musz± sie zaczynaæ od alfanumerycznych, '_' lub '/': %s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "linia %d: Nazwa pliku niedozwolona: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "linia %d: Wersja w nazwach plików niedozwolona: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr "linia %d: Wymagana wersja: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "linia %d: triggery musz± mieæ --: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "linia %d: B³±d przetwarzania %s: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "linia %d: skrypt (tu jako program) musi siê zaczynaæ od '/': %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "linia %d: Drugi %s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "linia %d: %s"
@@ -2221,301 +2221,301 @@ msgstr "Nie mo¿na otworzyæ: %s\n"
msgid "Unclosed %%if"
msgstr "Niedomkniête %%if"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Napotkano %%else bez if"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Napotkano %%endif bez if"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "b³ednie sformatowany wpis %%include"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "Nie mo¿na budowaæ na takie architektury"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "Pakiet nie ma %%description: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "archiwum = %s fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "linia %d: B³êdny numer: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "linia %d: b³êdny numer no%s: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "linia %d: B³êdny numer %s: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "nie mo¿na zmieniæ nazwy %s na %s: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr "(b³±d 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "B³êdny magic"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "B³êdny/nieczytelny nag³ówek"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "Rozmiar nag³ówka jest zbyt du¿y"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr "Nieznany typ pliku"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr "Brak twardego dowi±zania"
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr "B³±d wewnêtrzny"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr " nie powiod³o siê -"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "pakiet %s jest w konflikcie: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "b³êdny status pliku: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db3.c:484
+#: lib/db3.c:492
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2525,692 +2525,693 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(nie jest liczb±)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "stat nie powiod³o siê %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "nie mo¿na otworzyæ %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "plik %s jest na nieznanym urz±dzeniu"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ danych %d nie jest obs³ugiwany\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "B³edny licznik dla headerAddEntry(): %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "brak { po %"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "brak } po %{"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "pusty format etykiety"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "pusta nazwa etykiety"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "nieznana etykieta"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "spodziewany ] na koñcu tablicy"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "nie spodziewany ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "nie spodziewany }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "spodziewany ? w wyra¿eniu"
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "spodziewany { po ? w wyra¿eniu"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "spodziewany } w wyra¿eniu"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "spodziewany : po podwyra¿eniu ?"
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "spodziewany { po : w wyra¿eniu"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "spodziewany | na koñcu wyra¿enia"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(nieznany typ)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr " plik: %s akcja: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "grupa %s nie istnieje - u¿yto grupy root"
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "warto¶æ %%instchangelog w pliku makra powinna byæ liczb±, a nie jest"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr " na pliku "
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "instacja pakietu ¼ród³owego\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nie mo¿na utworzyæ %s"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "nie mo¿na zapisaæ do %s"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "¼ród³a w: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nie mo¿na utworzyæ %s"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "plik spec w: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "zmiana nazwy %s na %s\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "pakiet: %s-%s-%s test plików = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "przebieg testowy - instalacja zatrzymana\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "ostrze¿enie: %s utworzony jako %s"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "ostrze¿enie: %s zapisany jako %s"
-#: lib/install.c:1128
+#: lib/install.c:1154
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "b³±d w tworzeniu pliku tymczasowego %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
"tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "buildroot by³ ju¿ wcze¶niej podany"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "pakiet binarny (preparuj, kompiluj, instaluj, pakiet)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "instacja pakietu ¼ród³owego\n"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr "wymu¶ build root"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr "nie wykonuj ¿adnych etapów budowania"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "nie akceptuj wpisów I18N ze speca"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr "usuñ speca po zakoñczeniu"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "wymu¶ platformê docelow±"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "wyszukaj wpisy I18N w katalogu speca"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "zapytaj do jakiego pakietu nale¿y <plik>"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "odpytywanie pakietów w grupie"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "odpytywanie pakietu"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "tryb odpytywania"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr "odpytywanie pliku spec"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr "odpytywanie pakietów zahaczanych przez pakiet"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "tryb odpytywania"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "tryb odpytywania"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr "odpytywanie pakietów wymagaj±cych zasobu"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr "odpytywanie pakietów udostêpniaj±cych zasób"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr "wy¶wietl wszystkie pliki dokumentacji"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr "podaj postawowe informacje o pliku"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr "wy¶wietl pliki zawarte w pakiecie"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "u¿yj nastêpuj±cego formatu zapytania"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "wy¶wietl status pokazywanych plików"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr "wy¶wietl wiêcej informacji o plikach z listy"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " jest wymagany przez %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " jest w konflikcie z %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "pakiet %s-%s-%s zbudowano dla innej architektury"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "pakiet %s-%s-%s zbudowano dla innego systemu operacyjnego"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
"plik %s z pakietu %s-%s-%s jest w konflikcie z plikiem z pakietu %s-%s-%s"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
"pakiet %s-%s-%s (który jest nowszy ni¿ %s-%s-%s) jest ju¿ zainstalowany"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, fuzzy, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "instalacja pakietu %s-%s-%s wymaga %ld%c w systemie plików %s"
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "b³±d w formacie: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(nie zawiera plików)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "normalny "
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "zast±piony "
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "niezainstalowany"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "udostêpniony w sieci"
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(nieznany %3d)"
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(brak statusu)"
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "nie mo¿na odwi±zaæ %s: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr "otwarcie %s nie powiod³o siê\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s nie wygl±da na pakiet RPM\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "odpytywanie %s nie powiod³o siê\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "znaleziono %d pakietów\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "¿aden pakiet nie zahacza %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "¿aden pakiet nie wymaga %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "¿aden pakiet nie udostêpnia %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "plik %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "b³êdny numer pakietu: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "numer rekordu pakietu: %d\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "nie mo¿na odczytaæ rekordu %d\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "pakiet %s nie jest zainstalowany\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Open nie powiod³o siê\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "wykonanie nie powiod³o siê\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Sygnatura nie jest dostêpna\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "NIE DOBRZE"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr " (BRAK KLUCZY:"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr "(NIEWIARYGODNE KLUCZE:"
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "OK"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3219,17 +3220,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "nie mo¿na otworzyæ %s przy %s:%d"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "nie mo¿na otworzyæ %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3239,7 +3240,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3249,7 +3250,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3260,26 +3261,26 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "b³±d pobierania rekordu %s z %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "b³±d zapisywania rekordu %s do %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "b³±d usuwania rekordu %s z %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "¶cie¿ka bazy danych nie zosta³a podana"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
@@ -3288,333 +3289,238 @@ msgstr ""
"nowym formacie"
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "b³±d szukania pakietu %s\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, fuzzy, c-format
msgid "removing 0 %s entries.\n"
msgstr "usuwanie wpisu w bazie\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "usuwanie indeksu grupy\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "usuwanie indeksu nazw\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "b³±d szukania pakietu %s\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "zmiana nazwy %s na %s\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "zmiana nazwy %s na %s\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "odbudowywujê bazê danych w rootdir %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "tymczasowa baza danych %s ju¿ istnieje"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "b³±d przy tworzeniu katalogu %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otwieranie starej bazy danych\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otwieranie nowej bazy danych\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "zliczanie pakietów do zainstalowania\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "znaleziono %d pakietów\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "szukanie pakietów do ¶ci±gniêcia\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "¦ci±ganie %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr "... jako %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "¶ci±gniêto %d pakietów\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie mo¿na otworzyæ pliku %s: %s"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie mo¿e byæ zainstalowany\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr "pakiet %s nie jest przesuwalny\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr "b³±d czytania z pliku %s\n"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "plik %s wymaga nowszej wersji RPM\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "niespe³nione zale¿no¶ci:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "instalacja pakietów binarnych\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" okre¶la wiele pakietów\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Instalacja %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "odczyt nie powiód³ siê: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "brak drugiego ':' przy %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "brak nazwy architektury przy %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Niekompletna linia danych przy %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "Zbyt wiele argumentów w linii danych przy %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "B³êdny numer arch/os: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Niekompletna domy¶lna linia przy %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "Nie mo¿na rozszerzyæ %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Odczytanie %s nie powiod³o siê: %s."
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "brak ':' przy %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "brak argumentu dla %s przy %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "nie mo¿na otworzyæ %s przy %s:%d"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "brak architektury dla %s przy %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "b³êdna opcja '%s' przy %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "Nieznany system: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "rozmiar sygnat. : %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "Nag³ówek + Archiwum: %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "oczekiwany rozmiar: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
@@ -3674,7 +3580,7 @@ msgstr "nie mo¿na odczytaæ sygnatury"
msgid "Got %d bytes of PGP sig\n"
msgstr "Mam %d bajtów sygnatury PGP\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr "Nie mo¿na uruchomiæ gpg"
@@ -3708,316 +3614,369 @@ msgstr "Generowanie sygnatury: %d\n"
msgid "Generating signature using GPG.\n"
msgstr "Generowanie sygnatury: %d\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Nie mo¿na uruchomiæ pgp. U¿yj --nopgp aby pomin±æ sprawdz. PGP"
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "uruchomienie nie powiod³o siê!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Nie mo¿na uruchomiæ gpg. U¿yj --nopgp aby pomin±æ sprawdz. GPG"
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Nie mo¿na uruchomiæ pgp"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "B³êdny wpis %%_signature w pliku makra"
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra"
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "wy³±czanie %s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "skasowanie katalogu %s nie powiod³o siê"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "skasowanie %s nie powiod³o siê: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "usunie pliki test = %d\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "wykonanie skryptu nie powiod³o siê"
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr "nie sprawdzaj plików pakietu"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
"pakiet nie specyfikuje ani nazwy u¿ytkownika ani list id (to nie powinno siê "
"zdarzyæ)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
"pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê "
"zdarzyæ)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "brak %s\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "Sukces"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr "B³êdna odpowied¼ serwera"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr "B³±d WE/WY(IO) serwera"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "Przekroczony limit czasu serwera"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr "Nie mo¿na znale¼æ adresu serwera"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr "Nie mo¿na znale¼æ nazwy serwera"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr "Po³±czenie z serwerem nie powiod³o siê"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr "Otwarcie transmisji danych z serwera nie powiod³o siê"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "B³±d WE/WY(IO) na lokalnym pliku"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "B³±d: ustawienie zdalnego serwera w tryb pasywny nie powiod³o siê"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Plik nie zosta³ znaleziony na serwerze"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "Przerywanie ..."
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "Nieznany lub nieoczekiwany b³±d"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "logowanie do %s jako %s, has³o %s\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktywny %d pusty %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(pusty)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(pusty)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "Makro %%%s ma niezakoñczon± strukturê"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "Makro %%%s ma niedozwolon± nazwê (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "Makro %%%s ma niezakoñczone opcje"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "Makro %%%s nie zawiera ¿adnych poleceñ"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "Rozwiniêcie makra %%%s nie powiod³o siê"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "Makro %%%s ma niedozwolon± nazwê (%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "Makro %%%s (%s) nie by³o u¿yte poni¿ej poziomu %d"
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "Nieznana opcja %c in %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "G³êboko¶æ(%d) rekursji wiêksza mi¿ maks(%d)"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr "Niezakoñczone %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr "Napotkano nieprzetwarzalne makro po %%"
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "Nie znaleziono makra %%%.*s, makro pominiête"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "Przepe³nienie bufora docelowego"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Plik %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Plik %s jest mniejszy ni¿ %d bajtów"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "ostrze¿enie: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "b³±d: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatalny b³±d: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "b³±d wewnêtrzny (b³±d w rpm'ie?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Has³o dla %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "b³±d: %sport musi byæ liczb±\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "port musi byæ liczb±\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "nie mo¿na otworzyæ %s: %s"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "utworzenie %s nie powiod³o siê\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "brak drugiego ':' przy %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "brak nazwy architektury przy %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Niekompletna linia danych przy %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "Zbyt wiele argumentów w linii danych przy %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "B³êdny numer arch/os: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Niekompletna domy¶lna linia przy %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "Zbyt wiele argumentów w linii domy¶lnej przy %s:%d"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "Nie mo¿na rozszerzyæ %s"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Odczytanie %s nie powiod³o siê: %s."
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "brak ':' przy %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "brak argumentu dla %s przy %s:%d"
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "nie mo¿na otworzyæ %s przy %s:%d"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "brak architektury dla %s przy %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "b³êdna opcja '%s' przy %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "Nieznany system: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/pt.po b/po/pt.po
index 57e92760b..319bad1f5 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-08-01 21:11+01:00\n"
"Last-Translator: Pedro Morais <morais@poli.org>\n"
"Language-Team: pt <morais@poli.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=iso-latin1\n"
"Content-Transfer-Encoding: none\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -25,39 +25,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr "não consigo abrir ficheiro spec %s: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -688,15 +688,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1236,7 +1236,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1421,644 +1421,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2073,301 +2073,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2377,669 +2377,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3048,19 +3049,19 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr ""
"não consegui abrir %s/packages.rpm\n"
"\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3070,7 +3071,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3080,7 +3081,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3091,358 +3092,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3502,7 +3408,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3534,308 +3440,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 91932c5fc..5cd1676c7 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -2,9 +2,9 @@
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
#
msgid ""
-msgstr "POT-Creation-Date: 2000-08-14 09:19-0400\n"
+msgstr "POT-Creation-Date: 2000-08-27 20:56-0400\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -21,41 +21,41 @@ msgid "Unable to open spec file %s: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
#. Give up
-#: build.c:149
+#: build.c:147
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
-#: build.c:176
+#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "instale pacote"
@@ -778,15 +778,15 @@ msgstr "pacote binário (prep, compile, instale, pacote)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "pacote bin/src (prep, compile, instale, pacote)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "pule direto para o estágio especificado (somente para c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "remova a árvore de construção quando terminar"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "remova a árvore de construção quando terminar"
@@ -1415,7 +1415,7 @@ msgstr " -b<estágio> <spec> "
msgid " Package specification options:"
msgstr " Opcões para especificação de pacotes:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "pesquise todos os pacotes"
@@ -1640,7 +1640,7 @@ msgid "no tar files given for build"
msgstr "não foram passados arquivos tar para construção"
# , c-format
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "Não consegui abrir: %s\n"
@@ -1653,669 +1653,669 @@ msgstr "Não consegui abrir: %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "RPM versão %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Construção falhou.\n"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
# , c-format
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
# , c-format
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/files.c:713
+#: build/files.c:714
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
# , c-format
-#: build/files.c:812
+#: build/files.c:813
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
# , c-format
-#: build/files.c:1010
+#: build/files.c:1011
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:1020
+#: build/files.c:1021
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "não foi passado pacote para desinstalação"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "não foi passado pacote para desinstalação"
# , c-format
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
# , c-format
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
# , c-format
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
# , c-format
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/files.c:1720
+#: build/files.c:1721
#, fuzzy, c-format
msgid "%s failed"
msgstr "Construção falhou.\n"
# , c-format
-#: build/files.c:1724
+#: build/files.c:1725
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "Não consegui abrir o pipe tar: %s\n"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
# , c-format
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "Não consegui abrir o pipe tar: %s\n"
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
# , c-format
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
# , c-format
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
# , c-format
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:434
+#: build/pack.c:437
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/pack.c:449
+#: build/pack.c:452
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "gere assinatura PGP"
# , c-format
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
# , c-format
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
# , c-format
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
# , c-format
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcões para especificação de pacotes:"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
# , c-format
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
# , c-format
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "argumentos para o --dbpath devem começar com uma /"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
# , c-format
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "Não consegui abrir: %s\n"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
# , c-format
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
@@ -2331,307 +2331,307 @@ msgstr "Não consegui abrir: %s\n"
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
# , c-format
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
#, fuzzy
msgid "No buildable architectures"
msgstr "%s não pode ser construido nesta arquitetura\n"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "não foi passado pacote para desinstalação"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
# , c-format
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "Construção falhou.\n"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "não foi passado pacote para instalação"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "não foi passado pacote para desinstalação"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
# , c-format
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, fuzzy, c-format
msgid "cannot get %s lock on database"
msgstr "não foi passado pacote para desinstalação"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "não foi passado pacote para desinstalação"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2641,712 +2641,713 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
# , c-format
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
# , c-format
-#: lib/fs.c:132
+#: lib/fs.c:136
#, fuzzy, c-format
msgid "failed to open %s: %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
#, fuzzy
msgid "unexpected ]"
msgstr "fonte de pesquisa não esperado"
-#: lib/header.c:1593
+#: lib/header.c:1626
#, fuzzy
msgid "unexpected }"
msgstr "fonte de pesquisa não esperado"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
#, fuzzy
msgid "installing a source package\n"
msgstr "instale pacote"
# , c-format
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
# , c-format
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
#, fuzzy
msgid "source package contains no .spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "não foi passado pacote para instalação"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "pacote binário (prep, compile, instale, pacote)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "instale pacote"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
#, fuzzy
msgid "override build root"
msgstr "use s como o root da construção"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "não execute nenhum estágio"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "remova a árvore de construção quando terminar"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "não foi passado pacote para desinstalação"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "pesquise todos os pacotes"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "modo pesquisa"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr "pesquise todos os pacotes"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "modo pesquisa"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "modo pesquisa"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
#, fuzzy
msgid "query the packages which require a capability"
msgstr "pesquise pacotes que requerem capacidade <i>"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "pesquise pacotes que fornecem a capacidade <i>"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr "liste somente os arquivos de configuração (implica -l)"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "instale documentação"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr "mostre informação do pacote"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "instale pacote"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
#, fuzzy
msgid "use the following query format"
msgstr "fonte de pesquisa não esperado"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "pesquise o pacote ao qual <arquivo> pertence"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr "mostre a lista de arquivos do pacote"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "não foi passado pacote para instalação"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
#, fuzzy
msgid "not installed "
msgstr "não foi passado pacote para instalação"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
# , c-format
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "Não consegui abrir: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "Construção falhou.\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "pesquise todos os pacotes"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, fuzzy, c-format
msgid "no package triggers %s\n"
msgstr "não foram passados pacotes para assinatura"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, fuzzy, c-format
msgid "package %s is not installed\n"
msgstr "não foi passado pacote para instalação"
# , c-format
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "Construção falhou.\n"
# , c-format
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
# , c-format
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3356,18 +3357,18 @@ msgid ""
msgstr ""
# , c-format
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3377,7 +3378,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3387,7 +3388,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3399,131 +3400,131 @@ msgid ""
msgstr ""
# , c-format
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "Não consegui abrir: %s\n"
# , c-format
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "não foi passado pacote para instalação"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "não foi passado pacote para desinstalação"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
# , c-format
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
# , c-format
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
# , c-format
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
@@ -3536,32 +3537,32 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "RPM versão %s\n"
# , c-format
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
#, fuzzy
msgid "counting packages to install\n"
msgstr "não foi passado pacote para instalação"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, fuzzy, c-format
msgid "found %d packages\n"
msgstr "pesquise todos os pacotes"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
@@ -3574,216 +3575,117 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, fuzzy, c-format
msgid "Retrieving %s\n"
msgstr "RPM versão %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
# , c-format
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "não foi passado pacote para instalação"
# , c-format
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "não foi passado pacote para instalação"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
#, fuzzy
msgid "failed dependencies:\n"
msgstr "lista dependências do pacote"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
#, fuzzy
msgid "installing binary packages\n"
msgstr "instale pacote"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
#, fuzzy
msgid "removing these packages would break dependencies:\n"
msgstr "lista dependências do pacote"
# , c-format
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-# , c-format
-#: lib/rpmrc.c:573
-#, fuzzy, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Não consegui abrir: %s\n"
-
-# , c-format
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, fuzzy, c-format
-msgid "Failed to read %s: %s."
-msgstr "Não consegui ler o arquivo spec de %s\n"
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-# , c-format
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "Não consegui abrir: %s\n"
-
-# , c-format
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "Não consegui abrir: %s\n"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3846,7 +3748,7 @@ msgstr "gere assinatura PGP"
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3882,33 +3784,33 @@ msgstr "gere assinatura PGP"
msgid "Generating signature using GPG.\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
@@ -3920,7 +3822,7 @@ msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "RPM versão %s\n"
@@ -3933,283 +3835,303 @@ msgstr "RPM versão %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM versão %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
# , c-format
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Não consegui abrir: %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "instale pacote"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "não foi passado pacote para desinstalação"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
# , c-format
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "Não consegui ler o arquivo spec de %s\n"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
# , c-format
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "Não consegui abrir: %s\n"
# , c-format
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "Não consegui abrir o pipe tar: %s\n"
+# , c-format
+#, fuzzy
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Não consegui abrir: %s\n"
+
+# , c-format
+#, fuzzy
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Não consegui ler o arquivo spec de %s\n"
+
+# , c-format
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "Não consegui abrir: %s\n"
+
+# , c-format
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "Não consegui abrir: %s\n"
+
#, fuzzy
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
diff --git a/po/ro.po b/po/ro.po
index c8f5bb4b6..cbd4d8d76 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -23,39 +23,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -686,15 +686,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1234,7 +1234,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1419,644 +1419,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2071,301 +2071,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2375,669 +2375,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3046,17 +3047,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3066,7 +3067,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3076,7 +3077,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3087,358 +3088,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3498,7 +3404,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3530,308 +3436,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index ebac1c752..93415f692 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 1.1\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-08-08 01:20+0300\n"
"Last-Translator: Leon Kanter <leon@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -10,7 +10,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Date: 1999-04-03 12:20+0200\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ %s/packages.rpm\n"
@@ -24,39 +24,39 @@ msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÓÂÏÒËÉ:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ spec ÆÁÊÌÁ: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ËÁÎÁÌÁ tar: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÆÁÊÌÁ spec ÉÚ %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "îÅ ÍÏÇÕ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "îÅ ÏÂÙÞÎÙÊ ÆÁÊÌ: %s\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "æÁÊÌ %s ÎÅ ÐÏÈÏÖ ÎÁ spec ÆÁÊÌ.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "ãÅÌÅ×ÙÅ ÐÌÁÔÆÏÒÍÙ: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "óÂÏÒËÁ ÄÌÑ ÃÅÌÅ×ÏÊ ÐÌÁÔÆÏÒÍÙ %s\n"
@@ -719,15 +719,15 @@ msgid "bin/src package (prep, compile, install, package)"
msgstr ""
"bin/src package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install, ÓÏÚÄÁÔØ RPM É SRPM)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "ÐÅÒÅÊÔÉ ÎÅÐÏÓÒÅÄÓÔ×ÅÎÎÏ Ë ÕËÁÚÁÎÎÏÍÕ ÜÔÁÐÕ (ÔÏÌØËÏ ÄÌÑ c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ×"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÉÓÈÏÄÎÉËb"
@@ -1304,7 +1304,7 @@ msgstr " --httpport <ÐÏÒÔ> "
msgid " Package specification options:"
msgstr " ïÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ×ÓÅ ÐÁËÅÔÙ"
@@ -1490,603 +1490,603 @@ msgstr "ÎÅ ÚÁÄÁÎ spec-ÆÁÊÌ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
msgid "no tar files given for build"
msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ"
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr "éÓÐÏÌÎÑÅÔÓÑ: %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "éÓÐÏÌÎÉÔØ %s ÎÅ ÕÄÁÌÏÓØ (%s): %s"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "îÅ×ÅÒÎÙÊ ËÏÄ ×ÏÚ×ÒÁÔÁ ÉÚ %s (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ =="
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ &&"
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ ||"
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr "ÏÛÉÂËÁ ÁÎÁÌÉÚÁ ×ÙÒÁÖÅÎÉÑ"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "ÎÅÚÁËÒÙÔÁÑ ("
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr "ÎÅÏÐÒÅÄÅÌÅÎÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "ÔÉÐÙ ÄÏÌÖÎÙ ÓÏ×ÐÁÄÁÔØ"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* / ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& É || ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÓÔÒÏË"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "ïÛÉÂËÁ TIMECHECK: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s(%s"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅÎ %s: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "îÅ ÐÒÏÂÅÌ ÓÌÅÄÕÅÔ ÐÏÓÌÅ %s(): %s"
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ: %s(%s)"
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á: %s(%s)"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(%s)"
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)"
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÚÏÊÄÅÎ"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "ôÏÌØËÏ ÏÄÉÎ ÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "ä×Á ÆÁÊÌÁ ÎÁ ÏÄÎÏÊ ÓÔÒÏËÅ: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "æÁÊÌ ÕËÁÚÁÎ Ä×ÁÖÄÙ: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s"
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ÈÏÚÑÉÎ/ÇÒÕÐÐÁ: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "æÁÊÌ %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "ÓÔÒÏËÁ: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ÈÏÚÑÉÎ/ÇÒÕÐÐÁ: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ %s: %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "îÅ ÍÏÇÕ ÆÏÒËÎÕÔØ %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s ÎÅ ÕÄÁÌÏÓØ"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "ïÐÒÅÄÅÌÑÀÔÓÑ ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s"
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: äÏÓÔÉÇÎÕÔ ÐÒÅÄÅÌ × getUname()\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: äÏÓÔÉÇÎÕÔ ÐÒÅÄÅÌ × getGname()\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "îÅ ÍÏÇÕ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÑ ËÏÍÐØÀÔÅÒÁ: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á ÎÁ ÆÁÊÌÅ %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy: ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy: ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreIn: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreUn: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostIn: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostUn: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ VerifyScript: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ Trigger script: %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: ÏÔËÒÙÔÉÅ %s: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: ÞÔÅÎÉÅ %s: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s - ÎÅ ÐÁËÅÔ RPM\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: ÞÉÔÁÅÔÓÑ ÚÁÇÏÌÏ×ÏË ÉÚ %s\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "îÅ×ÅÒÎÙÅ ÄÁÎÎÙÅ CSA"
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ %s: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "úÁÐÉÓÁÎ: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÇÅÎÅÒÉÒÏ×ÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÅ %s"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "ÚÁÐÉÓÉ %%changelog ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó *"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "ÎÅÐÏÌÎÁÑ ÚÁÐÉÓØ %%changelog"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "ÎÅ×ÅÒÎÁÑ ÄÁÔÁ × %%changelog: %s"
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog ÎÅ × ÎÉÓÈÏÄÑÝÅÍ ÈÒÏÎÏÌÏÇÉÞÅÓËÏÍ ÐÏÒÑÄËÅ"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "ÐÒÏÐÕÝÅÎÏ ÉÍÑ × %%changelog"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "ÎÅÔ ÏÐÉÓÁÎÉÑ × %%changelog"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÁÎÁÌÉÚÁ %%description: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÁÑ ÏÐÃÉÑ %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "ÓÔÒÏËÁ %d: óÌÉÛËÏÍ ÍÎÏÇÏ ÉÍÅÎ: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "ÓÔÒÏËÁ %d: ðÁËÅÔ ÎÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ ÏÐÉÓÁÎÉÅ"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÒÁÚÂÏÒÁ %%files: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓÐÉÓÏË %%files"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "ïó ÎÅ ×ËÌÀÞÅÎÁ: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "ðÏÌÅ %s ÏÂÑÚÁÎÏ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ × ÐÁËÅÔÅ: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "äÕÂÌÉÒÕÀÝÉÅÓÑ ÚÁÐÉÓÉ %s × ÐÁËÅÔÅ: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÐÉËÔÏÇÒÁÍÍÙ: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ ÑÒÌÙËÁ: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "ÓÔÒÏËÁ %d: ðÕÓÔÏÊ ÑÒÌÙË: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "ÓÔÒÏËÁ %d: ðÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎÞÉ×ÁÔØÓÑ ÎÁ \"/\": %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "ÓÔÒÏËÁ %d: ðÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: îÅÉÚ×ÅÓÔÎÙÊ ÑÒÌÙË %d"
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÁËÅÔÁ: %s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "ðÁËÅÔ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÑÒÌÙË: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ BuildRoot"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "îÅ×ÅÒÎÙÊ ÉÓÈÏÄÎÉË: %s: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "îÅÔ ÚÁÐÌÁÔÙ ÎÏÍÅÒ %d"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "îÅÔ ÉÓÈÏÄÎÉËÁ ÎÏÍÅÒ %d"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "îÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ nosource %s: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "ïÛÉÂËÁ ÁÎÁÌÉÚÁ %%setup: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%setup %c: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÁÑ ÏÐÃÉÑ %%setup %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -b ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -z ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -p ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch -p: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÚÁÐÌÁÔ!"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÊ %%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
@@ -2094,42 +2094,42 @@ msgstr ""
"ÓÔÒÏËÁ %d: %s: ôÏËÅÎÙ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó ÂÕË×Ù, ÃÉÆÒÙ, '_' ÉÌÉ "
"'/': %s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "ÓÔÒÏËÁ %d: éÍÅÎÁ ÆÁÊÌÏ× ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "ÓÔÒÏËÁ %d: ÷ÅÒÓÉÉ × ÉÍÅÎÁÈ ÆÁÊÌÏ× ÎÅÄÏÐÕÓÔÉÍÙ: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr "ÓÔÒÏËÁ %d: ôÒÅÂÕÅÔÓÑ ×ÅÒÓÉÑ: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "ÓÔÒÏËÁ %d: ÔÒÉÇÇÅÒÙ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ --: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "ÓÔÒÏËÁ %d: ïÛÉÂËÁ ÁÎÁÌÉÚÁ %s: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "ÓÔÒÏËÁ %d: ðÒÏÇÒÁÍÍÙ × ÓËÒÉÐÔÁÈ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "ÓÔÒÏËÁ %d: %s"
@@ -2144,301 +2144,301 @@ msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
msgid "Unclosed %%if"
msgstr "îÅÚÁËÒÙÔÙÊ %%if"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d"
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "îÅÔ ÁÒÈÉÔÅËÔÕÒ, ËÏÔÏÒÙÅ ÍÏÖÎÏ ÐÏÓÔÒÏÉÔØ"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "ÁÒÈÉ× = %s, fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "ÎÅ ÍÏÇÕ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr "(ÏÛÉÂËÁ 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "îÅ×ÅÒÎÙÊ magic"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÆÁÊÌÁ"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr "ÎÅ ÕÄÁÌÏÓØ - "
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr "db%d ÏÛÉÂËÁ(%d)"
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr " ÉÓÐÏÌÎÑÅÔÓÑ %s"
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr "ÚÁËÒÙÔ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr "ÕÄẠ́ΠÆÁÊÌ ÂÁÚÕ ÄÁÎÎÙÈ %s\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "ÏÔËÒÙ×ÅÔÓÑ ÆÁÊÌ %s ÂÁÚÙ ÄÁÎÎÙÈ × ÒÅÖÉÍÅ 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ %s ÄÏÓÔÕÐ Ë ÂÁÚÅ ÄÁÎÎÙÈ"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2448,669 +2448,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(ÎÅ ÞÉÓÌÏ)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÒÁÚÍÅÒÁ fugger(??): %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "ÎÅ ÍÏÇÕ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ ÏÂ %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE count must be 1.\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "îÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÄÌÑ headerAddEntry(): %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"{\" ÐÏÓÌÅ \"%\""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"}\" ÐÏÓÌÅ \"%{\""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "ÐÕÓÔÏÊ ÆÏÒÍÁÔ ÔÜÇÁ"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "ÐÕÓÔÏÅ ÉÍÑ ÔÜÇÁ"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "× ËÏÎÃÅ ÍÁÓÓÉ×Á ÏÖÉÄÁÌÁÓØ \"]\""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"]\""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"}\""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÓÑ \"?\""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÁÓØ \"{\""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÁÓØ \"}\""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÁÓØ \"{\""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "ÚÎÁÞÅÎÉÅ %%instchangelog × ÍÁËÒÏÆÁÊÌÅ ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ, Á ÏÎÏ ÎÅÔ..."
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr " ÎÁ ÆÁÊÌÅ "
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "ÎÅ ÍÏÇÕ ÐÉÓÁÔØ × %s"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "ÆÁÊÌ spec ×: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅÎ ÂÉÎÁÒÎÙÊ"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁÎ ËÁË %s"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅÎ ËÁË %s"
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s"
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 3"
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 3"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "buildroot ÕÖÅ ÚÁÄÁÎ"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr "ÐÏÄÓÔÁ×ÉÔØ ÓÅËÃÉÉ i18n ÉÚ ÓÌÅÄÕÀÝÅÇÏ ËÁÔÁÌÏÇÁ"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr "binary package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install É ÓÏÚÄÁÔØ RPM)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ build root"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ× ÓÂÏÒËÉ"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "ÎÅ ÐÒÉÎÉÍÁÔØ ÓÔÒÏË I18N ÉÚ spec-ÆÁÊÌÁ"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ spec-ÆÁÊÌ"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ ÃÅÌÅ×ÕÀ ÐÌÁÔÆÏÒÍÕ"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÓÏ spec-ÆÁÊÌÏÍ"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ ÆÁÊÌ"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr "ÚÁÐÒÏÓ ÐÁËÅÔÏ× × ÇÒÕÐÐÅ"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr "ÚÁÐÒÏÓÉÔØ ÆÁÊÌ ÐÁËÅÔÁ"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr "ÒÅÖÉÍ ÚÁÐÒÏÓÁ"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr "ÚÁÐÒÏÓÉÔØ spec-ÆÁÊÌ"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr "ÒÅÖÉÍ ÚÁÐÒÏÓÁ"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr "×Ù×ÅÓÔÉ ÂÁÚÏ×ÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr "ÐÏËÁÚÁÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "ÉÓÐ. ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr "ÐÏÄÓÔÁ×ÉÔØ ÓÅËÃÉÉ i18n ÉÚ ÓÌÅÄÕÀÝÅÇÏ ËÁÔÁÌÏÇÁ"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÏËÁÚÁÎÎÙÈ ÆÁÊÌÏ×"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr "×Ù×ÅÓÔÉ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " ÎÕÖÅÎ ÄÌÑ %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " ËÏÎÆÌÉËÔÕÅÔ Ó %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "ÐÁËÅÔ %s-%s-%s - ÄÌÑ ÄÒÕÇÏÊ ÁÒÈÉÔÅËÔÕÒÙ"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "ÐÁËÅÔ %s-%s-%s - ÄÌÑ ÄÒÕÇÏÊ ïó"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "ÐÁËÅÔ %s-%s-%s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "ÐÕÔØ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ ÄÌÑ ÐÁËÅÔÁ %s-%s-%s"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr "ËÏÎÆÌÉËÔ ÆÁÊÌÁ %s ÐÒÉ ÐÏÐÙÔËÁÈ ÕÓÔÁÎÏ×ËÉ %s-%s-%s É %s-%s-%s"
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr "ÆÁÊÌ %s ÉÚ ÐÁËÅÔÁ %s-%s-%s ËÏÎÆÌÉËÔÕÅÔ Ó ÆÁÊÌÏÍ ÉÚ ÐÁËÅÔÁ %s-%s-%s"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "ÐÁËÅÔ %s-%s-%s (ËÏÔÏÒÙÊ ÎÏ×ÅÅ, ÞÅÍ %s-%s-%s) ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "ÄÌÑ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ %s-%s-%s ÎÕÖÎÏ %ld%c ÎÁ ÆÁÊÌÏ×ÏÊ ÓÉÓÔÅÍÅ %s"
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s-%s-%s"
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "ÎÏÒÍÁÌØÎÙÊ "
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "ÚÁÍÅÎÅÎÎÙÊ "
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ "
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "ÓÅÔÅ×ÏÊ "
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(ÎÅÉÚ×. %3d) "
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(ÓÏÓÔ. ÎÅÔ) "
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID"
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr "ÏÔËÒÙÔÉÅ %s ÎÅ ÕÄÁÌÏÓØ\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "ÚÁÐÒÏÓÙ Ë SRPM × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "ÚÁÐÒÏÓ spec-ÆÁÊÌÁ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ ÍÏÇÕ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "ÆÁÊÌ %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr "ÚÁÐÉÓØ ÐÁËÅÔÁ ÎÏÍÅÒ %d\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: ïÛÉÂËÁ ÏÔËÒÙÔÉÑ\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ readLead\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ readLead\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: ÏÛÉÂËÁ readLead\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ readLead\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "îå Ok"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr " (ïôóõôóô÷õàô ëìàþé:"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr " ("
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "Ok"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3119,17 +3120,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÎÁ %s:%d"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3139,7 +3140,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3149,7 +3150,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3160,26 +3161,26 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
@@ -3188,332 +3189,237 @@ msgstr ""
"ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ"
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÀ ÂÁÚÕ × ËÏÒÎÅ×ÏÍ ËÁÔÁÌÏÇÅ %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "ÏÔËÒÙ×ÁÀ ÓÔÁÒÕÀ ÂÁÚÕ\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "ÓÞÉÔÁÀ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "ÉÝÕ ÐÁËÅÔÙ ÄÌÑ ÐÏÌÕÞÅÎÉÑ Ó ftp/http\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "ÐÒÏÐÕÓËÁÀ %s - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "ðÏÌÕÞÁÀ %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr " ... ËÁË %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "ÐÒÏÐÕÓËÁÀ %s - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "ÐÏÌÕÞÅÎÏ %d ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "ÆÁÊÌ %s ÔÒÅÂÕÅÔ ÂÏÌÅÅ ÎÏ×ÏÊ ×ÅÒÓÉÉ RPM\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "õÓÔÁÎÁ×ÌÉ×ÁÀ %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ×ÔÏÒÏÅ ':' × %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÎÁÚ×ÁÎÉÅ ÁÒÈÉÔÅËÔÕÒÙ × %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÄÁÎÎÙÈ × %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÄÁÎÎÙÈ × %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ arch/os: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "îÅ ÍÏÇÕ ÒÁÓËÒÙÔØ %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "îÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ %s: %s."
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' × %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÎÁ %s:%d"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "ÎÅ×ÅÒÎÁÑ ÏÐÃÉÑ '%s' × %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "ÒÁÚÍÅÒ ÐÏÄÐÉÓÉ : %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "èÅÄÅÒ + áÒÈÉ× : %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "ÏÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr "ÎÅ ÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
@@ -3574,7 +3480,7 @@ msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ"
msgid "Got %d bytes of PGP sig\n"
msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ gpg"
@@ -3606,310 +3512,364 @@ msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
msgid "Generating signature using GPG.\n"
msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
"îÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ pgp. éÓÐÏÌØÚÕÊÔÅ --nopgp ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ PGP."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "ÏÛÉÂËÁ ÚÁÐÕÓËÁ!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
"îÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ gpg. éÓÐÏÌØÚÕÊÔÅ --nogpg ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ GPG."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ pgp"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ"
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr "ÉÓËÌÀÞÁÀ %s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ"
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÇÒÕÐÐ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "õÄÁÌÏÓØ"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr "îÅ×ÅÒÎÙÊ ÏÔ×ÅÔ ÓÅÒ×ÅÒÁ"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÓÅÒ×ÅÒÁ"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "ôÁÊÍÁÕÔ ÓÅÒ×ÅÒÁ"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ IP-ÁÄÒÅÓ ÓÅÒ×ÅÒÁ"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÉÍÑ ÓÅÒ×ÅÒÁ"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr "îÅ ÍÏÇÕ ÓÏÅÄÉÎÉÔØÓÑ Ó ÓÅÒ×ÅÒÏÍ"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ Ó ÓÅÒ×ÅÒÏÍ"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÌÏËÁÌØÎÙÊ ÆÁÊÌ"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "ïÛÉÂËÁ ÐÒÉ ÐÅÒÅ×ÏÄÅ ÕÄÁÌÅÎÎÏÇÏ ÓÅÒ×ÅÒÁ × ÐÁÓÓÉ×ÎÙÊ ÒÅÖÉÍ"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ ÎÁ ÓÅÒ×ÅÒÅ"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "ïÔÍÅÎÁ × ÐÒÏÃÅÓÓÅ"
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== ÁËÔÉ×Î %d ÐÕÓÔ. %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(ÐÕÓÔÏ)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(ÐÕÓÔÏ)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÏÅ ÔÅÌÏ"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÙÅ ÏÐÃÉÉ"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÐÕÓÔÏÅ ÔÅÌÏ"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "íÁËÒÏÓ %%%s ÒÁÓËÒÙÔØ ÎÅ ÕÄÁÌÏÓØ"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "íÁËÒÏÓ %%%s (%s) ÎÅ ÂÙÌ ÉÓÐÏÌØÚÏ×ÁÎ ÎÉÖÅ ÕÒÏ×ÎÑ %d"
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÏÐÃÉÑ %c × %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "çÌÕÂÉÎÁ ÒÅËÕÒÓÉÉ(%d) ÂÏÌØÛÅ max(%d)"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr "îÅÚÁËÒÙÔÁÑ %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr "%% Ó ÐÏÓÌÅÄÕÀÝÉÍ ÎÅÒÁÚÂÉÒÁÅÍÙÍ ÍÁËÒÏÓÏÍ"
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "íÁËÒÏÓ %s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "æÁÊÌ %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "æÁÊÌ %s ÍÅÎØÛÅ %d ÂÁÊÔ"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "ÏÛÉÂËÁ: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "ÆÁÔÁÌØÎÁÑ ÏÛÉÂËÁ: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "×ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ (ÂÁÇÁ rpm): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "ðÁÒÏÌØ ÄÌÑ %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "ÏÛÉÂËÁ: %sport ÄÏÌÖÅÎ ÂÙÔØ ÞÉÓÌÏÍ\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "url port ÄÏÌÖÅÎ ÂÙÔØ ÞÉÓÌÏÍ\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s\n"
+
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ×ÔÏÒÏÅ ':' × %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÎÁÚ×ÁÎÉÅ ÁÒÈÉÔÅËÔÕÒÙ × %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÄÁÎÎÙÈ × %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÄÁÎÎÙÈ × %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "îÅ×ÅÒÎÙÊ ÎÏÍÅÒ arch/os: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "îÅÐÏÌÎÁÑ ÓÔÒÏËÁ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÁÒÇÕÍÅÎÔÏ× × ÓÔÒÏËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ × %s:%d"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "îÅ ÍÏÇÕ ÒÁÓËÒÙÔØ %s"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "îÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ %s: %s."
+
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ':' × %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÇÕÍÅÎÔ ÄÌÑ %s × %s:%d"
+
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "ÏÛÉÂËÁ ÒÁÓËÒÙÔÉÑ %s ÎÁ %s:%d \"%s\""
+
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÎÁ %s:%d"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ÁÒÈÉÔÅËÔÕÒÁ ÄÌÑ %s × %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "ÎÅ×ÅÒÎÁÑ ÏÐÃÉÑ '%s' × %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
diff --git a/po/sk.po b/po/sk.po
index be2d019e1..829969ee8 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
@@ -24,39 +24,39 @@ msgstr "nevyrie¹ené závislosti:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Nie je mo¾né otvori» spec súbor: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Otvorenie rúry pre tar zlyhalo: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Nie je mo¾né preèíta» spec súbor z %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Nie je mo¾né premenova» %s na %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Súbor nie je obyèajný súbor: %s\n"
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s zrejme nie je RPM balík\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, fuzzy, c-format
msgid "Building target platforms: %s\n"
msgstr "predefinova» cieµovú platformu"
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "vyhµadáva sa balík %s\n"
@@ -745,15 +745,15 @@ msgstr "binárny balík (príprava, kompilácia, in¹talácia, zabalenie)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "binárny a zdrojový balík (príprava, kompilácia, in¹talácia, zabalenie)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "preskoèi» priamo k urèenej etape (iba pre c, i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "po ukonèení odstráni» adresár, v ktorom sa balík zostavoval"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
@@ -1344,7 +1344,7 @@ msgstr " --httpport <port> "
msgid " Package specification options:"
msgstr " Voµby pre ¹pecifikáciu balíkov"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "opýta» sa na v¹etky balíky"
@@ -1570,650 +1570,650 @@ msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
msgid "no tar files given for build"
msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "Nie je mo¾né otvori» doèasný súbor"
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Vykonáva sa: %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Vykonanie %s zlyhalo (%s)"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "Chybný výstupný kód z %s (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "chyba syntaxe vo výraze"
-#: build/expression.c:241
+#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "chyba syntaxe vo výraze"
-#: build/expression.c:250
+#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "chyba syntaxe vo výraze"
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr "chyba pri analýze výrazu"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "nepárová ("
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr "nedefinovaný identifikátor"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- ibe pre èísla"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! iba pre èísla"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "typy sa musia zhodova»"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* / nie sú podporované pre re»azce"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- nie je podporované pre re»azce"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& a || nie sú podporované pre re»azce"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr "chyba syntaxe vo výraze"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "chyba PREKROÈENIA ÈASU: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "chýbajúce %s\n"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "chýbajúca ':' na %s:%d"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "Chybný %s prvok: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Chybná %s() syntax: %s"
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Chybná ¹pecifikácia práv %s(): %s"
-#: build/files.c:407
+#: build/files.c:408
#, fuzzy, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "Chybná ¹pecifikácia práv adresára %s(): %s"
-#: build/files.c:531
+#: build/files.c:532
#, fuzzy
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Iba jeden záznam v %%lang(): %s"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "Dosiahnutý limit pre %%docdir"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "Iba jeden argument pre %%docdir"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "Dva súbory na riadku: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Súbory musia zaèína» znakom \"/\": %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Nie je mo¾né mie¹a» ¹peciálne %%doc s inými formami: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "Súbor zadaný dvakrát: %s."
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Súbor nesúhlasí s prefixom (%s): %s."
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "Súbor nebol nájdený: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Chybný vlastník/skupina: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Súbor %4d: 0%o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Súbor nebol nájdený: %s"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "riadok: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "súbor %s: %s\n"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "Chybný vlastník/skupina: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Nie je mo¾né spusti» %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Nie je mo¾né vytvori» proces %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s zlyhalo"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
-#: build/files.c:1820
+#: build/files.c:1821
#, fuzzy, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Spracovávajú sa súbory: %s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: Dosiahnutý limit v getUname()\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: Dosiahnutý limit v getGname()\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "Nie je mo¾né kanonizova» názov poèítaèa: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy zápis zlyhal: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy èítanie zlyhalo: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Nie je mo¾né otvori» PreIn súbor: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Nie je mo¾né otvori» PreUn súbor: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Nie je mo¾né otvori» PostIn súbor: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Nie je mo¾né otvori» PostUn súbor: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Nie je mo¾né otvori» VerifyScript súbor: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Nie je mo¾né otvori» Trigger skriptový súbor: %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: otvorenie %s: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: èítanie %s: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s nie je RPM balík\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: èítanie hlavièky %s\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "Chybné CSA dáta"
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "Otvorenie %s zlyhalo\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Nie je preèíta» sigtarget: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Nie je preèíta» sigtarget: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "Nie je mo¾né zapísa» balík: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapísané: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Nie je mo¾né vytvori» meno výstupného súboru pre balík %s: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "nie je mo¾né zapísa» do %s: "
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "riadok %d: druhý %s"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "%%changelog záznamy musia zaèína» *"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "nekompletný %%changelog záznam"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "chybný dátum v %%changelog: %s "
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog nie sú v zostupnom chronologickom poradí"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "chýbajúce meno v %%changelog"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "¾iadny popis v %%changelog"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "riadok %d: Chyba pri analýze %%description: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "riadok %d: Chybná voµba %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "riadok %d: Priveµa názvov: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "riadok %d: Balík neexistuje: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "riadok %d: Druhý popis"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "riadok %d: Chyba pri analýze %%files: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "riadok %d: Druhý %%files zoznam"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Architektúra je vynechaná: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "Architektúra nie je obsiahnutá: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je vynechaný: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "OS nie je obsiahnutý: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "V balíku musí existova» pole %s: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Duplicitné záznamy %s v balíku: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Nie je mo¾né preèíta» ikonu: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznámy typ ikony: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "riadok %d: Znetvorený popis: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "riadok %d: Prázdny popis: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "riadok %d: Neprípustný znak '-' v %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, fuzzy, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "riadok %d: Docdir musí zaèína» '/': %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "riadok %d: Epoch/Serial pole musí by» èíslo: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "riadok %d: Chybný formát BuildArchitecture: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interná chyba: Èudný popis %d "
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "Chybná ¹pecifikácia balíka: %s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "Balík u¾ existuje: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "riadok %d: Neznámy popis: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "Spec súbor nemô¾e pou¾i» BuildRoot"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "Chybný zdroj %s: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "Neexistuje patch èíslo %d"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "Neexistuje zdroj èíslo %d"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Nebolo mo¾né prenies» nie-zdroj %s: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "Chyba pri analýze %%setup: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "riadok %d: Chybný argument pre %%setup %c: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "riadok %d: Chybná voµba pre %%setup %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "riadok %d: %%patch -b potrebuje argument: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "riadok %d: %%patch -z potrebuje argument: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "riadok %d: %%patch -p potrebuje argument: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "riadok %d: Chybný argument pre %%patch -p: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "Priveµa záplat!"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "riadok %d: Chybný argument pre %%patch: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "riadok %d: druhý %%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "riadok %d: %s: prvky musia zaèína» alfanumerickým znakom: %s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "riadok %d: Obsoletes: neobsahuje ¾iadne názvy súborov: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "riadok %d: Názvy súborov v %s neobsahujú verzie: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "riadok %d: V %s sú vy¾adované verzie: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "riadok %d: triggers musia obsahova» --: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "riadok %d: Chyba pri analýze %s: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "riadok %d: program skriptu musí zaèína» '/': %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "riadok %d: Druhý %s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "riadok %d: %s"
@@ -2228,301 +2228,301 @@ msgstr "otvorenie zlyhalo: %s\n"
msgid "Unclosed %%if"
msgstr "Neuzavretý %%if"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: %%else bez if"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: %%endif bez if"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "znetvorený príkaz %%include"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "®iadne zostaviteµné architektúry"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "Balík neobsahuje %%description: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "archív = %s, fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "riadok %d: Chybné èíslo: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "riadok %d: Chybné no%s èíslo: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "riadok %d: Chybné %s èíslo: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "premenovanie %s na %s zlyhalo: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr "(chyba 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "Chybné magické èíslo"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "Chybná/neèitateµná hlavièka"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "Priveµká hlavièka"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr "Neznámy typ súboru"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr "Interná chyba"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr " zlyhalo - "
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "balík %s koliduje: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "sluèka v re»azi po¾iadaviek: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "chybný stav súboru: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "otvára sa databáza s právami 0x%x v %s\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "výhradný"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "zdieµaný"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db3.c:484
+#: lib/db3.c:492
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otvára sa databáza s právami 0x%x v %s\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2532,691 +2532,692 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(nie je èíslo)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() nevrátil veµkos» fuggeru: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "nepodarilo sa zisti» stav %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "nepodarilo sa otvori» %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "súbor %s sa nachádza na neznámom zariadení"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "Typ údajov %d nie je podorovaný\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Chybný poèet pre headerAddEntry(): %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "chýbajúce { po %"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "chýbajúce } po %{"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "prázdny tag formát"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "prázdne meno tagu"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "neznámy tag"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "] oèakávané na konci poµa"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "neoèakávané ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "neoèakávané }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "? oèakávané vo výraze"
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "{ oèakávané po ? vo výraze"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "} oèakávané vo výraze"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ": oèakávané po ? podvýraze"
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "{ oèakávané po : vo výraze"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "| oèakávené na konci výrazu"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(neznámy typ)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr " súbor: akcia %s: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "skupina %s neexistuje - pou¾ije sa root"
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "hodnota %%instchangelog v makro-súbore by mala by» èíselná, ale nie je"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "rozbalenie archívu zlyhalo%s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr " pre súbor "
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "in¹taluje sa zdrojový balík\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "zdroje v: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "nie je mo¾né zapísa» do %s: "
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "spec-súbor v: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "premenováva sa %s na %s\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "premenovanie %s na %s zlyhalo: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "oèakávaný zdrojový balík, nájdený binárny"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "balík: %s-%s-%s test súborov = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "varovanie: %s vytvorené ako %s"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "varovanie: %s uchovaný ako %s"
-#: lib/install.c:1128
+#: lib/install.c:1154
#, fuzzy
msgid "running postinstall scripts (if any)\n"
msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "chyba pri vytváraní doèasného súboru %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "buildroot u¾ bol zadaný"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
#, fuzzy
msgid "build source package from tar ball"
msgstr "zostavi» balík pre OS/architektúru <os>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "binárny balík (príprava, kompilácia, in¹talácia, zabalenie)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "in¹taluje sa zdrojový balík\n"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr "predefinova» adresár pre zostavenie balíka"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr "nevykona» ¾iadne etapy zostavenia"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "neakceptova» lokalizované re»azce zo spec-súboru"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "predefinova» cieµovú platformu"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "pre preklad re»azcov pou¾i» katalóg správ spec-súborov"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "opýta» sa na balík vlastniaci <súbor>"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "opýta» sa v¹etkých balíkov v skupine"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "opýta» sa súboru balíka"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "re¾im otázok"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr "opýta» sa spec súboru"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr "opýta» sa balíkov spustených balíkom"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "re¾im otázok"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "re¾im otázok"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr "opýta» sa balíkov vy¾adujúcich schopnos»"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr "opýta» sa balíkov poskytujúcich schopnos»"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr "zobrazi» v¹etky konfiguraèné súbory"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "zobrazi» v¹etky dokumentaèné súbory"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr "zobrazi» základné informácie o balíku"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr "zobrazi» súbory v balíku"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "pou¾i» nasledovný formát otázky"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "zobrazii» stav daných súborov"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr "zobrazi» podrobný zoznam súborov balíka"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je vy¾adované %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " koliduje s %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "chyba formátu: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(neobsahuje ¾iadne súbory)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "normálny "
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "nahradený "
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "nein¹talovaný "
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "zdieµaný "
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(neznámy %d) "
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(¾iadny stav) "
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "zmazanie %s zlyhalo: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "otvorenie %s zlyhalo\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s zrejme nie je RPM balík\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "otázka na %s zlyhala\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "nájdených %d balíkov\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s neobsahuje ¾iadne balíky\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "¾iadny z balíkov nespú¹»a %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "¾iadny z balíkov nevy¾aduje %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "¾iadny z balíkov neposkytuje %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "súbor %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "chybné èíslo balíku: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "po¾aduje sa záznam èíslo %d\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "záznam %d nie je mo¾né preèíta»\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: otvorenie zlyhalo\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "vykonanie zlyhalo\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Nie je mo¾né podpísa» v1.0 RPM\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature zlyhalo\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Podpis nie je k dispozícii\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature zlyhalo\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "NIE JE V PORIADKU"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr " (CHÝBAJÚCE K¥ÚÈE):"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "V PORIADKU"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3225,17 +3226,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "nie je mo¾né otvori» %s na %s:%d"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "nie je mo¾né otvori» %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3245,7 +3246,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3255,7 +3256,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3266,26 +3267,26 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "chyba pri naèítaní záznamu %s z %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "chyba pri zápise záznamu %s do %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "chyba pri odstraòovaní záznamu %s z %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "nebola nastavená ¾iadna dbpath"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
@@ -3294,333 +3295,238 @@ msgstr ""
"databázy v novom formáte"
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "chyba pri hµadaní balíka %s\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, fuzzy, c-format
msgid "removing 0 %s entries.\n"
msgstr "odstraòuje sa záznam z databázy\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "odstraòuje sa index skupín\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "odstraòuje sa index názvov\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "chyba pri hµadaní balíka %s\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "premenováva sa %s na %s\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "premenováva sa %s na %s\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "znovu sa vytvára databáza v adresári %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "doèasná databáza %s u¾ existuje"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "vytvára sa adresár %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "chyba pri vytváraní adresára %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otvára sa stará databáza\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otvára sa nová databáza\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "nie je mo¾né prida» záznam pôvodne na %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "vytvára sa adresár %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "poèítajú sa balíky pre in¹taláciu\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "nájdených %d balíkov\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "hµadajú sa balíky, ktoré treba prenies»\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Prená¹a sa %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr "... ako %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "%s vynechané - prenos zlyhal - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "prenieslo sa %d balíkov\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "nie je mo¾né otvori» súbor %s: %s"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s nie je mo¾né nain¹talova»\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "balík %s nie je nain¹talovaný\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "nevyrie¹ené závislosti:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "in¹talujú sa binárne balíky\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "nie je mo¾né otvori» %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "In¹taluje sa %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "èítanie zlyhalo: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "chýbajúce druhé ':' na %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "chýba názov architektúry na %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Neúplný riadok údajov na %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "Priveµa argumentov v riadku údajov na %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Chybné èíslo arch/os: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Neúplný implicitný riadok na %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "Priveµa argumentov v implicitnom riadku na %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "Nie je mo¾né expandova» %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Nie je mo¾né preèíta» %s: %s."
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "chýbajúca ':' na %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "chýbajúci argument pre %s na %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "expanzia %s zlyhala na %s:%d \"%s\""
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "nie je mo¾né otvori» %s na %s:%d"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "chýbajúca architektúra pre %s na %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "chybná voµba '%s' na %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "Neznámy systém: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "veµkos» podpisu : %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "Hlavièka a archív: %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "oèakávaná veµkos»: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
@@ -3680,7 +3586,7 @@ msgstr "nie je mo¾né preèíta» podpis"
msgid "Got %d bytes of PGP sig\n"
msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr "Nie je mo¾né spusti» gpg"
@@ -3714,317 +3620,373 @@ msgstr "Vytvára sa PGP podpis: %d\n"
msgid "Generating signature using GPG.\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Nie je mo¾né spusti» pgp. Pou¾ite --nopgp pre vynechanie PGP kontrol."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "vykonanie zlyhalo!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Nie je mo¾né spusti» gpg. Pou¾ite --nogpg pre vynechanie GPG kontrol."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Nie je mo¾né spusti» pgp"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "Chybná ¹pecifikácia podpisu %%_signature v makro-súbore"
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore"
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "vynecháva sa %s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "rmdir %s zlyhalo: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "odstránenie %s zlyhalo: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "budú sa odstraòova» súbory test = %d\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "vykonanie skriptu zlyhalo"
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "zobrazi» súbory v balíku"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
"v balíku chýba tak meno pou¾ívateµa, ako aj zoznamy identifikácií (nemalo by "
"sa nikdy sta»)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
"v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa "
"nikdy sta»)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "chýbajúce %s\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "Úspech"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr "Chybná odpoveï servera"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr "Chyba vstupu/výstupu servera"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "Prekroèenie èasového limitu servera"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr "Nie je mo¾né vyhµada» adresu servera"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr "Nie je mo¾né vyhµada» názov servera"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr "Pripojenie k serveru zlyhalo"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr "Vytvorenie dátového spojenia k serveru zlyhalo"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "Chyba vstupu/výstupu lokálneho súboru"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Chyba pri nastavení vzdialeného servera do pasívneho re¾imu"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Súbor sa na serveri nenachádza"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "Zru¹enie prebieha"
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "Neznáma alebo neoèakávaná chyba"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "prihlasuje sa na %s ako %s, heslo %s\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktívnych %d prázdnych %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(prázdne)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(prázdne)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "Makro %%%s obsahuje neukonèené telo"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "Makro %%%s obsahuje chybný názov (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "Makro %%%s obsahuje neukonèené voµby"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "Makro %%%s obsahuje prázdne telo"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "Makro %%%s sa nepodarilo expandova»"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "Makro %%%s obsahuje chybný názov (%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "Makro %%%s (%s) nebolo pou¾ité pod úrovòou %d "
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "Neznáma voµba %c v %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "Håbka rekurzie (%d) väè¹ia ako maximálna (%d)"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr "Neukonèené %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "balík %%%.*s nebol nájdený, vynecháva sa"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "Preplnenie cieµovej vyrovnávacej pamäti"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Súbor %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Súbor %s je men¹í ako %d bajtov"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "varovanie: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "chyba: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatálna chyba: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "interná chyba (chyba rpm?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Heslo pre %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "chyba: %sport musí by» èíslo\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "url port musí by» èíslo\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "nepodarilo sa otvori» %s: %s"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "nepodarilo sa vytvori» %s\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "chýbajúce druhé ':' na %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "chýba názov architektúry na %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Neúplný riadok údajov na %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "Priveµa argumentov v riadku údajov na %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Chybné èíslo arch/os: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Neúplný implicitný riadok na %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "Priveµa argumentov v implicitnom riadku na %s:%d"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "Nie je mo¾né expandova» %s"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Nie je mo¾né preèíta» %s: %s."
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "chýbajúca ':' na %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "chýbajúci argument pre %s na %s:%d"
+
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "expanzia %s zlyhala na %s:%d \"%s\""
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "nie je mo¾né otvori» %s na %s:%d"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "chýbajúca architektúra pre %s na %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "chybná voµba '%s' na %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "Neznámy systém: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 070212777..8df21454d 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -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.94 2000/08/14 18:19:01 jbj Exp $
+# $Id: sl.po,v 1.95 2000/08/28 01:50:50 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-02-17 22:25+01:00\n"
"Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "datoteke %s/packages.rpm ni mo¾no odpreti\n"
@@ -28,39 +28,39 @@ msgstr "izdelava soodvisnosti neuspe¹na:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Datoteke spec %s ni mo¾no odpreti: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Povezava s programom tar neuspe¹na: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Neuspe¹no branje datoteke spec iz %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Neuspe¹no preimenovanje %s v %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Datoteka ni obièajna datoteka: %s\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Ne ka¾e, da je %s datoteka spec.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Izgradnja za ciljna strojna okolja: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "Izgradnja za ciljni sistem %s\n"
@@ -741,15 +741,15 @@ msgstr ""
"prevedeni in izvorni paket (priprava, prevajanje, namestitev, izgradnja "
"paketa)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "preskoèimo naravnost na doloèeno stopnjo (samo za c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "po zakljuèku odstranimo delovni imenik"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr "po zakljuèku odstranimo izvorno kodo"
@@ -1331,7 +1331,7 @@ msgstr " --httpport <vrata> "
msgid " Package specification options:"
msgstr " Mo¾nosti za doloèitev paketov:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "poizvedba po vseh paketih"
@@ -1557,604 +1557,604 @@ msgstr "datoteka spec za izgradnjo manjka"
msgid "no tar files given for build"
msgstr "arhiv tar za izgradnjo manjka"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "Zaèasne datoteke ni mo¾no odpreti"
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Izvajamo(%s): %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Izvajanje %s neuspe¹no (%s): %s"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "%s javi neuspe¹no izhodno kodo (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr "napaka v skladnji pri razèlembi =="
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr "napaka v skladnji pri razèlembi &&"
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr "napaka v skladnji pri razèlembi ||"
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr "napaka pri razèlembi v izrazu"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "nezakljuèen ("
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr "nedefiniran identifikator"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- samo na ¹tevilih"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! samo na ¹tevilih"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "tipi se morajo ujemati"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* in / nista podprta na nizih"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- ni podprt na nizih"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& in || nista podprta na nizih"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr "napaka v sklanji v izrazu"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK neuspe¹en: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Manjkajoèi ,(` v %s %s"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Manjkajoèi ,)` v %s(%s"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "Neveljaven ¾eton %s: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Neprazen znak sledi %s(): %s"
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Okvarjena skladnja: %s(%s)"
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Okvarjeno doloèilo naèina: %s(%s)"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "Okvarjeno doloèilo naèina imenika: %s(%s)"
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Nenavadna dol¾ina za locale: \"%.s\" pri %%lang(%s)"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Podvojeni locale %.*s za %%lang(%s)"
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "Dosegli smo omejitev za %%docdir"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "Samo en argument za %%docdir je podan"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "Dve datoteki v eni vrstici: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Ime datoteke se mora zaèeti z \"/\": %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Posebnih %%doc ni mo¾no me¹ati z ostalimi oblikami: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "Datoteka je navedena dvakrat: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s"
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Datoteka se ne ujema s predpono (%s): %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "Datoteke ni najti: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Okvarjen lastnik/skupina: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Datoteka: %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Datoteki manjka uvodni \"/\": %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr "Datoteke ni mo¾no najti z raz¹iritvijo metaznakov v imenu: %s"
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr "Datoteke %s iz %%files ni mo¾no odpreti: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "vrstica: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr "Okvarjena datoteka: %s: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "Okvarjen lastnik/skupina: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "Ni mo¾no izvesti %s: %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "Vejitev %s ni mo¾na: %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s neuspe¹en"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "pisanje podatkov na %s neuspe¹no"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "I¹èemo %s: (z uporabo %s)...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr "Neuspe¹no iskanje %s:"
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Obdelujemo datoteke: %s-%s-%s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: Dose¾ena omejitev v getUname()\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: Dose¾ena omejitev v getGname()\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "Iskanje kanoniènega imena gostitelja neuspe¹no: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "ustvarjanje arhiva neuspe¹no za datoteko %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "pisanje cpio_copy neuspe¹no: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "branje cpio_copy neuspe¹no: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Datoteke PreIn ni mo¾no odpreti: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Datoteke PreUn ni mo¾no odpreti: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Datoteke PostIn ni mo¾no odpreti: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Datoteke PostUn ni mo¾no odpreti: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Datoteke VerifyScript ni mo¾no odpreti: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Skriptne datoteke Trigger ni mo¾no odpreti: %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: odpiranje %s: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: branje %s: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s ni paket tipa RPM\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: branje glave %s\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "Okvarjeni podatki CSA"
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Ni mo¾no odpreti %s: %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "Ni mo¾no zapisati paketa: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "Izdelujemo podpis: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Ciljnega podpisa %s ni mo¾no odpreti: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Ciljni podpis %s ni berljiv: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr "Ni mo¾no zapisati paketa %s: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "Zapisano: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Neuspe¹no ustvarjanje izhodne datoteke za paket %s: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr "ni mo¾no ustvariti %s: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "vrstica %d: %s sekund"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "vnosi %%changelog se morajo zaèeti z *"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "nezdru¾jiv vnos %%changelog"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "okvarjen datum v %%changelog: %s"
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "%%changelog ni urejen v padajoèem èasovnem zaporedju"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "manjkajoèe ime v %%changelog"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "opis v %%changelog manjka"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "vrstica %d: Napaka pri razèlembi v razdelku %%description: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "vrstica %d: Okvarjena izbira %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "vrstica %d: Preveè imen: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "vrstica %d: Paket ne obstaja: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "vrstica %d: Drugi opis"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "vrstica %d: Napaka pri razèlembi v razdelku %%Files: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "vrstica %d: Drugi seznam %%Files"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Arhitektura je izkljuèena: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "Arhitektura ni vkljuèena: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "OS je izkljuèen: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "OS ni vkljuèen: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "polje %s mora obstojati v paketu: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Podvojeni vnosi %s v paketu: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ikone %s ni mo¾no odpreti: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ikone %s ni mo¾no prebrati: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "Neznan tip ikone: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "vrstica %d: Deformirana znaèka: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "vrstica %d: Prazna znaèka: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot ne more biti \"/\": %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "vrstica %d: Predpone se ne smejo konèati z /: %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "vrstica %d: Docdir se mora zaèeti z \"/\": %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "vrstica %d: polje Epoch/Serial mora biti ¹tevilo: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "vrstica %d: okvarjena oblika BuildArchitecture: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Interna napaka: Neprava znaèka %d"
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "Okvarjeno doloèilo paketa: %s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "Paket ¾e obstaja: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "vrstica %d: Neznana znaèka: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "Datoteka spec ne more uporabiti BuildRoot"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "Okvarjen izvor: %s: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "Krparija ¹t. %d manjka"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "Izvorna koda ¹t. %d manjka"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Ni mo¾no nalo¾iti nosource %s: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "Napaka pri razèlembi %%setup: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "vrstica %d: Okvarjen argument za %%setup %c: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "vrstica %d: Okvarjena izbira %%setup %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "vrstica %d: Manjkajoè argument za %%patch -b: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "vrstica %d: Manjkajoè argument za %%patch -z: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "vrstica %d: Manjkajoè argument za %%patch -p: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "vrstica %d: Okvarjen argument za %%patch -p: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "Preveè krparij!"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "vrstica %d: Okvarjen argument za %%patch: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "vrstica %d: drugi %%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
@@ -2162,42 +2162,42 @@ msgstr ""
"vrstica %d: Oznaka odvisnosti se mora zaèeti z alfanum. znakom, ,_` ali ,/`: "
"%s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "vrstica %d: Ime datoteke ni dovoljeno: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "vrstica %d: Ime datoteke z razlièico ni dovoljeno: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr "vrstica %d: Zahtevana razlièica: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "vrstica %d: pro¾ila morajo vsebovati --: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "vrstica %d: Napaka pri razèlembi %s: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "vrstica %d: skriptni program se mora zaèeti z ,/`: %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "vrstica %d: Drugi %s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "vrstica %d: %s"
@@ -2212,103 +2212,103 @@ msgstr "Ni mo¾no odpreti %s: %s\n"
msgid "Unclosed %%if"
msgstr "Nezakljuèeni %%if"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean vrne %d"
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Najden %%else brez pripadajoèega if"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Najden %%endif brez pripadajoèega if"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "Deformiran stavek %%include"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "Arhitektura za izgradnjo manjka"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "V paketu manjka %%description: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "arhiv = %s, fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "vrstica %d: Okvarjeno ¹tevilo: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "vrstica %d: Okvarjeno ¹tevilo no%s: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "ni mo¾no preimenovati %s v %s: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "ni mo¾no zbrisati %s: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr "(napaka 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "Okvarjeno magièno ¹tevilo"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "Okvarjena/neberljiva glava"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "Glava predolga"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr "Neznan tip datoteke"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr "Trda povezava manjka"
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr "Interna napaka"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr " neuspe¹no - "
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2317,198 +2317,198 @@ msgstr ""
"odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
"\tA %s\tB %s\n"
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
-#: lib/depends.c:825
+#: lib/depends.c:905
#, fuzzy, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr "%s: %s zadovoljen ob dodatnem seznamu datotek.\n"
-#: lib/depends.c:874
+#: lib/depends.c:964
#, fuzzy, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr "%s: %s zadovoljen ob dodatni ponudbi.\n"
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n"
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, fuzzy, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr "%s: %s zadovoljen ob ponudbi db.\n"
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "%s: %s zadovoljen ob dodatnem paketu.\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "paket %s zahteva, a ni zadovoljeno: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "paket %s v sporu: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "zanka v predpogojevani verigi: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, fuzzy, c-format
msgid "removed db file %s\n"
msgstr "odstranjujemo seznam datotek za %s\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "okvarjeno stanje datoteke: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "odpiramo datoteko z naèinom 0x%x v %s\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "datoteke ni mo¾no %s zakleniti"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "izkljuèujoèe"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "deljeno"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, fuzzy, c-format
msgid "closed db environment %s/%s\n"
msgstr "odstranjujemo seznam datotek za %s\n"
-#: lib/db3.c:484
+#: lib/db3.c:492
#, fuzzy, c-format
msgid "removed db environment %s/%s\n"
msgstr "odstranjujemo seznam datotek za %s\n"
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "odstranjujemo seznam datotek za %s\n"
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "odpiramo datoteko z naèinom 0x%x v %s\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "datoteke ni mo¾no %s zakleniti"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "odstranjujemo seznam datotek za %s\n"
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2522,687 +2522,688 @@ msgstr ""
"Èe \"rpm --rebuilddb\" ne re¹i problema, so dodatne informacije na voljo\n"
"na strani http://www.rpm.org ali po dopisni listi rpm-list@redhat.com.\n"
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(ni ¹tevilo)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() ni uspe¹no vrnila velikosti fugger: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "status %s ni na voljo: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr "zbiramo seznam priklopljenih datoteènih sistemov.\n"
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "neuspe¹no odpiranje %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "datoteka %s se nahaja na neznani napravi"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "Tip podatkov %d ni podprt\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Okvarjen ¹tevec za headerAddEntry(): %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "manjkajoèi { za %"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "manjkajoèi } za %{"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "oblika znaèke manjka"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "ime znaèke manjka"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "neznana znaèka"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "] ni prièakovan na koncu polja"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "neprièakovan ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "neprièakovan }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "? prièakovan v izrazu"
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "{ prièakovan za ? v izrazu"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "} prièakovan v izrazu"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ": prièakovan za podizrazom ?"
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "{ prièakovan za : v izrazu"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "| prièakovan na koncu izraza"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(neznan tip)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr " datoteka: %s akcija: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "uporabnik %s ne obstaja - uporabljamo root"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "skupina %s ne obstaja - uporabljamo root"
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "vrednost %%instchangelog v makrodatoteki bi morala biti ¹tevilo, pa ni"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "razpakiranje arhiva neuspe¹no%s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr " pri datoteki "
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "name¹èanje izvornega paketa\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr "ni mo¾no ustvariti izvornega imenika %s"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "ni mo¾no pisanje na %s"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "izvori v: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr "ni mo¾no ustvariti imenika z doloèili spec %s"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "datoteka spec v: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "preimenujemo %s v %s\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s v %s neuspe¹no: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "prièakovan izvorni paket, najden binarni"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket: %s-%s-%s datoteke test = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "ustavljamo namestitev ker teèemo kot --test\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "opozorilo: %s ustvarjen kot %s"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "opozorilo: %s shranjen kot %s"
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "buildroot je ¾e doloèen"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "zamenjamo razdelje I18N z naslednjim katalogom"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "izvorni paket ne vsebuje datoteke .spec"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "prevedeni paket (priprava, prevajanje, namestitev, izgradnja paketa)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "name¹èanje izvornega paketa\n"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr "preglasujemo vrhnji imenik izgradnje"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr "ne izvajamo nobene od stopenj izgradnje"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "ne sprejemamo internacionaliziranih katalogov iz datoteke spec"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr "po zakljuèku odstranimo datoteko spec"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "preglasujemo strojno okolje ciljnega sistema"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "upo¹tevamo internacionalizirana sporoèila v katalogu spec"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "poizvedba po paketu, ki vsebuje <datoteko>"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "poizvedba po paketu v skupini"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "poizvedba po paketu"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "poizvedbeni naèin"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr "poizvedba po datoteki spec"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr "poizvedba po paketih, ki jih spro¾i paket"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "poizvedbeni naèin"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "poizvedbeni naèin"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr "poizvedba po paketih, ki zahtevajo zmo¾nost"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr "poizvedba po paketih, ki nudijo zmo¾nost"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr "seznam vseh nastavitvenih datotek"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr "seznam vseh dokumentacijskih datotek"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr "iznos osnovnih podatkov o datoteki"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr "seznam datotek v paketu"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "uporabi naslednjo obliko poizvedbe"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "zamenjamo razdelje I18N z naslednjim katalogom"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "izpis stanja seznama datotek"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr "izpis ob¹irnega seznama datotek"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " potrebuje %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " v sporu z %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s je za drug tip arhitekture"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s je za drug operacijski sistem"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s-%s-%s je ¾e name¹èen"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "poti %s ni mo¾no premakniti za paket %s-%s-%s"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr "datoteka %s v sporu med poskusom namestitve %s-%s-%s in %s-%s-%s"
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
"datoteka %s name¹èena z %s-%s-%s je v sporu z datoteko iz paketa %s-%s-%s"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s (ki je novej¹i kot %s-%s-%s) je ¾e name¹èen"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "namestitev paketa %s-%s-%s zahteva %ld%cb na datoteènem sistemu %s"
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "napaka v obliki: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(ne vsebuje datotek)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "normalno "
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "nadome¹èeno "
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "ni name¹èeno "
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "omre¾ni "
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(neznano %3d) "
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(brez stanja) "
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "ni mo¾no zbrisati %s: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr "odpiranje %s neuspe¹no: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s najverjetneje ni paket RPM\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "poizvedba po %s neuspe¹na\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "poizvedba po datoteki spec %s neuspe¹na, razèlemba ni mo¾na\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "najdeno %d paketov\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "skupina %s ne vsebuje nobenega paketa\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "noben paket ne pro¾i %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "noben paket ne potrebuje %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "noben paket ne nudi %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "datoteka %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ni del nobenega paketa\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "neveljavna ¹tevilka paketa: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "¹tevilka zapisa paketa: %d\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "zapisa %d ni mo¾no prebrati\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s ni name¹èen\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: odpiranje neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr "makeTempFile neuspe¹en\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: pisanje Fwrite neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: branje Fread neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead neuspe¹en\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Podpis RPM v1.0 ni mo¾en\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Sprememba podpisa RPM v2.0 ni mo¾na\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature neuspe¹en\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Podpis ni na voljo\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead neuspe¹en: %s\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "NI DOBRO"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr " (MANJKAJOÈI KLJUÈI:"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr " (NEPREVERJENI KLJUÈI:"
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "V REDU"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3211,17 +3212,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "ni mo¾no odpreti %s v %s:%d: %s"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "ni mo¾no odpreti %s: %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3231,7 +3232,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3241,7 +3242,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3252,360 +3253,265 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "napaka pri branju zapisa %s iz %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "napaka pri pisanju zapisa %s v %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "napaka pri brisanju zapisa %s iz %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "dbpath ni nastavljena"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb"
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "napaka pri iskanju paketa %s\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "ni mo¾no prebrati glave pri %d za vpogled"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, fuzzy, c-format
msgid "removing 0 %s entries.\n"
msgstr "odstranjujemo vnose v podatkovni zbirki\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "odstranjujemo seznam skupin\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "odstranjujemo seznam imen\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "napaka pri iskanju paketa %s\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "preimenujemo %s v %s\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "preimenujemo %s v %s\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "ustvarjamo imenik: %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "napaka pri ustvarjanju imenika %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "odpiramo staro podatkovno zbirko\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "odpiramo novo podatkovno zbirko\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo."
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "zapisa ni mo¾no dodati na %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"ponovna izgradnja podatkovne zbirke neuspe¹na; stara ostaja na istem mestu\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "posku¹amo povrniti z nadomestitvijo datotek v %s z datotekami iz %s"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "ustvarjamo imenik: %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "neuspe¹na odstranitev imenika %s: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "¹tetje paketov za namestitev\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "najdeno %d paketov\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "iskanje paketov za prenos po omre¾ju\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "preskakujemo %s - rpmGlob neuspe¹en(%d)\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Prena¹amo %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr " ... kot %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "preskakujemo %s - prenos neuspe¹en - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "prenesli smo %d paketov\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "ni mo¾no odpreti datoteke %s: %s\n"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s ni mo¾no namestiti\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "paketa ni mo¾no odpreti: %s\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paketa %s ni mo¾no prestaviti\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr "napaka pri branju iz datoteke %s\n"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "najdeno %d izvornih in %d binarnih paketov\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "neuspe¹ne soodvisnosti:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "name¹èamo binarne pakete\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" doloèa veèterne pakete\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr "ni mo¾no odpreti %s: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Name¹èamo %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "branje neuspe¹no: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "manjka drugi ,:` v %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "manjkajoèe ime arhitekture v %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Nepopolna podatkovna vrstica v %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "Preveè argumentov v podatkovni vrstici v %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Okvarjena ¹tevilka arh./op.sist.: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Nepopolna privzeta vrstica v %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "Preveè argumentov v privzeti vrstici v %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "Ni mo¾no raz¹iriti %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Ni mo¾no odpreti %s za branje: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Neuspe¹no branje %s: %s."
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "manjkajoèi ,:` (najden 0x%02x) v %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "manjkajoèi argument za %s v %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "izraz %s neuspe¹en v %s:%d \"%s\""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "ni mo¾no odpreti %s v %s:%d: %s"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "manjkajoèa arhitekture za %s v %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "okvarjena izbira ,%s` v %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "Neznan sistem: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "dol¾ina podpisa : %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "glava in arhiv : %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "prièakovana vel.: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
@@ -3665,7 +3571,7 @@ msgstr "branje podpisa neuspe¹no"
msgid "Got %d bytes of PGP sig\n"
msgstr "Prebrano %d bajtov podpisa PGP\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr "Ni mo¾no pognati gpg"
@@ -3697,314 +3603,368 @@ msgstr "Ustvarjamo podpis s PGP.\n"
msgid "Generating signature using GPG.\n"
msgstr "Ustvarjamo podpis z GnuPG.\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Ni mo¾no pognati pgp. Preverjanja PGP lahko preskoèite z --nopgp"
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "zagon neuspe¹en!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Ni mo¾no pognati gpg. Preverjanja GnuPG lahko preskoèite z --nogpg"
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Ni mo¾no pognati pgp"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "Neveljavno doloèilo %%_signature v makrodatoteki"
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr "izkljuèujemo datoteko %s%s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèujemo imenik %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "prestavljamo %s v %s\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "prestavljamo imenik %s v %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "odstranitev imenika %s neuspe¹na: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "odstranitev %s neuspe¹na: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "datoteke bomo odstranili, test = %d\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "poganjamo poodnamestitvene skripte (èe obstajajo)\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "skript se ni uspe¹no izvedel"
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr "brez preverjanja datotek v paketu"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
"v paketu manjka tako seznam uporabnikov kot identitet (to se ne more zgoditi)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
"v paketu manjka tako seznam skupin kot identitet (to se ne more zgoditi)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "manjka %s\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "Uspe¹no"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr "Okvarjen odziv stre¾nika"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr "V/I napaka na stre¾niku"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "Potekel èas na stre¾niku"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr "Naslov stre¾nika ni ugotovljiv"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr "Ime stre¾nika ni ugotovljivo"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr "Neuspe¹en poskus prikljuèitve na stre¾nik"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr "Neuspe¹na vzpostavitev podatkovne povezave s stre¾nikom"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "V/I napaka na lokalni datoteki"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Napaka pri nastavitvi oddaljenega stre¾nika v pasivni naèin"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Datoteke ni mo¾no najti na stre¾niku"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "Prekinitev v teku"
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "Neznana ali neprièakovana napaka"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "prijava na %s kot %s, geslo %s\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktivni %d prazni %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(prazni)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(prazni)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "Makro %%%s vsebuje nezakljuèeno telo"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "Makro %%%s vsebuje nedovoljeno ime (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "Makro %%%s vsebuje nezakljuèene izbire"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "Makro %%%s vsebuje prazno telo"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "Makro %%%s se ne raz¹iri"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "Makro %%%s vsebuje nedovoljeno ime (%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "Makro %%%s (%s) ni bil uporabljen pod ravnijo %d"
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "Neznana izbira %c v %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "Globina rekurzije (%d) veèja od maksimalne (%d)"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr "Nezakljuèeni %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr "Oznaki %% sledi nerazèlenljiv makro"
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "Makro %%%.*s ni najden, preskoèimo"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "Ciljni medpomnilnik prekoraèen"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Datoteka %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Datoteka %s je kraj¹a od %d bajtov"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "opozorilo: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "napaka: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "usodna napaka: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "interna napaka (hro¹è v rpm?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr "opozorilo: u %p ctrl %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr "opozorilo: u %p data %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr "opozorilo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Geslo za %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "napaka: vrata %s morajo biti ¹tevilka\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "vrata URL morajo biti ¹tevilka\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr "neuspe¹no odpiranje %s: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr "neuspe¹no ustvarjanje %s: %s\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "manjka drugi ,:` v %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "manjkajoèe ime arhitekture v %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Nepopolna podatkovna vrstica v %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "Preveè argumentov v podatkovni vrstici v %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Okvarjena ¹tevilka arh./op.sist.: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Nepopolna privzeta vrstica v %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "Preveè argumentov v privzeti vrstici v %s:%d"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "Ni mo¾no raz¹iriti %s"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Ni mo¾no odpreti %s za branje: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Neuspe¹no branje %s: %s."
+
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "manjkajoèi ,:` (najden 0x%02x) v %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "manjkajoèi argument za %s v %s:%d"
+
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "izraz %s neuspe¹en v %s:%d \"%s\""
+
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "ni mo¾no odpreti %s v %s:%d: %s"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "manjkajoèa arhitekture za %s v %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "okvarjena izbira ,%s` v %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "Neznan sistem: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/sr.po b/po/sr.po
index e8d428981..1e08fb8c6 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,13 +1,13 @@
msgid ""
msgstr ""
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
"From: Erik Troan <ewt@lacrosse.redhat.com>\n"
"Xgettext-Options: --default-domain=rpm --add-comments --keyword=_ "
"--keyword=N_\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
@@ -22,39 +22,39 @@ msgstr "lo¹e meðuzavisnosti:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Ne mogu da otvorim %s za èitanje: %s"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "neuspelo otvaranje %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: build.c:176
+#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s ne lièi na RPM paket\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "gre¹ka potrage za paketom %s\n"
@@ -736,15 +736,15 @@ msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "bin/src paket (priprema, kompilacija, instalacija, pakovanje)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "idi pravo do odreðene faze (samo za k,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "ukloni stablo direktorijuma po zavr¹etku"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
@@ -1338,7 +1338,7 @@ msgstr " -b<faza> <spec>\t "
msgid " Package specification options:"
msgstr " Opcije odrednice paketa:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "upit nad svim paketima"
@@ -1561,651 +1561,651 @@ msgstr "nedostaje specifikacije za kreiranje"
msgid "no tar files given for build"
msgstr "nedostaju 'tar' datoteke za kreiranje"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "Ne mogu da otvorim %s za èitanje: %s"
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "Pribavljam %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "neuspelo otvaranje %s: %s\n"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:241
+#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:250
+#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:292
+#: build/expression.c:288
#, fuzzy
msgid "parse error in expression"
msgstr "oèekivan znak ? u izrazu"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
#, fuzzy
msgid "syntax error in expression"
msgstr "oèekivan znak ? u izrazu"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "nedostaje { posle %"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "nedostaje ':' na %s:%d"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:713
+#: build/files.c:714
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Neuspelo èitanje %s: %s."
-#: build/files.c:1020
+#: build/files.c:1021
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Datoteka nije pronaðena na serveru"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Datoteka nije pronaðena na serveru"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "Ne mogu da izvr¹im PGP"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Ne mogu da proèitam 'sigtarget'"
-#: build/files.c:1720
+#: build/files.c:1721
#, fuzzy, c-format
msgid "%s failed"
msgstr "PGP omanuo"
-#: build/files.c:1724
+#: build/files.c:1725
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "neuspelo kreiranje %s\n"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "neuspelo kreiranje %s\n"
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "neuspelo èitanje: %s (%d)"
-#: build/pack.c:155
+#: build/pack.c:156
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:162
+#: build/pack.c:163
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:169
+#: build/pack.c:170
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:176
+#: build/pack.c:177
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: build/pack.c:257
+#: build/pack.c:258
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "gre¹ka: èini se da %s nije RPM paket\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "gre¹ka kod uzimanja sloga %s iz %s"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "neuspelo otvaranje %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "napravi PGP potpis"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "paket %s nije naveden u %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "Ne mogu da upi¹em %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(nepoznat tip)"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "nedostaje arhitektura za %s na %s:%d"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Opcije odrednice paketa:"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "Neuspelo èitanje %s: %s."
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, fuzzy, c-format
msgid "No patch number %d"
msgstr "(nije broj)"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Neuspelo èitanje %s: %s."
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "preme¹tanja moraju poèeti znakom '/'"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "paket %s nije naveden u %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "paket %s nije naveden u %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "neuspelo otvaranje %s: %s"
@@ -2220,306 +2220,306 @@ msgstr "neuspelo otvaranje %s\n"
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
#, fuzzy
msgid "No buildable architectures"
msgstr "nemoj proveravati arhitekturu paketa"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "paket %s nije naveden u %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "pogre¹an broj paketa: %s\n"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "Neuspelo èitanje %s: %s."
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "gre¹ka: "
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
#, fuzzy
msgid "Unknown file type"
msgstr "(nepoznat tip)"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
#, fuzzy
msgid "Internal error"
msgstr "fatalna gre¹ka: "
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "PGP omanuo"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "paket %s nije naveden u %s"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "paket %s nije naveden u %s"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "petlja u lancu: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "ekskluzivno"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "deljeno"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2529,707 +2529,708 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(nije broj)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() nije vratio 'fugger' velièinu: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "nedostaje { posle %"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "nedostaje } posle %"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "prazan 'tag' format'"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "prazno ime tag-a"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "nepoznat tag"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "] oèekivano na kraju niza"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "neoèekivano ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "neoèekivano }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "oèekivan znak ? u izrazu"
-#: lib/header.c:1655
+#: lib/header.c:1691
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "{ oèekivano posle ? u izrazu"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "} oèekivano u izrazu"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "oèekivano : praæeno ? podizrazom"
-#: lib/header.c:1688
+#: lib/header.c:1724
#, fuzzy
msgid "{ expected after : in expression"
msgstr "{ oèekivano posle : u izrazu"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "| oèekivano na kraju izraza"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(nepoznat tip)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
#, fuzzy
msgid "installing a source package\n"
msgstr "instaliraj paket"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/install.c:685
+#: lib/install.c:717
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
#, fuzzy
msgid "source package contains no .spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "preimenovanje %s u %s nije uspelo: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
#, fuzzy
msgid "build source package from tar ball"
msgstr "napravi pakete za operativni sistem <os>"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "instaliraj paket"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
#, fuzzy
msgid "override build root"
msgstr "koristi <dir> kao korenski katalog kod kreiranja"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "nemoj izvr¹iti nijednu fazu"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "paket nema imena"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "upit nad svim paketima"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "re¾im upita"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr "upit nad %s neuspeo\n"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "re¾im upita"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "re¾im upita"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
#, fuzzy
msgid "query the packages which require a capability"
msgstr "upit za pakete koji zahtevaju <i> svojstvo"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "instaliraj dokumentaciju"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr "prika¾i informacije o paketu"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "instaliraj paket"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
#, fuzzy
msgid "use the following query format"
msgstr "neoèekivan izvor upita"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "upit nad paketom koji ima <datoteku>"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr "prika¾i listu datoteka u paketu"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " je potreban paketu %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " se sudara sa %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s nije instaliran\n"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "paket %s nije instaliran\n"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr " se sudara sa %s-%s-%s\n"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "gre¹ka u formatu: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(nema datoteka)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
#, fuzzy
msgid "not installed "
msgstr "paket %s nije instaliran\n"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(nepoznat tip)"
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "neuspelo otvaranje %s: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s ne lièi na RPM paket\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "upit nad %s neuspeo\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "upit nad %s neuspeo\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "upit nad svim paketima"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "nijedan paket ne aktivira %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "nijedan paket ne zahteva %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "nijedan paket ne obezbeðuje %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "datoteka %s ne pripada nijednom paketu\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "pogre¹an broj paketa: %s\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "ne mogu da proèitam slog %d\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Ne mogu da potpi¹em v1.0 RPM\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Potpis nije na raspolaganju\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3238,17 +3239,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3258,7 +3259,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3268,7 +3269,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3279,361 +3280,266 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "gre¹ka kod uzimanja sloga %s iz %s"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "gre¹ka zapisivanja sloga %s u %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "dbpath nije odreðen"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "gre¹ka kod potrage za paketom %s\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "gre¹ka kod potrage za paketom %s\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "privremena baza podataka %s veæ postoji"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "ne mogu da dodam slog originalno na %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
#, fuzzy
msgid "counting packages to install\n"
msgstr "nedostaje paket za instalaciju"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, fuzzy, c-format
msgid "found %d packages\n"
msgstr "upit nad svim paketima"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
#, fuzzy
msgid "looking for packages to download\n"
msgstr "gre¹ka kod potrage za paketom %s\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Pribavljam %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s nije instaliran\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "grupa %s ne sadr¾i nijedan paket\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "lo¹e meðuzavisnosti:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
#, fuzzy
msgid "installing binary packages\n"
msgstr "instaliraj paket"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" odreðuje vi¹e paketa\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "gre¹ka: ne mogu da otvorim %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Instaliram %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "neuspelo èitanje: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "nedostaje drugo ':' na %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "nedostaje ime arhitekture na %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Nepotpuna linija podataka na %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "Premnogo argumenata u liniji podataka na %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Lo¹ broj arhitekture/oper.sist.: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Nepotpuna podrazumevana linija na %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Ne mogu da otvorim %s za èitanje: %s"
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Neuspelo èitanje %s: %s."
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "nedostaje ':' na %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "nedostaje argument za %s na %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "neuspelo otvaranje %s: %s"
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "Ne mogu da otvorim datoteku %s: "
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "nedostaje arhitektura za %s na %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "lo¹a opcija '%s' na %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3696,7 +3602,7 @@ msgstr "ne mogu da proèitam potpis"
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "Ne mogu da izvr¹im PGP"
@@ -3733,327 +3639,375 @@ msgstr "napravi PGP potpis"
msgid "Generating signature using GPG.\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
#, fuzzy
msgid "exec failed!\n"
msgstr "%s: Neuspelo otvaranje\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Ne mogu da izvr¹im PGP"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
-#: lib/signature.c:765
+#: lib/signature.c:767
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "Pribavljam %s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "neuspela komanda rmdir %s: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "uklanjanje %s nije uspelo: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "neuspelo izvr¹avanje skripta"
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "instaliraj paket"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, fuzzy, c-format
msgid "missing %s\n"
msgstr "nedostaje { posle %"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
#, fuzzy
msgid "Bad server response"
msgstr "Lo¹ odgovor FTP servera"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
#, fuzzy
msgid "Server IO error"
msgstr "Ulazno/izlazna FTP gre¹ka"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
#, fuzzy
msgid "Server timeout"
msgstr "Tajm-aut FTP servera"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "Ne mogu da odredim host adresu FTP servera"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "Ne mogu da odredim ime FTP hosta"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
#, fuzzy
msgid "Failed to connect to server"
msgstr "Ne mogu da se pove¾em sa FTP serverom"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "Ulazno/izlazna gre¹ka kod lokalne datoteke"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Gre¹ka kod stavljanja udaljenog servera u pasivni re¾im"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Datoteka nije pronaðena na serveru"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "Neoèekivana ili nepoznata FTP gre¹ka"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "paket %s nije naðen u %s"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "neuspelo otvaranje %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "upozorenje: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "gre¹ka: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatalna gre¹ka: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Lozinka za %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "gre¹ka: FTP port mora biti broj\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
#, fuzzy
msgid "url port must be a number\n"
msgstr "gre¹ka: FTP port mora biti broj\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "neuspelo kreiranje %s\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "nedostaje drugo ':' na %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "nedostaje ime arhitekture na %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Nepotpuna linija podataka na %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "Premnogo argumenata u liniji podataka na %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Lo¹ broj arhitekture/oper.sist.: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Nepotpuna podrazumevana linija na %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "Premnogo argumenata u podrazumevanoj liniji na %s:%d"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Ne mogu da otvorim %s za èitanje: %s"
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Neuspelo èitanje %s: %s."
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "nedostaje ':' na %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "nedostaje argument za %s na %s:%d"
+
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "neuspelo otvaranje %s: %s"
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "Ne mogu da otvorim datoteku %s: "
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "nedostaje arhitektura za %s na %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "lo¹a opcija '%s' na %s:%d"
+
#, fuzzy
#~ msgid ""
#~ " [--triggeredby] [--ftpport] [--ftpproxy <host>]"
diff --git a/po/sv.po b/po/sv.po
index e5604959a..7f860e562 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-0400\n"
"PO-Revision-Date: 2000-08-07 16:53+0200\n"
"Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "kan inte öppna %s/packages.rpm\n"
@@ -23,39 +23,39 @@ msgstr "ouppfyllda byggberoenden:\n"
msgid "Unable to open spec file %s: %s\n"
msgstr "Kan inte öppna spec-filen %s: %s\n"
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "Kunde inte öppna \"tar\"-rör: %s\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr "Kunde inte läsa spec-fil från %s\n"
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "Kunde inte byta namn på %s till %s: %s\n"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr "Filen är inte en ordinär fil: %s\n"
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "Filen %s tycks inte vara en spec-fil.\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr "Bygger målplattformar: %s\n"
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr "Bygger för målet %s\n"
@@ -708,15 +708,15 @@ msgstr "binärpaketera (förbered, kompilera, installera, paketera)"
msgid "bin/src package (prep, compile, install, package)"
msgstr "binär- och källpaketera (förbered, kompilera, installera, paketera)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "gå direkt till angivet steg (endast för c,i)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "ta bort tillverkningsträd efteråt"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr "ta bort källkod efteråt"
@@ -1280,7 +1280,7 @@ msgstr " --httpport <port> "
msgid " Package specification options:"
msgstr " Flaggor för paketval:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr "fråga om/verifiera alla paket"
@@ -1466,644 +1466,644 @@ msgstr "ingen spec-filer angivna för tillverkning"
msgid "no tar files given for build"
msgstr "inga tar-filer angivna för tillverkning"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr "Kan inte öppna temporär fil."
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr "Kör(%s): %s\n"
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "Körning (exec) av %s misslyckades (%s): %s"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr "Dålig slutstatus från %s (%s)"
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr "syntaxfel vid parsning av =="
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr "syntaxfel vid parsning av &&"
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr "syntaxfel vid parsning av ||"
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr "parsfel i uttryck"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr "ensam ("
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr "odefinierad identifierare"
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr "- endast i tal"
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr "! endast på tal"
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr "typer måste passa ihop"
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr "* / stöds inte för strängar"
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr "- stöds inte för strängar"
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr "&& och || stöds inte för strängar"
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr "syntaxfel i uttryck"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr "TIMECHECK-fel: %s\n"
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr "Saknad \"(\" i %s %s"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr "Saknad \")\" i %s(%s"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr "Ogiltig %s token: %s"
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr "Annat än blanktecken följer på %s(): %s"
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr "Felaktig syntax: %s(%s)"
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "Felaktig rättighetsspecifikation: %s(%s)"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)"
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr "Ovanlig lokallängd: \"%.*s\" i %%langg(%s)"
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr "Duplicerad lokal %.*s i %%lang(%s)"
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr "Slog i gränsen för %%docdir"
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr "Endast ett argument till %%docdir"
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr "Två filer på en rad: %s"
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr "Filnamn måste börja med \"/\": %s"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr "Kan inte blanda special %%doc med andra former: %s"
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr "Filen uppräknad två gånger: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s"
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "Filen matchar inte prefixet (%s): %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr "Filen hittades inte: %s"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr "Felaktig ägare/grupp: %s\n"
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "Fil %4d: %07o %s.%s\t %s\n"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr "Filen behöver inledande \"/\": %s"
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr "Ingen file hittades vid matchningen: %s"
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr "Kunde inte öppna %%files-fil %s: %s"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr "rad: %s"
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr "Felaktig fil: %s: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr "Felaktig ägare/grupp: %s"
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr "Kunde inte köra %s: %s"
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr "Kunde inte grena %s: %s"
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr "%s misslyckades"
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr "kunde inte skriva all data till %s"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr "Letar upp %s: (använder %s)...\n"
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr "Misslyckades med att hitta %s:"
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "Bearbetar filer: %s-%s-%s\n"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr "RPMERR_INTERNAL: Slog i begränsning i getUname()\n"
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr "RPMERR_INTERNAL: Slog i begränsning i getGname()\n"
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr "Kunde inte kanonisera värdnamn: %s\n"
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr "skapande av arkiv misslyckades vid fil %s: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr "cpio_copy kunde inte skriva: %s"
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr "cpio_copy kunde inte läsa: %s"
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr "Kunde inte öppna PreIn-fil: %s"
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr "Kunde inte öppna PreUn-fil: %s"
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr "Kunde inte öppna PostIn-fil: %s"
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr "Kunde inte öppna PostUn-fil: %s"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr "Kunde inte öppna VerifyScript-fil: %s"
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr "Kunde inte öppna Trigger-skriptfil: %s"
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr "readRPM: öppna %s: %s\n"
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr "readRPM: läs %s: %s\n"
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "readRPM: %s är inte ett RPM-paket\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr "readRPM: läser huvud från %s\n"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr "Felaktig CSA-data"
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr "Kunde inte öppna %s: %s\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr "Kunde inte skriva paket: %s"
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr "Genererar signatur: %d\n"
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "Kan inte läsa signaturen %s: %s"
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "Kan inte läsa signaturen %s: %s"
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr "Kan inte skriva paket %s: %s"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr "Skrev: %s\n"
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr "Kunde inte generera utfilnamn för paketet %s: %s\n"
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr "kan inte skapa %s: %s\n"
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr "rad %d: andra %s"
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr "%%changlog-poster måste starta med *"
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr "ofullständig %%changelog-post"
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr "felaktigt datum i %%changelog: %s"
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr "%%changlog är inte i fallande kronologisk ordning"
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr "saknat namn i %%changelog"
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr "ingen beskrivning i %%changelog"
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr "rad %d: Fel i parsning av %%description: %s"
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr "rad %d: otillåten flagga %s: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr "rad %d: För många namn: %s"
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr "rad %d: Paketet existerar inte: %s"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr "rad %d: En andra beskrivning"
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr "rad %d: Fel i parsning av %%files: %s"
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr "rad %d: En andra %%files-lista"
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr "Arkitekturen är utesluten: %s"
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr "Arkitekturen är inte medtagen: %s"
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr "OS är uteslutet: %s"
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr "OS är inte medtaget: %s"
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr "%s-fält måste finnas med i paketet: %s"
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr "Dubbla %s-poster i paketet: %s"
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr "Kan inte öppna ikon %s: %s"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr "Kan inte läsa ikon %s: %s"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr "Okänd ikontyp: %s"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr "rad %d: Felaktig tagg: %s"
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr "rad %d: Tom tagg: %s"
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr "BuildRoot kan inte vara \"/\": %s"
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr "rad %d: Prefix får inte sluta med \"/\": %s"
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "rad %d: Docdir måste börja med \"/\": %s"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "rad %d: Epoch/Serial-fält måste vara numeriskt: %s"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "rad %d: Felaktig BuildArchitecture-format: %s"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr "Internt fel: felaktig tagg %d"
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr "Felaktig paketspecifikation: %s"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr "Paketet existerar redan: %s"
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr "rad %d: Okänd tagg: %s"
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr "Spec-fil kan inte använda BuildRoot"
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr "Dålig källa: %s: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr "Inget patch-nummer %d"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr "Inget källkodsnummer %d"
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "Kunde inte hämta nosource %s: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr "Fel i parsning av %%setup: %s"
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr "rad %d: Felaktigt argument till %%setup %c: %s"
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr "rad %d: Felaktig %%setup-flagga %s: %s"
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr "rad %d: Behöver argument till %%patch -b: %s"
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr "rad %d: Behöver argument till %%patch -z: %s"
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr "rad %d: Behöver argument till %%patch -p: %s"
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr "rad %d: Felaktigt argument till %%patch -p: %s"
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr "För många patchar!"
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr "rad %d: Felaktigt argument till %%patch: %s"
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr "rad %d: andra %%prep"
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "rad %d: Beroenden måste börja alfanumeriskt, med \"_\" eller \"/\": %s"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr "rad %d: Filnamn inte tillåtna: %s"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "rad %d: Versionsfilnamn inte tillåtet: %s"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr "rad %d: Version krävs: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr "rad %d: utlösare måste ha --: %s"
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr "rad %d: Fel vid parsning av %s: %s"
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr "rad %d: skriptprogram måste börja med \"/\": %s"
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr "rad %d: En andra %s"
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr "rad %d: %s"
@@ -2118,103 +2118,103 @@ msgstr "Kan inte öppna %s: %s\n"
msgid "Unclosed %%if"
msgstr "Oavslutat %%if"
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr "%s:%d: parseExpressionBoolean returnerar %d"
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr "%s:%d: Fick ett %%else utan något if"
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr "%s:%d: Fick ett %%endif utan något if"
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr "felformaterad %%include-sats"
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr "Inga byggbara arkitekturer"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr "Paketet har ingen %%description: %s"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr "arkiv = %s, fs = %s\n"
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr "rad %d: Felaktigt tal: %s"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr "rad %d: Felaktigt no%s-tal: %d"
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "rad %d: Felaktigt %s-tal: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "kan inte flytta %s till %s: %s\n"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr "kan inte ta bort %s: %s\n"
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr "getNextHeader: %s\n"
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr "(fel 0x%x)"
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr "Felaktigt magiskt tal"
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr "Felaktigt/oläsbart huvud"
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr "Huvudstorlek för stor"
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr "Okänd filtyp"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr "Saknad hårdlänk"
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr "Internt fel"
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr " misslyckades - "
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2223,198 +2223,198 @@ msgstr ""
"\"B\"-beroendet beghöver en epok (antar samma som \"A\")\n"
" A %s B %s\n"
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr " %s A %s\tB %s\n"
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr "%s: %-45s JA (lade till filer)\n"
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr "%s: %-45s JA (lade till tillhandahållande)\n"
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr "%s: %-45s %-3s (cachad)\n"
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr "%s: %-45s JA (db-filer)\n"
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr "%s: %-45s JA (db tillhandahållande)\n"
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr "%s: %-45s NEJ\n"
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr "paket %s står i konflikt: %s\n"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "cirkularitet i kedja av förutsättningar: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr "db%d fel(%d)"
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr " utför %s"
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr "stängde db fil %s\n"
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr "tog bort db-fil %s\n"
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr "felaktig db-fil %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "öppnar db-fil %s rättighet 0x%x\n"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "kan inte få %s lås på databas"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "uteslutande"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "delat"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr "stängde db-miljö %s/%s(%s)\n"
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr "tog bort db-miljö %s/%s(%s)\n"
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr "öppnar db-miljö %s/%s(%s) %s\n"
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr "stängde db-index %s/%s(%s)\n"
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr "öppnar db-index %s/%s(%s) %s mod=0x%x\n"
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr "dbiSetConfig: okänd db-flagga: \"%s\" ignorerad\n"
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr "%s har ogiltigt ogiltigt numeriskt värde, hoppar över\n"
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr "%s har för stort eller för litet \"long\"-värde, hoppar över\n"
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s har för stort eller för litet heltalsvärde, hoppar över\n"
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr "stängde db-miljö %s/%s\n"
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr "tar bort db-miljö %s/%s\n"
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr "öppnar db-miljö %s/%s %s\n"
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr "tog bort db-index %s/%s\n"
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "öppnar db-index %s/%s %s rättighet=0x%x\n"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kan inte få %s lås på %s/%s\n"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr "låste db-index %s/%s\n"
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2429,434 +2429,435 @@ msgstr ""
"rpm-list@redhat.com om \"rpm --rebuilddb\" inte lyckas rätta till "
"problemet.\n"
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(inte ett tal)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() kunde inte returnera fugger-storlek: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr "kunde inte ta status på %s: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr "hämtar lista över monterade filsystem\n"
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "kunde inte öppna %s: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr "filen %s är på en okänd enhet"
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr "grabData() RPM_STRING_TYPE måste vara 1.\n"
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr "Datatyp %d stöds inte\n"
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr "Felaktigt antal till headerAddEntry(): %d\n"
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "{ fattas efter %"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "} fattas efter %{"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "tomt taggformat"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "tomt taggnamn"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "okänd tagg"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "] förväntades vid slutet på vektor"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "oväntad ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "oväntad }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "? förväntades i uttryck"
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr "{ förväntades efter ? i uttryck"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "} förväntades i uttryck"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ": förväntades efter ? i deluttryck"
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr "{ förväntades efter : i uttryck"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "| förväntades vid slutet på uttryck"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(okänd typ)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr " fil: %s åtgärd: %s\n"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr "användaren %s finns inte - använder root"
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr "gruppen %s finns inte - använder root"
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr "%%instchangelog-värde i makrofil skall vara ett tal, men är inte det"
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr "uppackning av arkiv misslyckades%s%s: %s"
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr " vid fil "
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr "installerar källpaket\n"
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr "kan inte skapa källkatalog %s"
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr "kan inte skriva till %s"
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr "källkod i: %s\n"
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr "kan inte skapa spec-katalog %s"
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr "spec-fil i: %s\n"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr "källpaket innehåller ingen spec-fil"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr "byter namn på %s till %s\n"
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "namnbyte från %s till %s misslyckades: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr "källpaket förväntades, fann binärpaket"
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "paket: %s-%s-%s filtest = %d\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr "avbryter installation eftersom vi kör --test\n"
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr "kör (eventuellt) preinstalltionsskript\n"
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr "varning: %s skapades som %s"
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr "varning: %s sparades som %s"
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr "kör (eventuellt) postinstallationsskript\n"
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr "fel när tämporärfil %s skapades"
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr "paket med versionsnummer 1 stöds inte av denna version av RPM"
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr "buildroot redan specificerad"
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr "bygg till och med %%prep-steget från spec-fil"
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr "bygg till och med %%build-steget från spec-fil"
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr "bygg till och med %%install-steget från spec-fil"
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr "verifiera %%files-sektionen i spec-fil"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr "bygg käll- och binärpaket från spec-fil"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr "bygg binärpaket från spec-fil"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr "bygg källpaket från spec-fil"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr "bygg till och med %%prep-steget från tar-arkiv"
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr "bygg till och med %%build-steget från tar-arkiv"
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr "bygg till och med %%install-steget från tar-arkiv"
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr "verifiera %%files-sektionen från tar-arkiv"
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr "bygg käll- och binärpaket från tar-arkiv"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr "bygg binärpaket från tar-arkiv"
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr "bygg källpaket från tar-arkiv"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr "bygg binärpaket från källpaket"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr "bygg till och med %%install-steget från källpaket"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr "åsidosätt tillverkningsrot"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr "utför inga steg i tillverkningen"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr "acceptera inte översatta \"msgstr\" från spec-filen"
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr "ta bort spec-fil efteråt"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr "åsidosätt målplattform"
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr "slå upp översatta strängar i spec-fil katalog"
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr "fråga om/verifiera paket som äger fil"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr "fråga om/verifiera paket i grupp"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr "fråga om/verifiera en paketfil"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr "rpm frågeläge"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr "visa kända frågetaggar"
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr "fråga om en spec-fil"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr "undersök paket utlösta av paketet"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr "rpm verifieringsläge"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr "rpm verifieringsläge (ärvt)"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr "fråga om paket som behöver en egenskap"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr "fråga om paket som tillhandahåller en egenskap"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr "lista alla konfigurationsfiler"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr "lista alla dokumentationsfiler"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr "visa filinformation"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr "lista filer i paketet"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr "använd följande frågeformat"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr "ersätt översatta sektioner till spec-fil"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr "visa tillstånd för de listade filerna"
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr "visa en utförlig fillistning"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr " behövs av %s-%s-%s\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr " står i konflikt med %s-%s-%s\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "paket %s-%s-%s är för en annan arkitektur"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "paket %s-%s-%s är för ett annat operativsystem"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr "paket %s-%s-%s är redan installerat"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "sökväg %s är inte relokerbar för paket %s-%s-%s"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
"filen %s är en konflikt mellan installationsförsök av %s-%s-%s och %s-%s-%s"
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
@@ -2864,237 +2865,237 @@ msgstr ""
"filen %s från installation av %s-%s-%s står i konflikt med filen från paket "
"%s-%s-%s"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "paket %s-%s-%s (som är nyare än %s-%s-%s) är redan installerat"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr "installation av paket %s-%s-%s kräver %ld%cb på filsystem %s"
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "paket %s-%s-%s systemanrop före transaktion: %s misslyckades: %s"
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr "okänt fel %d uppträdde under manipulation av paket %s-%s-%s"
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "fel i format: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(innehåller inga filer)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr "normal "
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr "ersatt "
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr "oinstallerat "
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr "nätdelad "
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr "(okänd %3d) "
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr "(ej tillstnd) "
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr "paketet har varken filägare eller id-listor"
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr "kan inte fråga om %s: %s\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr "misslyckades öppna %s: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "källpaket i gammalt format går ej att fråga om\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s verkar inte vara ett RPM-paket\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "fråga om %s misslyckades\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "fråga om spec-fil %s misslyckades, kan inte parsa\n"
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr "inga paket\n"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "grupp %s innehåller inga paket\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "inga paketutlösare %s\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "inget paket behöver %s\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "inget paket tillhandahåller %s\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr "fil %s: %s\n"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "filen %s ägs inte av något paket\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "felaktigt paketnummer: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr "paketpost nummer: %u\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "post %d kunde inte läsas\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "paket %s är inte installerat\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: open misslyckades: %s\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr "makeTempFile misslyckades\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite misslyckades: %s\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread misslyckades: %s\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead misslyckades\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: Kan inte signera v1.0 RPM\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Kan inte signera om v2.0 RPM\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature misslyckades\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen signatur tillgänglig\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: writeLead misslyckades: %s\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature misslyckades: %s\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr "EJ OK"
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr " (SAKNADE NYCKLAR:"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr " (EJ BETRODDA NYCKLAR:"
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr "OK"
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr "dbiTagsInit: okänt taggnamn: \"%s\" ignorerat\n"
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3109,17 +3110,17 @@ msgstr ""
"/etc/rpm/macros).\n"
"\n"
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "kan inte öppna %s-indexet med db%d - %s (%d)"
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr "kan inte öppna %s-indexet"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3134,7 +3135,7 @@ msgstr ""
" till db%d-format genom att köra \"rpm --rebuilddb\" som root.\n"
"\n"
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3150,7 +3151,7 @@ msgstr ""
"/etc/rpm/macros).\n"
"\n"
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3168,26 +3169,26 @@ msgstr ""
" \"%%_dbapi_rebuild %d\" (d.v.s. skapa och/eller ändra /etc/rpm/macros).\n"
"\n"
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr "fel(%d) när post %s sparades i %s"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr "fel(%d) när post %s togs bort ur %s"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "ingen dbpath har satts"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
@@ -3196,332 +3197,237 @@ msgstr ""
"i nytt format"
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr "fel(%d) när paket räknades"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "%s: kan inte läsa huvud vid 0x%x"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr "tar bort 0 %s-poster.\n"
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "tar bort \"%s\" från %s-indexet.\n"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "tar bort %d poster från %s-indexet.\n"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr "fel(%d) vid allokering av ny paketinstans"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr "lägger till 0 %s-poster.\n"
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "lägger till \"%s\" till %s-indexet.\n"
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "lägger till %d poster till %s-indexet.\n"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "bygger om databas %s till %s\n"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "tillfällig databas %s existerar redan"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr "skapar katalog %s\n"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "fel när katalog skapades %s: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "öppnar gammal databas med dbapi %d\n"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "öppnar ny databas med dbapi %d\n"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "post nummer %d i databasen är felaktig -- hoppar över den."
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "kan inte lägga till post ursprungligen vid %d"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n"
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr "kunde inte ersätta gammal databas med ny databas!\n"
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "byt ut filer i %s med filer från %s för att återställa"
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr "tar bort katalog %s\n"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "kunde inte ta bort katalogen %s: %s\n"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr "räknar paket att installera\n"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr "hittade %d paket\n"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr "letar efter paket att hämta\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "hoppar över %s - rpmGlob misslyckades(%d)\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "Hämtar %s\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr " ... som %s\n"
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "hoppar över %s - överföring misslyckades - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr "hämtade %d paket\n"
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr "kan inte öppna filen %s: %s\n"
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr "%s kan inte installeras\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr "kan inte öppna paketdatabas i %s\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr "paket %s är inte relokerbart\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr "fel vid läsning från fil %s\n"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr "filen %s behöver en nyare version av RPM\n"
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr "hittade %d käll- och %d binärpaket\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "ouppfyllda beroenden:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr "installerar binärpaket\n"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" anger flera paket\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr "kan inte öppna %s: %s\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "Installerar %s\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "läsning misslyckades: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "andra \":\" saknas vid %s:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "arkitekturnamn saknas vid %s:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "Ofullständig datarad vid %s:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "För många argument i datarad vid %s:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Felaktigt arkitektur-/osnummer: %s (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "Ofullständig skönsfallsrad vid %s:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "För många argument i skönsfallsrad vid %s:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr "Kan inte expandera %s"
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr "Kan inte läsa %s, HOME är för stor."
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "Kan inte öppna %s för läsning: %s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "Misslyckades med att läsa %s: %s."
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "argument till %s saknas vid %s:%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "%s expansion misslyckade vid %s:%d \"%s\""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "kan inte öppna %s vid %s:%d: %s"
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "arkitektur saknas för %s vid %s:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "okänd flagga \"%s\" vid %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr "Okänt system: %s\n"
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr "Var god kontakta rpm-list@redhat.com\n"
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr "sigstorlek : %d\n"
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr "Huvud + Arkiv : %d\n"
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr "förväntad storlek: %d\n"
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
@@ -3581,7 +3487,7 @@ msgstr "kan inte läsa signaturen"
msgid "Got %d bytes of PGP sig\n"
msgstr "Fick %d byte PGPsignatur\n"
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr "Kunde inte köra gpg"
@@ -3613,310 +3519,367 @@ msgstr "Genererar signatur med PGP.\n"
msgid "Generating signature using GPG.\n"
msgstr "Genererar signatur med GPG.\n"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "Kunde inte köra pgp. Använd --nopgp för att hoppa över PGPkontroll."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr "exec misslyckades!\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "Kunde inte köra gpg. Använd --nogpg för att hoppa över GPGkontroll."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "Kunde inte köra pgp"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr "Ogiltig %%_signature specifikation i makrofil"
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil"
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr "hoppar över %s%s\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr "flyttar %s till %s\n"
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "kan inte ta bort %s - katalogen är inte tom"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "rmdir av %s misslyckades: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "borttagning av %s misslyckades: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr "tar bort filer test = %d\n"
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr "kör (eventuellt) postavinstallationsskript\n"
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d"
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr "verifiera inte filerna i paketet"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
"paket saknar både användarnamn och id-listor (detta borde aldrig inträffa)"
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
"paket saknar både gruppnamn och id-listor (detta borde aldrig inträffa)"
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr "saknas %s\n"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Ouppfyllda beroenden för %s-%s-%s: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr "Lyckades"
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr "Konstigt svar från server"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr "IO-fel mot server"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr "Förbindelsen med servern dog ut (timeout)"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr "Kunde inte slå upp serverns adress"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr "Kunde inte slå upp serverns namn"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr "Misslyckades med att kontakta servern"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr "Misslyckades med att etablera en dataförbindelse till servern"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "IO-fel mot lokal fil"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Fel när den fjärrservern sattes i passivt läge"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Filen fanns inte på servern"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr "Avbruten under gång"
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr "Okänt eller oväntat fel"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr "loggar in på %s som %s, lösenord %s\n"
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr "======================== aktiva %d tomma %d\n"
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr "%3d>%*s(tom)"
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr "%3d<%*s(tom)\n"
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr "Makro %%%s har oavslutad kropp"
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr "Makro %%%s har otillåtet namn (%%define)"
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr "Makro %%%s har oavslutade flaggor"
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr "makro %%%s har tom kropp"
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr "Makro %%%s misslyckades att expandera"
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr "Makro %%%s har otillåtet namn (%%undefine)"
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr "Makro %%%s (%s) var inte använd under nivå %d"
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr "Okänd flagga %c i %s(%s)"
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr "Rekursionsdjup(%d) större än max(%d)"
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr "Oavslutad %c: %s"
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr "Ett %% följs av ett makro som inte kan parsas"
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr "Inget makro %%%.*s hittat, hoppar över"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr "Målbuffer översvämmad"
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr "Fil %s: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr "Filen %s är mindre än %d byte"
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "varning: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "fel: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "fatalt fel: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr "internt fel (fel i rpm?): "
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr "minnesallokering (%u byte) returnerade NULL.\n"
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr "varning: u %p ctrl %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr "varning: u %p data %p nrefs != 0 (%s %s)\n"
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr "varning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "Lösenord för %s@%s: "
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr "fel: %s-port måste vara ett tal\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr "url-port måste vara ett tal\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr "kunde inte öppna %s: %s\n"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr "kunde inte skapa %s: %s\n"
+
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "andra \":\" saknas vid %s:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "arkitekturnamn saknas vid %s:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "Ofullständig datarad vid %s:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "För många argument i datarad vid %s:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Felaktigt arkitektur-/osnummer: %s (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "Ofullständig skönsfallsrad vid %s:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "För många argument i skönsfallsrad vid %s:%d"
+
+#~ msgid "Cannot expand %s"
+#~ msgstr "Kan inte expandera %s"
+
+#~ msgid "Cannot read %s, HOME is too large."
+#~ msgstr "Kan inte läsa %s, HOME är för stor."
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "Kan inte öppna %s för läsning: %s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "Misslyckades med att läsa %s: %s."
+
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "\":\" saknas (hittade 0x%02x) vid %s:%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "argument till %s saknas vid %s:%d"
+
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "%s expansion misslyckade vid %s:%d \"%s\""
+
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "kan inte öppna %s vid %s:%d: %s"
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "arkitektur saknas för %s vid %s:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "okänd flagga \"%s\" vid %s:%d"
+
+#~ msgid "Unknown system: %s\n"
+#~ msgstr "Okänt system: %s\n"
+
+#~ msgid "Please contact rpm-list@redhat.com\n"
+#~ msgstr "Var god kontakta rpm-list@redhat.com\n"
diff --git a/po/tr.po b/po/tr.po
index 2ec9f1eb9..abbc8087e 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, fuzzy, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
@@ -30,39 +30,39 @@ msgid "Unable to open spec file %s: %s\n"
msgstr "%s okuma eriþimi için açýlamadý:%s."
# , c-format
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, fuzzy, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr "%s 'ye eriþimde hata oluþtu\n"
#. Give up
-#: build.c:149
+#: build.c:147
#, fuzzy, c-format
msgid "Failed to read spec file from %s\n"
msgstr "%s okunamadý: %s"
-#: build.c:176
+#: build.c:174
#, fuzzy, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr "%s okunamadý: %s"
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, fuzzy, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr "%s bir RPM paketi deðil (gibi)\n"
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, fuzzy, c-format
msgid "Building for target %s\n"
msgstr "%s paketi bulunamadý\n"
@@ -776,15 +776,15 @@ msgstr ""
"çalýþtýrýlabilir ve Kaynak paket yaratmak (hazýrlama, derleme, yükleme "
"vepaketleme)"
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr "doðrudan belirtilen adýma atlar (sadece c ve i için)"
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr "iþlem sonunda paket yaratma yapýsýný siler"
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
#, fuzzy
msgid "remove sources when done"
msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
@@ -1385,7 +1385,7 @@ msgstr " -b<adým> <spec> "
msgid " Package specification options:"
msgstr " Paket seçim seçenekleri:"
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
#, fuzzy
msgid "query/verify all packages"
msgstr "Tüm paketleri sorgulama"
@@ -1608,652 +1608,652 @@ msgstr "oluþturma için gerekli spec dosyasý belirtilmedi"
msgid "no tar files given for build"
msgstr "oluþturma için gereken tar dosyalarý belirttilmedi"
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
#, fuzzy
msgid "Unable to open temp file."
msgstr "%s okuma eriþimi için açýlamadý:%s."
-#: build/build.c:189
+#: build/build.c:190
#, fuzzy, c-format
msgid "Executing(%s): %s\n"
msgstr "%s alýnýyor\n"
-#: build/build.c:195
+#: build/build.c:196
#, fuzzy, c-format
msgid "Exec of %s failed (%s): %s"
msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
#, fuzzy
msgid "syntax error while parsing =="
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:241
+#: build/expression.c:237
#, fuzzy
msgid "syntax error while parsing &&"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:250
+#: build/expression.c:246
#, fuzzy
msgid "syntax error while parsing ||"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:292
+#: build/expression.c:288
#, fuzzy
msgid "parse error in expression"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
#, fuzzy
msgid "syntax error in expression"
msgstr "dizi içerisinde ? bekleniyordu"
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, fuzzy, c-format
msgid "Missing '(' in %s %s"
msgstr "% den sonra eksik {"
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, fuzzy, c-format
msgid "Missing ')' in %s(%s"
msgstr "%s te eksik ':' :%d"
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, fuzzy, c-format
msgid "Bad syntax: %s(%s)"
msgstr "%s okunamadý: %s"
-#: build/files.c:395
+#: build/files.c:396
#, fuzzy, c-format
msgid "Bad mode spec: %s(%s)"
msgstr "%s okunamadý: %s"
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, fuzzy, c-format
msgid "Two files on one line: %s"
msgstr "%s açýlamadý: %s"
-#: build/files.c:713
+#: build/files.c:714
#, fuzzy, c-format
msgid "File must begin with \"/\": %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, fuzzy, c-format
msgid "File listed twice: %s"
msgstr "%s okunamadý: %s"
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, fuzzy, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr "%s okunamadý: %s"
-#: build/files.c:1020
+#: build/files.c:1021
#, fuzzy, c-format
msgid "File not found: %s"
msgstr "Dosya sunucuda bulunamadý"
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, fuzzy, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr "%s açýlamadý: %s"
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, fuzzy, c-format
msgid "File not found by glob: %s"
msgstr "Dosya sunucuda bulunamadý"
-#: build/files.c:1230
+#: build/files.c:1231
#, fuzzy
msgid "Could not open %%files file %s: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, fuzzy, c-format
msgid "Bad file: %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, fuzzy, c-format
msgid "Couldn't exec %s: %s"
msgstr "PGP çalýþtýrýlamadý"
-#: build/files.c:1638
+#: build/files.c:1639
#, fuzzy, c-format
msgid "Couldn't fork %s: %s"
msgstr "Ýmza hedefi 'sigtarget' okunamadý"
-#: build/files.c:1720
+#: build/files.c:1721
#, fuzzy, c-format
msgid "%s failed"
msgstr "PGP hata verdi"
-#: build/files.c:1724
+#: build/files.c:1725
#, fuzzy, c-format
msgid "failed to write all data to %s"
msgstr "%s yaratýlamýyor\n"
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, fuzzy, c-format
msgid "Failed to find %s:"
msgstr "%s yaratýlamýyor\n"
-#: build/files.c:1968
+#: build/files.c:1969
#, fuzzy, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr "%s açýlamadý: %s"
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, fuzzy, c-format
msgid "create archive failed on file %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, fuzzy, c-format
msgid "cpio_copy read failed: %s"
msgstr "okuma hatasý: %s (%d)"
-#: build/pack.c:155
+#: build/pack.c:156
#, fuzzy, c-format
msgid "Could not open PreIn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:162
+#: build/pack.c:163
#, fuzzy, c-format
msgid "Could not open PreUn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:169
+#: build/pack.c:170
#, fuzzy, c-format
msgid "Could not open PostIn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:176
+#: build/pack.c:177
#, fuzzy, c-format
msgid "Could not open PostUn file: %s"
msgstr "hata: %s dosyasý okunamadý\n"
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, fuzzy, c-format
msgid "readRPM: open %s: %s\n"
msgstr "%s açýlamadý: %s"
-#: build/pack.c:236
+#: build/pack.c:237
#, fuzzy, c-format
msgid "readRPM: read %s: %s\n"
msgstr "%s okunamadý: %s"
-#: build/pack.c:257
+#: build/pack.c:258
#, fuzzy, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr "hata: %s herhangi bir RPM pakedine ait görünmüyor\n"
-#: build/pack.c:263
+#: build/pack.c:264
#, fuzzy, c-format
msgid "readRPM: reading header from %s\n"
msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
# , c-format
-#: build/pack.c:402
+#: build/pack.c:403
#, fuzzy, c-format
msgid "Could not open %s: %s\n"
msgstr "%s 'ye eriþimde hata oluþtu\n"
-#: build/pack.c:434
+#: build/pack.c:437
#, fuzzy, c-format
msgid "Unable to write package: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:449
+#: build/pack.c:452
#, fuzzy, c-format
msgid "Generating signature: %d\n"
msgstr "PGP-imzasý yaratýr"
-#: build/pack.c:465
+#: build/pack.c:468
#, fuzzy, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:475
+#: build/pack.c:478
#, fuzzy, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:485
+#: build/pack.c:488
#, fuzzy, c-format
msgid "Unable to write package %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, fuzzy, c-format
msgid "cannot create %s: %s\n"
msgstr "%s dosyasý açýlamýyor: "
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, fuzzy, c-format
msgid "line %d: Bad option %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, fuzzy, c-format
msgid "line %d: Package does not exist: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, fuzzy, c-format
msgid "Unable to open icon %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, fuzzy, c-format
msgid "Unable to read icon %s: %s"
msgstr "%s 'nin yazýlmasý mümkün deðil"
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, fuzzy, c-format
msgid "Unknown icon type: %s"
msgstr "(bilinmeyen tip)"
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, fuzzy, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr "%s açýlamadý: %s"
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, fuzzy, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, fuzzy, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, fuzzy, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr "%s için %s te eksik mimari:%d"
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, fuzzy, c-format
msgid "Bad package specification: %s"
msgstr " Paket seçim seçenekleri:"
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, fuzzy, c-format
msgid "Bad source: %s: %s"
msgstr "%s okunamadý: %s"
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, fuzzy, c-format
msgid "No patch number %d"
msgstr "(üye deðil)"
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, fuzzy, c-format
msgid "Couldn't download nosource %s: %s"
msgstr "%s okunamadý: %s"
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, fuzzy, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr "relocate iþlemi / ile baþlamalý"
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, fuzzy, c-format
msgid "line %d: File name not permitted: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, fuzzy, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, fuzzy, c-format
msgid "line %d: Version required: %s"
msgstr "%s açýlamadý: %s"
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, fuzzy, c-format
msgid "line %d: %s"
msgstr "%s açýlamadý: %s"
@@ -2269,306 +2269,306 @@ msgstr "%s 'ye eriþimde hata oluþtu\n"
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
#, fuzzy
msgid "No buildable architectures"
msgstr "paket mimarisini doðrulamaz"
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
#, fuzzy
msgid "Package has no %%description: %s"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, fuzzy, c-format
msgid "line %d: Bad number: %s"
msgstr "geçersiz paket numarsý: %s\n"
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, fuzzy, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr "geçersiz paket numarsý: %s\n"
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, fuzzy, c-format
msgid "can't rename %s to %s: %s\n"
msgstr "%s okunamadý: %s"
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, fuzzy, c-format
msgid "(error 0x%x)"
msgstr "hata: "
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
#, fuzzy
msgid "Unknown file type"
msgstr "(bilinmeyen tip)"
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
#, fuzzy
msgid "Internal error"
msgstr "ölümcül hata: "
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
#, fuzzy
msgid " failed - "
msgstr "PGP hata verdi"
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, fuzzy, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, fuzzy, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, fuzzy, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr "%s paketi %s altýnda gözükmüyor"
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, fuzzy, c-format
msgid "package %s conflicts: %s\n"
msgstr "%s paketi %s altýnda gözükmüyor"
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr "gerekenler zincirinde döngü: %s"
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, fuzzy, c-format
msgid "bad db file %s"
msgstr "%s açýlamadý: %s"
-#: lib/db1.c:429
+#: lib/db1.c:435
#, fuzzy, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr "Veritabaný için %s kilit (lock) alýnamadý"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr "özel"
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr "paylaþýlan (shared)"
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "Veritabaný için %s kilit (lock) alýnamadý"
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2578,711 +2578,712 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr "(üye deðil)"
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr "mntctl() çaðrýsý boyut bilgisi vermedi: %s"
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, fuzzy, c-format
msgid "failed to stat %s: %s"
msgstr "%s açýlamadý: %s"
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr "%s açýlamadý: %s"
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr "% den sonra eksik {"
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr "%{ den sonra eksik }"
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr "boþ tag tanýmlamasý"
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr "boþ tag ismi"
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr "bilinmeyen tag"
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr "dizinin sonunda ] bekleniyordu"
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr "beklenmeyen ]"
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr "beklenmeyen }"
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr "dizi içerisinde ? bekleniyordu"
-#: lib/header.c:1655
+#: lib/header.c:1691
#, fuzzy
msgid "{ expected after ? in expression"
msgstr "dizi içerisinde ? den sonra { bekleniyordu"
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr "dizi içerisinde } bekleniyordu"
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr "? altdizisinden sonra : bekleniyordu"
-#: lib/header.c:1688
+#: lib/header.c:1724
#, fuzzy
msgid "{ expected after : in expression"
msgstr "dizide : den sonra { bekleniyordu"
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr "dizinin sonunda | bekleniyordu"
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr "(bilinmeyen tip)"
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, fuzzy, c-format
msgid " file: %s action: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
#, fuzzy
msgid "installing a source package\n"
msgstr "paket yüklemek"
-#: lib/install.c:645
+#: lib/install.c:677
#, fuzzy, c-format
msgid "cannot create sourcedir %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, fuzzy, c-format
msgid "cannot write to %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, fuzzy, c-format
msgid "cannot create specdir %s"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/install.c:685
+#: lib/install.c:717
#, fuzzy, c-format
msgid "spec file in: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
#, fuzzy
msgid "source package contains no .spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr "%s 'nin isminin %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, fuzzy, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, fuzzy, c-format
msgid "error creating temporary file %s"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/package.c:52
+#: lib/package.c:60
#, fuzzy
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
"RPM'in bu sürümünde sadece major numarasý <= 3 olan paketler destekleniyor"
-#: lib/package.c:112
+#: lib/package.c:120
#, fuzzy
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
"RPM'in bu sürümünde sadece major numarasý <= 3 olan paketler destekleniyor"
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
#, fuzzy
msgid "verify %%files section from spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
#, fuzzy
msgid "build source and binary package from spec file"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
#, fuzzy
msgid "build binary package from spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
#, fuzzy
msgid "build source package from spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
#, fuzzy
msgid "build source and binary package from tar ball"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
#, fuzzy
msgid "build source package from tar ball"
msgstr "paketleri <os> iþletim sistemi için oluþturur"
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
#, fuzzy
msgid "build binary package from source package"
msgstr ""
"çalýþtýrýlabilir paket yaratma (hazýrlama, derleme, yükleme, paketleme)"
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
#, fuzzy
msgid "build through %%install stage from source package"
msgstr "paket yüklemek"
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
#, fuzzy
msgid "override build root"
msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
#, fuzzy
msgid "do not execute any stages of the build"
msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
#, fuzzy
msgid "remove specfile when done"
msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
#, fuzzy
msgid "query/verify package owning file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
#, fuzzy
msgid "query/verify packages in group"
msgstr "pakedin adý yok :-)"
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
#, fuzzy
msgid "query/verify a package file"
msgstr "Tüm paketleri sorgulama"
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
#, fuzzy
msgid "rpm query mode"
msgstr "Sorgulama kipi"
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
#, fuzzy
msgid "query a spec file"
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
#, fuzzy
msgid "query the pacakges triggered by the package"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
#, fuzzy
msgid "rpm verify mode"
msgstr "Sorgulama kipi"
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
#, fuzzy
msgid "rpm verify mode (legacy)"
msgstr "Sorgulama kipi"
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
#, fuzzy
msgid "query the packages which require a capability"
msgstr "<i> yeteneðine ihtiyaç duyan paketleri sorgulama"
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
#, fuzzy
msgid "query the packages which provide a capability"
msgstr "<i> yeteneði olan paketleri sorgulama"
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
#, fuzzy
msgid "list all configuration files"
msgstr ""
"sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)"
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
#, fuzzy
msgid "list all documentation files"
msgstr "paket ile gelen belgeleri de yükler"
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
#, fuzzy
msgid "dump basic file information"
msgstr "Paket bilgisini gösterme"
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
#, fuzzy
msgid "list files in package"
msgstr "paket yüklemek"
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
#, fuzzy
msgid "use the following query format"
msgstr "beklenmeyen sorgulama kaynaðý girildi"
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
#, fuzzy
msgid "substitute i18n sections into spec file"
msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
#, fuzzy
msgid "display a verbose file listing"
msgstr "Paketin içerdiði dosyalarý gösterme"
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ", %s-%s-%s tarafýndan kullanýlýyor\n"
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ", %s-%s-%s ile çeliþiyor\n"
-#: lib/problems.c:99
+#: lib/problems.c:103
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:104
+#: lib/problems.c:108
#, fuzzy, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:109
+#: lib/problems.c:113
#, fuzzy, c-format
msgid "package %s-%s-%s is already installed"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/problems.c:114
+#: lib/problems.c:118
#, fuzzy, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, fuzzy, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ", %s-%s-%s ile çeliþiyor\n"
-#: lib/problems.c:131
+#: lib/problems.c:135
#, fuzzy, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, fuzzy, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr "format hatasý: %s\n"
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr "(hiç dosya içermiyor)"
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
#, fuzzy
msgid "not installed "
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, fuzzy, c-format
msgid "(unknown %3d) "
msgstr "(bilinmeyen tip)"
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, fuzzy, c-format
msgid "can't query %s: %s\n"
msgstr "hata: %s eriþilemiyor\n"
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, fuzzy, c-format
msgid "open of %s failed: %s\n"
msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr "eski tip kaynak paketleri sorgulanamýyor\n"
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr "%s bir RPM paketi deðil (gibi)\n"
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
-#: lib/query.c:557
+#: lib/query.c:561
#, fuzzy, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
-#: lib/query.c:580
+#: lib/query.c:584
#, fuzzy
msgid "no packages\n"
msgstr "Tüm paketleri sorgulama"
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr "hiç bir paket %s tetiklemiyor\n"
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr "hiç bir paket %s gerektirmiyor\n"
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr "hiç bir paket %s saðlamýyor\n"
-#: lib/query.c:651
+#: lib/query.c:655
#, fuzzy, c-format
msgid "file %s: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr "geçersiz paket numarsý: %s\n"
-#: lib/query.c:683
+#: lib/query.c:687
#, fuzzy, c-format
msgid "package record number: %u\n"
msgstr "geçersiz paket numarsý: %s\n"
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr "%d numaralý kayýt okunamadý\n"
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, fuzzy, c-format
msgid "%s: open failed: %s\n"
msgstr "%s: Eriþilemedi\n"
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
#, fuzzy
msgid "makeTempFile failed\n"
msgstr "%s: Eriþilemedi\n"
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, fuzzy, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: 'readLead' hata verdi\n"
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: 'readLead' hata verdi\n"
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: 'readLead' hata verdi\n"
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr "%s: v1.0-RPM (eski sürüm) imzalanamýyor\n"
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: v2.0-RPM (eski sürüm) yeniden imzalanamýyor\n"
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: 'rpmReadSignature' hata verdi\n"
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ýmza bulunmuyor\n"
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, fuzzy, c-format
msgid "%s: writeLead failed: %s\n"
msgstr "%s: 'readLead' hata verdi\n"
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, fuzzy, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: 'rpmReadSignature' hata verdi\n"
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (EKSÝK ANAHTARLAR)"
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3291,17 +3292,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, fuzzy, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, fuzzy, c-format
msgid "cannot open %s index"
msgstr "hata: %s eriþilemiyor\n"
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3311,7 +3312,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3321,7 +3322,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3332,361 +3333,266 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, fuzzy, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, fuzzy, c-format
msgid "error(%d) storing record %s into %s"
msgstr "%s kaydý %s dosyasýna yazýlamýyor"
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, fuzzy, c-format
msgid "error(%d) removing record %s from %s"
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr "dbpath deðeri girilmemiþ"
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, fuzzy, c-format
msgid "error(%d) counting packages"
msgstr "%s pakedi aranýrken hata oluþtu\n"
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x"
msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, fuzzy, c-format
msgid "error(%d) allocating new package instance"
msgstr "%s pakedi aranýrken hata oluþtu\n"
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr "geçici veritabaný %s mevcut"
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, fuzzy, c-format
msgid "record number %d in database is bad -- skipping."
msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr "%d de yer alan kayýt saklayamýyor"
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "%s açýlamadý: %s"
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
#, fuzzy
msgid "counting packages to install\n"
msgstr "yüklenecek paketler belirtilmedi"
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, fuzzy, c-format
msgid "found %d packages\n"
msgstr "Tüm paketleri sorgulama"
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
#, fuzzy
msgid "looking for packages to download\n"
msgstr "%s pakedi aranýrken hata oluþtu\n"
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, fuzzy, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr "%s alýnýyor\n"
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, fuzzy, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, fuzzy, c-format
msgid "cannot open file %s: %s\n"
msgstr "%s dosyasý açýlamýyor: "
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, fuzzy, c-format
msgid "%s cannot be installed\n"
msgstr "hata: %s yüklenemedi\n"
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, fuzzy, c-format
msgid "cannot open Packages database in %s\n"
msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, fuzzy, c-format
msgid "package %s is not relocateable\n"
msgstr "%s pakedi yüklenmemiþ\n"
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, fuzzy, c-format
msgid "error reading from file %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, fuzzy, c-format
msgid "found %d source and %d binary packages\n"
msgstr "%s grubu hiç paket içermiyor\n"
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
#, fuzzy
msgid "installing binary packages\n"
msgstr "paket yüklemek"
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr "bu paketin silinmesi aþaðýdaki baðýmlýlýklarý etkileyecektir:\n"
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, fuzzy, c-format
msgid "cannot open %s: %s\n"
msgstr "hata: %s eriþilemiyor\n"
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr "%s yükleniyor\n"
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr "okuma hatasý: %s (%d)"
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr "%s te ikinci ':' eksik:%d"
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr "%s te eksik mimari tanýmlamasý:%d"
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr "%s te eksik data satýrý:%d"
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr "%s te data satýrýnda çok fazla argüman:%d"
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr "Kötü arch/os numarasý %s: (%s:%d)"
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr "%s te eksik default satýrý:%d"
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr "%s te default satýrýnda çok fazla argüman:%d"
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr "%s okuma eriþimi için açýlamadý:%s."
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr "%s okunamadý: %s"
-
-#: lib/rpmrc.c:655
-#, fuzzy, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr "%s te eksik ':' :%d"
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr "%s için %s te eksik argüman :%d"
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, fuzzy, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr "%s açýlamadý: %s"
-
-#: lib/rpmrc.c:698
-#, fuzzy, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr "%s dosyasý açýlamýyor: "
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr "%s için %s te eksik mimari:%d"
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr "%s geçersiz seçenek %s:%d"
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3749,7 +3655,7 @@ msgstr "imzayý okumak mümkün olmadý"
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
#, fuzzy
msgid "Couldn't exec gpg"
msgstr "PGP çalýþtýrýlamadý"
@@ -3786,327 +3692,375 @@ msgstr "PGP-imzasý yaratýr"
msgid "Generating signature using GPG.\n"
msgstr "PGP-imzasý yaratýr"
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn."
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
#, fuzzy
msgid "exec failed!\n"
msgstr "%s: Eriþilemedi\n"
-#: lib/signature.c:628
+#: lib/signature.c:630
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn."
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr "PGP çalýþtýrýlamadý"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
#, fuzzy
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
-#: lib/signature.c:765
+#: lib/signature.c:767
#, fuzzy
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, fuzzy, c-format
msgid "excluding file %s%s\n"
msgstr "%s alýnýyor\n"
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s dizinin oluþturulmasýnda hata: %s"
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr "%s silinemedi - belirtilen dizin boþ deðil"
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s"
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, fuzzy, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr "betik (script) çalýþtýrýlamadý "
-#: lib/verify.c:39
+#: lib/verify.c:43
#, fuzzy
msgid "don't verify files in package"
msgstr "paket yüklemek"
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, fuzzy, c-format
msgid "missing %s\n"
msgstr "% den sonra eksik {"
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s 'nin baðýmlýlýk sorunlarý: "
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
#, fuzzy
msgid "Bad server response"
msgstr "FTP sunucusundan kötü yanýt"
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
#, fuzzy
msgid "Server IO error"
msgstr "FTP I/O hatasý"
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
#, fuzzy
msgid "Server timeout"
msgstr "FTP sunucusu zaman aþýmý"
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
#, fuzzy
msgid "Unable to lookup server host address"
msgstr "FTP sunucusunun isim adres dönüþümü yapýlamadý"
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
#, fuzzy
msgid "Unable to lookup server host name"
msgstr "FTP sunucusunun adres isim dönüþümü yapýlamadý"
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
#, fuzzy
msgid "Failed to connect to server"
msgstr "FTP sunucusuna baðlanýlamadý"
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
#, fuzzy
msgid "Failed to establish data connection to server"
msgstr "FTP sunucusu ile veri alýþveriþi yapýlamadý"
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr "Yerel dosyaya eriþim sýrasýnda I/O hatasý"
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr "Karþý sunucuyu pasif kipe sokam hatasý"
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr "Dosya sunucuda bulunamadý"
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
#, fuzzy
msgid "Unknown or unexpected error"
msgstr "FTP bilinmeyen ya da beklenmeyen hata"
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
#, fuzzy
msgid "Macro %%%.*s not found, skipping"
msgstr "%s pakedi %s içerisinde bulunamadý"
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, fuzzy, c-format
msgid "File %s: %s"
msgstr "%s açýlamadý: %s"
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr "uyarý: "
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr "hata: "
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr "ölümcül hata: "
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr "%s'%s için parola"
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, fuzzy, c-format
msgid "error: %sport must be a number\n"
msgstr "hata: ftpport bir sayý olmalý\n"
-#: rpmio/url.c:405
+#: rpmio/url.c:409
#, fuzzy
msgid "url port must be a number\n"
msgstr "hata: ftpport bir sayý olmalý\n"
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, fuzzy, c-format
msgid "failed to open %s: %s\n"
msgstr "%s açýlamadý: %s"
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, fuzzy, c-format
msgid "failed to create %s: %s\n"
msgstr "%s yaratýlamýyor\n"
+#~ msgid "missing second ':' at %s:%d"
+#~ msgstr "%s te ikinci ':' eksik:%d"
+
+#~ msgid "missing architecture name at %s:%d"
+#~ msgstr "%s te eksik mimari tanýmlamasý:%d"
+
+#~ msgid "Incomplete data line at %s:%d"
+#~ msgstr "%s te eksik data satýrý:%d"
+
+#~ msgid "Too many args in data line at %s:%d"
+#~ msgstr "%s te data satýrýnda çok fazla argüman:%d"
+
+#~ msgid "Bad arch/os number: %s (%s:%d)"
+#~ msgstr "Kötü arch/os numarasý %s: (%s:%d)"
+
+#~ msgid "Incomplete default line at %s:%d"
+#~ msgstr "%s te eksik default satýrý:%d"
+
+#~ msgid "Too many args in default line at %s:%d"
+#~ msgstr "%s te default satýrýnda çok fazla argüman:%d"
+
+#~ msgid "Unable to open %s for reading: %s."
+#~ msgstr "%s okuma eriþimi için açýlamadý:%s."
+
+#~ msgid "Failed to read %s: %s."
+#~ msgstr "%s okunamadý: %s"
+
+#, fuzzy
+#~ msgid "missing ':' (found 0x%02x) at %s:%d"
+#~ msgstr "%s te eksik ':' :%d"
+
+#~ msgid "missing argument for %s at %s:%d"
+#~ msgstr "%s için %s te eksik argüman :%d"
+
+#, fuzzy
+#~ msgid "%s expansion failed at %s:%d \"%s\""
+#~ msgstr "%s açýlamadý: %s"
+
+#, fuzzy
+#~ msgid "cannot open %s at %s:%d: %s"
+#~ msgstr "%s dosyasý açýlamýyor: "
+
+#~ msgid "missing architecture for %s at %s:%d"
+#~ msgstr "%s için %s te eksik mimari:%d"
+
+#~ msgid "bad option '%s' at %s:%d"
+#~ msgstr "%s geçersiz seçenek %s:%d"
+
#~ msgid ""
#~ " [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
#~ msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 23cd0fd67..3237da2f5 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/wa.po b/po/wa.po
index 23cd0fd67..3237da2f5 100644
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/zh.po b/po/zh.po
index 23cd0fd67..3237da2f5 100644
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po
index 23cd0fd67..3237da2f5 100644
--- a/po/zh_CN.GB2312.po
+++ b/po/zh_CN.GB2312.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-08-14 09:19-0400\n"
+"POT-Creation-Date: 2000-08-27 20:56-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"
@@ -14,7 +14,7 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: build.c:25 lib/rpminstall.c:451
+#: build.c:25 lib/rpminstall.c:455
#, c-format
msgid "cannot open %s/packages.rpm\n"
msgstr ""
@@ -28,39 +28,39 @@ msgstr ""
msgid "Unable to open spec file %s: %s\n"
msgstr ""
-#: build.c:128 build.c:141
+#: build.c:126 build.c:139
#, c-format
msgid "Failed to open tar pipe: %s\n"
msgstr ""
#. Give up
-#: build.c:149
+#: build.c:147
#, c-format
msgid "Failed to read spec file from %s\n"
msgstr ""
-#: build.c:176
+#: build.c:174
#, c-format
msgid "Failed to rename %s to %s: %s\n"
msgstr ""
-#: build.c:216
+#: build.c:214
#, c-format
msgid "File is not a regular file: %s\n"
msgstr ""
-#: build.c:223
+#: build.c:221
#, c-format
msgid "File %s does not appear to be a specfile.\n"
msgstr ""
#. parse up the build operators
-#: build.c:284
+#: build.c:282
#, c-format
msgid "Building target platforms: %s\n"
msgstr ""
-#: build.c:299
+#: build.c:297
#, c-format
msgid "Building for target %s\n"
msgstr ""
@@ -691,15 +691,15 @@ msgstr ""
msgid "bin/src package (prep, compile, install, package)"
msgstr ""
-#: lib/poptBT.c:155 rpm.c:473 rpmqv.c:586
+#: lib/poptBT.c:156 rpm.c:473 rpmqv.c:586
msgid "skip straight to specified stage (only for c,i)"
msgstr ""
-#: lib/poptBT.c:145 rpm.c:475 rpmqv.c:588
+#: lib/poptBT.c:146 rpm.c:475 rpmqv.c:588
msgid "remove build tree when done"
msgstr ""
-#: lib/poptBT.c:151 rpm.c:477 rpmqv.c:590
+#: lib/poptBT.c:152 rpm.c:477 rpmqv.c:590
msgid "remove sources when done"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid " Package specification options:"
msgstr ""
-#: lib/poptQV.c:62 rpmqv.c:433
+#: lib/poptQV.c:66 rpmqv.c:433
msgid "query/verify all packages"
msgstr ""
@@ -1424,644 +1424,644 @@ msgstr ""
msgid "no tar files given for build"
msgstr ""
-#: build/build.c:110 build/pack.c:354
+#: build/build.c:111 build/pack.c:355
msgid "Unable to open temp file."
msgstr ""
-#: build/build.c:189
+#: build/build.c:190
#, c-format
msgid "Executing(%s): %s\n"
msgstr ""
-#: build/build.c:195
+#: build/build.c:196
#, c-format
msgid "Exec of %s failed (%s): %s"
msgstr ""
-#: build/build.c:203
+#: build/build.c:204
#, c-format
msgid "Bad exit status from %s (%s)"
msgstr ""
-#: build/expression.c:211
+#: build/expression.c:207
msgid "syntax error while parsing =="
msgstr ""
-#: build/expression.c:241
+#: build/expression.c:237
msgid "syntax error while parsing &&"
msgstr ""
-#: build/expression.c:250
+#: build/expression.c:246
msgid "syntax error while parsing ||"
msgstr ""
-#: build/expression.c:292
+#: build/expression.c:288
msgid "parse error in expression"
msgstr ""
-#: build/expression.c:321
+#: build/expression.c:317
msgid "unmatched ("
msgstr ""
-#: build/expression.c:339
+#: build/expression.c:335
msgid "undefined identifier"
msgstr ""
-#: build/expression.c:358
+#: build/expression.c:354
msgid "- only on numbers"
msgstr ""
-#: build/expression.c:374
+#: build/expression.c:370
msgid "! only on numbers"
msgstr ""
-#: build/expression.c:413 build/expression.c:458 build/expression.c:515
-#: build/expression.c:602
+#: build/expression.c:409 build/expression.c:454 build/expression.c:511
+#: build/expression.c:598
msgid "types must match"
msgstr ""
-#: build/expression.c:426
+#: build/expression.c:422
msgid "* / not suported for strings"
msgstr ""
-#: build/expression.c:474
+#: build/expression.c:470
msgid "- not suported for strings"
msgstr ""
-#: build/expression.c:615
+#: build/expression.c:611
msgid "&& and || not suported for strings"
msgstr ""
-#: build/expression.c:649 build/expression.c:697
+#: build/expression.c:645 build/expression.c:693
msgid "syntax error in expression"
msgstr ""
-#: build/files.c:204
+#: build/files.c:205
#, c-format
msgid "TIMECHECK failure: %s\n"
msgstr ""
-#: build/files.c:249 build/files.c:331 build/files.c:494
+#: build/files.c:250 build/files.c:332 build/files.c:495
#, c-format
msgid "Missing '(' in %s %s"
msgstr ""
-#: build/files.c:260 build/files.c:448 build/files.c:505
+#: build/files.c:261 build/files.c:449 build/files.c:506
#, c-format
msgid "Missing ')' in %s(%s"
msgstr ""
-#: build/files.c:298 build/files.c:473
+#: build/files.c:299 build/files.c:474
#, c-format
msgid "Invalid %s token: %s"
msgstr ""
-#: build/files.c:347
+#: build/files.c:348
#, c-format
msgid "Non-white space follows %s(): %s"
msgstr ""
-#: build/files.c:385
+#: build/files.c:386
#, c-format
msgid "Bad syntax: %s(%s)"
msgstr ""
-#: build/files.c:395
+#: build/files.c:396
#, c-format
msgid "Bad mode spec: %s(%s)"
msgstr ""
-#: build/files.c:407
+#: build/files.c:408
#, c-format
msgid "Bad dirmode spec: %s(%s)"
msgstr ""
-#: build/files.c:531
+#: build/files.c:532
msgid "Unusual locale length: \"%.*s\" in %%lang(%s)"
msgstr ""
-#: build/files.c:541
+#: build/files.c:542
msgid "Duplicate locale %.*s in %%lang(%s)"
msgstr ""
-#: build/files.c:666
+#: build/files.c:667
msgid "Hit limit for %%docdir"
msgstr ""
-#: build/files.c:672
+#: build/files.c:673
msgid "Only one arg for %%docdir"
msgstr ""
#. We already got a file -- error
-#: build/files.c:700
+#: build/files.c:701
#, c-format
msgid "Two files on one line: %s"
msgstr ""
-#: build/files.c:713
+#: build/files.c:714
#, c-format
msgid "File must begin with \"/\": %s"
msgstr ""
-#: build/files.c:725
+#: build/files.c:726
msgid "Can't mix special %%doc with other forms: %s"
msgstr ""
-#: build/files.c:812
+#: build/files.c:813
#, c-format
msgid "File listed twice: %s"
msgstr ""
-#: build/files.c:921
+#: build/files.c:922
#, c-format
msgid "Symlink points to BuildRoot: %s -> %s"
msgstr ""
-#: build/files.c:1010
+#: build/files.c:1011
#, c-format
msgid "File doesn't match prefix (%s): %s"
msgstr ""
-#: build/files.c:1020
+#: build/files.c:1021
#, c-format
msgid "File not found: %s"
msgstr ""
-#: build/files.c:1063
+#: build/files.c:1064
#, c-format
msgid "Bad owner/group: %s\n"
msgstr ""
-#: build/files.c:1075
+#: build/files.c:1076
#, c-format
msgid "File %4d: %07o %s.%s\t %s\n"
msgstr ""
-#: build/files.c:1149
+#: build/files.c:1150
#, c-format
msgid "File needs leading \"/\": %s"
msgstr ""
-#: build/files.c:1178
+#: build/files.c:1179
#, c-format
msgid "File not found by glob: %s"
msgstr ""
-#: build/files.c:1230
+#: build/files.c:1231
msgid "Could not open %%files file %s: %s"
msgstr ""
-#: build/files.c:1239 build/pack.c:100
+#: build/files.c:1240 build/pack.c:101
#, c-format
msgid "line: %s"
msgstr ""
-#: build/files.c:1566
+#: build/files.c:1567
#, c-format
msgid "Bad file: %s: %s"
msgstr ""
-#: build/files.c:1578 build/parsePrep.c:34
+#: build/files.c:1579 build/parsePrep.c:35
#, c-format
msgid "Bad owner/group: %s"
msgstr ""
#. XXX this error message is probably not seen.
-#: build/files.c:1633
+#: build/files.c:1634
#, c-format
msgid "Couldn't exec %s: %s"
msgstr ""
-#: build/files.c:1638
+#: build/files.c:1639
#, c-format
msgid "Couldn't fork %s: %s"
msgstr ""
-#: build/files.c:1720
+#: build/files.c:1721
#, c-format
msgid "%s failed"
msgstr ""
-#: build/files.c:1724
+#: build/files.c:1725
#, c-format
msgid "failed to write all data to %s"
msgstr ""
-#: build/files.c:1820
+#: build/files.c:1821
#, c-format
msgid "Finding %s: (using %s)...\n"
msgstr ""
-#: build/files.c:1848 build/files.c:1858
+#: build/files.c:1849 build/files.c:1859
#, c-format
msgid "Failed to find %s:"
msgstr ""
-#: build/files.c:1968
+#: build/files.c:1969
#, c-format
msgid "Processing files: %s-%s-%s\n"
msgstr ""
-#: build/names.c:46 build/names.c:79
+#: build/names.c:47 build/names.c:80
msgid "RPMERR_INTERNAL: Hit limit in getUname()\n"
msgstr ""
-#: build/names.c:113 build/names.c:146
+#: build/names.c:114 build/names.c:147
msgid "RPMERR_INTERNAL: Hit limit in getGname()\n"
msgstr ""
-#: build/names.c:186
+#: build/names.c:187
#, c-format
msgid "Could not canonicalize hostname: %s\n"
msgstr ""
-#: build/pack.c:48
+#: build/pack.c:49
#, c-format
msgid "create archive failed on file %s: %s"
msgstr ""
-#: build/pack.c:68
+#: build/pack.c:69
#, c-format
msgid "cpio_copy write failed: %s"
msgstr ""
-#: build/pack.c:75
+#: build/pack.c:76
#, c-format
msgid "cpio_copy read failed: %s"
msgstr ""
-#: build/pack.c:155
+#: build/pack.c:156
#, c-format
msgid "Could not open PreIn file: %s"
msgstr ""
-#: build/pack.c:162
+#: build/pack.c:163
#, c-format
msgid "Could not open PreUn file: %s"
msgstr ""
-#: build/pack.c:169
+#: build/pack.c:170
#, c-format
msgid "Could not open PostIn file: %s"
msgstr ""
-#: build/pack.c:176
+#: build/pack.c:177
#, c-format
msgid "Could not open PostUn file: %s"
msgstr ""
-#: build/pack.c:184
+#: build/pack.c:185
#, c-format
msgid "Could not open VerifyScript file: %s"
msgstr ""
-#: build/pack.c:199
+#: build/pack.c:200
#, c-format
msgid "Could not open Trigger script file: %s"
msgstr ""
-#: build/pack.c:226
+#: build/pack.c:227
#, c-format
msgid "readRPM: open %s: %s\n"
msgstr ""
-#: build/pack.c:236
+#: build/pack.c:237
#, c-format
msgid "readRPM: read %s: %s\n"
msgstr ""
-#: build/pack.c:257
+#: build/pack.c:258
#, c-format
msgid "readRPM: %s is not an RPM package\n"
msgstr ""
-#: build/pack.c:263
+#: build/pack.c:264
#, c-format
msgid "readRPM: reading header from %s\n"
msgstr ""
-#: build/pack.c:366
+#: build/pack.c:367
msgid "Bad CSA data"
msgstr ""
-#: build/pack.c:402
+#: build/pack.c:403
#, c-format
msgid "Could not open %s: %s\n"
msgstr ""
-#: build/pack.c:434
+#: build/pack.c:437
#, c-format
msgid "Unable to write package: %s"
msgstr ""
-#: build/pack.c:449
+#: build/pack.c:452
#, c-format
msgid "Generating signature: %d\n"
msgstr ""
-#: build/pack.c:465
+#: build/pack.c:468
#, c-format
msgid "Unable to open sigtarget %s: %s"
msgstr ""
-#: build/pack.c:475
+#: build/pack.c:478
#, c-format
msgid "Unable to read sigtarget %s: %s"
msgstr ""
-#: build/pack.c:485
+#: build/pack.c:488
#, c-format
msgid "Unable to write package %s: %s"
msgstr ""
-#: build/pack.c:500
+#: build/pack.c:503
#, c-format
msgid "Wrote: %s\n"
msgstr ""
-#: build/pack.c:564
+#: build/pack.c:567
#, c-format
msgid "Could not generate output filename for package %s: %s\n"
msgstr ""
-#: build/pack.c:581
+#: build/pack.c:584
#, c-format
msgid "cannot create %s: %s\n"
msgstr ""
-#: build/parseBuildInstallClean.c:31
+#: build/parseBuildInstallClean.c:32
#, c-format
msgid "line %d: second %s"
msgstr ""
-#: build/parseChangelog.c:108
+#: build/parseChangelog.c:109
msgid "%%changelog entries must start with *"
msgstr ""
-#: build/parseChangelog.c:116
+#: build/parseChangelog.c:117
msgid "incomplete %%changelog entry"
msgstr ""
-#: build/parseChangelog.c:131
+#: build/parseChangelog.c:132
msgid "bad date in %%changelog: %s"
msgstr ""
-#: build/parseChangelog.c:136
+#: build/parseChangelog.c:137
msgid "%%changelog not in decending chronological order"
msgstr ""
-#: build/parseChangelog.c:144 build/parseChangelog.c:155
+#: build/parseChangelog.c:145 build/parseChangelog.c:156
msgid "missing name in %%changelog"
msgstr ""
-#: build/parseChangelog.c:162
+#: build/parseChangelog.c:163
msgid "no description in %%changelog"
msgstr ""
-#: build/parseDescription.c:38
+#: build/parseDescription.c:39
msgid "line %d: Error parsing %%description: %s"
msgstr ""
-#: build/parseDescription.c:51 build/parseFiles.c:46 build/parseScript.c:173
+#: build/parseDescription.c:52 build/parseFiles.c:47 build/parseScript.c:174
#, c-format
msgid "line %d: Bad option %s: %s"
msgstr ""
-#: build/parseDescription.c:64 build/parseFiles.c:58 build/parseScript.c:186
+#: build/parseDescription.c:65 build/parseFiles.c:59 build/parseScript.c:187
#, c-format
msgid "line %d: Too many names: %s"
msgstr ""
-#: build/parseDescription.c:74 build/parseFiles.c:67 build/parseScript.c:196
+#: build/parseDescription.c:75 build/parseFiles.c:68 build/parseScript.c:197
#, c-format
msgid "line %d: Package does not exist: %s"
msgstr ""
-#: build/parseDescription.c:86
+#: build/parseDescription.c:87
#, c-format
msgid "line %d: Second description"
msgstr ""
-#: build/parseFiles.c:32
+#: build/parseFiles.c:33
msgid "line %d: Error parsing %%files: %s"
msgstr ""
-#: build/parseFiles.c:74
+#: build/parseFiles.c:75
msgid "line %d: Second %%files list"
msgstr ""
-#: build/parsePreamble.c:142
+#: build/parsePreamble.c:149
#, c-format
msgid "Architecture is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:147
+#: build/parsePreamble.c:154
#, c-format
msgid "Architecture is not included: %s"
msgstr ""
-#: build/parsePreamble.c:152
+#: build/parsePreamble.c:159
#, c-format
msgid "OS is excluded: %s"
msgstr ""
-#: build/parsePreamble.c:157
+#: build/parsePreamble.c:164
#, c-format
msgid "OS is not included: %s"
msgstr ""
-#: build/parsePreamble.c:171
+#: build/parsePreamble.c:178
#, c-format
msgid "%s field must be present in package: %s"
msgstr ""
-#: build/parsePreamble.c:196
+#: build/parsePreamble.c:203
#, c-format
msgid "Duplicate %s entries in package: %s"
msgstr ""
-#: build/parsePreamble.c:244
+#: build/parsePreamble.c:251
#, c-format
msgid "Unable to open icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:262
+#: build/parsePreamble.c:269
#, c-format
msgid "Unable to read icon %s: %s"
msgstr ""
-#: build/parsePreamble.c:275
+#: build/parsePreamble.c:282
#, c-format
msgid "Unknown icon type: %s"
msgstr ""
-#: build/parsePreamble.c:338
+#: build/parsePreamble.c:345
#, c-format
msgid "line %d: Malformed tag: %s"
msgstr ""
#. Empty field
-#: build/parsePreamble.c:346
+#: build/parsePreamble.c:353
#, c-format
msgid "line %d: Empty tag: %s"
msgstr ""
-#: build/parsePreamble.c:368 build/parsePreamble.c:375
+#: build/parsePreamble.c:375 build/parsePreamble.c:382
#, c-format
msgid "line %d: Illegal char '-' in %s: %s"
msgstr ""
-#: build/parsePreamble.c:432 build/parseSpec.c:376
+#: build/parsePreamble.c:439 build/parseSpec.c:386
#, c-format
msgid "BuildRoot can not be \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:445
+#: build/parsePreamble.c:452
#, c-format
msgid "line %d: Prefixes must not end with \"/\": %s"
msgstr ""
-#: build/parsePreamble.c:457
+#: build/parsePreamble.c:464
#, c-format
msgid "line %d: Docdir must begin with '/': %s"
msgstr ""
-#: build/parsePreamble.c:469
+#: build/parsePreamble.c:476
#, c-format
msgid "line %d: Epoch/Serial field must be a number: %s"
msgstr ""
-#: build/parsePreamble.c:527
+#: build/parsePreamble.c:534
#, c-format
msgid "line %d: Bad BuildArchitecture format: %s"
msgstr ""
-#: build/parsePreamble.c:536
+#: build/parsePreamble.c:543
#, c-format
msgid "Internal error: Bogus tag %d"
msgstr ""
-#: build/parsePreamble.c:675
+#: build/parsePreamble.c:682
#, c-format
msgid "Bad package specification: %s"
msgstr ""
-#: build/parsePreamble.c:681
+#: build/parsePreamble.c:688
#, c-format
msgid "Package already exists: %s"
msgstr ""
-#: build/parsePreamble.c:708
+#: build/parsePreamble.c:715
#, c-format
msgid "line %d: Unknown tag: %s"
msgstr ""
-#: build/parsePreamble.c:733
+#: build/parsePreamble.c:740
msgid "Spec file can't use BuildRoot"
msgstr ""
-#: build/parsePrep.c:30
+#: build/parsePrep.c:31
#, c-format
msgid "Bad source: %s: %s"
msgstr ""
-#: build/parsePrep.c:57
+#: build/parsePrep.c:58
#, c-format
msgid "No patch number %d"
msgstr ""
-#: build/parsePrep.c:139
+#: build/parsePrep.c:140
#, c-format
msgid "No source number %d"
msgstr ""
-#: build/parsePrep.c:158
+#: build/parsePrep.c:159
#, c-format
msgid "Couldn't download nosource %s: %s"
msgstr ""
-#: build/parsePrep.c:224
+#: build/parsePrep.c:225
msgid "Error parsing %%setup: %s"
msgstr ""
-#: build/parsePrep.c:239
+#: build/parsePrep.c:240
msgid "line %d: Bad arg to %%setup %c: %s"
msgstr ""
-#: build/parsePrep.c:257
+#: build/parsePrep.c:258
msgid "line %d: Bad %%setup option %s: %s"
msgstr ""
-#: build/parsePrep.c:384
+#: build/parsePrep.c:385
msgid "line %d: Need arg to %%patch -b: %s"
msgstr ""
-#: build/parsePrep.c:392
+#: build/parsePrep.c:393
msgid "line %d: Need arg to %%patch -z: %s"
msgstr ""
-#: build/parsePrep.c:404
+#: build/parsePrep.c:405
msgid "line %d: Need arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:410
+#: build/parsePrep.c:411
msgid "line %d: Bad arg to %%patch -p: %s"
msgstr ""
-#: build/parsePrep.c:417
+#: build/parsePrep.c:418
msgid "Too many patches!"
msgstr ""
-#: build/parsePrep.c:421
+#: build/parsePrep.c:422
msgid "line %d: Bad arg to %%patch: %s"
msgstr ""
-#: build/parsePrep.c:458
+#: build/parsePrep.c:459
msgid "line %d: second %%prep"
msgstr ""
-#: build/parseReqs.c:97
+#: build/parseReqs.c:98
#, c-format
msgid ""
"line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s"
msgstr ""
-#: build/parseReqs.c:108
+#: build/parseReqs.c:109
#, c-format
msgid "line %d: File name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:140
+#: build/parseReqs.c:141
#, c-format
msgid "line %d: Versioned file name not permitted: %s"
msgstr ""
-#: build/parseReqs.c:170
+#: build/parseReqs.c:171
#, c-format
msgid "line %d: Version required: %s"
msgstr ""
-#: build/parseScript.c:141
+#: build/parseScript.c:142
#, c-format
msgid "line %d: triggers must have --: %s"
msgstr ""
-#: build/parseScript.c:151 build/parseScript.c:214
+#: build/parseScript.c:152 build/parseScript.c:215
#, c-format
msgid "line %d: Error parsing %s: %s"
msgstr ""
-#: build/parseScript.c:161
+#: build/parseScript.c:162
#, c-format
msgid "line %d: script program must begin with '/': %s"
msgstr ""
-#: build/parseScript.c:205
+#: build/parseScript.c:206
#, c-format
msgid "line %d: Second %s"
msgstr ""
-#: build/parseSpec.c:137
+#: build/parseSpec.c:136
#, c-format
msgid "line %d: %s"
msgstr ""
@@ -2076,301 +2076,301 @@ msgstr ""
msgid "Unclosed %%if"
msgstr ""
-#: build/parseSpec.c:261
+#: build/parseSpec.c:271
#, c-format
msgid "%s:%d: parseExpressionBoolean returns %d"
msgstr ""
#. Got an else with no %if !
-#: build/parseSpec.c:269
+#: build/parseSpec.c:279
msgid "%s:%d: Got a %%else with no if"
msgstr ""
#. Got an end with no %if !
-#: build/parseSpec.c:280
+#: build/parseSpec.c:290
msgid "%s:%d: Got a %%endif with no if"
msgstr ""
-#: build/parseSpec.c:294 build/parseSpec.c:303
+#: build/parseSpec.c:304 build/parseSpec.c:313
msgid "malformed %%include statement"
msgstr ""
-#: build/parseSpec.c:471
+#: build/parseSpec.c:489
msgid "No buildable architectures"
msgstr ""
-#: build/parseSpec.c:520
+#: build/parseSpec.c:544
msgid "Package has no %%description: %s"
msgstr ""
-#: build/spec.c:35
+#: build/spec.c:36
#, c-format
msgid "archive = %s, fs = %s\n"
msgstr ""
-#: build/spec.c:244
+#: build/spec.c:245
#, c-format
msgid "line %d: Bad number: %s"
msgstr ""
-#: build/spec.c:250
+#: build/spec.c:251
#, c-format
msgid "line %d: Bad no%s number: %d"
msgstr ""
-#: build/spec.c:309
+#: build/spec.c:310
#, c-format
msgid "line %d: Bad %s number: %s\n"
msgstr ""
-#: lib/cpio.c:362
+#: lib/cpio.c:384
#, c-format
msgid "can't rename %s to %s: %s\n"
msgstr ""
-#: lib/cpio.c:368
+#: lib/cpio.c:390
#, c-format
msgid "can't unlink %s: %s\n"
msgstr ""
-#: lib/cpio.c:612
+#: lib/cpio.c:638
#, c-format
msgid "getNextHeader: %s\n"
msgstr ""
-#: lib/cpio.c:1073
+#: lib/cpio.c:1099
#, c-format
msgid "(error 0x%x)"
msgstr ""
-#: lib/cpio.c:1076
+#: lib/cpio.c:1102
msgid "Bad magic"
msgstr ""
-#: lib/cpio.c:1077
+#: lib/cpio.c:1103
msgid "Bad/unreadable header"
msgstr ""
-#: lib/cpio.c:1095
+#: lib/cpio.c:1121
msgid "Header size too big"
msgstr ""
-#: lib/cpio.c:1096
+#: lib/cpio.c:1122
msgid "Unknown file type"
msgstr ""
-#: lib/cpio.c:1097
+#: lib/cpio.c:1123
msgid "Missing hard link"
msgstr ""
-#: lib/cpio.c:1098
+#: lib/cpio.c:1124
msgid "Internal error"
msgstr ""
-#: lib/cpio.c:1107
+#: lib/cpio.c:1133
msgid " failed - "
msgstr ""
#. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:456
+#: lib/depends.c:522
#, c-format
msgid ""
"the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
"\tA %s\tB %s\n"
msgstr ""
-#: lib/depends.c:485
+#: lib/depends.c:551
#, c-format
msgid " %s A %s\tB %s\n"
msgstr ""
-#: lib/depends.c:825
+#: lib/depends.c:905
#, c-format
msgid "%s: %-45s YES (added files)\n"
msgstr ""
-#: lib/depends.c:874
+#: lib/depends.c:964
#, c-format
msgid "%s: %-45s YES (added provide)\n"
msgstr ""
-#: lib/depends.c:918
+#: lib/depends.c:1016
#, c-format
msgid "%s: %-45s %-3s (cached)\n"
msgstr ""
-#: lib/depends.c:935
+#: lib/depends.c:1035
#, c-format
msgid "%s: %-45s YES (rpmrc provides)\n"
msgstr ""
-#: lib/depends.c:951
+#: lib/depends.c:1052
#, c-format
msgid "%s: %-45s YES (rpmlib provides)\n"
msgstr ""
-#: lib/depends.c:972
+#: lib/depends.c:1073
#, c-format
msgid "%s: %-45s YES (db files)\n"
msgstr ""
-#: lib/depends.c:985
+#: lib/depends.c:1086
#, c-format
msgid "%s: %-45s YES (db provides)\n"
msgstr ""
-#: lib/depends.c:998
+#: lib/depends.c:1099
#, c-format
msgid "%s: %-45s NO\n"
msgstr ""
-#: lib/depends.c:1019
+#: lib/depends.c:1120
#, c-format
msgid "%s: (%s, %s) added to Depends cache.\n"
msgstr ""
#. requirements are not satisfied.
-#: lib/depends.c:1073
+#: lib/depends.c:1174
#, c-format
msgid "package %s-%s-%s require not satisfied: %s\n"
msgstr ""
#. conflicts exist.
-#: lib/depends.c:1140
+#: lib/depends.c:1241
#, c-format
msgid "package %s conflicts: %s\n"
msgstr ""
-#: lib/depends.c:1266
+#: lib/depends.c:1367
#, c-format
msgid "loop in prerequisite chain: %s"
msgstr ""
-#: lib/db1.c:96 lib/db3.c:441
+#: lib/db1.c:102 lib/db3.c:449
#, c-format
msgid "db%d error(%d)"
msgstr ""
-#: lib/db1.c:98 lib/db3.c:443
+#: lib/db1.c:104 lib/db3.c:451
#, c-format
msgid " performing %s"
msgstr ""
-#: lib/db1.c:390
+#: lib/db1.c:396
#, c-format
msgid "closed db file %s\n"
msgstr ""
-#: lib/db1.c:393
+#: lib/db1.c:399
#, c-format
msgid "removed db file %s\n"
msgstr ""
-#: lib/db1.c:424
+#: lib/db1.c:430
#, c-format
msgid "bad db file %s"
msgstr ""
-#: lib/db1.c:429
+#: lib/db1.c:435
#, c-format
msgid "opening db file %s mode 0x%x\n"
msgstr ""
#. XXX check errno validity
-#: lib/db1.c:452
+#: lib/db1.c:458
#, c-format
msgid "cannot get %s lock on database"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "exclusive"
msgstr ""
-#: lib/db1.c:453 lib/db3.c:1104
+#: lib/db1.c:459 lib/db3.c:1112
msgid "shared"
msgstr ""
-#: lib/db2.c:133
+#: lib/db2.c:137
#, c-format
msgid "closed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:145
+#: lib/db2.c:149
#, c-format
msgid "removed db environment %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:182
+#: lib/db2.c:186
#, c-format
msgid "opening db environment %s/%s(%s) %s\n"
msgstr ""
-#: lib/db2.c:557
+#: lib/db2.c:561
#, c-format
msgid "closed db index %s/%s(%s)\n"
msgstr ""
-#: lib/db2.c:635
+#: lib/db2.c:639
#, c-format
msgid "opening db index %s/%s(%s) %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:257
+#: lib/db3.c:265
#, c-format
msgid "dbiSetConfig: unrecognized db option: \"%s\" ignored\n"
msgstr ""
-#: lib/db3.c:285
+#: lib/db3.c:293
#, c-format
msgid "%s has invalid numeric value, skipped\n"
msgstr ""
-#: lib/db3.c:293
+#: lib/db3.c:301
#, c-format
msgid "%s has too large or too small long value, skipped\n"
msgstr ""
-#: lib/db3.c:301
+#: lib/db3.c:309
#, c-format
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: lib/db3.c:468
+#: lib/db3.c:476
#, c-format
msgid "closed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:484
+#: lib/db3.c:492
#, c-format
msgid "removed db environment %s/%s\n"
msgstr ""
-#: lib/db3.c:521
+#: lib/db3.c:529
#, c-format
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: lib/db3.c:907
+#: lib/db3.c:915
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: lib/db3.c:997
+#: lib/db3.c:1005
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: lib/db3.c:1102
+#: lib/db3.c:1110
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: lib/db3.c:1109
+#: lib/db3.c:1117
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
-#: lib/falloc.c:135
+#: lib/falloc.c:140
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
@@ -2380,669 +2380,670 @@ msgid ""
"if \"rpm --rebuilddb\" fails to correct the problem.\n"
msgstr ""
-#: lib/formats.c:69 lib/formats.c:86 lib/formats.c:106 lib/formats.c:138
-#: lib/header.c:2092 lib/header.c:2108 lib/header.c:2127
+#: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
+#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
msgid "(not a number)"
msgstr ""
-#: lib/fs.c:56
+#: lib/fs.c:60
#, c-format
msgid "mntctl() failed to return fugger size: %s"
msgstr ""
-#: lib/fs.c:91 lib/fs.c:261
+#: lib/fs.c:95 lib/fs.c:265
#, c-format
msgid "failed to stat %s: %s"
msgstr ""
-#: lib/fs.c:127
+#: lib/fs.c:131
msgid "getting list of mounted filesystems\n"
msgstr ""
-#: lib/fs.c:132
+#: lib/fs.c:136
#, c-format
msgid "failed to open %s: %s"
msgstr ""
-#: lib/fs.c:283
+#: lib/fs.c:287
#, c-format
msgid "file %s is on an unknown device"
msgstr ""
#. This should not be allowed
-#: lib/header.c:219
+#: lib/header.c:244
msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
msgstr ""
-#: lib/header.c:250 lib/header.c:721 lib/install.c:324
+#: lib/header.c:275 lib/header.c:745 lib/install.c:351
#, c-format
msgid "Data type %d not supported\n"
msgstr ""
-#: lib/header.c:1078
+#: lib/header.c:1108
#, c-format
msgid "Bad count for headerAddEntry(): %d\n"
msgstr ""
-#: lib/header.c:1485
+#: lib/header.c:1518
#, c-format
msgid "missing { after %"
msgstr ""
-#: lib/header.c:1513
+#: lib/header.c:1546
msgid "missing } after %{"
msgstr ""
-#: lib/header.c:1525
+#: lib/header.c:1558
msgid "empty tag format"
msgstr ""
-#: lib/header.c:1535
+#: lib/header.c:1568
msgid "empty tag name"
msgstr ""
-#: lib/header.c:1550
+#: lib/header.c:1583
msgid "unknown tag"
msgstr ""
-#: lib/header.c:1575
+#: lib/header.c:1608
msgid "] expected at end of array"
msgstr ""
-#: lib/header.c:1591
+#: lib/header.c:1624
msgid "unexpected ]"
msgstr ""
-#: lib/header.c:1593
+#: lib/header.c:1626
msgid "unexpected }"
msgstr ""
-#: lib/header.c:1648
+#: lib/header.c:1684
msgid "? expected in expression"
msgstr ""
-#: lib/header.c:1655
+#: lib/header.c:1691
msgid "{ expected after ? in expression"
msgstr ""
-#: lib/header.c:1666 lib/header.c:1701
+#: lib/header.c:1702 lib/header.c:1737
msgid "} expected in expression"
msgstr ""
-#: lib/header.c:1674
+#: lib/header.c:1710
msgid ": expected following ? subexpression"
msgstr ""
-#: lib/header.c:1688
+#: lib/header.c:1724
msgid "{ expected after : in expression"
msgstr ""
-#: lib/header.c:1709
+#: lib/header.c:1745
msgid "| expected at end of expression"
msgstr ""
-#: lib/header.c:1874
+#: lib/header.c:1912
msgid "(unknown type)"
msgstr ""
-#: lib/install.c:149 lib/uninstall.c:195
+#: lib/install.c:168 lib/uninstall.c:193
#, c-format
msgid " file: %s action: %s\n"
msgstr ""
-#: lib/install.c:168
+#: lib/install.c:189
#, c-format
msgid "user %s does not exist - using root"
msgstr ""
-#: lib/install.c:176
+#: lib/install.c:197
#, c-format
msgid "group %s does not exist - using root"
msgstr ""
-#: lib/install.c:205
+#: lib/install.c:230
msgid "%%instchangelog value in macro file should be a number, but isn't"
msgstr ""
#. this would probably be a good place to check if disk space
#. was used up - if so, we should return a different error
-#: lib/install.c:580
+#. XXX FIXME: Fclose with libio destroys errno
+#: lib/install.c:612
#, c-format
msgid "unpacking of archive failed%s%s: %s"
msgstr ""
-#: lib/install.c:581
+#: lib/install.c:613
msgid " on file "
msgstr ""
-#: lib/install.c:625
+#: lib/install.c:657
msgid "installing a source package\n"
msgstr ""
-#: lib/install.c:645
+#: lib/install.c:677
#, c-format
msgid "cannot create sourcedir %s"
msgstr ""
-#: lib/install.c:651 lib/install.c:681
+#: lib/install.c:683 lib/install.c:713
#, c-format
msgid "cannot write to %s"
msgstr ""
-#: lib/install.c:655
+#: lib/install.c:687
#, c-format
msgid "sources in: %s\n"
msgstr ""
-#: lib/install.c:675
+#: lib/install.c:707
#, c-format
msgid "cannot create specdir %s"
msgstr ""
-#: lib/install.c:685
+#: lib/install.c:717
#, c-format
msgid "spec file in: %s\n"
msgstr ""
-#: lib/install.c:719 lib/install.c:747
+#: lib/install.c:751 lib/install.c:779
msgid "source package contains no .spec file"
msgstr ""
-#: lib/install.c:769
+#: lib/install.c:801
#, c-format
msgid "renaming %s to %s\n"
msgstr ""
-#: lib/install.c:771 lib/install.c:1044 lib/uninstall.c:28
+#: lib/install.c:803 lib/install.c:1070 lib/uninstall.c:40
#, c-format
msgid "rename of %s to %s failed: %s"
msgstr ""
-#: lib/install.c:863
+#: lib/install.c:892
msgid "source package expected, binary found"
msgstr ""
-#: lib/install.c:913
+#: lib/install.c:939
#, c-format
msgid "package: %s-%s-%s files test = %d\n"
msgstr ""
-#: lib/install.c:973
+#: lib/install.c:999
msgid "stopping install as we're running --test\n"
msgstr ""
-#: lib/install.c:978
+#: lib/install.c:1004
msgid "running preinstall script (if any)\n"
msgstr ""
-#: lib/install.c:1003
+#: lib/install.c:1029
#, c-format
msgid "warning: %s created as %s"
msgstr ""
-#: lib/install.c:1040
+#: lib/install.c:1066
#, c-format
msgid "warning: %s saved as %s"
msgstr ""
-#: lib/install.c:1128
+#: lib/install.c:1154
msgid "running postinstall scripts (if any)\n"
msgstr ""
-#: lib/misc.c:273 lib/misc.c:278 lib/misc.c:284
+#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
#, c-format
msgid "error creating temporary file %s"
msgstr ""
-#: lib/package.c:52
+#: lib/package.c:60
msgid "packaging version 1 is not supported by this version of RPM"
msgstr ""
-#: lib/package.c:112
+#: lib/package.c:120
msgid ""
"only packaging with major numbers <= 4 is supported by this version of RPM"
msgstr ""
-#: lib/poptBT.c:82
+#: lib/poptBT.c:83
msgid "buildroot already specified"
msgstr ""
-#: lib/poptBT.c:108
+#: lib/poptBT.c:109
msgid "build through %%prep stage from spec file"
msgstr ""
-#: lib/poptBT.c:110
+#: lib/poptBT.c:111
msgid "build through %%build stage from spec file"
msgstr ""
-#: lib/poptBT.c:112
+#: lib/poptBT.c:113
msgid "build through %%install stage from spec file"
msgstr ""
-#: lib/poptBT.c:114
+#: lib/poptBT.c:115
msgid "verify %%files section from spec file"
msgstr ""
-#: lib/poptBT.c:116
+#: lib/poptBT.c:117
msgid "build source and binary package from spec file"
msgstr ""
-#: lib/poptBT.c:118
+#: lib/poptBT.c:119
msgid "build binary package from spec file"
msgstr ""
-#: lib/poptBT.c:120
+#: lib/poptBT.c:121
msgid "build source package from spec file"
msgstr ""
-#: lib/poptBT.c:123
+#: lib/poptBT.c:124
msgid "build through %%prep stage from tar ball"
msgstr ""
-#: lib/poptBT.c:125
+#: lib/poptBT.c:126
msgid "build through %%build stage from tar ball"
msgstr ""
-#: lib/poptBT.c:127
+#: lib/poptBT.c:128
msgid "build through %%install stage from tar ball"
msgstr ""
-#: lib/poptBT.c:129
+#: lib/poptBT.c:130
msgid "verify %%files section from tar ball"
msgstr ""
-#: lib/poptBT.c:131
+#: lib/poptBT.c:132
msgid "build source and binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:133
+#: lib/poptBT.c:134
msgid "build binary package from tar ball"
msgstr ""
-#: lib/poptBT.c:135
+#: lib/poptBT.c:136
msgid "build source package from tar ball"
msgstr ""
-#: lib/poptBT.c:138
+#: lib/poptBT.c:139
msgid "build binary package from source package"
msgstr ""
-#: lib/poptBT.c:140
+#: lib/poptBT.c:141
msgid "build through %%install stage from source package"
msgstr ""
-#: lib/poptBT.c:143
+#: lib/poptBT.c:144
msgid "override build root"
msgstr ""
-#: lib/poptBT.c:147
+#: lib/poptBT.c:148
msgid "do not execute any stages of the build"
msgstr ""
-#: lib/poptBT.c:149
+#: lib/poptBT.c:150
msgid "do not accept I18N msgstr's from specfile"
msgstr ""
-#: lib/poptBT.c:153
+#: lib/poptBT.c:154
msgid "remove specfile when done"
msgstr ""
-#: lib/poptBT.c:157
+#: lib/poptBT.c:158
msgid "override target platform"
msgstr ""
-#: lib/poptBT.c:159
+#: lib/poptBT.c:160
msgid "lookup I18N strings in specfile catalog"
msgstr ""
-#: lib/poptQV.c:64
+#: lib/poptQV.c:68
msgid "query/verify package owning file"
msgstr ""
-#: lib/poptQV.c:66
+#: lib/poptQV.c:70
msgid "query/verify packages in group"
msgstr ""
-#: lib/poptQV.c:68
+#: lib/poptQV.c:72
msgid "query/verify a package file"
msgstr ""
-#: lib/poptQV.c:70
+#: lib/poptQV.c:74
msgid "rpm query mode"
msgstr ""
-#: lib/poptQV.c:74
+#: lib/poptQV.c:78
msgid "display known query tags"
msgstr ""
-#: lib/poptQV.c:76
+#: lib/poptQV.c:80
msgid "query a spec file"
msgstr ""
-#: lib/poptQV.c:78
+#: lib/poptQV.c:82
msgid "query the pacakges triggered by the package"
msgstr ""
-#: lib/poptQV.c:80
+#: lib/poptQV.c:84
msgid "rpm verify mode"
msgstr ""
-#: lib/poptQV.c:82
+#: lib/poptQV.c:86
msgid "rpm verify mode (legacy)"
msgstr ""
-#: lib/poptQV.c:84
+#: lib/poptQV.c:88
msgid "query the packages which require a capability"
msgstr ""
-#: lib/poptQV.c:86
+#: lib/poptQV.c:90
msgid "query the packages which provide a capability"
msgstr ""
-#: lib/poptQV.c:126
+#: lib/poptQV.c:130
msgid "list all configuration files"
msgstr ""
-#: lib/poptQV.c:128
+#: lib/poptQV.c:132
msgid "list all documentation files"
msgstr ""
-#: lib/poptQV.c:130
+#: lib/poptQV.c:134
msgid "dump basic file information"
msgstr ""
-#: lib/poptQV.c:132
+#: lib/poptQV.c:136
msgid "list files in package"
msgstr ""
-#: lib/poptQV.c:136
+#: lib/poptQV.c:140
msgid "use the following query format"
msgstr ""
-#: lib/poptQV.c:138
+#: lib/poptQV.c:142
msgid "substitute i18n sections into spec file"
msgstr ""
-#: lib/poptQV.c:140
+#: lib/poptQV.c:144
msgid "display the states of the listed files"
msgstr ""
-#: lib/poptQV.c:142
+#: lib/poptQV.c:146
msgid "display a verbose file listing"
msgstr ""
-#: lib/problems.c:76
+#: lib/problems.c:80
#, c-format
msgid " is needed by %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:79
+#: lib/problems.c:83
#, c-format
msgid " conflicts with %s-%s-%s\n"
msgstr ""
-#: lib/problems.c:99
+#: lib/problems.c:103
#, c-format
msgid "package %s-%s-%s is for a different architecture"
msgstr ""
-#: lib/problems.c:104
+#: lib/problems.c:108
#, c-format
msgid "package %s-%s-%s is for a different operating system"
msgstr ""
-#: lib/problems.c:109
+#: lib/problems.c:113
#, c-format
msgid "package %s-%s-%s is already installed"
msgstr ""
-#: lib/problems.c:114
+#: lib/problems.c:118
#, c-format
msgid "path %s is not relocateable for package %s-%s-%s"
msgstr ""
-#: lib/problems.c:119
+#: lib/problems.c:123
#, c-format
msgid "file %s conflicts between attemped installs of %s-%s-%s and %s-%s-%s"
msgstr ""
-#: lib/problems.c:125
+#: lib/problems.c:129
#, c-format
msgid ""
"file %s from install of %s-%s-%s conflicts with file from package %s-%s-%s"
msgstr ""
-#: lib/problems.c:131
+#: lib/problems.c:135
#, c-format
msgid "package %s-%s-%s (which is newer than %s-%s-%s) is already installed"
msgstr ""
-#: lib/problems.c:137
+#: lib/problems.c:141
#, c-format
msgid "installing package %s-%s-%s needs %ld%cb on the %s filesystem"
msgstr ""
-#: lib/problems.c:147
+#: lib/problems.c:151
#, c-format
msgid "package %s-%s-%s pre-transaction syscall(s): %s failed: %s"
msgstr ""
-#: lib/problems.c:155
+#: lib/problems.c:159
#, c-format
msgid "unknown error %d encountered while manipulating package %s-%s-%s"
msgstr ""
-#: lib/query.c:139
+#: lib/query.c:143
#, c-format
msgid "error in format: %s\n"
msgstr ""
-#: lib/query.c:201
+#: lib/query.c:205
msgid "(contains no files)"
msgstr ""
-#: lib/query.c:260
+#: lib/query.c:264
msgid "normal "
msgstr ""
-#: lib/query.c:262
+#: lib/query.c:266
msgid "replaced "
msgstr ""
-#: lib/query.c:264
+#: lib/query.c:268
msgid "not installed "
msgstr ""
-#: lib/query.c:266
+#: lib/query.c:270
msgid "net shared "
msgstr ""
-#: lib/query.c:268
+#: lib/query.c:272
#, c-format
msgid "(unknown %3d) "
msgstr ""
-#: lib/query.c:272
+#: lib/query.c:276
msgid "(no state) "
msgstr ""
-#: lib/query.c:289 lib/query.c:332
+#: lib/query.c:293 lib/query.c:336
msgid "package has neither file owner or id lists"
msgstr ""
-#: lib/query.c:376
+#: lib/query.c:380
#, c-format
msgid "can't query %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: lib/query.c:493
+#: lib/query.c:497
#, c-format
msgid "open of %s failed: %s\n"
msgstr ""
-#: lib/query.c:511
+#: lib/query.c:515
msgid "old format source packages cannot be queried\n"
msgstr ""
-#: lib/query.c:520 lib/rpminstall.c:234
+#: lib/query.c:524 lib/rpminstall.c:238
#, c-format
msgid "%s does not appear to be a RPM package\n"
msgstr ""
-#: lib/query.c:524
+#: lib/query.c:528
#, c-format
msgid "query of %s failed\n"
msgstr ""
-#: lib/query.c:557
+#: lib/query.c:561
#, c-format
msgid "query of specfile %s failed, can't parse\n"
msgstr ""
-#: lib/query.c:580
+#: lib/query.c:584
msgid "no packages\n"
msgstr ""
-#: lib/query.c:590
+#: lib/query.c:594
#, c-format
msgid "group %s does not contain any packages\n"
msgstr ""
-#: lib/query.c:600
+#: lib/query.c:604
#, c-format
msgid "no package triggers %s\n"
msgstr ""
-#: lib/query.c:610
+#: lib/query.c:614
#, c-format
msgid "no package requires %s\n"
msgstr ""
-#: lib/query.c:621
+#: lib/query.c:625
#, c-format
msgid "no package provides %s\n"
msgstr ""
-#: lib/query.c:651
+#: lib/query.c:655
#, c-format
msgid "file %s: %s\n"
msgstr ""
-#: lib/query.c:654
+#: lib/query.c:658
#, c-format
msgid "file %s is not owned by any package\n"
msgstr ""
-#: lib/query.c:680
+#: lib/query.c:684
#, c-format
msgid "invalid package number: %s\n"
msgstr ""
-#: lib/query.c:683
+#: lib/query.c:687
#, c-format
msgid "package record number: %u\n"
msgstr ""
-#: lib/query.c:687
+#: lib/query.c:691
#, c-format
msgid "record %d could not be read\n"
msgstr ""
-#: lib/query.c:698 lib/rpminstall.c:464
+#: lib/query.c:702 lib/rpminstall.c:468
#, c-format
msgid "package %s is not installed\n"
msgstr ""
-#: lib/rpmchecksig.c:31
+#: lib/rpmchecksig.c:34
#, c-format
msgid "%s: open failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:42
+#: lib/rpmchecksig.c:45
msgid "makeTempFile failed\n"
msgstr ""
-#: lib/rpmchecksig.c:74
+#: lib/rpmchecksig.c:77
#, c-format
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:80
+#: lib/rpmchecksig.c:83
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:113 lib/rpmchecksig.c:243
+#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
-#: lib/rpmchecksig.c:118
+#: lib/rpmchecksig.c:121
#, c-format
msgid "%s: Can't sign v1.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:122
+#: lib/rpmchecksig.c:125
#, c-format
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:130 lib/rpmchecksig.c:257
+#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:134 lib/rpmchecksig.c:262
+#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
#, c-format
msgid "%s: No signature available\n"
msgstr ""
-#: lib/rpmchecksig.c:167
+#: lib/rpmchecksig.c:170
#, c-format
msgid "%s: writeLead failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:173
+#: lib/rpmchecksig.c:176
#, c-format
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:249
+#: lib/rpmchecksig.c:252
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:412
+#: lib/rpmchecksig.c:415
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:413 lib/rpmchecksig.c:427
+#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:415 lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:426
+#: lib/rpmchecksig.c:429
msgid "OK"
msgstr ""
-#: lib/rpmdb.c:95
+#: lib/rpmdb.c:99
#, c-format
msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
msgstr ""
-#: lib/rpmdb.c:258
+#: lib/rpmdb.c:262
msgid ""
"\n"
"--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3051,17 +3052,17 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:273
+#: lib/rpmdb.c:277
#, c-format
msgid "cannot open %s index using db%d - %s (%d)"
msgstr ""
-#: lib/rpmdb.c:293
+#: lib/rpmdb.c:297
#, c-format
msgid "cannot open %s index"
msgstr ""
-#: lib/rpmdb.c:308
+#: lib/rpmdb.c:312
#, c-format
msgid ""
"\n"
@@ -3071,7 +3072,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:321
+#: lib/rpmdb.c:325
msgid ""
"\n"
"--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3081,7 +3082,7 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:336
+#: lib/rpmdb.c:340
msgid ""
"\n"
"--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3092,358 +3093,263 @@ msgid ""
"\n"
msgstr ""
-#: lib/rpmdb.c:404
+#: lib/rpmdb.c:408
#, c-format
msgid "error(%d) getting \"%s\" records from %s index"
msgstr ""
-#: lib/rpmdb.c:522
+#: lib/rpmdb.c:526
#, c-format
msgid "error(%d) storing record %s into %s"
msgstr ""
-#: lib/rpmdb.c:531
+#: lib/rpmdb.c:535
#, c-format
msgid "error(%d) removing record %s from %s"
msgstr ""
-#: lib/rpmdb.c:766 lib/rpmdb.c:2293
+#: lib/rpmdb.c:770 lib/rpmdb.c:2304
msgid "no dbpath has been set"
msgstr ""
-#: lib/rpmdb.c:865
+#: lib/rpmdb.c:869
msgid ""
"old format database is present; use --rebuilddb to generate a new format "
"database"
msgstr ""
#. error
-#: lib/rpmdb.c:1077
+#: lib/rpmdb.c:1081
#, c-format
msgid "error(%d) counting packages"
msgstr ""
-#: lib/rpmdb.c:1136 lib/rpmdb.c:1663 lib/uninstall.c:97
+#: lib/rpmdb.c:1140 lib/rpmdb.c:1674
#, c-format
msgid "%s: cannot read header at 0x%x"
msgstr ""
-#: lib/rpmdb.c:1716
+#: lib/rpmdb.c:1727
#, c-format
msgid "removing 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1727
+#: lib/rpmdb.c:1738
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1736
+#: lib/rpmdb.c:1747
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1878
+#: lib/rpmdb.c:1889
#, c-format
msgid "error(%d) allocating new package instance"
msgstr ""
-#: lib/rpmdb.c:1935
+#: lib/rpmdb.c:1946
#, c-format
msgid "adding 0 %s entries.\n"
msgstr ""
-#: lib/rpmdb.c:1951
+#: lib/rpmdb.c:1962
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:1960
+#: lib/rpmdb.c:1971
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: lib/rpmdb.c:2318
+#: lib/rpmdb.c:2329
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: lib/rpmdb.c:2322
+#: lib/rpmdb.c:2333
#, c-format
msgid "temporary database %s already exists"
msgstr ""
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2339
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2330
+#: lib/rpmdb.c:2341
#, c-format
msgid "error creating directory %s: %s"
msgstr ""
-#: lib/rpmdb.c:2337
+#: lib/rpmdb.c:2348
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2348
+#: lib/rpmdb.c:2359
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: lib/rpmdb.c:2371
+#: lib/rpmdb.c:2382
#, c-format
msgid "record number %d in database is bad -- skipping."
msgstr ""
-#: lib/rpmdb.c:2403
+#: lib/rpmdb.c:2414
#, c-format
msgid "cannot add record originally at %d"
msgstr ""
-#: lib/rpmdb.c:2421
+#: lib/rpmdb.c:2432
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: lib/rpmdb.c:2429
+#: lib/rpmdb.c:2440
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2442
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2452
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: lib/rpmdb.c:2443
+#: lib/rpmdb.c:2454
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:129
+#: lib/rpminstall.c:133
msgid "counting packages to install\n"
msgstr ""
-#: lib/rpminstall.c:133
+#: lib/rpminstall.c:137
#, c-format
msgid "found %d packages\n"
msgstr ""
-#: lib/rpminstall.c:138
+#: lib/rpminstall.c:142
msgid "looking for packages to download\n"
msgstr ""
-#: lib/rpminstall.c:153
+#: lib/rpminstall.c:157
#, c-format
msgid "skipping %s - rpmGlob failed(%d)\n"
msgstr ""
-#: lib/rpminstall.c:168
+#: lib/rpminstall.c:172
#, c-format
msgid "Retrieving %s\n"
msgstr ""
#. XXX undefined %{name}/%{version}/%{release} here
#. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:178
+#: lib/rpminstall.c:182
#, c-format
msgid " ... as %s\n"
msgstr ""
-#: lib/rpminstall.c:182
+#: lib/rpminstall.c:186
#, c-format
msgid "skipping %s - transfer failed - %s\n"
msgstr ""
-#: lib/rpminstall.c:209
+#: lib/rpminstall.c:213
#, c-format
msgid "retrieved %d packages\n"
msgstr ""
-#: lib/rpminstall.c:220 lib/rpminstall.c:389
+#: lib/rpminstall.c:224 lib/rpminstall.c:393
#, c-format
msgid "cannot open file %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:238 lib/rpminstall.c:529
+#: lib/rpminstall.c:242 lib/rpminstall.c:533
#, c-format
msgid "%s cannot be installed\n"
msgstr ""
-#: lib/rpminstall.c:253
+#: lib/rpminstall.c:257
#, c-format
msgid "cannot open Packages database in %s\n"
msgstr ""
-#: lib/rpminstall.c:273
+#: lib/rpminstall.c:277
#, c-format
msgid "package %s is not relocateable\n"
msgstr ""
-#: lib/rpminstall.c:318
+#: lib/rpminstall.c:322
#, c-format
msgid "error reading from file %s\n"
msgstr ""
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:327
#, c-format
msgid "file %s requires a newer version of RPM\n"
msgstr ""
-#: lib/rpminstall.c:340
+#: lib/rpminstall.c:344
#, c-format
msgid "found %d source and %d binary packages\n"
msgstr ""
-#: lib/rpminstall.c:351
+#: lib/rpminstall.c:355
msgid "failed dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:369
+#: lib/rpminstall.c:373
msgid "installing binary packages\n"
msgstr ""
-#: lib/rpminstall.c:467
+#: lib/rpminstall.c:471
#, c-format
msgid "\"%s\" specifies multiple packages\n"
msgstr ""
-#: lib/rpminstall.c:490
+#: lib/rpminstall.c:494
msgid "removing these packages would break dependencies:\n"
msgstr ""
-#: lib/rpminstall.c:518
+#: lib/rpminstall.c:522
#, c-format
msgid "cannot open %s: %s\n"
msgstr ""
-#: lib/rpminstall.c:524
+#: lib/rpminstall.c:528
#, c-format
msgid "Installing %s\n"
msgstr ""
-#: lib/rpmlead.c:48
+#: lib/rpmlead.c:52
#, c-format
msgid "read failed: %s (%d)"
msgstr ""
-#: lib/rpmrc.c:147
-#, c-format
-msgid "missing second ':' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:150
-#, c-format
-msgid "missing architecture name at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:310
-#, c-format
-msgid "Incomplete data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:314
-#, c-format
-msgid "Too many args in data line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:321
-#, c-format
-msgid "Bad arch/os number: %s (%s:%d)"
-msgstr ""
-
-#: lib/rpmrc.c:356
-#, c-format
-msgid "Incomplete default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:361
-#, c-format
-msgid "Too many args in default line at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:551
-#, c-format
-msgid "Cannot expand %s"
-msgstr ""
-
-#: lib/rpmrc.c:556
-#, c-format
-msgid "Cannot read %s, HOME is too large."
-msgstr ""
-
-#: lib/rpmrc.c:573
-#, c-format
-msgid "Unable to open %s for reading: %s."
-msgstr ""
-
-#. XXX Feof(fd)
-#: lib/rpmrc.c:618
-#, c-format
-msgid "Failed to read %s: %s."
-msgstr ""
-
-#: lib/rpmrc.c:655
-#, c-format
-msgid "missing ':' (found 0x%02x) at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:672 lib/rpmrc.c:746
-#, c-format
-msgid "missing argument for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:689 lib/rpmrc.c:711
-#, c-format
-msgid "%s expansion failed at %s:%d \"%s\""
-msgstr ""
-
-#: lib/rpmrc.c:698
-#, c-format
-msgid "cannot open %s at %s:%d: %s"
-msgstr ""
-
-#: lib/rpmrc.c:738
-#, c-format
-msgid "missing architecture for %s at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:805
-#, c-format
-msgid "bad option '%s' at %s:%d"
-msgstr ""
-
-#: lib/rpmrc.c:1176
-#, c-format
-msgid "Unknown system: %s\n"
-msgstr ""
-
-#: lib/rpmrc.c:1177
-msgid "Please contact rpm-list@redhat.com\n"
-msgstr ""
-
-#: lib/signature.c:107
+#: lib/signature.c:111
#, c-format
msgid "sigsize : %d\n"
msgstr ""
-#: lib/signature.c:108
+#: lib/signature.c:112
#, c-format
msgid "Header + Archive: %d\n"
msgstr ""
-#: lib/signature.c:109
+#: lib/signature.c:113
#, c-format
msgid "expected size : %d\n"
msgstr ""
-#: lib/signature.c:113
+#: lib/signature.c:117
msgid "file is not regular -- skipping size check\n"
msgstr ""
@@ -3503,7 +3409,7 @@ msgstr ""
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:344 lib/signature.c:687
+#: lib/signature.c:344 lib/signature.c:689
msgid "Couldn't exec gpg"
msgstr ""
@@ -3535,308 +3441,308 @@ msgstr ""
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:493 lib/signature.c:555
+#: lib/signature.c:495 lib/signature.c:557
msgid "Could not run pgp. Use --nopgp to skip PGP checks."
msgstr ""
-#: lib/signature.c:553 lib/signature.c:626
+#: lib/signature.c:555 lib/signature.c:628
msgid "exec failed!\n"
msgstr ""
-#: lib/signature.c:628
+#: lib/signature.c:630
msgid "Could not run gpg. Use --nogpg to skip GPG checks."
msgstr ""
-#: lib/signature.c:716
+#: lib/signature.c:718
msgid "Couldn't exec pgp"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:720 lib/signature.c:773
+#: lib/signature.c:722 lib/signature.c:775
msgid "Invalid %%_signature spec in macro file"
msgstr ""
-#: lib/signature.c:753
+#: lib/signature.c:755
msgid "You must set \"%%_gpg_name\" in your macro file"
msgstr ""
-#: lib/signature.c:765
+#: lib/signature.c:767
msgid "You must set \"%%_pgp_name\" in your macro file"
msgstr ""
-#: lib/transaction.c:413
+#: lib/transaction.c:425
#, c-format
msgid "excluding file %s%s\n"
msgstr ""
-#: lib/transaction.c:439 lib/transaction.c:522
+#: lib/transaction.c:451 lib/transaction.c:534
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/transaction.c:444
+#: lib/transaction.c:456
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:515
+#: lib/transaction.c:527
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:667
+#: lib/transaction.c:679
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/uninstall.c:42
+#: lib/uninstall.c:54
#, c-format
msgid "cannot remove %s - directory not empty"
msgstr ""
-#: lib/uninstall.c:46
+#: lib/uninstall.c:58
#, c-format
msgid "rmdir of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:56
+#: lib/uninstall.c:68
#, c-format
msgid "removal of %s failed: %s"
msgstr ""
-#: lib/uninstall.c:141
+#: lib/uninstall.c:133
#, c-format
msgid "will remove files test = %d\n"
msgstr ""
-#: lib/uninstall.c:209
+#: lib/uninstall.c:217
msgid "running postuninstall script (if any)\n"
msgstr ""
-#: lib/uninstall.c:406
+#: lib/uninstall.c:419
#, c-format
msgid "execution of %s-%s-%s script failed, exit status %d"
msgstr ""
-#: lib/verify.c:39
+#: lib/verify.c:43
msgid "don't verify files in package"
msgstr ""
-#: lib/verify.c:215
+#: lib/verify.c:219
msgid "package lacks both user name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:233
+#: lib/verify.c:237
msgid "package lacks both group name and id lists (this should never happen)"
msgstr ""
-#: lib/verify.c:269
+#: lib/verify.c:273
#, c-format
msgid "missing %s\n"
msgstr ""
-#: lib/verify.c:331
+#: lib/verify.c:335
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: rpmio/rpmio.c:529
+#: rpmio/rpmio.c:533
msgid "Success"
msgstr ""
-#: rpmio/rpmio.c:532
+#: rpmio/rpmio.c:536
msgid "Bad server response"
msgstr ""
-#: rpmio/rpmio.c:535
+#: rpmio/rpmio.c:539
msgid "Server IO error"
msgstr ""
-#: rpmio/rpmio.c:538
+#: rpmio/rpmio.c:542
msgid "Server timeout"
msgstr ""
-#: rpmio/rpmio.c:541
+#: rpmio/rpmio.c:545
msgid "Unable to lookup server host address"
msgstr ""
-#: rpmio/rpmio.c:544
+#: rpmio/rpmio.c:548
msgid "Unable to lookup server host name"
msgstr ""
-#: rpmio/rpmio.c:547
+#: rpmio/rpmio.c:551
msgid "Failed to connect to server"
msgstr ""
-#: rpmio/rpmio.c:550
+#: rpmio/rpmio.c:554
msgid "Failed to establish data connection to server"
msgstr ""
-#: rpmio/rpmio.c:553
+#: rpmio/rpmio.c:557
msgid "IO error to local file"
msgstr ""
-#: rpmio/rpmio.c:556
+#: rpmio/rpmio.c:560
msgid "Error setting remote server to passive mode"
msgstr ""
-#: rpmio/rpmio.c:559
+#: rpmio/rpmio.c:563
msgid "File not found on server"
msgstr ""
-#: rpmio/rpmio.c:562
+#: rpmio/rpmio.c:566
msgid "Abort in progress"
msgstr ""
-#: rpmio/rpmio.c:566
+#: rpmio/rpmio.c:570
msgid "Unknown or unexpected error"
msgstr ""
-#: rpmio/rpmio.c:1161
+#: rpmio/rpmio.c:1165
#, c-format
msgid "logging into %s as %s, pw %s\n"
msgstr ""
-#: rpmio/macro.c:161
+#: rpmio/macro.c:166
#, c-format
msgid "======================== active %d empty %d\n"
msgstr ""
#. XXX just in case
-#: rpmio/macro.c:256
+#: rpmio/macro.c:261
#, c-format
msgid "%3d>%*s(empty)"
msgstr ""
-#: rpmio/macro.c:291
+#: rpmio/macro.c:296
#, c-format
msgid "%3d<%*s(empty)\n"
msgstr ""
-#: rpmio/macro.c:470
+#: rpmio/macro.c:475
msgid "Macro %%%s has unterminated body"
msgstr ""
-#: rpmio/macro.c:496
+#: rpmio/macro.c:501
msgid "Macro %%%s has illegal name (%%define)"
msgstr ""
-#: rpmio/macro.c:502
+#: rpmio/macro.c:507
msgid "Macro %%%s has unterminated opts"
msgstr ""
-#: rpmio/macro.c:507
+#: rpmio/macro.c:512
msgid "Macro %%%s has empty body"
msgstr ""
-#: rpmio/macro.c:512
+#: rpmio/macro.c:517
msgid "Macro %%%s failed to expand"
msgstr ""
-#: rpmio/macro.c:537
+#: rpmio/macro.c:542
msgid "Macro %%%s has illegal name (%%undefine)"
msgstr ""
-#: rpmio/macro.c:614
+#: rpmio/macro.c:619
msgid "Macro %%%s (%s) was not used below level %d"
msgstr ""
-#: rpmio/macro.c:698
+#: rpmio/macro.c:703
#, c-format
msgid "Unknown option %c in %s(%s)"
msgstr ""
-#: rpmio/macro.c:854
+#: rpmio/macro.c:859
#, c-format
msgid "Recursion depth(%d) greater than max(%d)"
msgstr ""
-#: rpmio/macro.c:920 rpmio/macro.c:936
+#: rpmio/macro.c:925 rpmio/macro.c:941
#, c-format
msgid "Unterminated %c: %s"
msgstr ""
-#: rpmio/macro.c:976
+#: rpmio/macro.c:981
msgid "A %% is followed by an unparseable macro"
msgstr ""
-#: rpmio/macro.c:1102
+#: rpmio/macro.c:1107
msgid "Macro %%%.*s not found, skipping"
msgstr ""
-#: rpmio/macro.c:1183
+#: rpmio/macro.c:1188
msgid "Target buffer overflow"
msgstr ""
#. XXX Fstrerror
-#: rpmio/macro.c:1363 rpmio/macro.c:1369
+#: rpmio/macro.c:1368 rpmio/macro.c:1374
#, c-format
msgid "File %s: %s"
msgstr ""
-#: rpmio/macro.c:1372
+#: rpmio/macro.c:1377
#, c-format
msgid "File %s is smaller than %d bytes"
msgstr ""
-#: rpmio/messages.c:55
+#: rpmio/messages.c:59
msgid "warning: "
msgstr ""
-#: rpmio/messages.c:64
+#: rpmio/messages.c:68
msgid "error: "
msgstr ""
-#: rpmio/messages.c:73
+#: rpmio/messages.c:77
msgid "fatal error: "
msgstr ""
-#: rpmio/messages.c:82
+#: rpmio/messages.c:86
msgid "internal error (rpm bug?): "
msgstr ""
-#: rpmio/rpmmalloc.c:9
+#: rpmio/rpmmalloc.c:13
#, c-format
msgid "memory alloc (%u bytes) returned NULL.\n"
msgstr ""
-#: rpmio/url.c:88
+#: rpmio/url.c:92
#, c-format
msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:105
+#: rpmio/url.c:109
#, c-format
msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:132
+#: rpmio/url.c:136
#, c-format
msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
msgstr ""
-#: rpmio/url.c:218
+#: rpmio/url.c:222
#, c-format
msgid "Password for %s@%s: "
msgstr ""
-#: rpmio/url.c:243 rpmio/url.c:269
+#: rpmio/url.c:247 rpmio/url.c:273
#, c-format
msgid "error: %sport must be a number\n"
msgstr ""
-#: rpmio/url.c:405
+#: rpmio/url.c:409
msgid "url port must be a number\n"
msgstr ""
-#: rpmio/url.c:445
+#: rpmio/url.c:449
#, c-format
msgid "failed to open %s: %s\n"
msgstr ""
#. XXX Fstrerror
-#: rpmio/url.c:462
+#: rpmio/url.c:466
#, c-format
msgid "failed to create %s: %s\n"
msgstr ""
diff --git a/popt/po/cs.po b/popt/po/cs.po
index 6f27c6dd7..999208c72 100644
--- a/popt/po/cs.po
+++ b/popt/po/cs.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.3\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-08-08 22:36+0100\n"
"Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Vypí¹e tuto nápovìdu"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Vypí¹e krátký návod k pou¾ití"
diff --git a/popt/po/da.po b/popt/po/da.po
index b0d4652d8..8b3ad012c 100644
--- a/popt/po/da.po
+++ b/popt/po/da.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-03-07 05:17+01:00\n"
"Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Vis denne hjælpemeddelelse"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Vis kortfattet brugsanvisning"
diff --git a/popt/po/de.po b/popt/po/de.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/de.po
+++ b/popt/po/de.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/es.po b/popt/po/es.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/es.po
+++ b/popt/po/es.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/fi.po b/popt/po/fi.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/fi.po
+++ b/popt/po/fi.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/fr.po b/popt/po/fr.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/fr.po
+++ b/popt/po/fr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/gl.po b/popt/po/gl.po
index 5e92fa8c2..fb3abc03e 100644
--- a/popt/po/gl.po
+++ b/popt/po/gl.po
@@ -10,7 +10,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.4\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-01-06 20:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <gpul-traduccion@ceu.fi.udc.es>\n"
@@ -18,10 +18,10 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Amosar esta mensaxe de axuda"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Amosar brevemente o xeito de utilización"
diff --git a/popt/po/hu.po b/popt/po/hu.po
index 0fda506a4..41455b5c2 100644
--- a/popt/po/hu.po
+++ b/popt/po/hu.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-08-03 23:26+0200\n"
"Last-Translator: László Németh <nemeth@qwertynet.hu>\n"
"Language-Team: Hungarian\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "E súgó megjelenítése"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Rövid használati utasítás megjelenítése"
diff --git a/popt/po/id.po b/popt/po/id.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/id.po
+++ b/popt/po/id.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/is.po b/popt/po/is.po
index 3c8407ed9..2d64db39f 100644
--- a/popt/po/is.po
+++ b/popt/po/is.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.0\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-06-16 02:12+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Sýna þessa hjálp"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Sýna stuttar notkunarleiðbeiningar"
diff --git a/popt/po/it.po b/popt/po/it.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/it.po
+++ b/popt/po/it.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/ja.po b/popt/po/ja.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/ja.po
+++ b/popt/po/ja.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/ko.po b/popt/po/ko.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/ko.po
+++ b/popt/po/ko.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/no.po b/popt/po/no.po
index b870dbc8f..85878dda1 100644
--- a/popt/po/no.po
+++ b/popt/po/no.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 7.0\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-06-21 16:11+02:00\n"
"Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Vis denne hjelpmeldingen"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Vis kort bruksmelding"
diff --git a/popt/po/pl.po b/popt/po/pl.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/pl.po
+++ b/popt/po/pl.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/pt.po b/popt/po/pt.po
index 1b1e76296..0748f7312 100644
--- a/popt/po/pt.po
+++ b/popt/po/pt.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-06-22 01:02+01:00\n"
"Last-Translator: Pedro Morais <morais@kde.org>\n"
"Language-Team: pt <morais@kde.org>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=iso-latin1\n"
"Content-Transfer-Encoding: none\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Mostrar esta mensagem de ajuda"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Mostrar uma mensagem de utilização sucinta"
diff --git a/popt/po/pt_BR.po b/popt/po/pt_BR.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/pt_BR.po
+++ b/popt/po/pt_BR.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/ro.po b/popt/po/ro.po
index 090ed0997..374856e8b 100644
--- a/popt/po/ro.po
+++ b/popt/po/ro.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.6\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-06-14 23:23+EST\n"
"Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
@@ -9,11 +9,11 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Afisare mesaj de help"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Afisare mesaj sintaxa sumar"
diff --git a/popt/po/ru.po b/popt/po/ru.po
index 2467f0d19..2d106f07c 100644
--- a/popt/po/ru.po
+++ b/popt/po/ru.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: 1.0\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-08-13 21:00+0300\n"
"Last-Translator: Leon Kanter <leon@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=koi8-r\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "ðÏËÁÚÁÔØ ÜÔÏ ÓÏÏÂÝÅÎÉÅ"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "ðÏËÁÚÁÔØ ËÒÁÔËÕÀ ÉÎÓÔÒÕËÃÉÀ ÐÏ ÉÓÐÏÌØÚÏ×ÁÎÉÀ"
diff --git a/popt/po/sk.po b/popt/po/sk.po
index 3dec0d661..5350784a4 100644
--- a/popt/po/sk.po
+++ b/popt/po/sk.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 1999-08-04 21:40+0200\n"
"Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -13,10 +13,10 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Vypísa» túto správu"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Zobrazi» struèný návod na pou¾itie"
diff --git a/popt/po/sl.po b/popt/po/sl.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/sl.po
+++ b/popt/po/sl.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/sr.po b/popt/po/sr.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/sr.po
+++ b/popt/po/sr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/sv.po b/popt/po/sv.po
index 848263837..02180cc20 100644
--- a/popt/po/sv.po
+++ b/popt/po/sv.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-06-20 00:07+0200\n"
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Visa detta hjälpmeddelande"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Visa ett kortfattat användningsmeddelande"
diff --git a/popt/po/tr.po b/popt/po/tr.po
index 5de9e9bd5..0eea6750d 100644
--- a/popt/po/tr.po
+++ b/popt/po/tr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.2\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 2000-01-06 13:01+0100\n"
"Last-Translator: Fatih Demir <kabalak@gmx.net>\n"
"Language-Team: Turkish Gnome Tranlation Team <gnotrap@gmx.net>\n"
@@ -14,11 +14,11 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-9\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Bu yardým iletisini gösterir"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Kýsa bir kullaným iletisi göster"
diff --git a/popt/po/uk.po b/popt/po/uk.po
index 27e6a9867..eee99afd5 100644
--- a/popt/po/uk.po
+++ b/popt/po/uk.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.4\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 1999-09-30 16:54+0200\n"
"Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
@@ -13,10 +13,10 @@ msgstr ""
"Content-Type: text/plain; charset=koi8-u\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "ðÏËÁÚÁÔÉ ÃÀ ÄÏצÄËÕ"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "ðÏËÁÚÁÔÉ ËÏÒÏÔËÕ ÄÏצÄËÕ ÐÒÏ ×ÉËÏÒÉÓÔÁÎÎÑ"
diff --git a/popt/po/wa.po b/popt/po/wa.po
index 6f4d8948f..12c5f11e2 100644
--- a/popt/po/wa.po
+++ b/popt/po/wa.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: popt 1.3\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 1999-03-18 23:11+0100\n"
"Last-Translator: Nobody yet\n"
"Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
@@ -17,10 +17,10 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "Mostrer ci messaedje d' aide chal"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "Mostre on court messaedje so kmint vos è siervi"
diff --git a/popt/po/zh.po b/popt/po/zh.po
index e5aae73cd..a8101efa2 100644
--- a/popt/po/zh.po
+++ b/popt/po/zh.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-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"
@@ -14,10 +14,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr ""
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr ""
diff --git a/popt/po/zh_CN.GB2312.po b/popt/po/zh_CN.GB2312.po
index fa3003e99..49d991cad 100644
--- a/popt/po/zh_CN.GB2312.po
+++ b/popt/po/zh_CN.GB2312.po
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: kcmkpanel\n"
-"POT-Creation-Date: 2000-08-04 15:48-0400\n"
+"POT-Creation-Date: 2000-08-27 14:45-0400\n"
"PO-Revision-Date: 1999-11-11 05:04+0800\n"
"Last-Translator: Dillion Chen <dillon.chen@turbolinux.com.cn>\n"
"Language-Team: TLDN\n"
@@ -9,10 +9,10 @@ msgstr ""
"Content-Type: text/plain; charset=gb2312\n"
"Content-Transfer-Encoding: 8bit\n"
-#: popthelp.c:23
+#: popthelp.c:27
msgid "Show this help message"
msgstr "ÏÔʾÕâÌõ°ïÖúÐÅÏ¢"
-#: popthelp.c:24
+#: popthelp.c:28
msgid "Display brief usage message"
msgstr "ÏÔʾ¼ò¶ÌʹÓÃÐÅÏ¢"
diff --git a/rpm.spec b/rpm.spec
index 2f28ac53b..4ca172ef2 100644
--- a/rpm.spec
+++ b/rpm.spec
@@ -124,7 +124,6 @@ mkdir -p $RPM_BUILD_ROOT/etc/rpm
{ cd $RPM_BUILD_ROOT
strip ./bin/rpm
strip .%{__prefix}/bin/rpm2cpio
- strip .%{__prefix}/lib/rpm/rpmputtext .%{__prefix}/lib/rpm/rpmgettext
}
%clean
@@ -233,8 +232,6 @@ fi
%{__prefix}/lib/rpm/rpm[bt]
%{__prefix}/lib/rpm/rpmdiff
%{__prefix}/lib/rpm/rpmdiff.cgi
-%{__prefix}/lib/rpm/rpmgettext
-%{__prefix}/lib/rpm/rpmputtext
%{__prefix}/lib/rpm/u_pkg.sh
%{__prefix}/lib/rpm/vpkg-provides.sh
%{__prefix}/lib/rpm/vpkg-provides2.sh
diff --git a/tools/Makefile.am b/tools/Makefile.am
index f7e824733..652d450df 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -6,9 +6,9 @@ INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/build -I$(top_srcdir)/lib \
-I$(top_srcdir)/rpmio -I$(top_srcdir)/popt \
@INCPATH@ -I$(top_srcdir)/misc
-EXTRA_DIST = fstrcmp.c message.c str-list.c rpmchecksig.c
+EXTRA_DIST = rpmchecksig.c
-EXTRA_PROGRAMS = rpmgettext rpmputtext rpminject
+EXTRA_PROGRAMS = rpminject
#myLDFLAGS= -L$(top_builddir)/build -L$(top_builddir)/lib \
# -L$(top_builddir)/rpmio -L$(top_builddir)/popt
@@ -29,11 +29,4 @@ noinst_PROGRAMS = \
pkgbindir = @RPMCONFIGDIR@
pkgbin_PROGRAMS = @BUILD_RPMNLSTOOLS@
-# XXX non-linux needs libmisc.a
-rpmgettext_SOURCES = rpmgettext.c
-rpmgettext_LDADD = $(myLDADD) @LIBMISC@
-
-rpmputtext_SOURCES = rpmgettext.c
-rpmputtext_LDADD = $(myLDADD) @LIBMISC@
-
$(PROGRAMS): $(myLDADD)
diff --git a/tools/fstrcmp.c b/tools/fstrcmp.c
deleted file mode 100644
index b1f597127..000000000
--- a/tools/fstrcmp.c
+++ /dev/null
@@ -1,636 +0,0 @@
-/* Functions to make fuzzy comparisons between strings
- Copyright (C) 1988, 1989, 1992, 1993, 1995 Free Software Foundation, Inc.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or (at
- your option) any later version.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-
- Derived from GNU diff 2.7, analyze.c et al.
-
- The basic algorithm is described in:
- "An O(ND) Difference Algorithm and its Variations", Eugene Myers,
- Algorithmica Vol. 1 No. 2, 1986, pp. 251-266;
- see especially section 4.2, which describes the variation used below.
-
- The basic algorithm was independently discovered as described in:
- "Algorithms for Approximate String Matching", E. Ukkonen,
- Information and Control Vol. 64, 1985, pp. 100-118.
-
- Modified to work on strings rather than files
- by Peter Miller <pmiller@agso.gov.au>, October 1995 */
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#ifdef HAVE_STRING_H
-# include <string.h>
-#else
-# include <strings.h>
-#endif
-
-#include <stdio.h>
-
-#ifdef HAVE_LIMITS_H
-# include <limits.h>
-#else
-# define INT_MAX ((int)(~(unsigned)0 >> 1))
-#endif
-
-#include "system.h"
-#include "fstrcmp.h"
-
-
-/*
- * Data on one input string being compared.
- */
-struct string_data
-{
- /* The string to be compared. */
- const char *data;
-
- /* The length of the string to be compared. */
- int data_length;
-
- /* The number of characters inserted or deleted. */
- int edit_count;
-};
-
-static struct string_data string[2];
-
-
-#ifdef MINUS_H_FLAG
-
-/* This corresponds to the diff -H flag. With this heuristic, for
- strings with a constant small density of changes, the algorithm is
- linear in the strings size. This is unlikely in typical uses of
- fstrcmp, and so is usually compiled out. Besides, there is no
- interface to set it true. */
-static int heuristic;
-
-#endif
-
-
-/* Vector, indexed by diagonal, containing 1 + the X coordinate of the
- point furthest along the given diagonal in the forward search of the
- edit matrix. */
-static int *fdiag;
-
-/* Vector, indexed by diagonal, containing the X coordinate of the point
- furthest along the given diagonal in the backward search of the edit
- matrix. */
-static int *bdiag;
-
-/* Edit scripts longer than this are too expensive to compute. */
-static int too_expensive;
-
-/* Snakes bigger than this are considered `big'. */
-#define SNAKE_LIMIT 20
-
-struct partition
-{
- /* Midpoints of this partition. */
- int xmid, ymid;
-
- /* Nonzero if low half will be analyzed minimally. */
- int lo_minimal;
-
- /* Likewise for high half. */
- int hi_minimal;
-};
-
-
-/* NAME
- diag - find diagonal path
-
- SYNOPSIS
- int diag(int xoff, int xlim, int yoff, int ylim, int minimal,
- struct partition *part);
-
- DESCRIPTION
- Find the midpoint of the shortest edit script for a specified
- portion of the two strings.
-
- Scan from the beginnings of the strings, and simultaneously from
- the ends, doing a breadth-first search through the space of
- edit-sequence. When the two searches meet, we have found the
- midpoint of the shortest edit sequence.
-
- If MINIMAL is nonzero, find the minimal edit script regardless
- of expense. Otherwise, if the search is too expensive, use
- heuristics to stop the search and report a suboptimal answer.
-
- RETURNS
- Set PART->(XMID,YMID) to the midpoint (XMID,YMID). The diagonal
- number XMID - YMID equals the number of inserted characters
- minus the number of deleted characters (counting only characters
- before the midpoint). Return the approximate edit cost; this is
- the total number of characters inserted or deleted (counting
- only characters before the midpoint), unless a heuristic is used
- to terminate the search prematurely.
-
- Set PART->LEFT_MINIMAL to nonzero iff the minimal edit script
- for the left half of the partition is known; similarly for
- PART->RIGHT_MINIMAL.
-
- CAVEAT
- This function assumes that the first characters of the specified
- portions of the two strings do not match, and likewise that the
- last characters do not match. The caller must trim matching
- characters from the beginning and end of the portions it is
- going to specify.
-
- If we return the "wrong" partitions, the worst this can do is
- cause suboptimal diff output. It cannot cause incorrect diff
- output. */
-
-static int diag PARAMS ((int, int, int, int, int, struct partition *));
-
-static int
-diag (xoff, xlim, yoff, ylim, minimal, part)
- int xoff;
- int xlim;
- int yoff;
- int ylim;
- int minimal;
- struct partition *part;
-{
- int *const fd = fdiag; /* Give the compiler a chance. */
- int *const bd = bdiag; /* Additional help for the compiler. */
- const char *const xv = string[0].data; /* Still more help for the compiler. */
- const char *const yv = string[1].data; /* And more and more . . . */
- const int dmin = xoff - ylim; /* Minimum valid diagonal. */
- const int dmax = xlim - yoff; /* Maximum valid diagonal. */
- const int fmid = xoff - yoff; /* Center diagonal of top-down search. */
- const int bmid = xlim - ylim; /* Center diagonal of bottom-up search. */
- int fmin = fmid;
- int fmax = fmid; /* Limits of top-down search. */
- int bmin = bmid;
- int bmax = bmid; /* Limits of bottom-up search. */
- int c; /* Cost. */
- int odd = (fmid - bmid) & 1;
-
- /*
- * True if southeast corner is on an odd diagonal with respect
- * to the northwest.
- */
- fd[fmid] = xoff;
- bd[bmid] = xlim;
- for (c = 1;; ++c)
- {
- int d; /* Active diagonal. */
- int big_snake;
-
- big_snake = 0;
- /* Extend the top-down search by an edit step in each diagonal. */
- if (fmin > dmin)
- fd[--fmin - 1] = -1;
- else
- ++fmin;
- if (fmax < dmax)
- fd[++fmax + 1] = -1;
- else
- --fmax;
- for (d = fmax; d >= fmin; d -= 2)
- {
- int x;
- int y;
- int oldx;
- int tlo;
- int thi;
-
- tlo = fd[d - 1],
- thi = fd[d + 1];
-
- if (tlo >= thi)
- x = tlo + 1;
- else
- x = thi;
- oldx = x;
- y = x - d;
- while (x < xlim && y < ylim && xv[x] == yv[y])
- {
- ++x;
- ++y;
- }
- if (x - oldx > SNAKE_LIMIT)
- big_snake = 1;
- fd[d] = x;
- if (odd && bmin <= d && d <= bmax && bd[d] <= x)
- {
- part->xmid = x;
- part->ymid = y;
- part->lo_minimal = part->hi_minimal = 1;
- return 2 * c - 1;
- }
- }
- /* Similarly extend the bottom-up search. */
- if (bmin > dmin)
- bd[--bmin - 1] = INT_MAX;
- else
- ++bmin;
- if (bmax < dmax)
- bd[++bmax + 1] = INT_MAX;
- else
- --bmax;
- for (d = bmax; d >= bmin; d -= 2)
- {
- int x;
- int y;
- int oldx;
- int tlo;
- int thi;
-
- tlo = bd[d - 1],
- thi = bd[d + 1];
- if (tlo < thi)
- x = tlo;
- else
- x = thi - 1;
- oldx = x;
- y = x - d;
- while (x > xoff && y > yoff && xv[x - 1] == yv[y - 1])
- {
- --x;
- --y;
- }
- if (oldx - x > SNAKE_LIMIT)
- big_snake = 1;
- bd[d] = x;
- if (!odd && fmin <= d && d <= fmax && x <= fd[d])
- {
- part->xmid = x;
- part->ymid = y;
- part->lo_minimal = part->hi_minimal = 1;
- return 2 * c;
- }
- }
-
- if (minimal)
- continue;
-
-#ifdef MINUS_H_FLAG
- /* Heuristic: check occasionally for a diagonal that has made lots
- of progress compared with the edit distance. If we have any
- such, find the one that has made the most progress and return
- it as if it had succeeded.
-
- With this heuristic, for strings with a constant small density
- of changes, the algorithm is linear in the strings size. */
- if (c > 200 && big_snake && heuristic)
- {
- int best;
-
- best = 0;
- for (d = fmax; d >= fmin; d -= 2)
- {
- int dd;
- int x;
- int y;
- int v;
-
- dd = d - fmid;
- x = fd[d];
- y = x - d;
- v = (x - xoff) * 2 - dd;
-
- if (v > 12 * (c + (dd < 0 ? -dd : dd)))
- {
- if
- (
- v > best
- &&
- xoff + SNAKE_LIMIT <= x
- &&
- x < xlim
- &&
- yoff + SNAKE_LIMIT <= y
- &&
- y < ylim
- )
- {
- /* We have a good enough best diagonal; now insist
- that it end with a significant snake. */
- int k;
-
- for (k = 1; xv[x - k] == yv[y - k]; k++)
- {
- if (k == SNAKE_LIMIT)
- {
- best = v;
- part->xmid = x;
- part->ymid = y;
- break;
- }
- }
- }
- }
- }
- if (best > 0)
- {
- part->lo_minimal = 1;
- part->hi_minimal = 0;
- return 2 * c - 1;
- }
- best = 0;
- for (d = bmax; d >= bmin; d -= 2)
- {
- int dd;
- int x;
- int y;
- int v;
-
- dd = d - bmid;
- x = bd[d];
- y = x - d;
- v = (xlim - x) * 2 + dd;
-
- if (v > 12 * (c + (dd < 0 ? -dd : dd)))
- {
- if (v > best && xoff < x && x <= xlim - SNAKE_LIMIT &&
- yoff < y && y <= ylim - SNAKE_LIMIT)
- {
- /* We have a good enough best diagonal; now insist
- that it end with a significant snake. */
- int k;
-
- for (k = 0; xv[x + k] == yv[y + k]; k++)
- {
- if (k == SNAKE_LIMIT - 1)
- {
- best = v;
- part->xmid = x;
- part->ymid = y;
- break;
- }
- }
- }
- }
- }
- if (best > 0)
- {
- part->lo_minimal = 0;
- part->hi_minimal = 1;
- return 2 * c - 1;
- }
- }
-#endif /* MINUS_H_FLAG */
-
- /* Heuristic: if we've gone well beyond the call of duty, give up
- and report halfway between our best results so far. */
- if (c >= too_expensive)
- {
- int fxybest;
- int fxbest;
- int bxybest;
- int bxbest;
-
- /* Pacify `gcc -Wall'. */
- fxbest = 0;
- bxbest = 0;
-
- /* Find forward diagonal that maximizes X + Y. */
- fxybest = -1;
- for (d = fmax; d >= fmin; d -= 2)
- {
- int x;
- int y;
-
- x = fd[d] < xlim ? fd[d] : xlim;
- y = x - d;
-
- if (ylim < y)
- {
- x = ylim + d;
- y = ylim;
- }
- if (fxybest < x + y)
- {
- fxybest = x + y;
- fxbest = x;
- }
- }
- /* Find backward diagonal that minimizes X + Y. */
- bxybest = INT_MAX;
- for (d = bmax; d >= bmin; d -= 2)
- {
- int x;
- int y;
-
- x = xoff > bd[d] ? xoff : bd[d];
- y = x - d;
-
- if (y < yoff)
- {
- x = yoff + d;
- y = yoff;
- }
- if (x + y < bxybest)
- {
- bxybest = x + y;
- bxbest = x;
- }
- }
- /* Use the better of the two diagonals. */
- if ((xlim + ylim) - bxybest < fxybest - (xoff + yoff))
- {
- part->xmid = fxbest;
- part->ymid = fxybest - fxbest;
- part->lo_minimal = 1;
- part->hi_minimal = 0;
- }
- else
- {
- part->xmid = bxbest;
- part->ymid = bxybest - bxbest;
- part->lo_minimal = 0;
- part->hi_minimal = 1;
- }
- return 2 * c - 1;
- }
- }
-}
-
-
-/* NAME
- compareseq - find edit sequence
-
- SYNOPSIS
- void compareseq(int xoff, int xlim, int yoff, int ylim, int minimal);
-
- DESCRIPTION
- Compare in detail contiguous subsequences of the two strings
- which are known, as a whole, to match each other.
-
- The subsequence of string 0 is [XOFF, XLIM) and likewise for
- string 1.
-
- Note that XLIM, YLIM are exclusive bounds. All character
- numbers are origin-0.
-
- If MINIMAL is nonzero, find a minimal difference no matter how
- expensive it is. */
-
-static void compareseq PARAMS ((int, int, int, int, int));
-
-static void
-compareseq (xoff, xlim, yoff, ylim, minimal)
- int xoff;
- int xlim;
- int yoff;
- int ylim;
- int minimal;
-{
- const char *const xv = string[0].data; /* Help the compiler. */
- const char *const yv = string[1].data;
-
- /* Slide down the bottom initial diagonal. */
- while (xoff < xlim && yoff < ylim && xv[xoff] == yv[yoff])
- {
- ++xoff;
- ++yoff;
- }
-
- /* Slide up the top initial diagonal. */
- while (xlim > xoff && ylim > yoff && xv[xlim - 1] == yv[ylim - 1])
- {
- --xlim;
- --ylim;
- }
-
- /* Handle simple cases. */
- if (xoff == xlim)
- {
- while (yoff < ylim)
- {
- ++string[1].edit_count;
- ++yoff;
- }
- }
- else if (yoff == ylim)
- {
- while (xoff < xlim)
- {
- ++string[0].edit_count;
- ++xoff;
- }
- }
- else
- {
- int c;
- struct partition part;
-
- /* Find a point of correspondence in the middle of the strings. */
- c = diag (xoff, xlim, yoff, ylim, minimal, &part);
- if (c == 1)
- {
-#if 0
- /* This should be impossible, because it implies that one of
- the two subsequences is empty, and that case was handled
- above without calling `diag'. Let's verify that this is
- true. */
- abort ();
-#else
- /* The two subsequences differ by a single insert or delete;
- record it and we are done. */
- if (part.xmid - part.ymid < xoff - yoff)
- ++string[1].edit_count;
- else
- ++string[0].edit_count;
-#endif
- }
- else
- {
- /* Use the partitions to split this problem into subproblems. */
- compareseq (xoff, part.xmid, yoff, part.ymid, part.lo_minimal);
- compareseq (part.xmid, xlim, part.ymid, ylim, part.hi_minimal);
- }
- }
-}
-
-
-/* NAME
- fstrcmp - fuzzy string compare
-
- SYNOPSIS
- double fstrcmp(const char *, const char *);
-
- DESCRIPTION
- The fstrcmp function may be used to compare two string for
- similarity. It is very useful in reducing "cascade" or
- "secondary" errors in compilers or other situations where
- symbol tables occur.
-
- RETURNS
- double; 0 if the strings are entirly dissimilar, 1 if the
- strings are identical, and a number in between if they are
- similar. */
-
-double
-fstrcmp (string1, string2)
- const char *string1;
- const char *string2;
-{
- int i;
-
- size_t fdiag_len;
- static int *fdiag_buf;
- static size_t fdiag_max;
-
- /* set the info for each string. */
- string[0].data = string1;
- string[0].data_length = strlen (string1);
- string[1].data = string2;
- string[1].data_length = strlen (string2);
-
- /* short-circuit obvious comparisons */
- if (string[0].data_length == 0 && string[1].data_length == 0)
- return 1.0;
- if (string[0].data_length == 0 || string[1].data_length == 0)
- return 0.0;
-
- /* Set TOO_EXPENSIVE to be approximate square root of input size,
- bounded below by 256. */
- too_expensive = 1;
- for (i = string[0].data_length + string[1].data_length; i != 0; i >>= 2)
- too_expensive <<= 1;
- if (too_expensive < 256)
- too_expensive = 256;
-
- /* Because fstrcmp is typically called multiple times, while scanning
- symbol tables, etc, attempt to minimize the number of memory
- allocations performed. Thus, we use a static buffer for the
- diagonal vectors, and never free them. */
- fdiag_len = string[0].data_length + string[1].data_length + 3;
- if (fdiag_len > fdiag_max)
- {
- fdiag_max = fdiag_len;
- fdiag_buf = xrealloc (fdiag_buf, fdiag_max * (2 * sizeof (int)));
- }
- fdiag = fdiag_buf + string[1].data_length + 1;
- bdiag = fdiag + fdiag_len;
-
- /* Now do the main comparison algorithm */
- string[0].edit_count = 0;
- string[1].edit_count = 0;
- compareseq (0, string[0].data_length, 0, string[1].data_length, 0);
-
- /* The result is
- ((number of chars in common) / (average length of the strings)).
- This is admittedly biased towards finding that the strings are
- similar, however it does produce meaningful results. */
- return ((double) (string[0].data_length + string[1].data_length -
- string[1].edit_count - string[0].edit_count) / (string[0].data_length
- + string[1].data_length));
-}
diff --git a/tools/message.c b/tools/message.c
deleted file mode 100644
index acbcb8d2b..000000000
--- a/tools/message.c
+++ /dev/null
@@ -1,1409 +0,0 @@
-/* GNU gettext - internationalization aids
- Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
-
- This file was written by Peter Miller <millerp@canb.auug.org.au>
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifdef HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include <errno.h>
-#include <ctype.h>
-#include <stdio.h>
-
-#ifdef HAVE_LIMITS_H
-# include <limits.h>
-#endif
-
-#ifdef HAVE_LOCALE_H
-# include <locale.h>
-#endif
-
-#ifdef STDC_HEADERS
-# include <stdlib.h>
-#endif
-
-#include "fstrcmp.h"
-#include "message.h"
-#include "system.h"
-#include "error.h"
-#include "libgettext.h"
-
-#ifndef HAVE_STPCPY
-/* we're using our version, so provide a prototype for stpcpy and stpncpy */
-extern char * stpcpy( char *dest, const char * src);
-extern char * stpncpy( char *dest, const char * src, size_t n);
-#endif
-
-/* Our regular abbreviation. */
-#define _(str) gettext (str)
-
-
-/* These two variables control the output style of the message_print
- function. Interface functions for them are to be used. */
-static int indent;
-static int uniforum;
-static int escape;
-
-/* This variable controls the page width when printing messages.
- Defaults to PAGE_WIDTH if not set. Zero (0) given to message_page_-
- width_set will result in no wrapping being performed. */
-static size_t page_width = PAGE_WIDTH;
-
-
-/* Prototypes for local functions. */
-static void wrap PARAMS ((FILE *__fp, const char *__line_prefix,
- const char *__name, const char *__value,
- int do_wrap));
-static void print_blank_line PARAMS ((FILE *__fp));
-static void message_print PARAMS ((const message_ty *__mp, FILE *__fp,
- const char *__domain, int blank_line,
- int __debug));
-static void message_print_obsolete PARAMS ((const message_ty *__mp, FILE *__fp,
- const char *__domain,
- int blank_line));
-static int msgid_cmp PARAMS ((const void *__va, const void *__vb));
-static int filepos_cmp PARAMS ((const void *__va, const void *__vb));
-static const char *make_c_format_description_string PARAMS ((enum is_c_format,
- int debug));
-static const char *make_c_width_description_string PARAMS ((enum is_c_format));
-static int significant_c_format_p PARAMS ((enum is_c_format __is_c_format));
-
-
-
-message_ty *
-message_alloc (msgid)
- char *msgid;
-{
- message_ty *mp;
-
- mp = xmalloc (sizeof (message_ty));
- mp->msgid = msgid;
- mp->comment = NULL;
- mp->comment_dot = NULL;
- mp->filepos_count = 0;
- mp->filepos = NULL;
- mp->variant_count = 0;
- mp->variant = NULL;
- mp->used = 0;
- mp->obsolete = 0;
- mp->is_fuzzy = 0;
- mp->is_c_format = undecided;
- mp->do_wrap = undecided;
- return mp;
-}
-
-
-void
-message_free (mp)
- message_ty *mp;
-{
- size_t j;
-
- if (mp->comment != NULL)
- string_list_free (mp->comment);
- if (mp->comment_dot != NULL)
- string_list_free (mp->comment_dot);
- free ((char *) mp->msgid);
- for (j = 0; j < mp->variant_count; ++j)
- free ((char *) mp->variant[j].msgstr);
- if (mp->variant != NULL)
- free (mp->variant);
- for (j = 0; j < mp->filepos_count; ++j)
- free ((char *) mp->filepos[j].file_name);
- if (mp->filepos != NULL)
- free (mp->filepos);
- free (mp);
-}
-
-
-message_variant_ty *
-message_variant_search (mp, domain)
- message_ty *mp;
- const char *domain;
-{
- size_t j;
- message_variant_ty *mvp;
-
- for (j = 0; j < mp->variant_count; ++j)
- {
- mvp = &mp->variant[j];
- if (0 == strcmp (domain, mvp->domain))
- return mvp;
- }
- return 0;
-}
-
-
-void
-message_variant_append (mp, domain, msgstr, pp)
- message_ty *mp;
- const char *domain;
- const char *msgstr;
- const lex_pos_ty *pp;
-{
- size_t nbytes;
- message_variant_ty *mvp;
-
- nbytes = (mp->variant_count + 1) * sizeof (mp->variant[0]);
- mp->variant = xrealloc (mp->variant, nbytes);
- mvp = &mp->variant[mp->variant_count++];
- mvp->domain = domain;
- mvp->msgstr = msgstr;
- mvp->pos = *pp;
-}
-
-
-void
-message_comment_append (mp, s)
- message_ty *mp;
- const char *s;
-{
- if (mp->comment == NULL)
- mp->comment = string_list_alloc ();
- string_list_append (mp->comment, s);
-}
-
-
-void
-message_comment_dot_append (mp, s)
- message_ty *mp;
- const char *s;
-{
- if (mp->comment_dot == NULL)
- mp->comment_dot = string_list_alloc ();
- string_list_append (mp->comment_dot, s);
-}
-
-
-message_ty *
-message_copy (mp)
- message_ty *mp;
-{
- message_ty *result;
- size_t j;
-
- result = message_alloc (xstrdup (mp->msgid));
-
- for (j = 0; j < mp->variant_count; ++j)
- {
- message_variant_ty *mvp = &mp->variant[j];
- message_variant_append (result, mvp->domain, mvp->msgstr, &mvp->pos);
- }
- if (mp->comment)
- {
- for (j = 0; j < mp->comment->nitems; ++j)
- message_comment_append (result, mp->comment->item[j]);
- }
- if (mp->comment_dot)
- {
- for (j = 0; j < mp->comment_dot->nitems; ++j)
- message_comment_dot_append (result, mp->comment_dot->item[j]);
- }
- result->is_fuzzy = mp->is_fuzzy;
- result->is_c_format = mp->is_c_format;
- result->do_wrap = mp->do_wrap;
- for (j = 0; j < mp->filepos_count; ++j)
- {
- lex_pos_ty *pp = &mp->filepos[j];
- message_comment_filepos (result, pp->file_name, pp->line_number);
- }
- return result;
-}
-
-
-message_ty *
-message_merge (def, ref)
- message_ty *def;
- message_ty *ref;
-{
- message_ty *result;
- const char *pot_date_ptr = NULL;
- size_t pot_date_len = 0;
- size_t j;
-
- /* Take the msgid from the reference. When fuzzy matches are made,
- the definition will not be unique, but the reference will be -
- usually because it has a typo. */
- result = message_alloc (xstrdup (ref->msgid));
-
- /* If msgid is the header entry (i.e., "") we find the
- POT-Creation-Date line in the reference. */
- if (ref->msgid[0] == '\0')
- {
- pot_date_ptr = strstr (ref->variant[0].msgstr, "POT-Creation-Date:");
- if (pot_date_ptr != NULL)
- {
- const char *endp;
-
- pot_date_ptr += sizeof ("POT-Creation-Date:") - 1;
-
- endp = strchr (pot_date_ptr, '\n');
- if (endp == NULL)
- {
- char *extended;
- endp = strchr (pot_date_ptr, '\0');
- pot_date_len = (endp - pot_date_ptr) + 1;
- extended = (char *) alloca (pot_date_len + 1);
- stpcpy (stpcpy (extended, pot_date_ptr), "\n");
- pot_date_ptr = extended;
- }
- else
- pot_date_len = (endp - pot_date_ptr) + 1;
-
- if (pot_date_len == 0)
- pot_date_ptr = NULL;
- }
- }
-
- /* Take the variant list from the definition. The msgstr of the
- refences will be empty, as they were generated by xgettext. If
- we currently process the header entry we have to merge the msgstr
- by using the POT-Creation-Date field from the .pot file. */
- for (j = 0; j < def->variant_count; ++j)
- {
- message_variant_ty *mvp = &def->variant[j];
-
- if (ref->msgid[0] == '\0')
- {
- /* Oh, oh. The header entry and we have something to fill in. */
- static const struct
- {
- const char *name;
- size_t len;
- } known_fields[] =
- {
- { "Project-Id-Version:", sizeof ("Project-Id-Version:") - 1 },
-#define PROJECT_ID 0
- { "POT-Creation-Date:", sizeof ("POT-Creation-Date:") - 1 },
-#define POT_CREATION 1
- { "PO-Revision-Date:", sizeof ("PO-Revision-Date:") - 1 },
-#define PO_REVISION 2
- { "Last-Translator:", sizeof ("Last-Translator:") - 1 },
-#define LAST_TRANSLATOR 3
- { "Language-Team:", sizeof ("Language-Team:") - 1 },
-#define LANGUAGE_TEAM 4
- { "MIME-Version:", sizeof ("MIME-Version:") - 1 },
-#define MIME_VERSION 5
- { "Content-Type:", sizeof ("Content-Type:") - 1 },
-#define CONTENT_TYPE 6
- { "Content-Transfer-Encoding:",
- sizeof ("Content-Transfer-Encoding:") - 1 }
-#define CONTENT_TRANSFER 7
- };
-#define UNKNOWN 8
- struct
- {
- const char *string;
- size_t len;
- } header_fields[UNKNOWN + 1];
- const char *cp;
- char *newp;
- size_t len, cnt;
-
- /* Clear all fields. */
- memset (header_fields, '\0', sizeof (header_fields));
-
- cp = mvp->msgstr;
- while (*cp != '\0')
- {
- const char *endp = strchr (cp, '\n');
- int terminated = endp != NULL;
-
- if (!terminated)
- {
- char *copy;
- endp = strchr (cp, '\0');
-
- len = endp - cp + 1;
-
- copy = (char *) alloca (len + 1);
- stpcpy (stpcpy (copy, cp), "\n");
- cp = copy;
- }
- else
- {
- len = (endp - cp) + 1;
- ++endp;
- }
-
- /* Compare with any of the known fields. */
- for (cnt = 0;
- cnt < sizeof (known_fields) / sizeof (known_fields[0]);
- ++cnt)
- if (strncasecmp (cp, known_fields[cnt].name,
- known_fields[cnt].len) == 0)
- break;
-
- if (cnt < sizeof (known_fields) / sizeof (known_fields[0]))
- {
- header_fields[cnt].string = &cp[known_fields[cnt].len];
- header_fields[cnt].len = len - known_fields[cnt].len;
- }
- else
- {
- /* It's an unknown field. Append content to what is
- already known. */
- char *extended = (char *) alloca (header_fields[UNKNOWN].len
- + len + 1);
- memcpy (extended, header_fields[UNKNOWN].string,
- header_fields[UNKNOWN].len);
- memcpy (&extended[header_fields[UNKNOWN].len], cp, len);
- extended[header_fields[UNKNOWN].len + len] = '\0';
- header_fields[UNKNOWN].string = extended;
- header_fields[UNKNOWN].len += len;
- }
-
- cp = endp;
- }
-
- if (pot_date_ptr != NULL)
- {
- header_fields[POT_CREATION].string = pot_date_ptr;
- header_fields[POT_CREATION].len = pot_date_len;
- }
-
- /* Concatenate all the various fields. */
- len = 0;
- for (cnt = 0; cnt < UNKNOWN; ++cnt)
- if (header_fields[cnt].string != NULL)
- len += known_fields[cnt].len + header_fields[cnt].len;
- len += header_fields[UNKNOWN].len;
-
- cp = newp = (char *) xmalloc (len + 1);
- newp[len] = '\0';
-
-#define IF_FILLED(idx) \
- if (header_fields[idx].string) \
- newp = stpncpy (stpcpy (newp, known_fields[idx].name), \
- header_fields[idx].string, header_fields[idx].len)
-
- IF_FILLED (PROJECT_ID);
- IF_FILLED (POT_CREATION);
- IF_FILLED (PO_REVISION);
- IF_FILLED (LAST_TRANSLATOR);
- IF_FILLED (LANGUAGE_TEAM);
- IF_FILLED (MIME_VERSION);
- IF_FILLED (CONTENT_TYPE);
- IF_FILLED (CONTENT_TRANSFER);
- if (header_fields[UNKNOWN].string != NULL)
- stpcpy (newp, header_fields[UNKNOWN].string);
-
- message_variant_append (result, mvp->domain, cp, &mvp->pos);
- }
- else
- message_variant_append (result, mvp->domain, mvp->msgstr, &mvp->pos);
- }
-
- /* Take the comments from the definition file. There will be none at
- all in the reference file, as it was generated by xgettext. */
- if (def->comment)
- for (j = 0; j < def->comment->nitems; ++j)
- message_comment_append (result, def->comment->item[j]);
-
- /* Take the dot comments from the reference file, as they are
- generated by xgettext. Any in the definition file are old ones
- collected by previous runs of xgettext and msgmerge. */
- if (ref->comment_dot)
- for (j = 0; j < ref->comment_dot->nitems; ++j)
- message_comment_dot_append (result, ref->comment_dot->item[j]);
-
- /* The flags are mixed in a special way. Some informations come
- from the reference message (such as format/no-format), others
- come from the definition file (fuzzy or not). */
- result->is_fuzzy = def->is_fuzzy;
- result->is_c_format = ref->is_c_format;
- result->do_wrap = ref->do_wrap;
-
- /* Take the file position comments from the reference file, as they
- are generated by xgettext. Any in the definition file are old ones
- collected by previous runs of xgettext and msgmerge. */
- for (j = 0; j < ref->filepos_count; ++j)
- {
- lex_pos_ty *pp = &ref->filepos[j];
- message_comment_filepos (result, pp->file_name, pp->line_number);
- }
-
- /* All done, return the merged message to the caller. */
- return result;
-}
-
-
-void
-message_comment_filepos (mp, name, line)
- message_ty *mp;
- const char *name;
- size_t line;
-{
- size_t nbytes;
- lex_pos_ty *pp;
- int min, max;
- int j;
-
- /* See if we have this position already. They are kept in sorted
- order, so use a binary chop. */
- /* FIXME: use bsearch */
- min = 0;
- max = (int) mp->filepos_count - 1;
- while (min <= max)
- {
- int mid;
- int cmp;
-
- mid = (min + max) / 2;
- pp = &mp->filepos[mid];
- cmp = strcmp (pp->file_name, name);
- if (cmp == 0)
- cmp = (int) pp->line_number - line;
- if (cmp == 0)
- return;
- if (cmp < 0)
- min = mid + 1;
- else
- max = mid - 1;
- }
-
- /* Extend the list so that we can add an position to it. */
- nbytes = (mp->filepos_count + 1) * sizeof (mp->filepos[0]);
- mp->filepos = xrealloc (mp->filepos, nbytes);
-
- /* Shuffle the rest of the list up one, so that we can insert the
- position at ``min''. */
- /* FIXME: use memmove */
- for (j = mp->filepos_count; j > min; --j)
- mp->filepos[j] = mp->filepos[j - 1];
- mp->filepos_count++;
-
- /* Insert the postion into the empty slot. */
- pp = &mp->filepos[min];
- pp->file_name = xstrdup (name);
- pp->line_number = line;
-}
-
-
-void
-message_print_style_indent ()
-{
- indent = 1;
-}
-
-
-void
-message_print_style_uniforum ()
-{
- uniforum = 1;
-}
-
-
-void
-message_print_style_escape (flag)
- int flag;
-{
- escape = (flag != 0);
-}
-
-
-message_list_ty *
-message_list_alloc ()
-{
- message_list_ty *mlp;
-
- mlp = xmalloc (sizeof (message_list_ty));
- mlp->nitems = 0;
- mlp->nitems_max = 0;
- mlp->item = 0;
- return mlp;
-}
-
-
-void
-message_list_append (mlp, mp)
- message_list_ty *mlp;
- message_ty *mp;
-{
- if (mlp->nitems >= mlp->nitems_max)
- {
- size_t nbytes;
-
- mlp->nitems_max = mlp->nitems_max * 2 + 4;
- nbytes = mlp->nitems_max * sizeof (message_ty *);
- mlp->item = xrealloc (mlp->item, nbytes);
- }
- mlp->item[mlp->nitems++] = mp;
-}
-
-
-void
-message_list_delete_nth (mlp, n)
- message_list_ty *mlp;
- size_t n;
-{
- size_t j;
-
- if (n >= mlp->nitems)
- return;
- message_free (mlp->item[n]);
- for (j = n + 1; j < mlp->nitems; ++j)
- mlp->item[j - 1] = mlp->item[j];
- mlp->nitems--;
-}
-
-
-message_ty *
-message_list_search (mlp, msgid)
- message_list_ty *mlp;
- const char *msgid;
-{
- size_t j;
-
- for (j = 0; j < mlp->nitems; ++j)
- {
- message_ty *mp;
-
- mp = mlp->item[j];
- if (0 == strcmp (msgid, mp->msgid))
- return mp;
- }
- return 0;
-}
-
-
-message_ty *
-message_list_search_fuzzy (mlp, msgid)
- message_list_ty *mlp;
- const char *msgid;
-{
- size_t j;
- double best_weight;
- message_ty *best_mp;
-
- best_weight = 0.6;
- best_mp = NULL;
- for (j = 0; j < mlp->nitems; ++j)
- {
- size_t k;
- double weight;
- message_ty *mp;
-
- mp = mlp->item[j];
-
- for (k = 0; k < mp->variant_count; ++k)
- if (mp->variant[k].msgstr != NULL && mp->variant[k].msgstr[0] != '\0')
- break;
- if (k >= mp->variant_count)
- continue;
-
- weight = fstrcmp (msgid, mp->msgid);
- if (weight > best_weight)
- {
- best_weight = weight;
- best_mp = mp;
- }
- }
- return best_mp;
-}
-
-
-void
-message_list_free (mlp)
- message_list_ty *mlp;
-{
- size_t j;
-
- for (j = 0; j < mlp->nitems; ++j)
- message_free (mlp->item[j]);
- if (mlp->item)
- free (mlp->item);
- free (mlp);
-}
-
-
-/* Local functions. */
-
-static void
-wrap (fp, line_prefix, name, value, do_wrap)
- FILE *fp;
- const char *line_prefix;
- const char *name;
- const char *value;
- int do_wrap;
-{
- const char *s;
- int first_line;
- /* The \a and \v escapes were added by the ANSI C Standard. Prior
- to the Standard, most compilers did not have them. Because we
- need the same program on all platforms we don't provide support
- for them here. */
- static const char escapes[] = "\b\f\n\r\t";
- static const char escape_names[] = "bfnrt";
-
- /* The empty string is a special case. */
- if (*value == '\0')
- {
- if (line_prefix != NULL)
- fputs (line_prefix, fp);
- fputs (name, fp);
- putc (indent ? '\t' : ' ', fp);
- fputs ("\"\"\n", fp);
- return;
- }
-
- s = value;
- first_line = 1;
- while (*s)
- {
- const char *ep;
- int ocol;
-
- /* The line starts with different things depending on whether it
- is the first line, and if we are using the indented style. */
- if (first_line)
- {
- ocol = strlen (name) + (line_prefix ? strlen (line_prefix) : 0);
- if (indent && ocol < 8)
- ocol = 8;
- else
- ++ocol;
- }
- else
- ocol = (indent ? 8 : 0);
-
- /* Allow room for the opening quote character. */
- ++ocol;
-
- /* Work out how many characters from the string will fit on a
- line. Natural breaks occur at embedded newline characters. */
- for (ep = s; *ep; ++ep)
- {
- const char *esc;
- int cw;
- int c;
-
- c = (unsigned char) *ep;
- /* FIXME This is the wrong locale. While message_list_print
- set the "C" locale for LC_CTYPE, the need is to use the
- correct locale for the file's contents. */
- esc = strchr (escapes, c);
- if (esc == NULL && (!escape || isprint (c)))
- cw = 1 + (c == '\\' || c == '"');
- else
- cw = esc != NULL ? 2 : 4;
- /* Allow 1 character for the closing quote. */
- if (ocol + cw >= (do_wrap == no ? INT_MAX : page_width))
- break;
- ocol += cw;
- if (c == '\n')
- {
- ++ep;
- break;
- }
- }
-
- /* The above loop detects if a line is too long. If it is too
- long, see if there is a better place to break the line. */
- if (*ep)
- {
- const char *bp;
-
- for (bp = ep; bp > s; --bp)
- if (bp[-1] == ' ' || bp[-1] == '\n')
- {
- ep = bp;
- break;
- }
- }
-
- /* If this is the first line, and we are not using the indented
- style, and the line would wrap, then use an empty first line
- and restart. */
- if (first_line && !indent && *ep != '\0')
- {
- fprintf (fp, "%s%s \"\"\n", line_prefix ? line_prefix : "", name);
- s = value;
- first_line = 0;
- continue;
- }
-
- /* Print the beginning of the line. This will depend on whether
- this is the first line, and if the indented style is being
- used. */
- if (first_line)
- {
- first_line = 0;
- if (line_prefix != NULL)
- fputs (line_prefix, fp);
- fputs (name, fp);
- putc (indent ? '\t' : ' ', fp);
- }
- else
- {
- if (line_prefix != NULL)
- fputs (line_prefix, fp);
- if (indent)
- putc ('\t', fp);
- }
-
- /* Print the body of the line. C escapes are used for
- unprintable characters. */
- putc ('"', fp);
- while (s < ep)
- {
- const char *esc;
- int c;
-
- c = (unsigned char) *s++;
- /* FIXME This is the wrong locale. While message_list_print
- set the "C" locale for LC_CTYPE, the need is to use the
- correct locale for the file's contents. */
- esc = strchr (escapes, c);
- if (esc == NULL && (!escape || isprint (c)))
- {
- if (c == '\\' || c == '"')
- putc ('\\', fp);
- putc (c, fp);
- }
- else if (esc != NULL)
- {
- c = escape_names[esc - escapes];
-
- putc ('\\', fp);
- putc (c, fp);
-
- /* We warn about any use of escape sequences beside
- '\n' and '\t'. */
- if (c != 'n' && c != 't')
- error (0, 0, _("\
-internationalized messages should not contain the `\\%c' escape sequence"),
- c);
- }
- else
- fprintf (fp, "\\%3.3o", c);
- }
- fputs ("\"\n", fp);
- }
-}
-
-
-static void
-print_blank_line (fp)
- FILE *fp;
-{
- if (uniforum)
- fputs ("#\n", fp);
- else
- putc ('\n', fp);
-}
-
-
-static void
-message_print (mp, fp, domain, blank_line, debug)
- const message_ty *mp;
- FILE *fp;
- const char *domain;
- int blank_line;
- int debug;
-{
- message_variant_ty *mvp;
- int first;
- size_t j;
-
- /* Find the relevant message variant. If there isn't one, remember
- this using a NULL pointer. */
- mvp = NULL;
- first = 0;
-
- for (j = 0; j < mp->variant_count; ++j)
- {
- if (strcmp (domain, mp->variant[j].domain) == 0)
- {
- mvp = &mp->variant[j];
- first = (j == 0);
- break;
- }
- }
-
- /* Separate messages with a blank line. Uniforum doesn't like blank
- lines, so use an empty comment (unless there already is one). */
- if (blank_line && (!uniforum
- || mp->comment == NULL
- || mp->comment->nitems == 0
- || mp->comment->item[0][0] != '\0'))
- print_blank_line (fp);
-
- /* The first variant of a message will have the comments attached to
- it. We can't attach them to all variants in case we are read in
- again, multiplying the number of comment lines. Usually there is
- only one variant. */
- if (first)
- {
- if (mp->comment != NULL)
- for (j = 0; j < mp->comment->nitems; ++j)
- {
- const unsigned char *s = mp->comment->item[j];
- do
- {
- const unsigned char *e;
- putc ('#', fp);
- /* FIXME This is the wrong locale. While
- message_list_print set the "C" locale for LC_CTYPE,
- the need to use the correct locale for the file's
- contents. */
- if (*s != '\0' && !isspace (*s))
- putc (' ', fp);
- e = strchr (s, '\n');
- if (e == NULL)
- {
- fputs (s, fp);
- s = NULL;
- }
- else
- {
- fwrite (s, 1, e - s, fp);
- s = e + 1;
- }
- putc ('\n', fp);
- }
- while (s != NULL);
- }
-
- if (mp->comment_dot != NULL)
- for (j = 0; j < mp->comment_dot->nitems; ++j)
- {
- const unsigned char *s = mp->comment_dot->item[j];
- putc ('#', fp);
- putc ('.', fp);
- /* FIXME This is the wrong locale. While
- message_list_print set the "C" locale for LC_CTYPE, the
- need to use the correct locale for the file's contents. */
- if (*s && !isspace (*s))
- putc (' ', fp);
- fputs (s, fp);
- putc ('\n', fp);
- }
- }
-
- /* Print the file position comments for every domain. This will
- help a human who is trying to navigate the sources. There is no
- problem of getting repeat positions, because duplicates are
- checked for. */
- if (mp->filepos_count != 0)
- {
- if (uniforum)
- for (j = 0; j < mp->filepos_count; ++j)
- {
- lex_pos_ty *pp = &mp->filepos[j];
- char *cp = pp->file_name;
- while (cp[0] == '.' && cp[1] == '/')
- cp += 2;
- /* There are two Sun formats to choose from: SunOS and
- Solaris. Use the Solaris form here. */
- fprintf (fp, "# File: %s, line: %ld\n",
- cp, (long) pp->line_number);
- }
- else
- {
- size_t column;
-
- fputs ("#:", fp);
- column = 2;
- for (j = 0; j < mp->filepos_count; ++j)
- {
- lex_pos_ty *pp;
- char buffer[20];
- char *cp;
- size_t len;
-
- pp = &mp->filepos[j];
- cp = pp->file_name;
- while (cp[0] == '.' && cp[1] == '/')
- cp += 2;
- sprintf (buffer, "%ld", (long) pp->line_number);
- len = strlen (cp) + strlen (buffer) + 2;
- if (column > 2 && column + len >= page_width)
- {
- fputs ("\n#:", fp);
- column = 2;
- }
- fprintf (fp, " %s:%s", cp, buffer);
- column += len;
- }
- putc ('\n', fp);
- }
- }
-
- /* Print flag information in special comment. */
- if (first && ((mp->is_fuzzy && mvp != NULL && mvp->msgstr[0] != '\0')
- || significant_c_format_p (mp->is_c_format)
- || mp->do_wrap == no))
- {
- int first_flag = 1;
-
- putc ('#', fp);
- putc (',', fp);
-
- /* We don't print the fuzzy flag if the msgstr is empty. This
- might be introduced by the user but we want to normalize the
- output. */
- if (mp->is_fuzzy && mvp != NULL && mvp->msgstr[0] != '\0')
- {
- fputs (" fuzzy", fp);
- first_flag = 0;
- }
-
- if (significant_c_format_p (mp->is_c_format))
- {
- if (!first_flag)
- putc (',', fp);
-
- fputs (make_c_format_description_string (mp->is_c_format, debug),
- fp);
- first_flag = 0;
- }
-
- if (mp->do_wrap == no)
- {
- if (!first_flag)
- putc (',', fp);
-
- fputs (make_c_width_description_string (mp->do_wrap), fp);
- first_flag = 0;
- }
-
- putc ('\n', fp);
- }
-
- /* Print each of the message components. Wrap them nicely so they
- are as readable as possible. If there is no recorded msgstr for
- this domain, emit an empty string. */
- wrap (fp, NULL, "msgid", mp->msgid, mp->do_wrap);
- wrap (fp, NULL, "msgstr", mvp ? mvp->msgstr : "", mp->do_wrap);
-}
-
-
-static void
-message_print_obsolete (mp, fp, domain, blank_line)
- const message_ty *mp;
- FILE *fp;
- const char *domain;
- int blank_line;
-{
- message_variant_ty *mvp;
- size_t j;
-
- /* Find the relevant message variant. If there isn't one, remember
- this using a NULL pointer. */
- mvp = NULL;
-
- for (j = 0; j < mp->variant_count; ++j)
- {
- if (strcmp (domain, mp->variant[j].domain) == 0)
- {
- mvp = &mp->variant[j];
- break;
- }
- }
-
- /* If no msgstr is found or it is the empty string we print nothing. */
- if (mvp == NULL || mvp->msgstr[0] == '\0')
- return;
-
- /* Separate messages with a blank line. Uniforum doesn't like blank
- lines, so use an empty comment (unless there already is one). */
- if (blank_line)
- print_blank_line (fp);
-
- /* Print translator comment if available. */
- if (mp->comment)
- for (j = 0; j < mp->comment->nitems; ++j)
- {
- const unsigned char *s = mp->comment->item[j];
- do
- {
- const unsigned char *e;
- putc ('#', fp);
- /* FIXME This is the wrong locale. While
- message_list_print set the "C" locale for LC_CTYPE, the
- need to use the correct locale for the file's contents. */
- if (*s != '\0' && !isspace (*s))
- putc (' ', fp);
- e = strchr (s, '\n');
- if (e == NULL)
- {
- fputs (s, fp);
- s = NULL;
- }
- else
- {
- fwrite (s, 1, e - s, fp);
- s = e + 1;
- }
- putc ('\n', fp);
- }
- while (s != NULL);
- }
-
- /* Print flag information in special comment. */
- if (mp->is_fuzzy)
- {
- int first = 1;
-
- putc ('#', fp);
- putc (',', fp);
-
- if (mp->is_fuzzy)
- {
- fputs (" fuzzy", fp);
- first = 0;
- }
-
- putc ('\n', fp);
- }
-
- /* Print each of the message components. Wrap them nicely so they
- are as readable as possible. */
- wrap (fp, "#~ ", "msgid", mp->msgid, mp->do_wrap);
- wrap (fp, "#~ ", "msgstr", mvp->msgstr, mp->do_wrap);
-}
-
-
-void
-message_list_print (mlp, filename, force, debug)
- message_list_ty *mlp;
- const char *filename;
- int force;
- int debug;
-{
- FILE *fp;
- size_t j, k;
- string_list_ty *dl;
- int blank_line;
-#ifdef HAVE_SETLOCALE
- char *old_locale;
-#endif
-
- /* We will not write anything if we have no message or only the
- header entry. */
- if (force == 0
- && (mlp->nitems == 0
- || (mlp->nitems == 1 && *mlp->item[0]->msgid == '\0')))
- return;
-
- /* Build the list of domains. */
- dl = string_list_alloc ();
- for (j = 0; j < mlp->nitems; ++j)
- {
- message_ty *mp = mlp->item[j];
- for (k = 0; k < mp->variant_count; ++k)
- string_list_append_unique (dl, mp->variant[k].domain);
- }
-
- /* Open the output file. */
- if (filename != NULL && strcmp (filename, "-") != 0
- && strcmp (filename, "/dev/stdout") != 0)
- {
- fp = fopen (filename, "w");
- if (fp == NULL)
- error (EXIT_FAILURE, errno, _("cannot create output file \"%s\""),
- filename);
- }
- else
- {
- fp = stdout;
- /* xgettext:no-c-format */
- filename = _("standard output");
- }
-
-#ifdef HAVE_SETLOCALE
- /* FIXME This is the wrong locale. The program is currently set for
- the user's native language locale, for the error messages. This
- code sets it to the "C" locale, but that isn't right either. The
- need is to use the correct locale for the file's contents. */
- old_locale = setlocale (LC_CTYPE, "C");
- if (old_locale)
- old_locale = xstrdup (old_locale);
-#endif
-
- /* Write out the messages for each domain. */
- blank_line = 0;
- for (k = 0; k < dl->nitems; ++k)
- {
- /* If there is only one domain, and that domain is the default,
- don't bother emitting the domain name, because it is the
- default. */
- if (dl->nitems != 1 || strcmp (dl->item[0], MESSAGE_DOMAIN_DEFAULT) != 0)
- {
- if (blank_line)
- print_blank_line (fp);
- fprintf (fp, "domain \"%s\"\n", dl->item[k]);
- blank_line = 1;
- }
-
- /* Write out each of the messages for this domain. */
- for (j = 0; j < mlp->nitems; ++j)
- if (mlp->item[j]->obsolete == 0)
- {
- message_print (mlp->item[j], fp, dl->item[k], blank_line, debug);
- blank_line = 1;
- }
-
- /* Write out each of the obsolete messages for this domain. */
- for (j = 0; j < mlp->nitems; ++j)
- if (mlp->item[j]->obsolete != 0)
- {
- message_print_obsolete (mlp->item[j], fp, dl->item[k], blank_line);
- blank_line = 1;
- }
- }
- string_list_free (dl);
-
- /* Restore the old locale. Do this before emitting error messages,
- so that the correct locale is used for the error. (Ideally,
- error should ensure this before calling gettext for the format
- string.) */
-#ifdef HAVE_SETLOCALE
- if (old_locale)
- {
- setlocale (LC_CTYPE, old_locale);
- free (old_locale);
- }
-#endif
-
- /* Make sure nothing went wrong. */
- if (fflush (fp))
- error (EXIT_FAILURE, errno, _("error while writing \"%s\" file"),
- filename);
- fclose (fp);
-}
-
-
-static int
-msgid_cmp (va, vb)
- const void *va;
- const void *vb;
-{
- const message_ty *a = *(const message_ty **) va;
- const message_ty *b = *(const message_ty **) vb;
-#ifdef HAVE_STRCOLL
- return strcoll (a->msgid, b->msgid);
-#else
- return strcmp (a->msgid, b->msgid);
-#endif
-}
-
-
-void
-message_list_sort_by_msgid (mlp)
- message_list_ty *mlp;
-{
- /* FIXME This is the wrong locale. The program is currently set for
- the user's native language locale, for the error messages. This
- code sets it to the "C" locale, but that isn't right either. The
- need is to use the correct locale for the file's contents. */
-#ifdef HAVE_SETLOCALE
- char *tmp = setlocale (LC_COLLATE, "C");
- if (tmp)
- tmp = xstrdup (tmp);
-#endif
- qsort (mlp->item, mlp->nitems, sizeof (mlp->item[0]), msgid_cmp);
-#ifdef HAVE_SETLOCALE
- if (tmp)
- {
- setlocale (LC_COLLATE, tmp);
- free (tmp);
- }
-#endif
-}
-
-
-static int
-filepos_cmp (va, vb)
- const void *va;
- const void *vb;
-{
- const message_ty *a = *(const message_ty **) va;
- const message_ty *b = *(const message_ty **) vb;
- int cmp;
-
- /* No filepos is smaller than any other filepos. */
- if (a->filepos_count == 0)
- {
- if (b->filepos_count != 0)
- return -1;
- }
- if (b->filepos_count == 0)
- return 1;
-
- /* Compare on the file names... */
- cmp = strcmp (a->filepos[0].file_name, b->filepos[0].file_name);
- if (cmp != 0)
- return cmp;
-
- /* If they are equal, compare on the line numbers... */
- cmp = a->filepos[0].line_number - b->filepos[0].line_number;
- if (cmp != 0)
- return cmp;
-
- /* If they are equal, compare on the msgid strings. */
-#ifdef HAVE_STRCOLL
- return strcoll (a->msgid, b->msgid);
-#else
- return strcmp (a->msgid, b->msgid);
-#endif
-}
-
-
-void
-message_list_sort_by_filepos (mlp)
- message_list_ty *mlp;
-{
- /* FIXME This is the wrong locale. The program is currently set for
- the user's native language locale, for the error messages. This
- code sets it to the "C" locale, but that isn't right either. The
- need is to use the correct locale for the file's contents. */
-#ifdef HAVE_SETLOCALE
- char *tmp = setlocale (LC_COLLATE, "C");
- if (tmp)
- tmp = xstrdup (tmp);
-#endif
- qsort (mlp->item, mlp->nitems, sizeof (mlp->item[0]), filepos_cmp);
-#ifdef HAVE_SETLOCALE
- if (tmp)
- {
- setlocale (LC_COLLATE, tmp);
- free (tmp);
- }
-#endif
-}
-
-
-enum is_c_format
-parse_c_format_description_string (s)
- const char *s;
-{
- if (strstr (s, "no-c-format") != NULL)
- return no;
- else if (strstr (s, "impossible-c-format") != NULL)
- return impossible;
- else if (strstr (s, "possible-c-format") != NULL)
- return possible;
- else if (strstr (s, "c-format") != NULL)
- return yes;
- return undecided;
-}
-
-
-enum is_c_format
-parse_c_width_description_string (s)
- const char *s;
-{
- if (strstr (s, "no-wrap") != NULL)
- return no;
- else if (strstr (s, "wrap") != NULL)
- return yes;
- return undecided;
-}
-
-
-static const char *
-make_c_format_description_string (is_c_format, debug)
- enum is_c_format is_c_format;
- int debug;
-{
- const char *result = NULL;
-
- switch (is_c_format)
- {
- case possible:
- if (debug)
- {
- result = " possible-c-format";
- break;
- }
- /* FALLTHROUGH */
- case yes:
- result = " c-format";
- break;
- case impossible:
- result = " impossible-c-format";
- break;
- case no:
- result = " no-c-format";
- break;
- case undecided:
- result = " undecided";
- break;
- default:
- abort ();
- }
-
- return result;
-}
-
-
-static const char *
-make_c_width_description_string (do_wrap)
- enum is_c_format do_wrap;
-{
- const char *result = NULL;
-
- switch (do_wrap)
- {
- case yes:
- result = " wrap";
- break;
- case no:
- result = " no-wrap";
- break;
- default:
- abort ();
- }
-
- return result;
-}
-
-
-int
-possible_c_format_p (is_c_format)
- enum is_c_format is_c_format;
-{
- return is_c_format == possible || is_c_format == yes;
-}
-
-
-static int
-significant_c_format_p (is_c_format)
- enum is_c_format is_c_format;
-{
- return is_c_format != undecided && is_c_format != impossible;
-}
-
-
-void
-message_page_width_set (n)
- size_t n;
-{
- if (n == 0)
- {
- page_width = INT_MAX;
- return;
- }
-
- if (n < 20)
- n = 20;
-
- page_width = n;
-}
diff --git a/tools/rpmgettext.c b/tools/rpmgettext.c
deleted file mode 100644
index b64eac7fd..000000000
--- a/tools/rpmgettext.c
+++ /dev/null
@@ -1,1102 +0,0 @@
-/* rpmheader: spit out the header portion of a package */
-
-#define _GNU_SOURCE 1
-
-#include "system.h"
-
-#include "../build/rpmbuild.h"
-#include "../build/buildio.h"
-
-#include "rpmlead.h"
-#include "signature.h"
-#include "header.h"
-
-#if !defined(HAVE_BASENAME)
-extern char *basename (const char *__filename);
-#endif
-
-#define MYDEBUG 2
-
-#ifdef MYDEBUG
-#include <stdarg.h>
-static void dpf(char *format, ...)
-{
- va_list args;
- va_start(args, format);
- vfprintf(stderr, format, args);
- fflush(stderr);
-}
-
-#define DPRINTF(_lvl, _fmt) if ((_lvl) <= debug) dpf _fmt
-#else
-#define DPRINTF(_lvl, _fmt)
-#endif
-
-int debug = MYDEBUG;
-int verbose = 0;
-char *inputdir = NULL;
-char *outputdir = NULL;
-int msgid_too = 0;
-int gottalang = 0;
-int nlangs = 0;
-char *onlylang[128];
-int metamsgid = 0;
-int nogroups = 1;
-char *mastercatalogue = NULL;
-
-int gentran = 0;
-
-static const char *
-getTagString(int tval)
-{
- const struct headerTagTableEntry *t;
- static char buf[128];
-
- for (t = rpmTagTable; t->name != NULL; t++) {
- if (t->val == tval)
- return t->name;
- }
- sprintf(buf, "<RPMTAG_%d>", tval);
- return buf;
-}
-
-static int
-getTagVal(const char *tname)
-{
- const struct headerTagTableEntry *t;
- int tval;
-
- for (t = rpmTagTable; t->name != NULL; t++) {
- if (!strncmp(tname, t->name, strlen(t->name)))
- return t->val;
- }
- sscanf(tname, "%d", &tval);
- return tval;
-}
-
-static const struct headerTypeTableEntry {
- char *name;
- int val;
-} rpmTypeTable[] = {
- {"RPM_NULL_TYPE", 0},
- {"RPM_CHAR_TYPE", 1},
- {"RPM_INT8_TYPE", 2},
- {"RPM_INT16_TYPE", 3},
- {"RPM_INT32_TYPE", 4},
- {"RPM_INT64_TYPE", 5},
- {"RPM_STRING_TYPE", 6},
- {"RPM_BIN_TYPE", 7},
- {"RPM_STRING_ARRAY_TYPE", 8},
- {"RPM_I18NSTRING_TYPE", 9},
- {NULL, 0}
-};
-
-static char *
-getTypeString(int tval)
-{
- const struct headerTypeTableEntry *t;
- static char buf[128];
-
- for (t = rpmTypeTable; t->name != NULL; t++) {
- if (t->val == tval)
- return t->name;
- }
- sprintf(buf, "<RPM_%d_TYPE>", tval);
- return buf;
-}
-
-/* ================================================================== */
-
-static const char *
-genSrpmFileName(Header h)
-{
- char *name, *version, *release, *sourcerpm;
- char sfn[BUFSIZ];
-
- headerGetEntry(h, RPMTAG_NAME, NULL, (void **)&name, NULL);
- headerGetEntry(h, RPMTAG_VERSION, NULL, (void **)&version, NULL);
- headerGetEntry(h, RPMTAG_RELEASE, NULL, (void **)&release, NULL);
- sprintf(sfn, "%s-%s-%s.src.rpm", name, version, release);
-
- headerGetEntry(h, RPMTAG_SOURCERPM, NULL, (void **)&sourcerpm, NULL);
-
-#if 0
- if (strcmp(sourcerpm, sfn))
- return xstrdup(sourcerpm);
-
- return NULL;
-#else
- return xstrdup(sourcerpm);
-#endif
-
-}
-
-static const char *
-hasLang(const char *onlylang, char **langs, char **s)
-{
- const char *e = *s;
- int i = 0;
-
- while(langs[i] && strcmp(langs[i], onlylang)) {
- i++;
- e += strlen(e) + 1;
- }
-#if 0
- if (langs[i] && *e)
- return e;
- return NULL;
-#else
- return onlylang;
-#endif
-}
-
-/* ================================================================== */
-/* XXX stripped down gettext environment */
-
-#if !defined(PARAMS)
-#define PARAMS(_x) _x
-#endif
-
-/* Length from which starting on warnings about too long strings are given.
- Several systems have limits for strings itself, more have problems with
- strings in their tools (important here: gencat). 1024 bytes is a
- conservative limit. Because many translation let the message size grow
- (German translations are always bigger) choose a length < 1024. */
-#if !defined(WARN_ID_LEN)
-#define WARN_ID_LEN 900
-#endif
-
-/* This is the page width for the message_print function. It should
- not be set to more than 79 characters (Emacs users will appreciate
- it). It is used to wrap the msgid and msgstr strings, and also to
- wrap the file position (#:) comments. */
-#if !defined(PAGE_WIDTH)
-#define PAGE_WIDTH 79
-#endif
-
-#include "fstrcmp.c"
-
-#include "str-list.c"
-
-#define _LIBGETTEXT_H 1 /* XXX WTFO? _LIBINTL_H is undef? */
-#undef _ /* XXX WTFO? */
-
-#include "message.c"
-
-/* ================================================================== */
-
-/* XXX cribbed from gettext/src/message.c */
-static const char escapes[] = "\b\f\n\r\t";
-static const char escape_names[] = "bfnrt";
-
-static void
-expandRpmPO(char *t, const char *s)
-{
- const char *esc;
- int c;
-
- *t++ = '"';
- while((c = *s++) != '\0') {
- esc = strchr(escapes, c);
- if (esc == NULL && (!escape || isprint(c))) {
- if (c == '\\' || c == '"')
- *t++ = '\\';
- *t++ = c;
- } else if (esc != NULL) {
- *t++ = '\\';
- *t++ = escape_names[esc - escapes];
- if (c == '\n') {
- strcpy(t, "\"\n\"");
- t += strlen(t);
- }
- } else {
- *t++ = '\\';
- sprintf(t, "%3.3o", (c & 0377));
- t += strlen(t);
- }
- }
- *t++ = '"';
- *t = '\0';
-}
-
-static void
-contractRpmPO(char *t, const char *s)
-{
- int instring = 0;
- const char *esc;
- int c;
-
- while((c = *s++) != '\0') {
- if (!(c == '"' || !(instring & 1)))
- continue;
- switch(c) {
- case '\\':
- if (strchr("0123467", *s)) {
- char *se;
- *t++ = strtol(s, &se, 8);
- s = se;
- } else if ((esc = strchr(escape_names, *s)) != NULL) {
- *t++ = escapes[esc - escape_names];
- s++;
- } else {
- *t++ = *s++;
- }
- break;
- case '"':
- instring++;
- break;
- default:
- *t++ = c;
- break;
- }
- }
- *t = '\0';
-}
-
-static int poTags[] = {
- RPMTAG_DESCRIPTION,
- RPMTAG_GROUP,
- RPMTAG_SUMMARY,
-#ifdef NOTYET
- RPMTAG_DISTRIBUTION,
- RPMTAG_VENDOR,
- RPMTAG_LICENSE,
- RPMTAG_PACKAGER,
-#endif
- 0
-};
-
-static int
-gettextfile(FD_t fd, const char *file, FILE *fp, int *poTags)
-{
- struct rpmlead lead;
- Header h;
- int *tp;
- char **langs;
- const char *sourcerpm;
- char buf[BUFSIZ];
-
- DPRINTF(99, ("gettextfile(%d,\"%s\",%p,%p)\n", fd, file, fp, poTags));
-
- fprintf(fp, "\n# ========================================================");
-
- readLead(fd, &lead);
- rpmReadSignature(fd, NULL, lead.signature_type);
- h = headerRead(fd, (lead.major >= 3) ?
- HEADER_MAGIC_YES : HEADER_MAGIC_NO);
-
- if ((langs = headerGetLangs(h)) == NULL)
- return 1;
-
- sourcerpm = genSrpmFileName(h);
-
- for (tp = poTags; *tp != 0; tp++) {
- const char *onlymsgstr;
- char **s, *e;
- int i, type, count, nmsgstrs;
-
- if (!headerGetRawEntry(h, *tp, &type, (void **)&s, &count))
- continue;
-
- /* XXX skip untranslated RPMTAG_GROUP for now ... */
- if (nogroups) {
- switch (*tp) {
- case RPMTAG_GROUP:
- if (count <= 1)
- continue;
- break;
- default:
- break;
- }
- }
-
- /* XXX generate catalog for single language */
- onlymsgstr = NULL;
- if (nlangs > 0 && onlylang[0] != NULL &&
- (onlymsgstr = hasLang(onlylang[0], langs, s)) == NULL)
- continue;
-
-
- /* Print xref comment */
- fprintf(fp, "\n#: %s:%d\n", basename(file), *tp);
- if (sourcerpm)
- fprintf(fp, "#: %s:%d\n", sourcerpm, *tp);
-
- /* Print msgid */
- e = *s;
- expandRpmPO(buf, e);
-
- if (metamsgid) {
- char name[1024], *np;
- char lctag[128], *lctp;
- strcpy(name, basename(file));
- if ((np = strrchr(name, '-')) != NULL) {
- *np = '\0';
- if ((np = strrchr(name, '-')) != NULL) {
- *np = '\0';
- }
- }
- strcpy(lctag, getTagString(*tp));
- for (lctp = lctag; *lctp; lctp++)
- *lctp = tolower(*lctp);
- if ((lctp = strchr(lctag, '_')) != NULL)
- lctp++;
- else
- lctp = lctag;
-
- *lctp = toupper(*lctp);
- fprintf(fp, "msgid \"%s(%s)\"\n", name, lctp);
- fprintf(fp, "msgstr");
- fprintf(fp, " %s\n", buf);
- continue;
- }
-
- fprintf(fp, "msgid %s\n", buf);
-
- nmsgstrs = 0;
- for (i = 1, e += strlen(e)+1; i < count && e != NULL; i++, e += strlen(e)+1) {
- if (!(onlymsgstr == NULL || onlymsgstr == e))
- continue;
- nmsgstrs++;
- expandRpmPO(buf, e);
- fprintf(fp, "msgstr");
- if (onlymsgstr == NULL)
- fprintf(fp, "(%s)", langs[i]);
- fprintf(fp, " %s\n", buf);
- }
-
- if (nmsgstrs < 1)
- fprintf(fp, "msgstr \"\"\n");
-
- if (type == RPM_STRING_ARRAY_TYPE || type == RPM_I18NSTRING_TYPE)
- FREE(s)
- }
-
- FREE(sourcerpm);
- FREE(langs);
-
- return 0;
-}
-
-/* ================================================================== */
-
-static int
-slurp(const char *file, char **ibufp, size_t *nbp)
-{
- struct stat sb;
- char *ibuf;
- size_t nb;
- int fd;
-
- DPRINTF(99, ("slurp(\"%s\",%p,%p)\n", file, ibufp, nbp));
-
- if (ibufp)
- *ibufp = NULL;
- if (nbp)
- *nbp = 0;
-
- if (stat(file, &sb) < 0) {
- fprintf(stderr, _("stat(%s): %s\n"), file, strerror(errno));
- return 1;
- }
-
- nb = sb.st_size + 1;
- if ((ibuf = (char *)malloc(nb)) == NULL) {
- fprintf(stderr, _("malloc(%d)\n"), nb);
- return 2;
- }
-
- if ((fd = open(file, O_RDONLY)) < 0) {
- fprintf(stderr, _("open(%s): %s\n"), file, strerror(errno));
- return 3;
- }
- if ((nb = read(fd, ibuf, nb)) != sb.st_size) {
- fprintf(stderr, _("read(%s): %s\n"), file, strerror(errno));
- return 4;
- }
- close(fd);
- ibuf[nb] = '\0';
-
- if (ibufp)
- *ibufp = ibuf;
- if (nbp)
- *nbp = nb;
-
- return 0;
-}
-
-static char *
-matchchar(const char *p, char pl, char pr)
-{
- int lvl = 0;
- char c;
-
- while ((c = *p++) != '\0') {
- if (c == '\\') { /* escaped chars */
- p++;
- continue;
- }
- if (pl == pr && c == pl && *p == pr) { /* doubled quotes */
- p++;
- continue;
- }
- if (c == pr) {
- if (--lvl <= 0) return (char *)--p;
- } else if (c == pl)
- lvl++;
- }
- return NULL;
-}
-
-typedef struct {
- char *name;
- int len;
- int haslang;
-} KW_t;
-
-KW_t keywords[] = {
- { "domain", 6, 0 },
- { "msgid", 5, 0 },
- { "msgstr", 6, 1 },
- { NULL, 0, 0 }
-};
-
-#define SKIPWHITE {while ((c = *se) && strchr("\b\f\n\r\t ", c)) se++;}
-#define NEXTLINE {state = 0; while ((c = *se) && c != '\n') se++; if (c == '\n') se++;}
-
-static int
-parsepofile(const char *file, message_list_ty **mlpp, string_list_ty **flpp)
-{
- char tbuf[BUFSIZ];
- string_list_ty *flp;
- message_list_ty *mlp;
- message_ty *mp;
- KW_t *kw = NULL;
- char *lang = NULL;
- char *buf, *s, *se, *t;
- size_t nb;
- int c, rc, tval;
- int state = 1;
-
- DPRINTF(99, ("parsepofile(\"%s\",%p,%p)\n", file, mlpp, flpp));
-
-DPRINTF(100, ("================ %s\n", file));
-
- if ((rc = slurp(file, &buf, &nb)) != 0)
- return rc;
-
- flp = string_list_alloc();
- mlp = message_list_alloc();
- mp = NULL;
- s = buf;
- while ((c = *s) != '\0') {
- se = s;
- switch (state) {
- case 0: /* free wheeling */
- case 1: /* comment "domain" "msgid" "msgstr" */
- state = 1;
- SKIPWHITE;
- s = se;
- if (!(isalpha(c) || c == '#')) {
- fprintf(stderr, _("non-alpha char at \"%.20s\"\n"), se);
- NEXTLINE;
- break;
- }
-
- if (mp == NULL) {
- mp = message_alloc(NULL);
- }
-
- if (c == '#') {
- while ((c = *se) && c != '\n') se++;
- /* === s:se has comment */
-DPRINTF(100, ("%.*s\n", (int)(se-s), s));
-
- if (c)
- *se = '\0'; /* zap \n */
- switch (s[1]) {
- case '~': /* archival translations */
- break;
- case ':': /* file cross reference */
- { char *f, *fe, *g, *ge;
- for (f = s+2; f < se; f = ge) {
- while (*f && strchr(" \t", *f)) f++;
- fe = f;
- while (*fe && !strchr(": \t", *fe)) fe++;
- if (*fe != ':') {
- fprintf(stderr, _("malformed #: xref at \"%.60s\"\n"), s);
- break;
- }
- *fe++ = '\0';
- g = ge = fe;
- while (*ge && !strchr(" \t", *ge)) ge++;
- *ge++ = '\0';
- tval = getTagVal(g);
- string_list_append_unique(flp, f);
- message_comment_filepos(mp, f, tval);
- }
- } break;
- case '.': /* automatic comments */
- if (*s == '#') {
- s++;
- if (*s == '.') s++;
- }
- while (*s && strchr(" \t", *s)) s++;
- message_comment_dot_append(mp, xstrdup(s));
- break;
- case ',': /* flag... */
- mp->is_fuzzy = ((strstr(s,"fuzzy")!=NULL) ?1:0);
- mp->is_c_format = parse_c_format_description_string(s);
- mp->do_wrap = parse_c_width_description_string(s);
- break;
- default:
- /* XXX might want to fix and/or warn here */
- case ' ': /* comment...*/
- if (*s == '#') s++;
- while (*s && strchr(" \t", *s)) s++;
- message_comment_append(mp, xstrdup(s));
- break;
- }
- if (c)
- se++; /* skip \n */
- break;
- }
-
- for (kw = keywords; kw->name != NULL; kw++) {
- if (!strncmp(s, kw->name, kw->len)) {
- se += kw->len;
- break;
- }
- }
- if (kw == NULL || kw->name == NULL) {
- fprintf(stderr, _("unknown keyword at \"%.20s\"\n"), se);
- NEXTLINE;
- break;
- }
- /* === s:se has keyword */
-DPRINTF(100, ("%.*s", (int)(se-s), s));
-
- SKIPWHITE;
- s = se;
- if (kw->haslang && *se == '(') {
- while ((c = *se) && c != ')') se++;
- if (c != ')') {
- fprintf(stderr, _("unclosed paren at \"%.20s\"\n"), s);
- se = s;
- NEXTLINE;
- break;
- }
- s++; /* skip ( */
- /* === s:se has lang */
-DPRINTF(100, ("(%.*s)", (int)(se-s), s));
- *se = '\0';
- lang = s;
- if (c)
- se++; /* skip ) */
- } else {
- lang = "C";
- }
-DPRINTF(100, ("\n"));
-
- SKIPWHITE;
- if (*se != '"') {
- fprintf(stderr, _("missing string at \"%.20s\"\n"), s);
- se = s;
- NEXTLINE;
- break;
- }
- state = 2;
- break;
- case 2: /* "...." */
- SKIPWHITE;
- if (c != '"') {
- fprintf(stderr, _("not a string at \"%.20s\"\n"), s);
- NEXTLINE;
- break;
- }
-
- t = tbuf;
- *t = '\0';
- do {
- s = se;
- s++; /* skip open quote */
- if ((se = matchchar(s, c, c)) == NULL) {
- fprintf(stderr, _("missing close %c at \"%.20s\"\n"), c, s);
- se = s;
- NEXTLINE;
- break;
- }
-
- /* === s:se has next part of string */
- *se = '\0';
- contractRpmPO(t, s);
- t += strlen(t);
- *t = '\0';
-
- se++; /* skip close quote */
- SKIPWHITE;
- } while (c == '"');
-
- if (!strcmp(kw->name, "msgid")) {
- FREE(mp->msgid);
- mp->msgid = xstrdup(tbuf);
- } else if (!strcmp(kw->name, "msgstr")) {
- static lex_pos_ty pos = { __FILE__, __LINE__ };
- message_variant_append(mp, xstrdup(lang), xstrdup(tbuf), &pos);
- if (!gottalang) {
- int l;
- for (l = 0; l < nlangs; l++) {
- if (!strcmp(onlylang[l], lang))
- break;
- }
- if (l == nlangs)
- onlylang[nlangs++] = xstrdup(lang);
- }
- lang = NULL;
- }
- /* XXX Peek to see if next item is comment */
- SKIPWHITE;
- if (*se == '#' || *se == '\0') {
- message_list_append(mlp, mp);
- mp = NULL;
- }
- state = 1;
- break;
- }
- s = se;
- }
-
- if (mlpp)
- *mlpp = mlp;
- else
- message_list_free(mlp);
-
- if (flpp)
- *flpp = flp;
- else
- string_list_free(flp);
-
- FREE(buf);
- return rc;
-}
-
-/* ================================================================== */
-
-/* For all poTags in h, if msgid is in msg list, then substitute msgstr's */
-static int
-headerInject(Header h, int *poTags, message_list_ty *mlp)
-{
- message_ty *mp;
- message_variant_ty *mvp;
- int *tp;
-
- DPRINTF(99, ("headerInject(%p,%p,%p)\n", h, poTags, mlp));
-
- for (tp = poTags; *tp != 0; tp++) {
- char **s, *e;
- int n, type, count;
-
- if (!headerGetRawEntry(h, *tp, &type, (void **)&s, &count))
- continue;
-
- /* Only I18N strings can be injected */
- if (type != RPM_I18NSTRING_TYPE) {
- if (type == RPM_STRING_ARRAY_TYPE)
- FREE(s);
- continue;
- }
-
- e = *s;
-
- /* Search for the msgid ... */
- if ((mp = message_list_search(mlp, e)) == NULL)
- goto bottom;
-DPRINTF(1, ("%s\n\tmsgid", getTagString(*tp)));
- if (msgid_too) {
-DPRINTF(1, (" (drilled)"));
- headerAddI18NString(h, *tp, e, "C");
- }
-DPRINTF(1, ("\n"));
-
- /* Skip fuzzy ... */
- if (mp->is_fuzzy) {
-DPRINTF(1, ("\t(fuzzy)\n"));
- goto bottom;
- }
-
- for (n = 0; n < nlangs; n++) {
- /* Search for the msgstr ... */
- if ((mvp = message_variant_search(mp, onlylang[n])) == NULL) {
-DPRINTF(1, ("\t(%s not found)\n", onlylang[n]));
- continue;
- }
-
- /* Skip untranslated ... */
- if (strlen(mvp->msgstr) <= 0) {
-DPRINTF(1, ("\t(%s untranslated)\n", onlylang[n]));
- continue;
- }
-
-DPRINTF(1, ("\tmsgstr(%s)\n", onlylang[n]));
- headerAddI18NString(h, *tp, (char *)mvp->msgstr, onlylang[n]);
- }
-
-bottom:
- if (type == RPM_STRING_ARRAY_TYPE || type == RPM_I18NSTRING_TYPE)
- FREE(s)
- }
-
- return 0;
-}
-
-static int
-rewriteBinaryRPM(char *fni, char *fno, message_list_ty *mlp)
-{
- struct rpmlead lead; /* XXX FIXME: exorcize lead/arch/os */
- Header sigs;
- Spec spec;
- CSA_t csabuf, *csa = &csabuf;
- int rc;
-
- DPRINTF(99, ("rewriteBinaryRPM(\"%s\",\"%s\",%p)\n", fni, fno, mlp));
-
- csa->cpioArchiveSize = 0;
- csa->cpioFdIn = fdNew("init (rewriteBinary)");
- csa->cpioList = NULL;
- csa->cpioCount = 0;
- csa->lead = &lead; /* XXX FIXME: exorcize lead/arch/os */
-
- /* Read rpm and (partially) recreate spec/pkg control structures */
- if ((rc = readRPM(fni, &spec, &lead, &sigs, csa)) != 0)
- return rc;
-
- /* Inject new strings into header tags */
- if ((rc = headerInject(spec->packages->header, poTags, mlp)) != 0)
- goto exit;
-
- /* Rewrite the rpm */
- if (lead.type == RPMLEAD_SOURCE) {
- rc = writeRPM(spec->packages->header, fno, (int)lead.type,
- csa, spec->passPhrase, &(spec->cookie));
- } else {
- rc = writeRPM(spec->packages->header, fno, (int)lead.type,
- csa, spec->passPhrase, NULL);
- }
-
-exit:
- Fclose(csa->cpioFdIn);
- return rc;
-
-}
-
-/* ================================================================== */
-
-#define STDINFN "<stdin>"
-
-#define RPMGETTEXT "rpmgettext"
-static int
-rpmgettext(FD_t fd, const char *file, FILE *ofp)
-{
- char fni[BUFSIZ], fno[BUFSIZ];
- const char *fn;
-
- DPRINTF(99, ("rpmgettext(%d,\"%s\",%p)\n", fd, file, ofp));
-
- if (file == NULL)
- file = STDINFN;
-
- if (!strcmp(file, STDINFN))
- return gettextfile(fd, file, ofp, poTags);
-
- fni[0] = '\0';
- if (inputdir && *file != '/') {
- strcpy(fni, inputdir);
- strcat(fni, "/");
- }
- strcat(fni, file);
-
- if (gentran) {
- char *op;
- fno[0] = '\0';
- fn = file;
- if (outputdir) {
- strcpy(fno, outputdir);
- strcat(fno, "/");
- fn = basename(file);
- }
- strcat(fno, fn);
-
- if ((op = strrchr(fno, '-')) != NULL &&
- (op = strchr(op, '.')) != NULL)
- strcpy(op, ".tran");
-
- if ((ofp = fopen(fno, "w")) == NULL) {
- fprintf(stderr, _("Can't open %s\n"), fno);
- return 4;
- }
- }
-
- fd = Fopen(fni, "r.fdio");
- if (Ferror(fd)) {
- /* XXX Fstrerror */
- fprintf(stderr, _("rpmgettext: open %s: %s\n"), fni, strerror(errno));
- return 2;
- }
-
- if (gettextfile(fd, fni, ofp, poTags)) {
- return 3;
- }
-
- if (ofp != stdout)
- fclose(ofp);
- Fclose(fd);
-
- return 0;
-}
-
-static char *archs[] = {
- "noarch",
- "i386",
- "alpha",
- "sparc",
- NULL
-};
-
-#define RPMPUTTEXT "rpmputtext"
-static int
-rpmputtext(FD_t fd, const char *file, FILE *ofp, string_list_ty *drillp)
-{
- string_list_ty *flp;
- message_list_ty *mlp;
- char fn[BUFSIZ];
- char fnib[BUFSIZ], *fni;
- char fnob[BUFSIZ], *fno;
- int j, rc;
- int deletefni = 0;
- int deletefno = 0;
-
- DPRINTF(99, ("rpmputtext(%x,\"%s\",%p)\n", fd, file, ofp));
-
- /* Read the po file, parsing out xref files */
- if ((rc = parsepofile(file, &mlp, &flp)) != 0)
- return rc;
- if (drillp) {
- string_list_free(flp);
- flp = drillp;
- }
-
-#if 0
-{ int l;
- fprintf(stderr, "Drilling %d langs:", nlangs);
- for (l = 0; l < nlangs; l++)
- fprintf(stderr, " %s", onlylang[l]);
-}
-#endif
-
- /* For all xref files ... */
- for (j = 0; j < flp->nitems && rc == 0; j++) {
- char *f, *fe;
-
- f = fn;
- strcpy(f, flp->item[j]);
-
- /* Find the text after the name-version-release */
- if ((fe = strrchr(f, '-')) == NULL ||
- (fe = strchr(fe, '.')) == NULL) {
- fprintf(stderr, _("rpmputtext: skipping malformed xref \"%s\"\n"), fn);
- continue;
- }
- fe++; /* skip . */
-
- if ( !strcmp(fe, "src.rpm") ) {
- } else {
- char **a, *arch;
-
- for (a = archs; (arch = *a) != NULL && rc == 0; a++) {
-
- /* Append ".arch.rpm" */
- *fe = '\0';
- strcat(fe, arch);
- strcat(fe, ".rpm");
-
- /* Build input "inputdir/arch/fn" */
- fni = fnib;
- fni[0] = '\0';
- if (inputdir) {
- strcat(fni, inputdir);
- strcat(fni, "/");
-#ifdef ADD_BUILD_SUBDIRS
- strcat(fni, arch);
- strcat(fni, "/");
-#endif /* ADD_BUILD_SUBDIRS */
- }
- strcat(fni, f);
-
- /* Build output "outputdir/arch/fn" */
- fno = fnob;
- fno[0] = '\0';
- if (outputdir) {
- strcat(fno, outputdir);
- strcat(fno, "/");
-#ifdef ADD_BUILD_SUBDIRS
- strcat(fno, arch);
- strcat(fno, "/");
-#endif /* ADD_BUILD_SUBDIRS */
- }
- strcat(fno, f);
-
- /* XXX skip over noarch/exclusivearch missing inputs */
- if (access(fni, R_OK))
- continue;
-
- /* XXX previously rewritten output rpm takes precedence
- * XXX over input rpm.
- */
- deletefni = 0;
- if (!access(fno, R_OK)) {
- deletefni = 1;
- strcpy(fni, fno);
- strcat(fni, "-DELETE");
- if (rename(fno, fni) < 0) {
- fprintf(stderr, _("rpmputtext: rename(%s,%s) failed: %s\n"),
- fno, fni, strerror(errno));
- continue;
- }
- }
-
- rc = rewriteBinaryRPM(fni, fno, mlp);
-
- if (deletefni && unlink(fni) < 0) {
- fprintf(stderr, _("rpmputtext: unlink(%s) failed: %s\n"),
- fni, strerror(errno));
- }
- if (deletefno && unlink(fno) < 0) {
- fprintf(stderr, _("rpmputtext: unlink(%s) failed: %s\n"),
- fno, strerror(errno));
- }
- }
- }
- }
-
- if (mlp)
- message_list_free(mlp);
-
- return rc;
-}
-
-#define RPMCHKTEXT "rpmchktext"
-static int
-rpmchktext(FD_t fd, const char *file, FILE *ofp)
-{
- DPRINTF(99, ("rpmchktext(%d,\"%s\",%p)\n", fd, file, ofp));
- return parsepofile(file, NULL, NULL);
-}
-
-int
-main(int argc, char **argv)
-{
- int rc = 0;
- int c;
- extern char *optarg;
- extern int optind;
- int errflg = 0;
- FD_t fdi;
-
- setprogname(argv[0]); /* Retrofit glibc __progname */
-
- while((c = getopt(argc, argv, "defgEMl:C:I:O:Tv")) != EOF)
- switch (c) {
- case 'C':
- mastercatalogue = xstrdup(optarg);
- break;
- case 'd':
- debug++;
- break;
- case 'e':
- message_print_style_escape(0);
- break;
- case 'E':
- message_print_style_escape(1);
- break;
- case 'f':
- msgid_too++;
- break;
- case 'l':
- gottalang = 1;
- onlylang[nlangs++] = xstrdup(optarg);
- break;
- case 'I':
- inputdir = optarg;
- break;
- case 'O':
- outputdir = optarg;
- break;
- case 'T':
- gentran++;
- break;
- case 'M':
- metamsgid++;
- break;
- case 'g':
- nogroups = 0;
- break;
- case 'v':
- verbose++;
- break;
- case '?':
- default:
- errflg++;
- break;
- }
-
- if (errflg) {
- exit(1);
- }
-
- /* XXX I don't want to read rpmrc */
- addMacro(NULL, "_tmppath", NULL, "/tmp", RMIL_DEFAULT);
-
- fdi = fdDup(STDIN_FILENO);
-
- if (!strcmp(__progname, RPMGETTEXT)) {
- if (optind == argc) {
- rc = rpmgettext(fdi, STDINFN, stdout);
- } else {
- for ( ; optind < argc; optind++ ) {
- if ((rc = rpmgettext(fdi, argv[optind], stdout)) != 0)
- break;
- }
- }
- } else if (!strcmp(__progname, RPMPUTTEXT)) {
- if (mastercatalogue == NULL) {
- fprintf(stderr, _("%s: must specify master PO catalogue with -C\n"),
- __progname);
- exit(1);
- }
- if (optind == argc) {
- fprintf(stderr, _("%s: no binary rpms on cmd line\n"),
- __progname);
- exit(1);
- } else {
- string_list_ty *drillp = string_list_alloc();
- for ( ; optind < argc; optind++ ) {
- string_list_append_unique(drillp, argv[optind]);
- }
- rc = rpmputtext(fdi, mastercatalogue, stdout, drillp);
- string_list_free(drillp);
- }
- } else if (!strcmp(__progname, RPMCHKTEXT)) {
- if (optind == argc) {
- rc = rpmchktext(fdi, STDINFN, stdout);
- } else {
- for ( ; optind < argc; optind++ ) {
- if ((rc = rpmchktext(0, argv[optind], stdout)) != 0)
- break;
- }
- }
- } else {
- rc = 1;
- }
-
- return rc;
-}
diff --git a/tools/str-list.c b/tools/str-list.c
deleted file mode 100644
index 40007452c..000000000
--- a/tools/str-list.c
+++ /dev/null
@@ -1,146 +0,0 @@
-/* GNU gettext - internationalization aids
- Copyright (C) 1995, 1998 Free Software Foundation, Inc.
-
- This file was written by Peter Miller <millerp@canb.auug.org.au>
-
-This program is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2, or (at your option)
-any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
-
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
-
-#include <stdio.h>
-
-#include "system.h"
-#include "str-list.h"
-
-
-string_list_ty *
-string_list_alloc ()
-{
- string_list_ty *slp;
-
- slp = (string_list_ty *) xmalloc (sizeof (*slp));
- slp->item = NULL;
- slp->nitems = 0;
- slp->nitems_max = 0;
-
- return slp;
-}
-
-
-void
-string_list_append (slp, s)
- string_list_ty *slp;
- const char *s;
-{
- /* Grow the list. */
- if (slp->nitems >= slp->nitems_max)
- {
- size_t nbytes;
-
- slp->nitems_max = slp->nitems_max * 2 + 4;
- nbytes = slp->nitems_max * sizeof (slp->item[0]);
- slp->item = (const char **) xrealloc (slp->item, nbytes);
- }
-
- /* Add a copy of the string to the end of the list. */
- slp->item[slp->nitems++] = xstrdup (s);
-}
-
-
-void
-string_list_append_unique (slp, s)
- string_list_ty *slp;
- const char *s;
-{
- size_t j;
-
- /* Do not if the string is already in the list. */
- for (j = 0; j < slp->nitems; ++j)
- if (strcmp (slp->item[j], s) == 0)
- return;
-
- /* Grow the list. */
- if (slp->nitems >= slp->nitems_max)
- {
- slp->nitems_max = slp->nitems_max * 2 + 4;
- slp->item = (const char **) xrealloc (slp->item,
- slp->nitems_max
- * sizeof (slp->item[0]));
- }
-
- /* Add a copy of the string to the end of the list. */
- slp->item[slp->nitems++] = xstrdup (s);
-}
-
-
-void
-string_list_free (slp)
- string_list_ty *slp;
-{
- size_t j;
-
- for (j = 0; j < slp->nitems; ++j)
- free ((char *) slp->item[j]);
- if (slp->item != NULL)
- free (slp->item);
- free (slp);
-}
-
-
-char *
-string_list_join (slp)
- const string_list_ty *slp;
-{
- size_t len;
- size_t j;
- char *result;
- size_t pos;
-
- len = 1;
- for (j = 0; j < slp->nitems; ++j)
- {
- if (j)
- ++len;
- len += strlen (slp->item[j]);
- }
- result = xmalloc (len);
- pos = 0;
- for (j = 0; j < slp->nitems; ++j)
- {
- if (j)
- result[pos++] = ' ';
- len = strlen (slp->item[j]);
- memcpy (result + pos, slp->item[j], len);
- pos += len;
- }
- result[pos] = 0;
- return result;
-}
-
-
-int
-string_list_member (slp, s)
- const string_list_ty *slp;
- const char *s;
-{
- size_t j;
-
- for (j = 0; j < slp->nitems; ++j)
- if (strcmp (slp->item[j], s) == 0)
- return 1;
- return 0;
-}