]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Fix the exclusion of status codes to exclude more than one code
authorFrédéric Marchal <fmarchal@users.sourceforge.net>
Mon, 3 May 2010 09:38:04 +0000 (09:38 +0000)
committerFrédéric Marchal <fmarchal@users.sourceforge.net>
Mon, 3 May 2010 09:38:04 +0000 (09:38 +0000)
24 files changed:
ChangeLog
exclude.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
util.c

index 81d65b78b45a0f1115774a6a6e748c69f45b1680..2b656412aa3c58e9deb30b50a6278929bb814c88 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
 SARG ChangeLog
 
-Apr-13-2009 Version 2.3-pre1
+May-3-2009 Version 2.3-pre2
                - LDAP usertab added. 
                  Now you can have your users in a LDAP Server.
                  Use these tags in sarg.conf: LDAPHost, LDAPPort, LDAPBindDN, LDAPBindPW,
@@ -23,6 +23,7 @@ Apr-13-2009 Version 2.3-pre1
                - Check the correct writing of the HTML files (thanks to Markus Elfring).
                - Use the word "Redirector" instead of mentioning explicitly squidGuard in the reports as at least Rejik is compatible with sarg (thanks to Maxim Britov).
                - The date range passed as argument is not restricted to the actual range covered by the log files any more.
+               - Fix the exclusion of status codes to exclude more than one code.
 
 Feb-10-2010 Version 2.2.7.1
                - Fixed compilation error reported by some compilers due to an sizeof in a fprintf (thanks to Maxim Britov and Renato Botelho).
index b50fbbfa6cfbb3881ce13c374573f755d03b4a05..586a7cdb2253e80bbdcd12f7f8d7c317368ad392 100644 (file)
--- a/exclude.c
+++ b/exclude.c
@@ -128,7 +128,6 @@ static void store_exclude_url(char *url,int length)
 
 void gethexclude(const char *hexfile, int debug)
 {
-
    FILE *fp_ex;
    char buf[255];
    int i;
@@ -143,7 +142,7 @@ void gethexclude(const char *hexfile, int debug)
       exit(EXIT_FAILURE);
    }
    if(debug)
-      debuga(_("Loading exclude file from: %s\n"),hexfile);
+      debuga(_("Loading exclude host file from: %s\n"),hexfile);
 
    if ((fp_ex = fopen(hexfile, "r")) == NULL) {
       debuga(_("(gethexclude) Cannot open file %s - %s\n"),hexfile,strerror(errno));
@@ -151,7 +150,7 @@ void gethexclude(const char *hexfile, int debug)
    }
 
    while(fgets(buf,sizeof(buf),fp_ex)!=NULL){
-      if(strchr(buf,'#') != NULL)
+      if(buf[0]=='#')
          continue;
       fixendofline(buf);
       ip_size=0x60  | 0x04;
@@ -217,7 +216,6 @@ void gethexclude(const char *hexfile, int debug)
    }
 
    fclose(fp_ex);
-
    return;
 }
 
index 5521533131de5a734b9d9ce49d6aca787e57e8d8..c45ae713fcd8c618b7b214ec4d5c2a4cc6734f3d 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Зарежда файла с изключенията от"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Зарежда файла с изключенията от"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "грешка malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Генерирано от"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "на"
@@ -2281,88 +2286,97 @@ msgstr "Не мога да намеря файла"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "грешка malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Не мога да намеря log файла"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "грешка malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index cf608431d9e8d1a124644ff407dfddfc4a903f22..5cd0ddcbacd8fc314db97cde5656537c453dea07 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Llegint log de l'agent d'usuari"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Llegint log de l'agent d'usuari"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "Carregant configuració desde"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "TOTAL"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "Generat per"
@@ -2281,88 +2286,97 @@ msgstr "reports"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "Carregant configuració desde"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "Carregant configuració desde"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 7f933282174407408abb2e345a8d215f4a7ac96a..366845a6d806d13c8080f99c05c1864e8cba8918 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Načítám soubor vyjímek z"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Načítám soubor vyjímek z"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "chyba malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Generoval"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "dne"
@@ -2281,88 +2286,97 @@ msgstr "Nemohu otevřít soubor"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "chyba malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "chyba malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index e3df40d6d45a22312652db05490d3b2895b81419..558529d4db94f9c8a1f700098221eca991bc4f79 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Lade Ausschlussdatei aus"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Lade Ausschlussdatei aus"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "Speicherallokationsfehler"
@@ -1700,12 +1705,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Erstellt mit"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "am"
@@ -2283,88 +2288,97 @@ msgstr "Kann Datei nicht oeffnen"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "Speicherallokationsfehler"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "Speicherallokationsfehler"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 1c361e74e38884f420c0ece97ea730acafc6df93..a919b5c878d52cff84e08158bddc2f50f7df7f4b 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Φόρτωση αρχείου εξαιρέσεων από"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Φόρτωση αρχείου εξαιρέσεων από"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "σφάλμα μνήμης"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Δημιουργήθηκε από"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "στις"
@@ -2281,88 +2286,97 @@ msgstr "Δεν μπορώ να διαβάσω το αρχείο"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "σφάλμα μνήμης"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "σφάλμα μνήμης"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index f9ba029b5c6e1107d18dbabe0477c4edda086b93..156d52a802b4afd3a07b632aecf0aca30f6124c4 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -454,32 +454,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Cargando archivo de exclusiones desde"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Cargando archivo de exclusiones desde"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "error malloc"
@@ -1699,12 +1704,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Generado por"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "el"
@@ -2282,88 +2287,97 @@ msgstr "No se puede abrir archivo"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "error malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "No se puede abrir archivo de log"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "error malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 94c216a18a18910673c0e7e3da6e9f9038261237..af7e849a54ab54c945f939af2f3a230743509986 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,16 +1,15 @@
-# translation of fr.po to French
+# translation of sarg to French
 # French translations for sarg.
 # Copyright (C) 2010 Free Software Foundation, Inc.
 # This file is distributed under the same license as the sarg package.
 #
-# fmarchal <fmarchal@users.sourceforge.net>, 2010.
 # Frédéric Marchal <fmarchal@perso.be>, 2010.
 msgid ""
 msgstr ""
-"Project-Id-Version: fr\n"
+"Project-Id-Version: sarg 2.3-pre2\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-13 11:33+0200\n"
-"PO-Revision-Date: 2010-04-13 11:36+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\n"
+"PO-Revision-Date: 2010-05-03 11:35+0200\n"
 "Last-Translator: Frédéric Marchal <fmarchal@perso.be>\n"
 "Language-Team: French <traduc@traduc.org>\n"
 "MIME-Version: 1.0\n"
@@ -439,32 +438,37 @@ msgstr "Pas assez de mémoire pour stocker les adresses IP exclues\n"
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr "Pas assez de mémoire pour stocker les URL exclues\n"
 
-#: exclude.c:142
+#: exclude.c:141
 #, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Impossible d'ouvrir le fichier exclude_hosts : %s - %s\n"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, c-format
-msgid "Loading exclude file from: %s\n"
-msgstr "Chargement du fichier des exclusions depuis: %s\n"
+msgid "Loading exclude host file from: %s\n"
+msgstr "Chargement du fichier des exclusions d'hôtes depuis: %s\n"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "(gethexclude) Impossible d'ouvrir le fichier %s - %s\n"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr "Les adresses IPv6 ne sont pas supportées (trouvée dans %s)\n"
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Chargement du fichier des exclusions depuis: %s\n"
+
+#: exclude.c:331 log.c:1668
 #, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Impossible de déterminer la taille du fichier %s\n"
 
-#: exclude.c:340
+#: exclude.c:338
 #, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "erreur d'allocation mémoire (%ld octets nécessaires)\n"
@@ -1163,7 +1167,9 @@ msgstr "Lecture du journal des accès: depuis stdin\n"
 msgid ""
 "Cannot get the modification time of input log file %s (%s). Processing it "
 "anyway\n"
-msgstr "La date de dernière modification du journal %s ne peut pas être déterminée (%s). Il est tout de même traité\n"
+msgstr ""
+"La date de dernière modification du journal %s ne peut pas être déterminée (%"
+"s). Il est tout de même traité\n"
 
 #: log.c:737
 #, c-format
@@ -1702,11 +1708,11 @@ msgstr "impossible de préparer la commande de tri pour trier le fichier %s\n"
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "(smartfilter) Impossible d'ouvrir le fichier %s\n"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 msgid "Generated by"
 msgstr "Généré par"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 msgid "on"
 msgstr "le"
 
@@ -2282,42 +2288,47 @@ msgstr "Erreur d'écriture du nombre total de lignes dans %s - %s\n"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Échec à la fermeture de %s après l'écriture du nombre total de lignes- %s\n"
 
-#: util.c:1291
+#: util.c:1293
 #, c-format
-msgid "malloc error (1024)\n"
-msgstr "erreur d'allocation mémoire (1024)\n"
+msgid "malloc error (%d)\n"
+msgstr "erreur d'allocation mémoire (%d)\n"
 
-#: util.c:1297
+#: util.c:1299
 #, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "(util) Impossible d'ouvrir le fichier %s (exclude_codes)\n"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr "Trop de codes à exclure dans le fichier %s\n"
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr "Impossible de déterminer l'espace disque car le chemin %s%s est trop long\n"
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr "Impossible de déterminer l'espace disque avec la commande %s\n"
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr "Impossible de déterminer l'espace disque avec la commande %s\n"
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr "La commande %s a échoué\n"
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr "SARG: CODE MALICIEUX DÉTECTÉ.\n"
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
@@ -2326,42 +2337,42 @@ msgstr ""
 "SARG: Je pense que quelqu'un essaie d'exécuter un code arbitraire sur votre "
 "système au travers de sarg.\n"
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr "SARG: Veuillez contrôler vos fichiers access.log ou useragent.log.\n"
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr "SARG: traitement arrêté. Aucune action entreprise.\n"
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr "répertoire temporaire trop long: %s/sarg\n"
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr "Version de SARG: %s\n"
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr "le nom du répertoire à effacer est trop long: %s/%s\n"
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr "Impossible d'obtenir les stat de %s\n"
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Impossible d'effacer %s - %s\n"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr "Type de chemin %s inconnu\n"
index 5a995e9c4879ab618a79cc1305d58875142d2cdc..f82d71d231600bbbdfc714b2a05177a2f0acfb64 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Kizaró file beolvasása a"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Kizaró file beolvasása a"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc hiba"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Készítette:"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "idő:"
@@ -2281,88 +2286,97 @@ msgstr "Megnyithatatlan file"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc hiba"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc hiba"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 46e939bd29538ac52011cb440b07bf9d0bc3a97e..228b77dc4d79e9f3035836506deb4ad984a51641 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Tak bisa buka file log"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Menyertakan file exclude dari"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Tak bisa buka file log"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Menyertakan file exclude dari"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Tak bisa buka file log"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "kesalahan malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Tak bisa buka file log"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Dibuat oleh"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "pada"
@@ -2281,88 +2286,97 @@ msgstr "Tak bisa buka file"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Tak bisa buka file log"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "kesalahan malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Tak bisa buka file log"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Tak bisa buka file log"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "kesalahan malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 30f3dd9c28ed0a0e1ab07a0538a73139e4d49949..3ea8e781fab8579c94129a44dc9afca2f4c3bc82 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Caricamento exclude file da"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Caricamento exclude file da"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc error"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Generato da"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "il"
@@ -2281,88 +2286,97 @@ msgstr "Non riesco ad aprire il file"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc error"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Non riesco a aprire il log file"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc error"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 6c9327e6f2136cdec81b0a31c7bc324c44260472..7e9b99f1792e1b839a67d915b2d47848eafb44c9 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "以下から排除するファイルを読み込んでいます"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "以下から排除するファイルを読み込んでいます"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc error"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "エージェント"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "合計"
@@ -2281,88 +2286,97 @@ msgstr "ファイルをオープンできません"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc error"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "ログファイルをオープンできません"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc error"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "Authentication failures"
index fcba916f0709c6b4cc243c819da44593080d2186..931c33832822f728fd8b43d14f7f8415854725fc 100644 (file)
--- a/po/lv.po
+++ b/po/lv.po
@@ -7,14 +7,15 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3-pre1\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\n"
 "PO-Revision-Date: 2010-04-25 20:35+0300\n"
 "Last-Translator: Juris Valdovskis <juris@dc.lv>\n"
 "Language-Team: Latvian <translation-team-lv@lists.sourceforge.net>\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%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
+"2);\n"
 
 #: auth.c:42
 #, c-format
@@ -453,32 +454,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Ielādēju izņēmumu failu no"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Ielādēju izņēmumu failu no"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc kļūda"
@@ -1073,7 +1079,7 @@ msgid "                     Date format (-g) = Sites & Users (yyyy/ww)\n"
 msgstr ""
 
 #: log.c:613 log.c:642
-#, fuzzy,c-format
+#, fuzzy, c-format
 msgid "                       IP report (-i) = %s\n"
 msgstr "                      IP atskaite (-i) = %s\n"
 
@@ -1698,12 +1704,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Ģenerēts ar"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "uz"
@@ -2281,88 +2287,97 @@ msgstr "Nevar atvērt failu"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc kļūda"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nevar atvērt log failu"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc kļūda"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index c574388025cbd4316466619870b56a32f8d7c8c5..f8f1e00dde7658531d22401223a34e374bed5b65 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -455,32 +455,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Laden uitzondering bestand uit"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Laden uitzondering bestand uit"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc error"
@@ -1700,12 +1705,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Gegenereerd door"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "op"
@@ -2283,88 +2288,97 @@ msgstr "Kan bestand niet openen"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc error"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Kan het log bestand niet openen"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc error"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index e4f904e5bf00673889e9c9fb39505f34d73264b7..ce76f7a72fd5bb13ef14747d7b333a71c5bfdb86 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Czytam plik wykluczenia z"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Czytam plik wykluczenia z"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "Bі№d malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Wygenerowany przez"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "o"
@@ -2281,88 +2286,97 @@ msgstr "Nie moїna otworzyж pliku"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "Bі№d malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "Bі№d malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 59e0edf3bcde30c4982c19eba74a912c34c14bdc..138da12602f769694a48d67c3329129864723045 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Carregando arquivo de exclusao"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Carregando arquivo de exclusao"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "erro no malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Gerado por"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "em"
@@ -2281,88 +2286,97 @@ msgstr "Erro no open do arquivo"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "erro no malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Erro no open do arquivo log"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "erro no malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index c1538f865176a71166094a81403e375af1fb9a25..ecd5b040ec0fc9a43fcc0a3bdc25a6d23268a8c7 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Se incarca fisierul de excluderi din"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Se incarca fisierul de excluderi din"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "eroare la apelul malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Generat de"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "la"
@@ -2281,88 +2286,97 @@ msgstr "Nu poate fi deshis fisierul"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "eroare la apelul malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "eroare la apelul malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 081ea59425c0c339d547789168eabcbe736df44c..3a55d14ffcc60dca2335ec0c291cea5c43df7ff6 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Загрузка исключений из"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Загрузка исключений из"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "ошибка malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Сгенерирован"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "на"
@@ -2281,88 +2286,97 @@ msgstr "Не могу открыть файл"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "ошибка malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Не могу открыть файл журнала"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "ошибка malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 5f3ad7b40c2509a759acdb0db3395de4500948ef..ec6a2686d3155d7d9a3eaa1012ae981415772c9b 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Načítávam súbor výnimok z"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Načítávam súbor výnimok z"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "chyba malloc"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Generoval"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "dňa"
@@ -2281,88 +2286,97 @@ msgstr "Nedá sa otvoriť súbor"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "chyba malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "chyba malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index 239e16708543a43804ad7f918bb49bf516bc0b9c..ea94bfa13b3300fa38e3dc58c00be3326608daa4 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Ucitavanje exclude datoteke iz"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Ucitavanje exclude datoteke iz"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc greska"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Generisano od"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "on"
@@ -2281,88 +2286,97 @@ msgstr "Nemoguce otvoriti datoteku ili je los putokaz"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc greska"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc greska"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index cb41fc21fab1b0a3c20f301a13a0c8b9f46c2130..48de8307992552b1245b4e27e53a9ff511cdd23b 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -453,32 +453,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Exclude dosyasi okunuyor"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Exclude dosyasi okunuyor"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "malloc hatasi"
@@ -1698,12 +1703,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Yaratilma Tarihi"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "ile"
@@ -2281,88 +2286,97 @@ msgstr "Dosya acilamiyor"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "malloc hatasi"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "malloc hatasi"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
index f80bc8068358583ccc53ee94ebd1f67274b934e9..31dc0f0448fdbe03302dc1f41824c9bd5f90e219 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-04-13 11:33+0200\n"
+"POT-Creation-Date: 2010-05-03 11:21+0200\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"
@@ -452,32 +452,37 @@ msgstr ""
 msgid "Not enough memory to store the excluded URLs\n"
 msgstr ""
 
-#: exclude.c:142
+#: exclude.c:141
 #, fuzzy, c-format
 msgid "Cannot open exclude_hosts file: %s - %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: exclude.c:146 exclude.c:323
+#: exclude.c:145
 #, fuzzy, c-format
-msgid "Loading exclude file from: %s\n"
+msgid "Loading exclude host file from: %s\n"
 msgstr "Завантаження виключень їз"
 
-#: exclude.c:149 exclude.c:326
+#: exclude.c:148 exclude.c:324
 #, fuzzy, c-format
 msgid "(gethexclude) Cannot open file %s - %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: exclude.c:211
+#: exclude.c:210
 #, c-format
 msgid "IPv6 addresses are not supported (found in %s)\n"
 msgstr ""
 
-#: exclude.c:333 log.c:1668
+#: exclude.c:321
+#, fuzzy, c-format
+msgid "Loading exclude file from: %s\n"
+msgstr "Завантаження виключень їз"
+
+#: exclude.c:331 log.c:1668
 #, fuzzy, c-format
 msgid "Cannot get the size of file %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: exclude.c:340
+#: exclude.c:338
 #, fuzzy, c-format
 msgid "malloc error (%ld bytes required)\n"
 msgstr "Помилка malloc"
@@ -1697,12 +1702,12 @@ msgstr ""
 msgid "(smartfilter) Cannot open log file %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "Generated by"
 msgstr "Згенерований"
 
-#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1481
+#: smartfilter.c:130 smartfilter.c:184 smartfilter.c:194 util.c:1491
 #, fuzzy
 msgid "on"
 msgstr "на"
@@ -2280,88 +2285,97 @@ msgstr "Не можу відкрити файл"
 msgid "Failed to close %s after writing the total line - %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: util.c:1291
+#: util.c:1293
 #, fuzzy, c-format
-msgid "malloc error (1024)\n"
+msgid "malloc error (%d)\n"
 msgstr "Помилка malloc"
 
-#: util.c:1297
+#: util.c:1299
 #, fuzzy, c-format
 msgid "(util) Cannot open file %s (exclude_codes)\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: util.c:1453
+#: util.c:1308
+#, c-format
+msgid "Too many codes to exclude in file %s\n"
+msgstr ""
+
+#: util.c:1463
 #, c-format
 msgid "Cannot get disk space because the path %s%s is too long\n"
 msgstr ""
 
-#: util.c:1457
+#: util.c:1467
 #, c-format
 msgid "Cannot get disk space with command %s\n"
 msgstr ""
 
-#: util.c:1461
+#: util.c:1471
 #, c-format
 msgid "Cannot get disk size with command %s\n"
 msgstr ""
 
-#: util.c:1466
+#: util.c:1476
 #, c-format
 msgid "The command %s failed\n"
 msgstr ""
 
-#: util.c:1573
+#: util.c:1583
 #, c-format
 msgid "SARG: MALICIUS CODE DETECTED.\n"
 msgstr ""
 
-#: util.c:1574
+#: util.c:1584
 #, c-format
 msgid ""
 "SARG: I think someone is trying to execute arbitrary code in your system "
 "using sarg.\n"
 msgstr ""
 
-#: util.c:1575
+#: util.c:1585
 #, c-format
 msgid "SARG: please review your access.log and/or your useragent.log file.\n"
 msgstr ""
 
-#: util.c:1576
+#: util.c:1586
 #, c-format
 msgid "SARG: process stoped. No actions taken.\n"
 msgstr ""
 
-#: util.c:1580
+#: util.c:1590
 #, c-format
 msgid "temporary directory too long: %s/sarg\n"
 msgstr ""
 
-#: util.c:1642
+#: util.c:1652
 #, c-format
 msgid "SARG Version: %s\n"
 msgstr ""
 
-#: util.c:1674
+#: util.c:1684
 #, c-format
 msgid "directory name to delete too long: %s/%s\n"
 msgstr ""
 
-#: util.c:1683
+#: util.c:1693
 #, c-format
 msgid "cannot stat %s\n"
 msgstr ""
 
-#: util.c:1688 util.c:1701
+#: util.c:1698 util.c:1711
 #, fuzzy, c-format
 msgid "cannot delete %s - %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: util.c:1694
+#: util.c:1704
 #, c-format
 msgid "unknown path type %s\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "malloc error (1024)\n"
+#~ msgstr "Помилка malloc"
+
 #, fuzzy
 #~ msgid "SQUIDGUARD"
 #~ msgstr "SQUIDGUARD"
diff --git a/util.c b/util.c
index ddbd3be9f7058e9ab65c5eac6ef5674ac27459b7..ac3e50546a3279ddc2177f109126e9e9b4cedf5a 100644 (file)
--- a/util.c
+++ b/util.c
@@ -1283,31 +1283,38 @@ void load_excludecodes(const char *ExcludeCodes)
    FILE *fp_in;
    char data[80];
    int i;
+   int Stored;
+   const int MemSize=1024;
 
    if(ExcludeCodes[0] == '\0')
       return;
 
-   if((excludecode=(char *) malloc(1024))==NULL) {
-      debuga(_("malloc error (1024)\n"));
+   if((excludecode=(char *) malloc(MemSize))==NULL) {
+      debuga(_("malloc error (%d)\n"),MemSize);
       exit(EXIT_FAILURE);
    }
-   bzero(excludecode,1024);
+   memset(excludecode,0,MemSize);
 
    if((fp_in=fopen(ExcludeCodes,"r"))==NULL) {
      debuga(_("(util) Cannot open file %s (exclude_codes)\n"),ExcludeCodes);
      exit(EXIT_FAILURE);
    }
 
+   Stored=0;
    while(fgets(data,sizeof(data),fp_in)!=NULL) {
       for (i=strlen(data)-1 ; i>=0 && (unsigned char)data[i]<=' ' ; i--) data[i]=0;
       if (i<0) continue;
+      if (Stored+i+1>=MemSize) {
+         debuga(_("Too many codes to exclude in file %s\n"),ExcludeCodes);
+         break;
+      }
       strcat(excludecode,data);
       strcat(excludecode,";");
+      Stored+=i+1;
    }
 
    fclose(fp_in);
    return;
-
 }
 
 void free_excludecodes(void)
@@ -1323,11 +1330,14 @@ int vercode(const char *code)
    char *cod;
    int clen;
 
-   if (excludecode && excludecode[0]!=0) {
+   if (excludecode && excludecode[0]!='\0') {
       clen=strlen(code);
-      for (cod=excludecode ; cod ; cod=strchr(cod+1,';')) {
+      cod=excludecode;
+      while (cod) {
          if (strncmp(code,cod,clen)==0 && cod[clen]==';')
             return 1;
+         cod=strchr(cod,';');
+         if (cod) cod++;
       }
    }
    return 0;