From 9abf95885df0df19ebe7c46464aa383b86cdd717 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Thu, 21 Aug 2008 01:24:30 +0200 Subject: pam_unix-chkpwd-wait: don't assume that the unix_chkpwd process exits normally; if it was killed by a signal, we don't want to accept the password. --- debian/changelog | 8 ++++++++ debian/patches-applied/pam_unix-chkpwd-wait | 22 ++++++++++++++++++++++ debian/patches-applied/series | 1 + 3 files changed, 31 insertions(+) create mode 100644 debian/patches-applied/pam_unix-chkpwd-wait (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 06123ec5..49258d6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pam (1.0.1-4) UNRELEASED; urgency=low + + * pam_unix-chkpwd-wait: don't assume that the unix_chkpwd process exits + normally; if it was killed by a signal, we don't want to accept the + password. + + -- Julien Cristau Thu, 21 Aug 2008 00:03:56 +0200 + pam (1.0.1-3) unstable; urgency=high * 055_pam_unix_nullok_secure: don't call _pammodutil_tty_secure with a NULL diff --git a/debian/patches-applied/pam_unix-chkpwd-wait b/debian/patches-applied/pam_unix-chkpwd-wait new file mode 100644 index 00000000..306b2e29 --- /dev/null +++ b/debian/patches-applied/pam_unix-chkpwd-wait @@ -0,0 +1,22 @@ +Index: pam.deb/modules/pam_unix/support.c +=================================================================== +--- pam.deb.orig/modules/pam_unix/support.c ++++ pam.deb/modules/pam_unix/support.c +@@ -504,7 +504,16 @@ + pam_syslog(pamh, LOG_ERR, "unix_chkpwd waitpid returned %d: %m", rc); + retval = PAM_AUTH_ERR; + } else { +- retval = WEXITSTATUS(retval); ++ if (WIFEXITED(retval)) ++ retval = WEXITSTATUS(retval); ++ else { ++ if (WIFSIGNALED(retval)) ++ pam_syslog(pamh, LOG_ERR, "unix_chkpwd got signal %d", ++ WTERMSIG(retval)); ++ else ++ pam_syslog(pamh, LOG_ERR, "unix_chkpwd died unexpectedly"); ++ retval = PAM_AUTH_ERR; ++ } + } + } else { + D(("fork failed")); diff --git a/debian/patches-applied/series b/debian/patches-applied/series index 9c85dc01..8035591b 100644 --- a/debian/patches-applied/series +++ b/debian/patches-applied/series @@ -19,4 +19,5 @@ hurd_no_setfsuid PAM-manpage-section pam_env_ignore_garbage.patch -p2 pam.d-manpage-section +pam_unix-chkpwd-wait autoconf.patch -- cgit v1.2.3 From bc611cb740003d225f9d6bd9ad1772c7555d45ff Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Thu, 21 Aug 2008 02:11:38 -0700 Subject: document bug closure --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 49258d6b..bf527bdf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ pam (1.0.1-4) UNRELEASED; urgency=low * pam_unix-chkpwd-wait: don't assume that the unix_chkpwd process exits normally; if it was killed by a signal, we don't want to accept the - password. + password. Closes: #495879. -- Julien Cristau Thu, 21 Aug 2008 00:03:56 +0200 -- cgit v1.2.3 From 18e6ad0a141eb087a5ef2eea30d8a6a1b1a4c0e2 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Thu, 21 Aug 2008 02:12:16 -0700 Subject: adjust the log error message --- debian/patches-applied/pam_unix-chkpwd-wait | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/patches-applied/pam_unix-chkpwd-wait b/debian/patches-applied/pam_unix-chkpwd-wait index 306b2e29..f81f6906 100644 --- a/debian/patches-applied/pam_unix-chkpwd-wait +++ b/debian/patches-applied/pam_unix-chkpwd-wait @@ -11,7 +11,7 @@ Index: pam.deb/modules/pam_unix/support.c + retval = WEXITSTATUS(retval); + else { + if (WIFSIGNALED(retval)) -+ pam_syslog(pamh, LOG_ERR, "unix_chkpwd got signal %d", ++ pam_syslog(pamh, LOG_ERR, "unix_chkpwd exited on signal %d", + WTERMSIG(retval)); + else + pam_syslog(pamh, LOG_ERR, "unix_chkpwd died unexpectedly"); -- cgit v1.2.3 From 4f59e939a5734736b8a14fd2e01c1062dff8c9dd Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Thu, 21 Aug 2008 02:32:12 -0700 Subject: 007_modules_pam_unix: update the manpage at the same time as the xml source (grr, autogenerated files in source packages). Closes: #495804. --- debian/changelog | 5 + debian/patches-applied/007_modules_pam_unix | 276 +++++++++++++++++++++- debian/patches-applied/055_pam_unix_nullok_secure | 10 +- debian/patches-applied/PAM-manpage-section | 276 +--------------------- 4 files changed, 286 insertions(+), 281 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index bf527bdf..9ecb6771 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,14 @@ pam (1.0.1-4) UNRELEASED; urgency=low + [ Julien Cristau ] * pam_unix-chkpwd-wait: don't assume that the unix_chkpwd process exits normally; if it was killed by a signal, we don't want to accept the password. Closes: #495879. + [ Steve Langasek ] + * 007_modules_pam_unix: update the manpage at the same time as the xml + source (grr, autogenerated files in source packages). Closes: #495804. + -- Julien Cristau Thu, 21 Aug 2008 00:03:56 +0200 pam (1.0.1-3) unstable; urgency=high diff --git a/debian/patches-applied/007_modules_pam_unix b/debian/patches-applied/007_modules_pam_unix index e35f699f..ba41e5bf 100644 --- a/debian/patches-applied/007_modules_pam_unix +++ b/debian/patches-applied/007_modules_pam_unix @@ -601,7 +601,7 @@ Index: pam.deb/modules/pam_unix/passverify.c =================================================================== --- pam.deb.orig/modules/pam_unix/passverify.c +++ pam.deb/modules/pam_unix/passverify.c -@@ -256,7 +256,9 @@ +@@ -261,7 +261,9 @@ *daysleft = -1; curdays = (long int)(time(NULL) / (60 * 60 * 24)); D(("today is %d, last change %d", curdays, spent->sp_lstchg)); @@ -612,7 +612,7 @@ Index: pam.deb/modules/pam_unix/passverify.c D(("account expired")); return PAM_ACCT_EXPIRED; } -@@ -274,17 +276,23 @@ +@@ -279,17 +281,23 @@ if ((curdays - spent->sp_lstchg > spent->sp_max) && (curdays - spent->sp_lstchg > spent->sp_inact) && (curdays - spent->sp_lstchg > spent->sp_max + spent->sp_inact) @@ -639,3 +639,275 @@ Index: pam.deb/modules/pam_unix/passverify.c *daysleft = (int)((spent->sp_lstchg + spent->sp_max) - curdays); D(("warn before expiry")); } +Index: pam.deb/modules/pam_unix/pam_unix.8 +=================================================================== +--- pam.deb.orig/modules/pam_unix/pam_unix.8 ++++ pam.deb/modules/pam_unix/pam_unix.8 +@@ -1,85 +1,85 @@ + .\" Title: pam_unix + .\" Author: +-.\" Generator: DocBook XSL Stylesheets v1.73.1 +-.\" Date: 04/16/2008 ++.\" Generator: DocBook XSL Stylesheets v1.73.2 ++.\" Date: 08/21/2008 + .\" Manual: Linux-PAM Manual + .\" Source: Linux-PAM Manual + .\" +-.TH "PAM_UNIX" "8" "04/16/2008" "Linux-PAM Manual" "Linux\-PAM Manual" ++.TH "PAM_UNIX" "8" "08/21/2008" "Linux-PAM Manual" "Linux\-PAM Manual" + .\" disable hyphenation + .nh + .\" disable justification (adjust text to left margin only) + .ad l + .SH "NAME" +-pam_unix - Module for traditional password authentication ++pam_unix \- Module for traditional password authentication + .SH "SYNOPSIS" + .HP 12 +-\fBpam_unix\.so\fR [\.\.\.] ++\fBpam_unix\&.so\fR [\&.\&.\&.] + .SH "DESCRIPTION" + .PP +-This is the standard Unix authentication module\. It uses standard calls from the system\'s libraries to retrieve and set account information as well as authentication\. Usually this is obtained from the /etc/passwd and the /etc/shadow file as well if shadow is enabled\. ++This is the standard Unix authentication module\&. It uses standard calls from the system\'s libraries to retrieve and set account information as well as authentication\&. Usually this is obtained from the /etc/passwd and the /etc/shadow file as well if shadow is enabled\&. + .PP + The account component performs the task of establishing the status of the user\'s account and password based on the following + \fIshadow\fR +-elements: expire, last_change, max_change, min_change, warn_change\. In the case of the latter, it may offer advice to the user on changing their password or, through the ++elements: expire, last_change, max_change, min_change, warn_change\&. In the case of the latter, it may offer advice to the user on changing their password or, through the + \fBPAM_AUTHTOKEN_REQD\fR +-return, delay giving service to the user until they have established a new password\. The entries listed above are documented in the ++return, delay giving service to the user until they have established a new password\&. The entries listed above are documented in the + \fBshadow\fR(5) +-manual page\. Should the user\'s record not contain one or more of these entries, the corresponding ++manual page\&. Should the user\'s record not contain one or more of these entries, the corresponding + \fIshadow\fR +-check is not performed\. ++check is not performed\&. + .PP +-The authentication component performs the task of checking the users credentials (password)\. The default action of this module is to not permit the user access to a service if their official password is blank\. ++The authentication component performs the task of checking the users credentials (password)\&. The default action of this module is to not permit the user access to a service if their official password is blank\&. + .PP + A helper binary, +-\fBunix_chkpwd\fR(8), is provided to check the user\'s password when it is stored in a read protected database\. This binary is very simple and will only check the password of the user invoking it\. It is called transparently on behalf of the user by the authenticating component of this module\. In this way it is possible for applications like ++\fBunix_chkpwd\fR(8), is provided to check the user\'s password when it is stored in a read protected database\&. This binary is very simple and will only check the password of the user invoking it\&. It is called transparently on behalf of the user by the authenticating component of this module\&. In this way it is possible for applications like + \fBxlock\fR(1) +-to work without being setuid\-root\. The module, by default, will temporarily turn off SIGCHLD handling for the duration of execution of the helper binary\. This is generally the right thing to do, as many applications are not prepared to handle this signal from a child they didn\'t know was +-\fBfork()\fRd\. The ++to work without being setuid\-root\&. The module, by default, will temporarily turn off SIGCHLD handling for the duration of execution of the helper binary\&. This is generally the right thing to do, as many applications are not prepared to handle this signal from a child they didn\'t know was ++\fBfork()\fRd\&. The + \fBnoreap\fR +-module argument can be used to suppress this temporary shielding and may be needed for use with certain applications\. ++module argument can be used to suppress this temporary shielding and may be needed for use with certain applications\&. + .PP +-The password component of this module performs the task of updating the user\'s password\. ++The password component of this module performs the task of updating the user\'s password\&. + .PP +-The session component of this module logs when a user logins or leave the system\. ++The session component of this module logs when a user logins or leave the system\&. + .PP +-Remaining arguments, supported by others functions of this module, are silently ignored\. Other arguments are logged as errors through +-\fBsyslog\fR(3)\. ++Remaining arguments, supported by others functions of this module, are silently ignored\&. Other arguments are logged as errors through ++\fBsyslog\fR(3)\&. + .SH "OPTIONS" + .PP + \fBdebug\fR + .RS 4 + Turns on debugging via +-\fBsyslog\fR(3)\. ++\fBsyslog\fR(3)\&. + .RE + .PP + \fBaudit\fR + .RS 4 +-A little more extreme than debug\. ++A little more extreme than debug\&. + .RE + .PP + \fBnullok\fR + .RS 4 +-The default action of this module is to not permit the user access to a service if their official password is blank\. The ++The default action of this module is to not permit the user access to a service if their official password is blank\&. The + \fBnullok\fR +-argument overrides this default\. ++argument overrides this default\&. + .RE + .PP + \fBtry_first_pass\fR + .RS 4 +-Before prompting the user for their password, the module first tries the previous stacked module\'s password in case that satisfies this module as well\. ++Before prompting the user for their password, the module first tries the previous stacked module\'s password in case that satisfies this module as well\&. + .RE + .PP + \fBuse_first_pass\fR + .RS 4 + The argument + \fBuse_first_pass\fR +-forces the module to use a previous stacked modules password and will never prompt the user \- if no password is available or the password is not appropriate, the user will be denied access\. ++forces the module to use a previous stacked modules password and will never prompt the user \- if no password is available or the password is not appropriate, the user will be denied access\&. + .RE + .PP + \fBnodelay\fR + .RS 4 +-This argument can be used to discourage the authentication component from requesting a delay should the authentication as a whole fail\. The default action is for the module to request a delay\-on\-failure of the order of two second\. ++This argument can be used to discourage the authentication component from requesting a delay should the authentication as a whole fail\&. The default action is for the module to request a delay\-on\-failure of the order of two second\&. + .RE + .PP + \fBuse_authtok\fR +@@ -88,17 +88,17 @@ + \fBpassword\fR + module (this is used in the example of the stacking of the + \fBpam_cracklib\fR +-module documented above)\. ++module documented above)\&. + .RE + .PP + \fBnot_set_pass\fR + .RS 4 +-This argument is used to inform the module that it is not to pay attention to/make available the old or new passwords from/to other (stacked) password modules\. ++This argument is used to inform the module that it is not to pay attention to/make available the old or new passwords from/to other (stacked) password modules\&. + .RE + .PP + \fBnis\fR + .RS 4 +-NIS RPC is used for setting new passwords\. ++NIS RPC is used for setting new passwords\&. + .RE + .PP + \fBremember=\fR\fB\fIn\fR\fR +@@ -107,73 +107,111 @@ + \fIn\fR + passwords for each user are saved in + \fI/etc/security/opasswd\fR +-in order to force password change history and keep the user from alternating between the same password too frequently\. ++in order to force password change history and keep the user from alternating between the same password too frequently\&. + .RE + .PP + \fBshadow\fR + .RS 4 +-Try to maintain a shadow based system\. ++Try to maintain a shadow based system\&. + .RE + .PP + \fBmd5\fR + .RS 4 +-When a user changes their password next, encrypt it with the MD5 algorithm\. ++When a user changes their password next, encrypt it with the MD5 algorithm\&. + .RE + .PP + \fBbigcrypt\fR + .RS 4 +-When a user changes their password next, encrypt it with the DEC C2 algorithm\. ++When a user changes their password next, encrypt it with the DEC C2 algorithm\&. + .RE + .PP + \fBsha256\fR + .RS 4 +-When a user changes their password next, encrypt it with the SHA256 algorithm\. If the SHA256 algorithm is not known to the libcrypt, fall back to MD5\. ++When a user changes their password next, encrypt it with the SHA256 algorithm\&. If the SHA256 algorithm is not known to the libcrypt, fall back to MD5\&. + .RE + .PP + \fBsha512\fR + .RS 4 +-When a user changes their password next, encrypt it with the SHA512 algorithm\. If the SHA512 algorithm is not known to the libcrypt, fall back to MD5\. ++When a user changes their password next, encrypt it with the SHA512 algorithm\&. If the SHA512 algorithm is not known to the libcrypt, fall back to MD5\&. + .RE + .PP + \fBrounds=\fR\fB\fIn\fR\fR + .RS 4 + Set the optional number of rounds of the SHA256 and SHA512 password hashing algorithms to +-\fIn\fR\. ++\fIn\fR\&. + .RE + .PP + \fBbroken_shadow\fR + .RS 4 +-Ignore errors reading shadow inforation for users in the account management module\. ++Ignore errors reading shadow inforation for users in the account management module\&. ++.RE ++.PP ++\fBmin=\fR\fB\fIn\fR\fR ++.RS 4 ++Set a minimum password length of ++\fIn\fR ++characters\&. The default value is 6\&. ++.RE ++.PP ++\fBobscure\fR ++.RS 4 ++Enable some extra checks on password strength\&. These checks are based on the "obscure" checks in the original shadow package\&. The behavior is similar to the pam_cracklib module, but for non\-dictionary\-based checks\&. The following checks are implemented: ++.PP ++\fBPalindrome\fR ++.RS 4 ++Verifies that the new password is not a palindrome of (i\&.e\&., the reverse of) the previous one\&. ++.RE ++.PP ++\fBCase Change Only\fR ++.RS 4 ++Verifies that the new password isn\'t the same as the old one with a change of case\&. ++.RE ++.PP ++\fBSimilar\fR ++.RS 4 ++Verifies that the new password isn\'t too much like the previous one\&. ++.RE ++.PP ++\fBSimple\fR ++.RS 4 ++Is the new password too simple? This is based on the length of the password and the number of different types of characters (alpha, numeric, etc\&.) used\&. ++.RE ++.PP ++\fBRotated\fR ++.RS 4 ++Is the new password a rotated version of the old password? (E\&.g\&., "billy" and "illyb") ++.RE ++.sp + .RE + .PP + Invalid arguments are logged with +-\fBsyslog\fR(3)\. ++\fBsyslog\fR(3)\&. + .SH "MODULE SERVICES PROVIDED" + .PP +-All service are supported\. ++All service are supported\&. + .SH "RETURN VALUES" + .PP + PAM_IGNORE + .RS 4 +-Ignore this module\. ++Ignore this module\&. + .RE + .SH "EXAMPLES" + .PP + An example usage for +-\fI/etc/pam\.d/login\fR ++\fI/etc/pam\&.d/login\fR + would be: + .sp + .RS 4 + .nf + # Authenticate the user +-auth required pam_unix\.so ++auth required pam_unix\&.so + # Ensure users account and password are still active +-account required pam_unix\.so ++account required pam_unix\&.so + # Change the users password, but at first check the strength + # with pam_cracklib(8) +-password required pam_cracklib\.so retry=3 minlen=6 difok=3 +-password required pam_unix\.so use_authtok nullok md5 +-session required pam_unix\.so ++password required pam_cracklib\&.so retry=3 minlen=6 difok=3 ++password required pam_unix\&.so use_authtok nullok md5 ++session required pam_unix\&.so + + .fi + .RE +@@ -186,4 +224,4 @@ + \fBpam\fR(8) + .SH "AUTHOR" + .PP +-pam_unix was written by various people\. ++pam_unix was written by various people\&. diff --git a/debian/patches-applied/055_pam_unix_nullok_secure b/debian/patches-applied/055_pam_unix_nullok_secure index 7ef6a6a2..745a8e55 100644 --- a/debian/patches-applied/055_pam_unix_nullok_secure +++ b/debian/patches-applied/055_pam_unix_nullok_secure @@ -179,17 +179,17 @@ Index: pam.deb/modules/pam_unix/pam_unix.8 +++ pam.deb/modules/pam_unix/pam_unix.8 @@ -62,7 +62,14 @@ .RS 4 - The default action of this module is to not permit the user access to a service if their official password is blank\. The + The default action of this module is to not permit the user access to a service if their official password is blank\&. The \fBnullok\fR --argument overrides this default\. -+argument overrides this default and allows any user with a blank password to access the service\. +-argument overrides this default\&. ++argument overrides this default and allows any user with a blank password to access the service\&. +.RE +.PP +\fBnullok_secure\fR +.RS 4 -+The default action of this module is to not permit the user access to a service if their official password is blank\. The ++The default action of this module is to not permit the user access to a service if their official password is blank\&. The +\fBnullok_secure\fR -+argument overrides this default and allows any user with a blank password to access the service as long as the value of PAM_TTY is set to one of the values found in /etc/securetty\. ++argument overrides this default and allows any user with a blank password to access the service as long as the value of PAM_TTY is set to one of the values found in /etc/securetty\&. .RE .PP \fBtry_first_pass\fR diff --git a/debian/patches-applied/PAM-manpage-section b/debian/patches-applied/PAM-manpage-section index 33fea95a..6cb3d7fc 100644 --- a/debian/patches-applied/PAM-manpage-section +++ b/debian/patches-applied/PAM-manpage-section @@ -6214,278 +6214,7 @@ Index: pam.deb/modules/pam_unix/pam_unix.8 =================================================================== --- pam.deb.orig/modules/pam_unix/pam_unix.8 +++ pam.deb/modules/pam_unix/pam_unix.8 -@@ -1,92 +1,92 @@ - .\" Title: pam_unix - .\" Author: --.\" Generator: DocBook XSL Stylesheets v1.73.1 --.\" Date: 04/16/2008 -+.\" Generator: DocBook XSL Stylesheets v1.73.2 -+.\" Date: 07/27/2008 - .\" Manual: Linux-PAM Manual - .\" Source: Linux-PAM Manual - .\" --.TH "PAM_UNIX" "8" "04/16/2008" "Linux-PAM Manual" "Linux\-PAM Manual" -+.TH "PAM_UNIX" "8" "07/27/2008" "Linux-PAM Manual" "Linux\-PAM Manual" - .\" disable hyphenation - .nh - .\" disable justification (adjust text to left margin only) - .ad l - .SH "NAME" --pam_unix - Module for traditional password authentication -+pam_unix \- Module for traditional password authentication - .SH "SYNOPSIS" - .HP 12 --\fBpam_unix\.so\fR [\.\.\.] -+\fBpam_unix\&.so\fR [\&.\&.\&.] - .SH "DESCRIPTION" - .PP --This is the standard Unix authentication module\. It uses standard calls from the system\'s libraries to retrieve and set account information as well as authentication\. Usually this is obtained from the /etc/passwd and the /etc/shadow file as well if shadow is enabled\. -+This is the standard Unix authentication module\&. It uses standard calls from the system\'s libraries to retrieve and set account information as well as authentication\&. Usually this is obtained from the /etc/passwd and the /etc/shadow file as well if shadow is enabled\&. - .PP - The account component performs the task of establishing the status of the user\'s account and password based on the following - \fIshadow\fR --elements: expire, last_change, max_change, min_change, warn_change\. In the case of the latter, it may offer advice to the user on changing their password or, through the -+elements: expire, last_change, max_change, min_change, warn_change\&. In the case of the latter, it may offer advice to the user on changing their password or, through the - \fBPAM_AUTHTOKEN_REQD\fR --return, delay giving service to the user until they have established a new password\. The entries listed above are documented in the -+return, delay giving service to the user until they have established a new password\&. The entries listed above are documented in the - \fBshadow\fR(5) --manual page\. Should the user\'s record not contain one or more of these entries, the corresponding -+manual page\&. Should the user\'s record not contain one or more of these entries, the corresponding - \fIshadow\fR --check is not performed\. -+check is not performed\&. - .PP --The authentication component performs the task of checking the users credentials (password)\. The default action of this module is to not permit the user access to a service if their official password is blank\. -+The authentication component performs the task of checking the users credentials (password)\&. The default action of this module is to not permit the user access to a service if their official password is blank\&. - .PP - A helper binary, --\fBunix_chkpwd\fR(8), is provided to check the user\'s password when it is stored in a read protected database\. This binary is very simple and will only check the password of the user invoking it\. It is called transparently on behalf of the user by the authenticating component of this module\. In this way it is possible for applications like -+\fBunix_chkpwd\fR(8), is provided to check the user\'s password when it is stored in a read protected database\&. This binary is very simple and will only check the password of the user invoking it\&. It is called transparently on behalf of the user by the authenticating component of this module\&. In this way it is possible for applications like - \fBxlock\fR(1) --to work without being setuid\-root\. The module, by default, will temporarily turn off SIGCHLD handling for the duration of execution of the helper binary\. This is generally the right thing to do, as many applications are not prepared to handle this signal from a child they didn\'t know was --\fBfork()\fRd\. The -+to work without being setuid\-root\&. The module, by default, will temporarily turn off SIGCHLD handling for the duration of execution of the helper binary\&. This is generally the right thing to do, as many applications are not prepared to handle this signal from a child they didn\'t know was -+\fBfork()\fRd\&. The - \fBnoreap\fR --module argument can be used to suppress this temporary shielding and may be needed for use with certain applications\. -+module argument can be used to suppress this temporary shielding and may be needed for use with certain applications\&. - .PP --The password component of this module performs the task of updating the user\'s password\. -+The password component of this module performs the task of updating the user\'s password\&. - .PP --The session component of this module logs when a user logins or leave the system\. -+The session component of this module logs when a user logins or leave the system\&. - .PP --Remaining arguments, supported by others functions of this module, are silently ignored\. Other arguments are logged as errors through --\fBsyslog\fR(3)\. -+Remaining arguments, supported by others functions of this module, are silently ignored\&. Other arguments are logged as errors through -+\fBsyslog\fR(3)\&. - .SH "OPTIONS" - .PP - \fBdebug\fR - .RS 4 - Turns on debugging via --\fBsyslog\fR(3)\. -+\fBsyslog\fR(3)\&. - .RE - .PP - \fBaudit\fR - .RS 4 --A little more extreme than debug\. -+A little more extreme than debug\&. - .RE - .PP - \fBnullok\fR - .RS 4 --The default action of this module is to not permit the user access to a service if their official password is blank\. The -+The default action of this module is to not permit the user access to a service if their official password is blank\&. The - \fBnullok\fR --argument overrides this default and allows any user with a blank password to access the service\. -+argument overrides this default and allows any user with a blank password to access the service\&. - .RE - .PP - \fBnullok_secure\fR - .RS 4 --The default action of this module is to not permit the user access to a service if their official password is blank\. The -+The default action of this module is to not permit the user access to a service if their official password is blank\&. The - \fBnullok_secure\fR --argument overrides this default and allows any user with a blank password to access the service as long as the value of PAM_TTY is set to one of the values found in /etc/securetty\. -+argument overrides this default and allows any user with a blank password to access the service as long as the value of PAM_TTY is set to one of the values found in /etc/securetty\&. - .RE - .PP - \fBtry_first_pass\fR - .RS 4 --Before prompting the user for their password, the module first tries the previous stacked module\'s password in case that satisfies this module as well\. -+Before prompting the user for their password, the module first tries the previous stacked module\'s password in case that satisfies this module as well\&. - .RE - .PP - \fBuse_first_pass\fR - .RS 4 - The argument - \fBuse_first_pass\fR --forces the module to use a previous stacked modules password and will never prompt the user \- if no password is available or the password is not appropriate, the user will be denied access\. -+forces the module to use a previous stacked modules password and will never prompt the user \- if no password is available or the password is not appropriate, the user will be denied access\&. - .RE - .PP - \fBnodelay\fR - .RS 4 --This argument can be used to discourage the authentication component from requesting a delay should the authentication as a whole fail\. The default action is for the module to request a delay\-on\-failure of the order of two second\. -+This argument can be used to discourage the authentication component from requesting a delay should the authentication as a whole fail\&. The default action is for the module to request a delay\-on\-failure of the order of two second\&. - .RE - .PP - \fBuse_authtok\fR -@@ -95,17 +95,17 @@ - \fBpassword\fR - module (this is used in the example of the stacking of the - \fBpam_cracklib\fR --module documented above)\. -+module documented above)\&. - .RE - .PP - \fBnot_set_pass\fR - .RS 4 --This argument is used to inform the module that it is not to pay attention to/make available the old or new passwords from/to other (stacked) password modules\. -+This argument is used to inform the module that it is not to pay attention to/make available the old or new passwords from/to other (stacked) password modules\&. - .RE - .PP - \fBnis\fR - .RS 4 --NIS RPC is used for setting new passwords\. -+NIS RPC is used for setting new passwords\&. - .RE - .PP - \fBremember=\fR\fB\fIn\fR\fR -@@ -114,73 +114,111 @@ - \fIn\fR - passwords for each user are saved in - \fI/etc/security/opasswd\fR --in order to force password change history and keep the user from alternating between the same password too frequently\. -+in order to force password change history and keep the user from alternating between the same password too frequently\&. - .RE - .PP - \fBshadow\fR - .RS 4 --Try to maintain a shadow based system\. -+Try to maintain a shadow based system\&. - .RE - .PP - \fBmd5\fR - .RS 4 --When a user changes their password next, encrypt it with the MD5 algorithm\. -+When a user changes their password next, encrypt it with the MD5 algorithm\&. - .RE - .PP - \fBbigcrypt\fR - .RS 4 --When a user changes their password next, encrypt it with the DEC C2 algorithm\. -+When a user changes their password next, encrypt it with the DEC C2 algorithm\&. - .RE - .PP - \fBsha256\fR - .RS 4 --When a user changes their password next, encrypt it with the SHA256 algorithm\. If the SHA256 algorithm is not known to the libcrypt, fall back to MD5\. -+When a user changes their password next, encrypt it with the SHA256 algorithm\&. If the SHA256 algorithm is not known to the libcrypt, fall back to MD5\&. - .RE - .PP - \fBsha512\fR - .RS 4 --When a user changes their password next, encrypt it with the SHA512 algorithm\. If the SHA512 algorithm is not known to the libcrypt, fall back to MD5\. -+When a user changes their password next, encrypt it with the SHA512 algorithm\&. If the SHA512 algorithm is not known to the libcrypt, fall back to MD5\&. - .RE - .PP - \fBrounds=\fR\fB\fIn\fR\fR - .RS 4 - Set the optional number of rounds of the SHA256 and SHA512 password hashing algorithms to --\fIn\fR\. -+\fIn\fR\&. - .RE - .PP - \fBbroken_shadow\fR - .RS 4 --Ignore errors reading shadow inforation for users in the account management module\. -+Ignore errors reading shadow inforation for users in the account management module\&. -+.RE -+.PP -+\fBmin=\fR\fB\fIn\fR\fR -+.RS 4 -+Set a minimum password length of -+\fIn\fR -+characters\&. The default value is 1\&. -+.RE -+.PP -+\fBobscure\fR -+.RS 4 -+Enable some extra checks on password strength\&. These checks are based on the "obscure" checks in the original shadow package\&. The behavior is similar to the pam_cracklib module, but for non\-dictionary\-based checks\&. The following checks are implemented: -+.PP -+\fBPalindrome\fR -+.RS 4 -+Verifies that the new password is not a palindrome of (i\&.e\&., the reverse of) the previous one\&. -+.RE -+.PP -+\fBCase Change Only\fR -+.RS 4 -+Verifies that the new password isn\'t the same as the old one with a change of case\&. -+.RE -+.PP -+\fBSimilar\fR -+.RS 4 -+Verifies that the new password isn\'t too much like the previous one\&. -+.RE -+.PP -+\fBSimple\fR -+.RS 4 -+Is the new password too simple? This is based on the length of the password and the number of different types of characters (alpha, numeric, etc\&.) used\&. -+.RE -+.PP -+\fBRotated\fR -+.RS 4 -+Is the new password a rotated version of the old password? (E\&.g\&., "billy" and "illyb") -+.RE -+.sp - .RE - .PP - Invalid arguments are logged with --\fBsyslog\fR(3)\. -+\fBsyslog\fR(3)\&. - .SH "MODULE SERVICES PROVIDED" - .PP --All service are supported\. -+All service are supported\&. - .SH "RETURN VALUES" - .PP - PAM_IGNORE - .RS 4 --Ignore this module\. -+Ignore this module\&. - .RE - .SH "EXAMPLES" - .PP - An example usage for --\fI/etc/pam\.d/login\fR -+\fI/etc/pam\&.d/login\fR - would be: - .sp - .RS 4 - .nf - # Authenticate the user --auth required pam_unix\.so -+auth required pam_unix\&.so - # Ensure users account and password are still active --account required pam_unix\.so -+account required pam_unix\&.so - # Change the users password, but at first check the strength - # with pam_cracklib(8) --password required pam_cracklib\.so retry=3 minlen=6 difok=3 --password required pam_unix\.so use_authtok nullok md5 --session required pam_unix\.so -+password required pam_cracklib\&.so retry=3 minlen=6 difok=3 -+password required pam_unix\&.so use_authtok nullok md5 -+session required pam_unix\&.so - - .fi - .RE -@@ -190,7 +228,7 @@ +@@ -228,7 +228,7 @@ \fBpam.conf\fR(5), \fBpam.d\fR(8), @@ -6493,8 +6222,7 @@ Index: pam.deb/modules/pam_unix/pam_unix.8 +\fBpam\fR(7) .SH "AUTHOR" .PP --pam_unix was written by various people\. -+pam_unix was written by various people\&. + pam_unix was written by various people\&. Index: pam.deb/modules/pam_unix/pam_unix.8.xml =================================================================== --- pam.deb.orig/modules/pam_unix/pam_unix.8.xml -- cgit v1.2.3 From 2526c272fd267bb71314c4b2bf57227e480c25e6 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Wed, 27 Aug 2008 01:21:30 -0700 Subject: 055_pam_unix_nullok_secure: also don't call the helper at all from _unix_blankpasswd when we can detect that null passwords are disallowed, to avoid causing spammy logs on successful authentications. Closes: #496620. --- debian/changelog | 4 ++++ debian/patches-applied/055_pam_unix_nullok_secure | 12 ++++++------ 2 files changed, 10 insertions(+), 6 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 9ecb6771..0edc3f2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,10 @@ pam (1.0.1-4) UNRELEASED; urgency=low [ Steve Langasek ] * 007_modules_pam_unix: update the manpage at the same time as the xml source (grr, autogenerated files in source packages). Closes: #495804. + * 055_pam_unix_nullok_secure: also don't call the helper at all from + _unix_blankpasswd when we can detect that null passwords are disallowed, + to avoid causing spammy logs on successful authentications. + Closes: #496620. -- Julien Cristau Thu, 21 Aug 2008 00:03:56 +0200 diff --git a/debian/patches-applied/055_pam_unix_nullok_secure b/debian/patches-applied/055_pam_unix_nullok_secure index 745a8e55..18f9f95b 100644 --- a/debian/patches-applied/055_pam_unix_nullok_secure +++ b/debian/patches-applied/055_pam_unix_nullok_secure @@ -67,11 +67,11 @@ Index: pam.deb/modules/pam_unix/support.c args[2]=strdup("nullok"); } else { args[2]=strdup("nonull"); -@@ -554,6 +573,17 @@ - if (salt) - _pam_delete(salt); +@@ -527,6 +546,17 @@ + if (on(UNIX__NONULL, ctrl)) + return 0; /* will fail but don't let on yet */ -+ if ((retval == 1) && on(UNIX_NULLOK_SECURE, ctrl)) { ++ if (on(UNIX_NULLOK_SECURE, ctrl)) { + int retval2; + const void *uttyname; + retval2 = pam_get_item(pamh, PAM_TTY, &uttyname); @@ -82,9 +82,9 @@ Index: pam.deb/modules/pam_unix/support.c + return 0; + } + - return retval; - } + /* UNIX passwords area */ + retval = get_pwd_hash(pamh, name, &pwd, &salt); @@ -613,7 +643,8 @@ } } -- cgit v1.2.3 From 14b2082ebf97130666e2841bb7653fdcadf584bd Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Thu, 28 Aug 2008 22:57:39 -0700 Subject: debian/rules: call chgrp *before* calling chmod, lest the sgid bit on unix_chkpwd be cleared during the build when using -rsudo. Closes: #496983. --- debian/changelog | 3 +++ debian/rules | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 0edc3f2d..a94ca710 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,9 @@ pam (1.0.1-4) UNRELEASED; urgency=low _unix_blankpasswd when we can detect that null passwords are disallowed, to avoid causing spammy logs on successful authentications. Closes: #496620. + * debian/rules: call chgrp *before* calling chmod, lest the sgid bit + on unix_chkpwd be cleared during the build when using -rsudo. + Closes: #496983. -- Julien Cristau Thu, 21 Aug 2008 00:03:56 +0200 diff --git a/debian/rules b/debian/rules index dade1a29..edac90c2 100755 --- a/debian/rules +++ b/debian/rules @@ -135,8 +135,8 @@ binary-arch: install dh_strip -a dh_compress -a dh_fixperms -a - chmod 02755 $(d)/libpam-modules/sbin/unix_chkpwd chgrp shadow $(d)/libpam-modules/sbin/unix_chkpwd + chmod 02755 $(d)/libpam-modules/sbin/unix_chkpwd dh_makeshlibs -plibpam0g -V "libpam0g (>= 0.99.10.0)" dh_installdeb -a dh_shlibdeps -a -L libpam0g -l$(CURDIR)/debian/libpam0g/lib -- cgit v1.2.3 From d61c260279715034fe65ea1b8e763e2a2f587f93 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Thu, 28 Aug 2008 23:00:24 -0700 Subject: mark for upload --- debian/changelog | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index a94ca710..f365386a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -pam (1.0.1-4) UNRELEASED; urgency=low +pam (1.0.1-4) unstable; urgency=high + + * High-urgency upload for RC bugfix. [ Julien Cristau ] * pam_unix-chkpwd-wait: don't assume that the unix_chkpwd process exits @@ -16,7 +18,7 @@ pam (1.0.1-4) UNRELEASED; urgency=low on unix_chkpwd be cleared during the build when using -rsudo. Closes: #496983. - -- Julien Cristau Thu, 21 Aug 2008 00:03:56 +0200 + -- Steve Langasek Thu, 28 Aug 2008 22:59:23 -0700 pam (1.0.1-3) unstable; urgency=high -- cgit v1.2.3 From 3290896c88b6e136aa88ab11ff9b66462af48965 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Fri, 29 Aug 2008 13:09:25 -0700 Subject: Build-conflict with libxcrypt-dev, which otherwise pulls libxcrypt in as a dependency of libpam-modules if it's installed during the build. Thanks to Larry Doolittle for catching. --- debian/changelog | 8 ++++++++ debian/control | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index f365386a..284aa8b9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +pam (1.0.1-5) UNRELEASED; urgency=low + + * Build-conflict with libxcrypt-dev, which otherwise pulls libxcrypt in as + a dependency of libpam-modules if it's installed during the build. + Thanks to Larry Doolittle for catching. + + -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 + pam (1.0.1-4) unstable; urgency=high * High-urgency upload for RC bugfix. diff --git a/debian/control b/debian/control index 4f181e92..0cbc11e6 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.8.0 Build-Depends: libcrack2-dev (>= 2.8), bzip2, debhelper, quilt, flex, libdb-dev, libselinux1-dev [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64 !netbsd-i386], po-debconf Build-Depends-Indep: xsltproc, libxml2-utils, docbook-xml, docbook-xsl, w3m Build-Conflicts-Indep: fop -Build-Conflicts: libdb4.2-dev +Build-Conflicts: libdb4.2-dev, libxcrypt-dev Vcs-Bzr: http://bzr.debian.org/bzr/pkg-pam/debian/sid/ Homepage: http://pam.sourceforge.net/ -- cgit v1.2.3 From 0ae4f5ef3f6e28fdcb15d49da0a2bfdf1dff15c3 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sat, 15 Nov 2008 23:58:41 -0800 Subject: Don't refer to gnome-screensaver in the debconf template; it isn't actually affected by the libpam symbol issue because it forks a separate process to display the screensaver dialog. --- debian/changelog | 3 +++ debian/libpam0g.templates | 6 +++--- debian/po/bg.po | 16 ++++++++-------- debian/po/cs.po | 16 ++++++++-------- debian/po/de.po | 17 ++++++++--------- debian/po/es.po | 16 ++++++++-------- debian/po/eu.po | 15 ++++++++++----- debian/po/fi.po | 15 ++++++++++----- debian/po/fr.po | 16 ++++++++-------- debian/po/gl.po | 16 ++++++++-------- debian/po/it.po | 16 ++++++++-------- debian/po/ja.po | 15 ++++++++++----- debian/po/nl.po | 16 ++++++++-------- debian/po/pt.po | 16 ++++++++-------- debian/po/pt_BR.po | 16 ++++++++-------- debian/po/ro.po | 15 ++++++++++----- debian/po/ru.po | 14 +++++++------- debian/po/sk.po | 16 ++++++++-------- debian/po/sv.po | 12 ++++++------ debian/po/templates.pot | 18 +++++++++--------- debian/po/tr.po | 15 ++++++++++----- debian/po/vi.po | 15 ++++++++++----- debian/po/zh_CN.po | 15 ++++++++++----- 23 files changed, 186 insertions(+), 149 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 284aa8b9..31d6de88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,9 @@ pam (1.0.1-5) UNRELEASED; urgency=low * Build-conflict with libxcrypt-dev, which otherwise pulls libxcrypt in as a dependency of libpam-modules if it's installed during the build. Thanks to Larry Doolittle for catching. + * Don't refer to gnome-screensaver in the debconf template; it isn't + actually affected by the libpam symbol issue because it forks a separate + process to display the screensaver dialog. -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/libpam0g.templates b/debian/libpam0g.templates index 7627c7e8..3e7bf2fc 100644 --- a/debian/libpam0g.templates +++ b/debian/libpam0g.templates @@ -6,9 +6,9 @@ _Description: Services to restart for PAM library upgrade: list of init.d scripts for services to be restarted now, and correct it if needed. . - Some other services such as xscreensaver, gnome-screensaver, and xlockmore - cannot be restarted for you. You will not be able to authenticate to these - services until you restart them manually. + Some other services such as xscreensaver and xlockmore cannot be restarted + for you. You will not be able to authenticate to these services until + you restart them manually. Template: libpam0g/xdm-needs-restart Type: error diff --git a/debian/po/bg.po b/debian/po/bg.po index 9b0b2bab..104556cf 100644 --- a/debian/po/bg.po +++ b/debian/po/bg.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-25 14:24+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -40,13 +40,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Някои друго услуги като xscreensaver, gnome-screensaver и xlockmore не могат " -"да бъдат рестартирани автоматично. Няма да можете да се идентифицирате пред " -"тези услуги докато не ги рестартирате." +"Някои друго услуги като xscreensaver и xlockmore не могат да бъдат " +"рестартирани автоматично. Няма да можете да се идентифицирате пред тези " +"услуги докато не ги рестартирате." #. Type: error #. Description diff --git a/debian/po/cs.po b/debian/po/cs.po index 0bfadf14..e32f778f 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-29 15:30+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -39,13 +39,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Některé služby (např. xscreensaver, gnome-screensaver a xlockmore) nemohou " -"být restartovány automaticky. Dokud je nerestartujete ručně, nebudete se " -"moci vůči nim autentizovat." +"Některé služby (např. xscreensaver a xlockmore) nemohou být restartovány " +"automaticky. Dokud je nerestartujete ručně, nebudete se moci vůči nim " +"autentizovat." #. Type: error #. Description diff --git a/debian/po/de.po b/debian/po/de.po index 4fa78a91..5d92ab26 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-29 14:18+0200\n" "Last-Translator: Sven Joachim \n" "Language-Team: German \n" @@ -40,14 +40,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Einige andere Dienste wie xscreensaver, gnome-screensaver und xlockmore " -"können nicht automatisch neu gestartet werden. Sie werden sich gegenüber " -"diesen Diensten nicht authentifizieren können, bis Sie sie manuell neu " -"gestartet haben." +"Einige andere Dienste wie xscreensaver und xlockmore können nicht " +"automatisch neu gestartet werden. Sie werden sich gegenüber diesen Diensten " +"nicht authentifizieren können, bis Sie sie manuell neu gestartet haben." #. Type: error #. Description diff --git a/debian/po/es.po b/debian/po/es.po index 63dbccf8..84333b14 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.79-4\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-29 02:28+0200\n" "Last-Translator: Javier Fernández-Sanguino \n" "Language-Team: Debian Spanish \n" @@ -67,13 +67,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Algunos servicios, como «xscreensaver», «gnome-screensaver» y «xlockmore», " -"no podrán reiniciarse. La autenticación no funcionará en estos servicios " -"hasta que los reinicie manualmente." +"Algunos servicios, como «xscreensaver» y «xlockmore», no podrán reiniciarse. " +"La autenticación no funcionará en estos servicios hasta que los reinicie " +"manualmente." #. Type: error #. Description diff --git a/debian/po/eu.po b/debian/po/eu.po index 79e1ad5b..263fad30 100644 --- a/debian/po/eu.po +++ b/debian/po/eu.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2008-04-02 14:26+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -41,10 +41,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "Xscreensaver, gnome-screensaver edo xlockmore bezalako beste zenbait " "zerbitzu ezin dira zure odez berrabiarazi. Ezingo duzu zerbitzu horietan " diff --git a/debian/po/fi.po b/debian/po/fi.po index e753209d..58816949 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-4\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-12-30 00:14+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -35,10 +35,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "Joitain muita palveluita, kuten xscreensaver, gnome-screensaver ja xlockmore " "ei voida käynnistää automaattisesti. Et voi kirjautua näihin palveluihin " diff --git a/debian/po/fr.po b/debian/po/fr.po index e14fd177..056a76c5 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-10-03 12:07+0200\n" "Last-Translator: Cyril Brulebois \n" "Language-Team: French \n" @@ -39,13 +39,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"D'autres services tels que xscreensaver, gnome-screensaver et xlockmore ne " -"peuvent pas être redémarrés automatiquement. Vous ne pourrez vous identifier " -"auprès de ces services qu'après les avoir redémarrés vous-même." +"D'autres services tels que xscreensaver et xlockmore ne peuvent pas être " +"redémarrés automatiquement. Vous ne pourrez vous identifier auprès de ces " +"services qu'après les avoir redémarrés vous-même." #. Type: error #. Description diff --git a/debian/po/gl.po b/debian/po/gl.po index 378d225c..7d9401f9 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-10-01 20:04+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -37,13 +37,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Hai outros servizos, como xscreensaver, gnome-screensaver e xlockmore, que " -"non se poden reiniciar por vostede. Non ha poderse autenticar con estes " -"servizos a menos que os reinicie manualmente." +"Hai outros servizos, como xscreensaver e xlockmore, que non se poden " +"reiniciar por vostede. Non ha poderse autenticar con estes servizos a menos " +"que os reinicie manualmente." #. Type: error #. Description diff --git a/debian/po/it.po b/debian/po/it.po index d4b214bf..364d64d9 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2008-06-01 08:38+0100\n" "Last-Translator: David Paleino \n" "Language-Team: LANGUAGE \n" @@ -39,13 +39,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Alcuni altri servizi come xscreensaver, gnome-screensaver e xlockmore non " -"possono essere riavviati automaticamente. Non sarai in grado di " -"autenticarti a questi servizi finché non saranno riavviati manualmente." +"Alcuni altri servizi come xscreensaver e xlockmore non possono essere " +"riavviati automaticamente. Non sarai in grado di autenticarti a questi " +"servizi finché non saranno riavviati manualmente." #. Type: error #. Description diff --git a/debian/po/ja.po b/debian/po/ja.po index 1772b2cd..ab0398c3 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-10-14 16:48+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Japanese \n" @@ -38,10 +38,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "xscreensaver、gnome-screensaver、xlockmore のようなその他いくつかのサービスは" "再起動できません。あなたがこれらを手動で再起動するまで、これらのサービスでは" diff --git a/debian/po/nl.po b/debian/po/nl.po index b3db3f53..30150e3c 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-10-26 19:55+0100\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" @@ -40,13 +40,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Sommige andere diensten zoals xscreensaver, gnome-screensaver, en xlockmore " -"kunnen niet automatisch herstart worden. U kunt u bij deze diensten pas " -"terug authentificeren eens u ze handmatig herstart heeft." +"Sommige andere diensten zoals xscreensaver en xlockmore kunnen niet " +"automatisch herstart worden. U kunt u bij deze diensten pas terug " +"authentificeren eens u ze handmatig herstart heeft." #. Type: error #. Description diff --git a/debian/po/pt.po b/debian/po/pt.po index 39089ea2..e0519e4d 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-25 19:04+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" @@ -40,13 +40,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Outros serviços como o xscreensaver, gnome-screensaver, e xlockmore não " -"podem ser reiniciados para si. Você não vai poder autenticar-se nestes " -"serviços até que você os reinicie manualmente." +"Outros serviços como o xscreensaver e xlockmore não podem ser reiniciados " +"para si. Você não vai poder autenticar-se nestes serviços até que você os " +"reinicie manualmente." #. Type: error #. Description diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index 8200e558..5a95a29e 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam_0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-26 15:53-0300\n" "Last-Translator: Eder L. Marques \n" "Language-Team: l10n Portuguese \n" @@ -41,13 +41,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Alguns dos outros serviços como xscreensaver, gnome-screensaver e xlockmore " -"não podem ser reiniciados para você. Você não será capaz de autenticar " -"nestes serviços até que os tenha reiniciado manualmente." +"Alguns dos outros serviços como xscreensaver e xlockmore não podem ser " +"reiniciados para você. Você não será capaz de autenticar nestes serviços até " +"que os tenha reiniciado manualmente." #. Type: error #. Description diff --git a/debian/po/ro.po b/debian/po/ro.po index ad224aee..45b94711 100644 --- a/debian/po/ro.po +++ b/debian/po/ro.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: templates\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2008-07-21 10:28+0300\n" "Last-Translator: Igor Stirbu \n" "Language-Team: Romanian \n" @@ -42,10 +42,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "Alte servicii, de exemplu, xscreensaver, gnome-screensaver și xlockmore nu " "pot fi repornite automat. Autentificarea prin aceste servicii nu va mai fi " diff --git a/debian/po/ru.po b/debian/po/ru.po index e684545c..b1583d99 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: 0.99.7.1-4\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-25 20:51+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -42,13 +42,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "Есть несколько сервисов, которые нельзя перезапустить автоматически: " -"xscreensaver, gnome-screensaver и xlockmore. Вы не сможете ввести правильный " -"пароль в этих сервисах, пока не перезапустите их вручную." +"xscreensaver и xlockmore. Вы не сможете ввести правильный пароль в этих " +"сервисах, пока не перезапустите их вручную." #. Type: error #. Description diff --git a/debian/po/sk.po b/debian/po/sk.po index 5c380704..0b225126 100644 --- a/debian/po/sk.po +++ b/debian/po/sk.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: \n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -39,13 +39,13 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Niektoré ďalšie služby ako xscreensaver, gnome-screensaver a xlockmore nie " -"je možné automaticky reštartovať. Pokým tieto služby nereštartujete ručne, " -"nebudete sa voči nim môcť overovať." +"Niektoré ďalšie služby ako xscreensaver a xlockmore nie je možné automaticky " +"reštartovať. Pokým tieto služby nereštartujete ručne, nebudete sa voči nim " +"môcť overovať." #. Type: error #. Description diff --git a/debian/po/sv.po b/debian/po/sv.po index 1b8b0863..9eb9c765 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-12-24 12:29+0100\n" "Last-Translator: Christer Andersson \n" "Language-Team: Swedish \n" @@ -39,11 +39,11 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" -"Vissa andra tjnster som xscreensaver, gnome-screensaver och xlockmore\n" +"Vissa andra tjnster som xscreensaver och xlockmore\n" "kan inte startas om t dig. Du kommer inte att kunna autentisera dig fr \n" "dessa tjnster frrn du startat om dem manuellt." diff --git a/debian/po/templates.pot b/debian/po/templates.pot index 0d388eec..e838c9ca 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -1,14 +1,14 @@ -# Debconf questions for the Linux-PAM package. -# Copyright (C) 2007 Steve Langasek -# This file is distributed under the same license as the pam package. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -36,9 +36,9 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" #. Type: error diff --git a/debian/po/tr.po b/debian/po/tr.po index d6273c1f..e4cdad77 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2008-07-15 01:39+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian L10n Turkish \n" @@ -41,10 +41,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "xscreensaver, gnome-screensaver ve xlockmore gibi bazı hizmetler sizin için " "yeniden başlatılamaz. Siz bu hizmetleri elle yeniden başlatana kadar bu " diff --git a/debian/po/vi.po b/debian/po/vi.po index df7e1bf2..8b52293d 100644 --- a/debian/po/vi.po +++ b/debian/po/vi.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-28 23:58+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -39,10 +39,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "Một số dịch vụ khác như xscreensaver, gnome-screensaver, và xlockmore không " "thể được khởi chạy lại cho bạn.Bạn sẽ không thể xác thực được tới dịch vụ " diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index e4fb11fa..796eb875 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" -"Report-Msgid-Bugs-To: vorlon@debian.org\n" -"POT-Creation-Date: 2007-09-24 17:06-0700\n" +"Report-Msgid-Bugs-To: pam@packages.debian.org\n" +"POT-Creation-Date: 2008-11-15 23:51-0800\n" "PO-Revision-Date: 2007-09-25 23:06-0500\n" "Last-Translator: Ming Hua \n" "Language-Team: Debian Chinese [GB] \n" @@ -41,10 +41,15 @@ msgstr "" #. Type: string #. Description #: ../libpam0g.templates:1001 +#, fuzzy +#| msgid "" +#| "Some other services such as xscreensaver, gnome-screensaver, and " +#| "xlockmore cannot be restarted for you. You will not be able to " +#| "authenticate to these services until you restart them manually." msgid "" -"Some other services such as xscreensaver, gnome-screensaver, and xlockmore " -"cannot be restarted for you. You will not be able to authenticate to these " -"services until you restart them manually." +"Some other services such as xscreensaver and xlockmore cannot be restarted " +"for you. You will not be able to authenticate to these services until you " +"restart them manually." msgstr "" "无法为您重新启动如 xscreensaver、gnome-screensaver 和 xclockmore 一类的服务。" "在您手动重新启动它们之前,将无法在这些服务中验证身份。" -- cgit v1.2.3 From 77244630ce373b906d4c18a08fcc9b4ac5dab4c8 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sun, 16 Nov 2008 19:52:16 -0500 Subject: Have libpam-modules Pre-Depend on its shlibs, to force libpam0g to be configured before libpam-modules is unpacked and allowing us to warn users about needing to disable xscreensaver and xlockmore at the right time without having to add a pre-dependency on debconf to these transitively essential packages. Closes: #502140, LP: #256238. --- debian/changelog | 5 +++++ debian/control | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 31d6de88..b587be82 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,11 @@ pam (1.0.1-5) UNRELEASED; urgency=low * Don't refer to gnome-screensaver in the debconf template; it isn't actually affected by the libpam symbol issue because it forks a separate process to display the screensaver dialog. + * Have libpam-modules Pre-Depend on its shlibs, to force libpam0g to be + configured before libpam-modules is unpacked and allowing us to warn + users about needing to disable xscreensaver and xlockmore at the right + time without having to add a pre-dependency on debconf to these + transitively essential packages. Closes: #502140, LP: #256238. -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/control b/debian/control index 0cbc11e6..4442af59 100644 --- a/debian/control +++ b/debian/control @@ -30,7 +30,7 @@ Description: Pluggable Authentication Modules library Package: libpam-modules Priority: required Architecture: any -Depends: ${shlibs:Depends} +Pre-Depends: ${shlibs:Depends} Conflicts: libpam0g-modules (= 0.66-1), libpam-motd, libpam-mkhomedir, libpam-umask, suidmanager (<< 0.50) Replaces: libpam0g-util, libpam-umask Provides: libpam-motd, libpam-mkhomedir, libpam-umask -- cgit v1.2.3 From 65f06c6f86c3c538b4fb9e971b72246c4066f517 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sun, 28 Dec 2008 01:31:21 -0600 Subject: have libpam-modules Pre-Depend on ${misc:Depends} and add a debconf question to the libpam-modules preinst, so we can reliably warn users about xscreensaver and xlockmore before libpam-modules is unpacked; at the same time, clean up the text of the libpam0g debconf template to not refer to the screensavers. --- debian/changelog | 8 +++---- debian/control | 2 +- debian/libpam-modules.preinst | 16 ++++++++++++++ debian/libpam-modules.templates | 9 ++++++++ debian/libpam0g.templates | 4 ---- debian/po/POTFILES.in | 1 + debian/po/bg.po | 32 ++++++++++++++++----------- debian/po/cs.po | 43 ++++++++++++++++-------------------- debian/po/de.po | 32 ++++++++++++++++----------- debian/po/es.po | 43 ++++++++++++++++-------------------- debian/po/eu.po | 37 +++++++++++++++---------------- debian/po/fi.po | 37 +++++++++++++++---------------- debian/po/fr.po | 43 ++++++++++++++++-------------------- debian/po/gl.po | 32 ++++++++++++++++----------- debian/po/it.po | 32 ++++++++++++++++----------- debian/po/ja.po | 37 +++++++++++++++---------------- debian/po/nl.po | 32 ++++++++++++++++----------- debian/po/pt.po | 32 ++++++++++++++++----------- debian/po/pt_BR.po | 32 ++++++++++++++++----------- debian/po/ro.po | 37 +++++++++++++++---------------- debian/po/ru.po | 32 ++++++++++++++++----------- debian/po/sk.po | 32 ++++++++++++++++----------- debian/po/sv.po | 32 ++++++++++++++++----------- debian/po/templates.pot | 29 ++++++++++++++++--------- debian/po/tr.po | 37 +++++++++++++++---------------- debian/po/vi.po | 48 ++++++++++++++++------------------------- debian/po/zh_CN.po | 36 ++++++++++++++++--------------- 27 files changed, 425 insertions(+), 362 deletions(-) create mode 100644 debian/libpam-modules.preinst create mode 100644 debian/libpam-modules.templates (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index b587be82..11502026 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,11 +6,9 @@ pam (1.0.1-5) UNRELEASED; urgency=low * Don't refer to gnome-screensaver in the debconf template; it isn't actually affected by the libpam symbol issue because it forks a separate process to display the screensaver dialog. - * Have libpam-modules Pre-Depend on its shlibs, to force libpam0g to be - configured before libpam-modules is unpacked and allowing us to warn - users about needing to disable xscreensaver and xlockmore at the right - time without having to add a pre-dependency on debconf to these - transitively essential packages. Closes: #502140, LP: #256238. + * Have libpam-modules Pre-Depend on ${misc:Depends}, so that we can + warn users about needing to disable xscreensaver and xlockmore + before libpam-modules is unpacked. Closes: #502140, LP: #256238. -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/control b/debian/control index 4442af59..f0a224ed 100644 --- a/debian/control +++ b/debian/control @@ -30,7 +30,7 @@ Description: Pluggable Authentication Modules library Package: libpam-modules Priority: required Architecture: any -Pre-Depends: ${shlibs:Depends} +Pre-Depends: ${shlibs:Depends}, ${misc:Depends} Conflicts: libpam0g-modules (= 0.66-1), libpam-motd, libpam-mkhomedir, libpam-umask, suidmanager (<< 0.50) Replaces: libpam0g-util, libpam-umask Provides: libpam-motd, libpam-mkhomedir, libpam-umask diff --git a/debian/libpam-modules.preinst b/debian/libpam-modules.preinst new file mode 100644 index 00000000..5c106085 --- /dev/null +++ b/debian/libpam-modules.preinst @@ -0,0 +1,16 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +if dpkg --compare-versions "$2" lt-nl 0.99.10.0; then + db_version 2.0 + + if pidof xscreensaver xlockmore >/dev/null; then + db_input critical libpam-modules/disable-screensaver || true + db_go || true + fi +fi + +#DEBHELPER# diff --git a/debian/libpam-modules.templates b/debian/libpam-modules.templates new file mode 100644 index 00000000..b928751e --- /dev/null +++ b/debian/libpam-modules.templates @@ -0,0 +1,9 @@ +Template: libpam-modules/disable-screensaver +Type: error +_Description: xscreensaver and xlockmore must be restarted before upgrading + One or more running instances of xscreensaver or xlockmore have been + detected on this system. Because of incompatible library changes, the + upgrade of the libpam-modules package will leave you unable to + authenticate to these programs. You should arrange for these programs + to be restarted or stopped before continuing this upgrade, to avoid + locking your users out of their current sessions. diff --git a/debian/libpam0g.templates b/debian/libpam0g.templates index 3e7bf2fc..f5b11f20 100644 --- a/debian/libpam0g.templates +++ b/debian/libpam0g.templates @@ -5,10 +5,6 @@ _Description: Services to restart for PAM library upgrade: this new version of libpam. Please review the following space-separated list of init.d scripts for services to be restarted now, and correct it if needed. - . - Some other services such as xscreensaver and xlockmore cannot be restarted - for you. You will not be able to authenticate to these services until - you restart them manually. Template: libpam0g/xdm-needs-restart Type: error diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in index 8c641cfc..26a3b044 100644 --- a/debian/po/POTFILES.in +++ b/debian/po/POTFILES.in @@ -1 +1,2 @@ [type: gettext/rfc822deb] libpam0g.templates +[type: gettext/rfc822deb] libpam-modules.templates diff --git a/debian/po/bg.po b/debian/po/bg.po index 104556cf..d7459ed0 100644 --- a/debian/po/bg.po +++ b/debian/po/bg.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-25 14:24+0300\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -36,18 +36,6 @@ msgstr "" "от init.d скриптове по-долу и го коригирайте ако е необходимо. Имената на " "отделните скриптове трябва да са отделени с интервал." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Някои друго услуги като xscreensaver и xlockmore не могат да бъдат " -"рестартирани автоматично. Няма да можете да се идентифицирате пред тези " -"услуги докато не ги рестартирате." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -87,3 +75,21 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "Ще трябва сами да ги стартирате чрез „/etc/init.d/<услуга> start“." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/cs.po b/debian/po/cs.po index e32f778f..22ff62f3 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-29 15:30+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -35,18 +35,6 @@ msgstr "" "služeb (init.d skriptů), které se mají nyní restartovat a v případě potřeby " "seznam opravte." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Některé služby (např. xscreensaver a xlockmore) nemohou být restartovány " -"automaticky. Dokud je nerestartujete ručně, nebudete se moci vůči nim " -"autentizovat." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -91,15 +79,20 @@ msgid "" msgstr "" "Tyto služby budete muset spustit ručně příkazem '/etc/init.d/ start'." -#~ msgid "" -#~ "Among the services that require restarting are the display managers kdm, " -#~ "wdm, and xdm. If you are upgrading from within an X session started with " -#~ "one of these display managers, restarting that service will terminate " -#~ "your X session. It is recommended that you remove that service from the " -#~ "list here and restart it later at your convenience." -#~ msgstr "" -#~ "Mezi službami vyžadujícími restart jsou i správci displejů kdm, wdm a " -#~ "xdm. Aktualizujete-li z X sezení spuštěného některým ze zmíněných " -#~ "programů, znamená to, že restart příslušné služby ukončí stávající X " -#~ "sezení. V takovém případě doporučujeme službu ze seznamu odstranit a " -#~ "restartovat později, až pro to nastane vhodnější příležitost." +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/de.po b/debian/po/de.po index 5d92ab26..314c721f 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-29 14:18+0200\n" "Last-Translator: Sven Joachim \n" "Language-Team: German \n" @@ -36,18 +36,6 @@ msgstr "" "Dienste, die jetzt neu zu starten sind, und korrigieren Sie diese Liste " "nötigenfalls." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Einige andere Dienste wie xscreensaver und xlockmore können nicht " -"automatisch neu gestartet werden. Sie werden sich gegenüber diesen Diensten " -"nicht authentifizieren können, bis Sie sie manuell neu gestartet haben." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -92,3 +80,21 @@ msgid "" msgstr "" "Sie müssen diese manuell neu starten, indem Sie »/etc/init.d/ start« " "ausführen." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/es.po b/debian/po/es.po index 84333b14..9b772ba3 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.79-4\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-29 02:28+0200\n" "Last-Translator: Javier Fernández-Sanguino \n" "Language-Team: Debian Spanish \n" @@ -63,18 +63,6 @@ msgstr "" "separada por espacios mostrada a continuación que indica los servicios a " "reiniciar ahora y corríjala si es necesario." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Algunos servicios, como «xscreensaver» y «xlockmore», no podrán reiniciarse. " -"La autenticación no funcionará en estos servicios hasta que los reinicie " -"manualmente." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -121,15 +109,20 @@ msgstr "" "Deberá arrancar manualmente estos servicios ejecutando «/etc/init.d/" " start»." -#~ msgid "" -#~ "Among the services that require restarting are the display managers kdm, " -#~ "wdm, and xdm. If you are upgrading from within an X session started with " -#~ "one of these display managers, restarting that service will terminate " -#~ "your X session. It is recommended that you remove that service from the " -#~ "list here and restart it later at your convenience." -#~ msgstr "" -#~ "Entre los servicios que deben reiniciarse están los gestores de pantalla " -#~ "kdm, wdm y xdm. El reinicio del servicio terminará su sesión de X si está " -#~ "actualizando desde una sesión de X arrancada desde alguno de estos " -#~ "gestores. Se le recomienda eliminar el servicio de la lista y reiniciarlo " -#~ "más adelante cuando lo considere oportuno." +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/eu.po b/debian/po/eu.po index 263fad30..c60386eb 100644 --- a/debian/po/eu.po +++ b/debian/po/eu.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: eu\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2008-04-02 14:26+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -38,23 +38,6 @@ msgstr "" "diren hurrengo zuriunez bereiziriko init.d script zerrenda hau eta zuzendu " "behar izanez gero." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Xscreensaver, gnome-screensaver edo xlockmore bezalako beste zenbait " -"zerbitzu ezin dira zure odez berrabiarazi. Ezingo duzu zerbitzu horietan " -"autentifikaziorik egin berrabiarazi arte." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -99,3 +82,21 @@ msgid "" msgstr "" "Hauek zure kabuz berrabiarazi beharko dituzu '/etc/init.d/ start' " "eginaz." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/fi.po b/debian/po/fi.po index 58816949..dd4ce214 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-4\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-12-30 00:14+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" @@ -32,23 +32,6 @@ msgstr "" "niiden palveluiden init.d-komentotiedostoista, jotka käynnistetään " "uudelleen, ja muokkaa listaa tarvittaessa." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Joitain muita palveluita, kuten xscreensaver, gnome-screensaver ja xlockmore " -"ei voida käynnistää automaattisesti. Et voi kirjautua näihin palveluihin " -"ennen kuin olet manuaalisesti käynnistänyt ne uudelleen." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -96,3 +79,21 @@ msgid "" msgstr "" "Nämä palvelut tulee käynnistää uudelleen ajamalla '/etc/init.d/ " "start'." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/fr.po b/debian/po/fr.po index 056a76c5..63050eb5 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-10-03 12:07+0200\n" "Last-Translator: Cyril Brulebois \n" "Language-Team: French \n" @@ -35,18 +35,6 @@ msgstr "" "vérifier la liste suivante de scripts de démarrage à relancer maintenant, et " "la corriger si nécessaire." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"D'autres services tels que xscreensaver et xlockmore ne peuvent pas être " -"redémarrés automatiquement. Vous ne pourrez vous identifier auprès de ces " -"services qu'après les avoir redémarrés vous-même." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -94,15 +82,20 @@ msgstr "" "Vous devez les démarrer vous-même avec la commande « /etc/init.d/ " "start »." -#~ msgid "" -#~ "Among the services that require restarting are the display managers kdm, " -#~ "wdm, and xdm. If you are upgrading from within an X session started with " -#~ "one of these display managers, restarting that service will terminate " -#~ "your X session. It is recommended that you remove that service from the " -#~ "list here and restart it later at your convenience." -#~ msgstr "" -#~ "Parmi la liste de services nécessitant un redémarrage, on trouve les " -#~ "gestionnaires graphiques de session comme kdm, wdm et xdm. Si la mise à " -#~ "niveau a lieu depuis une session X démarrée par l'un de ceux-ci, le " -#~ "redémarrer terminera cette session. Il est recommandé d'enlever ce " -#~ "service de la liste et de le redémarrer plus tard." +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/gl.po b/debian/po/gl.po index 7d9401f9..a6b19df1 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-10-01 20:04+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" @@ -33,18 +33,6 @@ msgstr "" "os módulos compilados para esta versión de libpam. Revise a seguinte lista " "de scripts de init.d que se han reiniciar agora, e corríxaa se é preciso." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Hai outros servizos, como xscreensaver e xlockmore, que non se poden " -"reiniciar por vostede. Non ha poderse autenticar con estes servizos a menos " -"que os reinicie manualmente." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -89,3 +77,21 @@ msgid "" msgstr "" "Ha ter que reinicialos manualmente executando \"/etc/init.d/ start" "\"." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/it.po b/debian/po/it.po index 364d64d9..ff865094 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2008-06-01 08:38+0100\n" "Last-Translator: David Paleino \n" "Language-Team: LANGUAGE \n" @@ -35,18 +35,6 @@ msgstr "" "controllare la seguente lista, separata da spazi, di script di init.d per i " "servizi da riavviare, e correggere se necessario." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Alcuni altri servizi come xscreensaver e xlockmore non possono essere " -"riavviati automaticamente. Non sarai in grado di autenticarti a questi " -"servizi finché non saranno riavviati manualmente." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -90,3 +78,21 @@ msgid "" "start'." msgstr "" "Bisognerà avviarli manualmente eseguendo '/etc/init.d/ start'." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/ja.po b/debian/po/ja.po index ab0398c3..07e5181a 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-10-14 16:48+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Japanese \n" @@ -35,23 +35,6 @@ msgstr "" "今再起動するサービスの init.d スクリプトのリストを見て、必要なら修正してくだ" "さい。" -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"xscreensaver、gnome-screensaver、xlockmore のようなその他いくつかのサービスは" -"再起動できません。あなたがこれらを手動で再起動するまで、これらのサービスでは" -"認証ができないことになります。" - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -94,3 +77,21 @@ msgid "" msgstr "" "/etc/init.d/<サービス> start' を実行することで、これらを手動で起動する必要が" "あります。" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/nl.po b/debian/po/nl.po index 30150e3c..2e973256 100644 --- a/debian/po/nl.po +++ b/debian/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-10-26 19:55+0100\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" @@ -36,18 +36,6 @@ msgstr "" "volgende, met spaties gescheiden, lijst van init.d scripts wordt herstart. " "Gelieve deze lijst te controleren en indien nodig aan te passen." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Sommige andere diensten zoals xscreensaver en xlockmore kunnen niet " -"automatisch herstart worden. U kunt u bij deze diensten pas terug " -"authentificeren eens u ze handmatig herstart heeft." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -92,3 +80,21 @@ msgid "" msgstr "" "U dient deze diensten handmatig op te starten via het commando '/etc/init.d/" " start'." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/pt.po b/debian/po/pt.po index e0519e4d..e1fc634d 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-25 19:04+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" @@ -36,18 +36,6 @@ msgstr "" "seguinte lista de scripts init.d de serviços para serem reiniciados agora " "(separados por espaços), e corrija-a se for necessário." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Outros serviços como o xscreensaver e xlockmore não podem ser reiniciados " -"para si. Você não vai poder autenticar-se nestes serviços até que você os " -"reinicie manualmente." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -92,3 +80,21 @@ msgid "" msgstr "" "Você precisa de iniciar manualmente estes serviços fazendo '/etc/init.d/" " start'." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/pt_BR.po b/debian/po/pt_BR.po index 5a95a29e..504c0390 100644 --- a/debian/po/pt_BR.po +++ b/debian/po/pt_BR.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam_0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-26 15:53-0300\n" "Last-Translator: Eder L. Marques \n" "Language-Team: l10n Portuguese \n" @@ -37,18 +37,6 @@ msgstr "" "seguinte lista separada por espaços de seus scripts init.d para os serviços " "a serem reiniciados agora, e a corrija se necessário." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Alguns dos outros serviços como xscreensaver e xlockmore não podem ser " -"reiniciados para você. Você não será capaz de autenticar nestes serviços até " -"que os tenha reiniciado manualmente." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -93,3 +81,21 @@ msgid "" "start'." msgstr "" "Você deverá iniciá-los manualmente executando '/etc/init.d/ start'." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/ro.po b/debian/po/ro.po index 45b94711..623dd965 100644 --- a/debian/po/ro.po +++ b/debian/po/ro.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: templates\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2008-07-21 10:28+0300\n" "Last-Translator: Igor Stirbu \n" "Language-Team: Romanian \n" @@ -39,23 +39,6 @@ msgstr "" "separator spațiul și conține script-uri init.d care urmează să fie repornite " "acum; verificați-o și corectați-o, dacă este necesar." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Alte servicii, de exemplu, xscreensaver, gnome-screensaver și xlockmore nu " -"pot fi repornite automat. Autentificarea prin aceste servicii nu va mai fi " -"posibilă, dacă nu le reporniți manual." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -100,3 +83,21 @@ msgid "" msgstr "" "Trebuie să reporniți manual aceste servicii rulând „/etc/init.d/ " "start”" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/ru.po b/debian/po/ru.po index b1583d99..dc03bbbc 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.99.7.1-4\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-25 20:51+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -38,18 +38,6 @@ msgstr "" "отредактируйте (если необходимо) список (элементы разделяются пробелом) " "сценариев сервисов из init.d, которые будут перезапущены." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Есть несколько сервисов, которые нельзя перезапустить автоматически: " -"xscreensaver и xlockmore. Вы не сможете ввести правильный пароль в этих " -"сервисах, пока не перезапустите их вручную." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -92,3 +80,21 @@ msgid "" "start'." msgstr "" "Вам нужно перезапустить их вручную, выполнив '/etc/init.d/<сервис> start'." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/sk.po b/debian/po/sk.po index 0b225126..9839cfac 100644 --- a/debian/po/sk.po +++ b/debian/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: \n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -35,18 +35,6 @@ msgstr "" "nasledovný zoznam init.d skriptov (oddelené čiarkami), ktoré sa majú teraz " "reštartovať a ak je to potrebné, opravte ho." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Niektoré ďalšie služby ako xscreensaver a xlockmore nie je možné automaticky " -"reštartovať. Pokým tieto služby nereštartujete ručne, nebudete sa voči nim " -"môcť overovať." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -89,3 +77,21 @@ msgid "" "start'." msgstr "" "Budete ich musieť reštartovať ručne spustením „/etc/init.d/ start”." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/sv.po b/debian/po/sv.po index 9eb9c765..71fb6e4f 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-12-24 12:29+0100\n" "Last-Translator: Christer Andersson \n" "Language-Team: Swedish \n" @@ -35,18 +35,6 @@ msgstr "" "av init.d-skript (separerade med mellanslag) fr tjnster som nu kommer \n" "att startas om och korrigera den om ndvndigt." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Vissa andra tjnster som xscreensaver och xlockmore\n" -"kan inte startas om t dig. Du kommer inte att kunna autentisera dig fr \n" -"dessa tjnster frrn du startat om dem manuellt." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -90,3 +78,21 @@ msgid "" msgstr "" "Du behver starta om dessa manuellt genom att kra \"/etc/init.d/ " "start\"." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/templates.pot b/debian/po/templates.pot index e838c9ca..bd39ab78 100644 --- a/debian/po/templates.pot +++ b/debian/po/templates.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,15 +32,6 @@ msgid "" "needed." msgstr "" -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -77,3 +68,21 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/tr.po b/debian/po/tr.po index e4cdad77..5789f52f 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2008-07-15 01:39+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian L10n Turkish \n" @@ -38,23 +38,6 @@ msgstr "" "yeniden başlatılacak hizmetlerin init.d betiklerinin aşağıdaki boşluklarla " "ayrılmış listesini inceleyin ve gerekliyse listeyi düzeltin." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"xscreensaver, gnome-screensaver ve xlockmore gibi bazı hizmetler sizin için " -"yeniden başlatılamaz. Siz bu hizmetleri elle yeniden başlatana kadar bu " -"hizmetlere kimlik doğrulaması yapılamayacak." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -99,3 +82,21 @@ msgid "" msgstr "" "Bu hizmetleri '/etc/init.d/ start' komutunu kullanarak elinizle " "başlatmanız gerekecek." + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/vi.po b/debian/po/vi.po index 8b52293d..a053f314 100644 --- a/debian/po/vi.po +++ b/debian/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-28 23:58+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -36,23 +36,6 @@ msgstr "" "định giới bằng dấu cách theo đây hiển thị các dịch vụ cần khởi chạy lại ngay " "bây giờ, và sửa chữa nếu cần thiết." -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"Một số dịch vụ khác như xscreensaver, gnome-screensaver, và xlockmore không " -"thể được khởi chạy lại cho bạn.Bạn sẽ không thể xác thực được tới dịch vụ " -"như vậy nếu bạn chưa tự khởi chạy lại nó." - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -97,15 +80,20 @@ msgstr "" "Bạn cần phải tự khởi chạy lại chúng bằng cách chạy lệnh « /etc/init.d/" " start »." -#~ msgid "" -#~ "Among the services that require restarting are the display managers kdm, " -#~ "wdm, and xdm. If you are upgrading from within an X session started with " -#~ "one of these display managers, restarting that service will terminate " -#~ "your X session. It is recommended that you remove that service from the " -#~ "list here and restart it later at your convenience." -#~ msgstr "" -#~ "Các dịch vụ cần khởi chạy lại bao gồm trình quản lý trình bày kđm, wdm và " -#~ "xdm. Nếu bạn đang nâng cấp từ bên trong phiên chạy X được bắt đầu bằng " -#~ "một của những trình quản lý trình bày này, việc khởi chạy lại dịch vụ đó " -#~ "sẽ cũng chấm dứt phiên chạy X của bạn. Khuyên bạn gỡ bỏ dịch vụ đó khỏi " -#~ "danh sách ở đây, rồi khởi chạy lại nó về sau." +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index 796eb875..c38adc0d 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" -"POT-Creation-Date: 2008-11-15 23:51-0800\n" +"POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-25 23:06-0500\n" "Last-Translator: Ming Hua \n" "Language-Team: Debian Chinese [GB] \n" @@ -38,22 +38,6 @@ msgstr "" "启动。请复查下面这个需要重新启动的服务所对应的 init.d script 列表,script 名" "称之间以半角空格分隔。如列表有误,请直接更正。" -#. Type: string -#. Description -#: ../libpam0g.templates:1001 -#, fuzzy -#| msgid "" -#| "Some other services such as xscreensaver, gnome-screensaver, and " -#| "xlockmore cannot be restarted for you. You will not be able to " -#| "authenticate to these services until you restart them manually." -msgid "" -"Some other services such as xscreensaver and xlockmore cannot be restarted " -"for you. You will not be able to authenticate to these services until you " -"restart them manually." -msgstr "" -"无法为您重新启动如 xscreensaver、gnome-screensaver 和 xclockmore 一类的服务。" -"在您手动重新启动它们之前,将无法在这些服务中验证身份。" - #. Type: error #. Description #: ../libpam0g.templates:2001 @@ -94,3 +78,21 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "您需要运行“/etc/init.d/<服务> start”来手动启动这些服务。" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "xscreensaver and xlockmore must be restarted before upgrading" +msgstr "" + +#. Type: error +#. Description +#: ../libpam-modules.templates:1001 +msgid "" +"One or more running instances of xscreensaver or xlockmore have been " +"detected on this system. Because of incompatible library changes, the " +"upgrade of the libpam-modules package will leave you unable to authenticate " +"to these programs. You should arrange for these programs to be restarted or " +"stopped before continuing this upgrade, to avoid locking your users out of " +"their current sessions." +msgstr "" -- cgit v1.2.3 From 3e45aae1ad46e476bdff2de8c743a619343359f2 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Wed, 31 Dec 2008 11:06:37 -0800 Subject: partial update of the Spanish translation --- debian/po/es.po | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/po/es.po b/debian/po/es.po index 9b772ba3..aa2970bd 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -35,7 +35,7 @@ msgstr "" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" "PO-Revision-Date: 2007-09-29 02:28+0200\n" -"Last-Translator: Javier Fernández-Sanguino \n" +"Last-Translator: Steve Langasek \n" "Language-Team: Debian Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -112,8 +112,9 @@ msgstr "" #. Type: error #. Description #: ../libpam-modules.templates:1001 +#, fuzzy msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "Debe reiniciar xscreensaver y xlockmore antes de la actualización" #. Type: error #. Description -- cgit v1.2.3 From 78781290dc04cf3a04a87b5c28d854ab53aefd5d Mon Sep 17 00:00:00 2001 From: David Paleino Date: Wed, 31 Dec 2008 18:08:09 -0800 Subject: Updated Italian debconf translation --- debian/changelog | 2 ++ debian/po/it.po | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 11502026..c13c889e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ pam (1.0.1-5) UNRELEASED; urgency=low * Have libpam-modules Pre-Depend on ${misc:Depends}, so that we can warn users about needing to disable xscreensaver and xlockmore before libpam-modules is unpacked. Closes: #502140, LP: #256238. + * Updated debconf translations for the new template: + - Italian, thanks to David Paleino -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/it.po b/debian/po/it.po index ff865094..489fc7f5 100644 --- a/debian/po/it.po +++ b/debian/po/it.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2008-06-01 08:38+0100\n" +"PO-Revision-Date: 2009-01-01 02:41+0100\n" "Last-Translator: David Paleino \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -84,6 +84,7 @@ msgstr "" #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "" +"xscreensaver e xlockmore devono essere riavviati prima dell'aggiornamento" #. Type: error #. Description @@ -96,3 +97,10 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Una o più istanze in esecuzione di xscreensaver o xlockmore sono state " +"rilevate su questo sistema. A causa di cambiamenti incompatibili alle " +"librerie, l'aggiornamento del pacchetto libpam-modules renderà impossibile " +"l'autenticazione a questi programmi. Si dovrebbe organizzare il riavvio o " +"la chiusura di questi programmi prima di continuare con l'aggiornamento, al " +"fine di evitare che gli utenti restino bloccati al di fuori delle proprie " +"sessioni." -- cgit v1.2.3 From ebcf8d7df6a657bc337f6fc8b435ed9c6d832824 Mon Sep 17 00:00:00 2001 From: Deng Xiyue Date: Wed, 31 Dec 2008 21:00:19 -0800 Subject: Updated simplified Chinese debconf translation --- debian/changelog | 2 ++ debian/po/zh_CN.po | 12 ++++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index c13c889e..9bd36343 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ pam (1.0.1-5) UNRELEASED; urgency=low before libpam-modules is unpacked. Closes: #502140, LP: #256238. * Updated debconf translations for the new template: - Italian, thanks to David Paleino + - Simplified Chinese, thanks to Deng Xiyue + (closes: #510371) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/zh_CN.po b/debian/po/zh_CN.po index c38adc0d..c5d00a22 100644 --- a/debian/po/zh_CN.po +++ b/debian/po/zh_CN.po @@ -4,16 +4,17 @@ # Copyright (C) 2007 Steve Langasek # The translations (msgstr) are: # Copyright (C) 2007 Ming Hua +# Copyright (C) 2009 Deng Xiyue # # This file is distributed under the same license as the pam package. # msgid "" msgstr "" -"Project-Id-Version: pam 0.99.7.1-5\n" +"Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-25 23:06-0500\n" -"Last-Translator: Ming Hua \n" +"PO-Revision-Date: 2009-01-01 12:30+0800\n" +"Last-Translator: Deng Xiyue \n" "Language-Team: Debian Chinese [GB] \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -83,7 +84,7 @@ msgstr "您需要运行“/etc/init.d/<服务> start”来手动启动这些服 #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "在升级前必须重新启动 xscreensaver 和 xlockmore" #. Type: error #. Description @@ -96,3 +97,6 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"检测到一个或多个 xscreensaver 或 xlockmore 运行实例。因为不兼容的库的变化," +"libpam-module 软件包的升级将使您无法向这些程序认证。您需要在继续此升级前安排" +"这些程序重新启动或者停止运行,以避免将您的用户锁在他们的当前会话之外。" -- cgit v1.2.3 From f25750ce780aaa6987cffb2d732142382f2aec35 Mon Sep 17 00:00:00 2001 From: Martin Bagge Date: Thu, 1 Jan 2009 03:09:32 -0800 Subject: Updated Swedish debconf translation --- debian/changelog | 1 + debian/po/sv.po | 38 +++++++++++++++++++++++--------------- 2 files changed, 24 insertions(+), 15 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 9bd36343..0139ce4a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Italian, thanks to David Paleino - Simplified Chinese, thanks to Deng Xiyue (closes: #510371) + - Swedish, thanks to Martin Bagge (closes: #510379) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/sv.po b/debian/po/sv.po index 71fb6e4f..7ed5fea1 100644 --- a/debian/po/sv.po +++ b/debian/po/sv.po @@ -8,18 +8,18 @@ msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-12-24 12:29+0100\n" -"Last-Translator: Christer Andersson \n" +"PO-Revision-Date: 2009-01-01 10:59+0100\n" +"Last-Translator: Martin Bagge \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../libpam0g.templates:1001 msgid "Services to restart for PAM library upgrade:" -msgstr "Tjnster att starta om fr PAM-biblioteksuppgradering:" +msgstr "Tjänster att starta om för PAM-biblioteksuppgradering:" #. Type: string #. Description @@ -30,16 +30,16 @@ msgid "" "list of init.d scripts for services to be restarted now, and correct it if " "needed." msgstr "" -"De flesta tjnster som anvnder PAM behver startas om fr att anvnda\n" -"moduler som byggts fr denna nya libpam-version. G igenom fljande lista\n" -"av init.d-skript (separerade med mellanslag) fr tjnster som nu kommer \n" -"att startas om och korrigera den om ndvndigt." +"De flesta tjänster som använder PAM behöver startas om för att använda\n" +"moduler som byggts för denna nya libpam-version. Gå igenom följande lista\n" +"av init.d-skript (separerade med mellanslag) för tjänster som nu kommer \n" +"att startas om och korrigera den om nödvändigt." #. Type: error #. Description #: ../libpam0g.templates:2001 msgid "Display manager must be restarted manually" -msgstr "Skrmhanterare mste startas om manuellt" +msgstr "Skärmhanterare måste startas om manuellt" #. Type: error #. Description @@ -50,16 +50,16 @@ msgid "" "be terminated by this restart. You will therefore need to restart these " "services by hand before further X logins will be possible." msgstr "" -"Skrmhanterarna kdm, wdm och xdm mste startas om fr den nya versionen\n" +"Skärmhanterarna kdm, wdm och xdm måste startas om för den nya versionen\n" "av libpam men det finns X-inloggningssessioner som skulle avslutas av en\n" -"sdan omstart. Du behver drfr starta om dessa tjnster manuellt innan\n" -"ytterligare X-inloggningar r mjliga." +"sådan omstart. Du behöver därför starta om dessa tjänster manuellt innan\n" +"ytterligare X-inloggningar är möjliga." #. Type: error #. Description #: ../libpam0g.templates:3001 msgid "Failure restarting some services for PAM upgrade" -msgstr "Misslyckades med att starta om vissa tjnster fr PAM-uppgradering" +msgstr "Misslyckades med att starta om vissa tjänster för PAM-uppgradering" #. Type: error #. Description @@ -67,7 +67,7 @@ msgstr "Misslyckades med att starta om vissa tj msgid "" "The following services could not be restarted for the PAM library upgrade:" msgstr "" -"Fljande tjnster kunde inte startas om efter PAM-biblioteksuppgradering:" +"Följande tjänster kunde inte startas om efter PAM-biblioteksuppgradering:" #. Type: error #. Description @@ -76,7 +76,7 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "" -"Du behver starta om dessa manuellt genom att kra \"/etc/init.d/ " +"Du behöver starta om dessa manuellt genom att köra \"/etc/init.d/ " "start\"." #. Type: error @@ -84,6 +84,8 @@ msgstr "" #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "" +"xscreensaver och xlockmore måste startas om innan uppgraderingen kan " +"genomföras" #. Type: error #. Description @@ -96,3 +98,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"En eller flera instanser av xscreensaver eller xlockmore körs på det här " +"systemet. På grund av förändringar i biblioteket kan uppgraderingen av " +"paketet libpam-modules innebära att du inte kan identifiera dig i dessa " +"program. Programmen behöver startas om eller allra helst stängas av helt " +"före uppgraderingen, resultatet kan annars innebära att du inte kan komma åt " +"dina aktiva sessioner på systemet." -- cgit v1.2.3 From 2573b71f50987b0d9808ff6f2c3f7dc3db6db5b8 Mon Sep 17 00:00:00 2001 From: Kenshi Muto Date: Thu, 1 Jan 2009 03:12:57 -0800 Subject: Updated Japanese debconf translation --- debian/changelog | 1 + debian/po/ja.po | 11 ++++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 0139ce4a..55c03dc4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -14,6 +14,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Simplified Chinese, thanks to Deng Xiyue (closes: #510371) - Swedish, thanks to Martin Bagge (closes: #510379) + - Japanese, thanks to Kenshi Muto (closes: #510380) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/ja.po b/debian/po/ja.po index 07e5181a..0ea2674c 100644 --- a/debian/po/ja.po +++ b/debian/po/ja.po @@ -5,10 +5,10 @@ # msgid "" msgstr "" -"Project-Id-Version: pam 0.99.7.1-5\n" +"Project-Id-Version: pam 1.0.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-10-14 16:48+0900\n" +"PO-Revision-Date: 2009-01-01 19:09+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" @@ -82,7 +82,7 @@ msgstr "" #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "xscreensaver と xlockmore を更新前に再起動する必要があります" #. Type: error #. Description @@ -95,3 +95,8 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"このシステムで 1 つ以上の xscreensaver あるいは xlockmore の動作が検出されま" +"した。非互換のライブラリ変更のため、libpam-modules パッケージの更新はこれらの" +"プログラムでの認証ができなくなるという事態にあなたを追いやります。ユーザが現" +"在のセッションの外に締め出されるのを避けるため、このパッケージの更新を継続す" +"る前に、これらのプログラムを再起動するか停止するように手配すべきです。" -- cgit v1.2.3 From 19e0a30f6996f8c7793bb18f04ea7c5c08612e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Esko=20Araj=C3=A4rvi?= Date: Thu, 1 Jan 2009 03:15:08 -0800 Subject: Updated Finnish debconf translation --- debian/changelog | 1 + debian/po/fi.po | 14 ++++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 55c03dc4..2ba6a2f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low (closes: #510371) - Swedish, thanks to Martin Bagge (closes: #510379) - Japanese, thanks to Kenshi Muto (closes: #510380) + - Finnish, thanks to Esko Arajärvi (closes: #510382) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/fi.po b/debian/po/fi.po index dd4ce214..bec59a99 100644 --- a/debian/po/fi.po +++ b/debian/po/fi.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: pam 0.99.7.1-4\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-12-30 00:14+0200\n" +"PO-Revision-Date: 2009-01-01 12:27+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" @@ -50,8 +50,8 @@ msgstr "" "Näytönhallintaohjelmat kdm, wdm ja zdm tulee käynnistää uudelleen, jotta " "libpamin uusi versio tulee käyttöön. Järjestelmässä on kuitenkin aktiivisia " "X-istuntoja, jotka lopetettaisiin tämän uudelleenkäynnistyksen yhteydessä. " -"Niinpä nämä palvelut tulee käynnistää uudelleen käsin ennen kuin uusia X-" -"istuntoja voidaan avata." +"Tästä syystä nämä palvelut tulee käynnistää uudelleen käsin ennen kuin uusia " +"X-istuntoja voidaan avata." #. Type: error #. Description @@ -84,7 +84,7 @@ msgstr "" #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "xscreensaver ja xlockmore täytyy käynnistää uudelleen ennen päivitystä" #. Type: error #. Description @@ -97,3 +97,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Järjestelmässä ajetaan parhaillaan yhtä tai useampaa xscreensaverin tai " +"xlockmoren instanssia. Paketin libpam-modules kirjastot ovat muuttuneet " +"niin, että päivityksen jälkeen näihin ohjelmiin ei voitaisi " +"yhteensopivuussyistä enää tunnistautua. Nämä ohjelmat tulisi pysäyttää tai " +"käynnistää uudelleen ennen päivityksen jatkamista, jotta käyttäjät eivät " +"lukitse itseään ulos nykyisistä istunnoistaan." -- cgit v1.2.3 From c1be06cf3ea2bc94d18f53e89d7e226f683e6015 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Fernandez-Sanguino=20Pe=C3=B1a?= Date: Thu, 1 Jan 2009 10:36:22 -0800 Subject: Updated Spanish debconf translation --- debian/changelog | 2 ++ debian/po/es.po | 17 ++++++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 2ba6a2f5..bb805969 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,8 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Swedish, thanks to Martin Bagge (closes: #510379) - Japanese, thanks to Kenshi Muto (closes: #510380) - Finnish, thanks to Esko Arajärvi (closes: #510382) + - Spanish, thanks to Javier Fernandez-Sanguino Peña + (closes: #510389) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/es.po b/debian/po/es.po index aa2970bd..8a455860 100644 --- a/debian/po/es.po +++ b/debian/po/es.po @@ -5,7 +5,9 @@ # Changes: # - Initial translation # Javier Fernández-Sanguino , 2007 -# +# - Updates: +# Steve Langasek, 2008 +# Javier Fernández-Sanguino, 2009 # # Traductores, si no conoce el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este @@ -34,14 +36,14 @@ msgstr "" "Project-Id-Version: pam 0.79-4\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-29 02:28+0200\n" -"Last-Translator: Steve Langasek \n" +"PO-Revision-Date: 2009-01-01 12:22+0100\n" +"Last-Translator: Javier Fernandez-Sanguino \n" "Language-Team: Debian Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-POFile-SpellExtra: kdm gnome xscreensaver xdm xlockmore wdm start init\n" -"X-POFile-SpellExtra: screensaver PAM libpam\n" +"X-POFile-SpellExtra: screensaver PAM libpam corríjala\n" #. Type: string #. Description @@ -112,7 +114,6 @@ msgstr "" #. Type: error #. Description #: ../libpam-modules.templates:1001 -#, fuzzy msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "Debe reiniciar xscreensaver y xlockmore antes de la actualización" @@ -127,3 +128,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Se han detectado una o más instancias de los programas xscreensaver o " +"xlockmore. La actualización del paquete libpam-modules podría impedir que " +"pueda autenticarse en estos programas debido a cambios incompatibles en las " +"librerías. Debería procurar que estos programas se reinicien o se paren " +"antes de continuar con la actualización. Así evitará que los usuarios queden " +"bloqueados y no puedan reanudar sus sesiones actuales." -- cgit v1.2.3 From 9adcd532a58bf4cbbbb62e530c7365703c24e590 Mon Sep 17 00:00:00 2001 From: Marce Villarino Date: Thu, 1 Jan 2009 10:46:11 -0800 Subject: Updated Galician debconf translation --- debian/changelog | 1 + debian/po/gl.po | 27 ++++++++++++++++++--------- 2 files changed, 19 insertions(+), 9 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index bb805969..c44a725f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Finnish, thanks to Esko Arajärvi (closes: #510382) - Spanish, thanks to Javier Fernandez-Sanguino Peña (closes: #510389) + - Galician, thanks to Marce Villarino -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/gl.po b/debian/po/gl.po index a6b19df1..b9b9df8a 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -1,18 +1,21 @@ # Galician translation of pam's debconf templates # This file is distributed under the same license as the pam package. -# Jacobo Tarrio , 2007. # +# Jacobo Tarrio , 2007. +# Marce Villarino , 2009. msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-10-01 20:04+0100\n" -"Last-Translator: Jacobo Tarrio \n" +"PO-Revision-Date: 2009-01-01 12:30+0100\n" +"Last-Translator: Marce Villarino \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: string #. Description @@ -29,9 +32,9 @@ msgid "" "list of init.d scripts for services to be restarted now, and correct it if " "needed." msgstr "" -"É necesario reiniciar a maioría dos servizos que empregan PAM para empregar " -"os módulos compilados para esta versión de libpam. Revise a seguinte lista " -"de scripts de init.d que se han reiniciar agora, e corríxaa se é preciso." +"A maioría dos servizos que empregan PAM deben reiniciarse para empregar os " +"módulos compilados para esta versión de libpam. Revise a seguinte lista de " +"scripts de init.d que se han reiniciar agora, e corríxaa se é preciso." #. Type: error #. Description @@ -57,7 +60,7 @@ msgstr "" #. Description #: ../libpam0g.templates:3001 msgid "Failure restarting some services for PAM upgrade" -msgstr "Problemas ao reiniciar algúns servizos para a actualización de PAM" +msgstr "Fallou o reinicio de algúns servizos para a actualización de PAM" #. Type: error #. Description @@ -65,7 +68,7 @@ msgstr "Problemas ao reiniciar algúns servizos para a actualización de PAM" msgid "" "The following services could not be restarted for the PAM library upgrade:" msgstr "" -"Non se puido reiniciar os seguintes servizos para a actualización da " +"Non foi posíbel reiniciar os seguintes servizos para a actualización da " "biblioteca PAM:" #. Type: error @@ -82,7 +85,7 @@ msgstr "" #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "xscreensaver e xlockmore deben ser reiniciados antes da actualización" #. Type: error #. Description @@ -95,3 +98,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Detectouse que se están a executar unha ou máis instancias de xscreensaver " +"ou xlockmore no sistema. Por mor de modificacións incompatíbeis na " +"biblioteca, a actualización do paquete libpam-modules ha facer que non sexa " +"quen de autenticarse nestes programas. Deber reiniciar ou deter estes " +"programas antes de continuar coa actualización, para evitar deixar trancados " +"os usuarios fora das súas sesións de traballo actuais." -- cgit v1.2.3 From 8daec0a640837e7f733f73ef2c27ce995e39fe7d Mon Sep 17 00:00:00 2001 From: helix84 Date: Thu, 1 Jan 2009 10:57:17 -0800 Subject: Updated Slovak debconf translation --- debian/changelog | 1 + debian/po/sk.po | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index c44a725f..0124cbf7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -19,6 +19,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Spanish, thanks to Javier Fernandez-Sanguino Peña (closes: #510389) - Galician, thanks to Marce Villarino + - Slovak, thanks to helix84 (closes: #510412) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/sk.po b/debian/po/sk.po index 9839cfac..d18e19a8 100644 --- a/debian/po/sk.po +++ b/debian/po/sk.po @@ -82,7 +82,7 @@ msgstr "" #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "Pred aktualizáciou je potrebné reštartovať xscreensaver a xlockmore" #. Type: error #. Description @@ -95,3 +95,10 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Na tomto systéme bola zistená jedna alebo viacero bežiacich inštancií " +"programov xscreensaver alebo xlockmore. Z dôvodu nekomaptibilných zmien v " +"knižniciach balíka libpam-modules by ste po aktualizácii neboli schopní " +"overiť sa týmto programom. Mali by ste zariadiť, aby sa tieto programy " +"reštartovali alebo zastavili predtým, než budete v tejto aktualizácii " +"pokračovať, aby ste predišli tomu, že používatelia sa nebudú môcť prihlásiť " +"zo svojich súčasných relácií." -- cgit v1.2.3 From 3e393b161beb5e762a3fdef9107578aa66dc33f0 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Thu, 1 Jan 2009 13:55:40 -0800 Subject: minor correction to Galician translation --- debian/po/gl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/po/gl.po b/debian/po/gl.po index b9b9df8a..1f903130 100644 --- a/debian/po/gl.po +++ b/debian/po/gl.po @@ -99,8 +99,8 @@ msgid "" "their current sessions." msgstr "" "Detectouse que se están a executar unha ou máis instancias de xscreensaver " -"ou xlockmore no sistema. Por mor de modificacións incompatíbeis na " -"biblioteca, a actualización do paquete libpam-modules ha facer que non sexa " +"ou xlockmore no sistema. Por mor de modificacións incompatíbeis en " +"bibliotecas, a actualización do paquete libpam-modules ha facer que non sexa " "quen de autenticarse nestes programas. Deber reiniciar ou deter estes " "programas antes de continuar coa actualización, para evitar deixar trancados " "os usuarios fora das súas sesións de traballo actuais." -- cgit v1.2.3 From aac10e2b9392f005a4e85584e8b8c94074a9c278 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Thu, 1 Jan 2009 15:21:48 -0800 Subject: Updated Bulgarian debconf translation --- debian/changelog | 1 + debian/po/bg.po | 15 ++++++++++----- 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 0124cbf7..40b83578 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low (closes: #510389) - Galician, thanks to Marce Villarino - Slovak, thanks to helix84 (closes: #510412) + - Bulgarian, thanks to Damyan Ivanov -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/bg.po b/debian/po/bg.po index d7459ed0..a5941baa 100644 --- a/debian/po/bg.po +++ b/debian/po/bg.po @@ -2,14 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # -# Damyan Ivanov , 2007. +# Damyan Ivanov , 2007, 2009. msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: bg\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-25 14:24+0300\n" -"Last-Translator: Damyan Ivanov \n" +"PO-Revision-Date: 2009-01-02 00:17+0200\n" +"Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "Ще трябва сами да ги стартирате чрез „/e #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "xscreensaver и xlockmore трябва да бъдат рестартирани" #. Type: error #. Description @@ -93,3 +93,8 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Открити са работещи процеси xscreensaver или xlockmore. Поради несъвместими " +"промени в библиотеката, обновяването на пакета libpam-modules ще направи " +"невъзможно идентифицирането с тези програми. Трябва да осигурите " +"рестартирането или спирането на xscreensaver и xlockmore за да избегнете " +"проблеми с идентификацията при потребителите, които ги използват." -- cgit v1.2.3 From 4bac2165a57ffe01e010a6c40fb5330fff39cb68 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 3 Jan 2009 11:32:31 -0800 Subject: Updated Czech debconf translation --- debian/changelog | 2 ++ debian/po/cs.po | 11 +++++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 40b83578..c2eb94de 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,8 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Galician, thanks to Marce Villarino - Slovak, thanks to helix84 (closes: #510412) - Bulgarian, thanks to Damyan Ivanov + - Czech, thanks to Miroslav Kure < + (closes: #510608) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/cs.po b/debian/po/cs.po index 22ff62f3..52cf77b8 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -1,14 +1,14 @@ # Czech translation of pam debconf mesages. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the pam package. -# Miroslav Kure , 2007. +# Miroslav Kure , 2007-2009. # msgid "" msgstr "" "Project-Id-Version: pam\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-29 15:30+0200\n" +"PO-Revision-Date: 2009-01-03 16:49+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" @@ -84,6 +84,7 @@ msgstr "" #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "" +"Programy xscreensaver a xlockmore musí být před aktualizací restartovány" #. Type: error #. Description @@ -96,3 +97,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Zdá se, že v systému běží jedna nebo více instancí programu xscreensaver " +"resp. xlockmore. Z důvodu nekompatibilních změn v knihovně PAM se po " +"aktualizaci balíku libpam-modules nebudete moci pomocí těchto programů " +"autentizovat. To jinými slovy znamená, že se uživatelé nedostanou ke svým " +"uzamčeným sezením. Abyste tomu předešli, měli byste před aktualizací zmíněné " +"programy zastavit, nebo je ve vhodný čas restartovat." -- cgit v1.2.3 From 51cb73a267bf9174f12e6dfa97f022390ea756f9 Mon Sep 17 00:00:00 2001 From: Steve Petruzzello Date: Sat, 3 Jan 2009 11:59:07 -0800 Subject: Updated French debconf translation --- debian/changelog | 1 + debian/po/fr.po | 7 +++++++ 2 files changed, 8 insertions(+) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index c2eb94de..87fffabb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,6 +23,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Bulgarian, thanks to Damyan Ivanov - Czech, thanks to Miroslav Kure < (closes: #510608) + - French, thanks to Steve Petruzzello -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/fr.po b/debian/po/fr.po index 63050eb5..242e169e 100644 --- a/debian/po/fr.po +++ b/debian/po/fr.po @@ -87,6 +87,7 @@ msgstr "" #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "" +"xscreensaver et xlockmore doivent être redémarrés avant la mise à niveau" #. Type: error #. Description @@ -99,3 +100,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Une ou plusieurs instances de xscreensaver et/ou de xlockmore ont été " +"détectées sur le système. À cause de la modification de certaines " +"bibliothèques, la mise à niveau du paquet libpam-modules entrainera " +"l'impossibilité de s'authentifier. Avant de poursuivre la mise à niveau, ces " +"programmes doivent être redémarrés ou arrêtés pour éviter que des " +"utilisateurs ne puissent plus accéder à leurs sessions." -- cgit v1.2.3 From e23a20a04cf97fc14d73fdd183e5705bfb5d148a Mon Sep 17 00:00:00 2001 From: Sven Joachim Date: Sat, 3 Jan 2009 12:11:08 -0800 Subject: Updated German debconf translation --- debian/changelog | 1 + debian/po/de.po | 19 +++++++++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 87fffabb..32384b25 100644 --- a/debian/changelog +++ b/debian/changelog @@ -24,6 +24,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Czech, thanks to Miroslav Kure < (closes: #510608) - French, thanks to Steve Petruzzello + - German, thanks to Sven Joachim (closes: #510617) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/de.po b/debian/po/de.po index 314c721f..4b570714 100644 --- a/debian/po/de.po +++ b/debian/po/de.po @@ -1,14 +1,14 @@ # German translation of pam debconf templates -# Copyright (C) 2007 Steve Langasek +# Copyright (C) 2007, 2008 Steve Langasek # This file is distributed under the same license as the pam package. -# Sven Joachim , 2007. +# Sven Joachim , 2007, 2009. # msgid "" msgstr "" -"Project-Id-Version: pam 0.99.7.1-5\n" +"Project-Id-Version: pam 1.0.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-29 14:18+0200\n" +"PO-Revision-Date: 2009-01-03 09:17+0100\n" "Last-Translator: Sven Joachim \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgid "" "services by hand before further X logins will be possible." msgstr "" "Die Display-Manager kdm, wdm und xdm erfordern einen Neustart für die neue " -"Version von libpam, aber auf ihrem System sind X-Loginsitzungen aktiv, die " +"Version von libpam, aber auf Ihrem System sind X-Login-Sitzungen aktiv, die " "von diesem Neustart beendet werden würden. Sie müssen diese Dienste daher " "von Hand neu starten, bevor Logins unter X wieder möglich sind." @@ -85,7 +85,7 @@ msgstr "" #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "Xscreensaver und xlockmore müssen vor dem Upgrade neu gestartet werden" #. Type: error #. Description @@ -98,3 +98,10 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Eine oder mehrere laufende Instanzen von xscreensaver oder xlockmore sind " +"auf diesem System entdeckt worden. Aufgrund inkompatibler Änderungen in " +"Bibliotheken wird das Upgrade des libpam-modules-Paketes Sie außerstande " +"setzen, sich gegenüber diesen Programmen zu authentifizieren. Sie sollten " +"dafür sorgen, dass diese Programme neu gestartet oder beendet werden, bevor " +"Sie dieses Upgrade fortsetzen, damit Ihre Benutzer nicht aus ihren laufenden " +"Sitzungen ausgesperrt werden." -- cgit v1.2.3 From d13f6c6c0fcbebff986e73033bada009fc62ff77 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sun, 4 Jan 2009 02:59:29 -0800 Subject: minor correction to Czech translation --- debian/po/cs.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/po/cs.po b/debian/po/cs.po index 52cf77b8..25fa8d0c 100644 --- a/debian/po/cs.po +++ b/debian/po/cs.po @@ -98,7 +98,7 @@ msgid "" "their current sessions." msgstr "" "Zdá se, že v systému běží jedna nebo více instancí programu xscreensaver " -"resp. xlockmore. Z důvodu nekompatibilních změn v knihovně PAM se po " +"resp. xlockmore. Z důvodu nekompatibilních změn v knihovnách se po " "aktualizaci balíku libpam-modules nebudete moci pomocí těchto programů " "autentizovat. To jinými slovy znamená, že se uživatelé nedostanou ke svým " "uzamčeným sezením. Abyste tomu předešli, měli byste před aktualizací zmíněné " -- cgit v1.2.3 From ddf041cbf690c0fb784744caeb81f8d316e7eaa7 Mon Sep 17 00:00:00 2001 From: Mert Dirik Date: Sun, 4 Jan 2009 12:16:50 -0800 Subject: Updated Turkish debconf translation --- debian/changelog | 1 + debian/po/tr.po | 14 ++++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 32384b25..56928136 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low (closes: #510608) - French, thanks to Steve Petruzzello - German, thanks to Sven Joachim (closes: #510617) + - Turkish, thanks to Mert Dirik (closes: #510707) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/tr.po b/debian/po/tr.po index 5789f52f..0027cacc 100644 --- a/debian/po/tr.po +++ b/debian/po/tr.po @@ -1,5 +1,5 @@ # Debconf questions for the Linux-PAM package. -# Copyright (C) 2008 Mert Dirik +# Copyright (C) 2007 Steve Langasek # This file is distributed under the same license as the pam package. # Mert Dirik , 2008. # @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pam 0.99.7.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2008-07-15 01:39+0200\n" +"PO-Revision-Date: 2009-01-01 19:20+0200\n" "Last-Translator: Mert Dirik \n" "Language-Team: Debian L10n Turkish \n" "MIME-Version: 1.0\n" @@ -35,8 +35,8 @@ msgid "" msgstr "" "PAM kullanan çoğu hizmet, libpam'ın bu yeni sürümü için derlenmiş " "modüllerden yararlanabilmek için yeniden başlatılmak zorunda. Lütfen " -"yeniden başlatılacak hizmetlerin init.d betiklerinin aşağıdaki boşluklarla " -"ayrılmış listesini inceleyin ve gerekliyse listeyi düzeltin." +"yeniden başlatılacak hizmetlere ilişkin init.d betiklerinin boşluklarla " +"ayrılmış aşağıdaki listesini inceleyin ve gerekliyse listeyi düzeltin." #. Type: error #. Description @@ -88,6 +88,7 @@ msgstr "" #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "" +"Yükseltme işleminden önce xscreensaver ve xlockmore yeniden başlatılmalı" #. Type: error #. Description @@ -100,3 +101,8 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Sisteminizde çalışmakta olan birden fazla xscreensaver ya da xlockmore " +"örneğine rastlandı. Uyumsuz kitaplık değişiklikleri yüzünden, libpam-modules " +"paketinin yükseltilmesi bu programlarda kimlik doğrulamasını olanaksız hale " +"getirecek. Mevcut oturumların kilitlenmesi önlemek için, yükseltme işlemine " +"devam etmeden önce bu programları durdurmalı ya da yeniden başlatmalısınız." -- cgit v1.2.3 From a829f363c99dcdf365e14baae146f823189e695a Mon Sep 17 00:00:00 2001 From: Yuri Kozlov Date: Sun, 4 Jan 2009 12:27:17 -0800 Subject: Updated Russian debconf translation --- debian/changelog | 1 + debian/po/ru.po | 34 ++++++++++++++++++++-------------- 2 files changed, 21 insertions(+), 14 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 56928136..90f3f385 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low (closes: #510608) - French, thanks to Steve Petruzzello - German, thanks to Sven Joachim (closes: #510617) + - Russian, thanks to Yuri Kozlov (closes: #510701) - Turkish, thanks to Mert Dirik (closes: #510707) -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 diff --git a/debian/po/ru.po b/debian/po/ru.po index dc03bbbc..fe3e344b 100644 --- a/debian/po/ru.po +++ b/debian/po/ru.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2007. +# Yuri Kozlov , 2009. msgid "" msgstr "" -"Project-Id-Version: 0.99.7.1-4\n" +"Project-Id-Version: pam 1.0.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-25 20:51+0400\n" -"Last-Translator: Yuri Kozlov \n" +"PO-Revision-Date: 2009-01-01 13:11+0300\n" +"Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +23,7 @@ msgstr "" #. Description #: ../libpam0g.templates:1001 msgid "Services to restart for PAM library upgrade:" -msgstr "Сервисы, которые будут перезапущены после обновления библиотеки PAM:" +msgstr "Службы, которые будут перезапущены после обновления библиотеки PAM:" #. Type: string #. Description @@ -34,9 +35,9 @@ msgid "" "needed." msgstr "" "Чтобы задействовать новые версии модулей из libpam нужно перезапустить " -"большинство сервисов, использующих PAM. Внимательно просмотрите и " -"отредактируйте (если необходимо) список (элементы разделяются пробелом) " -"сценариев сервисов из init.d, которые будут перезапущены." +"большинство служб, использующих PAM. Внимательно просмотрите и при " +"необходимости отредактируйте список (элементы разделяются пробелом) " +"сценариев из init.d для служб, которые будут перезапущены." #. Type: error #. Description @@ -54,15 +55,15 @@ msgid "" "services by hand before further X logins will be possible." msgstr "" "Для работы с новой версией libpam программам для входа в систему kdm, wdm и " -"xdm требуется перезапуск, но это прервёт все запущенные X-сессии. Поэтому " -"вам нужно перезапустить эти сервисы вручную для того, чтобы можно было снова " +"xdm требуется перезапуск, но это прервёт все запущенные X-сеансы. Поэтому " +"вам нужно перезапустить эти службы вручную для того, чтобы можно было снова " "входить в систему через X." #. Type: error #. Description #: ../libpam0g.templates:3001 msgid "Failure restarting some services for PAM upgrade" -msgstr "При обновлении PAM перезапуск некоторых сервисов завершился неудачно" +msgstr "При обновлении PAM перезапуск некоторых служб завершился неудачно" #. Type: error #. Description @@ -70,7 +71,7 @@ msgstr "При обновлении PAM перезапуск некоторых msgid "" "The following services could not be restarted for the PAM library upgrade:" msgstr "" -"При обновлении библиотеки PAM не удалось перезапустить следующие сервисы:" +"При обновлении библиотеки PAM не удалось перезапустить следующие службы:" #. Type: error #. Description @@ -78,14 +79,13 @@ msgstr "" msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." -msgstr "" -"Вам нужно перезапустить их вручную, выполнив '/etc/init.d/<сервис> start'." +msgstr "Вам нужно запустить их вручную, выполнив '/etc/init.d/<служба> start'." #. Type: error #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "Перед обновлением требуется перезапустить xscreensaver и xlockmore" #. Type: error #. Description @@ -98,3 +98,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Обнаружено, что в системе запущен один или несколько процессов xscreensaver " +"или xlockmore. Из-за изменений в библиотеке, обновление пакета libpam-" +"modules приведёт к невозможности выполнения аутентификации из этих программ. " +"Перед тем как продолжить обновление вам нужно перезапустить или остановить " +"работу этих программ, чтобы избежать блокировки пользователей в их активных " +"сеансах." -- cgit v1.2.3 From 156d1a36b1082ebe83498c57ddba5b610d388f9f Mon Sep 17 00:00:00 2001 From: Piarres Beobide Date: Sun, 4 Jan 2009 12:31:23 -0800 Subject: Updated Basque debconf translation --- debian/changelog | 2 ++ debian/po/eu.po | 31 +++++++++++++++++++++---------- 2 files changed, 23 insertions(+), 10 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 90f3f385..8ef18594 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,8 @@ pam (1.0.1-5) UNRELEASED; urgency=low (closes: #510608) - French, thanks to Steve Petruzzello - German, thanks to Sven Joachim (closes: #510617) + - Basque, thanks to Piarres Beobide + (closes: #510699) - Russian, thanks to Yuri Kozlov (closes: #510701) - Turkish, thanks to Mert Dirik (closes: #510707) diff --git a/debian/po/eu.po b/debian/po/eu.po index c60386eb..3937e6fa 100644 --- a/debian/po/eu.po +++ b/debian/po/eu.po @@ -1,21 +1,23 @@ -# translation of eu.po to Euskara +# translation of pam_1.0.1-5_eu.po to Basque # Debconf questions for the Linux-PAM package. # Copyright (C) 2007 Steve Langasek # This file is distributed under the same license as the pam package. # # Piarres Beobide , 2007, 2008. +# Iñaki Larrañaga Murgoitio , 2009. msgid "" msgstr "" -"Project-Id-Version: eu\n" +"Project-Id-Version: pam_1.0.1-5_eu\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2008-04-02 14:26+0200\n" -"Last-Translator: Piarres Beobide \n" -"Language-Team: Euskara \n" +"PO-Revision-Date: 2009-01-02 12:30+0100\n" +"Last-Translator: Iñaki Larrañaga Murgoitio \n" +"Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: string #. Description @@ -33,7 +35,7 @@ msgid "" "list of init.d scripts for services to be restarted now, and correct it if " "needed." msgstr "" -"PAM erabiltzen duten zerbitzu gehieneak berrabiarazi egin behar dira libpam " +"PAM erabiltzen duten zerbitzu gehienak berrabiarazi egin behar dira libpam " "bertsio honetako moduluak erabiltzeko. Mesedez gainbegiratu berrabiaraziko " "diren hurrengo zuriunez bereiziriko init.d script zerrenda hau eta zuzendu " "behar izanez gero." @@ -62,7 +64,7 @@ msgstr "" #. Description #: ../libpam0g.templates:3001 msgid "Failure restarting some services for PAM upgrade" -msgstr "Huts PAM bertsio-berritzerako zenbait zerbitzu berrabiaraztean." +msgstr "Huts egin du zenbait zerbitzu berrabiaraztean PAM bertsio-berritzeko." #. Type: error #. Description @@ -70,7 +72,7 @@ msgstr "Huts PAM bertsio-berritzerako zenbait zerbitzu berrabiaraztean." msgid "" "The following services could not be restarted for the PAM library upgrade:" msgstr "" -"Hurrengo zerbitzuak ezin izan dira berrabiarazi PAM liburutegi bertsio-" +"Hurrengo zerbitzuak ezin izan dira berrabiarazi PAM liburutegia bertsio-" "berritzean:" #. Type: error @@ -80,14 +82,16 @@ msgid "" "You will need to start these manually by running '/etc/init.d/ " "start'." msgstr "" -"Hauek zure kabuz berrabiarazi beharko dituzu '/etc/init.d/ start' " -"eginaz." +"Hauek eskuz berrabiarazi beharko dituzu '/etc/init.d/ start' " +"exekutatuz." #. Type: error #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" msgstr "" +"xscreensaver eta xlockmore berrabiarazi egin behar dira bertsio-berritu " +"aurretik." #. Type: error #. Description @@ -100,3 +104,10 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"xscreensaver edo xlockmore-ren instantzia bat edo gehiago exekutatzen " +"dagoela detektatu da sisteman. Liburutegiaren aldaketaren " +"bateraezintasunagatik libpam-modules paketearen bertsio-berritzeak programa " +"horiekin ezin autentifikatzea eragingo dizu. Programa horiek berrabiarazi " +"edop gelditu egin beharko zenituzke bertsio-berritzearekin jarraitu " +"aurretik, sistemako erabiltzaileak beraien uneko saioan blokeatzea " +"saihesteko." -- cgit v1.2.3 From b9e623a14012d05618a1989ba7018109bab25953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Am=C3=A9rico=20Monteiro?= Date: Sun, 4 Jan 2009 13:11:58 -0800 Subject: Updated Portuguese debconf translation --- debian/changelog | 1 + debian/po/pt.po | 14 ++++++++++---- 2 files changed, 11 insertions(+), 4 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 8ef18594..511490e9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Italian, thanks to David Paleino - Simplified Chinese, thanks to Deng Xiyue (closes: #510371) + - Portuguese, thanks to Américo Monteiro - Swedish, thanks to Martin Bagge (closes: #510379) - Japanese, thanks to Kenshi Muto (closes: #510380) - Finnish, thanks to Esko Arajärvi (closes: #510382) diff --git a/debian/po/pt.po b/debian/po/pt.po index e1fc634d..c3730e8c 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -2,13 +2,13 @@ # Copyright (C) 2007 Américo Monteiro # This file is distributed under the same license as the pam package. # -# Américo Monteiro , 2007. +# Américo Monteiro , 2007, 2009. msgid "" msgstr "" -"Project-Id-Version: pam 0.99.7.1-5\n" +"Project-Id-Version: pam 1.0.1-5\n" "Report-Msgid-Bugs-To: pam@packages.debian.org\n" "POT-Creation-Date: 2008-12-28 01:17-0600\n" -"PO-Revision-Date: 2007-09-25 19:04+0100\n" +"PO-Revision-Date: 2009-01-01 02:01+0000\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "" #. Description #: ../libpam-modules.templates:1001 msgid "xscreensaver and xlockmore must be restarted before upgrading" -msgstr "" +msgstr "xscreensaver e xlockmore têm que ser reiniciados antes da actualização" #. Type: error #. Description @@ -98,3 +98,9 @@ msgid "" "stopped before continuing this upgrade, to avoid locking your users out of " "their current sessions." msgstr "" +"Uma ou mais instâncias do xscreensaver ou xlockmore foram detectadas a " +"funcionar neste sistema. Devido a alterações incompatíveis da biblioteca, a " +"actualização do pacote libpam-modules irá deixá-lo incapaz de se autenticar " +"nestes programas. Você deve fazer com que estes programas sejam reiniciados " +"ou parados antes de continuar com esta actualização, para evitar trancar os " +"seus utilizadores fora das suas sessões correntes." -- cgit v1.2.3 From 300b59b443f840a256603f5c967d71bf65a80c42 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sun, 4 Jan 2009 16:02:54 -0800 Subject: minor correction to Portuguese translation --- debian/po/pt.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debian') diff --git a/debian/po/pt.po b/debian/po/pt.po index c3730e8c..a4edf1ff 100644 --- a/debian/po/pt.po +++ b/debian/po/pt.po @@ -99,7 +99,7 @@ msgid "" "their current sessions." msgstr "" "Uma ou mais instâncias do xscreensaver ou xlockmore foram detectadas a " -"funcionar neste sistema. Devido a alterações incompatíveis da biblioteca, a " +"funcionar neste sistema. Devido a alterações incompatíveis em bibliotecas, a " "actualização do pacote libpam-modules irá deixá-lo incapaz de se autenticar " "nestes programas. Você deve fazer com que estes programas sejam reiniciados " "ou parados antes de continuar com esta actualização, para evitar trancar os " -- cgit v1.2.3 From 1f752eafdc9df35b44a2e44a0a0aa793641365b7 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Tue, 6 Jan 2009 00:07:38 -0800 Subject: mark for upload --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 511490e9..9c384356 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pam (1.0.1-5) UNRELEASED; urgency=low +pam (1.0.1-5) unstable; urgency=low * Build-conflict with libxcrypt-dev, which otherwise pulls libxcrypt in as a dependency of libpam-modules if it's installed during the build. @@ -31,7 +31,7 @@ pam (1.0.1-5) UNRELEASED; urgency=low - Russian, thanks to Yuri Kozlov (closes: #510701) - Turkish, thanks to Mert Dirik (closes: #510707) - -- Steve Langasek Fri, 29 Aug 2008 13:08:41 -0700 + -- Steve Langasek Tue, 06 Jan 2009 00:05:13 -0800 pam (1.0.1-4) unstable; urgency=high -- cgit v1.2.3