[svn-upgrade] Integrating new upstream version, shadow (4.0.9)

This commit is contained in:
nekral-guest
2007-10-07 11:46:16 +00:00
parent 8e167d28af
commit 7c47e0fde3
159 changed files with 13029 additions and 3956 deletions

5
po/ChangeLog Normal file
View File

@@ -0,0 +1,5 @@
2005-05-04 gettextize <bug-gnu-gettext@gnu.org>
* Makefile.in.in: Upgrade to gettext-0.14.3.
* Rules-quot: Upgrade to gettext-0.14.3.

View File

@@ -27,5 +27,6 @@ sv
tl
tr
uk
vi
zh_CN
zh_TW

View File

@@ -1,5 +1,5 @@
# Makefile for PO directory in any package using GNU gettext.
# Copyright (C) 1995-1997, 2000-2003 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
# Copyright (C) 1995-1997, 2000-2005 by Ulrich Drepper <drepper@gnu.ai.mit.edu>
#
# This file can be copied and used freely without restrictions. It can
# be used in projects which are not available under the GNU General Public
@@ -7,9 +7,12 @@
# functionality.
# Please note that the actual code of GNU gettext is covered by the GNU
# General Public License and is *not* in the public domain.
#
# Origin: gettext-0.14.3
PACKAGE = @PACKAGE@
VERSION = @VERSION@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
SHELL = /bin/sh
@SET_MAKE@
@@ -44,7 +47,7 @@ UPDATEPOFILES = @UPDATEPOFILES@
DUMMYPOFILES = @DUMMYPOFILES@
DISTFILES.common = Makefile.in.in remove-potcdate.sin \
$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3)
DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \
DISTFILES = $(DISTFILES.common) Makevars POTFILES.in \
$(POFILES) $(GMOFILES) \
$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3)
@@ -55,7 +58,7 @@ CATALOGS = @CATALOGS@
# Makevars gets inserted here. (Don't remove this line!)
.SUFFIXES:
.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update
.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update
.po.mo:
@echo "$(MSGFMT) -c -o $@ $<"; \
@@ -77,6 +80,12 @@ all: all-@USE_NLS@
all-yes: stamp-po
all-no:
# $(srcdir)/$(DOMAIN).pot is only created when needed. When xgettext finds no
# internationalized messages, no $(srcdir)/$(DOMAIN).pot is created (because
# we don't want to bother translators with empty POT files). We assume that
# LINGUAS is empty in this case, i.e. $(POFILES) and $(GMOFILES) are empty.
# In this case, stamp-po is a nop (i.e. a phony target).
# stamp-po is a timestamp denoting the last time at which the CATALOGS have
# been loosely updated. Its purpose is that when a developer or translator
# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS,
@@ -86,10 +95,13 @@ all-no:
# $(POFILES) has been designed to not touch files that don't need to be
# changed.
stamp-po: $(srcdir)/$(DOMAIN).pot
test -z "$(CATALOGS)" || $(MAKE) $(CATALOGS)
@echo "touch stamp-po"
@echo timestamp > stamp-poT
@mv stamp-poT stamp-po
test ! -f $(srcdir)/$(DOMAIN).pot || \
test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES)
@test ! -f $(srcdir)/$(DOMAIN).pot || { \
echo "touch stamp-po" && \
echo timestamp > stamp-poT && \
mv stamp-poT stamp-po; \
}
# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update',
# otherwise packages like GCC can not be built if only parts of the source
@@ -98,11 +110,16 @@ stamp-po: $(srcdir)/$(DOMAIN).pot
# This target rebuilds $(DOMAIN).pot; it is an expensive operation.
# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
if test -n '$(MSGID_BUGS_ADDRESS)' || test '$(PACKAGE_BUGREPORT)' = '@'PACKAGE_BUGREPORT'@'; then \
msgid_bugs_address='$(MSGID_BUGS_ADDRESS)'; \
else \
msgid_bugs_address='$(PACKAGE_BUGREPORT)'; \
fi; \
$(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
--add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
--files-from=$(srcdir)/POTFILES.in \
--copyright-holder='$(COPYRIGHT_HOLDER)' \
--msgid-bugs-address='$(MSGID_BUGS_ADDRESS)'
--msgid-bugs-address="$$msgid_bugs_address"
test ! -f $(DOMAIN).po || { \
if test -f $(srcdir)/$(DOMAIN).pot; then \
sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \
@@ -128,9 +145,13 @@ $(srcdir)/$(DOMAIN).pot:
# Note that a PO file is not touched if it doesn't need to be changed.
$(POFILES): $(srcdir)/$(DOMAIN).pot
@lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot
if test -f "$(srcdir)/$${lang}.po"; then \
test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \
cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \
else \
$(MAKE) $${lang}.po-create; \
fi
install: install-exec install-data
@@ -283,11 +304,14 @@ dist distdir:
$(MAKE) update-po
@$(MAKE) dist2
# This is a separate target because 'update-po' must be executed before.
dist2: $(DISTFILES)
dist2: stamp-po $(DISTFILES)
dists="$(DISTFILES)"; \
if test "$(PACKAGE)" = "gettext-tools"; then \
dists="$$dists Makevars.template"; \
fi; \
if test -f $(srcdir)/$(DOMAIN).pot; then \
dists="$$dists $(DOMAIN).pot stamp-po"; \
fi; \
if test -f $(srcdir)/ChangeLog; then \
dists="$$dists ChangeLog"; \
fi; \
@@ -299,9 +323,9 @@ dist2: $(DISTFILES)
if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \
for file in $$dists; do \
if test -f $$file; then \
cp -p $$file $(distdir); \
cp -p $$file $(distdir) || exit 1; \
else \
cp -p $(srcdir)/$$file $(distdir); \
cp -p $(srcdir)/$$file $(distdir) || exit 1; \
fi; \
done
@@ -310,6 +334,13 @@ update-po: Makefile
test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES)
$(MAKE) update-gmo
# General rule for creating PO files.
.nop.po-create:
@lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
exit 1
# General rule for updating PO files.
.nop.po-update:
@@ -341,7 +372,7 @@ $(DUMMYPOFILES):
update-gmo: Makefile $(GMOFILES)
@:
Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@
Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@
cd $(top_builddir) \
&& CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \
$(SHELL) ./config.status

View File

@@ -4,6 +4,11 @@ DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.heade
.SUFFIXES: .insert-header .po-update-en
en@quot.po-create:
$(MAKE) en@quot.po-update
en@boldquot.po-create:
$(MAKE) en@boldquot.po-update
en@quot.po-update: en@quot.po-update-en
en@boldquot.po-update: en@boldquot.po-update-en

BIN
po/bs.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-05-09 12:03+0100\n"
"Last-Translator: Safir Šećerović <sapphire@linux.org.ba>\n"
"Language-Team: Bosnian <lokal@lugbih.org>\n"
@@ -155,12 +155,12 @@ msgstr ""
msgid "malloc(%d) failed\n"
msgstr ""
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr ""
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1027,7 +1027,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1206,7 +1206,7 @@ msgstr ""
msgid "Sorry.\n"
msgstr ""
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr ""

BIN
po/ca.gmo

Binary file not shown.

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-06-16 20:58:19+0200\n"
"Last-Translator: Guillem Jover <guillem@debian.org>\n"
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
@@ -155,12 +155,12 @@ msgstr "No s'ha pogut canviar el directori arrel a «%s»\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) ha fallat\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "No s'ha pogut reservar espai per a la informació de configuració.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1037,7 +1037,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1225,7 +1225,7 @@ msgstr "El gid és desconegut: %lu\n"
msgid "Sorry.\n"
msgstr "Disculpeu.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "hi ha massa grups\n"

BIN
po/cs.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-19 21:17+0200\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -162,12 +162,12 @@ msgstr "Nelze nastavit kořenový adresář na \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "volání malloc(%d) selhalo\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Nemohu alokovat dostatek místa pro konfigurační údaje.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1062,14 +1062,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Použití: lastlog [volby]\n"
"\n"
"Volby:\n"
" -u, --login LOGIN\tzobrazí záznamy lastlogu pro uživatele LOGIN\n"
" -u, --user LOGIN\tzobrazí záznamy lastlogu pro uživatele LOGIN\n"
" -h, --help\t\tzobrazí tuto nápovědu a skončí\n"
" -t, --time DNŮ\tzobrazí záznamy lastlogu novější než DNŮ\n"
@@ -1255,7 +1255,7 @@ msgstr "neznámé gid %lu\n"
msgid "Sorry.\n"
msgstr "Lituji.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "příliš mnoho skupin\n"

BIN
po/da.gmo

Binary file not shown.

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-19 10:17+0200\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@@ -160,12 +160,12 @@ msgstr "Kan ikke ændre rodmappen til \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) mislykkedes\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Kunne ikke frigøre plads til opsætningsoplysninger.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "opsætningsfejl - ukendt punkt %s (informér administrator)\n"
@@ -1057,14 +1057,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Brug: lastlog [tilvalg]\n"
"\n"
"Tilvalg:\n"
" -u, --login LOGIND\tvis lastlog-optegnelser for brugeren med det angivne "
" -u, --user LOGIND\tvis lastlog-optegnelser for brugeren med det angivne "
"LOGIND\n"
" -h, --help\t\tdvis denne hjælpebesked og afslut\n"
" -t, --time DAGE\tvis kun lastlog-optegnelser, der er nyere end DAGE\n"
@@ -1251,7 +1251,7 @@ msgstr "ukendt gid: %lu\n"
msgid "Sorry.\n"
msgstr "Beklager.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "for mange grupper\n"

BIN
po/de.gmo

Binary file not shown.

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 19990709\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2002-03-11 12:02-0100\n"
"Last-Translator: Frank Schmid <frank@cs-schmid.de>\n"
"Language-Team: Frank Schmid <frank@cs-schmid.de>\n"
@@ -155,12 +155,12 @@ msgstr "Kann Basisverzeichnis nicht nach \"%s\" ändern\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) fehlgeschlagen\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Kann keinen Speicherplatz für Konfigurationsinformation reservieren.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1033,7 +1033,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1220,7 +1220,7 @@ msgstr "Unbekannte GID: %lu\n"
msgid "Sorry.\n"
msgstr "Entschuldigung.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "zu viele Gruppen\n"

BIN
po/el.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Shadow 980726\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 1998-12-28 20:35:31+0100\n"
"Last-Translator: Nikos Mavroyanopoulos <nmav@i-net.paiko.gr>\n"
"Language-Team: Hellenic <el@li.org>\n"
@@ -154,12 +154,12 @@ msgstr "Αδυναμία αλλαγής του πρωταρχικού καταλ
msgid "malloc(%d) failed\n"
msgstr "Η κλήση malloc(%d) απέτυχε\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Αδυναμία δέσμευσης χώρου για πληροφορίες διαμόρφωσης.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1044,7 +1044,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1234,7 +1234,7 @@ msgstr "άγνωστο gid: %lu\n"
msgid "Sorry.\n"
msgstr "Λυπάμαι.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "πάρα πολλές ομάδες\n"

BIN
po/es.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-18 23:39+0200\n"
"Last-Translator: Rubén Porras Campo <nahoo@inicia.es>\n"
"Language-Team: Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -158,12 +158,12 @@ msgstr "No puedo cambiar el directorio raíz a \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "falló malloc(%d)\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "No pude reservar espacio para la información de configuración.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1065,14 +1065,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Modo de uso: lastlog [opciones]\n"
"\n"
"Opciones:\n"
" -u, --login USUARIO\tmuestra el registro lastlog para el usuario\n"
" -u, --user USUARIO\tmuestra el registro lastlog para el usuario\n"
" especificado\n"
" -h, --help\t\tmuestra este mensaje de ayuda y termina\n"
" -t, --time DÍAS\tmuestra sólo los registros lastlog más recientes\n"
@@ -1261,7 +1261,7 @@ msgstr "gid desconocido: %lu\n"
msgid "Sorry.\n"
msgstr "Disculpe.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "demasiados grupos\n"

BIN
po/eu.gmo

Binary file not shown.

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-19 21:28+0200\n"
"Last-Translator: Iaki Larraaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: <itzulpena@euskalgnu.org>\n"
@@ -164,12 +164,12 @@ msgstr "Ezin da erro direktorioa \"%s\"-ra aldatu.\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) huts egin du\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Ezin izan da lekua esleitu, konfigurazioaren informaziorako.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1067,14 +1067,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Erabilera: lastlog [aukerak]\n"
"\n"
"Aukerak:\n"
" -u, --login IZENA\tIZENA duen erabiltzailearen lastlog erregistroa \n"
" -u, --user IZENA\tIZENA duen erabiltzailearen lastlog erregistroa \n"
"\t\t\t\tbistaratzen du\n"
" -h, --help\t\tlaguntzako mezu hau bistaratu eta irten egiten da\n"
" -t, --time EGUNAK\tEGUNAK baino berriagoak diren erregistroak \n"
@@ -1264,7 +1264,7 @@ msgstr "gid ezezaguna: %lu\n"
msgid "Sorry.\n"
msgstr "Barkatu.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "talde gehiegi\n"

BIN
po/fi.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-19 09:23+0300\n"
"Last-Translator: Tommi Vainikainen <thv+debian@iki.fi>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -158,12 +158,12 @@ msgstr "Ei voi vaihtaa juurihakemistoksi \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) epäonnistui\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Asetustiedoille ei voi varata tilaa.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "asetusvirhe - tuntematon kohta \"%s\" (kerro ylläpidolle)\n"
@@ -1056,14 +1056,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Käyttö: lastlog [valitsimet]\n"
"\n"
"Valitsimet:\n"
" -u, --login TUNNUS Tulosta lastlog-tietue käyttäjälle TUNNUS\n"
" -u, --user TUNNUS Tulosta lastlog-tietue käyttäjälle TUNNUS\n"
" -h, --help Näytä tämä ohje ja lopeta\n"
" -t, --time PÄIVÄÄ Tulosta vain PÄIVÄÄ tuoreemmat lastlog-tietueet\n"
@@ -1250,7 +1250,7 @@ msgstr "tuntematon gid: %lu\n"
msgid "Sorry.\n"
msgstr "Pahoittelen.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "liian monta ryhmää\n"

BIN
po/fr.gmo

Binary file not shown.

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-20 22:39+0200\n"
"Last-Translator: Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -161,13 +161,13 @@ msgstr "Impossible de changer le répertoire racine en « %s »\n"
msgid "malloc(%d) failed\n"
msgstr "échec de malloc(%d)\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr ""
"Impossible d'allouer l'espace pour l'information sur la configuration.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1074,14 +1074,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Usage: lastlog [options]\n"
"\n"
"Options :\n"
" -u, --login LOGIN afficher l'enregistrement « lastlog » "
" -u, --user LOGIN afficher l'enregistrement « lastlog » "
"pour l'utilisateur dont le compte est LOGIN\n"
" -h, --help afficher ce message d'aide et quitter\n"
" -t, --time JOURS afficher uniquement les enregistrements "
@@ -1270,7 +1270,7 @@ msgstr "gid inconnu: %lu\n"
msgid "Sorry.\n"
msgstr " \n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "trop de groupes\n"

BIN
po/he.gmo

Binary file not shown.

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-07-21 23:59+0300\n"
"Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n"
"Language-Team: Hebrew <en@li.org>\n"
@@ -156,12 +156,12 @@ msgstr "לא יכול לשנות ספרית שורש ל-\"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) נכשל\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "לא יכול להקצות מקום בשביל מידע על הקונפיגורציה.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "שגיאת הגדרות - רכיב לא ידוע '%s' (הודע למנהל)\n"
@@ -1030,7 +1030,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1209,7 +1209,7 @@ msgstr ""
msgid "Sorry.\n"
msgstr ""
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr ""

BIN
po/id.gmo

Binary file not shown.

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-04-09 00:12+0700\n"
"Last-Translator: Parlin Imanuel Toh <parlin@ui.edu>\n"
"Language-Team: Debian Indonesia <debid@yahoogroups.com>\n"
@@ -152,12 +152,12 @@ msgstr "Tidak dapat mengubah direktori root ke \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) gagal\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Tidak dapat mengalokasikan ruang untuk informasi konfigurasi.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1030,7 +1030,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1217,7 +1217,7 @@ msgstr "gid tidak dikenal: %lu\n"
msgid "Sorry.\n"
msgstr "Maaf.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "terlalu banyak grup\n"

BIN
po/it.gmo

Binary file not shown.

View File

@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-17 21:57+0200\n"
"Last-Translator: Danilo Piazzalunga <danilopiazza@libero.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
@@ -176,12 +176,12 @@ msgstr "Impossibile cambiare la directory root in «%s»\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) non riuscita\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Impossibile allocare spazio per le informazioni di configurazione.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1091,14 +1091,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Uso: lastlog [OPZIONI]\n"
"\n"
"Opzioni:\n"
" -u, --login LOGIN mostra il record di ultimo accesso per l'utente\n"
" -u, --user LOGIN mostra il record di ultimo accesso per l'utente\n"
" specificato da LOGIN\n"
" -h, --help mostra questo messaggio di aiuto ed esce\n"
" -t, --time GIORNI mostra solo i record di ultimo accesso più recenti\n"
@@ -1290,7 +1290,7 @@ msgstr "gid «%lu» sconosciuto\n"
msgid "Sorry.\n"
msgstr "Spiacente.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "troppi gruppi\n"

BIN
po/ja.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 1990827\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2000-06-18 120:22+0900\n"
"Last-Translator: Yasuyuki Furukawa <furukawa@vinelinux.org>\n"
"Language-Team: Japanese\n"
@@ -153,12 +153,12 @@ msgstr "ルートディレクトリを \"%s\"へ変更できません\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) に失敗しました\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "設定情報用の空き容量が確保できませんでした.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "設定エラー - 不明なアイテム '%s'です (notify administrator)\n"
@@ -1031,7 +1031,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1214,7 +1214,7 @@ msgstr "不明なグループIDです: %lu\n"
msgid "Sorry.\n"
msgstr "申し訳ございません.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "グループが多すぎます\n"

BIN
po/ko.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-19 16:02+0900\n"
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
"Language-Team: Korean <ko@li.org>\n"
@@ -155,12 +155,12 @@ msgstr "루트 디렉토리를 \"%s\"(으)로 바꿀 수 없습니다\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d)에 실패했음\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "설정 정보를 위한 공간 확보를 할 수 없습니다.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1054,14 +1054,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"사용법: lastlog [옵션]\n"
"\n"
"옵션:\n"
" -u, --login LOGIN\tLOGIN이라는 사용자의 최근 기록을 봅니다\n"
" -u, --user LOGIN\tLOGIN이라는 사용자의 최근 기록을 봅니다\n"
" -h, --help\t\t이 도움말 메세지를 표시하고 끝납니다\n"
" -t, --time DAYS\tDAYS일 내의 최근 로그 기록만 표시합니다\n"
@@ -1249,7 +1249,7 @@ msgstr "알 수 없는 GID: %lu\n"
msgid "Sorry.\n"
msgstr "죄송합니다.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "그룹들이 너무나 많습니다\n"

BIN
po/nb.gmo

Binary file not shown.

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-06-03 21:42+0200\n"
"Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
"Language-Team: Norwegian (Nynorsk) <i18n-nn@lister.ping.uio.no>\n"
@@ -162,12 +162,12 @@ msgstr "Kan ikke endre rot mappa til \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) feilet\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Fant ikke plass til config-info.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "feil med oppsettet - ukjent element «%s» (kontakt administrator)\n"
@@ -1039,7 +1039,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1226,7 +1226,7 @@ msgstr "ukjent gid: %lu\n"
msgid "Sorry.\n"
msgstr "Beklager.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "For mange grupper\n"

BIN
po/nl.gmo

Binary file not shown.

View File

@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-24 15:38+0100\n"
"Last-Translator: Bart Cornelis <cobaco@linux.be>\n"
"Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
@@ -157,12 +157,12 @@ msgstr "Kan de hoofdmap niet veranderen naar '%s'\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) is mislukt\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Kon geen ruimte toewijzen voor de configuratie-informatie.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1062,14 +1062,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Gebruik: lastlog [opties]\n"
"\n"
"Opties:\n"
" -u, --login LOGIN\tprint het lastlog-record van de gebruiker LOGIN\n"
" -u, --user LOGIN\tprint het lastlog-record van de gebruiker LOGIN\n"
" -h, --help\t\ttoon dit bericht en sluit af\n"
" -t, --time DAGEN\tprint enkel lastlog-records van de laatste DAGEN dagen\n"
@@ -1255,7 +1255,7 @@ msgstr "onbekende gid: %lu\n"
msgid "Sorry.\n"
msgstr "Sorry.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "teveel groepen\n"

BIN
po/nn.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-06-03 21:41+0200\n"
"Last-Translator: Håvard Korsvoll <korsvoll@skulelinux.no>\n"
"Language-Team: Norwegian (Nynorsk) <i18n-nn@lister.ping.uio.no>\n"
@@ -155,12 +155,12 @@ msgstr "Klarer ikkje endra rotmappe til «%s»\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) feila\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Klarte ikkje finna plass for oppsettsinformasjon.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "oppsettsfeil - ukjent element «%s» (gje melding til administrator)\n"
@@ -1031,7 +1031,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1219,7 +1219,7 @@ msgstr "ukjent gid: %lu\n"
msgid "Sorry.\n"
msgstr "Årsak.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "for mange grupper\n"

BIN
po/pl.gmo

Binary file not shown.

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow-4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-02-29 00:27+01:00\n"
"Last-Translator: Tomasz Kłoczko <kloczek@pld.org.pl>\n"
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
@@ -163,12 +163,12 @@ msgstr "Nie można zmienić głównego katalogu na \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) nie powiodło się\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Nie można przydzielić miejsca dla informacji o konfiguracji.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1065,14 +1065,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Użycie: lastlog [opcje]\n"
"\n"
"Opcje:\n"
" -u, --login LOGIN\twyświetl rekord lastlog tylko dla użytkownika o loginie "
" -u, --user LOGIN\twyświetl rekord lastlog tylko dla użytkownika o loginie "
"LOGIN\n"
" -h, --help\t\t\twyświetlenie tego opisu i zakończenie\n"
" -t, --time DAYS\twyświetl tylko rekordy lastlog nei starsze niż DAYS dni\n"
@@ -1260,7 +1260,7 @@ msgstr "nieznany gid: %lu\n"
msgid "Sorry.\n"
msgstr "Wybacz.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "zbyt wiele grup\n"

BIN
po/pt.gmo

Binary file not shown.

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-17 22:55+0000\n"
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -153,12 +153,12 @@ msgstr "Não é possível mudar a directoria de raiz para \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "O malloc(%d) falhou\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Não foi possível alocar o espaço para a informação de configuração.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1058,14 +1058,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Utilização: lastlog [opções]\n"
"\n"
"Opções:\n"
" -u, --login LOGIN\tmostra o registo de lastlog para o utilizador LOGIN\n"
" -u, --user LOGIN\tmostra o registo de lastlog para o utilizador LOGIN\n"
" -h, --help\t\tmostra esta mensagem e sai\n"
" -t, --time DIAS\tmostra apenas registos de lastlog mais recentes que DIAS\n"
@@ -1253,7 +1253,7 @@ msgstr "gid desconhecido: %lu\n"
msgid "Sorry.\n"
msgstr "Desculpe.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "demasiados grupos\n"

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-06-12 17:16-0300\n"
"Last-Translator: André Luís Lopes <andrelop@debian.org>\n"
"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
@@ -154,12 +154,12 @@ msgstr "Não foi possível mudar o diretório raíz para \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) falhou\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Não foi possível alocar espaço para a informação de configuração.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1035,7 +1035,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1222,7 +1222,7 @@ msgstr "gid desconhecido : %lu\n"
msgid "Sorry.\n"
msgstr "Desculpe.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "muitos grupos\n"

BIN
po/ro.gmo

Binary file not shown.

208
po/ro.po
View File

@@ -2,21 +2,21 @@
# translation of shadow_ro.po to Romanian
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
# Sorin Batariuc <sorin@bonbon.net>, 2004.
# Sorin Batariuc <sorin@bonbon.net>, 2004, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: ro\n"
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"PO-Revision-Date: 2004-12-14 18:17+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-05-14 02:20+0300\n"
"Last-Translator: Sorin Batariuc <sorin@bonbon.net>\n"
"Language-Team: Romanian\n"
"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: KBabel 1.3.1\n"
"Plural-Forms: nplurals=2; plural=n>1\n"
"X-Generator: KBabel 1.9.1\n"
#: libmisc/addgrps.c:56
#, c-format
@@ -82,7 +82,7 @@ msgid "You may not change $%s\n"
msgstr "Nu puteţi schimba $%s\n"
#: libmisc/failure.c:229
#, fuzzy, c-format
#, c-format
msgid ""
"%d failure since last login.\n"
"Last was %s on %s.\n"
@@ -90,9 +90,11 @@ msgid_plural ""
"%d failures since last login.\n"
"Last was %s on %s.\n"
msgstr[0] ""
"%d eşuare de la ultima autentificare. Ultima oară a fost %s în %s.\n"
"%d eşuare de la ultima autentificare.\n"
"Ultima oară a fost %s în %s.\n"
msgstr[1] ""
"%d eşuare de la ultima autentificare. Ultima oară a fost %s în %s.\n"
"%d eşuări de la ultima autentificare.\n"
"Ultima oară a fost %s în %s.\n"
#: libmisc/limits.c:397
#, c-format
@@ -105,7 +107,7 @@ msgstr "Aveţi mesaje noi."
#: libmisc/mail.c:72
msgid "No mail."
msgstr "N-aveţi mesaje."
msgstr "Nu aveţi mesaje."
#: libmisc/mail.c:74
msgid "You have mail."
@@ -128,7 +130,7 @@ msgstr "passwd: %s\n"
#: libmisc/pam_pass.c:49
msgid "passwd: password updated successfully\n"
msgstr ""
msgstr "passwd: parolă actualizată cu succes\n"
#: libmisc/setupenv.c:207
#, c-format
@@ -159,12 +161,12 @@ msgstr "Nu pot schimba directorul rădăcină la \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "eşuare malloc(%d)\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Nu pot aloca spaţiu pentru informaţiile despre configurare.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -180,13 +182,13 @@ msgid "%s's Password: "
msgstr "Parola %s: "
#: src/chage.c:112
#, fuzzy, c-format
#, c-format
msgid ""
"Usage: chage [-l] [-m min_days] [-M max_days] [-W warn]\n"
" [-I inactive] [-E expire] [-d last_day] user\n"
msgstr ""
"Utilizare: %s [-l] [-m min_zile] [-M max_zile] [-W avertiza]\n"
"\t[-I inactivă] [-E expiră] [-d ultima_zi] utilizator\n"
"Utilizare: chage [-l] [-m min_zile] [-M max_zile] [-W avertiza]\n"
" [-I inactivă] [-E expiră] [-d ultima_zi] utilizator\n"
#: src/chage.c:145 src/chfn.c:139 src/chsh.c:89
#, c-format
@@ -218,44 +220,44 @@ msgid "Account Expiration Date (YYYY-MM-DD)"
msgstr "Data expirării contului (AAAA-LL-ZZ)"
#: src/chage.c:231
#, fuzzy, c-format
#, c-format
msgid "Last password change\t\t\t\t\t: "
msgstr "Ultima schimbare de parolă (AAAA-LL-ZZ)"
msgstr "Ultima schimbare de parolă\t\t\t\t\t: "
#: src/chage.c:233 src/chage.c:247 src/chage.c:263 src/chage.c:276
#, fuzzy, c-format
#, c-format
msgid "never\n"
msgstr "Niciodată\n"
msgstr "niciodată\n"
#: src/chage.c:244
#, fuzzy, c-format
#, c-format
msgid "Password expires\t\t\t\t\t: "
msgstr "Parola expiră:\t"
msgstr "Parola expiră:\t\t\t\t\t\t: "
#: src/chage.c:260
#, fuzzy, c-format
#, c-format
msgid "Password inactive\t\t\t\t\t: "
msgstr "Parolă inactivă:\t"
msgstr "Parolă inactivă\t\t\t\t\t\t: "
#: src/chage.c:274
#, fuzzy, c-format
#, c-format
msgid "Account expires\t\t\t\t\t\t: "
msgstr "Contul expiră:\t"
msgstr "Contul expiră\t\t\t\t\t\t: "
#: src/chage.c:290
#, c-format
msgid "Minimum number of days between password change\t\t: %ld\n"
msgstr ""
msgstr "Numărul minim de zile dintre modificările de parolă\t\t: %ld\n"
#: src/chage.c:292
#, fuzzy, c-format
#, c-format
msgid "Maximum number of days between password change\t\t: %ld\n"
msgstr "Numărul maxim de încercări a fost atins (%d)\n"
msgstr "Numărul maxim de zile dintre modificările de parolă\t\t: %ld\n"
#: src/chage.c:294
#, c-format
msgid "Number of days of warning before password expires\t: %ld\n"
msgstr ""
msgstr "Numărul de zile de avertizări dinaintea expirării parolei\t: %ld\n"
#: src/chage.c:431
#, c-format
@@ -265,9 +267,9 @@ msgstr "%s: nu include \"l\" cu alte semnalizatoare\n"
#: src/chage.c:443 src/chage.c:571 src/chfn.c:268 src/chfn.c:277
#: src/chfn.c:286 src/chfn.c:295 src/chfn.c:304 src/chfn.c:370
#: src/gpasswd.c:150 src/login.c:421 src/passwd.c:823 src/passwd.c:859
#, fuzzy, c-format
#, c-format
msgid "%s: permission denied.\n"
msgstr "%s: permisiune refuzată\n"
msgstr "%s: permisiune refuzată.\n"
#: src/chage.c:476 src/chage.c:682 src/chpasswd.c:178 src/groupadd.c:489
#: src/groupdel.c:275 src/groupmod.c:457 src/newusers.c:361 src/useradd.c:1527
@@ -390,9 +392,9 @@ msgid "%s: `%s' is the NIS master for this client.\n"
msgstr "%s: `%s' este stăpânul NIS pentru acest client.\n"
#: src/chfn.c:382
#, fuzzy, c-format
#, c-format
msgid "%s: Permission denied.\n"
msgstr "%s: permisiune refuzată\n"
msgstr "%s: permisiune refuzată.\n"
#: src/chfn.c:446
#, c-format
@@ -479,8 +481,8 @@ msgstr ""
"\n"
"Opţiuni:\n"
" -e, --encrypted\tparola furnizată este criptată\n"
" -h, --help\t\tafişez acest mesaj de ajutor şi termin\n"
" -m, --md5\t\tfolosesc criptarea MD5 în loc de DES când parola\n"
" -h, --help\t\tafişare acest mesaj de ajutor şi ieşire\n"
" -m, --md5\t\tutilizează criptarea MD5 în loc de DES atunci când parola\n"
"\t\t\tfurnizată nu este criptată\n"
#: src/chpasswd.c:189
@@ -594,11 +596,30 @@ msgid ""
"\t\t\t\tand limits (if used with -r, -m or -l options) only\n"
"\t\t\t\tfor user with LOGIN\n"
msgstr ""
"Utilizare: faillog [opţiuni]\n"
"\n"
"Opţiuni:\n"
" -a, --all\t\t\tafişare înregistrările de jurnal pentru eşuări pentru toţi "
"utilizatorii\n"
" -h, --help\t\t\tafişare acest mesaj de ajutor şi ieşire\n"
" -l, --lock-time SEC\t\tdupă eşuarea autentificării se închide contorul "
"pentru SEC secunde\n"
" -m, --maximum MAX\t\tsetează contorul maxim de autentificări eşuate la "
"MAX\n"
" -r, --reset\t\t\tresetează contoarele de autentificări eşuate\n"
" -t, --time ZILE\t\tafişare înregistrările de jurnal pentru eşuări mai "
"recente de ZILE\n"
" -u, --user LOGIN\t\tafişare înregistrări de jurnal pentru eşuări sau "
"menţine contoarele de eşuări\n"
"\t\t\t\tşi doar le limitează (dacă este folosit cu opţiunile -r, -m sau -l)\n"
"\t\t\t\tpentru utilizatorul cu LOGIN\n"
#: src/faillog.c:87
#, c-format
msgid "Login Failures Maximum Latest On\n"
msgstr ""
"Autentificare Eşuări Maxim Cea mai recentă De "
"la\n"
#: src/faillog.c:105
#, c-format
@@ -616,9 +637,9 @@ msgid "Unknown User: %s\n"
msgstr "Utilizator necunoscut: %s\n"
#: src/gpasswd.c:71
#, fuzzy, c-format
#, c-format
msgid "Usage: %s [-r|-R] group\n"
msgstr "utilizare: %s [-r|-R] grup\n"
msgstr "Utilizare: %s -r|-R] grup\n"
#: src/gpasswd.c:72
#, c-format
@@ -738,9 +759,9 @@ msgid "%s: can't unlock file\n"
msgstr "%s: nu pot descuia fişierul\n"
#: src/groupadd.c:97
#, fuzzy, c-format
#, c-format
msgid "Usage: groupadd [-g gid [-o]] [-f] group\n"
msgstr "utilizare: groupadd [-g id_grup [-o]] grup\n"
msgstr "Utilizare: groupadd [-g id_grup [-o]] [-f] grup\n"
#: src/groupadd.c:161 src/groupadd.c:170 src/groupmod.c:174 src/groupmod.c:197
#: src/useradd.c:857 src/usermod.c:514 src/usermod.c:636
@@ -764,7 +785,7 @@ msgid "%s: can't get unique gid\n"
msgstr "%s: nu pot prelua id unic de grup\n"
#: src/groupadd.c:280 src/groupmod.c:283
#, fuzzy, c-format
#, c-format
msgid "%s: %s is not a valid group name\n"
msgstr "%s: %s nu este un nume de grup valid\n"
@@ -816,9 +837,9 @@ msgid "%s: group %s exists\n"
msgstr "%s: grupul %s există\n"
#: src/groupdel.c:83
#, fuzzy, c-format
#, c-format
msgid "Usage: groupdel group\n"
msgstr "utilizare: groupdel grup\n"
msgstr "Utilizare: groupdel grup\n"
#: src/groupdel.c:96 src/groupmod.c:178 src/groupmod.c:201
#, c-format
@@ -851,9 +872,9 @@ msgid "%s: %s is the NIS master\n"
msgstr "%s: %s este stăpân NIS\n"
#: src/groupmod.c:98
#, fuzzy, c-format
#, c-format
msgid "Usage: groupmod [-g gid [-o]] [-n name] group\n"
msgstr "utilizare: groupmod [-g id_grup [-o]] [-n nume] grup\n"
msgstr "Utilizare: groupmod [-g id_grup [-o]] [-n nume] grup\n"
#: src/groupmod.c:156
#, c-format
@@ -1025,14 +1046,14 @@ msgid "%s: can't delete shadow group file\n"
msgstr "%s: nu pot şterge fişierul de parole criptate de grupuri\n"
#: src/id.c:53
#, fuzzy, c-format
#, c-format
msgid "Usage: id [-a]\n"
msgstr "utilizare: id [-a]\n"
msgstr "Utilizare: id [-a]\n"
#: src/id.c:55
#, fuzzy, c-format
#, c-format
msgid "Usage: id\n"
msgstr "utilizare: id\n"
msgstr "Utilizare: id\n"
#: src/id.c:169
#, c-format
@@ -1040,22 +1061,23 @@ msgid " groups="
msgstr " grupuri="
#: src/lastlog.c:64
#, fuzzy, c-format
#, c-format
msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Utilizare: chpasswd [opţiuni]\n"
"Utilizare: lastlog [opţiuni]\n"
"\n"
"Opţiuni:\n"
" -e, --encrypted\tparola furnizată este criptată\n"
" -h, --help\t\tafişez acest mesaj de ajutor şi termin\n"
" -m, --md5\t\tfolosesc criptarea MD5 în loc de DES când parola\n"
"\t\t\tfurnizată nu este criptată\n"
" -u, --user LOGIN\tafişare ultima înregistrare de jurnal pentru "
"utilizatorul cu LOGIN-ul specificat\n"
" -h, --help\t\tafişare acest mesaj de ajutor şi ieşire\n"
" -t, --time ZILE\tafişare doar ultimile înregistrari de jurnal mai recente "
"decât ZILE\n"
#: src/lastlog.c:90
#, c-format
@@ -1072,9 +1094,9 @@ msgid "**Never logged in**"
msgstr "**Niciodată autentificat**"
#: src/login.c:156
#, fuzzy, c-format
#, c-format
msgid "Usage: %s [-p] [name]\n"
msgstr "utilizare: %s [-p] [nume]\n"
msgstr "Utilizare: %s [-p] [nume]\n"
#: src/login.c:159
#, c-format
@@ -1176,9 +1198,9 @@ msgid "%s: cannot open DBM files for %s\n"
msgstr "%s: nu pot deschide fişierele DBM pentru %s\n"
#: src/mkpasswd.c:286
#, fuzzy, c-format
#, c-format
msgid "%s: the line beginning with %.16s... is too long\n"
msgstr "%s: începutul cu "
msgstr "%s: linia care începe cu %.16s... este prea lungă\n"
#: src/mkpasswd.c:313
#, c-format
@@ -1186,14 +1208,14 @@ msgid "%s: error parsing line \"%s\"\n"
msgstr "%s: eroare la analiza liniei \"%s\"\n"
#: src/mkpasswd.c:321 src/mkpasswd.c:326 src/mkpasswd.c:331 src/mkpasswd.c:336
#, fuzzy, c-format
#, c-format
msgid "adding record for name %s\n"
msgstr "adăugare înregistrare pentru nume "
msgstr "adăugare înregistrare pentru nume %s\n"
#: src/mkpasswd.c:342 src/mkpasswd.c:348 src/mkpasswd.c:353 src/mkpasswd.c:358
#, fuzzy, c-format
#, c-format
msgid "%s: error adding record for %s\n"
msgstr "%s: eroare la adăugare înregistrare pentru "
msgstr "%s: eroare la adăugare înregistrare pentru %s\n"
#: src/mkpasswd.c:376
#, c-format
@@ -1216,14 +1238,14 @@ msgid "Usage: %s [-vf] [-p|g] file\n"
msgstr "Utilizare: %s [-vf] [-p|g] fişier\n"
#: src/newgrp.c:61
#, fuzzy, c-format
#, c-format
msgid "Usage: newgrp [-] [group]\n"
msgstr "utilizare: newgrp [-] [grup]\n"
msgstr "Utilizare: newgrp [-] [grup]\n"
#: src/newgrp.c:63
#, fuzzy, c-format
#, c-format
msgid "Usage: sg group [[-c] command]\n"
msgstr "utilizare: sg grup [[-c] comanda]\n"
msgstr "Utilizare: sg grup [[-c] comanda]\n"
#: src/newgrp.c:131
#, c-format
@@ -1239,7 +1261,7 @@ msgstr "id grup necunoscut: %lu\n"
msgid "Sorry.\n"
msgstr "Scuze.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "prea multe grupuri\n"
@@ -1310,9 +1332,9 @@ msgid "%s: error updating files\n"
msgstr "%s: eroare la actualizarea fişierelor\n"
#: src/passwd.c:154
#, fuzzy, c-format
#, c-format
msgid "Usage: %s [-f|-s] [name]\n"
msgstr "utilizare: %s [-f|-s] [nume]\n"
msgstr "Utilizare: %s [-f|-s] [nume]\n"
#: src/passwd.c:158
#, c-format
@@ -1392,9 +1414,10 @@ msgid "%s: repository %s not supported\n"
msgstr "%s: depozitul %s nu este suportat\n"
#: src/passwd.c:884
#, fuzzy, c-format
#, c-format
msgid "%s: You may not view or modify password information for %s.\n"
msgstr "Nu puteţi schimba consola pentru %s.\n"
msgstr ""
"%s: Nu puteţi vizualiza sau modifica informaţiile despre parola lui %s.\n"
#: src/passwd.c:934
#, c-format
@@ -1631,29 +1654,30 @@ msgid "%s: too many groups specified (max %d).\n"
msgstr "%s: prea multe grupuri specificate (maximum %d).\n"
#: src/useradd.c:660
#, fuzzy, c-format
#, c-format
msgid "Usage: useradd [-u uid [-o]] [-g group] [-G group,...] \n"
msgstr "utilizare: %s\t[-u id_utilizator [-o]] [-g grup] [-G grup,...] \n"
msgstr "Utilizare: useradd [-u id_utilizator [-o]] [-g grup] [-G grup,...] \n"
#: src/useradd.c:663
#, fuzzy, c-format
#, c-format
msgid " [-d home] [-s shell] [-c comment] [-m [-k template]]\n"
msgstr "\t\t[-d acasă] [-s consolă] [-c comentariu] [-m [-k şablon]]\n"
msgstr ""
" [-d acasă] [-s consolă] [-c comentariu] [-m [-k şablon]]\n"
#: src/useradd.c:665 src/useradd.c:671
#, fuzzy, c-format
#, c-format
msgid " [-f inactive] [-e expire]\n"
msgstr "\t\t[-f inactivă] [-e expiră ]\n"
msgstr " [-f inactivă] [-e expiră ]\n"
#: src/useradd.c:667
#, fuzzy, c-format
#, c-format
msgid " [-p passwd] name\n"
msgstr "[-p passwd] nume\n"
msgstr " [-p passwd] nume\n"
#: src/useradd.c:669
#, fuzzy, c-format
#, c-format
msgid " useradd -D [-g group] [-b base] [-s shell]\n"
msgstr " %s\t-D [-g grup] [-b base] [-s consolă]\n"
msgstr " useradd -D [-g grup] [-b baza] [-s consolă]\n"
#: src/useradd.c:756 src/usermod.c:444
#, c-format
@@ -1782,11 +1806,13 @@ msgstr "%s: nu pot crea directorul %s\n"
#, c-format
msgid "No group named \"mail\" exists, creating mail spool with mode 0600.\n"
msgstr ""
"Nu există nici un grup cu numele de \"mail\", se crează directorul de poştă "
"cu modul 0600.\n"
#: src/useradd.c:1446
#, fuzzy, c-format
#, c-format
msgid "Can't create mail spool for user %s.\n"
msgstr "%s: nu pot actualiza intrarea pentru utilizatorul %s\n"
msgstr "Nu pot crea directorul de poştă pentru utilizatorul %s.\n"
#: src/useradd.c:1550 src/usermod.c:919
#, c-format
@@ -1807,9 +1833,9 @@ msgid "%s: warning: CREATE_HOME not supported, please use -m instead.\n"
msgstr "%s: avertisment: CREATE_HOME nu este suportat, vă rog folosiţi -m.\n"
#: src/userdel.c:108
#, fuzzy, c-format
#, c-format
msgid "Usage: %s [-r] name\n"
msgstr "utilizare: %s [-r] nume\n"
msgstr "Utilizare: %s [-r] nume\n"
#: src/userdel.c:160 src/userdel.c:221
#, c-format
@@ -1874,9 +1900,9 @@ msgid "%s: error removing directory %s\n"
msgstr "%s: eroare la ştergerea directorului %s\n"
#: src/usermod.c:289
#, fuzzy, c-format
#, c-format
msgid "Usage: %s\t[-u uid [-o]] [-g group] [-G group,...] \n"
msgstr "utilizare: %s\t[-u id_utilizator [-o]] [-g grup] [-G grup,...] \n"
msgstr "Utilizare: %s\t[-u id_utilizator [-o]] [-g grup] [-G grup,...] \n"
#: src/usermod.c:293
#, c-format
@@ -1884,7 +1910,7 @@ msgid "\t\t[-d home [-m]] [-s shell] [-c comment] [-l new_name]\n"
msgstr "\t\t[-d acasă [-m]] [-s consolă] [-c comentariu] [-l nume_nou]\n"
#: src/usermod.c:296
#, fuzzy, c-format
#, c-format
msgid "[-f inactive] [-e expire] "
msgstr "[-f inactivă] [-e expiră ] "

BIN
po/ru.gmo

Binary file not shown.

801
po/ru.po

File diff suppressed because it is too large Load Diff

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\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"
@@ -156,12 +156,12 @@ msgstr ""
msgid "malloc(%d) failed\n"
msgstr ""
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr ""
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1028,7 +1028,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1207,7 +1207,7 @@ msgstr ""
msgid "Sorry.\n"
msgstr ""
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr ""

BIN
po/sk.gmo

Binary file not shown.

View File

@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-25 11:14+0200\n"
"Last-Translator: Peter KLFMANiK Mann <Peter.Mann@tuke.sk>\n"
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
@@ -159,12 +159,12 @@ msgstr "Koreňový adresár sa nedá zmeniť na \"%s\".\n"
msgid "malloc(%d) failed\n"
msgstr "volanie malloc(%d) zlyhalo\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Nemôžem vyhradiť dostatok miesta pre konfiguračné údaje.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1063,14 +1063,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Použitie: lastlog [voľby]\n"
"\n"
"Voľby:\n"
" -u, --login LOGIN\tvypíše posledné prihlásenia používateľa uvedeného ako "
" -u, --user LOGIN\tvypíše posledné prihlásenia používateľa uvedeného ako "
"LOGIN\n"
" -h, --help\t\tzobrazí túto nápovedu a ukončí sa\n"
" -t, --time DAYS\tvypíše posledné prihlásenia nie staršie ako DAYS dní\n"
@@ -1257,7 +1257,7 @@ msgstr "gid %lu je neznáme\n"
msgid "Sorry.\n"
msgstr "Ľutujem.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "príliš mnoho skupín\n"

BIN
po/sq.gmo

Binary file not shown.

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-11-20 03:28+0100\n"
"Last-Translator: Elian Myftiu <pinguini AT fastwebnet DOT it>\n"
"Language-Team: Albanian <gnome-albanian-perkthyesit@lists.sourceforge.net>\n"
@@ -156,12 +156,12 @@ msgstr ""
msgid "malloc(%d) failed\n"
msgstr ""
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr ""
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1028,7 +1028,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1207,7 +1207,7 @@ msgstr ""
msgid "Sorry.\n"
msgstr ""
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr ""

BIN
po/sv.gmo

Binary file not shown.

661
po/sv.po

File diff suppressed because it is too large Load Diff

BIN
po/tl.gmo

Binary file not shown.

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow 4.0.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-01-26 22:00+0800\n"
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
@@ -158,12 +158,12 @@ msgstr "Hindi mapalitan ang root directory sa \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "sawi ang malloc(%d)\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Hindi makareserba ng lugar para sa impormasyong pagsasaayos.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1046,7 +1046,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1240,7 +1240,7 @@ msgstr "di kilalang gid: %lu\n"
msgid "Sorry.\n"
msgstr "Ipagpaumanhin.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "labis ang dami ng mga grupo\n"

BIN
po/tr.gmo

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-06-13 10:27+0300\n"
"Last-Translator: Mehmet Türker <mturker@innova.com.tr>\n"
"Language-Team: Turkish <debian-l10n-turkish@lists.debian.org>\n"
@@ -154,12 +154,12 @@ msgstr "Kök dizin \"%s\" olarak değiştirilemiyor\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) başarısız oldu\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Yapılandırma bilgileri için yer ayrılamadı.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1031,7 +1031,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1219,7 +1219,7 @@ msgstr "bilinmeyen gid: %lu\n"
msgid "Sorry.\n"
msgstr "Üzgünüm.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "çok fazla grup\n"

BIN
po/uk.gmo

Binary file not shown.

View File

@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow-4.0.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-04-19 23:22+0300\n"
"Last-Translator: Roman Festchook <linux@polesye.net>\n"
"Language-Team: <linux@polesye.net>\n"
@@ -157,12 +157,12 @@ msgstr "Не можу змінити кореневу теку на \"%s\"\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) не виконано\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "Не можу виділити ресурси для конфігураційних данних.\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr ""
@@ -1058,14 +1058,14 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
"Використання: lastlog [опції]\n"
"\n"
"Опції:\n"
" -u, --login ЛОГІН\tвивести записи останніх входів для користувача з "
" -u, --user ЛОГІН\tвивести записи останніх входів для користувача з "
"ЛОГІНом\n"
" -h, --help\t\tвивести допомогу та вийти\n"
" -t, --time ДНІВ\tвивести лише записи свіжіші за ДНІВ\n"
@@ -1252,7 +1252,7 @@ msgstr "невідомий gid: %lu\n"
msgid "Sorry.\n"
msgstr "Вибачте.\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "занадто багато груп\n"

BIN
po/vi.gmo Normal file

Binary file not shown.

2037
po/vi.po Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2004-05-14 10:26+1200\n"
"Last-Translator: Carlos Z.F. Liu <carlos_liu@yahoo.com>\n"
"Language-Team: Chinese (simplified) <i18n-translation@lists.linux.net.cn>\n"
@@ -153,12 +153,12 @@ msgstr "无法将根目录改变为“%s”\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) 失败\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "无法为配置信息分配空间。\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "配置错误 - 未知项目“%s”(请通知管理员)\n"
@@ -1029,7 +1029,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1216,7 +1216,7 @@ msgstr "未知的 gid%lu\n"
msgid "Sorry.\n"
msgstr "抱歉。\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "用户组过多\n"

Binary file not shown.

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: shadow\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-25 12:28+0200\n"
"POT-Creation-Date: 2005-05-23 12:26+0200\n"
"PO-Revision-Date: 2005-01-06 09:58+0800\n"
"Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
"Language-Team: Chinese (traditional) <<zh-l10n@linux.org.tw>>\n"
@@ -157,12 +157,12 @@ msgstr "無法將根目錄改變為“%s”\n"
msgid "malloc(%d) failed\n"
msgstr "malloc(%d) 失敗\n"
#: lib/getdef.c:265
#: lib/getdef.c:262
#, c-format
msgid "Could not allocate space for config info.\n"
msgstr "無法為設定訊息配置空間。\n"
#: lib/getdef.c:319
#: lib/getdef.c:303
#, c-format
msgid "configuration error - unknown item '%s' (notify administrator)\n"
msgstr "配置錯誤 - 未知項目“%s”(請通知管理員)\n"
@@ -1039,7 +1039,7 @@ msgid ""
"Usage: lastlog [options]\n"
"\n"
"Options:\n"
" -u, --login LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -u, --user LOGIN\tprint lastlog record for user with specified LOGIN\n"
" -h, --help\t\tdisplay this help message and exit\n"
" -t, --time DAYS\tprint only lastlog records more recent than DAYS\n"
msgstr ""
@@ -1232,7 +1232,7 @@ msgstr "未知的 gid%lu\n"
msgid "Sorry.\n"
msgstr "抱歉。\n"
#: src/newgrp.c:467
#: src/newgrp.c:472
#, c-format
msgid "too many groups\n"
msgstr "使用者群組過多\n"