From 27f85de90b0882c93ebd4814bdae9f8936ee49ee1bc7894277744b813b855e91 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Wed, 6 May 2009 16:50:00 +0000 Subject: [PATCH] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/pam?expand=0&rev=29 --- Linux-PAM-1.0.91-docs.tar.bz2 | 3 - Linux-PAM-1.0.91.tar.bz2 | 3 - Linux-PAM-1.0.92-docs.tar.bz2 | 3 + Linux-PAM-1.0.92.tar.bz2 | 3 + cvs.diff | 2333 --------------------------------- pam.changes | 8 + pam.spec | 17 +- 7 files changed, 24 insertions(+), 2346 deletions(-) delete mode 100644 Linux-PAM-1.0.91-docs.tar.bz2 delete mode 100644 Linux-PAM-1.0.91.tar.bz2 create mode 100644 Linux-PAM-1.0.92-docs.tar.bz2 create mode 100644 Linux-PAM-1.0.92.tar.bz2 delete mode 100644 cvs.diff diff --git a/Linux-PAM-1.0.91-docs.tar.bz2 b/Linux-PAM-1.0.91-docs.tar.bz2 deleted file mode 100644 index 4dd19e1..0000000 --- a/Linux-PAM-1.0.91-docs.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3c6e610cae207e7af87ab471228ab3311536a27f061d86dd0c75413ae8f96d09 -size 498156 diff --git a/Linux-PAM-1.0.91.tar.bz2 b/Linux-PAM-1.0.91.tar.bz2 deleted file mode 100644 index 2c3765c..0000000 --- a/Linux-PAM-1.0.91.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b729820717cbf07a7ab07672180d070ce384ac923cc2129904fdc975342a35c4 -size 1112332 diff --git a/Linux-PAM-1.0.92-docs.tar.bz2 b/Linux-PAM-1.0.92-docs.tar.bz2 new file mode 100644 index 0000000..2c99e7b --- /dev/null +++ b/Linux-PAM-1.0.92-docs.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1abb9e83e3108f1edc93408fba753416fe69bb5968871250a3fafa47522eb6a1 +size 494348 diff --git a/Linux-PAM-1.0.92.tar.bz2 b/Linux-PAM-1.0.92.tar.bz2 new file mode 100644 index 0000000..5ff21d7 --- /dev/null +++ b/Linux-PAM-1.0.92.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdcd577e41642ee7b3a9712488b70adebb295e756fcc0fc45a441c5014a7b0fc +size 1102731 diff --git a/cvs.diff b/cvs.diff deleted file mode 100644 index a9517a1..0000000 --- a/cvs.diff +++ /dev/null @@ -1,2333 +0,0 @@ -Index: libpamc/include/security/pam_client.h -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/libpamc/include/security/pam_client.h,v -retrieving revision 1.7 -diff -u -r1.7 pam_client.h ---- libpamc/include/security/pam_client.h 20 May 2005 14:58:58 -0000 1.7 -+++ libpamc/include/security/pam_client.h 27 Mar 2009 10:11:14 -0000 -@@ -9,8 +9,8 @@ - #ifndef PAM_CLIENT_H - #define PAM_CLIENT_H - --#ifdef __cplusplus --extern "C" { -+#ifdef __cplusplus -+extern "C" { - #endif /* def __cplusplus */ - - #include -@@ -74,8 +74,12 @@ - #include - - #ifndef PAM_BP_ASSERT --# define PAM_BP_ASSERT(x) do { printf(__FILE__ "(%d): %s\n", \ -- __LINE__, x) ; exit(1); } while (0) -+# ifdef NDEBUG -+# define PAM_BP_ASSERT(x) do {} while (0) -+# else -+# define PAM_BP_ASSERT(x) do { printf(__FILE__ "(%d): %s\n", \ -+ __LINE__, x) ; exit(1); } while (0) -+# endif /* NDEBUG */ - #endif /* PAM_BP_ASSERT */ - - #ifndef PAM_BP_CALLOC -Index: modules/pam_ftp/pam_ftp.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_ftp/pam_ftp.c,v -retrieving revision 1.12 -diff -u -r1.12 pam_ftp.c ---- modules/pam_ftp/pam_ftp.c 5 Mar 2008 20:21:38 -0000 1.12 -+++ modules/pam_ftp/pam_ftp.c 27 Mar 2009 10:11:14 -0000 -@@ -1,7 +1,7 @@ - /* pam_ftp module */ - - /* -- * $Id: pam_ftp.c,v 1.12 2008/03/05 20:21:38 t8m Exp $ -+ * $Id: pam_ftp.c,v 1.13 2009/03/25 10:54:23 kukuk Exp $ - * - * Written by Andrew Morgan 1996/3/11 - * -@@ -79,7 +79,7 @@ - if (list && *list) { - const char *l; - char *list_copy, *x; -- char *sptr; -+ char *sptr = NULL; - - list_copy = x_strdup(list); - x = list_copy; -@@ -172,7 +172,7 @@ - /* XXX: Some effort should be made to verify this email address! */ - - if (!(ctrl & PAM_IGNORE_EMAIL)) { -- char *sptr; -+ char *sptr = NULL; - token = strtok_r(resp, "@", &sptr); - retval = pam_set_item(pamh, PAM_RUSER, token); - -Index: modules/pam_issue/pam_issue.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_issue/pam_issue.c,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- modules/pam_issue/pam_issue.c 19 Sep 2005 16:47:20 -0000 1.14 -+++ modules/pam_issue/pam_issue.c 25 Mar 2009 10:54:23 -0000 1.15 -@@ -145,7 +145,7 @@ - return PAM_BUF_ERR; - } - -- if (fread(issue, 1, st.st_size, fp) != st.st_size) { -+ if ((off_t)fread(issue, 1, st.st_size, fp) != st.st_size) { - pam_syslog(pamh, LOG_ERR, "read error: %m"); - _pam_drop(issue); - return PAM_SERVICE_ERR; -Index: modules/pam_mkhomedir/pam_mkhomedir.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_mkhomedir/pam_mkhomedir.c,v -retrieving revision 1.27 -retrieving revision 1.28 -diff -u -r1.27 -r1.28 ---- modules/pam_mkhomedir/pam_mkhomedir.c 3 Mar 2009 08:10:53 -0000 1.27 -+++ modules/pam_mkhomedir/pam_mkhomedir.c 25 Mar 2009 10:54:23 -0000 1.28 -@@ -64,50 +64,52 @@ - #define MKHOMEDIR_DEBUG 020 /* be verbose about things */ - #define MKHOMEDIR_QUIET 040 /* keep quiet about things */ - --static char UMask[16] = "0022"; --static char SkelDir[BUFSIZ] = "/etc/skel"; /* THIS MODULE IS NOT THREAD SAFE */ -+struct options_t { -+ int ctrl; -+ const char *umask; -+ const char *skeldir; -+}; -+typedef struct options_t options_t; - --static int --_pam_parse (const pam_handle_t *pamh, int flags, int argc, const char **argv) -+static void -+_pam_parse (const pam_handle_t *pamh, int flags, int argc, const char **argv, -+ options_t *opt) - { -- int ctrl = 0; -+ opt->ctrl = 0; -+ opt->umask = "0022"; -+ opt->skeldir = "/etc/skel"; - - /* does the appliction require quiet? */ - if ((flags & PAM_SILENT) == PAM_SILENT) -- ctrl |= MKHOMEDIR_QUIET; -+ opt->ctrl |= MKHOMEDIR_QUIET; - - /* step through arguments */ - for (; argc-- > 0; ++argv) - { - if (!strcmp(*argv, "silent")) { -- ctrl |= MKHOMEDIR_QUIET; -+ opt->ctrl |= MKHOMEDIR_QUIET; - } else if (!strcmp(*argv, "debug")) { -- ctrl |= MKHOMEDIR_DEBUG; -+ opt->ctrl |= MKHOMEDIR_DEBUG; - } else if (!strncmp(*argv,"umask=",6)) { -- strncpy(SkelDir,*argv+6,sizeof(UMask)); -- UMask[sizeof(UMask)-1] = '\0'; -+ opt->umask = *argv+6; - } else if (!strncmp(*argv,"skel=",5)) { -- strncpy(SkelDir,*argv+5,sizeof(SkelDir)); -- SkelDir[sizeof(SkelDir)-1] = '\0'; -+ opt->skeldir = *argv+5; - } else { - pam_syslog(pamh, LOG_ERR, "unknown option: %s", *argv); - } - } -- -- D(("ctrl = %o", ctrl)); -- return ctrl; - } - - /* Do the actual work of creating a home dir */ - static int --create_homedir (pam_handle_t *pamh, int ctrl, -+create_homedir (pam_handle_t *pamh, options_t *opt, - const struct passwd *pwd) - { - int retval, child; - struct sigaction newsa, oldsa; - - /* Mention what is happening, if the notification fails that is OK */ -- if (!(ctrl & MKHOMEDIR_QUIET)) -+ if (!(opt->ctrl & MKHOMEDIR_QUIET)) - pam_info(pamh, _("Creating directory '%s'."), pwd->pw_dir); - - -@@ -121,8 +123,8 @@ - memset(&newsa, '\0', sizeof(newsa)); - newsa.sa_handler = SIG_DFL; - sigaction(SIGCHLD, &newsa, &oldsa); -- -- if (ctrl & MKHOMEDIR_DEBUG) { -+ -+ if (opt->ctrl & MKHOMEDIR_DEBUG) { - pam_syslog(pamh, LOG_DEBUG, "Executing mkhomedir_helper."); - } - -@@ -145,8 +147,8 @@ - /* exec the mkhomedir helper */ - args[0] = x_strdup(MKHOMEDIR_HELPER); - args[1] = pwd->pw_name; -- args[2] = UMask; -- args[3] = SkelDir; -+ args[2] = x_strdup(opt->umask); -+ args[3] = x_strdup(opt->skeldir); - - execve(MKHOMEDIR_HELPER, args, envp); - -@@ -173,11 +175,11 @@ - - sigaction(SIGCHLD, &oldsa, NULL); /* restore old signal handler */ - -- if (ctrl & MKHOMEDIR_DEBUG) { -+ if (opt->ctrl & MKHOMEDIR_DEBUG) { - pam_syslog(pamh, LOG_DEBUG, "mkhomedir_helper returned %d", retval); - } - -- if (retval != PAM_SUCCESS && !(ctrl & MKHOMEDIR_QUIET)) { -+ if (retval != PAM_SUCCESS && !(opt->ctrl & MKHOMEDIR_QUIET)) { - pam_error(pamh, _("Unable to create and initialize directory '%s'."), - pwd->pw_dir); - } -@@ -192,13 +194,14 @@ - pam_sm_open_session (pam_handle_t *pamh, int flags, int argc, - const char **argv) - { -- int retval, ctrl; -+ int retval; -+ options_t opt; - const void *user; - const struct passwd *pwd; - struct stat St; - - /* Parse the flag values */ -- ctrl = _pam_parse(pamh, flags, argc, argv); -+ _pam_parse(pamh, flags, argc, argv, &opt); - - /* Determine the user name so we can get the home directory */ - retval = pam_get_item(pamh, PAM_USER, &user); -@@ -220,14 +223,14 @@ - /* Stat the home directory, if something exists then we assume it is - correct and return a success*/ - if (stat(pwd->pw_dir, &St) == 0) { -- if (ctrl & MKHOMEDIR_DEBUG) { -+ if (opt.ctrl & MKHOMEDIR_DEBUG) { - pam_syslog(pamh, LOG_DEBUG, "Home directory %s already exists.", - pwd->pw_dir); - } - return PAM_SUCCESS; - } - -- return create_homedir(pamh, ctrl, pwd); -+ return create_homedir(pamh, &opt, pwd); - } - - /* Ignore */ -Index: modules/pam_pwhistory/opasswd.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_pwhistory/opasswd.c,v -retrieving revision 1.2 -retrieving revision 1.3 -diff -u -r1.2 -r1.3 ---- modules/pam_pwhistory/opasswd.c 25 Nov 2008 14:29:41 -0000 1.2 -+++ modules/pam_pwhistory/opasswd.c 24 Mar 2009 16:33:21 -0000 1.3 -@@ -452,6 +452,15 @@ - goto error_opasswd; - } - -+ if (fflush (newpf) != 0 || fsync (fileno (newpf)) != 0) -+ { -+ pam_syslog (pamh, LOG_ERR, -+ "Error while syncing temporary opasswd file: %m"); -+ retval = PAM_AUTHTOK_ERR; -+ fclose (newpf); -+ goto error_opasswd; -+ } -+ - if (fclose (newpf) != 0) - { - pam_syslog (pamh, LOG_ERR, -Index: modules/pam_timestamp/pam_timestamp.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_timestamp/pam_timestamp.c,v -retrieving revision 1.1 -diff -u -r1.1 pam_timestamp.c ---- modules/pam_timestamp/pam_timestamp.c 28 Nov 2008 14:29:12 -0000 1.1 -+++ modules/pam_timestamp/pam_timestamp.c 27 Mar 2009 10:11:14 -0000 -@@ -194,7 +194,7 @@ - } - - static int --check_login_time(const char *ruser, time_t timestamp) -+check_login_time(const char *ruser, time_t timestamp) - { - struct utmp utbuf, *ut; - time_t oldest_login = 0; -@@ -237,14 +237,14 @@ - if (pwd != NULL) { - ruser = pwd->pw_name; - } -- } -+ } - if (ruser == NULL || strlen(ruser) >= ruserbuflen) { - *ruserbuf = '\0'; - return -1; - } - strcpy(ruserbuf, ruser); - return 0; --} -+} - - /* Get the path to the timestamp to use. */ - static int -@@ -299,7 +299,7 @@ - tty = NULL; - } else { - tty = void_tty; -- } -+ } - if ((tty == NULL) || (strlen(tty) == 0)) { - tty = ttyname(STDIN_FILENO); - if ((tty == NULL) || (strlen(tty) == 0)) { -@@ -413,7 +413,7 @@ - int count; - void *mac; - size_t maclen; -- char ruser[BUFLEN]; -+ char ruser[BUFLEN]; - - /* Check that the file is owned by the superuser. */ - if ((st.st_uid != 0) || (st.st_gid != 0)) { -@@ -483,7 +483,7 @@ - free(mac); - memmove(&then, message + strlen(path) + 1, sizeof(then)); - free(message); -- -+ - /* Check oldest login against timestamp */ - if (get_ruser(pamh, ruser, sizeof(ruser))) - { -@@ -565,7 +565,14 @@ - subdir[i] = '\0'; - if (mkdir(subdir, 0700) == 0) { - /* Attempt to set the owner to the superuser. */ -- lchown(subdir, 0, 0); -+ if (lchown(subdir, 0, 0) != 0) { -+ if (debug) { -+ pam_syslog(pamh, LOG_DEBUG, -+ "error setting permissions on `%s': %m", -+ subdir); -+ } -+ return PAM_SESSION_ERR; -+ } - } else { - if (errno != EEXIST) { - if (debug) { -@@ -617,7 +624,15 @@ - } - - /* Attempt to set the owner to the superuser. */ -- fchown(fd, 0, 0); -+ if (fchown(fd, 0, 0) != 0) { -+ if (debug) { -+ pam_syslog(pamh, LOG_DEBUG, -+ "error setting ownership of `%s': %m", -+ path); -+ } -+ return PAM_SESSION_ERR; -+ } -+ - - /* Write the timestamp to the file. */ - if (write(fd, text, p - text) != p - text) { -Index: modules/pam_unix/passverify.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_unix/passverify.c,v -retrieving revision 1.10 -retrieving revision 1.12 -diff -u -r1.10 -r1.12 ---- modules/pam_unix/passverify.c 27 Feb 2009 14:29:40 -0000 1.10 -+++ modules/pam_unix/passverify.c 25 Mar 2009 10:54:23 -0000 1.12 -@@ -680,8 +680,13 @@ - } - } - -+ if (fflush(pwfile) || fsync(fileno(pwfile))) { -+ D(("fflush or fsync error writing entries to old passwords file: %m")); -+ err = 1; -+ } -+ - if (fclose(pwfile)) { -- D(("error writing entries to old passwords file: %m")); -+ D(("fclose error writing entries to old passwords file: %m")); - err = 1; - } - -@@ -795,8 +800,13 @@ - } - fclose(opwfile); - -+ if (fflush(pwfile) || fsync(fileno(pwfile))) { -+ D(("fflush or fsync error writing entries to password file: %m")); -+ err = 1; -+ } -+ - if (fclose(pwfile)) { -- D(("error writing entries to password file: %m")); -+ D(("fclose error writing entries to password file: %m")); - err = 1; - } - -@@ -916,8 +926,13 @@ - } - fclose(opwfile); - -+ if (fflush(pwfile) || fsync(fileno(pwfile))) { -+ D(("fflush or fsync error writing entries to shadow file: %m")); -+ err = 1; -+ } -+ - if (fclose(pwfile)) { -- D(("error writing entries to shadow file: %m")); -+ D(("fclose error writing entries to shadow file: %m")); - err = 1; - } - -@@ -996,7 +1011,7 @@ - /* emulate the behaviour of the SA_RESETHAND flag */ - if ( sig == SIGILL || sig == SIGTRAP || sig == SIGBUS || sig = SIGSERV ) { - struct sigaction sa; -- memset(&sa, '\0, sizeof(sa)); -+ memset(&sa, '\0', sizeof(sa)); - sa.sa_handler = SIG_DFL; - sigaction(sig, &sa, NULL); - } -Index: modules/pam_unix/support.c -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/modules/pam_unix/support.c,v -retrieving revision 1.52 -diff -u -r1.52 support.c ---- modules/pam_unix/support.c 3 Mar 2009 08:10:53 -0000 1.52 -+++ modules/pam_unix/support.c 27 Mar 2009 10:11:14 -0000 -@@ -120,13 +120,13 @@ - D(("DISALLOW_NULL_AUTHTOK")); - set(UNIX__NONULL, ctrl); - } -- -+ - /* Set default rounds for blowfish */ - if (on(UNIX_BLOWFISH_PASS, ctrl) && off(UNIX_ALGO_ROUNDS, ctrl)) { - *rounds = 5; - set(UNIX_ALGO_ROUNDS, ctrl); - } -- -+ - /* Enforce sane "rounds" values */ - if (on(UNIX_ALGO_ROUNDS, ctrl)) { - if (on(UNIX_BLOWFISH_PASS, ctrl)) { -@@ -478,10 +478,18 @@ - /* if the stored password is NULL */ - int rc=0; - if (passwd != NULL) { /* send the password to the child */ -- write(fds[1], passwd, strlen(passwd)+1); -+ if (write(fds[1], passwd, strlen(passwd)+1) == -1) { -+ pam_syslog (pamh, LOG_ERR, "Cannot send password to helper: %m"); -+ close(fds[1]); -+ retval = PAM_AUTH_ERR; -+ } - passwd = NULL; -- } else { -- write(fds[1], "", 1); /* blank password */ -+ } else { /* blank password */ -+ if (write(fds[1], "", 1) == -1) { -+ pam_syslog (pamh, LOG_ERR, "Cannot send password to helper: %m"); -+ close(fds[1]); -+ retval = PAM_AUTH_ERR; -+ } - } - close(fds[0]); /* close here to avoid possible SIGPIPE above */ - close(fds[1]); -@@ -871,7 +879,7 @@ - } - - /* ****************************************************************** * -- * Copyright (c) Jan Rêkorajski 1999. -+ * Copyright (c) Jan Rêkorajski 1999. - * Copyright (c) Andrew G. Morgan 1996-8. - * Copyright (c) Alex O. Yuriev, 1996. - * Copyright (c) Cristian Gafton 1996. -Index: po/Linux-PAM.pot -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/Linux-PAM.pot,v -retrieving revision 1.52 -retrieving revision 1.53 -diff -u -r1.52 -r1.53 ---- po/Linux-PAM.pot 9 Mar 2009 13:07:35 -0000 1.52 -+++ po/Linux-PAM.pot 25 Mar 2009 10:54:23 -0000 1.53 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: PACKAGE VERSION\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: FULL NAME \n" - "Language-Team: LANGUAGE \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/ar.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ar.po,v -retrieving revision 1.19 -retrieving revision 1.20 -diff -u -r1.19 -r1.20 ---- po/ar.po 9 Mar 2009 13:07:35 -0000 1.19 -+++ po/ar.po 25 Mar 2009 10:54:23 -0000 1.20 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: @PACKAGE@\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2001-07-13 15:36+0200\n" - "Last-Translator: Novell Language \n" - "Language-Team: Novell Language \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "لديك بريد ÙÙŠ مجلد %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/as.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/as.po,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- po/as.po 9 Mar 2009 13:07:35 -0000 1.14 -+++ po/as.po 25 Mar 2009 10:54:23 -0000 1.15 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-13 11:23+0530\n" - "Last-Translator: Amitakhya Phukan \n" - "Language-Team: Assamese\n" -@@ -351,12 +351,12 @@ - msgid "You have mail in folder %s." - msgstr "%s ফোলà§à¦¡à¦¾à§°à¦¤ আপোনাৰ ডাক আছে ।" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "'%s' পঞà§à¦œà¦¿à¦•à¦¾ সৃষà§à¦Ÿà¦¿ কৰা হৈছে ।" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "%s পঞà§à¦œà¦¿à¦•à¦¾ সৃষà§à¦Ÿà¦¿ কৰিব নোৱাৰি: %m" -Index: po/bn_IN.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/bn_IN.po,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- po/bn_IN.po 9 Mar 2009 13:07:35 -0000 1.14 -+++ po/bn_IN.po 25 Mar 2009 10:54:23 -0000 1.15 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-20 12:40+0530\n" - "Last-Translator: Runa Bhattacharjee \n" - "Language-Team: Bengali INDIA \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "%s ফোলà§à¦¡à¦¾à¦°à§‡ মেইল উপসà§à¦¥à¦¿à¦¤ রয়েছে।" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "'%s' ডিরেকà§à¦Ÿà¦°à¦¿ নিরà§à¦®à¦¾à¦£ করা হচà§à¦›à§‡à¥¤" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "ডিরেকà§à¦Ÿà¦°à¦¿ %s নিরà§à¦®à¦¾à¦£ করতে বà§à¦¯à¦°à§à¦¥: %m" -Index: po/ca.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ca.po,v -retrieving revision 1.20 -retrieving revision 1.21 -diff -u -r1.20 -r1.21 ---- po/ca.po 9 Mar 2009 13:07:35 -0000 1.20 -+++ po/ca.po 25 Mar 2009 10:54:23 -0000 1.21 -@@ -17,7 +17,7 @@ - msgstr "" - "Project-Id-Version: linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-15 16:10+0200\n" - "Last-Translator: Xavier Queralt Mateu \n" - "Language-Team: Catalan \n" -@@ -359,12 +359,12 @@ - msgid "You have mail in folder %s." - msgstr "Teniu correu a la carpeta %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Creant el directori '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "No s'ha pogut crear el directori %s: %m" -Index: po/cs.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/cs.po,v -retrieving revision 1.55 -retrieving revision 1.57 -diff -u -r1.55 -r1.57 ---- po/cs.po 9 Mar 2009 13:07:35 -0000 1.55 -+++ po/cs.po 25 Mar 2009 10:54:23 -0000 1.57 -@@ -1,14 +1,14 @@ - # translation of Linux-PAM.po to cs_CZ --# This file is distributed under the same license as the PACKAGE package. --# Copyright (C) YEAR Linux-PAM Project. -+# This file is distributed under the same license as the Linux-PAM package. -+# Copyright (C) 2005-2009 Linux-PAM Project. - # Klara Cihlarova , 2005, 2006. --# Tomas Mraz , 2005, 2008. -+# Tomas Mraz , 2005, 2008, 2009. - msgid "" - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" --"PO-Revision-Date: 2008-11-28 15:22+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" -+"PO-Revision-Date: 2009-03-24 15:22+0100\n" - "Last-Translator: Tomas Mraz \n" - "Language-Team: cs_CZ \n" - "MIME-Version: 1.0\n" -@@ -52,7 +52,7 @@ - #: libpam/pam_get_authtok.c:127 - #, c-format - msgid "Retype %s" --msgstr "" -+msgstr "Opakujte %s" - - #: libpam/pam_get_authtok.c:146 - msgid "Password change aborted." -@@ -350,15 +350,15 @@ - msgid "You have mail in folder %s." - msgstr "Máte poÅ¡tu ve složce %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Vytváření adresáře '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 --#, fuzzy, c-format -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 -+#, c-format - msgid "Unable to create and initialize directory '%s'." --msgstr "NezdaÅ™ilo se vytvoÅ™it adresář %s: %m" -+msgstr "NezdaÅ™ilo se vytvoÅ™it a inicializovat adresář '%s'." - - #: modules/pam_pwhistory/pam_pwhistory.c:218 - #: modules/pam_unix/pam_unix_passwd.c:475 -Index: po/da.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/da.po,v -retrieving revision 1.19 -retrieving revision 1.20 -diff -u -r1.19 -r1.20 ---- po/da.po 9 Mar 2009 13:07:35 -0000 1.19 -+++ po/da.po 25 Mar 2009 10:54:23 -0000 1.20 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: @PACKAGE@\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2005-08-16 20:00+0200\n" - "Last-Translator: Novell Language \n" - "Language-Team: Novell Language \n" -@@ -354,12 +354,12 @@ - msgid "You have mail in folder %s." - msgstr "Du har e-mail i mappe %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/de.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/de.po,v -retrieving revision 1.63 -retrieving revision 1.64 -diff -u -r1.63 -r1.64 ---- po/de.po 9 Mar 2009 13:07:35 -0000 1.63 -+++ po/de.po 25 Mar 2009 10:54:23 -0000 1.64 -@@ -6,7 +6,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2009-02-25 18:04+01:00\n" - "Last-Translator: Fabian Affolter \n" - "Language-Team: German \n" -@@ -355,12 +355,12 @@ - msgid "You have mail in folder %s." - msgstr "Sie haben Nachrichten in %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Erstelle Verzeichnis '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Verzeichnis %s kann nicht erstellt und initialisiert werden: %m" -Index: po/es.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/es.po,v -retrieving revision 1.56 -retrieving revision 1.58 -diff -u -r1.56 -r1.58 ---- po/es.po 9 Mar 2009 13:07:35 -0000 1.56 -+++ po/es.po 25 Mar 2009 10:54:23 -0000 1.58 -@@ -10,10 +10,10 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip.es\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" --"PO-Revision-Date: 2009-02-21 02:08-0300\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" -+"PO-Revision-Date: 2009-03-18 22:51-0300\n" - "Last-Translator: Domingo Becker \n" --"Language-Team: Spanish \n" -+"Language-Team: Fedora Spanish \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" -@@ -357,15 +357,15 @@ - msgid "You have mail in folder %s." - msgstr "Tiene correo en la carpeta %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Creando directorio '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 --#, fuzzy, c-format -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 -+#, c-format - msgid "Unable to create and initialize directory '%s'." --msgstr "No se pudo crear el directorio %s: %m" -+msgstr "No se pudo crear e inicializar el directorio '%s'." - - #: modules/pam_pwhistory/pam_pwhistory.c:218 - #: modules/pam_unix/pam_unix_passwd.c:475 -Index: po/fi.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/fi.po,v -retrieving revision 1.47 -retrieving revision 1.48 -diff -u -r1.47 -r1.48 ---- po/fi.po 9 Mar 2009 13:07:35 -0000 1.47 -+++ po/fi.po 25 Mar 2009 10:54:23 -0000 1.48 -@@ -10,7 +10,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2006-05-04 08:30+0200\n" - "Last-Translator: Jyri Palokangas \n" - "Language-Team: \n" -@@ -352,12 +352,12 @@ - msgid "You have mail in folder %s." - msgstr "Sinulla on postia kansiossa %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/fr.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/fr.po,v -retrieving revision 1.57 -retrieving revision 1.58 -diff -u -r1.57 -r1.58 ---- po/fr.po 9 Mar 2009 13:07:35 -0000 1.57 -+++ po/fr.po 25 Mar 2009 10:54:23 -0000 1.58 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: pam.fr2\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-19 18:59+0200\n" - "Last-Translator: Pablo Martin-Gomez \n" - "Language-Team: Français \n" -@@ -362,12 +362,12 @@ - msgid "You have mail in folder %s." - msgstr "Vous avez des messages dans le dossier %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Création du répertoire « %s »." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Impossible de créer le répertoire %s : %m" -Index: po/gu.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/gu.po,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- po/gu.po 9 Mar 2009 13:07:35 -0000 1.14 -+++ po/gu.po 25 Mar 2009 10:54:23 -0000 1.15 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip.gu\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-03-13 14:29+0530\n" - "Last-Translator: Ankit Patel \n" - "Language-Team: Gujarati \n" -@@ -352,12 +352,12 @@ - msgid "You have mail in folder %s." - msgstr "તમારી પાસે ફોલà«àª¡àª° %s માં મેઈલ છે." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "ડિરેકà«àªŸàª°à«€ '%s' બનાવી રહà«àª¯àª¾ છીàª." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "ડિરેકà«àªŸàª°à«€ %s બનાવવામાં અસમરà«àª¥: %m" -Index: po/hi.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/hi.po,v -retrieving revision 1.13 -retrieving revision 1.14 -diff -u -r1.13 -r1.14 ---- po/hi.po 9 Mar 2009 13:07:35 -0000 1.13 -+++ po/hi.po 25 Mar 2009 10:54:23 -0000 1.14 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: hi\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2007-06-21 15:22+0530\n" - "Last-Translator: Rajesh Ranjan \n" - "Language-Team: Hindi \n" -@@ -352,12 +352,12 @@ - msgid "You have mail in folder %s." - msgstr "आपके लिठ%s फोलà¥à¤¡à¤° में मेल है." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/hu.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/hu.po,v -retrieving revision 1.55 -retrieving revision 1.57 -diff -u -r1.55 -r1.57 ---- po/hu.po 9 Mar 2009 13:07:35 -0000 1.55 -+++ po/hu.po 25 Mar 2009 10:54:23 -0000 1.57 -@@ -2,27 +2,24 @@ - # translation of Linux-pam.po to - # translation of hu.po to - # This file is distributed under the same license as the PACKAGE package. --# Copyright (C) YEAR Linux-PAM Project. --# -+# Copyright (C) 2009 Linux-PAM Project. - # Papp Zsolt , 2006. - # Keresztes Ãkos , 2006. - # Kalman Kemenczy , 2006, 2007. -+# -+# - msgid "" - msgstr "" - "Project-Id-Version: pam\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" --"PO-Revision-Date: 2008-04-30 08:23+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" -+"PO-Revision-Date: 2009-03-20 20:53+0100\n" - "Last-Translator: Sulyok Péter \n" - "Language-Team: Hungarian \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" --"X-Poedit-Language: Hungarian\n" --"X-Poedit-Country: HUNGARY\n" --"X-Poedit-SourceCharset: utf-8\n" - - #: libpam_misc/misc_conv.c:33 - msgid "...Time is running out...\n" -@@ -59,12 +56,11 @@ - #: libpam/pam_get_authtok.c:127 - #, c-format - msgid "Retype %s" --msgstr "" -+msgstr "Ismét %s" - - #: libpam/pam_get_authtok.c:146 --#, fuzzy - msgid "Password change aborted." --msgstr "Változatlan jelszó" -+msgstr "Jelszó változtatás elvetve." - - #: libpam/pam_item.c:310 - msgid "login:" -@@ -234,11 +230,11 @@ - - #: modules/pam_cracklib/pam_cracklib.c:522 - msgid "contains too many same characters consecutively" --msgstr "" -+msgstr "túl sok egymást követÅ‘ betű egyezik meg" - - #: modules/pam_cracklib/pam_cracklib.c:525 - msgid "contains the user name in some form" --msgstr "" -+msgstr "valahogy tartalmazza a használó nevét" - - #: modules/pam_cracklib/pam_cracklib.c:555 - #: modules/pam_unix/pam_unix_passwd.c:454 -@@ -300,23 +296,23 @@ - - #. TRANSLATORS: "Last failed login: from on " - #: modules/pam_lastlog/pam_lastlog.c:460 --#, fuzzy, c-format -+#, c-format - msgid "Last failed login:%s%s%s" --msgstr "Utolsó belépés:%s%s%s" -+msgstr "Utolsó sikertelen belépés:%s %s %s" - - #: modules/pam_lastlog/pam_lastlog.c:469 modules/pam_lastlog/pam_lastlog.c:476 - #, c-format - msgid "There was %d failed login attempt since the last successful login." - msgid_plural "" - "There were %d failed login attempts since the last successful login." --msgstr[0] "" --msgstr[1] "" -+msgstr[0] "%d sikertelen belépés kísérlet volt az utolsó sikeres belépés óta." -+msgstr[1] "%d sikertelen belépés kísérlet volt az utolsó sikeres belépés óta." - - #. TRANSLATORS: only used if dngettext is not supported - #: modules/pam_lastlog/pam_lastlog.c:481 - #, c-format - msgid "There were %d failed login attempts since the last successful login." --msgstr "" -+msgstr "%d sikertelen belépés kísérlet volt az utolsó sikeres belépés óta." - - #: modules/pam_limits/pam_limits.c:786 - #, c-format -@@ -359,15 +355,15 @@ - msgid "You have mail in folder %s." - msgstr "%s mappában levelek vannak." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "\"%s\" mappa teremtése" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 --#, fuzzy, c-format -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 -+#, c-format - msgid "Unable to create and initialize directory '%s'." --msgstr "%s mapa nem teremthetÅ‘ meg: %m" -+msgstr "„%s†mapa nem teremthetÅ‘ meg." - - #: modules/pam_pwhistory/pam_pwhistory.c:218 - #: modules/pam_unix/pam_unix_passwd.c:475 -@@ -454,12 +450,12 @@ - #: modules/pam_tally/pam_tally.c:541 modules/pam_tally2/pam_tally2.c:596 - #, c-format - msgid "Account temporary locked (%ld seconds left)" --msgstr "" -+msgstr "Számla ideiglenesen lakat alatt (még %ld másodpercig)" - - #: modules/pam_tally/pam_tally.c:566 modules/pam_tally2/pam_tally2.c:575 - #, c-format - msgid "Account locked due to %u failed logins" --msgstr "" -+msgstr "Számla lakat alatt %u sikertelen belépés miatt" - - #: modules/pam_tally/pam_tally.c:777 modules/pam_tally2/pam_tally2.c:884 - msgid "Authentication error" -@@ -502,21 +498,23 @@ - #: modules/pam_tally2/pam_tally2.c:937 - #, c-format - msgid "Login Failures Latest failure From\n" --msgstr "" -+msgstr "Belépés bukások Utolsó bukás innen\n" - - #: modules/pam_tally2/pam_tally2.c:953 --#, fuzzy, c-format -+#, c-format - msgid "" - "%s: [-f rooted-filename] [--file rooted-filename]\n" - " [-u username] [--user username]\n" - " [-r] [--reset[=n]] [--quiet]\n" - msgstr "" --"%s: [--file rooted-fájlnév] [--user használó] [--reset[=n]] [--quiet]\n" -+"%s: [-f rooted-fájlnév] [--file rooted-fájlnév]\n" -+" [-u használó] [--user használó]\n" -+" [-r] [--reset[=n]] [--quiet]\n" - - #: modules/pam_timestamp/pam_timestamp.c:339 - #, c-format - msgid "Access granted (last access was %ld seconds ago)." --msgstr "" -+msgstr "Hozzáférés megadva (utolsó hozzáférés %ld másodperce volt)." - - #: modules/pam_unix/pam_unix_acct.c:235 modules/pam_unix/pam_unix_acct.c:257 - msgid "Your account has expired; please contact your system administrator" -@@ -572,6 +570,13 @@ - msgid "Retype new UNIX password: " - msgstr "Ãrja be újra a UNIX jelszót: " - -+#~ msgid "" -+#~ "There was %d failed login attempt since the last successful login.There " -+#~ "were %d failed login attempts since the last successful login." -+#~ msgstr "" -+#~ "%d sikertelen belépés kísérlet volt az utolsó sikeres belépés óta.%d " -+#~ "sikertelen belépés kísérlet volt az utolsó sikeres belépés óta." -+ - #~ msgid "has been already used" - #~ msgstr "használt" - -Index: po/it.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/it.po,v -retrieving revision 1.56 -retrieving revision 1.57 -diff -u -r1.56 -r1.57 ---- po/it.po 9 Mar 2009 13:07:35 -0000 1.56 -+++ po/it.po 25 Mar 2009 10:54:23 -0000 1.57 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-21 13:21+1000\n" - "Last-Translator: \n" - "Language-Team: \n" -@@ -361,12 +361,12 @@ - msgid "You have mail in folder %s." - msgstr "La cartella %s contiene email." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Creazione della directory \"%s\"." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Impossibile creare la directory %s: %m" -Index: po/ja.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ja.po,v -retrieving revision 1.56 -retrieving revision 1.57 -diff -u -r1.56 -r1.57 ---- po/ja.po 9 Mar 2009 13:07:35 -0000 1.56 -+++ po/ja.po 25 Mar 2009 10:54:23 -0000 1.57 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip.ja\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-21 15:08+1000\n" - "Last-Translator: Kiyoto Hashida \n" - "Language-Team: Japanese \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "フォルダ%sã«ãƒ¡ãƒ¼ãƒ«ãŒã‚ã‚Šã¾ã™ã€‚" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "ディレクトリ '%s' を作æˆä¸­" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "ディレクトリ %s を作æˆã§ãã¾ã›ã‚“: %m" -Index: po/kk.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/kk.po,v -retrieving revision 1.2 -retrieving revision 1.3 -diff -u -r1.2 -r1.3 ---- po/kk.po 9 Mar 2009 13:07:35 -0000 1.2 -+++ po/kk.po 25 Mar 2009 10:54:23 -0000 1.3 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM 1.0.3\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2009-02-26 13:07+0600\n" - "Last-Translator: Baurzhan M. \n" - "Language-Team: Kazakh \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "Сізде %s бумаÑында поштаңыз бар." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "'%s' бумаÑын құру." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "%s бумаÑын құру мүмкін емеÑ: %m" -Index: po/km.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/km.po,v -retrieving revision 1.30 -retrieving revision 1.31 -diff -u -r1.30 -r1.31 ---- po/km.po 9 Mar 2009 13:07:35 -0000 1.30 -+++ po/km.po 25 Mar 2009 10:54:23 -0000 1.31 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2006-03-17 10:32+0700\n" - "Last-Translator: Khoem Sokhem \n" - "Language-Team: Khmer \n" -@@ -353,12 +353,12 @@ - msgid "You have mail in folder %s." - msgstr "អ្នក​មាន​សំបុážáŸ’រ​នៅ​ក្នុង​ážáž %s ។" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/kn.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/kn.po,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- po/kn.po 9 Mar 2009 13:07:35 -0000 1.14 -+++ po/kn.po 25 Mar 2009 10:54:23 -0000 1.15 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip.kn\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-20 12:29+0530\n" - "Last-Translator: Shankar Prasad \n" - "Language-Team: Kannada \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "%s ಫೋಲà³à²¡à²°à²¿à²¨à²²à³à²²à²¿ ನಿಮಗಾಗಿ ಮೈಲೠಇದೆ." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "ಕೋಶ '%s' ಅನà³à²¨à³ ರಚಿಸಲಾಗà³à²¤à³à²¤à²¿à²¦à³†." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "ಕೋಶ '%s' ಅನà³à²¨à³ ರಚಿಸಲೠಸಾಧà³à²¯à²µà²¾à²—ಿಲà³à²².: %m" -Index: po/ko.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ko.po,v -retrieving revision 1.13 -retrieving revision 1.14 -diff -u -r1.13 -r1.14 ---- po/ko.po 9 Mar 2009 13:07:35 -0000 1.13 -+++ po/ko.po 25 Mar 2009 10:54:23 -0000 1.14 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: ko\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2007-06-22 10:02+1000\n" - "Last-Translator: Eunju Kim \n" - "Language-Team: Korean \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "%s í´ë”ì— ë©”ì¼ì´ 있습니다." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/ml.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ml.po,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- po/ml.po 9 Mar 2009 13:07:35 -0000 1.14 -+++ po/ml.po 25 Mar 2009 10:54:23 -0000 1.15 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip.ml\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-20 12:50+0530\n" - "Last-Translator: \n" - "Language-Team: \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "%s ഫോളàµâ€à´¡à´±à´¿à´²àµâ€ നിങàµà´™à´³àµâ€à´•àµà´•àµ മെയിലàµâ€ ഉണàµà´Ÿàµ." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "'%s' ഡയറകàµà´Ÿà´±à´¿ ഉണàµà´Ÿà´¾à´•àµà´•àµà´¨àµà´¨àµ." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "%s ഡയറകàµà´Ÿà´±à´¿ ഉണàµà´Ÿà´¾à´•àµà´•àµà´µà´¾à´¨àµâ€ സാധàµà´¯à´®à´¾à´¯à´¿à´²àµà´²: %m" -Index: po/mr.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/mr.po,v -retrieving revision 1.7 -retrieving revision 1.8 -diff -u -r1.7 -r1.8 ---- po/mr.po 9 Mar 2009 13:07:35 -0000 1.7 -+++ po/mr.po 25 Mar 2009 10:54:23 -0000 1.8 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-10 07:07+0530\n" - "Last-Translator: Sandeep Shedmake \n" - "Language-Team: marathi\n" -@@ -350,12 +350,12 @@ - msgid "You have mail in folder %s." - msgstr "संचयीका %s अंतरà¥à¤—त मेल आढळले गेले." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "संचयीका '%s' बनवित आहे." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "संचयीका %s बनवू शकत नाही: %m" -Index: po/ms.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ms.po,v -retrieving revision 1.7 -retrieving revision 1.8 -diff -u -r1.7 -r1.8 ---- po/ms.po 9 Mar 2009 13:07:35 -0000 1.7 -+++ po/ms.po 25 Mar 2009 10:54:23 -0000 1.8 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: linux-pam\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-09-25 23:52+0800\n" - "Last-Translator: Sharuzzaman Ahmat Raslan \n" - "Language-Team: Malay \n" -@@ -379,12 +379,12 @@ - msgid "You have mail in folder %s." - msgstr "Pemindahan mel dalam proses" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, fuzzy, c-format - msgid "Creating directory '%s'." - msgstr "Menbuat direktori initrd" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "gagal untuk mencipta direktori %s: %s\n" -Index: po/nb.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/nb.po,v -retrieving revision 1.53 -retrieving revision 1.54 -diff -u -r1.53 -r1.54 ---- po/nb.po 9 Mar 2009 13:07:35 -0000 1.53 -+++ po/nb.po 25 Mar 2009 10:54:23 -0000 1.54 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-04-30 12:59+0200\n" - "Last-Translator: Olav Pettershagen \n" - "Language-Team: \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "Du har e-post i mappen %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Oppretter katalog «%s»." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Kan ikke opprette katalog %s: %m" -Index: po/nl.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/nl.po,v -retrieving revision 1.31 -retrieving revision 1.32 -diff -u -r1.31 -r1.32 ---- po/nl.po 9 Mar 2009 13:07:35 -0000 1.31 -+++ po/nl.po 25 Mar 2009 10:54:23 -0000 1.32 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-20 23:45+0200\n" - "Last-Translator: Peter van Egdom \n" - "Language-Team: Dutch \n" -@@ -355,12 +355,12 @@ - msgid "You have mail in folder %s." - msgstr "U hebt e-mail in map %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Aanmaken van map '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Niet in staat om map %s aan te maken: %m" -Index: po/or.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/or.po,v -retrieving revision 1.14 -retrieving revision 1.15 -diff -u -r1.14 -r1.15 ---- po/or.po 9 Mar 2009 13:07:35 -0000 1.14 -+++ po/or.po 25 Mar 2009 10:54:23 -0000 1.15 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip.or\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-09-30 11:42+0530\n" - "Last-Translator: Manoj Kumar Giri \n" - "Language-Team: Oriya\n" -@@ -354,12 +354,12 @@ - msgid "You have mail in folder %s." - msgstr "ଆପଣଙà­à¬• ନିକଟରେ %s ଫୋଲଡରରେ ଚିଠି ଅଛି।" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "ଡ଼ିରେକà­à¬Ÿà­‹à¬°à­€ '%s' ନିରà­à¬®à¬¾à¬£ କରà­à¬…ଛି." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "ଡ଼ିରେକà­à¬Ÿà­‹à¬°à­€ '%s' ନିରà­à¬®à¬¾à¬£ କରିବାରେ ଅସମରà­à¬¥: %m" -Index: po/pa.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/pa.po,v -retrieving revision 1.51 -retrieving revision 1.52 -diff -u -r1.51 -r1.52 ---- po/pa.po 9 Mar 2009 13:07:35 -0000 1.51 -+++ po/pa.po 25 Mar 2009 10:54:23 -0000 1.52 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.pa\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2005-08-06 08:34+0530\n" - "Last-Translator: Amanpreet Singh Alam[ਆਲਮ] \n" - "Language-Team: Panjabi \n" -@@ -354,12 +354,12 @@ - msgid "You have mail in folder %s." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/pl.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/pl.po,v -retrieving revision 1.58 -retrieving revision 1.60 -diff -u -r1.58 -r1.60 ---- po/pl.po 9 Mar 2009 13:07:35 -0000 1.58 -+++ po/pl.po 25 Mar 2009 10:54:23 -0000 1.60 -@@ -7,8 +7,8 @@ - msgstr "" - "Project-Id-Version: pl\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" --"PO-Revision-Date: 2009-01-04 23:16+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" -+"PO-Revision-Date: 2009-02-26 22:10+0100\n" - "Last-Translator: Piotr DrÄ…g \n" - "Language-Team: Polish \n" - "MIME-Version: 1.0\n" -@@ -355,15 +355,15 @@ - msgid "You have mail in folder %s." - msgstr "WiadomoÅ›ci w folderze %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Tworzenie katalogu \"%s\"." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 --#, fuzzy, c-format -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 -+#, c-format - msgid "Unable to create and initialize directory '%s'." --msgstr "Nie można utworzyć katalogu %s: %m" -+msgstr "Nie można utworzyć i zainicjować katalogu \"%s\"." - - #: modules/pam_pwhistory/pam_pwhistory.c:218 - #: modules/pam_unix/pam_unix_passwd.c:475 -Index: po/pt.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/pt.po,v -retrieving revision 1.53 -retrieving revision 1.54 -diff -u -r1.53 -r1.54 ---- po/pt.po 9 Mar 2009 13:07:35 -0000 1.53 -+++ po/pt.po 25 Mar 2009 10:54:23 -0000 1.54 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.pt\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2006-05-03 21:54+0200\n" - "Last-Translator: Antonio Cardoso Martins \n" - "Language-Team: portuguese\n" -@@ -350,12 +350,12 @@ - msgid "You have mail in folder %s." - msgstr "Tem correio electrónico na pasta %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/pt_BR.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/pt_BR.po,v -retrieving revision 1.56 -retrieving revision 1.58 -diff -u -r1.56 -r1.58 ---- po/pt_BR.po 9 Mar 2009 13:07:35 -0000 1.56 -+++ po/pt_BR.po 25 Mar 2009 10:54:23 -0000 1.58 -@@ -10,7 +10,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2009-02-20 12:41-0300\n" - "Last-Translator: Taylon \n" - "Language-Team: Brazilian Portuguese \n" -@@ -352,15 +352,15 @@ - msgid "You have mail in folder %s." - msgstr "Há mensagens na pasta %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Criando o diretório '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 --#, fuzzy, c-format -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 -+#, c-format - msgid "Unable to create and initialize directory '%s'." --msgstr "Impossível criar o diretório %s: %m" -+msgstr "Impossível criar e inicializar o diretório \"%s\"." - - #: modules/pam_pwhistory/pam_pwhistory.c:218 - #: modules/pam_unix/pam_unix_passwd.c:475 -Index: po/ru.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ru.po,v -retrieving revision 1.20 -retrieving revision 1.21 -diff -u -r1.20 -r1.21 ---- po/ru.po 9 Mar 2009 13:07:35 -0000 1.20 -+++ po/ru.po 25 Mar 2009 10:54:23 -0000 1.21 -@@ -11,7 +11,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-02-23 20:11+0300\n" - "Last-Translator: Andrew Martynov \n" - "Language-Team: Russian \n" -@@ -362,12 +362,12 @@ - msgid "You have mail in folder %s." - msgstr "ЕÑÑ‚ÑŒ почта в папке %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Создание каталога '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Ðевозможно Ñоздать каталог %s: %m" -Index: po/si.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/si.po,v -retrieving revision 1.13 -retrieving revision 1.14 -diff -u -r1.13 -r1.14 ---- po/si.po 9 Mar 2009 13:07:35 -0000 1.13 -+++ po/si.po 25 Mar 2009 10:54:23 -0000 1.14 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: si\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2007-06-22 12:24+0530\n" - "Last-Translator: Danishka Navin \n" - "Language-Team: Sinhala \n" -@@ -350,12 +350,12 @@ - msgid "You have mail in folder %s." - msgstr "%s බහලුම තුළ ඔබට තà·à¶´à·à¶½à·Š ඇත." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/sk.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/sk.po,v -retrieving revision 1.8 -retrieving revision 1.10 -diff -u -r1.8 -r1.10 ---- po/sk.po 9 Mar 2009 13:07:35 -0000 1.8 -+++ po/sk.po 25 Mar 2009 10:54:23 -0000 1.10 -@@ -2,19 +2,19 @@ - # This file is distributed under the same license as the Linux-PAM package. - # - # Ondrej Å ulek , 2008. -+# Pavol Å imo , 2009. - msgid "" - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" --"PO-Revision-Date: 2008-10-21 09:13+0200\n" --"Last-Translator: Ondrej Å ulek \n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" -+"PO-Revision-Date: 2009-03-24 22:24+0100\n" -+"Last-Translator: Pavol Å imo \n" - "Language-Team: Slovak \n" - "MIME-Version: 1.0\n" - "Content-Type: text/plain; charset=UTF-8\n" - "Content-Transfer-Encoding: 8bit\n" - "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" --"X-Generator: Lokalize 0.2\n" - - #: libpam_misc/misc_conv.c:33 - msgid "...Time is running out...\n" -@@ -27,7 +27,7 @@ - #: libpam_misc/misc_conv.c:342 - #, c-format - msgid "erroneous conversation (%d)\n" --msgstr "nesprávna konverzácia (%d)\n" -+msgstr "chybná konverzácia (%d)\n" - - #: libpam/pam_get_authtok.c:39 modules/pam_exec/pam_exec.c:142 - #: modules/pam_unix/pam_unix_auth.c:159 modules/pam_userdb/pam_userdb.c:63 -@@ -46,16 +46,16 @@ - - #: libpam/pam_get_authtok.c:44 modules/pam_cracklib/pam_cracklib.c:69 - msgid "Sorry, passwords do not match." --msgstr "Heslá sa nezhodujú." -+msgstr "PrepáÄte, heslá sa nezhodujú." - - #: libpam/pam_get_authtok.c:127 - #, c-format - msgid "Retype %s" --msgstr "" -+msgstr "Opakujte %s" - - #: libpam/pam_get_authtok.c:146 - msgid "Password change aborted." --msgstr "Zmena hesla preruÅ¡ená." -+msgstr "Zmena hesla zruÅ¡ená." - - #: libpam/pam_item.c:310 - msgid "login:" -@@ -67,7 +67,7 @@ - - #: libpam/pam_strerror.c:42 - msgid "Critical error - immediate abort" --msgstr "Kritická chyba - okamžité preruÅ¡enie" -+msgstr "Kritická chyba - okamžité zruÅ¡enie" - - #: libpam/pam_strerror.c:44 - msgid "Failed to load module" -@@ -95,19 +95,19 @@ - - #: libpam/pam_strerror.c:56 - msgid "Authentication failure" --msgstr "Zlyhanie autentifikácie" -+msgstr "Zlyhanie overenia" - - #: libpam/pam_strerror.c:58 - msgid "Insufficient credentials to access authentication data" --msgstr "NedostatoÄné oprávnenia pre prístup k autentifikaÄným dátam" -+msgstr "NedostatoÄné oprávnenia pre prístup k údajom overenia" - - #: libpam/pam_strerror.c:60 - msgid "Authentication service cannot retrieve authentication info" --msgstr "AutentifikaÄná služba nemôže získaÅ¥ informácie pre autentifikáciu" -+msgstr "Overovacia služba nemôže získaÅ¥ informácie pre overenie" - - #: libpam/pam_strerror.c:62 - msgid "User not known to the underlying authentication module" --msgstr "Používateľ nie je známy pre podriadený autentifikaÄný modul" -+msgstr "Používateľ nie je známy pre podriadený overovací modul" - - #: libpam/pam_strerror.c:64 - msgid "Have exhausted maximum number of retries for service" -@@ -115,7 +115,7 @@ - - #: libpam/pam_strerror.c:66 - msgid "Authentication token is no longer valid; new one required" --msgstr "AutentifikaÄný token už nie je platný; požadovaný nový" -+msgstr "Overovací token už nie je platný; požadovaný je nový" - - #: libpam/pam_strerror.c:68 - msgid "User account has expired" -@@ -123,11 +123,11 @@ - - #: libpam/pam_strerror.c:70 - msgid "Cannot make/remove an entry for the specified session" --msgstr "Pre zadané sedenie nie je možné vytvoriÅ¥/odstrániÅ¥ záznam" -+msgstr "Pre zadanú reláciu nie je možné vytvoriÅ¥/odstrániÅ¥ záznam" - - #: libpam/pam_strerror.c:72 - msgid "Authentication service cannot retrieve user credentials" --msgstr "AutentifikaÄná služba nemôže získaÅ¥ oprávnenia používateľa" -+msgstr "Overovacia služba nemôže získaÅ¥ oprávnenia používateľa" - - #: libpam/pam_strerror.c:74 - msgid "User credentials expired" -@@ -151,19 +151,19 @@ - - #: libpam/pam_strerror.c:84 - msgid "Authentication token manipulation error" --msgstr "Chyba pri manipulácii s autentifikaÄným tokenom" -+msgstr "Chyba pri manipulácii s overovacím tokenom" - - #: libpam/pam_strerror.c:86 - msgid "Authentication information cannot be recovered" --msgstr "AutentifikaÄnú informáciu nie je možné obnoviÅ¥" -+msgstr "Overovaciu informáciu nie je možné obnoviÅ¥" - - #: libpam/pam_strerror.c:88 - msgid "Authentication token lock busy" --msgstr "AutentifikaÄný token je uzamknutý" -+msgstr "Overovací token je uzamknutý" - - #: libpam/pam_strerror.c:90 - msgid "Authentication token aging disabled" --msgstr "Starnutie autentifikaÄného tokenu zakázané" -+msgstr "Starnutie overovacieho tokenu zakázané" - - #: libpam/pam_strerror.c:92 - msgid "Failed preliminary check by password service" -@@ -179,7 +179,7 @@ - - #: libpam/pam_strerror.c:98 - msgid "Authentication token expired" --msgstr "VyprÅ¡ala platnosÅ¥ autentifikaÄného tokenu" -+msgstr "VyprÅ¡ala platnosÅ¥ overovacieho tokenu" - - #: libpam/pam_strerror.c:100 - msgid "Conversation is waiting for event" -@@ -219,7 +219,7 @@ - - #: modules/pam_cracklib/pam_cracklib.c:519 - msgid "not enough character classes" --msgstr "dostatok rôznych druhov znakov" -+msgstr "nedostatok rôznych druhov znakov" - - #: modules/pam_cracklib/pam_cracklib.c:522 - msgid "contains too many same characters consecutively" -@@ -248,22 +248,22 @@ - #: modules/pam_exec/pam_exec.c:215 - #, c-format - msgid "%s failed: exit code %d" --msgstr "%s zlyhal: výstupný kód %d" -+msgstr "%s zlyhalo: výstupný kód %d" - - #: modules/pam_exec/pam_exec.c:224 - #, c-format - msgid "%s failed: caught signal %d%s" --msgstr "%s zlyhal: dostal signál %d%s" -+msgstr "%s zlyhalo: dostal signál %d%s" - - #: modules/pam_exec/pam_exec.c:233 - #, c-format - msgid "%s failed: unknown status 0x%x" --msgstr "%s zlyhal: neznámy stav 0x%x" -+msgstr "%s zlyhalo: neznámy stav 0x%x" - - #. TRANSLATORS: "strftime options for date of last login" - #: modules/pam_lastlog/pam_lastlog.c:201 modules/pam_lastlog/pam_lastlog.c:429 - msgid " %a %b %e %H:%M:%S %Z %Y" --msgstr "%a %d.%m.%Y %H:%M:%S %Z" -+msgstr " %a %d.%m.%Y %H:%M:%S %Z" - - #. TRANSLATORS: " from " - #: modules/pam_lastlog/pam_lastlog.c:210 modules/pam_lastlog/pam_lastlog.c:438 -@@ -285,7 +285,7 @@ - - #: modules/pam_lastlog/pam_lastlog.c:238 - msgid "Welcome to your new account!" --msgstr "Vítajte vo vaÅ¡om novom úÄte!" -+msgstr "Vitajte vo vaÅ¡om novom úÄte!" - - #. TRANSLATORS: "Last failed login: from on " - #: modules/pam_lastlog/pam_lastlog.c:460 -@@ -357,24 +357,24 @@ - msgid "You have mail in folder %s." - msgstr "Máte poÅ¡tu v prieÄinku %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Vytváranie prieÄinka '%s'." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 --#, fuzzy, c-format -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 -+#, c-format - msgid "Unable to create and initialize directory '%s'." --msgstr "Nedá sa vytvoriÅ¥ prieÄinok %s: %m" -+msgstr "Nedá sa vytvoriÅ¥ a inicializovaÅ¥ prieÄinok '%s'." - - #: modules/pam_pwhistory/pam_pwhistory.c:218 - #: modules/pam_unix/pam_unix_passwd.c:475 - msgid "Password has been already used. Choose another." --msgstr "Heslo už bolo použité. Vyberte iné." -+msgstr "Heslo už bolo použité. Zvoľte si iné." - - #: modules/pam_selinux/pam_selinux.c:172 - msgid "Would you like to enter a security context? [N] " --msgstr "Chcete zadaÅ¥ kontext zabezpeÄenia? [N] " -+msgstr "Želáte si zadaÅ¥ kontext zabezpeÄenia? [N] " - - #: modules/pam_selinux/pam_selinux.c:191 modules/pam_selinux/pam_selinux.c:282 - msgid "role:" -@@ -395,7 +395,7 @@ - - #: modules/pam_selinux/pam_selinux.c:269 - msgid "Would you like to enter a different role or level?" --msgstr "Chcete zadaÅ¥ inú rolu alebo úroveň?" -+msgstr "Želáte si zadaÅ¥ inú rolu alebo úroveň?" - - #: modules/pam_selinux/pam_selinux.c:285 - #, c-format -@@ -405,7 +405,7 @@ - #: modules/pam_selinux/pam_selinux.c:677 - #, c-format - msgid "Unable to get valid context for %s" --msgstr "Nepodaril sa získaÅ¥ platný kontext zabezpeÄenia pre %s" -+msgstr "Nepodarilo sa získaÅ¥ platný kontext zabezpeÄenia pre %s" - - #: modules/pam_selinux/pam_selinux.c:728 - #, c-format -@@ -425,7 +425,7 @@ - #: modules/pam_selinux/pam_selinux_check.c:105 - #, c-format - msgid "failed to pam_set_item()\n" --msgstr "chyba pam_set_item()\n" -+msgstr "chyba pri pam_set_item()\n" - - #: modules/pam_selinux/pam_selinux_check.c:133 - #, c-format -@@ -443,7 +443,7 @@ - - #: modules/pam_stress/pam_stress.c:492 - msgid "Retype new STRESS password: " --msgstr "Znovu zadajte nové STRESS heslo: " -+msgstr "Znovu zadajte nové STRESS heslo: " - - #: modules/pam_stress/pam_stress.c:521 - msgid "Verification mis-typed; password unchanged" -@@ -461,7 +461,7 @@ - - #: modules/pam_tally/pam_tally.c:777 modules/pam_tally2/pam_tally2.c:884 - msgid "Authentication error" --msgstr "Chyba autentifikácie" -+msgstr "Chyba overenia" - - #: modules/pam_tally/pam_tally.c:778 modules/pam_tally2/pam_tally2.c:885 - msgid "Service error" -@@ -478,12 +478,12 @@ - #: modules/pam_tally/pam_tally.c:796 modules/pam_tally2/pam_tally2.c:906 - #, c-format - msgid "%s: Bad number given to --reset=\n" --msgstr "%s: Zadaná zlá hodnota --reset=\n" -+msgstr "%s: Zadané zlé Äíslo pre --reset=\n" - - #: modules/pam_tally/pam_tally.c:800 modules/pam_tally2/pam_tally2.c:910 - #, c-format - msgid "%s: Unrecognised option %s\n" --msgstr "%s: Neznáma možnosÅ¥ %s\n" -+msgstr "%s: Neznáma voľba %s\n" - - #: modules/pam_tally/pam_tally.c:812 - #, c-format -@@ -501,22 +501,23 @@ - #: modules/pam_tally2/pam_tally2.c:937 - #, c-format - msgid "Login Failures Latest failure From\n" --msgstr "" -+msgstr "Login Zlyhaní Ostatné zlyhanie Z\n" - - #: modules/pam_tally2/pam_tally2.c:953 --#, fuzzy, c-format -+#, c-format - msgid "" - "%s: [-f rooted-filename] [--file rooted-filename]\n" - " [-u username] [--user username]\n" - " [-r] [--reset[=n]] [--quiet]\n" - msgstr "" --"%s: [--file meno_suboru] [--user pouzivatelske_meno] [--reset[=n]] [--" --"quiet]\n" -+"%s: [-f meno_suboru] [--file meno_suboru]\n" -+" [-u pouzivatelske_meno] [--user pouzivatelske_meno]\n" -+" [-r] [--reset[=n]] [--quiet]\n" - - #: modules/pam_timestamp/pam_timestamp.c:339 - #, c-format - msgid "Access granted (last access was %ld seconds ago)." --msgstr "" -+msgstr "Prístup povolený (ostatný prístup pred %ld sekundami)." - - #: modules/pam_unix/pam_unix_acct.c:235 modules/pam_unix/pam_unix_acct.c:257 - msgid "Your account has expired; please contact your system administrator" -@@ -525,7 +526,7 @@ - - #: modules/pam_unix/pam_unix_acct.c:243 - msgid "You are required to change your password immediately (root enforced)" --msgstr "Je vyžadovaná okamžitá zmena vaÅ¡eho hesla (vynútené rootom)" -+msgstr "Je vyžadovaná okamžitá zmena vaÅ¡eho hesla (vynútené správcom)" - - #: modules/pam_unix/pam_unix_acct.c:249 - msgid "You are required to change your password immediately (password aged)" -@@ -551,7 +552,7 @@ - - #: modules/pam_unix/pam_unix_passwd.c:471 - msgid "You must choose a longer password" --msgstr "Musíte vybraÅ¥ dlhÅ¡ie heslo" -+msgstr "Musíte si zvoliÅ¥ dlhÅ¡ie heslo" - - #: modules/pam_unix/pam_unix_passwd.c:576 - #, c-format -Index: po/sr.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/sr.po,v -retrieving revision 1.11 -retrieving revision 1.12 -diff -u -r1.11 -r1.12 ---- po/sr.po 9 Mar 2009 13:07:35 -0000 1.11 -+++ po/sr.po 25 Mar 2009 10:54:23 -0000 1.12 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-04-05 10:48+0100\n" - "Last-Translator: MiloÅ¡ KomarÄević \n" - "Language-Team: Serbian (sr) \n" -@@ -355,12 +355,12 @@ - msgid "You have mail in folder %s." - msgstr "Имате поруке у директоријуму %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Правим директоријум „%s“." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Ðе могу да направим директоријум %s: %m" -Index: po/sr@latin.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/sr@latin.po,v -retrieving revision 1.11 -retrieving revision 1.12 -diff -u -r1.11 -r1.12 ---- po/sr@latin.po 9 Mar 2009 13:07:35 -0000 1.11 -+++ po/sr@latin.po 25 Mar 2009 10:54:23 -0000 1.12 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-04-05 10:48+0100\n" - "Last-Translator: MiloÅ¡ KomarÄević \n" - "Language-Team: Serbian (sr) \n" -@@ -355,12 +355,12 @@ - msgid "You have mail in folder %s." - msgstr "Imate poruke u direktorijumu %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Pravim direktorijum „%s“." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Ne mogu da napravim direktorijum %s: %m" -Index: po/sv.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/sv.po,v -retrieving revision 1.21 -retrieving revision 1.22 -diff -u -r1.21 -r1.22 ---- po/sv.po 9 Mar 2009 13:07:35 -0000 1.21 -+++ po/sv.po 25 Mar 2009 10:54:23 -0000 1.22 -@@ -8,7 +8,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2009-02-11 12:22+0100\n" - "Last-Translator: Daniel Nylander \n" - "Language-Team: Swedish \n" -@@ -355,12 +355,12 @@ - msgid "You have mail in folder %s." - msgstr "Du har brev i katalogen %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "Skapar katalogen \"%s\"." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "Kan inte skapa katalogen %s: %m" -Index: po/ta.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/ta.po,v -retrieving revision 1.13 -retrieving revision 1.14 -diff -u -r1.13 -r1.14 ---- po/ta.po 9 Mar 2009 13:07:35 -0000 1.13 -+++ po/ta.po 25 Mar 2009 10:54:23 -0000 1.14 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: ta\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2007-06-21 15:33+0530\n" - "Last-Translator: I felix \n" - "Language-Team: Tamil \n" -@@ -352,12 +352,12 @@ - msgid "You have mail in folder %s." - msgstr "உஙà¯à®•à®³à¯à®•à¯à®•à¯ %s அடைவில௠அஞà¯à®šà®²à¯ உளà¯à®³à®¤à¯." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/te.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/te.po,v -retrieving revision 1.7 -retrieving revision 1.8 -diff -u -r1.7 -r1.8 ---- po/te.po 9 Mar 2009 13:07:35 -0000 1.7 -+++ po/te.po 25 Mar 2009 10:54:23 -0000 1.8 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: te\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-22 16:24+0530\n" - "Last-Translator: Krishna Babu K \n" - "Language-Team: Telugu \n" -@@ -352,12 +352,12 @@ - msgid "You have mail in folder %s." - msgstr "మీరౠఫోలà±à°¡à°°à± %sనందౠమెయిలà±â€Œà°¨à± కలిగివà±à°¨à±à°¨à°¾à°°à±." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "డెరెకà±à°Ÿà°°à±€ '%s' సృషà±à°Ÿà°¿à°‚à°šà±à°Ÿ." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "డైరెకà±à°Ÿà°°à±€ %sనౠసృషà±à°Ÿà°¿à°‚చలేక పోయింది: %m" -Index: po/tr.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/tr.po,v -retrieving revision 1.26 -retrieving revision 1.27 -diff -u -r1.26 -r1.27 ---- po/tr.po 9 Mar 2009 13:07:35 -0000 1.26 -+++ po/tr.po 25 Mar 2009 10:54:23 -0000 1.27 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2006-05-03 19:00+0200\n" - "Last-Translator: Koray Löker \n" - "Language-Team: Türkçe \n" -@@ -349,12 +349,12 @@ - msgid "You have mail in folder %s." - msgstr "%s dizininde iletiniz var" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/uk.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/uk.po,v -retrieving revision 1.26 -retrieving revision 1.27 -diff -u -r1.26 -r1.27 ---- po/uk.po 9 Mar 2009 13:07:35 -0000 1.26 -+++ po/uk.po 25 Mar 2009 10:54:23 -0000 1.27 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.uk\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2006-05-03 18:59+0200\n" - "Last-Translator: Ivan Petrouchtchak \n" - "Language-Team: Ukrainian \n" -@@ -352,12 +352,12 @@ - msgid "You have mail in folder %s." - msgstr "Ви маєте пошту в теці %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" -Index: po/zh_CN.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/zh_CN.po,v -retrieving revision 1.56 -retrieving revision 1.57 -diff -u -r1.56 -r1.57 ---- po/zh_CN.po 9 Mar 2009 13:07:35 -0000 1.56 -+++ po/zh_CN.po 25 Mar 2009 10:54:23 -0000 1.57 -@@ -9,7 +9,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-20 15:43+1000\n" - "Last-Translator: Leah Liu \n" - "Language-Team: Simplified Chinese \n" -@@ -350,12 +350,12 @@ - msgid "You have mail in folder %s." - msgstr "您在文件夹 %s 中有邮件。" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "创建目录 '%s'。" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "无法创建目录 %s:%m" -Index: po/zh_TW.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/zh_TW.po,v -retrieving revision 1.54 -retrieving revision 1.55 -diff -u -r1.54 -r1.55 ---- po/zh_TW.po 9 Mar 2009 13:07:35 -0000 1.54 -+++ po/zh_TW.po 25 Mar 2009 10:54:23 -0000 1.55 -@@ -7,7 +7,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM.tip\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2008-10-21 15:51+1000\n" - "Last-Translator: Terry Chuang \n" - "Language-Team: \n" -@@ -350,12 +350,12 @@ - msgid "You have mail in folder %s." - msgstr "資料夾 %s 中有您的郵件。" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "建立目錄「%sã€ã€‚" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, fuzzy, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "無法建立 %s 目錄:%m" -Index: po/zu.po -=================================================================== -RCS file: /cvsroot/pam/Linux-PAM/po/zu.po,v -retrieving revision 1.19 -retrieving revision 1.20 -diff -u -r1.19 -r1.20 ---- po/zu.po 9 Mar 2009 13:07:35 -0000 1.19 -+++ po/zu.po 25 Mar 2009 10:54:23 -0000 1.20 -@@ -5,7 +5,7 @@ - msgstr "" - "Project-Id-Version: Linux-PAM\n" - "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n" --"POT-Creation-Date: 2009-03-03 14:56+0100\n" -+"POT-Creation-Date: 2009-03-25 11:53+0100\n" - "PO-Revision-Date: 2006-11-03 12:03\n" - "Last-Translator: Novell Language \n" - "Language-Team: Novell Language \n" -@@ -346,12 +346,12 @@ - msgid "You have mail in folder %s." - msgstr "Unemeyili kwifolda %s." - --#: modules/pam_mkhomedir/pam_mkhomedir.c:111 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:113 - #, c-format - msgid "Creating directory '%s'." - msgstr "" - --#: modules/pam_mkhomedir/pam_mkhomedir.c:181 -+#: modules/pam_mkhomedir/pam_mkhomedir.c:183 - #, c-format - msgid "Unable to create and initialize directory '%s'." - msgstr "" diff --git a/pam.changes b/pam.changes index 95b7f52..17044b5 100644 --- a/pam.changes +++ b/pam.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue May 5 16:07:00 CEST 2009 - kukuk@suse.de + +- Update to versin 1.0.92: + * Update translations + * pam_succeed_if: Use provided username + * pam_mkhomedir: Fix handling of options + ------------------------------------------------------------------- Fri Apr 3 21:43:48 CEST 2009 - rguenther@suse.de diff --git a/pam.spec b/pam.spec index 97a0875..9973b23 100644 --- a/pam.spec +++ b/pam.spec @@ -1,5 +1,5 @@ # -# spec file for package pam (Version 1.0.91) +# spec file for package pam (Version 1.0.92) # # Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -34,7 +34,7 @@ BuildRequires: libselinux-devel %endif %define libpam_so_version 0.82.1 %define libpam_misc_so_version 0.82.0 -%define libpamc_so_version 0.82.0 +%define libpamc_so_version 0.82.1 License: BSD 3-Clause; GPL v2 or later Group: System/Libraries AutoReqProv: on @@ -43,8 +43,8 @@ AutoReqProv: on Obsoletes: pam-64bit %endif # -Version: 1.0.91 -Release: 2 +Version: 1.0.92 +Release: 1 Summary: A Security Tool that Provides Authentication for Applications Source: Linux-PAM-%{version}.tar.bz2 Source1: Linux-PAM-%{version}-docs.tar.bz2 @@ -55,8 +55,7 @@ Source5: common-account.pamd Source6: common-password.pamd Source7: common-session.pamd Source8: etc.environment -Patch: cvs.diff -Patch1: pam_tally-deprecated.diff +Patch: pam_tally-deprecated.diff BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -105,7 +104,6 @@ building both PAM-aware applications and modules for use with PAM. %prep %setup -q -n Linux-PAM-%{version} -b 1 %patch -p0 -%patch1 -p0 %build CFLAGS="$RPM_OPT_FLAGS -DNDEBUG" \ @@ -309,6 +307,11 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/libpam_misc.so %changelog +* Tue May 05 2009 kukuk@suse.de +- Update to versin 1.0.92: + * Update translations + * pam_succeed_if: Use provided username + * pam_mkhomedir: Fix handling of options * Fri Apr 03 2009 rguenther@suse.de - Remove cracklib-dict-full and pwdutils BuildRequires again. * Fri Mar 27 2009 kukuk@suse.de