Merge upstream 4.2.1
This commit is contained in:
-47
@@ -1,47 +0,0 @@
|
||||
*~
|
||||
lib*.a
|
||||
*.o
|
||||
*.lo
|
||||
*.la
|
||||
*.gmo
|
||||
.deps
|
||||
.libs
|
||||
|
||||
*.patch
|
||||
*.rej
|
||||
*.orig
|
||||
|
||||
Makefile
|
||||
Makefile.in
|
||||
|
||||
/ABOUT-NLS
|
||||
/aclocal.m4
|
||||
/autom4te.cache
|
||||
/config.guess
|
||||
/config.h
|
||||
/config.h.in
|
||||
/config.log
|
||||
/config.rpath
|
||||
/config.status
|
||||
/config.sub
|
||||
/configure
|
||||
/depcomp
|
||||
/install-sh
|
||||
/libtool
|
||||
/ltmain.sh
|
||||
/m4
|
||||
/missing
|
||||
/stamp-h1
|
||||
/ylwrap
|
||||
|
||||
/po/*.header
|
||||
/po/*.sed
|
||||
/po/*.sin
|
||||
/po/Makefile.in.in
|
||||
/po/Makevars.template
|
||||
/po/POTFILES
|
||||
/po/Rules-quot
|
||||
/po/stamp-po
|
||||
|
||||
/shadow.spec
|
||||
/libmisc/getdate.c
|
||||
@@ -1,3 +1,17 @@
|
||||
2014-05-09 Christian Perrier <bubulle@debian.org>
|
||||
|
||||
* Include patches only included in Debian for 4.2
|
||||
* man/su.1.xml: Fix typo
|
||||
* etc/login.defs src/newusers.c src/useradd.c libmisc/find_new_sub_uids.c libmisc/find_new_sub_gids.c:
|
||||
configure userns
|
||||
* po/vi.po: Vietnamese translation update
|
||||
* po/fr.po, man/po/fr.po: French translation update
|
||||
* po/de.po: German translation update
|
||||
|
||||
2014-04-30 Christian Perrier <bubulle@debian.org>
|
||||
|
||||
* Release 4.2 "as is"
|
||||
|
||||
2013-08-25 Nicolas François <nicolas.francois@centraliens.net>
|
||||
|
||||
* src/vipw.c: After waitpid(), use errno only if waitpid returned
|
||||
|
||||
@@ -1,6 +1,18 @@
|
||||
$Id$
|
||||
|
||||
shadow-4.1.5.1 -> shadow-4.2 UNRELEASED
|
||||
shadow-4.2 -> shadow-4.2.1 UNRELEASED
|
||||
|
||||
*** general
|
||||
* Properly release with a generated configure script, built manpages
|
||||
* Include the configure_userns patch from Debian
|
||||
|
||||
*** translation
|
||||
* Vietnamese translation update
|
||||
* French man pages translation update
|
||||
* French translation update
|
||||
* Typo fixes in German translation
|
||||
|
||||
shadow-4.1.5.1 -> shadow-4.2 2013-04-30
|
||||
|
||||
*** general
|
||||
* Handle libc whose crypt() returns NULL when passed a salt that
|
||||
|
||||
-12
@@ -1,12 +0,0 @@
|
||||
#! /bin/sh
|
||||
|
||||
autoreconf -v -f --install || exit 1
|
||||
|
||||
./configure \
|
||||
CFLAGS="-O2 -Wall" \
|
||||
--enable-man \
|
||||
--enable-maintainer-mode \
|
||||
--disable-shared \
|
||||
--without-libpam \
|
||||
--with-selinux \
|
||||
"$@"
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_INIT
|
||||
AM_INIT_AUTOMAKE(shadow, 4.2)
|
||||
AM_INIT_AUTOMAKE(shadow, 4.2.1)
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
||||
dnl Some hacks...
|
||||
|
||||
+2
-2
@@ -229,7 +229,7 @@ SYS_UID_MAX 999
|
||||
# Extra per user uids
|
||||
SUB_UID_MIN 100000
|
||||
SUB_UID_MAX 600100000
|
||||
SUB_UID_COUNT 10000
|
||||
SUB_UID_COUNT 65536
|
||||
|
||||
#
|
||||
# Min/max values for automatic gid selection in groupadd(8)
|
||||
@@ -242,7 +242,7 @@ SYS_GID_MAX 999
|
||||
# Extra per user group ids
|
||||
SUB_GID_MIN 100000
|
||||
SUB_GID_MAX 600100000
|
||||
SUB_GID_COUNT 10000
|
||||
SUB_GID_COUNT 65536
|
||||
|
||||
#
|
||||
# Max number of login(1) retries if password is bad
|
||||
|
||||
@@ -58,7 +58,7 @@ int find_new_sub_gids (const char *owner,
|
||||
|
||||
min = getdef_ulong ("SUB_GID_MIN", 100000UL);
|
||||
max = getdef_ulong ("SUB_GID_MAX", 600100000UL);
|
||||
count = getdef_ulong ("SUB_GID_COUNT", 10000);
|
||||
count = getdef_ulong ("SUB_GID_COUNT", 65536);
|
||||
|
||||
if (min > max || count >= max || (min + count - 1) > max) {
|
||||
(void) fprintf (stderr,
|
||||
|
||||
@@ -58,7 +58,7 @@ int find_new_sub_uids (const char *owner,
|
||||
|
||||
min = getdef_ulong ("SUB_UID_MIN", 100000UL);
|
||||
max = getdef_ulong ("SUB_UID_MAX", 600100000UL);
|
||||
count = getdef_ulong ("SUB_UID_COUNT", 10000);
|
||||
count = getdef_ulong ("SUB_UID_COUNT", 65536);
|
||||
|
||||
if (min > max || count >= max || (min + count - 1) > max) {
|
||||
(void) fprintf (stderr,
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
.xml2po.mo
|
||||
config.xml
|
||||
generate_mans.deps
|
||||
|
||||
*.[0-9]
|
||||
|
||||
/po/POTFILES
|
||||
/po/stamp-po
|
||||
@@ -1,332 +0,0 @@
|
||||
.\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu)
|
||||
.\" May be distributed under the GNU General Public License
|
||||
.\"
|
||||
.\" Translated 17 sep. 1998 by Juan José López Mellado(laveneno@hotmail.com)
|
||||
.\"
|
||||
.TH LOGIN 1 "4 Noviembre 1996" "Util\-linux 1.6" "Manual del Programador de Linux"
|
||||
.SH NOMBRE
|
||||
login \- firmar
|
||||
.SH SINOPSIS
|
||||
.BR "login [ " name " ]"
|
||||
.br
|
||||
.B "login \-p"
|
||||
.br
|
||||
.BR "login \-h " hostname
|
||||
.br
|
||||
.BR "login \-f " name
|
||||
.SH DESCRIPCIÓN
|
||||
.B login
|
||||
es usado cuando se firma en un sistema. Puede ser usado para cambiar
|
||||
desde un usuario a otro en cualquier momento (los shells más modernos
|
||||
disponen de esta característica incluida internamente).
|
||||
|
||||
Si no se da ningún argumento,
|
||||
.B login
|
||||
pregunta por el nombre de usuario.
|
||||
|
||||
Si el usuario
|
||||
.I no
|
||||
es root, y si existe
|
||||
.IR /etc/nologin ,
|
||||
el contenido de este fichero se escribe en la pantalla y el ingreso
|
||||
finaliza. Esto se usa típicamente para prevenir los ingresos cuando el
|
||||
sistema se está cerrando.
|
||||
|
||||
Si se han especificado restricciones de acceso para el usuario en
|
||||
.IR /etc/usertty ,
|
||||
estas son requeridas, o la petición de ingreso será denegada y se
|
||||
generará un mensaje a través de
|
||||
.BR syslog .
|
||||
Vea la sección "Restricciones de Acceso Especiales".
|
||||
|
||||
Si el usuario es root, entonces el ingreso debe estar ocurriendo en
|
||||
alguno de los tty listados en
|
||||
.IR /etc/securetty .
|
||||
Los fallos serán registrados mediante
|
||||
.BR syslog .
|
||||
|
||||
Después de comprobar estas condiciones, se pedirá la contraseña y se
|
||||
validará (si es que se requiere de una contraseña para el usuario). Se
|
||||
permite un total de diez intentos antes de que
|
||||
.B login
|
||||
muera, pero después de los tres primeros, la respuesta comienza a ser muy
|
||||
lenta. Los fallos de ingreso son registrados a través de
|
||||
.BR syslog .
|
||||
También es usado para registrar cualquier ingreso correcto del usuario
|
||||
root.
|
||||
|
||||
Si el fichero
|
||||
.I .hushlogin
|
||||
existe, entonces se realiza un ingreso "reservado" (esto deshabilita la
|
||||
comprobación del correo y la escritura de la hora del último ingreso así
|
||||
como el mensaje del día). Por otro lado, si existe
|
||||
.IR /var/log/lastlog ,
|
||||
la hora del último ingreso se imprime (y el ingreso actual es
|
||||
registrado).
|
||||
|
||||
Se llevan a cabo algunas tareas administrativas, como el cambio del UID y
|
||||
GID del tty. La variable de entorno TERM se preserva, si existe (las
|
||||
otras variables de entorno son preservadas si se usa la opción
|
||||
.BR \-p ).
|
||||
Después son definidas las variables HOME, PATH, SHELL, TERM, MAIL y
|
||||
LOGNAME. El PATH por defecto será
|
||||
.I /usr/local/bin:/bin:/usr/bin:.
|
||||
para usuarios normales, y
|
||||
.I /sbin:/bin:/usr/sbin:/usr/bin
|
||||
para root. Por último, si no es un ingreso "reservado", el mensaje del
|
||||
día será imprimido y se comprobará el fichero con el nombre del usuario en
|
||||
.I /usr/spool/mail
|
||||
y se imprimirá un mensaje si este tuviera un tamaño diferente de cero.
|
||||
|
||||
A continuación, se inicia el shell del usuario. Si no se especifica ninguno
|
||||
para el usuario en
|
||||
.BR /etc/passwd ,
|
||||
entonces se usará
|
||||
.BR /bin/sh .
|
||||
Si no hay un directorio especificado en
|
||||
.IR /etc/passwd ,
|
||||
entonces se usará
|
||||
.I /
|
||||
(el directorio del usuario se analizará en busca del fichero
|
||||
.I .hushlogin
|
||||
descrito más abajo).
|
||||
|
||||
.SH OPCIONES
|
||||
.TP
|
||||
.B \-p
|
||||
Usado por
|
||||
.BR getty (8)
|
||||
para indicar a
|
||||
.B login
|
||||
que no destruya el entorno
|
||||
.TP
|
||||
.B \-f
|
||||
Usado para evitar la segunda autenticación del ingreso. Esto
|
||||
.B no
|
||||
funciona específicamente para root y no parece que funcione
|
||||
correctamente bajo Linux.
|
||||
.TP
|
||||
.B \-h
|
||||
Usado por otros servidores (por ejemplo,
|
||||
.BR telnetd (8))
|
||||
para pasar el nombre del host remoto a
|
||||
.B login
|
||||
de tal manera que pueda ser puesto en utmp y wtmp. Solo el superusuario
|
||||
podrá usar esta opción.
|
||||
|
||||
.SH "RESTRICCIONES DE ACCESO ESPECIALES"
|
||||
El fichero
|
||||
.I /etc/securetty
|
||||
lista los nombres de los ttys donde se permite que el root pueda
|
||||
ingresar. Deberá especificarse un nombre de tty por línea (sin el prefijo
|
||||
/dev/). Si el fichero no existiera, se permitirá su ingreso desde
|
||||
cualquier tty.
|
||||
.PP
|
||||
El fichero
|
||||
.I /etc/usertty
|
||||
especifica restricciones de acceso adicionales para usuarios específicos.
|
||||
Si no existiera este fichero, no se impondrá ninguna restricción de
|
||||
acceso adicional. El fichero consiste en una secuencia de secciones. Hay
|
||||
tres tipos de secciones posibles: CLASSES, GROUPS y USERS. Una sección
|
||||
de tipo CLASSES define tipos de ttys y patrones de nombres de hosts, una
|
||||
sección de tipo GROUPS define los ttys permitidos y los hosts grupo por
|
||||
grupo y una sección USERS define los ttys permitidos y los hosts usuario
|
||||
por usuario.
|
||||
.PP
|
||||
Cada línea de este fichero no puede tener más de 255 caracteres. Los
|
||||
comentarios comienzan con un carácter # y se extienden hasta el final de
|
||||
la línea.
|
||||
.PP
|
||||
.SS "La sección CLASSES"
|
||||
Una sección de tipo CLASSES comienza por la palabra CLASSES al principio
|
||||
de la línea escrito en mayúsculas. Cada una de las líneas hasta el
|
||||
principio de una nueva sección o del final del fichero consiste en una
|
||||
secuencia de palabras separadas pos tabuladores o espacios. Cada línea
|
||||
define una clase de ttys y patrones de hosts.
|
||||
.PP
|
||||
La palabra al principio de la línea es tomada como el nombre colectivo
|
||||
para los ttys y patrones de hosts especificados en el resto de la línea.
|
||||
Este nombre colectivo puede usarse en las siguientes secciones de tipo
|
||||
GROUPS o USERS. No debería aparecer el nombre de una clase como parte de
|
||||
la definición de una clase para evitar problemas de recursividad de
|
||||
nombres.
|
||||
.PP
|
||||
Una sección CLASSES de ejemplo:
|
||||
.PP
|
||||
.nf
|
||||
.in +.5
|
||||
CLASSES
|
||||
miclase1 tty1 tty2
|
||||
miclase2 tty3 @.foo.com
|
||||
.in -.5
|
||||
.fi
|
||||
.PP
|
||||
Esto define las clases
|
||||
.I miclase1
|
||||
y
|
||||
.I miclase2
|
||||
como las partes derechas correspondientes.
|
||||
.PP
|
||||
|
||||
.SS "La sección GROUPS"
|
||||
Una sección GROUPS define los ttys y hosts permitidos para cada grupo
|
||||
.I /etc/passwd
|
||||
y
|
||||
.I /etc/group
|
||||
y ese grupo es mencionado en una sección de tipo GROUPS en
|
||||
.I /etc/usertty
|
||||
entonces el usuario tiene acceso permitido.
|
||||
.PP
|
||||
Una sección GROUPS comienza con la palabra GROUPS en mayúsculas en el
|
||||
principio de una línea, y cada una de las siguientes líneas es una
|
||||
secuencia de palabras separadas pos espacios o tabuladores. La primera
|
||||
palabra de una línea es el nombre del grupo, y el resto de las palabras
|
||||
de la línea especifican los ttys y hosts donde los miembros de ese grupo
|
||||
tienen permitido el acceso. Estas especificaciones pueden comportar el
|
||||
uso de las clases definidas en secciones CLASSES anteriores.
|
||||
.PP
|
||||
Un ejemplo de una sección GROUPS:
|
||||
.PP
|
||||
.nf
|
||||
.in +0.5
|
||||
GROUPS
|
||||
sys tty1 @.bar.edu
|
||||
stud miclase1 tty4
|
||||
.in -0.5
|
||||
.fi
|
||||
.PP
|
||||
Este ejemplo especifica que los miembros del grupo
|
||||
.I sys
|
||||
pueden ingresar en el tty1 y desde los hosts en el dominio bar.edu. Los
|
||||
usuarios en el grupo
|
||||
.I stud
|
||||
pueden ingresar desde los hosts/ttys especificados en la clase miclase1 o
|
||||
desde el tty4.
|
||||
.PP
|
||||
|
||||
.SS "La sección USERS"
|
||||
Una sección USERS comienza con la palabra USERS toda en mayúsculas al
|
||||
principio de la línea, y cada una de las líneas siguientes es una
|
||||
secuencia de palabras separadas por espacios o tabuladores. La primera
|
||||
palabra de una línea es un nombre de usuario y a ese usuario se le
|
||||
permite ingresar en los ttys y desde los hosts mencionados en el resto de
|
||||
la línea. Estas especificaciones pueden contener clases definidas en
|
||||
secciones CLASSES anteriores. Si no se especifica al principio del
|
||||
fichero una cabecera de sección, por defecto la primera sección se
|
||||
interpreta como del tipo USERS.
|
||||
|
||||
.PP
|
||||
Una sección USERS de ejemplo:
|
||||
.PP
|
||||
.nf
|
||||
.in +0.5
|
||||
USERS
|
||||
zacho tty1 @130.225.16.0/255.255.255.0
|
||||
pepe tty3 miclase2
|
||||
.in -0.5
|
||||
.fi
|
||||
.PP
|
||||
Esto autoriza al usuario zacho a ingresar solo en el tty1 y desde los
|
||||
hosts con direcciones IP en el rango 130.225.16.0 \- 130.225.16.255, y
|
||||
también autoriza al usuario pepe a ingresar en el tty3 y desde cualquier
|
||||
parte mencionada en la clase miclase2.
|
||||
.PP
|
||||
Podrá aparecer una línea en la sección USERS que comience por un nombre
|
||||
de usuario *. Esta es la regla por defecto y será aplicada a cualquier
|
||||
usuario que no aparezca en ninguna de las otras líneas.
|
||||
.PP
|
||||
Si un usuario encaja con una línea USERS y con una línea GROUPS, el
|
||||
usuario estará autorizado a ingresar desde la unión de todos los
|
||||
ttys/hosts mencionados en estas especificaciones.
|
||||
|
||||
.SS Orígenes
|
||||
Las especificaciones de patrones de tty y host usadas en la
|
||||
especificación de las clases, grupos y usuarios se llaman orígenes. Un
|
||||
origen es una cadena de caracteres que puede tener uno de estos formatos:
|
||||
.IP o
|
||||
El nombre de un dispositivo tty sin el prefijo /dev/, por ejemplo tty1 o
|
||||
ttyS0.
|
||||
.PP
|
||||
.IP o
|
||||
La cadena @localhost, indicando que el usuario está autorizado a
|
||||
telnet/rlogin desde el host local al mismo host. Esto también habilita al
|
||||
usuario a ejecutar, por ejemplo, el comando: xterm \-e /bin/login.
|
||||
.PP
|
||||
.IP o
|
||||
Un sufijo de nombre de dominio como @.algun.dom, indicando que el usuario
|
||||
podrá hacer rlogin/telnet desde cualquier host cuyo nombre de dominio
|
||||
tenga el sufijo .algun.dom.
|
||||
.PP
|
||||
.IP o
|
||||
Un rango de direcciones IPv4, escritas @x.x.x.x/y.y.y.y donde x.x.x.x es
|
||||
la dirección IP en la notación decimal tradicional con puntos, e y.y.y.y
|
||||
es una máscara de bits en la misma notación especificando cuales de los
|
||||
bits de la dirección serán comparados con la dirección IP del host
|
||||
remoto. Por ejemplo @130.255.16.0/255.255.254.0 significa que el usuario
|
||||
podrá hacer rlogin/telnet desde cualquier host cuya dirección IP esté en
|
||||
el rango 130.255.16.0 \- 130.255.17.255.
|
||||
.PP
|
||||
Cualquiera de los orígenes anteriores pueden tener un prefijo con la
|
||||
especificación temporal acordando con la sintaxis:
|
||||
.PP
|
||||
.nf
|
||||
espec\-tiempo ::= '[' <día\-u\-hora> [':' <día\-u\-hora>]* ']'
|
||||
día ::= 'mon' | 'tue' | 'wed' | 'thu' | 'fri' | 'sat' | 'sun'
|
||||
hora ::= '0' | '1' | ... | '23'
|
||||
espec\-hora ::= <hora> | <hora> '\-' <hora>
|
||||
día\-u\-hora ::= <día> | <espec\-hora>
|
||||
.fi
|
||||
.PP
|
||||
Por ejemplo, el origen [mon:tue:wed:thu:fri:8\-17]tty3 significa que solo
|
||||
se permitirán ingresos de lunes a viernes entre las 8:00 y las 17:59
|
||||
(5:59 pm) en el tty3. Esto también muestra que un rango de horas a\-b
|
||||
incluye todo momento entre a:00 y b:59. Una sola hora (por ejemplo 10)
|
||||
significará un espacio temporal entre las 10:00 y las 10:59.
|
||||
.PP
|
||||
Si no se especifica ningún prefijo temporal para un tty o host significará
|
||||
que se permitirá el ingreso desde ese origen a cualquier hora. Si da un
|
||||
prefijo temporal asegúrese de especificar tanto el conjunto de días como
|
||||
una o más horas o rango de horas. Una especificación de tiempo no puede
|
||||
incluir espacios en blanco.
|
||||
.PP
|
||||
Si no se define ninguna regla por defecto entonces los usuarios que no
|
||||
concuerden con ninguna línea de
|
||||
.I /etc/usertty
|
||||
está autorizados para ingresar desde cualquier lugar en la manera
|
||||
estándar.
|
||||
.PP
|
||||
.SH FICHEROS
|
||||
.nf
|
||||
.I /var/run/utmp
|
||||
.I /var/log/wtmp
|
||||
.I /var/log/lastlog
|
||||
.I /usr/spool/mail/*
|
||||
.I /etc/motd
|
||||
.I /etc/passwd
|
||||
.I /etc/nologin
|
||||
.I /etc/usertty
|
||||
.I .hushlogin
|
||||
.fi
|
||||
.SH "VÉASE TAMBIÉN"
|
||||
.BR init (8),
|
||||
.BR getty (8),
|
||||
.BR mail (1),
|
||||
.BR passwd (1),
|
||||
.BR passwd (5),
|
||||
.BR environ (7),
|
||||
.BR shutdown (8)
|
||||
.SH FALLOS
|
||||
|
||||
Linux, a diferencia de otros sistemas operativos draconianos, no comprueba
|
||||
las cuotas.
|
||||
|
||||
La opción no documentada
|
||||
.B \-r
|
||||
de BSD no está soportada. Esta podría ser requerida por algún programa
|
||||
.BR rlogind (8)
|
||||
.
|
||||
.SH AUTOR
|
||||
Derivado de login 5.40 de BSD (5/9/89) por Michael Glad (glad@daimi.dk)
|
||||
para HP\-UX
|
||||
.br
|
||||
Portado a Linux 0.12: Peter Orbaek (poe@daimi.aau.dk)
|
||||
@@ -1,32 +0,0 @@
|
||||
.\" Original author unknown. This man page is in the public domain.
|
||||
.\" Modified Sat Oct 9 17:46:48 1993 by faith@cs.unc.edu
|
||||
.\"
|
||||
.\" Translated 19 Sep 1998 by Juan José López Mellado
|
||||
.\" (laveneno@hotmail.com)
|
||||
.\"
|
||||
.TH NEWGRP 1 "9 Octubre 1993" "Linux 1.2" "Manual del Programador de Linux"
|
||||
.SH NOMBRE
|
||||
newgrp \- ingresar con un nuevo grupo
|
||||
.SH SINOPSIS
|
||||
.BI "newgrp [ " group " ]"
|
||||
.SH DESCRIPCIÓN
|
||||
.B Newgrp
|
||||
cambia la identificación de grupo de su invocador, análogamente a
|
||||
.BR login (1).
|
||||
La misma persona queda ingresada, y el directorio actual no es
|
||||
modificado, pero los cálculos de los permisos de acceso a los ficheros se
|
||||
realizan con respecto al nuevo ID de grupo.
|
||||
.LP
|
||||
Si no se espcifica un grupo, el GID es cambiado al GID de ingreso.
|
||||
.LP
|
||||
.SH FICHEROS
|
||||
.I /etc/group
|
||||
.br
|
||||
.I /etc/passwd
|
||||
|
||||
.SH "VÉASE TAMBIÉN"
|
||||
.BR login "(1), " group (5)
|
||||
|
||||
.SH AUTOR
|
||||
Originalmente por Michael Haardt. Actualmente mantenido por
|
||||
Peter Orbaek (poe@daimi.aau.dk).
|
||||
@@ -1,138 +0,0 @@
|
||||
.\" Copyright 1992 Rickard E. Faith (faith@cs.unc.edu)
|
||||
.\" May be distributed under the GNU General Public License
|
||||
.\"
|
||||
.\" Translated 2 Dec 1998 by Victor Moral (victor@venexma.es)
|
||||
.\"
|
||||
.TH PASSWD 1 "11 Noviembre 1996" "Util\-linux 2.6" "Manual del Programador Linux"
|
||||
.SH NOMBRE
|
||||
passwd \- cambia contraseñas
|
||||
.SH SINOPSIS
|
||||
.BR "passwd"
|
||||
.RB [ " \-o " ]
|
||||
.RB [ " \-q " ]
|
||||
.RB [ " \-v " ]
|
||||
.RI [ " usuario " [ " contraseña " ]]
|
||||
.br
|
||||
.BR "passwd \-f "
|
||||
.RI [ " parámetros para el cambio de nombre completo del usuario " ]
|
||||
.br
|
||||
.BR "passwd \-s "
|
||||
.RI [ " parámetros para el cambio de shell " ]
|
||||
|
||||
.SH DESCRIPCIÓN
|
||||
|
||||
Cuando se utiliza sin parámetros
|
||||
.B passwd
|
||||
cambia la contraseña para el usuario que lo invoca. Primero le exigirá
|
||||
la contraseña vigente, y a continuación pedirá dos veces la nueva para
|
||||
prevenir errores de escritura.
|
||||
|
||||
La invocación del programa con los parámetros
|
||||
.IR usuario
|
||||
y
|
||||
.IR contraseña
|
||||
sólo puede realizarse desde la cuenta de superusuario.
|
||||
|
||||
Utilizando la invocación sólo con el parámetro
|
||||
.IR usuario
|
||||
, el
|
||||
superusuario puede cambiar la contraseña para ese
|
||||
.IR usuario .
|
||||
|
||||
En este caso no se exige al superusuario la contraseña vigente para el usuario,
|
||||
pero las reglas para validar contraseñas se siguen aplicando a menos que se
|
||||
utilice la opción
|
||||
.B "\-o".
|
||||
El superusuario puede tener razones legítimas para elegir una contraseña no
|
||||
conforme a las reglas.
|
||||
|
||||
|
||||
El uso de los dos parámetros asigna al
|
||||
.IR usuario " la " contraseña
|
||||
indicada en el segundo parámetro. Puede ser útil cuando se debe dar a muchos
|
||||
usuarios una contraseña inicial predefinida. Pero también puede ser
|
||||
extremadamente peligroso. Un simple fallo en un programa podría cambiar la
|
||||
contraseña del superusuario (root) a cualquier cosa desconocida.
|
||||
|
||||
Indicar una cadena vacía como el segundo parámetro borra la contraseña para
|
||||
el usuario, pero sólo en combinación de la opción
|
||||
.B "\-o".
|
||||
|
||||
Los cambios de contraseña pueden registrarse utilizando el servicio
|
||||
.BR syslog (3),
|
||||
dependiendo de las definiciones hechas en tiempo de compilación del programa
|
||||
(estando esta característica activa por omisión).
|
||||
Si es así, todos los cambios se registrarán a un nivel bajo como auth.notice,
|
||||
excepto para cambiar la contraseña del superusuario (root); en este caso se
|
||||
registrarán con nivel auth.warning.
|
||||
|
||||
.SH OPCIONES
|
||||
.TP
|
||||
.B "\-f, \-\-fullname"
|
||||
Cambia el nombre completo del usuario (el campo GECOS del registro de
|
||||
contraseñas). Invoca el programa /usr/bin/chfn utilizando los parámetros
|
||||
que ha recibido que no son opciones.
|
||||
|
||||
.TP
|
||||
.B "\-o, \-\-force"
|
||||
Desactiva las verificaciones de validación sobre la nueva contraseña . Sólo
|
||||
puede ser utilizada por el superusuario, y está pensado para permitirle
|
||||
asignar contraseñas iniciales simples.
|
||||
|
||||
.TP
|
||||
.B "\-s, \-\-shell"
|
||||
Cambia el shell del usuario mediante la invocación del programa /usr/bin/chsh
|
||||
con los parámetros recibidos que no son opciones.
|
||||
|
||||
.TP
|
||||
.B "\-q, \-\-quiet, \-\-silent"
|
||||
En este modo de funcionamiento passwd no indica que la contraseña se haya
|
||||
cambiado.
|
||||
|
||||
.TP
|
||||
.B "\-v, \-V, \-\-version"
|
||||
Muestra información acerca de la versión del programa y finaliza.
|
||||
|
||||
.SH REGLAS DE CONTRASEÑAS
|
||||
La nueva contraseña debe cumplir estas reglas:
|
||||
.TP
|
||||
o
|
||||
tener como mínimo seis caracteres;
|
||||
|
||||
.TP
|
||||
o
|
||||
no ser igual a la contraseña anterior;
|
||||
|
||||
.TP
|
||||
o
|
||||
contener caracteres que pertenezcan, como mínimo, a dos de las
|
||||
siguientes categorías: mayúsculas y minúsculas, dígitos y caracteres no
|
||||
alfanuméricos;
|
||||
|
||||
.TP
|
||||
o
|
||||
no debe coincidir ni con el nombre del usuario, ni con ninguna de las palabras
|
||||
que forman su nombre completo (real), tanto en orden normal como inverso, ni
|
||||
al principio ni al final.
|
||||
|
||||
.SH FALLOS (BUGS)
|
||||
|
||||
Si cambia de opinión no hay escape del programa. Insistirá en obtener una
|
||||
contraseña nueva hasta que sea muerto (mediante kill) desde otro terminal.
|
||||
(Esto es provocado por un fallo en getpass(3): e ignora las señales.)
|
||||
|
||||
.SH FICHEROS
|
||||
.TP
|
||||
.I /etc/passwd
|
||||
El archivo que contiene las contraseñas.
|
||||
.SH "VÉASE TAMBIÉN"
|
||||
.BR group (5),
|
||||
.BR passwd (5),
|
||||
.BR shadow (5)
|
||||
.SH AUTOR
|
||||
Peter Orbaek (poe@daimi.aau.dk).
|
||||
.br
|
||||
Martin Schulze (joey@infodrom.north.de) con extensas mejoras y reescrituras.
|
||||
.br
|
||||
.SH MANTENIMIENTO
|
||||
Nicolai Langfeldt (janl@math.uio.no)
|
||||
@@ -1,139 +0,0 @@
|
||||
.\" \-*\- nroff \-*\-
|
||||
.\"Translated 21 Jul 1998 by Javi Diaz (javid@si.upc.es)
|
||||
.TH SU 1 "Utilidades Shell de GNU" "FSF"
|
||||
.SH NOMBRE
|
||||
su \- ejecuta una shell con identificadores de grupo y de usuario distintos
|
||||
.SH SINOPSIS
|
||||
.B su
|
||||
[\-flmp] [\-c comando] [\-s shell] [\-\-login] [\-\-fast]
|
||||
[\-\-preserve\-environment] [\-\-command=comando] [\-\-shell=shell] [\-]
|
||||
[\-\-help] [\-\-version] [usuario [arg...]]
|
||||
.SH DESCRIPCIÓN
|
||||
Este documento ya no es mantenido y puede ser impreciso o incompleto. La
|
||||
documentación de Texinfo es ahora la fuente de información recomendada.
|
||||
.PP
|
||||
Esta página del manual documenta la versión GNU de
|
||||
.BR su .
|
||||
.B su
|
||||
permite a un usuario convertirse temporalmente en otro usuario. Se ejecuta
|
||||
una shell con los identificadores reales y efectivos, el identificador de
|
||||
grupo, y los identificadores suplementarios del grupo del USUARIO. Si no se
|
||||
especifica ningún USUARIO, por defecto se usa root, el superusuario.
|
||||
La shell a ejecutar se toma de la entrada correspondiente al USUARIO en el
|
||||
fichero de passwords, o /bin/sh si no se especifica ninguna en dicho fichero.
|
||||
Si el USUARIO tiene password,
|
||||
.B su
|
||||
lo solicitará, a menos que sea ejecutado por el usuario con identificador real
|
||||
0 (el superusuario).
|
||||
.PP
|
||||
Por defecto,
|
||||
.B su
|
||||
no cambia el directorio actual.
|
||||
.B su
|
||||
modifica las variables de entorno `HOME' y `SHELL' de acuerdo con la entrada
|
||||
del fichero de passwords correspondiente al USUARIO, y si el USUARIO no es el
|
||||
superusuario, coloca en las variables `USER' y `LOGNAME' el valor de USUARIO.
|
||||
Por defecto, la shell ejecutada no es una shell de entrada al sistema.
|
||||
.PP
|
||||
Si se facilitan uno o más ARGs, estos son pasados como argumentos adicionales
|
||||
a la shell ejecutada.
|
||||
.PP
|
||||
.B su
|
||||
no ejecuta de manera especial /bin/sh u otras shells (colocando en argv[0] el
|
||||
valor "\-su", pasando \-c únicamente a algunas shells, etc.).
|
||||
.PP
|
||||
En sistemas que utilicen syslog,
|
||||
.B su
|
||||
puede ser compilado para reportar fallo, y opcionalmente éxito en syslog.
|
||||
.B su
|
||||
intentará utilizar syslog.
|
||||
.PP
|
||||
Este programa no soporta el grupo "wheel", el cual restringe quien podrá
|
||||
ejecutar
|
||||
.B su
|
||||
hacia la cuenta de root (el superusuario) ya que esta política podría
|
||||
ayudar a los administradores de máquinas a facilitar un uso inadecuado a otros
|
||||
usuarios.
|
||||
.SS OPCIONES
|
||||
.TP
|
||||
.I "\-c COMANDO, \-\-command=COMANDO"
|
||||
Pasa el COMANDO, una única línea a ejecutar, a la shell con la opción
|
||||
.I \-c
|
||||
en vez de ejecutar una shell interactiva.
|
||||
.TP
|
||||
.I "\-f, \-\-fast"
|
||||
Pasa la opción
|
||||
.I \-f
|
||||
a la shell. Esto probablemente tiene sentido con
|
||||
.B csh
|
||||
y
|
||||
.BR tcsh ,
|
||||
en estos casos la opción
|
||||
.I \-f
|
||||
indica que no se lean los ficheros de arranque de la shell (.cshrc).
|
||||
Con las shells del estilo Bourne shell, la opción
|
||||
.I \-f
|
||||
deshabilita la expansión de los patrones de fichero, la cual cosa no es
|
||||
demasiado deseable.
|
||||
.TP
|
||||
.I "\-\-help"
|
||||
Escribe un mensaje sobre el uso en la salida estándar y acaba sin
|
||||
provocar error.
|
||||
.TP
|
||||
.I "\-, \-l, \-\-login"
|
||||
Provoca que la shell a ejecutar sea una shell de login. Lo cual significa que
|
||||
se eliminan del entorno todas las variables excepto `TERM', `HOME' y `SHELL'
|
||||
(las cuales se modifican como se explicó anteriormente) y `USER'y `LOGNAME'
|
||||
(que se modifican, incluso para el superusuario, como se explicó anteriormente),
|
||||
la variable `PATH' se añade al entorno con el valor por defecto que se
|
||||
estableció al compilar
|
||||
.B su
|
||||
, además de los cambios anteriores,
|
||||
.B su
|
||||
cambia al directorio por defecto del USUARIO. Si se antepone "\-" al nombre de
|
||||
la shell a ejecutar, se leerán los ficheros de arraque pertinentes.
|
||||
.TP
|
||||
.I "\-m, \-p, \-\-preserve\-environment"
|
||||
No se cambian las variables de entorno `HOME', `USER', `LOGNAME' ni `SHELL'.
|
||||
Se ejecuta la shell especificada en la variable de entorno `SHELL' en vez
|
||||
de la shell que indique la entrada para el USUARIO en el fichero /etc/passwd,
|
||||
a menos que el usuario que ejecute
|
||||
.B su
|
||||
no sea el superusuario y la shell del USUARIO esté restringida.
|
||||
Una shell restringida es aquella que no está listada en el fichero /etc/shells
|
||||
o en una lista generada al compilar
|
||||
.B su
|
||||
si dicho fichero no existe. Algunos detalles de lo que hace esta opción pueden
|
||||
ser invalidadas mediante la opción
|
||||
.I \-\-login
|
||||
y
|
||||
.IR \-\-shell .
|
||||
.TP
|
||||
.I "\-s, \-\-shell shell"
|
||||
Ejecuta la SHELL en vez de la shell del USUARIO especificada en el fichero
|
||||
\fI/etc/passwd\fR, a menos que el usuario que ejecute
|
||||
.B su
|
||||
no sea el superusuario y la shell del USUARIO esté restringida.
|
||||
.TP
|
||||
.I "\-\-version"
|
||||
Escribe información sobre la versión en la salida estándar y acaba sin
|
||||
provocar error.
|
||||
|
||||
.SH Por que GNU no soporta el grupo "wheel" (por Richard Stallman)
|
||||
A veces, algunos listillos intentan hacerse con el poder total
|
||||
sobre el resto de usuarios. Por ejemplo, en 1984, un grupo de usuarios del
|
||||
laboratorio de Inteligencia Artificial del MIT decidieron tomar el poder
|
||||
cambiando el password de operador del sistema Twenex y manteniendolo secreto
|
||||
para el resto de usuarios. (De todas maneras, hubiera sido posible desbaratar
|
||||
la situación y devolver el control a los usuarios legítimos parcheando el
|
||||
kernel, pero no sabría como realizar esta operación en un sistema Unix.)
|
||||
.PP
|
||||
Sin embargo, casualmente alguien contó el secreto. Mediante el uso habitual de
|
||||
.B su
|
||||
una vez que alguien conoce el password de root puede contarselo al resto de
|
||||
usuarios. El grupo "wheel" hará que esto sea imposible, protegiendo así el poder
|
||||
de los superusuarios.
|
||||
.PP
|
||||
Yo estoy del lado de las masas, no de los superusuarios. Si eres de los que
|
||||
estan de acuerdo con los jefes y los administradores de sistemas en cualquier
|
||||
cosa que hagan, al principio encontrarás esta idea algo extraña.
|
||||
@@ -1,138 +0,0 @@
|
||||
.\" Copyright (c) 1993 Michael Haardt (michael@moria.de), Fri Apr 2 11:32:09 MET DST 1993
|
||||
.\"
|
||||
.\" This is free documentation; you can redistribute it and/or
|
||||
.\" modify it under the terms of the GNU General Public License as
|
||||
.\" published by the Free Software Foundation; either version 2 of
|
||||
.\" the License, or (at your option) any later version.
|
||||
.\"
|
||||
.\" The GNU General Public License's references to "object code"
|
||||
.\" and "executables" are to be interpreted as the output of any
|
||||
.\" document formatting or typesetting system, including
|
||||
.\" intermediate and printed output.
|
||||
.\"
|
||||
.\" This manual is distributed in the hope that it will be useful,
|
||||
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
.\" GNU General Public License for more details.
|
||||
.\"
|
||||
.\" You should have received a copy of the GNU General Public
|
||||
.\" License along with this manual; if not, write to the Free
|
||||
.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
|
||||
.\" USA.
|
||||
.\"
|
||||
.\" Modified Sun Jul 25 10:46:28 1993 by Rik Faith (faith@cs.unc.edu)
|
||||
.\" Modified Sun Aug 21 18:12:27 1994 by Rik Faith (faith@cs.unc.edu)
|
||||
.\" Modified Sun Jun 18 01:53:57 1995 by Andries Brouwer (aeb@cwi.nl)
|
||||
.\" Translated Tue Jul 23 11:06:10 1996 by Diego Novillo (diego@cs.ualberta.ca)
|
||||
.\" Modified Mon Jan 5 20:24:40 MET 1998 by Michael Haardt
|
||||
.\" (michael@cantor.informatik.rwth-aachen.de)
|
||||
.\" Translation revised June 6 1998
|
||||
.\" Translation revised Wed Aug 19 1998 by Juan Piernas <piernas@ditec.um.es>
|
||||
.\"
|
||||
.TH PASSWD 5 "5 Enero 1998" "Linux" "Formatos de Fichero"
|
||||
.SH NOMBRE
|
||||
passwd \- fichero de contraseñas
|
||||
.SH DESCRIPCIÓN
|
||||
.B Passwd
|
||||
es un fichero de texto que contiene una lista de las cuentas del sistema,
|
||||
proporcionando para cada cuenta cierta información útil como el
|
||||
identificador (ID) de usuario, el ID de grupo, el directorio `home', el
|
||||
intérprete de órdenes, etc.
|
||||
Con frecuencia, también contiene la contraseña cifrada de cada cuenta.
|
||||
Este fichero debe tener permiso de lectura para todos (muchas utilidades,
|
||||
como
|
||||
.BR ls (1),
|
||||
lo usan para traducir el número de identificador de
|
||||
usuario (UID) al nombre del usuario), pero sólo el superusuario debe
|
||||
poder escribirlo.
|
||||
.PP
|
||||
En los buenos viejos tiempos no había grandes problemas con estos permisos
|
||||
generales de lectura. Cualquiera podía leer contraseñas cifradas, ya que el
|
||||
hardware era demasiado lento para descifrar una clave bien elegida
|
||||
y, además, la suposición básica solía ser que la comunidad de usuarios era
|
||||
bastante amigable. Hoy en día, mucha gente
|
||||
utiliza alguna versión del paquete \fBshadow password\fP, donde en
|
||||
.I /etc/passwd
|
||||
encontramos *'s en lugar de las claves cifradas; éstas se encuentran
|
||||
en el fichero
|
||||
.IR /etc/shadow ,
|
||||
el cual sólo lo puede leer el superusuario.
|
||||
.PP
|
||||
Sin tener en cuenta si se utilizan o no `shadow passwords', muchos
|
||||
administradores de sistemas usan un asterisco en el campo de contraseña
|
||||
para asegurarse de que dicho usuario no se puede autenticar a sí
|
||||
mismo usando una contraseña. (No obstante, vea la sección OBSERVACIONES más abajo).
|
||||
.PP
|
||||
Si crea una nueva cuenta, coloque primero un asterisco en el campo de
|
||||
contraseña y a continuación use
|
||||
.BR passwd (1)
|
||||
para asignarla.
|
||||
.PP
|
||||
Hay una entrada por línea, cada línea tiene el siguiente formato:
|
||||
.sp
|
||||
.RS
|
||||
cuenta:contraseña:UID:GID:GECOS:directorio:intérprete
|
||||
.RE
|
||||
.sp
|
||||
Las descripciones de los campos son las siguientes:
|
||||
.sp
|
||||
.RS
|
||||
.TP 1.0in
|
||||
.I cuenta
|
||||
el nombre del usuario en el sistema. No debe contener letras mayúsculas.
|
||||
.TP
|
||||
.I contraseña
|
||||
la contraseña cifrada del usuario o un asterisco.
|
||||
.TP
|
||||
.I UID
|
||||
el número del ID de usuario.
|
||||
.TP
|
||||
.I GID
|
||||
el número del ID de grupo primario para este usuario.
|
||||
.TP
|
||||
.I GECOS
|
||||
Este campo es opcional y sólo se usa para propósitos de información.
|
||||
Normalmente, contiene el nombre completo del usuario. GECOS significa General
|
||||
Electric Comprehensive Operating System, que se renombró a GCOS cuando
|
||||
la división de grandes sistemas de GE se vendió a Honeywell. Dennis Ritchie
|
||||
ha dicho: "Algunas veces enviábamos una salida de impresora o unos trabajos
|
||||
por lotes a la máquina GCOS. El campo gcos en el fichero password era el
|
||||
lugar para esconder la información de la $IDENTcard. No era elegante."
|
||||
.TP
|
||||
.I directorio
|
||||
el directorio base del usuario ($HOME).
|
||||
.TP
|
||||
.I intérprete
|
||||
el programa que se debe ejecutar cuando el usuario ingresa (si está vacío,
|
||||
se utiliza
|
||||
.BR /bin/sh ).
|
||||
Si se establece a un ejecutable que no existe, el usuario será incapaz de
|
||||
entrar al sistema a través de
|
||||
.BR login (1).
|
||||
.RE
|
||||
.SH OBSERVACIONES
|
||||
Para crear un grupo de usuarios, sus GIDs deben ser iguales y debe
|
||||
haber una entrada en \fI/etc/group\fP, de lo contrario no existirá ningún
|
||||
grupo.
|
||||
.PP
|
||||
Si la contraseña cifrada es un asterisco, el usuario será incapaz de entrar
|
||||
al sistema usando
|
||||
.BR login (1),
|
||||
pero todavía podrá entrar utilizando
|
||||
.BR rlogin (1),
|
||||
ejecutar procesos existentes e iniciar nuevos procesos a través de
|
||||
.BR rsh (1),
|
||||
.BR cron (1),
|
||||
.BR at (1),
|
||||
filtros de correo, etc. Intentar cerrar una cuenta cambiando simplemente el
|
||||
campo del intérprete de órdenes produce el mismo resultado y permite
|
||||
además el uso de
|
||||
.BR su (1).
|
||||
.SH FICHEROS
|
||||
.I /etc/passwd
|
||||
.SH "VÉASE TAMBIÉN"
|
||||
.BR passwd (1),
|
||||
.BR login (1),
|
||||
.BR su (1),
|
||||
.BR group (5),
|
||||
.BR shadow (5)
|
||||
@@ -1 +0,0 @@
|
||||
.so man8/vipw.8
|
||||
@@ -1,92 +0,0 @@
|
||||
.\" Copyright (c) 1983, 1991 The Regents of the University of California.
|
||||
.\" All rights reserved.
|
||||
.\"
|
||||
.\" Redistribution and use in source and binary forms, with or without
|
||||
.\" modification, are permitted provided that the following conditions
|
||||
.\" are met:
|
||||
.\" 1. Redistributions of source code must retain the above copyright
|
||||
.\" notice, this list of conditions and the following disclaimer.
|
||||
.\" 2. Redistributions in binary form must reproduce the above copyright
|
||||
.\" notice, this list of conditions and the following disclaimer in the
|
||||
.\" documentation and/or other materials provided with the distribution.
|
||||
.\" 3. All advertising materials mentioning features or use of this software
|
||||
.\" must display the following acknowledgement:
|
||||
.\" This product includes software developed by the University of
|
||||
.\" California, Berkeley and its contributors.
|
||||
.\" 4. Neither the name of the University nor the names of its contributors
|
||||
.\" may be used to endorse or promote products derived from this software
|
||||
.\" without specific prior written permission.
|
||||
.\"
|
||||
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
||||
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
||||
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
.\" SUCH DAMAGE.
|
||||
.\"
|
||||
.\" from: @(#)vipw.8 6.7 (Berkeley) 3/16/91
|
||||
.\" $Id$
|
||||
.\"
|
||||
.\"
|
||||
.\" Translated into Spanish on Fri Aug 28 1998 by Gerardo Aburruzaga
|
||||
.\" García <gerado@cica.es>
|
||||
.\"
|
||||
.Dd 7 Julio 1996
|
||||
.Dt VIPW 8
|
||||
.Os Util-Linux 2.6
|
||||
.Sh NOMBRE
|
||||
.Nm vipw, vigr
|
||||
.Nd editan los ficheros de cuentas y grupos
|
||||
.Sh SINOPSIS
|
||||
.Nm vipw
|
||||
.Op -V
|
||||
.Op --version
|
||||
.Pp
|
||||
.Nm vigr
|
||||
.Op -V
|
||||
.Op --version
|
||||
.Sh DESCRIPCIÓN
|
||||
.Nm Vipw
|
||||
edita el fichero de cuentas tras establecer los bloqueos apropiados, y
|
||||
hace cualquier procesado que sea necesario después de que el fichero
|
||||
de cuentas se desbloquee.
|
||||
Si el fichero de cuentas ya está bloqueado para la edición por parte
|
||||
de otro usuario,
|
||||
.Nm vipw
|
||||
le pedirá que lo intente de nuevo más tarde. El editor predeterminado
|
||||
para
|
||||
.Nm vipw
|
||||
suele ser, como indica su nombre,
|
||||
.Xr vi 1 .
|
||||
.br
|
||||
.Nm Vigr
|
||||
edita el fichero de grupos de la misma manera que vipw.
|
||||
.Sh ENTORNO
|
||||
Si la siguiente variable de entorno existe, será utilizada por
|
||||
.Nm vipw :
|
||||
.Bl -tag -width EDITOR
|
||||
.It Ev EDITOR
|
||||
El editor especificado por la cadena
|
||||
.Ev EDITOR
|
||||
será llamado en vez del predeterminado
|
||||
.Xr vi 1 .
|
||||
.El
|
||||
.Sh VÉASE TAMBIÉN
|
||||
.Xr passwd 1 ,
|
||||
.Xr vi 1 ,
|
||||
.Xr passwd 5
|
||||
.Sh HISTORIA
|
||||
La orden
|
||||
.Nm vipw
|
||||
apareció en
|
||||
.Bx 4.0 .
|
||||
.br
|
||||
La orden
|
||||
.Nm vigr
|
||||
apareció en
|
||||
Util-Linux 2.6.
|
||||
@@ -1,95 +0,0 @@
|
||||
.\" Hey Emacs! This file is -*- nroff -*- source.
|
||||
.\" (above from Rik Faith..:*)
|
||||
.\" Copyright (c) Andrew G. Morgan 1996, <morgan@parc.power.net>
|
||||
.\" Proofread by Raimo Koski, Nov-Dec. 1999
|
||||
.\" Translated into Finnish by Tuomo Pyhälä (tuomo@lesti.kpnet.fi)
|
||||
.\" Proofread by Raimo Koski (rkoski@pp.weppi.fi)
|
||||
.\"
|
||||
.TH PASSWD 1 "28. Huhtikuuta 1998" "SimplePAMApps 0.50" "Käyttäjän sovellusohjelmat"
|
||||
.SH NIMI
|
||||
passwd \- päivitä käyttäjän todennustunnukset
|
||||
|
||||
.SH "YLEISKATSAUS"
|
||||
.B passwd [-u] [käyttäjänimi]
|
||||
.sp 2
|
||||
.SH KUVAUS
|
||||
Passwd on apuohjelma käyttäjän todennustunnusten
|
||||
päivittämiseen. Todennustunnus on lähes kaikissa järjestelmissä
|
||||
salasana ja termejä käytetään jäljempänä ristiin.
|
||||
|
||||
.sp
|
||||
Ainoastaan pääkäyttäjä voi päivittää toisen käyttäjän salasanan syöttämällä
|
||||
.BR käyttäjänimen ". "
|
||||
Optiota
|
||||
.BR -u
|
||||
käytetään, kun halutaan kertoa passwd:lle, että sen tulisi päivittää vain
|
||||
vanhentuneet salasanat (todennustunnukset) säilyttäen vanhentumattomat
|
||||
salasanat entisellään.
|
||||
|
||||
.sp
|
||||
Passwd käyttää
|
||||
.BR "Linux-PAM"
|
||||
ohjelmointirajapintaa ja se voidaan määrittää käyttämään
|
||||
haluttuja moduuleita salasanaa vaihtavan käyttäjän todennukseen ja
|
||||
salasanan vaihtoon. Alustaessaan ohjelmointirajapintaa passwd toimii nimellä
|
||||
"passwd".
|
||||
|
||||
.sp
|
||||
Yksinkertainen osio
|
||||
.I Linux-PAM
|
||||
määritystiedostossa passwd:lle olisi:
|
||||
.br
|
||||
|
||||
.br
|
||||
#
|
||||
.br
|
||||
# passwd palvelun määrittely, joka tarkistaa ettei ehdotettu salasana
|
||||
.br
|
||||
# ole helposti arvattavissa, ennen salasanan päivittämistä.
|
||||
.br
|
||||
#
|
||||
.br
|
||||
passwd password requisite pam_cracklib.so retry=3
|
||||
.br
|
||||
passwd password required pam_pwdb.so use_authtok
|
||||
.br
|
||||
#
|
||||
|
||||
.sp
|
||||
Huomaa, että passwd ei tarvitse muun tyyppisten moduulien määrittelyä.
|
||||
|
||||
.SH PALUUARVO
|
||||
|
||||
Virheettömän suorituksen jälkeen
|
||||
.B passwd
|
||||
päättää toimintansa paluuarvolla 0. Paluuarvo 1 palautetaan virheen
|
||||
sattuessa. Virheilmoitukset kirjoitetaan virhetulosteeseen.
|
||||
|
||||
.SH "NOUDATTAA:"
|
||||
.br
|
||||
.BR Linux-PAM
|
||||
(Pluggable Authentication modules for Linux).
|
||||
|
||||
.SH TIEDOSTOT
|
||||
.br
|
||||
.B /etc/pam.conf
|
||||
- the
|
||||
.BR Linux-PAM
|
||||
asetus tiedosto
|
||||
|
||||
.SH BUGIT
|
||||
.sp 2
|
||||
Ei tunnettuja virheitä.
|
||||
|
||||
.SH "KATSO MYÖS"
|
||||
.BR pam (8),
|
||||
ja
|
||||
.BR pam_chauthok (2).
|
||||
.sp
|
||||
Monipuolisempi selostus tämän ohjelman ja Linux-PAMin asetuksista
|
||||
löytyy englanninkielisestä
|
||||
.BR "'Linux-PAM System Adminstarators' Guide'":sta
|
||||
WWW-osoitteesta:
|
||||
.br
|
||||
.I <http://parc.power.net/morgan/Linux-PAM/index.html>
|
||||
.\" TERM authentication_token todennustunnus
|
||||
@@ -11,10 +11,6 @@ config.xml: ../config.xml.in
|
||||
|
||||
include ../generate_mans.mak
|
||||
|
||||
else
|
||||
$(man_MANS):
|
||||
@echo you need to run configure with --enable-man to generate man pages
|
||||
@false
|
||||
endif
|
||||
|
||||
CLEANFILES = .xml2po.mo $(EXTRA_DIST) $(addsuffix .xml,$(EXTRA_DIST)) config.xml
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
.\"
|
||||
.\" chfn.1 \-\- change your finger information
|
||||
.\" (c) 1994 by salvatore valente <svalente@athena.mit.edu>
|
||||
.\"
|
||||
.\" this program is free software. you can redistribute it and
|
||||
.\" modify it under the terms of the gnu general public license.
|
||||
.\" there is no warranty.
|
||||
.\"
|
||||
.\" $Author: kloczek $
|
||||
.\" $Revision: 1.4 $
|
||||
.\" $Date: 2005/12/01 20:38:25 $
|
||||
.\"
|
||||
.TH CHFN 1 "October 13 1994" "chfn" "Linux Reference Manual"
|
||||
.SH NÉV
|
||||
chfn \- finger információk módosítása
|
||||
.SH VÁZLAT
|
||||
.B chfn
|
||||
[\ \-f\ teljes név\ ] [\ \-o\ iroda\ ] [\ \-p\ irodai telefon\ ]
|
||||
[\ \-h\ otthoni telefon\ ] [\ \-u\ ] [\ \-v\ ] [\ felhasználó\ ]
|
||||
.SH LEÍRÁS
|
||||
A
|
||||
.B chfn
|
||||
segítségével megváltoztathatók a finger információk. Ezeket a
|
||||
.I /etc/passwd
|
||||
fájl tartalmazza, és a
|
||||
.B finger
|
||||
programmal jeleníthetőek meg. A linuxos
|
||||
.B finger
|
||||
négy adatot ír ki: valódi (polgári) nevet, munkahelyi
|
||||
szoba\- és telefonszámot és otthoni telefonszámot.
|
||||
.SS PARANCSSOR
|
||||
A négy érték bármelyike megadható parancssorból. Ha paraméterek nélkül
|
||||
indítjuk, a
|
||||
.B chfn
|
||||
interaktív módba lép.
|
||||
.SS INTERAKTÍV MÓD
|
||||
Ilyenkor a
|
||||
.B chfn
|
||||
minden mezőt billentyűzetről kér be. A promptnál az új értékeket kell
|
||||
megadni. Az adatok az Enter lenyomásával változatlanul hagyhatók, a "none" szó
|
||||
beírásával a mező tartalma kiürül.
|
||||
.SH OPCIÓK
|
||||
.TP
|
||||
.I "\-f, \-\-full\-name"
|
||||
Teljes valódi név megadása.
|
||||
.TP
|
||||
.I "\-h, \-\-home\-phone"
|
||||
Otthoni telefonszám.
|
||||
.TP
|
||||
.I "\-o, \-\-office"
|
||||
Az irodai szobaszám módosítása.
|
||||
.TP
|
||||
.I "\-p, \-\-office\-phone"
|
||||
Irodai telefonszám megadása.
|
||||
.TP
|
||||
.I "\-u, \-\-help"
|
||||
Segítség kiíratása.
|
||||
.TP
|
||||
.I "\-v, \-\-version"
|
||||
Verzióinformáció megjelenítése.
|
||||
.SH LÁSD MÉG
|
||||
.BR finger (1),
|
||||
.BR passwd (5)
|
||||
.SH SZERZŐ
|
||||
Salvatore Valente <svalente@mit.edu>
|
||||
.SH MEGJEGYZÉS
|
||||
Ford. megj.: A hosszú, valamint az \-u és \-v paraméterek a
|
||||
.B chfn
|
||||
Julianne
|
||||
Frances Haugh által írt változatában nem érvényesek (pl. SuSE).
|
||||
Az irodai telefon itt a \-w, a szobaszám az \-r opcióval adható meg.
|
||||
Az \-o egy nem definiált tartalmú mezőt tölt ki; ezt egyébként csak a root
|
||||
módosíthatja.
|
||||
.SH MAGYAR FORDÍTÁS
|
||||
Gál Gyuri <gyuri@lamer.hu>
|
||||
@@ -1,63 +0,0 @@
|
||||
.TH ID 1 "GNU Shell Utilities" "FSF" \" \-*\- nroff \-*\-
|
||||
.SH NÉV
|
||||
id \- kiírja a valóságos és effektív UID\-eket és GID\-eket
|
||||
.SH ÁTTEKINTÉS
|
||||
.B id
|
||||
[\-gnruG] [\-\-group] [\-\-name] [\-\-real] [\-\-user] [\-\-groups]
|
||||
[\-\-help] [\-\-version] [username]
|
||||
.SH LEÍRÁS
|
||||
Ezt a dokumentációt a továbbiakban nem tartjuk karban, így
|
||||
pontatlan vagy hiányos lehet. A Texinfo dokumentáció a hiteles forrás.
|
||||
.PP
|
||||
Ez a kézikönyv lap az
|
||||
.BR id
|
||||
GNU változatát írja le. Az
|
||||
.B id
|
||||
információt szolgáltat az adott felhasználóról, vagy arról aki a
|
||||
programot futtatja, ha felhasználó nincs megadva.
|
||||
Alapértelmezésben a valódi felhasználói ID\-t írja ki,
|
||||
a valódi csoport ID\-t, az effektív felhasználói ID\-t, ha az különbözik a
|
||||
valódi felhasználói ID\-től, az effektív csoport ID\-t, ha az különbözik a
|
||||
valódi csoport ID\-től, és a kiegészítő csoportok ID\-it.
|
||||
A parancs ezeket a paramétereket egy sorban, egymás után
|
||||
irja ki, zárójelben megadva a felhasználó, illetve a csoport nevét.
|
||||
.PP
|
||||
Az alábbi opciókkal az
|
||||
.B id
|
||||
képes a fenti információk egy részének a megjelenítésére is.
|
||||
.SS OPCIÓK
|
||||
.TP
|
||||
.I "\-g, \-\-group"
|
||||
Csak a csoport ID\-jét írja ki.
|
||||
.TP
|
||||
.I "\-G, \-\-groups"
|
||||
Csak a kiegészítő csoportok ID\-it írja ki.
|
||||
.TP
|
||||
.I "\-\-help"
|
||||
Használati útmutatót ír a standard kimenetre és kilép.
|
||||
.TP
|
||||
.I "\-n, \-\-name"
|
||||
A nevet jeleníti meg az ID helyet.
|
||||
Szükséges az
|
||||
.IR \-u ,
|
||||
.IR \-g ,
|
||||
vagy
|
||||
.IR \-G
|
||||
paraméter.
|
||||
.TP
|
||||
.I "\-r, \-\-real"
|
||||
A valódi felhasználói vagy csoport ID\-t jeleníti meg az effektív helyett.
|
||||
Szükséges
|
||||
.IR \-u ,
|
||||
.IR \-g ,
|
||||
vagy
|
||||
.IR \-G
|
||||
paraméter.
|
||||
.TP
|
||||
.I "\-u, \-\-user"
|
||||
Csak a felhasználó ID\-jét jeleníti meg.
|
||||
.TP
|
||||
.I "\-\-version"
|
||||
A program verziójáról ír ki információt a standard kimenetre és kilép.
|
||||
.SH MAGYAR FORDÍTÁS
|
||||
Ámon Tamás <sajt@erba.hu>
|
||||
@@ -1,52 +0,0 @@
|
||||
.TH ID 1L "GNU 쉘 유틸리티" "FSF" \" \-*\- nroff \-*\-
|
||||
.SH 이름
|
||||
id \- 실제, 유효 UID와 GID를 출력한다.
|
||||
.SH 개요
|
||||
.B id
|
||||
[\-gnruG] [\-\-group] [\-\-name] [\-\-real] [\-\-user] [\-\-groups]
|
||||
[\-\-help] [\-\-version] [username]
|
||||
.SH 설명
|
||||
이 맨페이지는 GNU 버전의
|
||||
.BR id
|
||||
를 다룬다.
|
||||
.B id
|
||||
는 주어진 사용자, 또는 사용자가 주어지지 않는 경우 프로세스의 주인에 대한
|
||||
정보를 출력한다. 기본적으로 실제 사용자 ID, 실제 그룹 ID, 만약 실제 사용자
|
||||
ID와 다르다면 유효 사용자 ID를, 마찬가지로 실제 그룹 ID와 다르다면 유효 그룹
|
||||
ID를 출력하고 추가 그룹 ID를 출력한다. 각 항목은 식별 문자 그리고 괄호 안에
|
||||
해당하는 사용자 또는 그룹명으로 표현된다.
|
||||
.PP
|
||||
.B id
|
||||
에 옵션을 주면 위에서 열거한 정보의 일부만 보여준다.
|
||||
.SS 옵션
|
||||
.TP
|
||||
.I "\-g, \-\-group"
|
||||
오로지 그룹 ID만 출력한다.
|
||||
.TP
|
||||
.I "\-G, \-\-groups"
|
||||
추가 그룹만 출력한다.
|
||||
.TP
|
||||
.I "\-\-help"
|
||||
표준출력으로 사용법을 출력하고 정상적으로 종료한다.
|
||||
.TP
|
||||
.I "\-n, \-\-name"
|
||||
ID 번호 대신 사용자명, 그룹명을 출력한다.
|
||||
.IR \-u ,
|
||||
.IR \-g ,
|
||||
또는
|
||||
.IR \-G
|
||||
를 필요로 한다.
|
||||
.TP
|
||||
.I "\-r, \-\-real"
|
||||
유효 사용자, 유효 그룹 ID가 아니라 실제 ID 를 출력한다.
|
||||
.IR \-u ,
|
||||
.IR \-g ,
|
||||
또는
|
||||
.IR \-G
|
||||
를 필요로 한다.
|
||||
.TP
|
||||
.I "\-u, \-\-user"
|
||||
오로지 사용자 ID 만 출력한다.
|
||||
.TP
|
||||
.I "\-\-version"
|
||||
표준출력으로 버전정보를 출력하고 정상적으로 종료한다.
|
||||
@@ -1,29 +0,0 @@
|
||||
.\" Original author unknown. This man page is in the public domain.
|
||||
.\" Modified Sat Oct 9 17:46:48 1993 by faith@cs.unc.edu
|
||||
.TH NEWGRP 1 "9 October 1993" "Linux 1.2" "Linux Programmer's Manual"
|
||||
.SH NAME
|
||||
newgrp \- 자신이 소속된 그룹을 새 그룹으로 바꾼다.
|
||||
.SH SYNOPSIS
|
||||
.BI "newgrp [ " group " ]"
|
||||
.SH DESCRIPTION
|
||||
.B Newgrp
|
||||
명령은
|
||||
changes the group identification of its caller, analogously to
|
||||
.BR login (1).
|
||||
명령으로 로그인 할 때 식별되는 그룹을 바꾼다.
|
||||
\fIgroup\fR으로 사용될 수 있는 값은 /etc/group 파일안에
|
||||
있는 그룹의 이름이나, GID 값이여야 하며,
|
||||
명령행 인자에서 이 값을 특별히 지정하지 않으면, 현재 자신의
|
||||
그룹으로 바꾼다.
|
||||
.LP
|
||||
.SH FILES
|
||||
.I /etc/group
|
||||
.br
|
||||
.I /etc/passwd
|
||||
|
||||
.SH "SEE ALSO"
|
||||
.BR login "(1), " group (5)
|
||||
|
||||
.SH AUTHOR
|
||||
Originally by Michael Haardt. Currently maintained by
|
||||
Peter Orbaek (poe@daimi.aau.dk).
|
||||
+4
-4
@@ -20,7 +20,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow-man\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:35+0200\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
|
||||
"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
|
||||
@@ -2845,7 +2845,7 @@ msgstr ""
|
||||
#: su.1.xml:158(para)
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
|
||||
#: su.1.xml:168(term)
|
||||
@@ -4703,8 +4703,8 @@ msgstr "<option>PASS_MIN_LEN</option> (antal)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+12
-7
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow-man-pages\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:36+0200\n"
|
||||
"Last-Translator: Simon Brandmair <sbrandmair@gmx.net>\n"
|
||||
"Language-Team: debian-l10n-german <http://lists.debian.org/debian-l10n-"
|
||||
@@ -3064,7 +3064,7 @@ msgstr "5"
|
||||
#: limits.5.xml:61(refmiscinfo) gshadow.5.xml:48(refmiscinfo)
|
||||
#: faillog.5.xml:59(refmiscinfo)
|
||||
msgid "File Formats and Conversions"
|
||||
msgstr "Dateiformate und -konvertierung"
|
||||
msgstr "Dateiformate und konvertierung"
|
||||
|
||||
#: suauth.5.xml:65(refpurpose)
|
||||
msgid "detailed su control file"
|
||||
@@ -3424,9 +3424,14 @@ msgstr ""
|
||||
"option> ausgeführt wird"
|
||||
|
||||
#: su.1.xml:158(para)
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The executed command will have no controlling terminal. This option "
|
||||
#| "cannot be used to execute interractive programs which need a controlling "
|
||||
#| "TTY."
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
"Der ausgeführte Befehl hat kein ihn steuerndes Terminal. Mit dieser Option "
|
||||
"können keine interaktiven Programme, die ein sie steuerndes TTY benötigen, "
|
||||
@@ -4315,7 +4320,7 @@ msgstr ""
|
||||
|
||||
#: shadow.5.xml:235(para)
|
||||
msgid "An empty field means that the account will never expire."
|
||||
msgstr "Ein leeren Feld bedeutet, dass das Konto nicht verfallen wird."
|
||||
msgstr "Ein leeres Feld bedeutet, dass das Konto nicht verfallen wird."
|
||||
|
||||
#: shadow.5.xml:238(para)
|
||||
msgid ""
|
||||
@@ -5901,8 +5906,8 @@ msgstr "<option>PASS_MIN_LEN</option> (Zahl)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
"Anzahl der von crypt() berücksichtigten Zeichen des Passworts. Standardmäßig "
|
||||
@@ -6884,7 +6889,7 @@ msgid ""
|
||||
"contents of this file should be a message indicating why logins are "
|
||||
"inhibited."
|
||||
msgstr ""
|
||||
"Falls angegeben, der Name einer Datei, dessen Existenz Anmeldungen außer von "
|
||||
"Falls angegeben, der Name einer Datei, deren Existenz Anmeldungen außer von "
|
||||
"Root verhindert. Der Inhalt der Datei sollte die Gründe enthalten, weshalb "
|
||||
"Anmeldungen untersagt sind."
|
||||
|
||||
|
||||
+360
-141
File diff suppressed because it is too large
Load Diff
+9
-4
@@ -8,7 +8,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.5\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:38+0200\n"
|
||||
"Last-Translator: Giuseppe Sacco <eppesuig@debian.org>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
@@ -3565,9 +3565,14 @@ msgstr ""
|
||||
"<option>-c</option>."
|
||||
|
||||
#: su.1.xml:158(para)
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The executed command will have no controlling terminal. This option "
|
||||
#| "cannot be used to execute interractive programs which need a controlling "
|
||||
#| "TTY."
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
"Il comando eseguito non avrà un terminale di controllo. Questa opzione non "
|
||||
"può essere utilizzata per invocare programmi interattivi che richiedono un "
|
||||
@@ -6178,8 +6183,8 @@ msgstr "<option>PASS_MIN_LEN</option> (numerico)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
"Numero di caratteri significativi della password per crypt(). "
|
||||
|
||||
+4
-4
@@ -3,7 +3,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: man pages for shadow 4.0.16\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:38+0200\n"
|
||||
"Last-Translator: Tomasz Kłoczko <kloczek@pld.org.pl>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
@@ -3008,7 +3008,7 @@ msgstr ""
|
||||
#: su.1.xml:158(para)
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
|
||||
#: su.1.xml:168(term)
|
||||
@@ -5067,8 +5067,8 @@ msgstr "PASS_MIN_DAYS (numer)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+9
-4
@@ -4,7 +4,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 1:4.0.18.2-1\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:39+0200\n"
|
||||
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
|
||||
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
|
||||
@@ -3563,9 +3563,14 @@ msgstr ""
|
||||
"<option>-c</option>."
|
||||
|
||||
#: su.1.xml:158(para)
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The executed command will have no controlling terminal. This option "
|
||||
#| "cannot be used to execute interractive programs which need a controlling "
|
||||
#| "TTY."
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
"Запускаемая программа не будет иметь управляющего терминала. Этот параметр "
|
||||
"не может быть использован для запуска интерактивных программ, которым "
|
||||
@@ -6156,8 +6161,8 @@ msgstr "<option>PASS_MIN_LEN</option> (число)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
"Количество значимых символов в пароле для crypt(). По умолчанию значение "
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+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"
|
||||
@@ -1472,7 +1472,7 @@ msgid "Specify a command that will be invoked by the shell using its <option>-c<
|
||||
msgstr ""
|
||||
|
||||
#: su.1.xml:158(para)
|
||||
msgid "The executed command will have no controlling terminal. This option cannot be used to execute interractive programs which need a controlling TTY."
|
||||
msgid "The executed command will have no controlling terminal. This option cannot be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
|
||||
#: su.1.xml:168(term)
|
||||
|
||||
+4
-4
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: man pages for shadow 4.0.18\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:41+0200\n"
|
||||
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
|
||||
"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
|
||||
@@ -3065,7 +3065,7 @@ msgstr "Ange ett kommando som ska startas av skalet med <option>-c</option>."
|
||||
#: su.1.xml:158(para)
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
|
||||
#: su.1.xml:168(term)
|
||||
@@ -5305,8 +5305,8 @@ msgstr "PASS_MIN_DAYS (nummer)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
|
||||
|
||||
+9
-4
@@ -4,7 +4,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow-man-pages VERSION\n"
|
||||
"POT-Creation-Date: 2013-08-23 01:54+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:53+0200\n"
|
||||
"PO-Revision-Date: 2013-08-23 01:42+0200\n"
|
||||
"Last-Translator: YunQiang Su <wzssyqa@gmail.com>\n"
|
||||
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
||||
@@ -3195,9 +3195,14 @@ msgid ""
|
||||
msgstr "通过使用其 <option>-c</option> 选项,指定一个由 shell 运行的命令。"
|
||||
|
||||
#: su.1.xml:158(para)
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The executed command will have no controlling terminal. This option "
|
||||
#| "cannot be used to execute interractive programs which need a controlling "
|
||||
#| "TTY."
|
||||
msgid ""
|
||||
"The executed command will have no controlling terminal. This option cannot "
|
||||
"be used to execute interractive programs which need a controlling TTY."
|
||||
"be used to execute interactive programs which need a controlling TTY."
|
||||
msgstr ""
|
||||
"执行的命令将不会拥有控制终端。此选项不能用于执行需要控制 TTY 的交互程序。"
|
||||
|
||||
@@ -5419,8 +5424,8 @@ msgstr "<option>PASS_MIN_LEN</option> (number)"
|
||||
#: passwd.1.xml:35(para) login.defs.5.xml:35(para)
|
||||
msgid ""
|
||||
"Number of significant characters in the password for crypt(). "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your crypt"
|
||||
"() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<option>PASS_MAX_LEN</option> is 8 by default. Don't change unless your "
|
||||
"crypt() is better. This is ignored if <option>MD5_CRYPT_ENAB</option> set to "
|
||||
"<replaceable>yes</replaceable>."
|
||||
msgstr ""
|
||||
"crypt() 的有效字符位数。<option>PASS_MAX_LEN</option> 默认是 8,除非您自己的 "
|
||||
|
||||
+1
-1
@@ -157,7 +157,7 @@
|
||||
</para>
|
||||
<para>
|
||||
The executed command will have no controlling terminal. This
|
||||
option cannot be used to execute interractive programs which
|
||||
option cannot be used to execute interactive programs which
|
||||
need a controlling TTY.
|
||||
<!-- This avoids TTY hijacking when su is used to lower
|
||||
privileges -->
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+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"
|
||||
@@ -413,6 +413,10 @@ msgstr "nepoznata grupa: %s\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
@@ -747,6 +751,10 @@ msgstr ""
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: grupa %s postoji\n"
|
||||
@@ -1355,6 +1363,10 @@ msgstr ""
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Stara šifra:"
|
||||
@@ -1421,6 +1433,18 @@ msgstr "nepoznata grupa: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1682,11 +1706,11 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -1930,6 +1954,10 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr ""
|
||||
@@ -1969,6 +1997,14 @@ msgstr ""
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2005,6 +2041,10 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr ""
|
||||
@@ -2107,6 +2147,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2122,6 +2174,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: grupa %s postoji\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: unknown member %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2139,6 +2199,26 @@ msgstr ""
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr ""
|
||||
@@ -2227,6 +2307,18 @@ msgstr ""
|
||||
msgid "Couldn't make backup"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "nepoznata grupa: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-22 18:25+0100\n"
|
||||
"Last-Translator: Innocent De Marchi <tangram.peces@gmail.com>\n"
|
||||
"Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n"
|
||||
@@ -429,6 +429,11 @@ msgstr "%s: camí «chroot» incorrecta «%s»\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: no es pot accedir al directori «chroot» %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: no es pot accedir al directori «chroot» %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: no es pot executar «chroot» en el directori %s: %s\n"
|
||||
@@ -802,6 +807,11 @@ msgstr "%s: línia %d: la línia és massa llarga\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: línia %d: manca la nova contrasenya\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Error en escriure %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: línia %d: el grup «%s» no existeix\n"
|
||||
@@ -1492,6 +1502,11 @@ msgstr "Forma d'ús: newgrp [-] [grup]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Forma d'ús: sg grup [[-c] ordre]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Error en escriure %s: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Contrasenya no vàlida.\n"
|
||||
|
||||
@@ -1561,6 +1576,21 @@ msgstr ""
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: línia %d: no es pot actualitzar l'entrada\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: ha fallat la preparació de la nova entrada %s: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: no es pot generar l'usuari\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: no es pot actualitzar el fitxer de grups\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1854,13 +1884,13 @@ msgstr "%s: el senyal emmascara un error\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sessió acabada, finalitzant el «shell»..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr "...acabat.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr "...acabat.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2147,6 +2177,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: ha fallat el restabliment del darrer registre de UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: ha fallat la preparació de la nova entrada %s: «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: no es pot crear el directori %s\n"
|
||||
@@ -2190,6 +2225,16 @@ msgstr "%s: no es pot generar el directori «tcb» per a %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: no es pot generar el grup\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: no es pot generar l'usuari\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: no es pot generar el grup\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2239,6 +2284,11 @@ msgstr ""
|
||||
"%s: no es pot eliminar el grup %s, que és el grup primari per un altre "
|
||||
"usuari.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: no es pot eliminar l'entrada «%s» de %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s no s'ha trobat la cua de correu (%s)\n"
|
||||
@@ -2360,6 +2410,18 @@ msgstr " -u, --uid UID nou UID per al compte d'usuari\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock desbloca el compte d'usuari\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2381,6 +2443,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: l'usuari «%s» ja existeix a %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: la data «%s» no és vàlida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: la data «%s» no és vàlida\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: sense opcions\n"
|
||||
@@ -2397,6 +2469,31 @@ msgstr "%s: les contrasenyes ombra són obligatòries per a «-e» i «-f»\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID '%lu' ja existeix\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s no està autoritzat per canviar la contrasenya de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ha fallat la preparació de la nova entrada %s: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ha fallat la preparació de la nova entrada %s: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ha fallat la preparació de la nova entrada %s: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ha fallat la preparació de la nova entrada %s: «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: el directori %s ja existeix\n"
|
||||
@@ -2499,6 +2596,20 @@ msgstr "No s'ha pogut blocar el fitxer"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "No s'ha pogut fer una còpia de seguretat"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: «nscd» ha sortit amb l'estat %d"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "no s'ha pogut obrir el fitxer de treball («scratch file»)"
|
||||
|
||||
@@ -3371,9 +3482,6 @@ msgstr "%s: no es pot trobar el directori «tcb» per %s\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: no es pot actualitzar el fitxer de grups ombra\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: no es pot actualitzar el fitxer de grups\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: no es pot eliminar el fitxer de grups ombra\n"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2011-11-26 18:41+0100\n"
|
||||
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
|
||||
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
|
||||
@@ -440,6 +440,11 @@ msgstr "%s: chybné telefonní číslo domů: „%s“\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: adresář %s nelze vytvořit\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: adresář %s nelze vytvořit\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -795,6 +800,11 @@ msgstr "%s: řádek %d je příliš dlouhý\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: řádek %d: chybí nové heslo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: selhalo odstranění %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: řádek %d: skupina „%s“ neexistuje\n"
|
||||
@@ -1459,6 +1469,11 @@ msgstr "Použití: newgrp [-] [skupina]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Použití: sg skupina [[-c] příkaz]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: selhalo odstranění %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Neplatné heslo.\n"
|
||||
|
||||
@@ -1525,6 +1540,21 @@ msgstr "%s: řádek %d: volání chown %s selhalo: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: řádek %d: položku nelze aktualizovat\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: selhala příprava nového %s záznamu „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: nelze vytvořit uživatele\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: soubor s hesly nelze aktualizovat\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr " -a, --all vypíše stav hesel na všech účtech\n"
|
||||
@@ -1813,13 +1843,13 @@ msgstr "%s: chyba maskování signálu\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sezení skončeno, ukončuji shell..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...ukončen.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...ukončen.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2102,6 +2132,11 @@ msgstr "%s: nepodařilo se vynulovat faillog záznam UID %lu: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: nepodařilo se vynulovat lastlog záznam UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: selhala příprava nového %s záznamu „%s“\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: adresář %s nelze vytvořit\n"
|
||||
@@ -2146,6 +2181,16 @@ msgstr "%s: adresář %s nelze vytvořit\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: nelze vytvořit skupinu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: nelze vytvořit uživatele\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: nelze vytvořit skupinu\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2198,6 +2243,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: skupina %s je primární skupinou jiného uživatele a nelze ji odstranit.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: nelze odstranit záznam „%s“ z %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s home directory (%s) not found\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2317,6 +2367,18 @@ msgstr " -u, --uid UID nové UID pro uživatelský účet\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock odemkne uživatelský účet\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| " -Z, --selinux-user new SELinux user mapping for the user "
|
||||
@@ -2341,6 +2403,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: uživatel „%s“ již v %s existuje\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: chybné datum „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: chybné datum „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2358,6 +2430,31 @@ msgstr "%s: přepínače -e a -f vyžadují stínová hesla\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID „%lu“ již existuje\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s není oprávněn změnit heslo %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: selhala příprava nového %s záznamu „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: selhala příprava nového %s záznamu „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: selhala příprava nového %s záznamu „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: selhala příprava nového %s záznamu „%s“\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: adresář %s již existuje\n"
|
||||
@@ -2460,6 +2557,20 @@ msgstr "Soubor nelze zamknout"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Zálohování nelze provést."
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s se v /etc/passwd nenalézá\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3196,9 +3307,6 @@ msgstr "%s: chybný základní adresář „%s“\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Soubor s hesly nelze otevřít.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s se v /etc/passwd nenalézá\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Chyba při aktualizaci položky v souboru s hesly.\n"
|
||||
|
||||
@@ -3407,9 +3515,6 @@ msgstr "%s: chybný základní adresář „%s“\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: soubor se stínovými hesly nelze aktualizovat\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: soubor s hesly nelze aktualizovat\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: soubor se stínovými hesly skupin nelze smazat\n"
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-26 23:57+0100\n"
|
||||
"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
|
||||
"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
|
||||
@@ -435,6 +435,11 @@ msgstr "%s: Ugyldig chroot-sti »%s«\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: Kan ikke tilgå chroot-mappe %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: Kan ikke tilgå chroot-mappe %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: Kan ikke chroot til mappe %s: %s\n"
|
||||
@@ -792,6 +797,11 @@ msgstr "%s: Linje %d: Linjen er for lang\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: Linje %d: Mangler ny adgangskode\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Kunne ikke skrive %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: Linje %d: Gruppe »%s« findes ikke\n"
|
||||
@@ -1465,6 +1475,11 @@ msgstr "Brug: newgrp [-] [gruppe]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Brug: sg gruppe [[-c] kommando]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Kunne ikke skrive %s: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Ugyldig adgangskode.\n"
|
||||
|
||||
@@ -1531,6 +1546,21 @@ msgstr "%s: Linje %d: chown %s fejlede: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: Linje %d: Kan ikke opdatere punktet\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: Kunne ikke forberede det nye %s-punkt »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: Kan ikke oprette bruger\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: Kan ikke oprette gruppe\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1816,13 +1846,13 @@ msgstr "%s: Forkert signalmasking\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Session termineret, terminerer skal..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...termineret.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...termineret.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2106,6 +2136,11 @@ msgstr "%s: Kunne ikke nulstille faillog-punktet for UID %lu: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: Kunne ikke nulstille lastlog-punktet for UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: Kunne ikke forberede det nye %s-punkt »%s«\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: Kan ikke oprette mappen %s\n"
|
||||
@@ -2149,6 +2184,16 @@ msgstr "%s: Kan ikke oprette tcv-mappe for %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: Kan ikke oprette gruppe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: Kan ikke oprette bruger\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: Kan ikke oprette gruppe\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2195,6 +2240,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: Gruppe %s er den primære gruppe for en anden bruger og fjernes ikke.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: Kan ikke fjerne punkt »%s« fra %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s postkø (%s) er ikke fundet\n"
|
||||
@@ -2316,6 +2366,18 @@ msgstr " -u, --uid UID ny UID til brugerkontoen\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock åbn brugerkontoen\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2337,6 +2399,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: Brugeren »%s« findes allerede i %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: Ugyldig dato »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: Ugyldig dato »%s«\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: Ingen tilvalg\n"
|
||||
@@ -2353,6 +2425,31 @@ msgstr "%s: Skyggeadgangskoder kræves for -e og -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID »%lu« findes allerede\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s er ikke godkendt til at ændre adgangskoden på %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Kunne ikke forberede det nye %s-punkt »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Kunne ikke forberede det nye %s-punkt »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Kunne ikke forberede det nye %s-punkt »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Kunne ikke forberede det nye %s-punkt »%s«\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: Mappen %s findes\n"
|
||||
@@ -2450,6 +2547,20 @@ msgstr "Kunne ikke låse filen"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Kunne ikke lave sikkerhedskopi"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd afsluttede med status %d"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "kunne ikke åbne scratch-fil"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.4.2\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-18 21:44+0100\n"
|
||||
"Last-Translator: Holger Wansing <linux@wansing-online.de>\n"
|
||||
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
|
||||
@@ -429,6 +429,11 @@ msgstr "%s: Ungültiger chroot-Pfad »%s«\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: auf chroot-Verzeichnis %s kann nicht zugegriffen werden: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: auf chroot-Verzeichnis %s kann nicht zugegriffen werden: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: chroot-Wechsel in Verzeichnis %s nicht möglich: %s\n"
|
||||
@@ -797,6 +802,11 @@ msgstr "%s: Zeile %d: Zeile zu lang\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: Zeile %d: Neues Passwort fehlt\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Schreiben von %s fehlgeschlagen: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: Zeile %d: Gruppe »%s« existiert nicht\n"
|
||||
@@ -1490,6 +1500,11 @@ msgstr "Aufruf: newgrp [-] [Gruppe]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Aufruf: sg Gruppe [[-c] Befehl]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Schreiben von %s fehlgeschlagen: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Ungültiges Passwort.\n"
|
||||
|
||||
@@ -1558,6 +1573,21 @@ msgstr "%s: Zeile %d: chown %s (Eigentümer ändern) fehlgeschlagen: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: Zeile %d: Eintrag kann nicht aktualisiert werden.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: Vorbereiten des neuen %s-Eintrags »%s« fehlgeschlagen.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: Benutzer kann nicht erstellt werden\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: Gruppe kann nicht erzeugt werden\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1849,13 +1879,13 @@ msgstr "%s: Signalmaskierungs-Fehlfunktion\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sitzung abgebrochen, Shell wird beendet ..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ... abgebrochen.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ... abgebrochen.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2151,6 +2181,11 @@ msgstr "%s: Zurücksetzen des faillog-Eintrags für UID %lu fehlgeschlagen: %s\n
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: Zurücksetzen des lastlog-Eintrags für UID %lu fehlgeschlagen: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: Vorbereiten des neuen %s-Eintrags »%s« fehlgeschlagen.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: Verzeichnis %s kann nicht erstellt werden.\n"
|
||||
@@ -2194,6 +2229,16 @@ msgstr "%s: Erstellen des tcb-Verzeichnisses für %s fehlgeschlagen\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: Gruppe kann nicht erzeugt werden\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: Benutzer kann nicht erstellt werden\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: Gruppe kann nicht erzeugt werden\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2245,6 +2290,11 @@ msgstr ""
|
||||
"%s: Gruppe %s ist die primäre Gruppe eines anderen Benutzers und wird\n"
|
||||
"nicht entfernt.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: Eintrag »%s« konnte nicht aus %s entfernt werden.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s Mail-Warteschlange (%s) nicht gefunden\n"
|
||||
@@ -2370,6 +2420,18 @@ msgstr " -u, --uid UID Neue UID des Benutzerzugangs\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock Den Benutzerzugang entsperren\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2391,6 +2453,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: Benutzer »%s« existiert bereits in %s.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: Ungültiges Datum »%s«\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: Ungültiges Datum »%s«\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: keine Optionen\n"
|
||||
@@ -2407,6 +2479,31 @@ msgstr "%s: shadow-Passwörter für -e und -f erforderlich\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID »%lu« existiert bereits\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s ist nicht berechtigt, das Passwort von %s zu ändern.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Vorbereiten des neuen %s-Eintrags »%s« fehlgeschlagen.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Vorbereiten des neuen %s-Eintrags »%s« fehlgeschlagen.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Vorbereiten des neuen %s-Eintrags »%s« fehlgeschlagen.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Vorbereiten des neuen %s-Eintrags »%s« fehlgeschlagen.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: Verzeichnis %s existiert\n"
|
||||
@@ -2508,6 +2605,20 @@ msgstr "Datei konnte nicht gesperrt werden"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Sicherung konnte nicht erstellt werden"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd wurde mit Status %d beendet"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "Öffnen der scratch-Datei fehlgeschlagen"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.17\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2006-06-01 15:28+0530\n"
|
||||
"Last-Translator: Jurmey Rabgay <jur_gay@yahoo.com>\n"
|
||||
"Language-Team: dzongkha <pgeyleg@dit.gov.bt>\n"
|
||||
@@ -444,6 +444,11 @@ msgstr "%s: ནུས་མེད་ཀྱི་ ཁྱིམ་གྱི་བ
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: སྣོད་ཐོ་ %s གསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: སྣོད་ཐོ་ %s གསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -785,6 +790,11 @@ msgstr "%s: གྲལ་ཐིག་ %d: གྲལ་ཐིག་རིང་ད
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: གྲལ་ཐིག་ %d: ཆོག་ཡིག་གསརཔ་ བརླག་སྟོར་ཞུགས་པ།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1441,6 +1451,11 @@ msgstr "ལག་ལེན་: newgrp [-][ སྡེ་ཚན་]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "ལག་ལེན་: sg group [[-c]བརྡ་བཀོད་ ]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "ཆོག་ཡིག་རྙིངམ་:"
|
||||
@@ -1510,6 +1525,20 @@ msgstr "%s: གྲལ་ཐིག་ %d: chown འཐུས་ཤོར་བྱ
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: གྲལ་ཐིག་ %d: ཐོ་བཀོད་དུས་མཐུན་བཟོ་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: %sགསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: སྡེ་ཚན་ཡིག་སྣོད་ དུས་མཐུན་བཟོ་མི་ཚུགས།\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1782,13 +1811,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2053,6 +2082,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: སྣོད་ཐོ་ %s གསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
@@ -2098,6 +2132,14 @@ msgstr "%s: སྣོད་ཐོ་ %s གསར་བསྐྲུན་འབ
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: %sགསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: %sགསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: %sགསར་བསྐྲུན་འབད་མི་ཚུགས།\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2139,6 +2181,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: ལག་ལེན་པ་གཞན་གྱི་དོན་ལུ་ གཞི་རིམ་སྡེ་ཚན་ཅིག་ཨིན་མི་སྡེ་ཚན་ %sའདི་ རྩ་བསྐྲད་གཏང་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: སྣོད་ཐོ་ %s འདི་ %s ལུ་ བསྐྱར་མིང་བཏགས་མི་ཚུགས།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2246,6 +2293,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2262,6 +2321,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: ལག་ལེན་པ་ %sཡོདཔ་ཨིན།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: ནུས་མེད་ཚེས་གྲངས་ '%s'།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: ནུས་མེད་ཚེས་གྲངས་ '%s'།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2279,6 +2348,30 @@ msgstr "%s: -e aདང་ -f གཉིས་ལུ་དངོས་མཁོ་
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ཁེ་དབང་(%s)ཚུ་བཀོག་ནིའི་འཐུས་ཤོར་བྱུང་ཡོདཔ།\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: སྣོད་ཐོ་ %sའདི་ཡོདཔཨིན།\n"
|
||||
@@ -2383,6 +2476,20 @@ msgstr "ཡིག་སྣོད་ལྡེ་མིག་བརྐྱབས་
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "རྒྱབ་ཐག་བཟོ་མ་ཚུགས།"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: /etc/passwd ནང་ལུ་ %s མ་ཐོབ།\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s: སྡེ་ཚན་ཡིག་སྣོད་ ཁ་ཕྱེ་མ་ཚུགས།\n"
|
||||
@@ -2983,9 +3090,6 @@ msgstr "%s: ནུས་མེད་གཞི་རྟེན་སྣོད་
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "ཆོག་ཡིག་ཡིག་སྣོད་ ཁ་ཕྱེ་མི་ཚུགས།\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: /etc/passwd ནང་ལུ་ %s མ་ཐོབ།\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "ཆོག་ཡིག་ཐོ་བཀོད་དུས་མཐུན་འབདཝ་ད་ལུ་ འཛོལ་བ།\n"
|
||||
|
||||
@@ -3178,9 +3282,6 @@ msgstr "%s: ནུས་མེད་གཞི་རྟེན་སྣོད་
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: གྱིབ་མའི་སྡེ་ཚན་ཡིག་སྣོད་ དུས་མཐུན་བཟོ་མི་ཚུགས།\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: སྡེ་ཚན་ཡིག་སྣོད་ དུས་མཐུན་བཟོ་མི་ཚུགས།\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: གྱིབ་མའི་སྡེ་ཚན་ཡིག་སྣོད་ བཏོན་གཏང་མི་ཚུགས།\n"
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow_po_el\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-21 00:22+0200\n"
|
||||
"Last-Translator: Thomas Vasileiou <thomas-v@wildmail.com>\n"
|
||||
"Language-Team: Greek <debian-l10n-greek@lists.debian.org>\n"
|
||||
@@ -432,6 +432,11 @@ msgstr "%s: διαδρομή chroot μη έγκυρη '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: αδυναμία προσπέλαση του καταλόγου chroot %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: αδυναμία προσπέλαση του καταλόγου chroot %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr ""
|
||||
@@ -806,6 +811,11 @@ msgstr "%s: γραμμή %d: πολύ μεγάλη γραμμή\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: γραμμή %d: έλλειψη νέου συνθηματικού\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Αποτυχία εγγραφής %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: γραμμή %d: η ομάδα '%s' δεν υπάρχει\n"
|
||||
@@ -1494,6 +1504,11 @@ msgstr "Χρήση: newgrp [-] [ομάδα]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Χρήση: sg ομάδα [[-c] εντολή]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Αποτυχία εγγραφής %s: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Λάθος συνθηματικό.\n"
|
||||
|
||||
@@ -1562,6 +1577,21 @@ msgstr "%s: γραμμή %d: αποτυχία αλλαγής ιδιοκτήτη
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: γραμμή %d: αδυναμία ανανέωσης καταχώρησης\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: αποτυχία προετοιμασίας της νέας εγγραφής %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: αδυναμία δημιουργίας του χρήστη\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: αδυναμία ανανέωσης για το αρχείο ομάδων\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1871,13 +1901,13 @@ msgstr "%s: δυσλειτουργία μασκαρίσμος του σήματ
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Συνεδρία τερματίστηκε, τερματισμός φλοιού..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...τερματίστηκε.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...τερματίστηκε.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2167,6 +2197,11 @@ msgstr "%s: αποτυχία επαναφοράς της καταχώρησης
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: αποτυχία επαναφοράς της καταχώρησης στο lastlog του UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: αποτυχία προετοιμασίας της νέας εγγραφής %s '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: αδυναμία δημιουργίας καταλόγου %s\n"
|
||||
@@ -2209,6 +2244,16 @@ msgstr "%s: Αδυναμία δημιουργίας tcb καταλόγου γι
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: αδυναμία δημιουργίας ομάδας\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: αδυναμία δημιουργίας του χρήστη\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: αδυναμία δημιουργίας ομάδας\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2259,6 +2304,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: η ομάδα %s είναι πρωταρχική ομάδα για άλλο χρήστη και δεν διαγράφηκε.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: αδυναμία απομάκρυνσης της εγγραφής '%s' από το %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s η ουρά του ταχυδρομείου (%s) δεν βρέθηκε\n"
|
||||
@@ -2386,6 +2436,18 @@ msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
" -U, --unlock ξεκλείδωμα του λογαριασμού του χρήστη\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2407,6 +2469,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: Ο χρήστης %s υπάρχει ήδη στο %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: Μη έγκυρη ημερομηνία '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: Μη έγκυρη ημερομηνία '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: χωρίς επιλογές\n"
|
||||
@@ -2423,6 +2495,33 @@ msgstr "%s: σκιώδη συνθηματικά απαιτούνται για τ
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: το UID '%lu' υπάρχει ήδη\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
"%s: ο χρήστης %s δεν είναι εξουσιοδοτημένος να αλλάξει το συνθηματικό του "
|
||||
"%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: αποτυχία προετοιμασίας της νέας εγγραφής %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: αποτυχία προετοιμασίας της νέας εγγραφής %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: αποτυχία προετοιμασίας της νέας εγγραφής %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: αποτυχία προετοιμασίας της νέας εγγραφής %s '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: ο κατάλογος %s υπάρχει\n"
|
||||
@@ -2526,6 +2625,20 @@ msgstr "Αδυναμία ξεκλειδώματος αρχείου"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Αδυναμία δημιουργίας αντιγράφου ασφαλείας "
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: το ncsd τερμάτισε με κατάσταση εξόδου %d"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "αποτυχία ανοίγματος προσωρινού αρχείου"
|
||||
|
||||
@@ -3386,9 +3499,6 @@ msgstr "%s: αποτυχία εύρεσης καταλόγου tcb %s\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: αδυναμία ανανέωσης του αρχείου σκιωδών συνθηματικών ομάδων\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: αδυναμία ανανέωσης για το αρχείο ομάδων\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr ""
|
||||
#~ "%s: Δεν είναι δυνατόν να διαγραφεί το αρχείο σκιωδών συνθηματικών ομάδων\n"
|
||||
|
||||
@@ -32,7 +32,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.4.2\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2011-11-23 23:56+0100\n"
|
||||
"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
|
||||
"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
|
||||
@@ -458,6 +458,11 @@ msgstr "%s: teléfono de casa incorrecto: «%s»\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: no se pudo crear el directorio %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Cannot create directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: no se pudo crear el directorio %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to create tcb directory for %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -823,6 +828,11 @@ msgstr "%s: línea %d: línea demasiado larga\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: línea %d: falta la nueva contraseña\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: se produjo un fallo al eliminar %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: línea %d: el grupo «%s» no existe\n"
|
||||
@@ -1509,6 +1519,11 @@ msgstr "Modo de uso: newgrp [-] [grupo]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Modo de uso: sg grupo [[-c] orden]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: se produjo un fallo al eliminar %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Contraseña incorrecta.\n"
|
||||
|
||||
@@ -1576,6 +1591,21 @@ msgstr "%s: línea %d: chown %s falló: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: línea %d: no se puede actualizar la entrada\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: se produjo un fallo al preparar la nueva %s entrada «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: no se pudo crear el usuario\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: no se puede actualizar el fichero de grupo\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1878,13 +1908,13 @@ msgstr "%s: funcionamiento incorrecto del enmascaramiento de la señal\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sesión finalizada, parando la consola ..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ... parada.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ... parada.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2185,6 +2215,11 @@ msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
"%s: se produjo un fallo al reiniciar la entrada de lastlog del UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: se produjo un fallo al preparar la nueva %s entrada «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: no se puede crear el directorio %s\n"
|
||||
@@ -2227,6 +2262,16 @@ msgstr "%s: se produjo un fallo al crear el directorio tcb para %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: no se puede crear el grupo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: no se pudo crear el usuario\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: no se puede crear el grupo\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2279,6 +2324,11 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s: grupo %s es el grupo primario de otro usuario y no se eliminará.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: no se pudo eliminar la entrada «%s» de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s home directory (%s) not found\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2401,6 +2451,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock desbloquea la cuenta de usuario\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| " -Z, --selinux-user new SELinux user mapping for the user "
|
||||
@@ -2425,6 +2487,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: el usuario «%s» ya existe en %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: fecha «%s» incorrecta\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: fecha «%s» incorrecta\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2442,6 +2514,31 @@ msgstr "%s: se necesitan contraseñas de shadow para -e y -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: el UID «%lu» ya existe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s no está autorizado a cambiar la contraseña de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: se produjo un fallo al preparar la nueva %s entrada «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: se produjo un fallo al preparar la nueva %s entrada «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: se produjo un fallo al preparar la nueva %s entrada «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: se produjo un fallo al preparar la nueva %s entrada «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: el directorio %s existe\n"
|
||||
@@ -2544,6 +2641,20 @@ msgstr "No se puede bloquear el fichero"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "No se puede realizar una copia de seguridad"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: no se encontró %s en /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "se produjo un fallo al abrir el fichero temporal"
|
||||
|
||||
@@ -3209,9 +3320,6 @@ msgstr "%s: se produjo un fallo al buscar el directorio tcb de %s\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "No se puede abrir el fichero de contraseñas.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: no se encontró %s en /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Error actualizando la entrada de la contraseña.\n"
|
||||
|
||||
@@ -3405,9 +3513,6 @@ msgstr "%s: se produjo un fallo al buscar el directorio tcb de %s\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: no se puede actualizar el fichero de grupos oculto (shadow)\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: no se puede actualizar el fichero de grupo\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: no se puede eliminar el fichero de grupos oculto\n"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: eu\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2011-11-26 19:42+0100\n"
|
||||
"Last-Translator: Piarres Beobide <pi@beobide.net>\n"
|
||||
"Language-Team: Euskara <debian-l10n-eu@lists.debian.org>\n"
|
||||
@@ -442,6 +442,11 @@ msgstr "%s: etxeko tlf baliogabea: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: ezin da %s direktorioa sortu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: ezin da %s direktorioa sortu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -800,6 +805,11 @@ msgstr "%s: %d. lerroa: lerro luzegia\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: %d. lerroa: pasahitz berria falta da\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: huts %s kentzerakoan\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: %d lerroa: '%s' taldea ez da existitzen\n"
|
||||
@@ -1483,6 +1493,11 @@ msgstr "Erabilera: newgrp [-] [taldea]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Erabilera: sg taldea [[-c] komandoa]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: huts %s kentzerakoan\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Pasahitz baliogabea.\n"
|
||||
|
||||
@@ -1550,6 +1565,21 @@ msgstr "%s: %d lerroa: chown %s-ek huts egin du: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: %d lerroa: ezin da sarrera eguneratu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: huts %s sarrera berria prestatzean '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: ezin da erabiltzailea sortu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: ezin da taldea sortu\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1849,13 +1879,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2127,6 +2157,11 @@ msgstr "%s: huts %lu UIDaren faillog erregistroa berrezartzean: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: huts %lu UIDaren lastlog sarrera berrezartzean: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: huts %s sarrera berria prestatzean '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: ezin da %s direktorioa sortu\n"
|
||||
@@ -2170,6 +2205,16 @@ msgstr "%s: ezin da %s direktorioa sortu\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: ezin da taldea sortu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: ezin da erabiltzailea sortu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: ezin da taldea sortu\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2222,6 +2267,11 @@ msgstr ""
|
||||
"%s: ezin da %s taldea ezabatu beste erabiltzaile baten talde nagusia bait "
|
||||
"da.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: ezin da '%s' sarrera %s-tik kendu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s home directory (%s) not found\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2347,6 +2397,18 @@ msgstr " -u, --uid UID erabiltzaile kontuaren UID berria\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock erabiltzaile kontua desblokeatu\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| " -Z, --selinux-user new SELinux user mapping for the user "
|
||||
@@ -2372,6 +2434,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: '%s' erabiltzailea badago dagoeneko %s-n\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: '%s' data baliogabea\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: '%s' data baliogabea\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2389,6 +2461,31 @@ msgstr "%s: -e eta -f aukerek itzalpeko pasahitzak eskatzen dute\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: '%lu' UIDa badago dagoeneko\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s ez dago %s-ren pasahitza aldatzeko baimendurik\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: huts %s sarrera berria prestatzean '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: huts %s sarrera berria prestatzean '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: huts %s sarrera berria prestatzean '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: huts %s sarrera berria prestatzean '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: %s direktorioa badago\n"
|
||||
@@ -2489,6 +2586,19 @@ msgstr "Ezin da fitxategia blokeatu"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Ezin izan da babeskopiarik egin"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "failed to rename mailbox"
|
||||
msgid "failed to open scratch file"
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18.1\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-24 22:54+0100\n"
|
||||
"Last-Translator: Tommi Vainikainen <thv+debian@iki.fi>\n"
|
||||
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
|
||||
@@ -440,6 +440,11 @@ msgstr "%s: virheellinen kotipuhelin: \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: hakemistoa %s ei voi luoda\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: hakemistoa %s ei voi luoda\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -781,6 +786,11 @@ msgstr "%s: rivi %d: rivi on liian pitkä\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: rivi %d: uusi salasana puuttuu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1438,6 +1448,11 @@ msgstr "Käyttö: newgrp [-] [ryhmä]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Käyttö: sg ryhmä [[-c] komento]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Vanha salasana: "
|
||||
@@ -1507,6 +1522,20 @@ msgstr "%s: rivi %d: chown epäonnistui\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: rivi %d: tietuetta ei voi päivittää\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: tiedostoa %s ei voi luoda\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: ryhmätiedostoa ei voi päivittää\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1782,13 +1811,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2054,6 +2083,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: hakemistoa %s ei voi luoda\n"
|
||||
@@ -2100,6 +2134,14 @@ msgstr "%s: hakemistoa %s ei voi luoda\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: tiedostoa %s ei voi luoda\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: tiedostoa %s ei voi luoda\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: tiedostoa %s ei voi luoda\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2142,6 +2184,11 @@ msgstr ""
|
||||
"%s: Ryhmää %s ei voi poistaa, koska se on toisen käyttäjän ensisijainen "
|
||||
"ryhmä.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: hakemistoa %s ei voi uudelleennimetä hakemistoksi %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2250,6 +2297,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2266,6 +2325,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: käyttäjä %s on olemassa\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: virheellinen päiväys \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: virheellinen päiväys \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2284,6 +2353,30 @@ msgstr "%s: varjosalasanat vaaditaan valitsimille -e ja -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Jäsen on jo olemassa\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: Oikeuksien pudottaminen epäonnistui (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: hakemisto %s on olemassa\n"
|
||||
@@ -2388,6 +2481,20 @@ msgstr "Tiedostoa ei voi lukita"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Tiedostoa ei voi varmuuskopioida"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: Käyttäjää %s ei löydy tiedostosta /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3078,9 +3185,6 @@ msgstr "%s: virheellinen perushakemisto \"%s\"\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Salasanatiedostoa ei voi avata.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: Käyttäjää %s ei löydy tiedostosta /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Virhe päivitettäessä salasanatietuetta.\n"
|
||||
|
||||
@@ -3286,9 +3390,6 @@ msgstr "%s: virheellinen perushakemisto \"%s\"\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: varjoryhmätiedostoa ei voi päivittää\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: ryhmätiedostoa ei voi päivittää\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: varjoryhmätiedostoa ei voi poistaa\n"
|
||||
|
||||
|
||||
@@ -1,19 +1,19 @@
|
||||
# Translation of shadow messages to French
|
||||
# Copyright (C) 1999, 2004, 2005, 2006, 2009 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2011, 2012 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||
# Copyright (C) 2011-2013 Debian French l10n team <debian-l10n-french@lists.debian.org>
|
||||
# Patches, suggestions, etc welcome.
|
||||
#
|
||||
# Vincent Renardias <vincent@ldsol.com>, 1999, 2005.
|
||||
# Jean-Luc Coulon <jean.luc.coulon@wanadoo.fr>, 2005, 2006, 2008.
|
||||
# Christian Perrier <bubulle@debian.org>, 2005, 2006, 2008, 2009.
|
||||
# Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>, 2009.
|
||||
# Thomas Blein <tblein@tblein.eu>, 2011, 2012.
|
||||
# Thomas Blein <tblein@tblein.eu>, 2011, 2012, 2013.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-13 17:09+0100\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2013-07-10 18:53+0200\n"
|
||||
"Last-Translator: Thomas Blein <tblein@tblein.eu>\n"
|
||||
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
|
||||
"Language: fr\n"
|
||||
@@ -21,7 +21,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n>1;\n"
|
||||
"X-Generator: Lokalize 1.0\n"
|
||||
"X-Generator: Lokalize 1.4\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
@@ -54,10 +54,9 @@ msgstr ""
|
||||
msgid "%s: nscd did not terminate normally (signal %d)\n"
|
||||
msgstr "%s : nscd ne s'est pas terminé normalement (signal %d).\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
#, c-format
|
||||
msgid "%s: nscd exited with status %d\n"
|
||||
msgstr "%s : nscd s'est terminé avec le statut %d."
|
||||
msgstr "%s : nscd s'est terminé avec l'état %d\n"
|
||||
|
||||
msgid "Password: "
|
||||
msgstr "Mot de passe : "
|
||||
@@ -446,6 +445,11 @@ msgstr "%s : chemin de chroot « %s » incorrect.\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s : impossible d'accéder au répertoire %s : %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s : impossible d'accéder au répertoire %s : %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s : impossible de « chrooter » dans le répertoire %s : %s\n"
|
||||
@@ -820,6 +824,11 @@ msgstr "%s : ligne %d : ligne trop longue\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s : ligne %d : nouveau mot de passe manquant\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s : échec lors de l'écriture %s : %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s : ligne %d : le groupe %s n'existe pas\n"
|
||||
@@ -1534,6 +1543,11 @@ msgstr "Syntaxe : newgrp [-] [groupe]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Syntaxe : sg groupe [[-c] commande]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s : échec lors de l'écriture %s : %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Mot de passe non valable.\n"
|
||||
|
||||
@@ -1603,6 +1617,21 @@ msgstr "%s : ligne %d : échec de chown %s : %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s : ligne %d : impossible de mettre l'entrée à jour\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s : échec lors de la préparation de la nouvelle entrée de %s « %s »\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s : impossible de créer l'utilisateur\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s : impossible de créer le groupe\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1900,13 +1929,13 @@ msgstr "%s : défaut de fonctionnement de masquage du signal\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Session terminée, arrêt de l'interpréteur de commandes…"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr "… terminé.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s : %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr "… terminé.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2022,10 +2051,9 @@ msgstr "%s : impossible d'ouvrir le nouveau fichier des valeurs par défaut\n"
|
||||
msgid "%s: line too long in %s: %s..."
|
||||
msgstr "%s : ligne trop longue dans %s : %s…"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Cannot create symbolic link %s: %s\n"
|
||||
#, c-format
|
||||
msgid "%s: Cannot create backup file (%s): %s\n"
|
||||
msgstr "%s : impossible de créer le lien symbolique %s : %s\n"
|
||||
msgstr "%s : impossible de créer le fichier de sauvegarde (%s) : %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: rename: %s: %s\n"
|
||||
@@ -2215,6 +2243,11 @@ msgstr ""
|
||||
"%s : impossible de réinitialiser l'entrée lastlog de l'identifiant "
|
||||
"d'utilisateur (UID) %lu : %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s : échec lors de la préparation de la nouvelle entrée de %s « %s »\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s : impossible de créer le répertoire %s\n"
|
||||
@@ -2258,6 +2291,16 @@ msgstr "%s : impossible de créer le répertoire tcb pour %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s : impossible de créer le groupe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s : impossible de créer l'utilisateur\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s : impossible de créer le groupe\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2309,6 +2352,11 @@ msgstr ""
|
||||
"%s : le groupe %s est le groupe primaire d'un autre utilisateur et il ne "
|
||||
"sera pas supprimé.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s : impossible de supprimer l'entrée « %s » de %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr ""
|
||||
@@ -2444,6 +2492,18 @@ msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
" -U, --unlock déverrouiller le compte de l'utilisateur\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2465,6 +2525,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s : l'utilisateur « %s » existe déjà dans %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s : date « %s » non valable\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s : date « %s » non valable\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s : aucune option\n"
|
||||
@@ -2481,6 +2551,31 @@ msgstr "%s : les mots de passe cachés sont nécessaires avec -e ou -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s : l'identifiant d'utilisateur (UID) « %lu » existe déjà\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s : %s n'est pas autorisé à modifier le mot de passe de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : échec lors de la préparation de la nouvelle entrée de %s « %s »\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : échec lors de la préparation de la nouvelle entrée de %s « %s »\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : échec lors de la préparation de la nouvelle entrée de %s « %s »\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : échec lors de la préparation de la nouvelle entrée de %s « %s »\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s : le répertoire %s existe\n"
|
||||
@@ -2582,6 +2677,20 @@ msgstr "Impossible de verrouiller le fichier"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Impossible d'effectuer une sauvegarde"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s : PAM : %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s : nscd s'est terminé avec l'état %d\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "impossible d'ouvrir le fichier initial"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2006-07-18 23:27+0200\n"
|
||||
"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
|
||||
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
|
||||
@@ -440,6 +440,11 @@ msgstr "%s: teléfono da casa non válido: \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: non se pode crear o directorio %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: non se pode crear o directorio %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -781,6 +786,11 @@ msgstr "%s: liña %d: liña longa de máis\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: liña %d: falla o novo contrasinal\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1439,6 +1449,11 @@ msgstr "Emprego: newgrp [-] [grupo]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Emprego: sg grupo [[-c] orde]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Contrasinal antigo: "
|
||||
@@ -1508,6 +1523,20 @@ msgstr "%s: liña %d: a chamada a chown fallou\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: liña %d: non se pode actualizar a entrada\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: non se pode crear %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: non se pode actualizar o ficheiro de grupos\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1783,13 +1812,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2054,6 +2083,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: non se pode crear o directorio %s\n"
|
||||
@@ -2100,6 +2134,14 @@ msgstr "%s: non se pode crear o directorio %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: non se pode crear %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: non se pode crear %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: non se pode crear %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2142,6 +2184,11 @@ msgstr ""
|
||||
"%s: Non se pode eliminar o grupo %s, que é o grupo primario de outro "
|
||||
"usuario.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: non se pode cambiar o nome do directorio %s a %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2251,6 +2298,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2267,6 +2326,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: o usuario %s existe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: data \"%s\" non válida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: data \"%s\" non válida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2285,6 +2354,30 @@ msgstr "%s: precísase de contrasinais de shadow para -e e -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "O membro xa existe\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: non se puido deixar os privilexios (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: o directorio %s existe\n"
|
||||
@@ -2389,6 +2482,20 @@ msgstr "Non se puido bloquear o ficheiro"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Non se puido facer unha copia de seguridade"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: non se atopou %s en /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -2985,9 +3092,6 @@ msgstr "%s: directorio base \"%s\" non válido\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Non se pode abrir o ficheiro de contrasinais.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: non se atopou %s en /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Erro ao actualizar a entrada de contrasinal.\n"
|
||||
|
||||
@@ -3193,9 +3297,6 @@ msgstr "%s: directorio base \"%s\" non válido\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: non se pode actualizar o ficheiro de grupos shadow\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: non se pode actualizar o ficheiro de grupos\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: non se pode borrar o ficheiro de grupos shadow\n"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+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"
|
||||
@@ -418,6 +418,10 @@ msgstr "%s: מספר טלפון בבית לא חוקי: \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: לא יכול לשנות משתמש `%s' על לקוח NIS.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: לא יכול לשנות משתמש `%s' על לקוח NIS.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "ספרית שורש לא חוקית \"%s\"\n"
|
||||
@@ -755,6 +759,10 @@ msgstr "%s: שורה %d: שורה ארוכה מידי\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: שורה %d: חסרה סיסמה חדשה\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: מספר טלפון בעבודה לא חוקי: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: שורה %d: משתמש לא מוכר %s\n"
|
||||
@@ -1371,6 +1379,10 @@ msgstr ""
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: מספר טלפון בעבודה לא חוקי: \"%s\"\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "סיסמה לא טובה: %s. "
|
||||
@@ -1439,6 +1451,18 @@ msgstr "%s: שורה %d: לא יכול לעדכן רשומת סיסמה\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: שורה %d: לא יכול לעדכן רשומת סיסמה\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: לא יכול לנעול קובץ צל\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: לא יכול לנעול קובץ צל\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1701,13 +1725,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "passwd: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -1949,6 +1973,10 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: שורה %d: לא יכול לעדכן רשומת סיסמה\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr ""
|
||||
@@ -1988,6 +2016,14 @@ msgstr "ספרית שורש לא חוקית \"%s\"\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: לא יכול לנעול קובץ צל\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: לא יכול לנעול קובץ צל\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: לא יכול לנעול קובץ צל\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2024,6 +2060,10 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: לא יכול לשנות משתמש `%s' על לקוח NIS.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "ספרית שורש לא חוקית \"%s\"\n"
|
||||
@@ -2125,6 +2165,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2140,6 +2192,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: שם לא חוקי: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: שם לא חוקי: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't open shadow file\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2157,6 +2217,27 @@ msgstr ""
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: מספר טלפון בעבודה לא חוקי: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: fields too long\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: שדות ארוכים מידי\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: מספר טלפון בעבודה לא חוקי: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "ספרית שורש לא חוקית \"%s\"\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr ""
|
||||
@@ -2246,6 +2327,18 @@ msgstr ""
|
||||
msgid "Couldn't make backup"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "passwd: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-25 20:56+0100\n"
|
||||
"Last-Translator: SZERVÁC Attila <sas@321.hu>\n"
|
||||
"Language-Team: Hungarian <gnome@gnome.hu>\n"
|
||||
@@ -435,6 +435,11 @@ msgstr "%s: érvénytelen otthoni telefonszám: \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: %s könyvtár nem hozható létre\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: %s könyvtár nem hozható létre\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -776,6 +781,11 @@ msgstr "%s: %d. sor: túl hosszú\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: %d. sor: hiányzó új jelszó\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1434,6 +1444,11 @@ msgstr "Használat: newgrp [-] [csoport]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Használat: sg csoport [[-c] parancs]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Régi jelszó: "
|
||||
@@ -1503,6 +1518,20 @@ msgstr "%s: %d. sor: chown sikertelen\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: %d. sor: nem tudom frissíteni a bejegyzést\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: %s létrehozása sikertelen\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: nem tudom frissíteni a csoport fájlt\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1778,13 +1807,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
# CHECK!
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2050,6 +2079,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: %s könyvtár nem hozható létre\n"
|
||||
@@ -2096,6 +2130,14 @@ msgstr "%s: %s könyvtár nem hozható létre\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: %s létrehozása sikertelen\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: %s létrehozása sikertelen\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: %s létrehozása sikertelen\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2138,6 +2180,11 @@ msgstr ""
|
||||
"%s: Nem tudom %s csoportot törölni, ami egy másik felhasználó elsődleges "
|
||||
"csoportja.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: nem tudom átnevezni %s könyvtárat erre: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2245,6 +2292,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2261,6 +2320,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: %s felhasználó létezik\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: érvénytelen dátum: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: érvénytelen dátum: \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2279,6 +2348,30 @@ msgstr "%s: -e és -f árnyék jelszavakat vár\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "A tag már létezik\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: a jogosultságok eldobása meghiúsult (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: %s könyvtár létezik\n"
|
||||
@@ -2382,6 +2475,20 @@ msgstr "Nem tudtam zárolni a fájlt"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Nem tudtam biztonsági másolatot készíteni"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s nem található a /etc/passwd-ben\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3107,9 +3214,6 @@ msgstr "%s: érvénytelen alapkönyvtár: \"%s\"\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "A jelszófájl nem nyitható meg.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s nem található a /etc/passwd-ben\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Hiba a jelszó bejegyzés frissítésekor\n"
|
||||
|
||||
@@ -3317,9 +3421,6 @@ msgstr "%s: érvénytelen alapkönyvtár: \"%s\"\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: nem tudom frissíteni az árnyék csoport fájlt\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: nem tudom frissíteni a csoport fájlt\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: nem tudom törölni az árnyék csoport fájlt\n"
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.15\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-25 20:58+0100\n"
|
||||
"Last-Translator: Parlin Imanuel Toh <parlin_i@yahoo.com>\n"
|
||||
"Language-Team: Debian Indonesia <debid@yahoogroups.com>\n"
|
||||
@@ -433,6 +433,11 @@ msgstr "%s: telepon rumah tidak sah: \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: tak dapat membuat direktori %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: tak dapat membuat direktori %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -773,6 +778,11 @@ msgstr "%s: baris %d: baris terlalu panjang\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: baris %d: kata sandi baru hilang\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1426,6 +1436,11 @@ msgstr "Penggunaan: newgrp [-] [grup]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Penggunaan: sg grup [[-c] perintah]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Kata sandi lama: "
|
||||
@@ -1495,6 +1510,20 @@ msgstr "%s: baris %d: chown gagal\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: baris %d: tak dapat memperbaharui entri\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: tak dapat membuat %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: tidak dapat memperbaharui berkas grup\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1770,13 +1799,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2043,6 +2072,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: tak dapat membuat direktori %s\n"
|
||||
@@ -2086,6 +2120,14 @@ msgstr "%s: tak dapat membuat direktori %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: tak dapat membuat %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: tak dapat membuat %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: tak dapat membuat %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2128,6 +2170,11 @@ msgstr ""
|
||||
"%s: tidak dapat menghapus grup %s yg merupakan grup utama dari pengguna "
|
||||
"lain.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: tak dapat mengubah nama direktori %s menjadi %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: direktori rumah `%s' tak sah\n"
|
||||
@@ -2233,6 +2280,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2249,6 +2308,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: pengguna %s telah ada\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: tanggal `%s' tak sah\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: tanggal `%s' tak sah\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2266,6 +2333,30 @@ msgstr "%s: diperlukan kata sandi bayangan untuk -e dan -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: gagal membuang hak (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: direktori %s telah ada\n"
|
||||
@@ -2369,6 +2460,20 @@ msgstr "Tidak dapat mengunci berkas"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Tidak dapat membuat backup"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s tidak ditemukan pada /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s: tidak dapat membuka berkas grup\n"
|
||||
@@ -2992,9 +3097,6 @@ msgstr "%s: direktori awal `%s' tak sah\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Tidak dapat membuka berkas kata sandi.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s tidak ditemukan pada /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Kesalahan saat memperbaharui entri kata sandi.\n"
|
||||
|
||||
@@ -3187,9 +3289,6 @@ msgstr "%s: direktori awal `%s' tak sah\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: tidak dapat memperbaharui berkas grup bayangan\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: tidak dapat memperbaharui berkas grup\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: tidak dapat menghapus berkas grup bayangan\n"
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.1\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-27 14:40+0100\n"
|
||||
"Last-Translator: Danilo Piazzalunga <danilopiazza@gmail.com>\n"
|
||||
"Language-Team: Italian <tp@lists.linux.it>\n"
|
||||
@@ -466,6 +466,11 @@ msgstr "%s: telefono di casa «%s» non valido\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: impossibile creare la directory %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: impossibile creare la directory %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -835,6 +840,11 @@ msgstr "%s: riga %d: riga troppo lunga\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: riga %d: manca la nuova password\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1535,6 +1545,11 @@ msgstr "Uso: newgrp [-] [GRUPPO]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Uso: sg GRUPPO [[-c] COMANDO]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Password non valida.\n"
|
||||
|
||||
@@ -1608,6 +1623,21 @@ msgstr "%s: riga %d: la chiamata chown ha restituito un errore\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: riga %d: impossibile aggiornare la voce\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: impossibile creare l'utente\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: impossibile aggiornare il file dei gruppi\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1908,13 +1938,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2214,6 +2244,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: impossibile creare la directory %s\n"
|
||||
@@ -2260,6 +2295,16 @@ msgstr "%s: impossibile creare la directory %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: impossibile creare il gruppo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: impossibile creare l'utente\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: impossibile creare il gruppo\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2311,6 +2356,11 @@ msgstr ""
|
||||
"%s: impossibile rimuovere il gruppo «%s» in quanto gruppo principale di un "
|
||||
"altro utente.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: impossibile rinominare la directory %s in %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2444,6 +2494,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2466,6 +2528,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: l'utente «%s» esiste già\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: data «%s» non valida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: data «%s» non valida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2484,6 +2556,30 @@ msgstr "%s: le shadow password sono necessarie per le opzioni -e e -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Membro già esistente\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: impossibile abbandonare i privilegi (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: la directory %s esiste già\n"
|
||||
@@ -2596,6 +2692,20 @@ msgstr "Impossibile fare il lock del file"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Impossibile effettuare il backup"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: impossibile trovare «%s» in /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3366,9 +3476,6 @@ msgstr "%s: directory di base «%s» non valida\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Impossibile aprire il file delle password.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: impossibile trovare «%s» in /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Errore nell'aggiornare la voce nel file delle password.\n"
|
||||
|
||||
@@ -3578,9 +3685,6 @@ msgstr "%s: directory di base «%s» non valida\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: impossibile aggiornare il file dei gruppi shadow\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: impossibile aggiornare il file dei gruppi\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: impossibile eliminare il file dei gruppi shadow\n"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.5\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-05-21 02:52+0900\n"
|
||||
"Last-Translator: NAKANO Takeo <nakano@webmasters.gr.jp>\n"
|
||||
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
|
||||
@@ -420,6 +420,11 @@ msgstr "%s: chroot のパス'%s' が不正です\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: chroot ディレクトリ%s にアクセスできません: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: chroot ディレクトリ%s にアクセスできません: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: ディレクトリ %s に chroot できませんでした: %s\n"
|
||||
@@ -773,6 +778,11 @@ msgstr "%s: %d 行: 行が長過ぎます\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: %d 行: 新規パスワードがありません\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: %s に書き込めませんでした: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: %d 行: グループ '%s' は存在しません\n"
|
||||
@@ -1444,6 +1454,11 @@ msgstr "使い方: newgrp [-] [グループ]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "使い方: sg グループ [[-c] コマンド]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: %s に書き込めませんでした: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "そのパスワードは使えません。\n"
|
||||
|
||||
@@ -1512,6 +1527,21 @@ msgstr "%s: %d 行: chown %s が失敗しました: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: %d 行: エントリを更新できません\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: %s の新しいエントリ '%s' を準備できませんでした。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: ユーザを作成できません\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: グループを作成できません\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1796,13 +1826,13 @@ msgstr "%s: シグナルのマスキングが異常です\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "セッションが終了しました。シェルを終了しています..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...終了しました。\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...終了しました。\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2071,6 +2101,11 @@ msgstr "%s: UID %lu の faillog エントリをリセットできませんでし
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: UID %lu の lastlog エントリをリセットできませんでした: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: %s の新しいエントリ '%s' を準備できませんでした。\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: ディレクトリ %s を作成できません\n"
|
||||
@@ -2114,6 +2149,16 @@ msgstr "%s: %s の tcb ディレクトリの作成に失敗しました\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: グループを作成できません\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: ユーザを作成できません\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: グループを作成できません\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2159,6 +2204,11 @@ msgstr "%s: グループ %s には他のメンバーがいるので削除しま
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s: グループ %s は他のユーザのプライマリグループなので削除しません。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: '%s' のエントリを %s から削除できません\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s のメールスプール (%s) がありません\n"
|
||||
@@ -2276,6 +2326,18 @@ msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
" -U, --unlock このユーザアカウントのロックを解除する\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2297,6 +2359,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: ユーザ '%s' は既に %s に存在します\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: 日付 '%s' は不正です\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: 日付 '%s' は不正です\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: オプションがありません\n"
|
||||
@@ -2313,6 +2385,31 @@ msgstr "%s: -e および -f にはシャドウパスワードが必要です\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID '%lu' は既に存在します\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s は %s のパスワードを変更する権限がありません\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: %s の新しいエントリ '%s' を準備できませんでした。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: %s の新しいエントリ '%s' を準備できませんでした。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: %s の新しいエントリ '%s' を準備できませんでした。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: %s の新しいエントリ '%s' を準備できませんでした。\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: ディレクトリ %s は存在します\n"
|
||||
@@ -2408,6 +2505,20 @@ msgstr "ファイルをロックできません"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "バックアップを作成できません"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd はステータス %d で終了しました\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "スクラッチファイルをオープンできませんでした"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadowutils\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-20 21:16+0600\n"
|
||||
"Last-Translator: Baurzhan Muftakhidinov <baurthefirst@gmail.com>\n"
|
||||
"Language-Team: Kazakh <kk_KZ@googlegroups.com>\n"
|
||||
@@ -417,6 +417,11 @@ msgstr "%s: '%s' chroot жолы қате\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: %s chroot бумасына қатынау мүмкін емес: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: %s chroot бумасына қатынау мүмкін емес: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: %s бумасына chroot жасау мүмкін емес: %s\n"
|
||||
@@ -780,6 +785,11 @@ msgstr "%s: жол %d: жол өте ұзын\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: жол %d: жаңа пароль жоқ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: %s жазу сәтсіз: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: жол %d: '%s' тобы жоқ болып тұр\n"
|
||||
@@ -1457,6 +1467,11 @@ msgstr "Қолданылуы: newgrp [-] [топ]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Қолданылуы: sg топ [[-c] командасы]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: %s жазу сәтсіз: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "пароль қате.\n"
|
||||
|
||||
@@ -1524,6 +1539,21 @@ msgstr "%s: жол %d: chown %s сәтсіз: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: жол %d: жазбаны жаңарту мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: жаңа %s '%s' жазбаны дайындау мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: пайдаланушыны жасау мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: топты құру мүмкін емес\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1816,13 +1846,13 @@ msgstr "%s: сигналды басқару ақаулығы\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Сессия тоқтатылды, қоршамды тоқтату..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...тоқтатылды.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...тоқтатылды.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2100,6 +2130,11 @@ msgstr "%s: %lu UID-і үшін faillog жазбасын нөлдеу сәтсі
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: %lu UID-і үшін lastlog жазбасын нөлдеу сәтсіз: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: жаңа %s '%s' жазбаны дайындау мүмкін емес\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: %s бумасын жасау мүкін емес\n"
|
||||
@@ -2142,6 +2177,16 @@ msgstr "%s: %s үшін tcb бумасын жасау мүмкін емес\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: топты құру мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: пайдаланушыны жасау мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: топты құру мүмкін емес\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2186,6 +2231,11 @@ msgstr ""
|
||||
"%s: %s тобын өшіру мүмкін емес, ол басқа пайдаланушы үшін басыңқы топ болып "
|
||||
"табылады.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: '%s' жазбасын %s ішінен өшіру мүмкін емес\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s пошта спулы (%s) табылмады\n"
|
||||
@@ -2310,6 +2360,18 @@ msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
" -U, --unlock пайдаланушы тіркелгісін оқшаулаудан босату\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2329,6 +2391,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: '%s' пайдаланушысы %s ішінде бар болып тұр\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: '%s' күні қате\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: '%s' күні қате\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: опциялар жоқ\n"
|
||||
@@ -2345,6 +2417,31 @@ msgstr "%s: -e пен -f үшін көлеңкелі парольдер кере
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: '%lu' UID-і бар болып тұр\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s пайдаланушының %s үшін паролді өзгертуге құқығы жоқ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: жаңа %s '%s' жазбаны дайындау мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: жаңа %s '%s' жазбаны дайындау мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: жаңа %s '%s' жазбаны дайындау мүмкін емес\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: жаңа %s '%s' жазбаны дайындау мүмкін емес\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: %s бумасы бар болып тұр\n"
|
||||
@@ -2442,6 +2539,20 @@ msgstr "Файлды оқшаулау мүмкін емес"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Қор көшірмені жасау мүмкін емес"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd %d статуспен жұмысын өз аяқтады"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "scratch файлын ашу сәтсіз"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow_po_km\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2006-06-28 10:08+0700\n"
|
||||
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
|
||||
"Language-Team: Khmer <support@khmeros.info>\n"
|
||||
@@ -447,6 +447,11 @@ msgstr "%s ៖ លេខទូរស័ព្ទនៅផ្ទះមិ
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើតថត %s បានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើតថត %s បានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -791,6 +796,11 @@ msgstr "%s ៖ បន្ទាត់ %d ៖ បន្ទាត់វែ
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s ៖ បន្ទាត់ %d ៖ បាត់បង់ពាក្យសម្ងាត់ថ្មី\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1456,6 +1466,11 @@ msgstr "របៀបប្រើ ៖ newgrp [-] [group]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "របៀបប្រើ ៖ ក្រុម sg [[-c] command]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "ពាក្យសម្ងាត់ចាស់ ៖ "
|
||||
@@ -1525,6 +1540,20 @@ msgstr "%s ៖ បន្ទាត់ %d ៖ chown បានបរាជ័
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s ៖ បន្ទាត់ %d ៖ មិនអាចធ្វើឲ្យធាតុបញ្ចូលទាន់សម័យបានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើត %s បានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s ៖ មិនអាចធ្វើឲ្យឯកសារក្រុមទាន់សម័យបានទេ\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1805,13 +1834,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s ៖ %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2078,6 +2107,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើតថត %s បានឡើយ\n"
|
||||
@@ -2120,6 +2154,14 @@ msgstr "%s ៖ មិនអាចបង្កើតថត %s ប
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើត %s បានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើត %s បានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s ៖ មិនអាចបង្កើត %s បានឡើយ\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2160,6 +2202,11 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s ៖ មិនអាចយកក្រុម %s ដែលជាក្រុមចម្បងសម្រាប់អ្នកប្រើដទៃទៀតចេញបានទេ ។\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s ៖ មិនអាចប្ដូរឈ្មោះថត %s ទៅជា %s បានឡើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2267,6 +2314,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2283,6 +2342,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s ៖ អ្នកប្រើ %s មានរួចហើយ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s ៖ កាលបរិច្ឆទមិនត្រឹមត្រូវ '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s ៖ កាលបរិច្ឆទមិនត្រឹមត្រូវ '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2300,6 +2369,30 @@ msgstr "%s ៖ ពាក្យសម្ងាត់ស្រមោល
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s ៖ បរាជ័យក្នុងការទម្លាក់សិទ្ធ (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s ៖ មានថត %s រួចហើយ\n"
|
||||
@@ -2403,6 +2496,20 @@ msgstr "មិនអាចចាក់សោឯកសារបានឡើ
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "មិនអាចបង្កើតព័ត៌មានបម្រុងទុកបានឡើយ"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s ៖ %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s ៖ %s រកមិនឃើញក្នុង /etc/passwd ទេ\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s ៖ មិនអាចបើកឯកសារក្រុមបានទេ\n"
|
||||
@@ -2988,9 +3095,6 @@ msgstr "%s ៖ ថតមូលដ្ឋានមិនត្រឹ
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "មិនអាចបើកឯកសារពាក្យសម្ងាត់បានឡើយ ។\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s ៖ %s រកមិនឃើញក្នុង /etc/passwd ទេ\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "មានកំហុសក្នុងការធ្វើឲ្យធាតុបញ្ចូលពាក្យសម្ងាត់ទាន់សម័យ ។\n"
|
||||
|
||||
@@ -3183,9 +3287,6 @@ msgstr "%s ៖ ថតមូលដ្ឋានមិនត្រឹ
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s ៖ មិនអាចធ្វើឲ្យឯកសារក្រុមស្រមោលទាន់សម័យបានទេ\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s ៖ មិនអាចធ្វើឲ្យឯកសារក្រុមទាន់សម័យបានទេ\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s ៖ មិនអាចលុបឯកសារក្រុមស្រមោលបានទេ\n"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.1\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2009-04-19 21:32+0900\n"
|
||||
"Last-Translator: Changwoo Ryu <cwryu@debian.org>\n"
|
||||
"Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n"
|
||||
@@ -437,6 +437,11 @@ msgstr "%s: 잘못된 집 전화번호: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: 디렉터리 %s을(를) 만들 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: 디렉터리 %s을(를) 만들 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -786,6 +791,11 @@ msgstr "%s: %d번 줄: 너무 깁니다\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: %d번 줄: 새 암호가 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: %s을(를) 제거하는데 실패했습니다\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: %d번 줄: '%s' 그룹이 없습니다\n"
|
||||
@@ -1451,6 +1461,11 @@ msgstr "사용법: newgrp [-] [그룹]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "사용법: sg group [[-c] 명령]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: %s을(를) 제거하는데 실패했습니다\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "쓸 수 없는 암호입니다.\n"
|
||||
|
||||
@@ -1520,6 +1535,21 @@ msgstr "%s: %d번 줄: chown 실패했습니다\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: %d번 줄: 입력값을 업데이트 할 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: 새 %s 항목 '%s'을(를) 준비하는데 실패했습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: 사용자를 만들 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: 그룹을 만들 수 없습니다\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1803,13 +1833,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2095,6 +2125,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: UID %lu번의 최근 기록 항목을 초기화하는데 실패했습니다: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: 새 %s 항목 '%s'을(를) 준비하는데 실패했습니다\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: 디렉터리 %s을(를) 만들 수 없습니다\n"
|
||||
@@ -2137,6 +2172,16 @@ msgstr "%s: 디렉터리 %s을(를) 만들 수 없습니다\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: 그룹을 만들 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: 사용자를 만들 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: 그룹을 만들 수 없습니다\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2180,6 +2225,11 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s: %s 그룹은 다른 사용자의 주요 그룹이므로 제거하지 않습니다.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: '%s' 항목을 %s에서 제거할 수 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2305,6 +2355,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2322,6 +2384,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: '%s' 사용자가 이미 %s 안에 있습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: 날짜 '%s'은(는) 잘못되었습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: 날짜 '%s'은(는) 잘못되었습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2339,6 +2411,31 @@ msgstr "%s: -e 옵션과 -f 옵션은 셰도우 암호가 필요합니다\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: '%lu' UID가 이미 있습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s 사용자는 %s의 암호를 바꿀 권한이 없습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: 새 %s 항목 '%s'을(를) 준비하는데 실패했습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: 새 %s 항목 '%s'을(를) 준비하는데 실패했습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: 새 %s 항목 '%s'을(를) 준비하는데 실패했습니다\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: 새 %s 항목 '%s'을(를) 준비하는데 실패했습니다\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: 디렉터리 %s은(는) 이미 있습니다\n"
|
||||
@@ -2442,6 +2539,19 @@ msgstr "파일을 잠글 수 없습니다"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "백업을 만들 수 없습니다"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "failed to rename mailbox"
|
||||
msgid "failed to open scratch file"
|
||||
|
||||
@@ -11,7 +11,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.17\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-18 17:19+0100\n"
|
||||
"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
|
||||
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
|
||||
@@ -442,6 +442,11 @@ msgstr "%s: ugyldig chroot-sti «%s»\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: kan ikke få tilgang til chroot-mappa %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: kan ikke få tilgang til chroot-mappa %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: kan ikke chroot til mappa %s: %s\n"
|
||||
@@ -809,6 +814,12 @@ msgstr "%s: linje %d: linja er for lang\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: linje %d: mangler nytt passord\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Klarte ikke skrive %s: %s\n"
|
||||
|
||||
# , c-format
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1506,6 +1517,12 @@ msgstr "Bruk: newgrp [-] [gruppe]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Bruk: sg group [[-c] command]\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Klarte ikke skrive %s: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Ugyldig passord.\n"
|
||||
|
||||
@@ -1581,6 +1598,23 @@ msgstr "%s: linje %d: chown %s mislyktes: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: linje %d: kan ikke oppdatere oppføring\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: klarte ikke lage det nye %s-innslaget «%s»\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: kan ikke opprette bruker\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: kan ikke oppdatere gruppefila\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1876,13 +1910,13 @@ msgstr "%s: funksjonsfeil ved signalmasking\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Økt avsluttet, avslutter skall ..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " … avsluttet.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " … avsluttet.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2166,6 +2200,12 @@ msgstr "%s: klarte ikke nullstille faillog-innslaget for UID %lu: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: klarte ikke nullstille lastlog-innslaget for UID %lu: %s\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: klarte ikke lage det nye %s-innslaget «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: kan ikke opprette mappa %s\n"
|
||||
@@ -2213,6 +2253,18 @@ msgstr "%s: Klarte ikke opprette tcb-mappe for %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: kan ikke opprette gruppa\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: kan ikke opprette bruker\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: kan ikke opprette gruppa\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2259,6 +2311,12 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: gruppa %s er en primærgruppe for en annen bruker og blir ikke fjernet.\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: kunne ikke fjerne innslaget «%s» fra %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s e-postlager (%s) ikke funnet.\n"
|
||||
@@ -2377,6 +2435,18 @@ msgstr " -u, --uid UID ny UID for brukerkontoen\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock lås opp brukerkontoen\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2397,6 +2467,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: bruker «%s» finnes fra før i %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: ugyldig dato «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: ugyldig dato «%s»\n"
|
||||
|
||||
# , c-format
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
@@ -2414,6 +2494,35 @@ msgstr "%s: skyggepassord kreves for -e og -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID «%lu» finnes fra før\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s har ikke rett til å endre passord for %s\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: klarte ikke lage det nye %s-innslaget «%s»\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: klarte ikke lage det nye %s-innslaget «%s»\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: klarte ikke lage det nye %s-innslaget «%s»\n"
|
||||
|
||||
# , c-format
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: klarte ikke lage det nye %s-innslaget «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: mappa %s finnes\n"
|
||||
@@ -2514,6 +2623,20 @@ msgstr "Kunne ikke låse fil"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Kunne ikke lage backup"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd avsluttet med status %d"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "klarte ikke å åpne kladdefil"
|
||||
|
||||
@@ -3473,9 +3596,6 @@ msgstr "%s: klarte ikke å finne tcb-mappe for %s\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: kan ikke oppdatere shadow-gruppefila\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: kan ikke oppdatere gruppefila\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: kan ikke slette shadow-gruppefila\n"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.17\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2006-06-16 14:30+0545\n"
|
||||
"Last-Translator: Shiva Pokharel <pokharelshiva@hotmail.com>\n"
|
||||
"Language-Team: Nepali <info@mpp.org.np>\n"
|
||||
@@ -441,6 +441,11 @@ msgstr "%s: अवैध गृह फोन: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: डाइरेकट्री सिर्जना गर्न सकिएन %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: डाइरेकट्री सिर्जना गर्न सकिएन %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -782,6 +787,11 @@ msgstr "%s: रेखा %d: अति लामो रेखा\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: रेखा %d: नयाँ पासवर्ड हराइरहेको छ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1439,6 +1449,11 @@ msgstr "उपयोग: newgrp [-] [group]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "उपयोग: sg group [[-c] आदेश]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "पुरानो पासवर्ड: "
|
||||
@@ -1508,6 +1523,20 @@ msgstr "%s: रेखा %d: chown असफल भयो\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: रेखा %d: प्रविष्टि अद्यावधिक गर्न सकिएन\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: यो %s सिर्जना गर्न सकिदैन\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: समूह फाइल अद्यावधिक गर्न सकिएन\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1784,13 +1813,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2055,6 +2084,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: डाइरेकट्री सिर्जना गर्न सकिएन %s\n"
|
||||
@@ -2099,6 +2133,14 @@ msgstr "%s: डाइरेकट्री सिर्जना गर्न
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: यो %s सिर्जना गर्न सकिदैन\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: यो %s सिर्जना गर्न सकिदैन\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: यो %s सिर्जना गर्न सकिदैन\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2139,6 +2181,11 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s: समूह %s हटाउन सकिदैन जुन अर्को प्रयोगकर्ताको लागि प्राथमिक समूह हो ।\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: डाइरेक्ट्री %s लाई %s मा पुन:नामकरण गर्न सकिदैन\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2246,6 +2293,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2262,6 +2321,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: प्रयोगकर्ता %s अवस्थित छ\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: अवैध मिति '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: अवैध मिति '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2279,6 +2348,30 @@ msgstr "%s: -e र -f को लागि स्याडो पासवर्
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: विशेषधिकारहरू छोड्न असफल भयो (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: डाइरेक्ट्री %s अवस्थित छ\n"
|
||||
@@ -2382,6 +2475,20 @@ msgstr "फाइल ताल्चा मार्न सकिदैन"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "जगेडा बनाउँन सकिदैन"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s /etc/passwd मा फेला परेन\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s: समूह फाइल खोल्न असक्षम भयो\n"
|
||||
@@ -2979,9 +3086,6 @@ msgstr "%s: अवैध डाइरेक्ट्री '%s'\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "पासवर्ड फाइल खोल्न सकिएन ।\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s /etc/passwd मा फेला परेन\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "पासवर्ड प्रविष्टिमा त्रुटि अद्यावधिक गरिदैछ ।\n"
|
||||
|
||||
@@ -3174,9 +3278,6 @@ msgstr "%s: अवैध डाइरेक्ट्री '%s'\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: स्याडो समूह फाइल अद्यावधिक गर्न सकिएन\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: समूह फाइल अद्यावधिक गर्न सकिएन\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: स्याडो समूह फाइल मेट्न सकिएन\n"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-25 21:11+0100\n"
|
||||
"Last-Translator: Bart Cornelis <cobaco@skolelinux.no>\n"
|
||||
"Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
|
||||
@@ -440,6 +440,11 @@ msgstr "%s: '%s' voor 'telefoon thuis' is ongeldig\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: kan map %s niet aanmaken\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: kan map %s niet aanmaken\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -781,6 +786,11 @@ msgstr "%s: regel %d: regel is te lang\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: regel %d: nieuw wachtwoord ontbreekt\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1440,6 +1450,11 @@ msgstr "Gebruik: newgrp [-] [groep]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Gebruik: sg groep [[-c] commando]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Oud wachtwoord: "
|
||||
@@ -1509,6 +1524,20 @@ msgstr "%s: regel %d: chown is mislukt\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: regel %d: kan ingang niet bijwerken\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: kan %s niet aanmaken\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: kan groepbestand niet bijwerken\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1787,13 +1816,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2058,6 +2087,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: kan map %s niet aanmaken\n"
|
||||
@@ -2104,6 +2138,14 @@ msgstr "%s: kan map %s niet aanmaken\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: kan %s niet aanmaken\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: kan %s niet aanmaken\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: kan %s niet aanmaken\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2146,6 +2188,11 @@ msgstr ""
|
||||
"%s: kan de groep %s niet verwijderen, daar deze de primaire groep van een "
|
||||
"andere gebruiker is.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: kan map %s niet hernoemen naar %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2255,6 +2302,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2271,6 +2330,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: gebruiker %s bestaat al\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: ongeldige datum '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: ongeldige datum '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2289,6 +2358,30 @@ msgstr "%s: schaduwwachtwoorden zijn vereist voor opties -e en -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Lid bestaat reeds\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: afgeven van rechten is mislukt (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: map %s bestaat al\n"
|
||||
@@ -2393,6 +2486,20 @@ msgstr "Kon bestand niet vergrendelen"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Kon geen reservekopie maken"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s is niet gevonden in /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3092,9 +3199,6 @@ msgstr "%s: ongeldige basismap '%s'\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Kan het wachtwoordbestand niet openen.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s is niet gevonden in /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Fout tijdens het bijwerken van de wachtwoordingang.\n"
|
||||
|
||||
@@ -3302,9 +3406,6 @@ msgstr "%s: ongeldige basismap '%s'\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: kan schaduwgroepbestand niet bijwerken\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: kan groepbestand niet bijwerken\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: kan schaduwgroepbestand niet verwijderen\n"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+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"
|
||||
@@ -433,6 +433,11 @@ msgstr "%s: ugyldig telefonnummer, heime: «%s»\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: kan ikkje oppretta mappa %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: kan ikkje oppretta mappa %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -776,6 +781,10 @@ msgstr "%s: linje %d: linja er for lang\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: linje %d: manglar nytt passord\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: ugyldig telefonnummer, arbeid: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1427,6 +1436,10 @@ msgstr "Bruk: newgrp [-] [gruppe]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Bruk: sg gruppe [[-c] kommando]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: ugyldig telefonnummer, arbeid: «%s»\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Gamalt passord:"
|
||||
@@ -1496,6 +1509,20 @@ msgstr "%s: linje %d: chown feila\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: linje %d: kan ikkje oppdatere oppføring\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: line %d: can't update entry\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: linje %d: kan ikkje oppdatere oppføring\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: kan ikkje oppretta %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: klarer ikkje oppdatere gruppefil\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1771,13 +1798,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "passwd: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2030,6 +2057,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: line %d: can't update entry\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: linje %d: kan ikkje oppdatere oppføring\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: kan ikkje oppretta mappa %s\n"
|
||||
@@ -2073,6 +2105,14 @@ msgstr "%s: kan ikkje oppretta mappa %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: kan ikkje oppretta %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: kan ikkje oppretta %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: kan ikkje oppretta %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2109,6 +2149,11 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s: klarer ikkje fjerna primærgruppa til brukaren.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: klarte ikkje endra namn på mappa %s til %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: ugyldig heimemappe «%s»\n"
|
||||
@@ -2215,6 +2260,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2231,6 +2288,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: brukar %s finst\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: ugyldig dato «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: ugyldig dato «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2248,6 +2313,27 @@ msgstr "%s: skuggepassord krevst for -e og -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ugyldig telefonnummer, arbeid: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: fields too long\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: felta er for lange\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ugyldig telefonnummer, arbeid: «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ugyldig startmappe «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: mappa %s finst\n"
|
||||
@@ -2347,6 +2433,19 @@ msgstr "Klarte ikkje låsa fil"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Klarte ikkje laga reservekopi"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "passwd: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s ikkje funne i /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s: klarer ikkje opna gruppefil\n"
|
||||
@@ -2526,9 +2625,6 @@ msgstr "%s: ugyldig startmappe «%s»\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Klarer ikkje opna passordfila.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s ikkje funne i /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Feil ved oppdatering av passordet.\n"
|
||||
|
||||
@@ -2725,9 +2821,6 @@ msgstr "%s: ugyldig startmappe «%s»\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: klarer ikkje oppdatere skuggegruppefil\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: klarer ikkje oppdatere gruppefil\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: klan ikkje slette skuggegruppefil\n"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-25 20:53+0100\n"
|
||||
"Last-Translator: Tomasz Kłoczko <kloczek@pld.org.pl>\n"
|
||||
"Language-Team: Polish <translation-team-pl@lists.sourceforge.net>\n"
|
||||
@@ -445,6 +445,11 @@ msgstr "%s: nieprawidłowy numer telefonu domowego: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: nie można utworzyć katalogu %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: nie można utworzyć katalogu %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -786,6 +791,11 @@ msgstr "%s: linia %d: linia zbyt długa\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: linia %d: brakuje nowego hasła\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1445,6 +1455,11 @@ msgstr "Użycie: newgrp [-] [grupa]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Użycie: sg grupa [[-c] polecenie]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Stare hasło: "
|
||||
@@ -1514,6 +1529,20 @@ msgstr "%s: linia %d: chown nie powiodło się\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: linia %d: nie można zaktualizować wpisu\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: nie można utworzyć %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: nie można zaktualizować pliku z grupami\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1789,13 +1818,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2058,6 +2087,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: nie można utworzyć katalogu %s\n"
|
||||
@@ -2103,6 +2137,14 @@ msgstr "%s: nie można utworzyć katalogu %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: nie można utworzyć %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: nie można utworzyć %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: nie można utworzyć %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2145,6 +2187,11 @@ msgstr ""
|
||||
"%s: nie można usunąć grupy %s która jest grupą podstawową\n"
|
||||
"dla innego użytkownika.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: nie można zmienić nazwy katalogu z %s na %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2253,6 +2300,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2269,6 +2328,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: użytkownik %s istnieje\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: nieprawidłowa data '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: nieprawidłowa data '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2287,6 +2356,30 @@ msgstr "%s: ukryte hasła wymagane dla -e i -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Członek grupy już istnieje\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: niepowiodło się porzucenie uprawnień (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: katalog %s istnieje\n"
|
||||
@@ -2391,6 +2484,20 @@ msgstr "Nie można zablokować pliku"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Nie można wykonać kopii zapasowej"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nie znaleziono %s w /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3090,9 +3197,6 @@ msgstr "%s: nieprawidłowy katalog bazowy '%s'\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Nie można otworzyć pliku z hasłami.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: nie znaleziono %s w /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Błąd podczas aktualizacji wpisu do bazy haseł.\n"
|
||||
|
||||
@@ -3300,9 +3404,6 @@ msgstr "%s: nieprawidłowy katalog bazowy '%s'\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: nie można zaktualizować pliku z ukrytymi hasłami grup\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: nie można zaktualizować pliku z grupami\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: nie można skasować pliku z ukrytymi hasłami grup\n"
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-14 12:41+0000\n"
|
||||
"Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n"
|
||||
"Language-Team: Portuguese <traduz@debianpt.org>\n"
|
||||
@@ -432,6 +432,11 @@ msgstr "%s: caminho de chroot inválido: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: não pode aceder ao directório chroot %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: não pode aceder ao directório chroot %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: não foi possível fazer chroot para o directório %s: %s\n"
|
||||
@@ -799,6 +804,11 @@ msgstr "%s: linha %d: linha demasiado comprida\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: linha %d: falta a nova palavra-passe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: Falhou ao escrever %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: linha %d: o grupo '%s' não existe\n"
|
||||
@@ -1479,6 +1489,11 @@ msgstr "Utilização: newgrp [-] [grupo]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Utilização: sg grupo [[-c] comando]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: Falhou ao escrever %s: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Palavra-passe inválida.\n"
|
||||
|
||||
@@ -1546,6 +1561,21 @@ msgstr "%s: linha %d: chown %s falhou: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: linha %d: não é possível actualizar o registo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: falhou a preparação para a nova %s entrada '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: não é possível criar o utilizador\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: não é possível criar grupo\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1844,13 +1874,13 @@ msgstr "%s: mau funcionamento de máscara de sinal\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sessão terminada, a terminar shell..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...terminado.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...terminado.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2134,6 +2164,11 @@ msgstr "%s: falhou apagar o registo faillog para o UID %lu: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: falhou apagar o registo lastlog para o UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: falhou a preparação para a nova %s entrada '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: não é possível criar o directório %s\n"
|
||||
@@ -2177,6 +2212,16 @@ msgstr "%s: Falhou a criação do directório tcb para %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: não é possível criar grupo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: não é possível criar o utilizador\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: não é possível criar grupo\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2225,6 +2270,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: o grupo %s é o grupo primário de outro utilizador e não é removido.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: não é possível remover a entrada '%s' de %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s spool de mail (%s) não foi encontrado\n"
|
||||
@@ -2349,6 +2399,18 @@ msgstr " -u, --uid UID novo UID para a conta do utilizador\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock desbloquear a conta do utilizador\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2370,6 +2432,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: o utilizador %s já existe em %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: a data '%s' é inválida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: a data '%s' é inválida\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: sem opções\n"
|
||||
@@ -2386,6 +2458,31 @@ msgstr "%s: são necessárias palavras-passe shadow para -e e -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: O UID '%lu' já existe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s não está autorizado a alterar a palavra-passe de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falhou a preparação para a nova %s entrada '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falhou a preparação para a nova %s entrada '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falhou a preparação para a nova %s entrada '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falhou a preparação para a nova %s entrada '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: o directório %s existe\n"
|
||||
@@ -2487,6 +2584,20 @@ msgstr "Não é possível obter acesso exclusivo ao ficheiro"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Não é possível efectuar cópia de segurança"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd saiu com o estado %d"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "falhou abrir ficheiro 'scratch'"
|
||||
|
||||
|
||||
+115
-10
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.15\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2011-11-25 20:20+0100\n"
|
||||
"Last-Translator: Fred Ulisses Maranhão <fred.maranhao@gmail.com>\n"
|
||||
"Language-Team: Debian-BR Project <debian-l10n-portuguese@lists.debian.org>\n"
|
||||
@@ -429,6 +429,11 @@ msgstr "%s: telefone residencial inválido: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: não foi possível criar o diretório %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Cannot create directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: não foi possível criar o diretório %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to create tcb directory for %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -792,6 +797,11 @@ msgstr "%s : linha %d : linha muito extensa\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s : linha %d : nova senha faltando\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: falha ao remover %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: linha %d: grupo %s não existe\n"
|
||||
@@ -1465,6 +1475,11 @@ msgstr "Uso : newgrp [-] [grupo]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Uso : sg group [[-c] comando]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: falha ao remover %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Senha inválida.\n"
|
||||
|
||||
@@ -1532,6 +1547,21 @@ msgstr "%s: linha %d: chown %s falhou: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s : linha %d : não foi possível atualizar entrada\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: falha ao preparar a nova entrada %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: não foi possível criar usuário\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s : não foi possível atualizar arquivo de grupo\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1824,13 +1854,13 @@ msgstr "%s: al funcionamento da máscara do sinal\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sessão terminada, encerrando o shell..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...encerrado.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...encerrado.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2117,6 +2147,11 @@ msgstr "%s: falha ao zerar a entrada do faillog de UID %lu: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: falha ao zerar a entrada do lastlog do UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: falha ao preparar a nova entrada %s '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s : não foi possível criar diretório %s\n"
|
||||
@@ -2160,6 +2195,16 @@ msgstr "%s: Falha ao criar diretório tcb para %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: não é possível criar grupo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: não foi possível criar usuário\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: não é possível criar grupo\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2212,6 +2257,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: grupo %s é o grupo primário de outro usuário e não será removido.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: não é possível remover entrada '%s' de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s home directory (%s) not found\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2334,6 +2384,18 @@ msgstr " -u, --uid UID novo UID para a conta de usuário\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock destravar a conta de usuário\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| " -Z, --selinux-user new SELinux user mapping for the user "
|
||||
@@ -2358,6 +2420,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: usuário '%s' já existe em %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: data `%s' inválida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: data `%s' inválida\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2375,6 +2447,31 @@ msgstr "%s : senhas shadow necessárias para -e e -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID '%lu' já existe\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s não está autorizado a trocar a senha de %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falha ao preparar a nova entrada %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falha ao preparar a nova entrada %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falha ao preparar a nova entrada %s '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: falha ao preparar a nova entrada %s '%s'\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s : diretório %s existe\n"
|
||||
@@ -2471,6 +2568,20 @@ msgstr "Não foi possível obter lock em arquivo"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Não foi possível fazer backup"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s : %s não encontrado em /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "falha ao abrir arquivo de rascunho"
|
||||
|
||||
@@ -3126,9 +3237,6 @@ msgstr "%s: falha ao procurar o diretório tcb para %s\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Não foi possível abrir arquivo de senhas.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s : %s não encontrado em /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Erro atualizando a entrada de senha.\n"
|
||||
|
||||
@@ -3346,9 +3454,6 @@ msgstr "%s: falha ao procurar o diretório tcb para %s\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s : não foi possível atualizar arquivo de grupo shadow\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s : não foi possível atualizar arquivo de grupo\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s : não foi possível remover arquivo de grupo shadow\n"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.17\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-26 18:18+0100\n"
|
||||
"Last-Translator: Sorin Batariuc <sorin@bonbon.net>\n"
|
||||
"Language-Team: Romanian <debian-l10n-romanian@lists.debian.org>\n"
|
||||
@@ -441,6 +441,11 @@ msgstr "%s: număr telefon acasă nevalid: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: nu pot crea directorul %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: nu pot crea directorul %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -782,6 +787,11 @@ msgstr "%s: linia %d: linie prea lungă\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: linia %d: lipseşte noua parolă\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1439,6 +1449,11 @@ msgstr "Utilizare: newgrp [-] [grup]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Utilizare: sg grup [[-c] comanda]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Parola veche: "
|
||||
@@ -1508,6 +1523,20 @@ msgstr "%s: linia %d: eşuare chown\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: linia %d: nu pot actualiza intrarea\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: nu pot crea %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: nu pot actualiza fişierul de grupuri\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1784,13 +1813,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
@@ -2056,6 +2085,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: nu pot crea directorul %s\n"
|
||||
@@ -2102,6 +2136,14 @@ msgstr "%s: nu pot crea directorul %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: nu pot crea %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: nu pot crea %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: nu pot crea %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2143,6 +2185,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: Nu pot şterge grupul %s care este un grup primar pentru alt utilizator.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: nu pot redenumi directorul %s în %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2252,6 +2299,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2268,6 +2327,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: utilizatorul %s există\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: dată nevalidă '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: dată nevalidă '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2285,6 +2354,30 @@ msgstr "%s: sunt necesare parole criptate pentru -e şi -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s : eşuare în abandonarea privilegiilor (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: directorul %s există\n"
|
||||
@@ -2389,6 +2482,20 @@ msgstr "N-am putut încuia fişierul"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "N-am putut face o copie de rezervă"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s negăsit în /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s: nu pot deschide fişierul de grupuri\n"
|
||||
@@ -3055,9 +3162,6 @@ msgstr "%s: director de bază nevalid '%s'\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Nu pot deschide fişierul passwd.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s negăsit în /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Eroare la actualizarea intrării în passwd.\n"
|
||||
|
||||
@@ -3250,9 +3354,6 @@ msgstr "%s: director de bază nevalid '%s'\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: nu pot actualiza fişierul gshadow\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: nu pot actualiza fişierul de grupuri\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: nu pot şterge fişierul gshadow\n"
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.5.1-1\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2013-07-29 10:42+0400\n"
|
||||
"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
|
||||
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
|
||||
@@ -436,6 +436,11 @@ msgstr "%s: некорректное значение пути chroot «%s»\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: нет доступа к каталогу chroot %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: нет доступа к каталогу chroot %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s: не удалось выполнить chroot в каталог %s: %s\n"
|
||||
@@ -801,6 +806,11 @@ msgstr "%s: строка %d: слишком длинная строка\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: строка %d: отсутствует новый пароль\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: не удалось записать %s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: строка %d: группа «%s» не существует\n"
|
||||
@@ -1482,6 +1492,11 @@ msgstr "Использование: newgrp [-] [группа]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Использование: sg группа [[-c] команда]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: не удалось записать %s: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Неправильный пароль.\n"
|
||||
|
||||
@@ -1550,6 +1565,21 @@ msgstr "%s: строка %d: вызов chown %s завершился неуда
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: строка %d: не удалось обновить запись\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: не удалось подготовить новую %s запись «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: не удалось создать пользователя\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: не удалось создать группу\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1842,13 +1872,13 @@ msgstr "%s: неисправность в маскировке сигналов\
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Сеанс завершён, выполняется завершение оболочки…"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " … завершён.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " … завершён.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2142,6 +2172,11 @@ msgstr "%s: не удалось сбросить запись в faillog для
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: не удалось сбросить запись в lastlog для UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: не удалось подготовить новую %s запись «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: не удалось создать каталог %s\n"
|
||||
@@ -2185,6 +2220,16 @@ msgstr "%s: не удалось создать tcb-каталог для %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: не удалось создать группу\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: не удалось создать пользователя\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: не удалось создать группу\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2233,6 +2278,11 @@ msgstr ""
|
||||
"%s: группа %s является первичной для другого пользователя и не может быть "
|
||||
"удалена.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: не удалось удалить запись «%s» из %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: почтовый ящик %s (%s) не найден\n"
|
||||
@@ -2354,6 +2404,18 @@ msgstr " -u, --uid UID новый UID для учётной з
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock разблокировать учётную запись\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2374,6 +2436,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: пользователь «%s» уже существует в %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: неверная дата «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: неверная дата «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s: не указаны параметры\n"
|
||||
@@ -2391,6 +2463,31 @@ msgstr ""
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID «%lu» уже существует\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: у %s нет прав изменять пароль %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не удалось подготовить новую %s запись «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не удалось подготовить новую %s запись «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не удалось подготовить новую %s запись «%s»\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не удалось подготовить новую %s запись «%s»\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: каталог %s существует\n"
|
||||
@@ -2494,6 +2591,20 @@ msgstr "Не удалось заблокировать файл"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Не удалось создать резервную копию"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd завершился с кодом выхода %d\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "не удалось открыть черновой файл"
|
||||
|
||||
|
||||
+96
-4
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+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"
|
||||
@@ -408,6 +408,10 @@ msgstr ""
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr ""
|
||||
@@ -737,6 +741,10 @@ msgstr ""
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr ""
|
||||
@@ -1340,6 +1348,10 @@ msgstr ""
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr ""
|
||||
|
||||
@@ -1405,6 +1417,18 @@ msgstr ""
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1659,11 +1683,11 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -1904,6 +1928,10 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr ""
|
||||
@@ -1943,6 +1971,14 @@ msgstr ""
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -1979,6 +2015,10 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr ""
|
||||
@@ -2080,6 +2120,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2095,6 +2147,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr ""
|
||||
@@ -2111,6 +2171,26 @@ msgstr ""
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr ""
|
||||
@@ -2199,6 +2279,18 @@ msgstr ""
|
||||
msgid "Couldn't make backup"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.17\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2011-11-26 22:06+0100\n"
|
||||
"Last-Translator: Ivan Masár <helix84@centrum.sk>\n"
|
||||
"Language-Team: Slovak <sk-i18n@lists.linux.sk>\n"
|
||||
@@ -441,6 +441,11 @@ msgstr "%s: chybné telefónne číslo domov: „%s“\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: nedá sa vytvoriť adresár %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: nedá sa vytvoriť adresár %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -800,6 +805,11 @@ msgstr "%s: riadok %d je príliš dlhý\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: riadok %d: chýba nové heslo\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: zlyhalo odstránenie %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: riadok %d: skupina „%s“ neexistuje\n"
|
||||
@@ -1462,6 +1472,11 @@ msgstr "Použitie: newgrp [-] [skupina]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Použitie: sg skupina [[-c] príkaz]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: zlyhalo odstránenie %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Neplatné heslo.\n"
|
||||
|
||||
@@ -1530,6 +1545,21 @@ msgstr "%s: riadok %d: volanie chown zlyhalo\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: riadok %d: položka sa nedá aktualizovať\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: zlyhalo pripravenie novej položky %s „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: nie je možné vytvoriť používateľa\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: súbor s heslami sa nedá aktualizovať\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr " -a, --all zobrazí stav hesiel pre všetky účty\n"
|
||||
@@ -1816,13 +1846,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2091,6 +2121,11 @@ msgstr "%s: Nepodarilo sa obnoviť položku faillog s UID %lu: %s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s: Nepodarilo sa obnoviť položku lastlog s UID %lu: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: zlyhalo pripravenie novej položky %s „%s“\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: nedá sa vytvoriť adresár %s\n"
|
||||
@@ -2135,6 +2170,16 @@ msgstr "%s: nedá sa vytvoriť adresár %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: sa nedá vytvoriť skupina\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: nie je možné vytvoriť používateľa\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: sa nedá vytvoriť skupina\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2179,6 +2224,11 @@ msgstr ""
|
||||
"%s: skupina %s sa nedá odstrániť, pretože je primárnou skupinou iného "
|
||||
"používateľa.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: nie je možné odstrániť položku „%s“ z %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2301,6 +2351,18 @@ msgstr " -u, --uid UID nový UID pre používateľský účet\n
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock odblokuje používateľský účet\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| " -d, --home HOME_DIR new home directory for the user account\n"
|
||||
@@ -2324,6 +2386,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: používateľ %s už existuje v %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: chybný dátum „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: chybný dátum „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2341,6 +2413,31 @@ msgstr "%s: prepínače -e a -f vyžadujú tieňové heslá\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID „%lu“ už existuje\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s nemá oprávnenie zmeniť heslo %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: zlyhalo pripravenie novej položky %s „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: zlyhalo pripravenie novej položky %s „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: zlyhalo pripravenie novej položky %s „%s“\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: zlyhalo pripravenie novej položky %s „%s“\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: adresár %s už existuje\n"
|
||||
@@ -2444,6 +2541,20 @@ msgstr "Súbor sa nedá zamknúť"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Nedá sa vytvoriť záloha"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s sa nenachádza v /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3245,9 +3356,6 @@ msgstr "%s: chybný základný adresár „%s“\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Súbor s heslami sa nedá otvoriť.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s sa nenachádza v /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Chyba pri aktualizácii záznamu hesla.\n"
|
||||
|
||||
@@ -3457,9 +3565,6 @@ msgstr "%s: chybný základný adresár „%s“\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: súbor s tieňovými heslami sa nedá aktualizovať\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: súbor s heslami sa nedá aktualizovať\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: súbor s tieňovými heslami skupín sa nedá zmazať\n"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.3\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+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"
|
||||
@@ -410,6 +410,10 @@ msgstr "Kujdes: grup i panjohur %s\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
@@ -740,6 +744,10 @@ msgstr ""
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
@@ -1344,6 +1352,10 @@ msgstr ""
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr " Zgjidh një fjalëkalim të ri.\n"
|
||||
@@ -1410,6 +1422,18 @@ msgstr "Kujdes: grup i panjohur %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1665,11 +1689,11 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@@ -1911,6 +1935,10 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr ""
|
||||
@@ -1950,6 +1978,14 @@ msgstr ""
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -1986,6 +2022,10 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr ""
|
||||
@@ -2087,6 +2127,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2102,6 +2154,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
@@ -2118,6 +2178,26 @@ msgstr ""
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr ""
|
||||
@@ -2206,6 +2286,18 @@ msgstr ""
|
||||
msgid "Couldn't make backup"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "Kujdes: grup i panjohur %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
#!/bin/sh
|
||||
export LANG=C
|
||||
echo "language translated fuzzy untranslated"
|
||||
echo "-----------------------------------------"
|
||||
for i in $(cat LINGUAS | xargs); do
|
||||
echo -n " $i "
|
||||
msgfmt -c --statistics -o /dev/null $i.po 2>&1 |
|
||||
awk -v LNG="$1" '{
|
||||
gsub(/ untranslated/, "");
|
||||
gsub(/ translated/, "");
|
||||
gsub(/ messages/, "");
|
||||
gsub(/ message/, "");
|
||||
gsub(/ translations/, "");
|
||||
gsub(/ translation/, "");
|
||||
gsub(/ fuzzy/, "");
|
||||
gsub(/[.,]/, "");
|
||||
{printf "%8s %8s %8s\n", $1, $2, $3}
|
||||
}'
|
||||
done
|
||||
echo "-----------------------------------------"
|
||||
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.1.1\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2011-11-25 22:08+0100\n"
|
||||
"Last-Translator: Daniel Nylander <yeager@ubuntu.com>\n"
|
||||
"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
|
||||
@@ -425,6 +425,11 @@ msgstr "%s: ogiltigt telefonnummer (hem): \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: Kan inte skapa katalogen %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Cannot create directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: Kan inte skapa katalogen %s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to create tcb directory for %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -789,6 +794,11 @@ msgstr "%s: rad %d: raden för lång\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: rad %d: saknar nytt lösenord\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: misslyckades med att ta bort %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s: rad %d: gruppen \"%s\" finns inte\n"
|
||||
@@ -1461,6 +1471,11 @@ msgstr "Användning: newgrp [-] [grupp]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Användning: sg grupp [[-c] kommando]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to remove %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: misslyckades med att ta bort %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Ogiltigt lösenord.\n"
|
||||
|
||||
@@ -1528,6 +1543,21 @@ msgstr "%s: rad %d: chown %s misslyckades: %s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: rad %d: kan inte uppdatera post\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: misslyckades med att förbereda den nya %s-posten \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: kan inte skapa användare\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: kan inte skapa grupp\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1820,13 +1850,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "Sessionen terminerad, terminerar skal..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...terminerad.\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...terminerad.\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2110,6 +2140,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: misslyckades med att förbereda den nya %s-posten \"%s\"\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: kan inte skapa katalog %s\n"
|
||||
@@ -2153,6 +2188,16 @@ msgstr "%s: Misslyckades med att skapa tcb-katalog för %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: kan inte skapa grupp\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: kan inte skapa användare\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: kan inte skapa grupp\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2200,6 +2245,11 @@ msgstr ""
|
||||
"%s: gruppen %s är den primära gruppen för en annan användare och tas inte "
|
||||
"bort.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: kan inte ta bort posten \"%s\" från %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s home directory (%s) not found\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2318,6 +2368,18 @@ msgstr " -u, --uid UID nytt UID för användarkontot\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock lås upp användarkontot\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| " -s, --shell SHELL new login shell for the user account\n"
|
||||
@@ -2341,6 +2403,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: användaren \"%s\" finns redan i %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: ogiltigt datum \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: ogiltigt datum \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2358,6 +2430,31 @@ msgstr "%s: skugglösenord krävs för -e och -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s: UID \"%lu\" finns redan\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s: %s är inte behörig att ändra lösenordet för %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: misslyckades med att förbereda den nya %s-posten \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: misslyckades med att förbereda den nya %s-posten \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: misslyckades med att förbereda den nya %s-posten \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: misslyckades med att förbereda den nya %s-posten \"%s\"\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: katalogen %s finns redan\n"
|
||||
@@ -2459,6 +2556,19 @@ msgstr "Kunde inte låsa fil"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Kunde inte göra en säkerhetskopia"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-26 21:34+0100\n"
|
||||
"Last-Translator: Eric Pareja <xenos@upm.edu.ph>\n"
|
||||
"Language-Team: Tagalog <debian-tl@banwa.upm.edu.ph>\n"
|
||||
@@ -448,6 +448,11 @@ msgstr "%s: hindi tanggap na telepono sa bahay: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: hindi malikha ang directory %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: hindi malikha ang directory %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -789,6 +794,11 @@ msgstr "%s: linya %d: sobrang haba ng linya\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: linya %d: walang bagong password\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1447,6 +1457,11 @@ msgstr "Pag-gamit: newgrp [-] [grupo]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Pag-gamit: sg grupo [[-c] utos]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Lumang kontrasenyas:"
|
||||
@@ -1516,6 +1531,20 @@ msgstr "%s: linya %d: bigo ang chown\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: linya %d: hindi ma-apdeyt ang ipinasok\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: hindi malikha ang %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: hindi ma-apdeyt ang talaksang grupo\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1792,13 +1821,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2064,6 +2093,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: hindi malikha ang directory %s\n"
|
||||
@@ -2110,6 +2144,14 @@ msgstr "%s: hindi malikha ang directory %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: hindi malikha ang %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: hindi malikha ang %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: hindi malikha ang %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2152,6 +2194,11 @@ msgstr ""
|
||||
"%s: hindi matanggal ang grupong %s dahil ito'y pangunahing grupo ng ibang "
|
||||
"gumagamit.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: hindi mapalitan ng pangalan ang directory %s sa %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2259,6 +2306,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2275,6 +2334,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: mayroon nang gumagamit na %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: hindi tanggap na petsa '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: hindi tanggap na petsa '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2293,6 +2362,30 @@ msgstr "%s: kailangan ang shadow password para sa -e at -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Mayroon nang kasapi na ganito\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: bigo sa pagtanggal ng mga pribilehiyo (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: mayroon nang directory na %s\n"
|
||||
@@ -2397,6 +2490,20 @@ msgstr "Hindi maaldaba ang talaksan"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Hindi makagawa ng backup"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: hindi nahanap ang %s sa /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3077,9 +3184,6 @@ msgstr "%s: hindi tanggap na batayang directory '%s'\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Hindi mabuksan ang talaksang password\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: hindi nahanap ang %s sa /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Error sa pag-apdeyt ng password entry.\n"
|
||||
|
||||
@@ -3288,9 +3392,6 @@ msgstr "%s: hindi tanggap na batayang directory '%s'\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: hindi ma-apdeyt ang talaksang grupo na shadow\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: hindi ma-apdeyt ang talaksang grupo\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: hindi matanggal ang talaksang grupo na shadow\n"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2008-03-29 20:31+0200\n"
|
||||
"Last-Translator: Mehmet Türker <mturker@innova.com.tr>\n"
|
||||
"Language-Team: Türkçe <tr@li.org>\n"
|
||||
@@ -444,6 +444,11 @@ msgstr "%s: geçersiz ev telefonu: '%s'\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: %s dizini yaratılamıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: %s dizini yaratılamıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -817,6 +822,11 @@ msgstr "%s: satır %d: satır çok uzun\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: satır %d: yeni parola eksik\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1516,6 +1526,11 @@ msgstr "Kullanım: newgrp [-] [grup]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Kullanım: sg grup [[-c] komut]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Geçersiz parola.\n"
|
||||
|
||||
@@ -1589,6 +1604,21 @@ msgstr "%s: satır %d: chown başarısız oldu\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: satır %d: kayıt güncellenemiyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: kullanıcı yaratılamıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: grup dosyası güncellenemiyor\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1889,13 +1919,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2196,6 +2226,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: %s dizini yaratılamıyor\n"
|
||||
@@ -2242,6 +2277,16 @@ msgstr "%s: %s dizini yaratılamıyor\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: grup yaratılamıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: kullanıcı yaratılamıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: grup yaratılamıyor\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2292,6 +2337,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: Başka bir kullanıcı için birincil grub olan %s grubu kaldırılamıyor.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: %s dizini %s olarak yeniden adlandırılamıyor\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2423,6 +2473,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2446,6 +2508,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: kullanıcı %s mevcut\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: geçersiz tarih '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: geçersiz tarih '%s'\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2464,6 +2536,30 @@ msgstr "%s: -e ve -f için gölge parolalar gerekli\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Üye zaten mevcut\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: ayrıcalıklar iptal edilemedi (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: %s dizini mevcut\n"
|
||||
@@ -2574,6 +2670,20 @@ msgstr "Dosya kilitlenemedi"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Yedek alınamadı"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s /etc/passwd içinde bulunamadı\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3380,9 +3490,6 @@ msgstr "%s: geçersiz ana dizin '%s'\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Parola dosyası açılamıyor.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s /etc/passwd içinde bulunamadı\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Parola kaydı güncellenmesinde hata.\n"
|
||||
|
||||
@@ -3591,9 +3698,6 @@ msgstr "%s: geçersiz ana dizin '%s'\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: gölge grup dosyası güncellenemiyor\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: grup dosyası güncellenemiyor\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: gölge grup dosyası silinemiyor\n"
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.18\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2007-11-26 22:52+0100\n"
|
||||
"Last-Translator: Eugeniy Meshcheryakov <eugen@univ.kiev.ua>\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
@@ -442,6 +442,11 @@ msgstr "%s: невірний домашній телефон: \"%s\"\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s: не можу створити теку %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s: не можу створити теку %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -783,6 +788,11 @@ msgstr "%s: рядок %d: рядок занадто довгий\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s: рядок %d: бракує нового пароля\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1440,6 +1450,11 @@ msgstr "Використання: newgrp [-] [група]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "Використання: sg група [[-c] команда]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "Старий пароль: "
|
||||
@@ -1509,6 +1524,20 @@ msgstr "%s: рядок %d: chown не виконався\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s: рядок %d: не можу оновити запис\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s: не можу створити %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s: не можу оновити файл груп\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1785,13 +1814,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2055,6 +2084,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s: не можу створити теку %s\n"
|
||||
@@ -2101,6 +2135,14 @@ msgstr "%s: не можу створити теку %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s: не можу створити %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s: не можу створити %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s: не можу створити %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2142,6 +2184,11 @@ msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr ""
|
||||
"%s: не можу видалити групу %s яка є первинною групою іншого користувача.\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s: не можу перейменувати теку з %s на %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid home directory '%s'\n"
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
@@ -2249,6 +2296,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2265,6 +2324,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s: користувач %s існує\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s: невірна дата \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s: невірна дата \"%s\"\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2283,6 +2352,30 @@ msgstr "%s: приховані паролі потрібні для -e і -f\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "Член вже існує\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to drop privileges (%s)\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s: не вдалося скинути привілеї (%s)\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s: тека %s існує\n"
|
||||
@@ -2386,6 +2479,20 @@ msgstr "Не можу блокувати файл"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "Не можу зробити резервну копію"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: %s не знайдено у /etc/passwd\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Unable to open group file\n"
|
||||
msgid "failed to open scratch file"
|
||||
@@ -3091,9 +3198,6 @@ msgstr "%s: невірна базова тека \"%s\"\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "Не можу відкрити файл паролів.\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s: %s не знайдено у /etc/passwd\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "Не можу оновити запис у файлі паролів.\n"
|
||||
|
||||
@@ -3301,9 +3405,6 @@ msgstr "%s: невірна базова тека \"%s\"\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s: не можу оновити файл прихованих груп\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s: не можу оновити файл груп\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s: не можу видалити файл прихованих груп\n"
|
||||
|
||||
|
||||
+115
-7
@@ -9,7 +9,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.15\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2012-01-10 01:23+0800\n"
|
||||
"Last-Translator: YunQiang Su <wzssyqa@gmail.com>\n"
|
||||
"Language-Team: Chinese (simplified) <i18n-zh@googlegroups.com>\n"
|
||||
@@ -417,6 +417,11 @@ msgstr "%s:无效的 chroot 路径“%s”\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s:无法访问 chroot 目录 %s:%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s:无法访问 chroot 目录 %s:%s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
msgstr "%s:无法 chroot 到目录 %s: %s\n"
|
||||
@@ -762,6 +767,11 @@ msgstr "%s:第 %d 行:此行太长\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s:第 %d 行:缺少新密码\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s: 写入 %s 失败: %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
msgstr "%s:第 %d 行:组“%s”不存在\n"
|
||||
@@ -1398,6 +1408,11 @@ msgstr "用法:newgrp [-] [组]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "用法:sg 组 [[-c] 命令]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: Failed to write %s: %s\n"
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s: 写入 %s 失败: %s\n"
|
||||
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "无效的密码。\n"
|
||||
|
||||
@@ -1463,6 +1478,21 @@ msgstr "%s:第 %d 行:改变 %s 的属主失败:%s\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s:第 %d 行:无法更新条目\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s:准备新 %s 条目“%s”失败\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s:无法创建用户\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s 无法更新组文件\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr " -a, --all 报告所有帐户的密码状态\n"
|
||||
@@ -1735,13 +1765,13 @@ msgstr "%s:信号屏蔽(mask)故障\n"
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr "会话结束,结束 shell ..."
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...已结束。\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "%s:%s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr " ...已结束。\n"
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2001,6 +2031,11 @@ msgstr "%s:重置 UID %lu 的登录失败条目失败:%s\n"
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr "%s:重置 UID %lu 的最近登录条目失败:%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s:准备新 %s 条目“%s”失败\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s:无法创建目录 %s\n"
|
||||
@@ -2040,6 +2075,16 @@ msgstr "%s:为 %s 创建 tcb 目录失败\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s:无法创建用户组\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create user\n"
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s:无法创建用户\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't create group\n"
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s:无法创建用户组\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2078,6 +2123,11 @@ msgstr "%s:组“%s”没有移除,因为它包含其它成员。\n"
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s:没有删除 %s 组,因为它是另外一个用户的主组。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot remove entry '%s' from %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%1$s:无法从 %3$s 中移除 %2$s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s: %s 邮件池 (%s) 未找到\n"
|
||||
@@ -2183,6 +2233,18 @@ msgstr " -u, --uid UID 用户帐号的新 UID\n"
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr " -U, --unlock 解锁用户帐号\n"
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2200,6 +2262,16 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s:用户 %s 已存在于 %s 中\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s:无效的日期“%s”\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: invalid date '%s'\n"
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s:无效的日期“%s”\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: no options\n"
|
||||
msgstr "%s:无选项\n"
|
||||
@@ -2216,6 +2288,31 @@ msgstr "%s:-e 和 -f 参数需要影子密码\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr "%s:UID “%lu”已经存在\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s is not authorized to change the password of %s\n"
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr "%s:%s 没有被授权更改 %s 的密码\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:准备新 %s 条目“%s”失败\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:准备新 %s 条目“%s”失败\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:准备新 %s 条目“%s”失败\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: failed to prepare the new %s entry '%s'\n"
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:准备新 %s 条目“%s”失败\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s:目录 %s 不存在\n"
|
||||
@@ -2307,6 +2404,20 @@ msgstr "无法锁定文件"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "无法备份"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: PAM: %s\n"
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "%s: PAM: %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: nscd exited with status %d"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s: nscd 以状态 %d 退出"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "打开临时文件失败"
|
||||
|
||||
@@ -3054,9 +3165,6 @@ msgstr "%s:无法为“%s”找到 tcb 目录\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s:无法更新影子组文件\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s 无法更新组文件\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s:无法删除影子组文件\n"
|
||||
|
||||
|
||||
+103
-10
@@ -7,7 +7,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: shadow 4.0.9\n"
|
||||
"Report-Msgid-Bugs-To: pkg-shadow-devel@lists.alioth.debian.org\n"
|
||||
"POT-Creation-Date: 2012-05-20 19:52+0200\n"
|
||||
"POT-Creation-Date: 2014-05-09 12:52+0200\n"
|
||||
"PO-Revision-Date: 2005-06-02 22:20+0800\n"
|
||||
"Last-Translator: Asho Yeh <asho@debian.org.tw>\n"
|
||||
"Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
|
||||
@@ -437,6 +437,11 @@ msgstr "%s:無效的住家電話:“%s”\n"
|
||||
msgid "%s: cannot access chroot directory %s: %s\n"
|
||||
msgstr "%s:無法建立目錄 %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: cannot chdir to chroot directory %s: %s\n"
|
||||
msgstr "%s:無法建立目錄 %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot create directory %s\n"
|
||||
msgid "%s: unable to chroot to directory %s: %s\n"
|
||||
@@ -775,6 +780,10 @@ msgstr "%s:第 %d 行:此行太長\n"
|
||||
msgid "%s: line %d: missing new password\n"
|
||||
msgstr "%s:第 %d 行:缺少新密碼\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with salt '%s': %s\n"
|
||||
msgstr "%s:無效的工作電話:“%s”\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: group %s does not exist\n"
|
||||
msgid "%s: line %d: group '%s' does not exist\n"
|
||||
@@ -1426,6 +1435,10 @@ msgstr "用法:newgrp [-] [群組]\n"
|
||||
msgid "Usage: sg group [[-c] command]\n"
|
||||
msgstr "用法:sg 群組 [[-c] 命令]\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to crypt password with previous salt: %s\n"
|
||||
msgstr "%s:無效的工作電話:“%s”\n"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid password.\n"
|
||||
msgstr "舊密碼:"
|
||||
@@ -1495,6 +1508,20 @@ msgstr "%s:第 %d 行:改變擁有者或群組失敗\n"
|
||||
msgid "%s: line %d: can't update entry\n"
|
||||
msgstr "%s:第 %d 行:無法更新項目\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: line %d: can't update entry\n"
|
||||
msgid "%s: failed to prepare new %s entry\n"
|
||||
msgstr "%s:第 %d 行:無法更新項目\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't find subordinate user range\n"
|
||||
msgstr "%s:無法建立 %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: can't update group file\n"
|
||||
msgid "%s: can't find subordinate group range\n"
|
||||
msgstr "%s 無法更新群組檔案\n"
|
||||
|
||||
msgid ""
|
||||
" -a, --all report password status on all accounts\n"
|
||||
msgstr ""
|
||||
@@ -1770,13 +1797,13 @@ msgstr ""
|
||||
msgid "Session terminated, terminating shell..."
|
||||
msgstr ""
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s\n"
|
||||
msgstr "passwd:%s\n"
|
||||
|
||||
msgid " ...terminated.\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Usage: su [options] [LOGIN]\n"
|
||||
"\n"
|
||||
@@ -2029,6 +2056,11 @@ msgstr ""
|
||||
msgid "%s: failed to reset the lastlog entry of UID %lu: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: line %d: can't update entry\n"
|
||||
msgid "%s: failed to prepare the new %s entry\n"
|
||||
msgstr "%s:第 %d 行:無法更新項目\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: cannot create directory %s\n"
|
||||
msgstr "%s:無法建立目錄 %s\n"
|
||||
@@ -2071,6 +2103,14 @@ msgstr "%s:無法建立目錄 %s\n"
|
||||
msgid "%s: can't create group\n"
|
||||
msgstr "%s:無法建立 %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate user IDs\n"
|
||||
msgstr "%s:無法建立 %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: can't create subordinate group IDs\n"
|
||||
msgstr "%s:無法建立 %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid ""
|
||||
"%s: warning: the home directory already exists.\n"
|
||||
@@ -2107,6 +2147,11 @@ msgstr ""
|
||||
msgid "%s: group %s is the primary group of another user and is not removed.\n"
|
||||
msgstr "%s:不能刪除使用者的主群組。\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot rename directory %s to %s\n"
|
||||
msgid "%s: cannot remove entry %lu from %s\n"
|
||||
msgstr "%s:無法將目錄 %s 改名為 %s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s mail spool (%s) not found\n"
|
||||
msgstr "%s:無效的主目錄“%s”\n"
|
||||
@@ -2212,6 +2257,18 @@ msgstr ""
|
||||
msgid " -U, --unlock unlock the user account\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -v, --add-subuids FIRST-LAST add range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -V, --del-subuids FIRST-LAST remove range of subordinate uids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -w, --add-subgids FIRST-LAST add range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid " -W, --del-subgids FIRST-LAST remove range of subordinate gids\n"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
" -Z, --selinux-user SEUSER new SELinux user mapping for the user "
|
||||
"account\n"
|
||||
@@ -2228,6 +2285,14 @@ msgstr ""
|
||||
msgid "%s: user '%s' already exists in %s\n"
|
||||
msgstr "%s:使用者 %s 已存在\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate uid range '%s'\n"
|
||||
msgstr "%s:無效日期“%s”\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: invalid subordinate gid range '%s'\n"
|
||||
msgstr "%s:無效日期“%s”\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: cannot open file %s\n"
|
||||
msgid "%s: no options\n"
|
||||
@@ -2245,6 +2310,27 @@ msgstr "%s:-e 和 -f 參數需要shadow密碼\n"
|
||||
msgid "%s: UID '%lu' already exists\n"
|
||||
msgstr ""
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s does not exist, you cannot use the flags %s or %s\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:無效的工作電話:“%s”\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: fields too long\n"
|
||||
msgid "%s: failed to add uid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:字段太長\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to remove gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:無效的工作電話:“%s”\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: failed to add gid range %lu-%lu from '%s'\n"
|
||||
msgstr "%s:無效的主目錄“%s”\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: directory %s exists\n"
|
||||
msgstr "%s:目錄 %s 不存在\n"
|
||||
@@ -2344,6 +2430,19 @@ msgstr "無法鎖定檔案"
|
||||
msgid "Couldn't make backup"
|
||||
msgstr "無法備份"
|
||||
|
||||
#, fuzzy, c-format
|
||||
msgid "%s: %s: %s\n"
|
||||
msgstr "passwd:%s\n"
|
||||
|
||||
#, fuzzy, c-format
|
||||
#| msgid "%s: %s not found in /etc/passwd\n"
|
||||
msgid "%s: %s returned with status %d\n"
|
||||
msgstr "%s:未在 /etc/passwd 中找到 %s\n"
|
||||
|
||||
#, c-format
|
||||
msgid "%s: %s killed by signal %d\n"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "failed to open scratch file"
|
||||
msgstr "%s:無法打開群組檔案\n"
|
||||
@@ -2696,9 +2795,6 @@ msgstr "%s:無效的主目錄“%s”\n"
|
||||
#~ msgid "Cannot open the password file.\n"
|
||||
#~ msgstr "無法打開密碼檔案。\n"
|
||||
|
||||
#~ msgid "%s: %s not found in /etc/passwd\n"
|
||||
#~ msgstr "%s:未在 /etc/passwd 中找到 %s\n"
|
||||
|
||||
#~ msgid "Error updating the password entry.\n"
|
||||
#~ msgstr "更改密碼項目時出錯。\n"
|
||||
|
||||
@@ -2895,9 +2991,6 @@ msgstr "%s:無效的主目錄“%s”\n"
|
||||
#~ msgid "%s: can't update shadow group file\n"
|
||||
#~ msgstr "%s:無法更新shadow群組檔案\n"
|
||||
|
||||
#~ msgid "%s: can't update group file\n"
|
||||
#~ msgstr "%s 無法更新群組檔案\n"
|
||||
|
||||
#~ msgid "%s: can't delete shadow group file\n"
|
||||
#~ msgstr "%s:無法刪除shadow群組檔案\n"
|
||||
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
/chage
|
||||
/chfn
|
||||
/chgpasswd
|
||||
/chpasswd
|
||||
/chsh
|
||||
/expiry
|
||||
/faillog
|
||||
/gpasswd
|
||||
/groupadd
|
||||
/groupdel
|
||||
/groupmems
|
||||
/groupmod
|
||||
/groups
|
||||
/grpck
|
||||
/grpconv
|
||||
/grpunconv
|
||||
/id
|
||||
/lastlog
|
||||
/login
|
||||
/logoutd
|
||||
/newgrp
|
||||
/newgidmap
|
||||
/newuidmap
|
||||
/newusers
|
||||
/nologin
|
||||
/passwd
|
||||
/pwck
|
||||
/pwconv
|
||||
/pwunconv
|
||||
/su
|
||||
/sulogin
|
||||
/useradd
|
||||
/userdel
|
||||
/usermod
|
||||
/vipw
|
||||
+2
-2
@@ -988,8 +988,8 @@ int main (int argc, char **argv)
|
||||
is_shadow_grp = sgr_file_present ();
|
||||
#endif
|
||||
#ifdef ENABLE_SUBIDS
|
||||
is_sub_uid = sub_uid_file_present ();
|
||||
is_sub_gid = sub_gid_file_present ();
|
||||
is_sub_uid = sub_uid_file_present () && !rflg;
|
||||
is_sub_gid = sub_gid_file_present () && !rflg;
|
||||
#endif /* ENABLE_SUBIDS */
|
||||
|
||||
open_files ();
|
||||
|
||||
+8
-2
@@ -1993,6 +1993,10 @@ int main (int argc, char **argv)
|
||||
#endif /* USE_PAM */
|
||||
#endif /* ACCT_TOOLS_SETUID */
|
||||
|
||||
/* Needed for userns check */
|
||||
uid_t uid_min = (uid_t) getdef_ulong ("UID_MIN", 1000UL);
|
||||
uid_t uid_max = (uid_t) getdef_ulong ("UID_MAX", 60000UL);
|
||||
|
||||
/*
|
||||
* Get my name so that I can use it to report errors.
|
||||
*/
|
||||
@@ -2022,8 +2026,10 @@ int main (int argc, char **argv)
|
||||
is_shadow_grp = sgr_file_present ();
|
||||
#endif
|
||||
#ifdef ENABLE_SUBIDS
|
||||
is_sub_uid = sub_uid_file_present ();
|
||||
is_sub_gid = sub_gid_file_present ();
|
||||
is_sub_uid = sub_uid_file_present () && !rflg &&
|
||||
(!user_id || (user_id <= uid_max && user_id >= uid_min));
|
||||
is_sub_gid = sub_gid_file_present () && !rflg &&
|
||||
(!user_id || (user_id <= uid_max && user_id >= uid_min));
|
||||
#endif /* ENABLE_SUBIDS */
|
||||
|
||||
get_defaults ();
|
||||
|
||||
Reference in New Issue
Block a user