]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs:
authorThorsten Kukuk <kukuk@thkukuk.de>
Tue, 20 Dec 2005 21:28:06 +0000 (21:28 +0000)
committerThorsten Kukuk <kukuk@thkukuk.de>
Tue, 20 Dec 2005 21:28:06 +0000 (21:28 +0000)
Purpose of commit: new feature

Commit summary:
---------------

2005-12-20  Thorsten Kukuk  <kukuk@thkukuk.de>

        * modules/pam_lastlog/pam_lastlog.c (last_login_read): Use
        strftime instead of ctime.

18 files changed:
ChangeLog
modules/pam_lastlog/pam_lastlog.c
po/Linux-PAM.pot
po/cs.po
po/de.po
po/es.po
po/fi.po
po/fr.po
po/hu.po
po/it.po
po/ja.po
po/nb.po
po/pa.po
po/pl.po
po/pt.po
po/pt_BR.po
po/zh_CN.po
po/zh_TW.po

index fa339183e7e1f7d5e478ea631921f5fb05f988aa..c9aeb1d9e7e3a88375fbe81e4a0274bea1b11084 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-12-20  Thorsten Kukuk  <kukuk@thkukuk.de>
+
+       * modules/pam_lastlog/pam_lastlog.c (last_login_read): Use
+       strftime instead of ctime.
+
+       * po/de.po: Fix typo.
+
 2005-12-19  Thorsten Kukuk  <kukuk@thkukuk.de>
 
        * libpam/pam_syslog.c: Define LOG_AUTHPRIV as LOG_AUTH on Solaris.
index 947d3c2d3ec0bebce6356bc3221d16ab1d7aab6c..24a13ef671435fb960519ba6e5b0f024ed5becce 100644 (file)
@@ -139,6 +139,7 @@ last_login_read(pam_handle_t *pamh, int announce, int last_fd, uid_t uid)
     struct flock last_lock;
     struct lastlog last_login;
     int retval = PAM_SUCCESS;
+    char the_time[256];
     char *date = NULL;
     char *host = NULL;
     char *line = NULL;
@@ -176,18 +177,15 @@ last_login_read(pam_handle_t *pamh, int announce, int last_fd, uid_t uid)
 
            /* we want the date? */
            if (announce & LASTLOG_DATE) {
+               struct tm *tm, tm_buf;
                time_t ll_time;
-               char *the_time;
 
                ll_time = last_login.ll_time;
-               the_time = ctime(&ll_time);
-               the_time[strlen(the_time)-1] = '\0';    /* strip trailing '\n' */
+               tm = localtime_r (&ll_time, &tm_buf);
+               strftime (the_time, sizeof (the_time),
+                         " %a %b %e %H:%M:%S %Z %Y", tm);
 
-               if (asprintf(&date, " %s", the_time) < 0) {
-                   pam_syslog(pamh, LOG_ERR, "out of memory");
-                   retval = PAM_BUF_ERR;
-                   goto cleanup;
-               }
+               date = the_time;
            }
 
            /* we want & have the host? */
@@ -229,7 +227,6 @@ last_login_read(pam_handle_t *pamh, int announce, int last_fd, uid_t uid)
  cleanup:
     memset(&last_login, 0, sizeof(last_login));
     _pam_overwrite(date);
-    _pam_drop(date);
     _pam_overwrite(host);
     _pam_drop(host);
     _pam_overwrite(line);
index 64f4da7cd29bcd49e5592488f6936d6f2788c686..d91921731075e304b8df433eb3f872007e49cdf8 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr ""
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index e581957c5d04f1affff40637de047fe3604cfa01..82563a875a2b9802fc4249167d088d34b103e09a 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-12-12 13:14+0100\n"
 "Last-Translator: Tomas Mraz <t8m@centrum.cz>\n"
 "Language-Team: cs_CZ <cs@li.org>\n"
@@ -57,24 +57,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Nelze resetovat všechny uživatele nenulově\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr " z %.*s"
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr " na %.*s"
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr "Poslední přihlášení:%s%s%s"
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr "Vítejte na vašem novém účtu!"
 
index 468805ad33f13f1abf2fe711ec6151dab309d9c8..3d921db0693bf8211f6dd0b8f22f8a6461b29568 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-19 08:28+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-12-12 17:55+01:00\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -55,24 +55,24 @@ msgstr ""
 "%s: Es können nicht alle Benutzer auf Nicht-null zurückgesetzt werden\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:197
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr " von %.*s"
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:209
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr " auf %.*s"
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:218
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr "Letzte Anmeldung:%s%s%s"
 
-#: modules/pam_lastlog/pam_lastlog.c:224
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr "Willkommen in Ihrem neuen Account!"
 
index 472bc3d70c08838b208f5dc61b68b9083a2f84f2..c31554cb364d07cfc3fbcba2b50f29e5084a021b 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 HO:MI+ZONE\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -57,24 +57,24 @@ msgstr ""
 "cero\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 29bb9ba5005901438c9ad5c43c22924d91b181d5..317a30b7a87c1bcb6026cc4c6a1a16e44bcf0a14 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-09-17 12:27+0300\n"
 "Last-Translator: Ilkka Pirskanen <ilkka.pirskanen@kolumbus.fi>\n"
 "Language-Team: Finnish <fi@li.org>\n"
@@ -56,24 +56,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Ei voida palauttaa kaikkia käyttäjiä ei-nolliksi\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 609a8642016b4c66e1201113577f48f4c0c6028e..b7e5888c6718d951d9f053842155bacd779818ca 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 12:12+0000\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Impossible de réinitialiser tous les utilisateurs à non-zéro\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 7ab53aaa38d38054075346be7ae598e3f41a1b38..b0fc4105c73f40e93d22c91f98135f59a6decfb7 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM 0.80\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-07 02:59+0100\n"
 "Last-Translator: Szabolcs Varga <shirokuma@shirokuma.hu>\n"
 "Language-Team: hu\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Nem állítható vissza minden felhasználó nem nullára\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 810c72a48378d0e3a8c2b959dd141692133fd45a..0797a5d8fcfcc95ae23a111aee2abdde64264582 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 13:43-0000\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -55,24 +55,24 @@ msgstr ""
 "%s: Impossibile ripristinare tutti gli utenti a valori diversi da zero\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 8aa09c71d8653a218fd626a0c52f9d30031d8ff8..0665e202b2a356f3e9a6ef0c9d7e8a1594a139d1 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 11:52-0000\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: すべてのユーザを非ゼロにリセットできません\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index c72721ed1ed505f920f840bb6de7c1a85bf723d0..309f71bfb8229b25cda3b7f2f31b9b2188b7d60b 100644 (file)
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-13 22:44+0200\n"
 "Last-Translator: Olav Pettershagen <olav.pet@online.no>\n"
 "Language-Team:  <nb@li.org>\n"
@@ -55,24 +55,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Kan ikke tilbakestille alle brukere til non-zero\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index c20a37535b11d17d21562c2b4c9b9a242fd00867..3cdb3848341a95a40973373880e225926a222e25 100644 (file)
--- a/po/pa.po
+++ b/po/pa.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM.pa\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-06 08:34+0530\n"
 "Last-Translator: Amanpreet Singh Alam[ਆਲਮ] <amanpreetalam@yahoo.com>\n"
 "Language-Team: Panjabi <pa@li.org>\n"
@@ -57,24 +57,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr ""
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 22e974fa5362720071d30f546a9db84539935857..443aa9d5df8e85c5b9b35ce16b8b1cc850d1b284 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM TBD\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-23 15:22+0200\n"
 "Last-Translator: Piotr Bolek <pb@7bulls.com>\n"
 "Language-Team: Polish <i18n@suse.de>\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Nie można zresetować wszystkich użytkowników\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 3d5a9d837518745bdaae4d69f4efa5f728da39fe..763c5c90233be7efc4a9c0332148d0a6325016c4 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM-pt\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-07 00:41+0100\n"
 "Last-Translator: Antonio Cardoso Martins <digiplan@netvisao.pt>\n"
 "Language-Team: portuguese\n"
@@ -55,24 +55,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Não foi possível reiniciar todos os utilizadores para não zero\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 22b86bd99b9e5f99bfb116baaff02bf6aa758a3c..fdf640875ca9ab398e739b2fe35c23e69b625952 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux-PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 15:02+0000\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: Impossível redefinir todos os usuários para não-zero\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index 92b47e3130d4b9a3f82309465686f7afdc7419a8..9f0864998efb380c2406765c77507f0c3157f8bb 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux_PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 HO:MI+ZONE\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -53,24 +53,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: 无法将所有用户重设置为非零\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""
 
index cde36ca429c3bb0965dfbb828495ca7dea312ef8..d09796bef7e12758470511b868bce5d250b80870 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Linux_PAM\n"
 "Report-Msgid-Bugs-To: http://sourceforge.net/projects/pam\n"
-"POT-Creation-Date: 2005-12-12 18:34+0100\n"
+"POT-Creation-Date: 2005-12-20 22:26+0100\n"
 "PO-Revision-Date: 2005-08-18 12:12+0200\n"
 "Last-Translator: Novell Language <language@novell.com>\n"
 "Language-Team: Novell Language <language@novell.com>\n"
@@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n"
 msgstr "%s: 無法將所有使用者重新設定為非零\n"
 
 #. TRANSLATORS: " from <host>"
-#: modules/pam_lastlog/pam_lastlog.c:204
+#: modules/pam_lastlog/pam_lastlog.c:195
 #, c-format
 msgid " from %.*s"
 msgstr ""
 
 #. TRANSLATORS: " on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:215
+#: modules/pam_lastlog/pam_lastlog.c:207
 #, c-format
 msgid " on %.*s"
 msgstr ""
 
 #. TRANSLATORS: "Last login: <date> from <host> on <terminal>"
-#: modules/pam_lastlog/pam_lastlog.c:223
+#: modules/pam_lastlog/pam_lastlog.c:216
 #, c-format
 msgid "Last login:%s%s%s"
 msgstr ""
 
-#: modules/pam_lastlog/pam_lastlog.c:229
+#: modules/pam_lastlog/pam_lastlog.c:222
 msgid "Welcome to your new account!"
 msgstr ""