]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
More debug to use gettext
authorFrédéric Marchal <fmarchal@users.sourceforge.net>
Fri, 5 Mar 2010 15:37:30 +0000 (15:37 +0000)
committerFrédéric Marchal <fmarchal@users.sourceforge.net>
Fri, 5 Mar 2010 15:37:30 +0000 (15:37 +0000)
23 files changed:
configure.in
log.c
po/bg.po
po/ca.po
po/cs.po
po/de.po
po/el.po
po/es.po
po/fr.po
po/hu.po
po/id.po
po/it.po
po/ja.po
po/lv.po
po/nl.po
po/pl.po
po/pt.po
po/ro.po
po/ru.po
po/sk.po
po/sr.po
po/tr.po
po/uk.po

index 0d96e1ea0b4f6c1035d549db83fb803203caa03e..d42a1c24d7b77b96e95da0f9f4b9b634b2516078 100644 (file)
@@ -75,7 +75,7 @@ AC_CHECK_HEADERS(stdio.h stdlib.h string.h strings.h sys/time.h time.h unistd.h
                dirent.h sys/socket.h netdb.h arpa/inet.h sys/types.h netinet/in.h sys/stat.h \
                ctype.h gd.h gdfontl.h gdfontt.h gdfonts.h gdfontmb.h gdfontg.h iconv.h \
                errno.h sys/resource.h sys/wait.h stdarg.h inttypes.h limits.h locale.h \
-               execinfo.h ldap.h math.h)
+               execinfo.h ldap.h math.h libintl.h)
 
 AC_CHECK_LIB(gd, gdImagePng,LIBS="-lgd ${LIBS}"; HAVE_GD="yes", HAVE_GD="")
 AC_CHECK_LIB(ldap, ldap_init,LIBS="-lldap ${LIBS}"; HAVE_LDAP="yes", HAVE_LDAP="")
@@ -125,6 +125,11 @@ AC_CHECK_FUNCS(backtrace)
 AC_CHECK_FUNCS(symlink)
 AC_CHECK_FUNCS(lstat)
 
+dnl check for macros
+AC_CHECK_DECL(LC_MESSAGES,[AC_DEFINE(HAVE_LC_MESSAGES,1,[Have LC_MESSAGES])],[],[[#ifdef HAVE_LOCALE_H
+#include <locale.h>
+#endif]])
+
 dnl check for the rlim_t size
 AC_CHECK_SIZEOF(rlim_t,1,[#if HAVE_SYS_RESOURCE_H
 #include <sys/resource.h>
diff --git a/log.c b/log.c
index 857e3164d046a0f99e2e8dc85b26fa5699d35bd6..4f282760a4b7fa48090ae2eca311d6c96c5506e5 100644 (file)
--- a/log.c
+++ b/log.c
@@ -151,6 +151,16 @@ int main(int argc,char *argv[])
    struct userinfostruct *uinfo;
    struct userfilestruct *first_user_file, *ufile, *ufile1, *prev_ufile;
 
+#ifdef HAVE_LOCALE_H
+   setlocale(LC_TIME,"");
+#endif
+
+#if defined(ENABLE_NLS) && defined(HAVE_LOCALE_H) && defined(HAVE_LC_MESSAGES)
+   setlocale (LC_MESSAGES, "");
+   bindtextdomain (PACKAGE_NAME, LOCALEDIR);
+   textdomain (PACKAGE_NAME);
+#endif //ENABLE_NLS
+
    BgImage[0]='\0';
    LogoImage[0]='\0';
    LogoText[0]='\0';
@@ -322,16 +332,6 @@ int main(int argc,char *argv[])
    bzero(ExcludeString, sizeof(ExcludeString));
    first_user_file=NULL;
 
-#ifdef HAVE_LOCALE_H
-   setlocale(LC_TIME,"");
-#endif
-
-#if defined(ENABLE_NLS) && defined(HAVE_LOCALE_H) && defined(HAVE_LC_MESSAGES)
-   setlocale (LC_MESSAGES, "");
-   bindtextdomain (PACKAGE_NAME, LOCALEDIR);
-   textdomain (PACKAGE_NAME);
-#endif //ENABLE_NLS
-
    NAccessLog=0;
    for(x=0; x<MAXLOGS; x++)
       AccessLog[x][0]='\0';
@@ -470,11 +470,11 @@ int main(int argc,char *argv[])
       exit(2);
    }
 
-   if(debug) debuga("Init");
+   if(debug) debuga(_("Init"));
 
    if(ConfigFile[0] == '\0') sprintf(ConfigFile,"%s/sarg.conf",SYSCONFDIR);
    if(access(ConfigFile, R_OK) != 0) {
-      debuga("Cannot open config file: %s - %s",ConfigFile,strerror(errno));
+      debuga(_("Cannot open config file: %s - %s"),ConfigFile,strerror(errno));
       exit(1);
    }
 
index a6f2ceaef1020f40e40d063dc005a23e16ef99d6..07bcd8f24bd107c51eca21ed33987ca9de86fe05 100644 (file)
--- a/po/bg.po
+++ b/po/bg.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Не мога да намеря временния файл"
 msgid "Removing old report file"
 msgstr "Изтриване на стария файл с отчета"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Не мога да намеря log файла"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 9463b0fed387bb36889044ce9c44eda420cc9f44..1905f4e1ed3d064e5033bb34065fd7427b91b9a0 100644 (file)
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "No es pot obrir l'arxiu temporal"
 msgid "Removing old report file"
 msgstr "normal"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "No es pot obrir l'arxiu de log"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 20083246a8c0096f8b954c573f0afdd736c8354b..c7b1e4ea5b857911a7b634a7b9367cd013eb3abe 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nemohu otevřít přechodný soubor"
 msgid "Removing old report file"
 msgstr "Odstraňuji starý soubor s přehledem"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nemohu otevřít žurnál"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index f933157055135894e3626cf2dee0b60b95ed7298..c55f35438df87fddf737cbda102cd5ab7d075f32 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Kann temporaere Datei nicht oeffnen"
 msgid "Removing old report file"
 msgstr "Removing old report file"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Kann Zugriffsprotokoll nicht oeffnen"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index f08c43d69f2fb92cd276b56285efc962962390de..5372686fcc88e3e2d73b93ebd9842e363b82426e 100644 (file)
--- a/po/el.po
+++ b/po/el.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Δεν μπορώ να διαβάσω τα προσωρινά αρχεί
 msgid "Removing old report file"
 msgstr "Αφαίρεση παλιού αρχείου αναφορών"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index e5da348fae027d7399598805bbca4e30d23ecf13..64da2d9a2b60f21a07eda577eb667d077138f5a4 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -531,6 +531,16 @@ msgstr "No se puede abrir archivo temporal"
 msgid "Removing old report file"
 msgstr "Borrando archivos viejos del reporte"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "No se puede abrir archivo de log"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 56f98b01bd68b88bf7e4faf0059f2b9afac26eed..caa70641eb1b2b76b8dc58f8e5c8b4f0704e1e35 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+0100\n"
 "PO-Revision-Date: 2010-03-05 11:36+0100\n"
 "Last-Translator: Frédéric Marchal <fmarchal@perso.be>\n"
 "Language-Team: French <traduc@traduc.org>\n"
@@ -137,7 +137,9 @@ msgstr "Lecture du journal des accès"
 #: realtime.c:210 realtime.c:214 realtime.c:218 realtime.c:222 splitlog.c:54
 #, c-format
 msgid "Maybe you have a broken record or garbage in your %s file"
-msgstr "Vous avez probablement un enregistrement erroné ou inattendu dans votre fichier %s"
+msgstr ""
+"Vous avez probablement un enregistrement erroné ou inattendu dans votre "
+"fichier %s"
 
 #: dansguardian_log.c:139 dansguardian_report.c:101 html.c:283 log.c:909
 #: log.c:968 realtime.c:227 topsites.c:228
@@ -504,6 +506,16 @@ msgstr "Impossible d'ouvrir le fichier temporaire"
 msgid "Removing old report file"
 msgstr "Supprime le fichier des anciennes statistiques"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr "Démarrage"
+
+#: log.c:477
+#, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Impossible d'ouvrir le fichier de configuration : %s - %s"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
@@ -729,7 +741,9 @@ msgstr "exclus"
 #: log.c:1541
 #, fuzzy
 msgid "Log with mixed records format (squid and common log)"
-msgstr "Le journal contient des enregistrements de plusieurs formats (squid et common log)"
+msgstr ""
+"Le journal contient des enregistrements de plusieurs formats (squid et "
+"common log)"
 
 #: log.c:1544
 #, fuzzy
@@ -1294,7 +1308,8 @@ msgstr ""
 msgid ""
 "January,February,March,April,May,June,July,August,September,October,November,"
 "December"
-msgstr "Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,"
+msgstr ""
+"Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,"
 "Decembre"
 
 #: util.c:478
@@ -1358,7 +1373,8 @@ msgstr ""
 
 #: util.c:1145
 #, c-format
-msgid "The date range passed as argument is not formated as dd/mm/yyyy-dd/mm/yyyy"
+msgid ""
+"The date range passed as argument is not formated as dd/mm/yyyy-dd/mm/yyyy"
 msgstr ""
 
 #: util.c:1195
@@ -1425,4 +1441,3 @@ msgstr ""
 #, c-format
 msgid "Not enough memory to read one more line from the input log file"
 msgstr ""
-
index 149632be71f1049922108be406eed4bbdf43dc20..56e4be286b69559e7d706231561f6bf179687343 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nem tudom megnyitni az ideiglenes file-t"
 msgid "Removing old report file"
 msgstr "Removing old report file"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nem tudom megnyitni a log file-t"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index c08560a99c6a5c11723b72c098d5fb5489140c75..8ffb0039a271975981260bafe85fc7f3935148e3 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Tak bisa buka file sementara"
 msgid "Removing old report file"
 msgstr "Membuang file laporan lama"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Tak bisa buka file log"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index ad286f562d72cfd0bae0f79c90e391894bc92f85..8d9b9e01893f4f975ec841976d0dea0ed358cd1f 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Non riesco a aprire il file temporaneo"
 msgid "Removing old report file"
 msgstr "Removing old report file"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Non riesco a aprire il log file"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 82ec9657027b34fba89b50d808a7bbc0982f8774..f8bdab8808ed93d3aa20bc6c6e1c5a0ddc76eed9 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "テンポラリファイルをオープンできません"
 msgid "Removing old report file"
 msgstr "reverse"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "ログファイルをオープンできません"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 16313cdabde107a9040b8d23218afef805bbf61c..5d289c69a5a94df68b663e41e52ba36637535e9b 100644 (file)
--- a/po/lv.po
+++ b/po/lv.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nevar atvērt pagaidu failu"
 msgid "Removing old report file"
 msgstr "Dzēšu vecos atskaišu failus"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nevar atvērt log failu"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 685ed56d0252dc7a2636404578ba9ee45762a922..8b28b99fdad5076e293d90812dc53fb98370a080 100644 (file)
--- a/po/nl.po
+++ b/po/nl.po
@@ -10,7 +10,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -532,6 +532,16 @@ msgstr "Kan het tijdelijke bestand niet openen"
 msgid "Removing old report file"
 msgstr "Verwijderen oude rapport bestand"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Kan het log bestand niet openen"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index ea870e22e8433fca2e6924030586e469a45f7506..d861f58fa946a3d47a419582c9058b1f458c6c63 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nie moїna otworzyж pliku przejњciowego"
 msgid "Removing old report file"
 msgstr "Usuniecie pliku starego raportu"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nie moїna otworzyж pliku logowania"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 2ad26f9eae237828b255c185193c01edb03e62b0..79577e1e79606da062a1fff2fe1c94dc13cf238d 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Erro no open do arquivo temporario"
 msgid "Removing old report file"
 msgstr "Removendo relatorio antigo"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Erro no open do arquivo log"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index de9d128a1577bc6adf6e98e8463349a46796be5c..4e35d89614bbe017350deaa65bbd763106e99eba 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nu poate fi creat fisierul temporar"
 msgid "Removing old report file"
 msgstr "Se sterge vechiul raport"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nu poate fi deschis fisierul de accese"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 3a386115dcaa596187810f5a125dc74d8731e970..bbb9abed5c4bb12b2c6b2402348fca707eed621a 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Не могу открыть временный файл"
 msgid "Removing old report file"
 msgstr "Удаляю старый файл отчета"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Не могу открыть файл журнала"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index d3059d36d12c5159068b01efd68abebdfe963864..3fe395ddf55709213fb3199569379fa741e43516 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nemôžem otvoríť dočasný súbor"
 msgid "Removing old report file"
 msgstr "Odstraňujem starý súbor s prehľadom"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nemôžem otvoríť žurnál"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 0374fdbd0bb6f76f9f6617f1198bd0e95b8ab31e..9e47e85f6d54c564dc6d0d64517c805dd7581efc 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Nemoguce otvoriti privremanu datoteku"
 msgid "Removing old report file"
 msgstr "Sklonjen stari izvestaj"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Nemoguce otvoriti log datoteku"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index 4cd3d7da00aee73f06a774b8db57134ec02c58ff..d5175cfb48f3dff9c7feb0607b875e39f08dfbd7 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -530,6 +530,16 @@ msgstr "Gecici dosya acilamadi"
 msgid "Removing old report file"
 msgstr "Eski rapor dosya(lar) siliniyor"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Kutuk dosyasi acilamadi"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"
index d83c670ce6f047c3a38f4ed18c432c6dbbead588..8cef1503d0d08d4fa2cbf1f17b8e22d371d8eb05 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-03-05 08:32+0100\n"
+"POT-Creation-Date: 2010-03-05 16:33+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"
@@ -529,6 +529,16 @@ msgstr "Не можу відкрити тимчасовий файл"
 msgid "Removing old report file"
 msgstr "Знищую старий файл звіту"
 
+#: log.c:473
+#, c-format
+msgid "Init"
+msgstr ""
+
+#: log.c:477
+#, fuzzy, c-format
+msgid "Cannot open config file: %s - %s"
+msgstr "Не можу відкрити файл журналу"
+
 #: log.c:595 log.c:639
 #, fuzzy
 msgid "Parameters"