diff options
| author | Jakub Jelinek <jakub@redhat.com> | 2007-07-12 18:26:36 +0000 |
|---|---|---|
| committer | Jakub Jelinek <jakub@redhat.com> | 2007-07-12 18:26:36 +0000 |
| commit | 0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (patch) | |
| tree | 2ea1f8305970753e4a657acb2ccc15ca3eec8e2c /po | |
| parent | 7d58530341304d403a6626d7f7a1913165fe2f32 (diff) | |
| download | glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.tar.xz glibc-0ecb606cb6cf65de1d9fc8a919bceb4be476c602.zip | |
2.5-18.1
Diffstat (limited to 'po')
| -rw-r--r-- | po/.cvsignore | 62 | ||||
| -rw-r--r-- | po/Makefile | 27 | ||||
| -rw-r--r-- | po/be.po | 12 | ||||
| -rw-r--r-- | po/ca.po | 12 | ||||
| -rw-r--r-- | po/cs.po | 4 | ||||
| -rw-r--r-- | po/da.po | 12 | ||||
| -rw-r--r-- | po/de.po | 12 | ||||
| -rw-r--r-- | po/el.po | 10 | ||||
| -rw-r--r-- | po/en_GB.po | 8 | ||||
| -rw-r--r-- | po/es.po | 1339 | ||||
| -rw-r--r-- | po/fi.po | 12 | ||||
| -rw-r--r-- | po/fr.po | 12 | ||||
| -rw-r--r-- | po/gl.po | 12 | ||||
| -rw-r--r-- | po/hr.po | 10 | ||||
| -rw-r--r-- | po/hu.po | 10 | ||||
| -rw-r--r-- | po/ja.po | 12 | ||||
| -rw-r--r-- | po/ko.po | 12 | ||||
| -rw-r--r-- | po/libc.pot | 6283 | ||||
| -rw-r--r-- | po/nb.po | 12 | ||||
| -rw-r--r-- | po/nl.po | 8523 | ||||
| -rw-r--r-- | po/pl.po | 7735 | ||||
| -rw-r--r-- | po/pt_BR.po | 4 | ||||
| -rw-r--r-- | po/ru.po | 6511 | ||||
| -rw-r--r-- | po/rw.po | 6767 | ||||
| -rw-r--r-- | po/sk.po | 12 | ||||
| -rw-r--r-- | po/sv.po | 8374 | ||||
| -rw-r--r-- | po/tr.po | 7922 | ||||
| -rw-r--r-- | po/zh_CN.po | 12 | ||||
| -rw-r--r-- | po/zh_TW.po | 8716 |
29 files changed, 39621 insertions, 22828 deletions
diff --git a/po/.cvsignore b/po/.cvsignore index f3acb7df82..37752e3b33 100644 --- a/po/.cvsignore +++ b/po/.cvsignore @@ -1,62 +1,2 @@ *.mo -stdio-common.pot -libc-top.pot -csu.pot -assert.pot -conform.pot -ctype.pot -locale.pot -intl.pot -catgets.pot -math.pot -setjmp.pot -signal.pot -stdlib.pot -gnulib.pot -libio.pot -dlfcn.pot -malloc.pot -string.pot -wcsmbs.pot -time.pot -dirent.pot -grp.pot -pwd.pot -posix.pot -io.pot -termios.pot -resource.pot -misc.pot -socket.pot -sysvipc.pot -gmon.pot -iconvdata.pot -iconv.pot -manual.pot -wctype.pot -md5-crypt.pot -shadow.pot -po.pot -crypt.pot -argp.pot -linuxthreads_db.pot -linuxthreads.pot -soft-fp.pot -resolv.pot -nss.pot -localedata.pot -timezone.pot -rt.pot -debug.pot -hesiod.pot -inet.pot -bare.pot -sunrpc.pot -nis.pot -nscd.pot -streams.pot -login.pot -elf.pot -mach.pot -hurd.pot -subdirs.pot +libc.pot.files diff --git a/po/Makefile b/po/Makefile index fa26aeca0c..cbbd9ab848 100644 --- a/po/Makefile +++ b/po/Makefile @@ -1,4 +1,5 @@ -# Copyright (C) 1996,1997,1998,1999,2001,2002 Free Software Foundation, Inc. +# Copyright (C) 1996,1997,1998,1999,2001,2002,2006 +# Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -21,7 +22,7 @@ subdir := po # Add names of the languages with broken .po files here. -BROKEN_LINGUAS = +BROKEN_LINGUAS = # List of languages for which we have message catalogs of translations. ALL_LINGUAS := $(filter-out $(BROKEN_LINGUAS),$(basename $(wildcard *.po))) @@ -54,6 +55,28 @@ distribute = $(ALL_LINGUAS:=.po) $(BROKEN_LINGUAS:=.po) $(ALL_LINGUAS:=.mo) \ include ../Rules +# Generate the translation template from all the source files. +libc.pot: header.pot libc.pot.files + @rm -f $@.new + set `date -R`; disp="$$6"; \ + sed -e 's/VERSION/$(version)/' \ + -e "s/DATE/`date +'%Y-%m-%d %H:%M'$$disp`/" \ + $< > $@.new + cd ..; $(XGETTEXT) --keyword=_ --keyword=N_ \ + --add-comments=TRANS --flag=error:3:c-format \ + --sort-by-file --omit-header -E -n -d - \ + -f po/$(word 2,$^) >> po/$@.new + mv -f $@.new $@ +ifeq ($(with-cvs),yes) + test ! -d CVS || cvs $(CVSOPTS) ci -m'Regenerated from source files' $@ +endif + +# Omit tst-* files, and get only files with the given suffixes. +libc.pot.files: FORCE + $(..)scripts/list-sources.sh .. | sed -n '/\/tst-/d;\ + $(foreach S,[ch] cxx sh bash,$(subst .,\.,/.$S\(.in\)*$$/p;))' \ + > $@.new + mv -f $@.new $@ .SUFFIXES: .mo .po .pot @@ -260,7 +260,7 @@ msgstr "немагчыма адчыніць файл вываду" #: iconv/iconv_prog.c:241 #, c-format -msgid "conversion from `%s' and to `%s' are not supported" +msgid "conversions from `%s' and to `%s' are not supported" msgstr "" #: iconv/iconv_prog.c:246 @@ -352,7 +352,7 @@ msgid "Prefix used for all file accesses" msgstr "" #: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr "" #: iconv/iconvconfig.c:405 @@ -727,7 +727,7 @@ msgstr "" #: locale/programs/ld-collate.c:1287 locale/programs/ld-ctype.c:1467 #, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgid "`%s' and `%.*s' are not valid names for symbolic range" msgstr "" #: locale/programs/ld-collate.c:1333 locale/programs/ld-collate.c:3712 @@ -1620,7 +1620,7 @@ msgid "no <Uxxxx> or <Uxxxxxxxx> value given" msgstr "" #: locale/programs/repertoire.c:332 -msgid "cannot safe new repertoire map" +msgid "cannot save new repertoire map" msgstr "" #: locale/programs/repertoire.c:343 @@ -3028,7 +3028,7 @@ msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n" msgstr "" #: timezone/zdump.c:268 -msgid "Error writing standard output" +msgid "Error writing to standard output" msgstr "Памылка запісу стандартнага вываду" #: timezone/zic.c:365 @@ -5047,7 +5047,7 @@ msgstr "немагчыма запісаць вынік: %s" #: nscd/connections.c:405 nscd/connections.c:499 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr "" #: nscd/connections.c:471 @@ -268,7 +268,7 @@ msgstr "no s'ha pogut obrir el fitxer d'eixida" #: iconv/iconv_prog.c:243 #, c-format -msgid "conversion from `%s' and to `%s' are not supported" +msgid "conversions from `%s' and to `%s' are not supported" msgstr "no es suporta la conversió de «%s» ni a «%s»" #: iconv/iconv_prog.c:248 @@ -373,7 +373,7 @@ msgid "Prefix used for all file accesses" msgstr "Prefix a usar en tots els accessos a fitxer." #: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr "no s'ha generat el fitxer d'eixida perquè s'han produït avisos" #: iconv/iconvconfig.c:405 @@ -760,7 +760,7 @@ msgstr "%s: un rang simbòlic amb eŀlipsi no pot anar just davant d'«order_end #: locale/programs/ld-collate.c:1299 locale/programs/ld-ctype.c:1476 #, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgid "`%s' and `%.*s' are not valid names for symbolic range" msgstr "«%s» i «%.*s» no són noms vàlids de rangs simbòlics" #: locale/programs/ld-collate.c:1348 locale/programs/ld-collate.c:3737 @@ -1695,7 +1695,7 @@ msgstr "no s'ha especificat un valor <Uxxxx> o <Uxxxxxxxx>" # ivb (2001/11/05) # ivb Apareix quan no es troba el repertori en un arbre de repertoris. #: locale/programs/repertoire.c:332 -msgid "cannot safe new repertoire map" +msgid "cannot save new repertoire map" msgstr "no s'ha pogut afegir el nou mapa de repertori" #: locale/programs/repertoire.c:343 @@ -3133,7 +3133,7 @@ msgid "%s: usage is %s [ --version ] [ -v ] [ -c cutoff ] zonename ...\n" msgstr "%s: la forma d'ús és %s [--version] [-v] [-c ANY_DE_TALL] NOM_DE_ZONA...\n" #: timezone/zdump.c:269 -msgid "Error writing standard output" +msgid "Error writing to standard output" msgstr "error en escriure en l'eixida estàndard" #: timezone/zic.c:361 @@ -5234,7 +5234,7 @@ msgstr "no s'ha pogut escriure el resultat: %s" # ivb «chronyc» amb «chronyd»). #: nscd/connections.c:392 nscd/connections.c:514 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr "error en obtenir l'identificador del programa de control: %s" #: nscd/connections.c:485 @@ -3709,7 +3709,7 @@ msgstr "koncov bod `...' je vt ne poten" #: nscd/connections.c:357 nscd/connections.c:444 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr "chyba pi zjiovn id volajcho: %s" #: iconv/iconv_prog.c:193 @@ -4144,7 +4144,7 @@ msgid "no other keyword shall be specified when `copy' is used" msgstr "pi pouit `copy' nen dovoleno pout dn jin klov slovo" #: locale/programs/localedef.c:331 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr "vstupn soubor nebyl vytvoen, protoe se vyskytla varovn" #: locale/programs/locfile.c:283 locale/programs/locfile.c:302 @@ -259,7 +259,7 @@ msgstr "kan ikke bne udfil" #: iconv/iconv_prog.c:241 #, c-format -msgid "conversion from `%s' and to `%s' are not supported" +msgid "conversions from `%s' and to `%s' are not supported" msgstr "konvertering fra '%s' og til '%s' er ikke understttet" #: iconv/iconv_prog.c:246 @@ -361,7 +361,7 @@ msgid "Prefix used for all file accesses" msgstr "Prfiks brugt for alle filadgange" #: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr "p grund af advarsler blev ingen udfil oprettet" #: iconv/iconvconfig.c:405 @@ -738,7 +738,7 @@ msgstr "%s: symbolsk interval-ellipse m ikke vre fulgt umiddelbart af 'order_e #: locale/programs/ld-collate.c:1287 locale/programs/ld-ctype.c:1467 #, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgid "`%s' and `%.*s' are not valid names for symbolic range" msgstr "'%s' og '%.*s' er ikke gyldige navne for tegnomrde" #: locale/programs/ld-collate.c:1333 locale/programs/ld-collate.c:3712 @@ -1639,7 +1639,7 @@ msgid "no <Uxxxx> or <Uxxxxxxxx> value given" msgstr "ingen <Uxxxx>- eller <Uxxxxxxxx>-vrdi givet" #: locale/programs/repertoire.c:332 -msgid "cannot safe new repertoire map" +msgid "cannot save new repertoire map" msgstr "kan ikke gemme ny repertoiretabel" #: locale/programs/repertoire.c:343 @@ -3051,7 +3051,7 @@ msgid "%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n" msgstr "%s: brug er %s [ -v ] [ -c grnse ] zonenavn ...\n" #: timezone/zdump.c:268 -msgid "Error writing standard output" +msgid "Error writing to standard output" msgstr "Fejl ved skrivning til standard ud" #: timezone/zic.c:365 @@ -5073,7 +5073,7 @@ msgstr "kan ikke udskrive resultat: '%s'" #: nscd/connections.c:405 nscd/connections.c:499 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr "fejl ved foresprgsel p opkaldets id: %s" #: nscd/connections.c:471 @@ -304,7 +304,7 @@ msgstr "Kann die Ausgabedatei nicht öffnen" #: iconv/iconv_prog.c:243 #, c-format -msgid "conversion from `%s' and to `%s' are not supported" +msgid "conversions from `%s' and to `%s' are not supported" msgstr "Konvertierung von »%s« nach »%s« wird nicht unterstützt" #: iconv/iconv_prog.c:248 @@ -406,7 +406,7 @@ msgid "Prefix used for all file accesses" msgstr "Prefix für jeden Dateizugriff" #: iconv/iconvconfig.c:327 locale/programs/localedef.c:292 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr "Es wurde keine Ausgabedatei erzeugt, weil Warnungen ausgegeben wurden" #: iconv/iconvconfig.c:405 @@ -787,7 +787,7 @@ msgstr "%s: Das Symbol für Auslassungen darf nicht unmittelbar vor »order_end #: locale/programs/ld-collate.c:1299 locale/programs/ld-ctype.c:1476 #, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgid "`%s' and `%.*s' are not valid names for symbolic range" msgstr "»%s« und »%.*s« sind ungültige Namen für eine symbolischen Zeichenbereich" #: locale/programs/ld-collate.c:1348 locale/programs/ld-collate.c:3737 @@ -1716,7 +1716,7 @@ msgid "no <Uxxxx> or <Uxxxxxxxx> value given" msgstr "Kein <Uxxxx> oder <Uxxxxxxxx> Wert angegeben" #: locale/programs/repertoire.c:332 -msgid "cannot safe new repertoire map" +msgid "cannot save new repertoire map" msgstr "Kann die neue »repertoire«-Map »%s« nicht speichern" #: locale/programs/repertoire.c:343 @@ -3149,7 +3149,7 @@ msgid "%s: usage is %s [ --version ] [ -v ] [ -c cutoff ] zonename ...\n" msgstr "%s: Syntax: %s [ --version ] [ -v ] [ -c cutoff ] Zonenname ...\n" #: timezone/zdump.c:269 -msgid "Error writing standard output" +msgid "Error writing to standard output" msgstr "Fehler beim Schreiben zur Standardausgabe" #: timezone/zic.c:361 @@ -5208,7 +5208,7 @@ msgstr "Das Ergebnis kann nicht geschrieben werden: %s" #: nscd/connections.c:392 nscd/connections.c:514 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr "Fehler beim Feststellen der Identität des Aufrufers: %s" #: nscd/connections.c:485 @@ -3801,7 +3801,7 @@ msgstr " `%1$s' `END %1$s'" #: locale/programs/ld-collate.c:1268 locale/programs/ld-ctype.c:1454 #, fuzzy, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgid "`%s' and `%.*s' are not valid names for symbolic range" msgstr " <%s> <%s> " #: elf/sprof.c:762 @@ -4118,7 +4118,7 @@ msgstr " " #: locale/programs/repertoire.c:331 #, fuzzy -msgid "cannot safe new repertoire map" +msgid "cannot save new repertoire map" msgstr " `%s'" #: elf/dl-load.c:776 @@ -4329,7 +4329,7 @@ msgstr " " #: nscd/connections.c:361 nscd/connections.c:453 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr " : %s" #: locale/programs/ld-collate.c:3013 @@ -4771,7 +4771,7 @@ msgid "no output digits defined and none of the standard names in the charmap" msgstr "" #: locale/programs/localedef.c:236 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr " " #: locale/programs/charmap.c:488 locale/programs/charmap.c:668 locale/programs/charmap.c:764 @@ -5587,7 +5587,7 @@ msgstr "yp_update: \n" #~ msgid "while writing database file" #~ msgstr " " -#~ msgid "%s: Error writing standard output " +#~ msgid "%s: Error writing to standard output " #~ msgstr "%s: " #~ msgid "Cputime limit exceeded" diff --git a/po/en_GB.po b/po/en_GB.po index c26589be75..2470e8205a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3768,7 +3768,7 @@ msgstr "" #: locale/programs/ld-collate.c:1184 locale/programs/ld-ctype.c:1263 #, c-format -msgid "`%s' and `%.*s' are no valid names for symbolic range" +msgid "`%s' and `%.*s' are not valid names for symbolic range" msgstr "" #: elf/sprof.c:763 @@ -3988,7 +3988,7 @@ msgid "cannot read statistics data" msgstr "" #: locale/programs/repertoire.c:331 -msgid "cannot safe new repertoire map" +msgid "cannot save new repertoire map" msgstr "" #: nscd/cache.c:150 nscd/connections.c:151 @@ -4188,7 +4188,7 @@ msgstr "" #: nscd/connections.c:360 nscd/connections.c:451 #, c-format -msgid "error getting callers id: %s" +msgid "error getting caller's id: %s" msgstr "" #: locale/programs/ld-collate.c:2787 @@ -4600,7 +4600,7 @@ msgid "" msgstr "" #: locale/programs/localedef.c:229 -msgid "no output file produced because warning were issued" +msgid "no output file produced because warnings were issued" msgstr "" #: locale/programs/charmap.c:438 locale/programs/charmap.c:589 @@ -1,13 +1,14 @@ # Mensajes en espaol para GNU libc. -# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003 Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1998, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. # Enrique Melero Gmez <melero@eurolands.com>, 1996, 1997. -# Santiago Vila Doncel <sanvila@unex.es>, 1997, 1998, 2001, 2002, 2003. +# Santiago Vila Doncel <sanvila@unex.es>, 1997, 1998, 2001, 2002, 2003, 2004. # msgid "" msgstr "" -"Project-Id-Version: GNU libc 2.3.2\n" -"POT-Creation-Date: 2003-02-22 15:34-0800\n" -"PO-Revision-Date: 2003-03-03 17:20+0100\n" +"Project-Id-Version: GNU libc 2.3.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-08-05 09:16+0200\n" +"PO-Revision-Date: 2004-12-28 19:46+0100\n" "Last-Translator: Santiago Vila Doncel <sanvila@unex.es>\n" "Language-Team: Spanish <es@li.org>\n" "MIME-Version: 1.0\n" @@ -219,12 +220,12 @@ msgstr "no se puede abrir `%s'" msgid "cannot read header from `%s'" msgstr "no se puede leer la cabecera de `%s'" -#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:293 catgets/gencat.c:288 +#: iconv/iconv_charmap.c:159 iconv/iconv_prog.c:295 catgets/gencat.c:288 #, c-format msgid "cannot open input file `%s'" msgstr "no se puede abrir el fichero de entrada `%s'" |
