The "In like Flynn" Release.
* Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
given a zero length, rather than returning NULL. This is POSIXly
correct, so handle zero-length package control files (like available).
-- Scott James Remnant <scott@netsplit.com> Fri, 10 Jun 2005 07:39:44 +0100
+2005-06-10 Scott James Remnant <scott@netsplit.com>
+
+ * configure.ac: Release 1.13.8.
+
+ * lib/parse.c (parsedb): Check whether the file size is greater
+ than zero bytes in size before trying to mmap or malloc it, if it
+ isn't don't process the file.
+
2005-06-09 Scott James Remnant <scott@netsplit.com>
+ * configure.ac: Bump version to 1.13.8~.
+
* configure.ac: Release 1.13.7.
* src/main.c (setfile): Make inability to open the log file a
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for dpkg 1.13.7.
+# Generated by GNU Autoconf 2.59 for dpkg 1.13.8.
#
# Report bugs to <debian-dpkg@lists.debian.org>.
#
# Identity of this package.
PACKAGE_NAME='dpkg'
PACKAGE_TARNAME='dpkg'
-PACKAGE_VERSION='1.13.7'
-PACKAGE_STRING='dpkg 1.13.7'
+PACKAGE_VERSION='1.13.8'
+PACKAGE_STRING='dpkg 1.13.8'
PACKAGE_BUGREPORT='debian-dpkg@lists.debian.org'
ac_unique_file="lib/dpkg.h"
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures dpkg 1.13.7 to adapt to many kinds of systems.
+\`configure' configures dpkg 1.13.8 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of dpkg 1.13.7:";;
+ short | recursive ) echo "Configuration of dpkg 1.13.8:";;
esac
cat <<\_ACEOF
test -n "$ac_init_help" && exit 0
if $ac_init_version; then
cat <<\_ACEOF
-dpkg configure 1.13.7
+dpkg configure 1.13.8
generated by GNU Autoconf 2.59
Copyright (C) 2003 Free Software Foundation, Inc.
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by dpkg $as_me 1.13.7, which was
+It was created by dpkg $as_me 1.13.8, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ $0 $@
# Define the identity of the package.
PACKAGE='dpkg'
- VERSION='1.13.7'
+ VERSION='1.13.8'
cat >>confdefs.h <<_ACEOF
} >&5
cat >&5 <<_CSEOF
-This file was extended by dpkg $as_me 1.13.7, which was
+This file was extended by dpkg $as_me 1.13.8, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
-dpkg config.status 1.13.7
+dpkg config.status 1.13.8
configured by $0, generated by GNU Autoconf 2.59,
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([dpkg], [1.13.7], [debian-dpkg@lists.debian.org])
+AC_INIT([dpkg], [1.13.8], [debian-dpkg@lists.debian.org])
AC_CONFIG_SRCDIR([lib/dpkg.h])
AC_CONFIG_MACRO_DIR([m4])
+dpkg (1.13.8) experimental; urgency=low
+
+ The "In like Flynn" Release.
+
+ * Linux 2.6.12 changed the behaviour of mmap to fail and set EINVAL when
+ given a zero length, rather than returning NULL. This is POSIXly
+ correct, so handle zero-length package control files (like available).
+
+ -- Scott James Remnant <scott@netsplit.com> Fri, 10 Jun 2005 07:39:44 +0100
+
dpkg (1.13.7) experimental; urgency=low
The "Maidenhead Creeping Water Plant" Release.
if (fstat(fd, &stat) == -1)
ohshite(_("can't stat package info file `%.255s'"),filename);
+ if (stat.st_size > 0) {
#ifdef HAVE_MMAP
- if ((dataptr= (char *)mmap(NULL, stat.st_size, PROT_READ, MAP_SHARED, fd, 0)) == MAP_FAILED)
- ohshite(_("can't mmap package info file `%.255s'"),filename);
+ if ((dataptr= (char *)mmap(NULL, stat.st_size, PROT_READ, MAP_SHARED, fd, 0)) == MAP_FAILED)
+ ohshite(_("can't mmap package info file `%.255s'"),filename);
#else
- if ((dataptr= malloc(stat.st_size)) == NULL)
- ohshite(_("failed to malloc for info file `%.255s'"),filename);
+ if ((dataptr= malloc(stat.st_size)) == NULL)
+ ohshite(_("failed to malloc for info file `%.255s'"),filename);
- fd_buf_copy(fd, dataptr, stat.st_size, _("copy info file `%.255s'"),filename);
+ fd_buf_copy(fd, dataptr, stat.st_size, _("copy info file `%.255s'"),filename);
#endif
- data= dataptr;
- endptr= dataptr + stat.st_size;
+ data= dataptr;
+ endptr= dataptr + stat.st_size;
+ } else {
+ data= dataptr= endptr= NULL;
+ }
lno= 1;
pdone= 0;
if (c == '\n') lno++;
}
pop_cleanup(0);
+ if (data != NULL) {
#ifdef HAVE_MMAP
- munmap(data, stat.st_size);
+ munmap(data, stat.st_size);
#else
- free(data);
+ free(data);
#endif
+ }
free(value);
if (close(fd)) ohshite(_("failed to close after read: `%.255s'"),filename);
if (donep && !pdone) ohshit(_("no package information in `%.255s'"),filename);
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2004-11-27 01:29+0100\n"
"Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
"Language-Team: Bosnian <lokal@linux.org.ba>\n"
msgid "can't stat package info file `%.255s'"
msgstr ""
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr ""
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr ""
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr ""
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr ""
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr ""
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr ""
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr ""
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr ""
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr ""
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr ""
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr ""
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr ""
msgstr ""
"Project-Id-Version: dpkg 1.10.25\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-09 19:53+0100\n"
"Last-Translator: Jordi Mallach <jordi@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "no es pot executar «stat» sobre el fitxer «%.255s»"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "no es pot executar «mmap» sobre el fitxer «%.255s»"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "no s'ha pogut executar «malloc» pel fitxer «%.255s»"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "còpia el fitxer d'info. «%.250s»"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF després del nom del camp «%.*s»"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nova línia dins del nom del camp «%.*s»"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF de MSDOS (^Z) dins del nom del camp «%.*s»"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "el nom del camp «%.*s» ha d'estar seguit per dos punts"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF abans del valor del camp «%.*s» (falta una nova línia al final)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"caràcter EOF de MSDOS dins del valor del camp «%.*s» (falta una línia nova?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF durant el valor del camp «%.*s» (falta una línia nova al final)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valor duplicat en el camp «%s»"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "el nom de camp definit pel usuari «%.*s» és massa curt"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valor duplicat pel camp definit pel usuari «%.*s»"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"s'han trobat diverses entrades d'informació de paquets, només s'en permet una"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "camp «Configured-Version» per a un paquet amb Status no apropiat"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "Paquet que no estant instal·lat té conffiles, ens n'oblidem"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "s'ha produït un error en tancar després de la lectura: «%.255s»"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "no hi ha informació de paquets en «%.255s»"
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-01 16:47+0100\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <provoz@debian.cz>\n"
msgid "can't stat package info file `%.255s'"
msgstr "nefunguje volání fstat na info soubor `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "nefunguje volání mmap na info soubor `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "selhalo volání malloc pro info soubor `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopírování info souboru `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "konec souboru za polo¾kou `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nový øádek v polo¾ce `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MS-DOS EOF (^Z) ve polo¾ce `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "jméno polo¾ky `%.*s' musí být následováno dvojteèkou"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF pøed hodnotou v polo¾ce `%.*s' (chybí závìreèný konec øádku)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "polo¾ka `%.*s' obsahuje MSDOS EOF znaky (chybìjící nový øádek?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF pøi ètení polo¾ky `%.*s' (chybìjící závìreèný konec øádku)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "zdvojená hodnota polo¾ky `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "jméno u¾ivatelské polo¾ky `%.*s' pøíli¹ krátké"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "zdvojená hodnota u¾ivatelské polo¾ky `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "nalezeno nìkolik info polo¾ek balíku, dovolena pouze jedna"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version pro balík s neodpovídajícím Stavem"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Balík, je ve stavu nenainstalovaný a má konfiguraèní soubory, vypou¹tím je"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "po ètení zapomìl zavøít: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "¾ádná informace o balíku v `%.255s'"
msgstr ""
"Project-Id-Version: dpkg_1.10.19_da\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-01 22:10+0100\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
msgid "can't stat package info file `%.255s'"
msgstr "kunne ikke finde pakkeinformationsfil '%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "kunne ikke køre 'mmap' på pakkeinformationsfil '%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "kunne ikke køre 'malloc' for informationsfil '%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopiér informationsfil '%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "slut-på-fil efter feltnavn '%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "linjeskift i feltnavn '%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS slut-på-fil (^Z) i feltnavn '%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "feltnavn '%.*s' skal efterfølges af et kolon"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"Slut-på-fil før værdien af felt '%.*s' (afsluttende linjeskift mangler)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"MSDOS-slut-på-fil-tegn i værdien for felt '%.*s' (manglende linjeskift?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "slut-på-fil i værdien for felt '%.*s' (afsluttende linjeskift mangler)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "værdi for '%s'-feltet optræder mere end én gang"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "for kort brugerbestemt feltnavn '%.*s'"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "værdi for brugerdefineret felt '%.*s' optræder mere end én gang"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "flere pakkeinformations-indgange fundet, kun én er tilladt"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "\"Konfigureret version\" for pakke med upassende status"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Pakke, der har status \"ikke-installeret\", har konfigurationsfiler. Glemmer "
"disse"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "kunne ikke lukke efter læsning: '%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "ingen pakkeinformation i '%.255s'"
msgstr ""
"Project-Id-Version: Debian dpkg 1.10.26\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-03 11:24 +0100\n"
"Last-Translator: Michael Piefel <piefel@debian.org>\n"
"Language-Team: German <de@debian-l10n-german@lists.debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "kann auf Paket-Infodatei »%.255s« nicht zugreifen"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "kann kein mmap auf Paket-Infodatei »%.255s« durchführen"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "konnte keinen Speicher für Infodatei »%.255s« zuteilen"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopiere Info-Datei »%.250s«"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF nach Feldname »%.*s«"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "Zeilenvorschub im Feldnamen »%.*s«"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MS-DOS-EOF (^Z) im Feldnamen »%.*s«"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "nach Feldname »%.*s« muss ein Doppelpunkt folgen"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"EOF vor einem Wert für das Feld »%.*s« (abschließender Zeilenvorschub fehlt)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"MS-DOS-EOF-Zeichen im Wert des Feldes »%.*s« (fehlender Zeilenvorschub?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"EOF im Wert des Feldes »%.*s« (fehlender abschließender Zeilenvorschub)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "doppelter Wert für Feld »%s«"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "benutzerdefinierter Feldname »%.*s« ist zu kurz"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "doppelter Wert für benutzerdefiniertes Feld »%.*s«"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "mehrere Paketinfo-Einträge gefunden, nur einer erlaubt"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version für Paket mit unpassendem Status"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "Paket mit dem Status nicht-installiert hat Conffiles, vergesse sie"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "konnte nach Lesen nicht schließen: »%.255s«"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "keine Paketinformationen in »%.255s«"
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\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"
msgid "can't stat package info file `%.255s'"
msgstr ""
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr ""
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr ""
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr ""
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr ""
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr ""
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr ""
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr ""
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr ""
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr ""
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr ""
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr ""
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr ""
msgstr ""
"Project-Id-Version: dpkg_1_13_po_el\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-02-20 14:49EEST\n"
"Last-Translator: Greek Translation Team <debian-l10n-greek@lists.debian."
"org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "αδύνατη η εύρεση κατάστασης του αρχείου πληροφοριών πακέτων `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
"αδύνατη η απεικόνιση στη μνήμη (mmap) του αρχείου πληροφοριών των πακέτων `"
"%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "αποτυχία εκχώρησης μνήμης για το αρχείο πληροφοριών `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "αντιγραφή αρχείου πληροφοριών `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "Το EOF μετά το όνομα πεδίου `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "νέα γραμμή στο όνομα πεδίου `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) στο όνομα πεδίου `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "το όνομα πεδίου `%.*s' πρέπει να ακολουθείται από άνω/κάτω τελεία"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF πριν από την τιμή του πεδίου `%.*s' (λείπει η τελική νέα γραμμή)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"χαρακτήρας MSDOS EOF στην τιμή του πεδίου `%.*s' (λείπει η νέα γραμμή;)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF στη τιμή του πεδίου `%.*s' (λείπει η τελική νέα γραμμή)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "διπλή τιμή για το πεδίο `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "το προσδιορισμένο από το χρήστη όνομα πεδίου `%.*s' είναι πολύ μικρό"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "διπλασιασμός του καθοριζόμενου από το χρήστη πεδίο `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "βρέθηκαν αρκετές εισαγωγές πληροφοριών πακέτου, μόνο μία επιτρέπεται"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Ρυθμισμένη-Έκδοση για πακέτο με ακατάλληλη Κατάσταση"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Πακέτο το οποίο στην κατάσταση όχι-εγκατεστημένο έχει ρυθμίσεις, ξέχασέ το"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "αποτυχία κλεισίματος μετά την ανάγνωση: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "καμία πληροφορία πακέτου στο `%.255s'"
msgstr ""
"Project-Id-Version: Debian dpkg 1.10.18\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2004-12-31 12:07+0100\n"
"Last-Translator: Javier Fernández-Sanguino <jfs@debian.org>\n"
"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "no se puede ejecutar `stat' sobre el fichero `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "no se puede ejecutar `mmap' sobre el fichero `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "fallo al ejecutar `malloc' para el fichero `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copia el fichero de información `%.250s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF después del nombre del campo `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nueva línea dentro del nombre del campo `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF de MSDOS (^Z) dentro del nombre del campo `%.*s'"
# algo como "Package:" o "Priority:", está claro por el contexto
# que se trata de : y no de .. por lo que no creo necesaria ninguna
# aclaración adicional. sv
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "el nombre del campo `%.*s' debe estar seguido por dos puntos"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF antes del valor del campo `%.*s' (falta nueva línea final)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"carácter EOF de MSDOS dentro del valor del campo `%.*s' (¿falta nueva línea?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF durante el valor del campo `%.*s' (falta nueva línea final)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valor duplicado para el campo `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "nombre de campo definido por el usuario `%.*s' demasiado corto"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valor duplicado para el campo definido por el usuario `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"se encontraron varias entradas de información de paquetes,\n"
"sólo se permite una"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Campo `Configured-Version' para un paquete con Status no apropiado"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Paquete que no estando instalado tiene conffiles, nos olvidamos de ellos"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "fallo al cerrar después de la lectura: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "no hay ninguna información de paquetes en `%.255s'"
msgstr ""
"Project-Id-Version: dpkg-eu\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-09 20:49+0100\n"
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
"Language-Team: Librezale.org <librezale@librezale.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "ezin da paketearen `%.255s' argibide fitxategia kokatu"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "ezin da `%.255s' fixtategian 'nmap' egin"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "huts `%.255s' fitxategian malloc abiaraztean"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "`%.255s' informazio fitxategia kopiatu"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "`%.*s' eremu izenaren atzean EOF"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "`%.*s' eremu izenean linea-berria"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "`%.*s' eremu izenean MSDOS EOF (^Z)"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "`%.*s' eremu izena kolumna batek jarraitu behar du"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"Fitxategi amaiaera `%.*s' balio edo eremua baino lehen (amaierako lerro "
"berria falta da)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"MSDOS Fitxategi Amaiera karaketerea `%.*s' balio edoo eremuan (lerro berria "
"faltan?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"Fitxategi amaiera `%.*s' balio edo eremuan (bukaerako lerro berria falta da)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "bikoiztutako balioa `%s' eremuarentzat"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "erbiltzaileak sortutako `%.*s' eremu izena laburregia da"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "bikoiztutako balioa erbiltzaileak sortutako `%.*s' eremuan"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"Pakete argibide erregistro anitz aurkitu dira, bat bakarrik onartzen da"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Okerreko egoeran paketearen konfiguratutako bertsioa"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Instalaturik ez dagoen paketeak configurazio fitxategia ditu, haiek ahazten"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "huts irakur ondoren ixterakoan: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "ez dago pakete argibiderik `%.255s'-en"
msgstr ""
"Project-Id-Version: Debian dpkg 1.6.13\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-03-30 08:43+0200\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
msgstr ""
"impossible de faire un « stat » sur le fichier d'info du paquet « %.255s »"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
"impossible de faire un « mmap » sur le fichier d'info du paquet « %.255s »"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "impossible de faire un « malloc » pour le fichier d'info « %.255s »"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copie le fichier d'info « %.255s »"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF après le nom de champ « %.*s »"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "saut de ligne dans le nom de champ « %.*s »"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF de MSDOS (^Z) dans le nom de champ « %.*s »"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "le nom de champ « %.*s » doit être suivi de deux points (:)"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"EOF avant la valeur du champ « %.*s » (il manque le saut de ligne final)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"caractère EOF de MS-DOS dans la valeur du champ « %.*s » (manque-t-il un "
"saut de ligne ?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"EOF dans la valeur du champ « %.*s » (il manque le saut de ligne final)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valeur en double pour le champ « %s »"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "nom de champ « %.*s » défini par l'utilisateur trop court"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valeur en double pour le champ « %.*s » défini par l'utilisateur"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"plusieurs entrées d'information de paquet trouvées, une seule est autorisée"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "« Configured-Version » du paquet dans un état inapproprié"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Paquet dans l'état non-installé possédant des « conffiles », fichiers ignorés"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "échec de la fermeture après lecture : « %.255s »"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "pas d'information de paquet dans « %.255s »"
msgstr ""
"Project-Id-Version: dpkg 1.9.0\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-02-05 13:10+0100\n"
"Last-Translator: Héctor Fernández López <trorrr@yahoo.es>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
msgid "can't stat package info file `%.255s'"
msgstr "erro ó facer `stat' do ficheiro de información de paquetes `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "erro ó facer `mmap' do ficheiro de información de paquetes `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "erro ó asignar memoria para o ficheiro `%.255s'"
# Aquí non sei que significa esto\r
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copy info file `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF despois do nome de campo `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nova liña no nome de campo `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF de MSDOS (^Z) no nome de campo `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "o nome de campo `%.*s' debe ir seguido por dous puntos"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF antes do valor do campo `%.*s' (falta a nova liña final)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "EOF de MSDOS no valor do campo `%.*s' (¿falta nova liña?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF no valor do campo `%.*s' (falta nova liña final)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valor duplicado para o campo `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "o nome do campo definido polo usuario `%.*s' é demasiado curto"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valor duplicado para o campo definido polo usuario `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"atopáronse varias entradas de información de paquete, só se permite unha"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr ""
"o campo `Configured-Version' para o paquete ten un `Status' non apropiado"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "Paquete que ten `conffiles' sen estar instalado, esquecémonos deles"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "erro ó pechar tras a lectura: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "non hai información de paquetes en `%.255s'"
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2004-10-07 03:01+0200\n"
"Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n"
"Language-Team: English <en@li.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr ""
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr ""
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr ""
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr ""
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr ""
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr ""
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr ""
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr ""
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr ""
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr ""
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr ""
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr ""
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr ""
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-03-07 17:41+0700\n"
"Last-Translator: Arief S Fitrianto <arief@gurame.fisika.ui.ac.id>\n"
"Language-Team: Debian Indonesia L10N Team <debian-l10n-id@gurame.fisika.ui."
msgid "can't stat package info file `%.255s'"
msgstr "tak ada status berkas info paket `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "tak bisa melakukan 'mmap' pada berkas info paket `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "gagal melakukan 'malloc' untuk berkas info `%s.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "menyalin berkas info `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "Ada EOF setelah nama ruas `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "ada baris-baru dalam nama ruas `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF MSDOS (^Z) dalam nama ruas `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "nama ruas `%.*s' harus diikuti oleh titik-dua"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "Ada EOF sebelum nilai ruas `%.*s' (baris-baru terakhir tiada)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "Karakter EOF MSDOS dalam nilai ruas `%.*s' (baris-baru tiada?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "Ada EOF sekitar nilai ruas `%.*s' (baris-baru terakhir tiada)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "nilai ganda untuk ruas `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "nama ruas definisi pengguna `%.*s' terlalu singkat"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "nilai ganda untuk ruas definisi pengguna `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "ditemukan beberapa baris info paket; hanya satu yang diizinkan"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version untuk paket dengan Status tak sesuai"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "Paket dengan status 'tak-terpasang' memiliki conffiles, abaikan saja"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "gagal menutup setelah membaca: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "tidak ada informasi paket dalam `%.255s'"
msgstr ""
"Project-Id-Version: dpkg 1.10.22\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-06 17:59+0100\n"
"Last-Translator: Stefano Canepa <sc@linux.it>\n"
"Language-Team: italian <debian-l10n-italian@debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "impossibile fare stat delle informazioni del pacchetto `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "impossibile fare mmap delle informazioni del pacchetto `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "impossibile fare malloc per il file delle informazioni `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copiare il file di informazioni `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF dopo il nome del campo `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "newline nel nome del campo `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF MSDOS (^Z) nel nome del campo `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "il nome del campo `%.*s' deve essere seguito da ':' (due punti)"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF prima del valore per il campo `%.*s' (manca il newline finale)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "EOF MSDOS nel valore del campo `%.*s' (manca il newline?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF nel valore del campo `%.*s' (manca il newline finale)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valore duplicato per il campo `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "il nome del campo definito dall'utente `%.*s' è troppo corto"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valore duplicato per il campo definito dall'utente `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "trovate più descrizioni del pacchetto, ne è consentita solo una"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Status inappropriato come valore di Configured-Version del pacchetto"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Il pacchetto, non installato, ha dei file di configurazione, che dimentico."
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "impossibile chiudere `%.255s' dopo la lettura"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "`%.255s' non contiene informazioni sui pacchetti"
msgstr ""
"Project-Id-Version: 1.10.23\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2004-12-31 16:22+0900\n"
"Last-Translator: Kenshi Muto <kmuto@debian.org>\n"
"Language-Team: Debian Japanease List <debian-japanese@lists.debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¾ðÊó¥Õ¥¡¥¤¥ë`%.255s'¤òstat¤Ç¤¤Þ¤»¤ó"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¾ðÊó¥Õ¥¡¥¤¥ë`%.255s'¤òmmap¤Ç¤¤Þ¤»¤ó"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "¾ðÊó¥Õ¥¡¥¤¥ë`%.255s'¤Î¤¿¤á¤Îmalloc¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "¾ðÊó¥Õ¥¡¥¤¥ë`%.250s'¤ò¥³¥Ô¡¼"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "¥Õ¥£¡¼¥ë¥É̾`%.*s'¤Î¸å¤ËEOF"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "¥Õ¥£¡¼¥ë¥É̾`%.*s'¤Ë²þ¹Ô"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "¥Õ¥£¡¼¥ë¥É̾`%.*s'¤Ë MSDOS ¤Î EOF (^Z)"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "¥Õ¥£¡¼¥ë¥É̾`%.*s'¤Î¸å¤Ï¥³¥í¥ó¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó¡£"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "¥Õ¥£¡¼¥ë¥É`%.*s'¤ÎÃͤÎÁ°¤Ç EOF (ºÇ¸å¤Î²þ¹Ô¤¬¤Ê¤¤)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "¥Õ¥£¡¼¥ë¥É`%.*s'¤ÎÃÍ¤Ë MSDOS EOF ʸ»ú (²þ¹Ô¤¬¤Ê¤¤?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "¥Õ¥£¡¼¥ë¥É`%.*s'¤ÎÃÍ¤Î´Ö¤Ë EOF (ºÇ¸å¤Î²þ¹Ô¤¬¤Ê¤¤)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "`%s'¥Õ¥£¡¼¥ë¥É¤ÎÃͤ¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹¡£"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "¥æ¡¼¥¶ÄêµÁ¥Õ¥£¡¼¥ë¥É̾`%.*s'¤¬Ã»¤«¤¹¤®¤Þ¤¹¡£"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "¥æ¡¼¥¶ÄêµÁ¥Õ¥£¡¼¥ë¥É`%.*s'¤ÎÃͤ¬½ÅÊ£¤·¤Æ¤¤¤Þ¤¹¡£"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "¥Ñ¥Ã¥±¡¼¥¸¾ðÊ󥨥ó¥È¥ê¤¬Ê£¿ô¸«ÉÕ¤«¤ê¤Þ¤·¤¿¡£µö¤µ¤ì¤ë¤Î¤Ï1¤Ä¤Î¤ß¤Ç¤¹¡£"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "ÉÔŬÀڤʥ¹¥Æ¡¼¥¿¥¹¤ò»ý¤Ä¥Ñ¥Ã¥±¡¼¥¸¤Î Configured-Version"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"¸½ºß¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤¥Ñ¥Ã¥±¡¼¥¸(¥¹¥Æ¡¼¥¿¥¹ not-installed)¤¬ conffiles "
"¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹¤Î¤Ç¡¢¤½¤ì¤é¤Î¾ðÊó¤ò̵»ë¤·¤Þ¤¹¡£"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "Æɤ߹þ¤ß¸å¤Î¥Õ¥¡¥¤¥ë¤Î¥¯¥í¡¼¥º¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "`%.255s'¤Ë¥Ñ¥Ã¥±¡¼¥¸¾ðÊ󤬤¢¤ê¤Þ¤»¤ó¡£"
msgstr ""
"Project-Id-Version: 1.10.22\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2004-11-21 03:52+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <cwryu@debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "꾸러미 정보 파일 `%.255s'의 파일 정보를 읽을 수 없습니다"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "꾸러미 정보 파일 `%.255s'에 mmap할 수 없습니다"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "정보 파일 `%.255s' 파일을 위해 malloc하는 데 실패했습니다"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "정보 파일 `%.255s' 복사"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "필드 이름 `%.*s' 뒤에 파일이 끝났습니다"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "필드 이름 `%.*s'에 줄바꿈 문자가 있습니다"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "필드 이름 `%.*s'에 MSDOS 방식 EOF(^Z)가 있습니다"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "필드 이름 `%.*s' 뒤에는 콜론이 와야 합니다"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "필드 값 `%.*s' 앞에 파일이 끝났습니다 (끝에 줄바꿈 빠짐)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "필드 값 `%.*s'에 MSDOS 방식 EOF 문자가 있습니다 (줄바꿈 빠짐?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "필드 값 `%.*s'에 EOF가 있습니다 (끝에 줄바꿈 빠짐)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "`%s' 필드의 값이 중복되었습니다"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "사용자 정의 필드 이름 `%.*s'은(는) 너무 짧습니다"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "사용자 정의 필드 `%.*s'의 값이 중복되었습니다"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "꾸러미 정보 엔트리를 여러 개 발견했습니다. 하나만 쓸 수 있습니다"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "적당하지 않은 Status를 가진 꾸러미에 대한 Configured-Version"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "설치되지 않은 상태의 꾸러미가 conffiles를 갖고 있습니다. 잊어버립니다"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "읽기 후에 닫는 데 실패했습니다: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "`%.255s'에 꾸러미 정보가 없습니다"
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-25 11:14+0100\n"
"Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n"
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.ui.no>\n"
msgid "can't stat package info file `%.255s'"
msgstr "finner ikke pakkeinfofila «%.255s»"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "klarte ikke kjøre «mmap» på pakkeinfofila «%.255s»"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "klarte ikke tildele minne for infofila «%.255s»"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopier informasjonsfila «%.255s»"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "slutt på fila etter feltnavn «%.*s»"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "linjeskift i feltnavn «%.*s»"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MS-DOS-slutt på fila (^Z) i feltnavn «%.*s»"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "feltnavnet «%.*s» skal følges av et kolon"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"slutt på fil før verdien til feltet «%.*s» (mangler linjeskift til slutt)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"MSDOS-tegn for slutt på fil i verdien for feltet «%.*s» (mangler linjeskift?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"slutt på fil i verdien for feltet «%.*s» (mangler avsluttende linjeskift)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "verdien for feltet «%s» finnes mer enn én gang"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "det brukerdefinerte feltnavnet «%.*s» er for kort"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "det brukerdefinerte feltet «%.*s» fins mer enn én gang"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "fant flere pakkeinformasjonsoppføringer, kan bare ha en"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Oppsatt versjon for pakke med status som ikke passer"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "En pakke som ikke er installert har oppsettsfiler.De blir ignorert"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "klarte ikke lukke etter lesing: «%.255s»"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "ingen pakkeinformasjon i «%.255s»"
msgstr ""
"Project-Id-Version: dpkg 1.9.4\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-06 23:41+0100\n"
"Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
"Language-Team: Dutch <debian-l10n-dutch@debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "kon informatiebestand niet opvragen uit `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "kon het informatiebestand niet mmappen in `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "kon geen geheugen reserveren voor informatiebestand `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopiëren van informatiebestand `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF na veldnaam `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nieuwe regel in veldnaam `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) in veldnaam `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "veldnaam `%.*s' moet gevolgd worden door een dubbele punt"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"EOF voor waarde voor veld `%.*s' (ontbrekende afsluitende nieuwe regel)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "MSDOS EOF teken in waarde van veld `%.*s' (ontbrekende nieuwe regel?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF in waarde van veld `%.*s' (ontbrekende afsluitende nieuwe regel)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "dubbele waarde voor `%s'-veld"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "zelf gedefinieerde veldnaam `%.*s' te kort"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "dubbele waarde voor zelf gedefinieerd veld `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "meerdere pakket informatie-ingangen gevonden, slechts een toegestaan"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "'Configured-Version' van pakket met ongepaste status"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Pakket in toestand `not-installed' heeft conffiles, deze worden vergeten"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "kon niet afsluiten na lezen: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "geen pakketinformatie in `%.255s'"
msgstr ""
"Project-Id-Version: dpkg_nn\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-08 16:16+0100\n"
"Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
"Language-Team: Norwegian (Nynorsk) <i18n-nn@lister.ping.uio.no>\n"
msgid "can't stat package info file `%.255s'"
msgstr "finn ikkje pakkeinfofila «%.255s»"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "klarte ikkje køyra «mmap» på pakkeinfofila «%.255s»"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "klarte ikkje tildela minne for infofila «%.255s»"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopier informasjonsfila «%.255s»"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "slutt på fila etter feltnamn «%.*s»"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "linjeskift i feltnamn «%.*s»"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MS-DOS-slutt på fila (^Z) i feltnamn «%.*s»"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "feltnamnet «%.*s» skal følgjast av eit kolon"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"slutt på fil før verdien til feltet «%.*s» (manglar linjeskift til slutt)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"MSDOS-teikn for slutt på fil i verdien for feltet «%.*s» (manglar "
"linjeskift?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"slutt på fil i verdien for feltet «%.*s» (manglar avsluttande linjeskift)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "verdien for feltet «%s» finst meir enn éin gong"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "det brukardefinerte feltnamnet «%.*s» er for kort"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "det brukardefinerte feltet «%.*s» finst meir enn éin gong"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "fann fleire pakkeinformasjonsoppføringar, kan berre ha ei"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Oppsett versjon for pakke med status som ikkje passar"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Ein pakke som ikkje er installert har oppsettsfiler. Dei vert ignorerte."
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "klarte ikkje lukka etter lesing: «%.255s»"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "ingen pakkeinformasjon i «%.255s»"
msgstr ""
"Project-Id-Version: dpkg 1.9.20\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-05 19:50+0100\n"
"Last-Translator: Bartosz Fenski <fenio@debian.org>\n"
"Language-Team: Polish <pddp@debian.linux.org.pl>\n"
msgstr ""
"nie mo¿na wykonaæ funkcji 'stat' na pliku informacji o pakiecie `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
"nie mo¿na wykonaæ funkcji 'mmap' na pliku informacji o pakiecie `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "nie mo¿na zaalokowaæ pamiêci dla pliku informacji `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopiowanie pliku informacji `%.250s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF po nazwie pola `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "koniec linii w nazwie pola `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) w nazwie pola `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "po nazwie pola `%.*s' musi wyst±piæ dwukropek"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF przed warto¶ci± pola `%.*s' (brak koñca linii)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "MSDOS EOF w warto¶ci pola `%.*s' (brak koñca linii?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF w warto¶ci pola `%.*s' (brak koñca linii)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "podwójna warto¶æ pola `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "pole definiowane przez u¿ytkownika ma za krótk± nazwê `%.*s'"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "podwójna warto¶æ pola definiowanego przez u¿ytkownika `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"odnaleziono kilka kopii informacji o pakiecie, tylko jedna jest dozwolona"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "odnaleziono `Configured-Version' dla pakietu z nieprawid³owym `Status'"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"niezainstalowany pakiet ma pliki konfiguracyjne, informacje o nich zostaj± "
"usuniête"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "nie mo¿na zamkn±æ `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "brak informacji o pakiecie w `%.255s'"
msgstr ""
"Project-Id-Version: dpkg 1.14\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-09 09:20+0000\n"
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "não pode fazer stat ao ficheiro de informação do pacote `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "não pode fazer mmap ao fichero de informação do pacote `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "falhou o malloc para o ficheiro de informações `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copiar ficheiro de informação `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF após campo do nome `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "newline no campo do nome `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) no campo do nome `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "campo do nome `%.*s' tem de ser seguido de dois pontos"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF antes do valor do campo `%.*s' (falta o newline final)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "caractere MSDOS EOF no valor do campo `%.*s' (falta newline?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF durante o valor do campo `%.*s' (falta newline final)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valor duplicado para o campo `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "nome do campo definido pelo utilizador `%.*s' é muito pequeno"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valor duplicado para campo definido pelo utilizador `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"várias entradas de informação de pacotes encontradas, apenas uma permitida"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version para o pacote com Status inapropriado"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Pacote que tem estado não-instalado tem ficheiros de configuração, "
"esquecendo-os"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "falhou fechar após ler: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "sem informação de pacotes em `%.255s'"
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-06 16:42-0200\n"
"Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
msgstr ""
"não foi possível obter estado do arquivo de informação do pacote `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr ""
"não foi possível mapear a memória do arquivo de configuração do pacote `"
"%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "falha ao alocar memória para o arquivo de informação `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copiar arquivo de informação `%.250s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF após campo de nome `%.*s'"
# FIXME: É preciso decidir logo qual seria a tradução de newline para o português. - Carlos
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nova linha em campo de nome `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "EOF de MSDOS (^Z) em campo de nome `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "campo de nome `%.*s' precisa ser seguido de vírgula"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF antes de valor do campo `%.*s' (faltando nova linha final)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "caracter EOF de MSDOS no valor do campo `%.*s' (nova linha faltando?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF durante o valor do campo `%.*s' (faltando nova linha final)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valor duplicado para o campo `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "nome do campo `%.*s' definido pelo usuário é muito curto"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valor duplo para campo definido pelo usuário `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"muitas entradas de informação do pacote foram encontradas e só uma é "
"permitida"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version para pacote com Status inapropriado"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Pacote que quando não instalado possui arquivos de configuração, esquecendo-"
"os"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "falha ao fechar após ler: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "sem informações de pacote em `%.255s'"
msgstr ""
"Project-Id-Version: dpkg_ro\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-05-25 03:12+0200\n"
"Last-Translator: Eddy Petrişor <eddy.petrisor@gmail.com>\n"
"Language-Team: Romanian (Română) <debian-l10n-romanian@lists.debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "nu pot citi starea fişierului de informaţii al pachetului `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "nu pot mmap fişierul de informaţii al pachetului `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "eşec la alocarea memoriei pentru fişierul de informaţii `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "copiez fişierul de informaţii `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF după numele câmpului `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "linie nouă in numele câmpului `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) în numele câmpului `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "numele câmpului `%.*s' trebuie urmat de două puncte"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF înainte de valoarea câmpului `%.*s' (lipseşte linie nouă finală)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "caracter MSDOS EOF în valoarea câmpului `%.*s' (lipseşte linie nouă?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF în valoarea câmpului `%.*s' (lipseşte linie nouă finală)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "valoare duplicat pentru câmpul `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "numele de câmp definit de utilizator `%.*s' prea scurt"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "valoare duplicat pentru câmpul definit de utilizator `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"am găsit câteva intrări informaţii pentru pachet, numai una este permisă"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version pentru pachet cu Status inadecvat"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Pachet care este în starea neinstalat are fişiere de configurare, se pierd"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "eşec la închidere după citire: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "nici o informaţie despre pachet în `%.255s'"
msgstr ""
"Project-Id-Version: ru\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-01 11:38+0400\n"
"Last-Translator: Yuri Kozlov <yuray@id.ru>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "не удалось получить информацию о файле информации о пакете %.255s"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "не удалось отобразить файл информации о пакете %.255s в память"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "не удалось выделить память для файла информации %.255s"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "копирование файла информации %.250s"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "после имени поля %.*s обнаружен символ конца файла"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "в имени поля %.*s обнаружен символ конца строки"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "в имени поля %.*s обнаружен символ конца файла MS DOS (^Z)"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "после имени поля %.*s должно идти двоеточие"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr ""
"перед значением поля %.*s обнаружен символ конца файла (отсутствует символ "
"конца строки)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr ""
"в значении поля %.*s обнаружен символ конца файла MS DOS (возможно, "
"отсутствует символ конца строки)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"в значении поля %.*s обнаружен символ конца файла (отсутствует символ конца "
"строки)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "значение поля %s должно встречаться только один раз"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "название пользовательского поля %.*s слишком коротко"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr ""
"значение пользовательского поля %.*s должно встречаться только один раз"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"обнаружено несколько экземпляров информации о пакете, хотя допускается "
"только один"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr ""
"У пакета задано поле версии файлов конфигурации, хотя его состояние этого не "
"допускает"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"У не установленного пакета установлены файлы конфигурации, можно не "
"принимать во внимание"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "не удалось закрыть файл %.255s после чтения"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "в файле %.255s нет информации о пакете"
msgstr ""
"Project-Id-Version: dpkg 1.10\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-08 17:21-0500\n"
"Last-Translator: Roman Benko <benco@acid.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
msgid "can't stat package info file `%.255s'"
msgstr "nie je mo¾né zisti» stav súboru s informáciami o balíku `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "nedoká¾em vykona» funkciu mmap na info súbor balíku `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "zlyhalo vykonanie funkcie malloc pre info súbor `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopírovanie info súboru `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "koniec súboru za poµom `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nový riadok v poli `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) v názve poµa `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "za poµom `%.*s' musí nasledova» dvojbodka"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF pred hodnotou poµa `%.*s' (chýbajúci závereèný nový riadok)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "znak MSDOS EOF v hodnote poµa `%.*s' (chýbajúci nový riadok?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr ""
"EOF poèas naèítania hodnoty poµa `%.*s' (chýbajúci závereèný nový riadok)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "duplicitná hodnota poµa `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "u¾ívateµsky definované meno poµa `%.*s' je príli¹ krátke"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "duplicitná hodnota pre u¾ívateµsky definované pole `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "bolo zistených niekoµko info polo¾iek balíku, prípustná je iba jedna"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version pre balík s nezodpovedajúcim Stavom"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Balíèek, ktorý je v stave non-installed má konfiguraèné súbory, zahadzujem "
"ich"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "zlyhalo uzavretie po naèítaní: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "¾iadne informácie o balíku v `%.255s'"
msgstr ""
"Project-Id-Version: dpkg 1.10\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-01-01 23:52+0100\n"
"Last-Translator: Peter Karlsson <peterk@debian.org>\n"
"Language-Team: Peter Karlsson <peterk@debian.org>\n"
msgid "can't stat package info file `%.255s'"
msgstr "kan inte ta status på paketinformationsfil \"%.255s\""
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "kan inte minnesmappa paketinformationsfil \"%.255s\""
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "kan inte allokera minna för informationsfil \"%.255s\""
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopiera informationsfil \"%.255s\""
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "Filslut efter fältnamn \"%.*s\""
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "nyradstecken i fältnamn \"%.*s\""
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS-filslut (^Z) i fältnamn \"%.*s\""
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "fältnamnet \"%.*s\" måste följas av kolon"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "Filslut före värde på fält \"%.*s\" (saknar sista nyradstecknet)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "MSDOS-filslut före värde på fält \"%.*s\" (saknar nyradstecken?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "Filslut inuti värde på fält \"%.*s\" (saknar sista nyradstecknet)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "dubblerat värde för \"%s\"-fältet"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "användardefinierat fältnamn \"%.*s\" för kort"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "dubblerat värde för användardefinierat fält \"%.*s\""
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "flera paketinformationsposter funna, bara en tillåts"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version för paket med opassande Status"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "Paket med status non-installed har konfigurationsfiler, glömmer dem"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "kunde inte stänga efter läsning: \"%.255s\""
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "ingen paketinformation i \"%.255s\""
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-03-07 20:09+0800\n"
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
msgid "can't stat package info file `%.255s'"
msgstr "hindi ma-stat ang talaksang info ng pakete `%.255s'"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "hindi ma-mmap ang talaksang info ng pakete `%.255s'"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "bigo ang pag-malloc para sa talaksang info `%.255s'"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "kopyahin ang talaksang info `%.255s'"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "EOF matapos ng pangalan ng saklaw `%.*s'"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "newline sa loob ng pangalan ng saklaw `%.*s'"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "MSDOS EOF (^Z) sa loob ng pangalan ng saklaw `%.*s'"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "pangalan ng saklaw `%.*s' ay dapat sundan ng kolon"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "EOF nauna sa halaga ng saklaw `%.*s' (kulang ng kahulihang newline)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "MSDOS EOF char sa halaga ng saklaw `%.*s' (kulang na newline?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "EOF sa halaga ng saklaw `%.*s' (kulang na kahulihang newline)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "nadobleng halaga para sa saklaw na `%s'"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "pinangalanan ng gumagamit na saklaw `%.*s' ay labis na maiksi"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "dinobleng halaga para sa pinangalanan ng gumagamit na saklaw `%.*s'"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr ""
"may ilang pinasok na info tungkol sa pakete na nahanap, iisa lamang dapat"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "Configured-Version para sa pakete na may di akmang Status"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"Pakete na nasa kalagayang hindi-nakaluklok ay may conffiles, kinalilimutan "
"sila"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "bigo sa pagsara matapos ng pagbasa: `%.255s'"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "walang impormasyong pakete sa loob ng `%.255s'"
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-02-07 05:27+1300\n"
"Last-Translator: Tchaikov <chaisave@263.com>\n"
"Language-Team: Chinese (simplified) <i18n-translation@lists.linux.net.cn>\n"
msgid "can't stat package info file `%.255s'"
msgstr "无法 stat 软件包的·info·文件“%.255s”"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "无法 mmap 软件包的 info 文件“%.255s”"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "在读取软件包的 info 文件“%.255s”时,malloc 失败"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "拷贝 info 文件 “%.255s”"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "在字段名“%.*s”后发现 EOF"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "在字段名“%.*s”中发现换行符"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "在字段名“%.*s”中发现 MSDOS EOF (^Z)"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "字段名“%.*s”后必须紧跟冒号"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "在字段“%.*s”的值的前面发现了 EOF (缺少最后结尾的换行符)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "在字段“%.*s”的值中间发现了 MSDOS EOF 字符(缺少最后结尾的换行符?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "在字段“%.*s”的值中间发现了 EOF 字符(缺少最后结尾的换行符)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "有多个值对应于字段“%s”"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "用户自定义的字段名“%.*s”过短"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "有多个值对应于用户自定义的字段“%.*s”"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "发现了多个软件包的 info 条目,不过我只要一个"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "软件包有 Configured-Version 的标志,但是它安装状态却与之不符"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr ""
"该软件包的状态是尚未安装(not-installed),但是它却有 conoffiles,不管他了"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "读取完毕“%.255s”后,无法关闭该文件"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "在”%.255s“中没有软件包的相关信息"
msgstr ""
"Project-Id-Version: dpkg\n"
"Report-Msgid-Bugs-To: debian-dpkg@lists.debian.org\n"
-"POT-Creation-Date: 2005-06-09 06:15+0100\n"
+"POT-Creation-Date: 2005-06-10 07:42+0100\n"
"PO-Revision-Date: 2005-02-05 19:54+0800\n"
"Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
msgid "can't stat package info file `%.255s'"
msgstr "無法 stat 套件的·info·檔案“%.255s”"
-#: lib/parse.c:114
+#: lib/parse.c:115
#, c-format
msgid "can't mmap package info file `%.255s'"
msgstr "無法 mmap 套件的 info 檔案“%.255s”"
-#: lib/parse.c:117
+#: lib/parse.c:118
#, c-format
msgid "failed to malloc for info file `%.255s'"
msgstr "在讀取套件的 info 檔案“%.255s”時,malloc 失敗"
-#: lib/parse.c:119
+#: lib/parse.c:120
#, c-format
msgid "copy info file `%.255s'"
msgstr "拷貝 info 檔案 “%.255s”"
-#: lib/parse.c:148
+#: lib/parse.c:152
#, c-format
msgid "EOF after field name `%.*s'"
msgstr "在欄位名“%.*s”後發現 EOF"
-#: lib/parse.c:151
+#: lib/parse.c:155
#, c-format
msgid "newline in field name `%.*s'"
msgstr "在欄位名“%.*s”中發現換行符"
-#: lib/parse.c:154
+#: lib/parse.c:158
#, c-format
msgid "MSDOS EOF (^Z) in field name `%.*s'"
msgstr "在欄位名“%.*s”中發現 MSDOS EOF (^Z)"
-#: lib/parse.c:157
+#: lib/parse.c:161
#, c-format
msgid "field name `%.*s' must be followed by colon"
msgstr "欄位名“%.*s”後必須緊跟冒號"
-#: lib/parse.c:165
+#: lib/parse.c:169
#, c-format
msgid "EOF before value of field `%.*s' (missing final newline)"
msgstr "在欄位“%.*s”的值的前面發現了 EOF (缺少最後結尾的換行符)"
-#: lib/parse.c:169
+#: lib/parse.c:173
#, c-format
msgid "MSDOS EOF char in value of field `%.*s' (missing newline?)"
msgstr "在欄位“%.*s”的值中間發現了 MSDOS EOF 字元(缺少最後結尾的換行符?)"
-#: lib/parse.c:183
+#: lib/parse.c:187
#, c-format
msgid "EOF during value of field `%.*s' (missing final newline)"
msgstr "在欄位“%.*s”的值中間發現了 EOF 字元(缺少最後結尾的換行符)"
-#: lib/parse.c:206
+#: lib/parse.c:210
#, c-format
msgid "duplicate value for `%s' field"
msgstr "有多個值對應於欄位“%s”"
-#: lib/parse.c:211
+#: lib/parse.c:215
#, c-format
msgid "user-defined field name `%.*s' too short"
msgstr "用戶自定義的欄位名“%.*s”過短"
-#: lib/parse.c:216
+#: lib/parse.c:220
#, c-format
msgid "duplicate value for user-defined field `%.*s'"
msgstr "有多個值對應於用戶自定義的欄位“%.*s”"
-#: lib/parse.c:229
+#: lib/parse.c:233
msgid "several package info entries found, only one allowed"
msgstr "發現了多個套件的 info 項目,只允許一個"
-#: lib/parse.c:255
+#: lib/parse.c:259
msgid "Configured-Version for package with inappropriate Status"
msgstr "有 Configured-Version 的套件與安裝狀態不符"
-#: lib/parse.c:269
+#: lib/parse.c:273
msgid "Package which in state not-installed has conffiles, forgetting them"
msgstr "該套件的狀態是尚未安裝,但是它卻有 conoffiles,不用理會它"
-#: lib/parse.c:324
+#: lib/parse.c:330
#, c-format
msgid "failed to close after read: `%.255s'"
msgstr "讀取完畢“%.255s”後,無法關閉該檔案"
-#: lib/parse.c:325
+#: lib/parse.c:331
#, c-format
msgid "no package information in `%.255s'"
msgstr "在”%.255s“中沒有套件的相關訊息"