From b1d9b2322daa439194aaa53037fe27a0ccc0596b Mon Sep 17 00:00:00 2001 From: Thorsten Kukuk Date: Tue, 20 Dec 2005 21:28:06 +0000 Subject: Relevant BUGIDs: Purpose of commit: new feature Commit summary: --------------- 2005-12-20 Thorsten Kukuk * modules/pam_lastlog/pam_lastlog.c (last_login_read): Use strftime instead of ctime. --- ChangeLog | 7 +++++++ modules/pam_lastlog/pam_lastlog.c | 15 ++++++--------- po/Linux-PAM.pot | 10 +++++----- po/cs.po | 10 +++++----- po/de.po | 10 +++++----- po/es.po | 10 +++++----- po/fi.po | 10 +++++----- po/fr.po | 10 +++++----- po/hu.po | 10 +++++----- po/it.po | 10 +++++----- po/ja.po | 10 +++++----- po/nb.po | 10 +++++----- po/pa.po | 10 +++++----- po/pl.po | 10 +++++----- po/pt.po | 10 +++++----- po/pt_BR.po | 10 +++++----- po/zh_CN.po | 10 +++++----- po/zh_TW.po | 10 +++++----- 18 files changed, 93 insertions(+), 89 deletions(-) diff --git a/ChangeLog b/ChangeLog index fa339183..c9aeb1d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-12-20 Thorsten Kukuk + + * modules/pam_lastlog/pam_lastlog.c (last_login_read): Use + strftime instead of ctime. + + * po/de.po: Fix typo. + 2005-12-19 Thorsten Kukuk * libpam/pam_syslog.c: Define LOG_AUTHPRIV as LOG_AUTH on Solaris. diff --git a/modules/pam_lastlog/pam_lastlog.c b/modules/pam_lastlog/pam_lastlog.c index 947d3c2d..24a13ef6 100644 --- a/modules/pam_lastlog/pam_lastlog.c +++ b/modules/pam_lastlog/pam_lastlog.c @@ -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); diff --git a/po/Linux-PAM.pot b/po/Linux-PAM.pot index 64f4da7c..d9192173 100644 --- a/po/Linux-PAM.pot +++ b/po/Linux-PAM.pot @@ -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 \n" "Language-Team: LANGUAGE \n" @@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n" msgstr "" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/cs.po b/po/cs.po index e581957c..82563a87 100644 --- 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 \n" "Language-Team: cs_CZ \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr " z %.*s" #. TRANSLATORS: " on " -#: 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: from on " -#: 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!" diff --git a/po/de.po b/po/de.po index 468805ad..3d921db0 100644 --- 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 \n" "Language-Team: Novell Language \n" @@ -55,24 +55,24 @@ msgstr "" "%s: Es können nicht alle Benutzer auf Nicht-null zurückgesetzt werden\n" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:197 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr " von %.*s" #. TRANSLATORS: " on " -#: 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: from on " -#: 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!" diff --git a/po/es.po b/po/es.po index 472bc3d7..c31554cb 100644 --- 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 \n" "Language-Team: Novell Language \n" @@ -57,24 +57,24 @@ msgstr "" "cero\n" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/fi.po b/po/fi.po index 29bb9ba5..317a30b7 100644 --- 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 \n" "Language-Team: Finnish \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/fr.po b/po/fr.po index 609a8642..b7e5888c 100644 --- 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 \n" "Language-Team: Novell Language \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/hu.po b/po/hu.po index 7ab53aaa..b0fc4105 100644 --- 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 \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/it.po b/po/it.po index 810c72a4..0797a5d8 100644 --- 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 \n" "Language-Team: Novell Language \n" @@ -55,24 +55,24 @@ msgstr "" "%s: Impossibile ripristinare tutti gli utenti a valori diversi da zero\n" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/ja.po b/po/ja.po index 8aa09c71..0665e202 100644 --- 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 \n" "Language-Team: Novell Language \n" @@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n" msgstr "%s: すべてのユーザを非ゼロにリセットできません\n" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/nb.po b/po/nb.po index c72721ed..309f71bf 100644 --- 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 \n" "Language-Team: \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/pa.po b/po/pa.po index c20a3753..3cdb3848 100644 --- 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[ਆਲਮ] \n" "Language-Team: Panjabi \n" @@ -57,24 +57,24 @@ msgid "%s: Can't reset all users to non-zero\n" msgstr "" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/pl.po b/po/pl.po index 22e974fa..443aa9d5 100644 --- 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 \n" "Language-Team: Polish \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/pt.po b/po/pt.po index 3d5a9d83..763c5c90 100644 --- 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 \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 22b86bd9..fdf64087 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.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 15:02+0000\n" "Last-Translator: Novell Language \n" "Language-Team: Novell Language \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 " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 92b47e31..9f086499 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.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 \n" "Language-Team: Novell Language \n" @@ -53,24 +53,24 @@ msgid "%s: Can't reset all users to non-zero\n" msgstr "%s: 无法将所有用户重设置为非零\n" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" diff --git a/po/zh_TW.po b/po/zh_TW.po index cde36ca4..d09796be 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.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+0200\n" "Last-Translator: Novell Language \n" "Language-Team: Novell Language \n" @@ -54,24 +54,24 @@ msgid "%s: Can't reset all users to non-zero\n" msgstr "%s: 無法將所有使用者重新設定為非零\n" #. TRANSLATORS: " from " -#: modules/pam_lastlog/pam_lastlog.c:204 +#: modules/pam_lastlog/pam_lastlog.c:195 #, c-format msgid " from %.*s" msgstr "" #. TRANSLATORS: " on " -#: modules/pam_lastlog/pam_lastlog.c:215 +#: modules/pam_lastlog/pam_lastlog.c:207 #, c-format msgid " on %.*s" msgstr "" #. TRANSLATORS: "Last login: from on " -#: 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 "" -- cgit v1.2.3