]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Fix a regression to accept any directory name length in the index
authorFrédéric Marchal <fmarchal@users.sourceforge.net>
Wed, 19 May 2010 19:18:03 +0000 (19:18 +0000)
committerFrédéric Marchal <fmarchal@users.sourceforge.net>
Wed, 19 May 2010 19:18:03 +0000 (19:18 +0000)
25 files changed:
CMakeLists.txt
ChangeLog
include/info.h
index.c
po/bg.po
po/ca.po
po/cs.po
po/de.po
po/el.po
po/es.po
po/fr.po
po/hu.po
po/id.po
po/it.po
po/ja.po
po/lv.po
po/nl.po
po/pl.po
po/pt.po
po/ro.po
po/ru.po
po/sk.po
po/sr.po
po/tr.po
po/uk.po

index 2c20ff51bd9261c78f10f2ecad79bc82fb945310..1affd9e98fec4a162713659ca8d9f05556d6367d 100755 (executable)
@@ -3,7 +3,7 @@ PROJECT(sarg C)
 SET(sarg_VERSION 2)
 SET(sarg_REVISION "3-pre3")
 SET(sarg_BUILD "")
-SET(sarg_BUILDDATE "May-18-2010")
+SET(sarg_BUILDDATE "May-19-2010")
 
 INCLUDE(AddFileDependencies)
 INCLUDE(CheckIncludeFile)
index 851a055a0aed335f53d640ab3c38513cba1f65a4..1f524a9a2b48762d6c357cd7e8f4bc18ea769ef8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,6 @@
 SARG ChangeLog
 
-May-18-2009 Version 2.3-pre3
+May-19-2009 Version 2.3-pre3
                - LDAP usertab added. 
                  Now you can have your users in a LDAP Server.
                  Use these tags in sarg.conf: LDAPHost, LDAPPort, LDAPBindDN, LDAPBindPW,
@@ -40,6 +40,7 @@ May-18-2009 Version 2.3-pre3
                - Output both date/time textual reports.
                - Sarg log file now stores the date in the format dd/mm/yyyy and doesn't change it depending on the current date representation selected in sarg.conf. It will break existing sarg log files.
                - Intermediary log files store the date as dd/mm/yyyy irrespective of the current date representation in sarg.conf.
+               - Fix a regression to accept any directory name length in the index.
 
 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 ce7a253d4a69593739dd7d755d1a811cb8186ca3..c561eb3bc68d12c891d06bd5eabd832d366c68d4 100755 (executable)
@@ -1,3 +1,3 @@
-#define VERSION PACKAGE_VERSION" May-18-2010"
+#define VERSION PACKAGE_VERSION" May-19-2010"
 #define PGM PACKAGE_NAME
 #define URL "http://sarg.sourceforge.net"
diff --git a/index.c b/index.c
index ae96dc547470196a126722cc597ad4f6c15adf4f..8529b092ba3d59f6f42f175618e3f9a073a576a6 100644 (file)
--- a/index.c
+++ b/index.c
@@ -287,7 +287,6 @@ static void make_date_index(void)
 static void make_file_index(void)
 {
    #define MAX_CREATION_DATE 15
-   #define MAX_DIR_NAME 128
    FILE *fp_ou;
    DIR *dirp;
    struct dirent *direntp;
@@ -308,7 +307,7 @@ static void make_file_index(void)
    {
       int year, month, day, sortnum;
       char creationdate[MAX_CREATION_DATE];
-      char dirname[MAX_DIR_NAME];
+      char *dirname;
       char date[60];
    } **sortlist, *item, **tempsort;
 
@@ -326,7 +325,6 @@ static void make_file_index(void)
    sortlist=NULL;
    while ((direntp = readdir( dirp )) != NULL) {
       if (strchr(direntp->d_name,'-') == 0) continue;
-      if (strlen(direntp->d_name)>MAX_DIR_NAME) continue;
       item=malloc(sizeof(*item));
       if (!item) {
          debuga(_("not enough memory to sort the index\n"));
@@ -380,7 +378,11 @@ static void make_file_index(void)
          buildymd(day,mon,year,ftime);
          snprintf(item->creationdate,sizeof(item->creationdate),"%s%02d%02d%02d",ftime, ihour, iminute, isecond);
       }
-      strcpy(item->dirname,direntp->d_name);
+      item->dirname=strdup(direntp->d_name);
+      if (!item->dirname) {
+         debuga(_("Not enough memory to store the directory name \"%s\" in the index\n"),direntp->d_name);
+         exit(EXIT_FAILURE);
+      }
       strncpy(item->date,data,sizeof(item->date));
       if (nsort+1>nallocated) {
          nallocated+=10;
@@ -428,8 +430,10 @@ static void make_file_index(void)
       debuga(_("Failed to close the index file %s - %s\n"),wdir,strerror(errno));
 
    if (sortlist) {
-      for (i=0 ; i<nsort ; i++)
+      for (i=0 ; i<nsort ; i++) {
+         free(sortlist[i]->dirname);
          free(sortlist[i]);
+      }
       free(sortlist);
    }
 }
index 8a1ea659c0e8a8290db153174f8cc90f8259b41e..efff1fde414696ec9495d154ffe15e9d8723acf3 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Не мога да намеря log файла"
@@ -353,7 +353,7 @@ msgstr "No"
 msgid "CONNECT"
 msgstr "Включване"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "Всичко"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "Средно"
@@ -410,12 +410,12 @@ msgstr "Средно"
 msgid "Report"
 msgstr "Отчет"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Създаване на index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Не мога да намеря log файла"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Не мога да намеря файла"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Не мога да намеря файла"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "Период"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "Дата на създаване"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "Потребители"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 7121d4acfaf65e7acebe74473733c95141ac6ca7..1fee9d2bc346ad107042af7b2c745c9832077877 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "No es pot obrir l'arxiu de log"
@@ -353,7 +353,7 @@ msgstr "HORA"
 msgid "CONNECT"
 msgstr "LLOC ACCEDIT"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "AGENT"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "MILISEC"
@@ -410,12 +410,12 @@ msgstr "MILISEC"
 msgid "Report"
 msgstr "Ordenant arxiu"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "ja existeix, renombrant-lo com a"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "No es pot obrir l'arxiu de log"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "reports"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "reports"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "NUM"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "ARXIU/PERÍODE"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "DATA CREACIÓ"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index d8ebd26ce4e1cc6f02a795b0a5c3ad5722eb3b0c..fc9118b2c104a921a374403e8a6041b9619f844c 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nemohu otevřít žurnál"
@@ -353,7 +353,7 @@ msgstr "POŘADÍ"
 msgid "CONNECT"
 msgstr "SPOJENÍ"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "CELKEM"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "PRŮMĚR"
@@ -410,12 +410,12 @@ msgstr "PRŮMĚR"
 msgid "Report"
 msgstr "Přehled"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Vytvářím index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nemohu otevřít žurnál"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Nemohu otevřít soubor"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Nemohu otevřít soubor"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "SOUBOR/OBDOBÍ"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DATUM VZNIKU"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "UŽIVATELÉ"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index faa994525fdf0eac8fbc7b7b2d3049139f12fb14..7839b294a3177b424960ebf176f3ce27a5cacd35 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
@@ -353,7 +353,7 @@ msgstr "NR."
 msgid "CONNECT"
 msgstr "VERBINDUNGEN"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "INSGESAMT"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "DURCHSCHNITT"
@@ -410,12 +410,12 @@ msgstr "DURCHSCHNITT"
 msgid "Report"
 msgstr "Bericht"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Erstelle index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Kann Zugriffsprotokoll nicht oeffnen"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Kann Datei nicht oeffnen"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Kann Datei nicht oeffnen"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "DATEI/ZEITRAUM"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "ERSTELLUNGSDATUM"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "BENUTZER"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 7122dc949cec34722af47ef71c526af608507f9a..05d8aabc26e3c2171c734bb8d399407384072b29 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
@@ -353,7 +353,7 @@ msgstr "Αριθμός"
 msgid "CONNECT"
 msgstr "Σύνδεση"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "Σύνολο"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "Μέσος όρος"
@@ -410,12 +410,12 @@ msgstr "Μέσος όρος"
 msgid "Report"
 msgstr "Αναφορά"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Δημιουργία αρχείου index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο log"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Δεν μπορώ να διαβάσω το αρχείο"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "Περίοδος (από/έως)"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "Ημ/νία Δημιουργίας"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "Χρήστες"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index a7f18ff913733977d02bd278eaf6fa9279edfa14..953e707dc3cc7d6c5558e4feea82ba244b16f02e 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -216,7 +216,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "No se puede abrir archivo de log"
@@ -354,7 +354,7 @@ msgstr "NUM"
 msgid "CONNECT"
 msgstr "CONEXION"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -401,7 +401,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOTAL"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "PROMEDIO"
@@ -411,12 +411,12 @@ msgstr "PROMEDIO"
 msgid "Report"
 msgstr "Reporte"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -900,7 +900,7 @@ msgstr "Creando index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "No se puede abrir archivo de log"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -950,72 +950,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "No se puede abrir archivo"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "No se puede abrir archivo"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "ARCHIVO/PERIODO"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "FECHA CREACION"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "USUARIOS"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 77474a34c45e1774da260d1cce6ec9cc9376f963..1e8aff6dfa9f72d557af8f29509f3a1149329491 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3-pre3\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-18 22:36+0200\n"
-"PO-Revision-Date: 2010-05-18 22:39+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+0200\n"
+"PO-Revision-Date: 2010-05-19 21:16+0200\n"
 "Last-Translator: Frédéric Marchal <fmarchal@perso.be>\n"
 "Language-Team: French <traduc@traduc.org>\n"
 "MIME-Version: 1.0\n"
@@ -213,7 +213,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr "Vous avez probablement une règle endommagée dans votre fichier %s\n"
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Impossible d'ouvrir le répertoire %s - %s\n"
@@ -344,7 +344,7 @@ msgstr "NUMÉRO"
 msgid "CONNECT"
 msgstr "ACCÈS"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 msgid "BYTES"
 msgstr "OCTETS"
@@ -386,7 +386,7 @@ msgstr "Il y a un temps écoulé endommagé dans le fichier %s\n"
 msgid "TOTAL"
 msgstr "TOTAL"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 msgid "AVERAGE"
 msgstr "MOYENNE"
 
@@ -394,12 +394,12 @@ msgstr "MOYENNE"
 msgid "Report"
 msgstr "Rapport journalier"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr "La commande retourne le statut %d\n"
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr "Commande: %s\n"
@@ -900,7 +900,7 @@ msgstr "Création de index.html\n"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "(index) Impossible d'ouvrir le fichier %s - %s\n"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 msgid "SARG report"
 msgid_plural "SARG reports"
 msgstr[0] "Rapport SARG"
@@ -950,76 +950,82 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] "SARG: rapport pour %04d/%02d"
 msgstr[1] "SARG: rapports pour %04d/%02d"
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr "Erreur d'écriture dans l'indexe %s\n"
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Erreur à la fermeture du fichier d'index %s - %s\n"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr "pas assez de mémoire pour trier l'indexe\n"
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 "Vous avez probablement une jour de la semaine endommagé dans votre fichier %s"
 "%s/sarg-date\n"
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 "Vous avez probablement un mois endommagé dans votre fichier %s%s/sarg-date\n"
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 "Vous avez probablement un jour endommagé dans votre fichier %s%s/sarg-date\n"
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 "Vous avez probablement un temps endommagé dans votre fichier %s%s/sarg-date\n"
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 "Vous avez probablement une année endommagée dans votre fichier %s%s/sarg-"
 "date\n"
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+"Pas assez de mémoire pour stocker le nom de répertoire «%s» dans l'indexe\n"
+
+#: index.c:410
 #, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "(index) Impossible d'ouvrir le fichier %s\n"
 
-#: index.c:414
+#: index.c:416
 msgid "FILE/PERIOD"
 msgstr "FICHIER/PÉRIODE"
 
-#: index.c:414
+#: index.c:416
 msgid "CREATION DATE"
 msgstr "DATE DE CRÉATION"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 msgid "USERS"
 msgstr "UTILISATEURS"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr "(index) impossible de renommer «%s» en «%s» - %s\n"
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr "impossible de créer un lien de «%s» vers «%s» - %s\n"
index ee05a7bea74787e3bac38335e1e36844fa60f162..be8d9824a5442ac04d5f3466e2845ae22654e4ce 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
@@ -353,7 +353,7 @@ msgstr "Sorszám"
 msgid "CONNECT"
 msgstr "KAPCSOLAT"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "ÖSSZESEN"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "ÁTLAG"
@@ -410,12 +410,12 @@ msgstr "ÁTLAG"
 msgid "Report"
 msgstr "Kimutatás"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Készítés alatt: index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nem tudom megnyitni a log file-t"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Megnyithatatlan file"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Megnyithatatlan file"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "FILE/PERIÓDUS"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "KÉSZÍTÉS DÁTUMA"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "FELHASZNÁLÓK"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 91b9e78879339efdfe2c490927ffc5d396c05fc1..14891402692455c75b5bb3aeff016d44631b9673 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Tak bisa buka file log"
@@ -353,7 +353,7 @@ msgstr "NO."
 msgid "CONNECT"
 msgstr "MENGHUBUNGI"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOTAL"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "RATA-RATA"
@@ -410,12 +410,12 @@ msgstr "RATA-RATA"
 msgid "Report"
 msgstr "Laporan"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Membuat index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Tak bisa buka file log"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Tak bisa buka file"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Tak bisa buka file"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "FILE/PERIOD"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "TANGGAL PEMBUATAN"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "PEMAKAI"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 0ccf253cc1c0a7f66681f06007730c9ae5ef26b1..cad436988116a9007231c91293b60bd5c856ddda 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Non riesco a aprire il log file"
@@ -353,7 +353,7 @@ msgstr "NUM"
 msgid "CONNECT"
 msgstr "CONNESSIONI"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOTALE"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "MEDIA"
@@ -410,12 +410,12 @@ msgstr "MEDIA"
 msgid "Report"
 msgstr "Rapporto"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Creazione index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Non riesco a aprire il log file"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Non riesco ad aprire il file"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Non riesco ad aprire il file"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "FILE/PERIODO"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DATA DI CREAZIONE"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "UTENTI"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index e078dbc887cacf250285f08e9b0151f4695f4e22..a320c6df57aac3d968ffd50209c50e6cded951d7 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "ログファイルをオープンできません"
@@ -353,7 +353,7 @@ msgstr "ユーザID"
 msgid "CONNECT"
 msgstr "ユーザ"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "Squidユーザエージェントレポート"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "使用時間"
@@ -410,12 +410,12 @@ msgstr "使用時間"
 msgid "Report"
 msgstr "レポート"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "index.htmlを作成"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "ログファイルをオープンできません"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "ファイルをオープンできません"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "ファイルをオープンできません"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "時間"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "ナンバー"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "ファイル/期間"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 58156942d607c42f95b09d02d6ec1a8d9dfd646d..edd4a99bb506fe51f50a56dfc48971ca87c53430 100644 (file)
--- a/po/lv.po
+++ b/po/lv.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: sarg 2.3-pre1\n"
 "Report-Msgid-Bugs-To: fmarchal@users.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -216,7 +216,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nevar atvērt log failu"
@@ -354,7 +354,7 @@ msgstr "Nummurs"
 msgid "CONNECT"
 msgstr "Pievienot"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -401,7 +401,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "PAVISAM"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "Vidēji"
@@ -411,12 +411,12 @@ msgstr "Vidēji"
 msgid "Report"
 msgstr "Atskaite"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -900,7 +900,7 @@ msgstr "Veidoju index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nevar atvērt log failu"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -950,72 +950,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Nevar atvērt failu"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Nevar atvērt failu"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "Fails/Periods"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "Izveides datums"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "Lietotāji"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 67cde84076e2f013f8f06c88e430c9aeb3e3da47..3aa35e896a7c1bb6af4bbadc0eb9203a226a9621 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -217,7 +217,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Kan het log bestand niet openen"
@@ -355,7 +355,7 @@ msgstr "NUM"
 msgid "CONNECT"
 msgstr "VERBINDING"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -402,7 +402,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOTAAL"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "GEMIDDELDE"
@@ -412,12 +412,12 @@ msgstr "GEMIDDELDE"
 msgid "Report"
 msgstr "Rapport"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -901,7 +901,7 @@ msgstr "index.html maken"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Kan het log bestand niet openen"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -951,72 +951,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Kan bestand niet openen"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Kan bestand niet openen"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "BESTAND/PERIODE"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "CREATIE DATUM"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "GEBRUIKERS"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index d916513306fc6119361ab9e8ffd316d1c7179e14..e63792903b9e2caf9710c65f46e93874a1f8cf26 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
@@ -353,7 +353,7 @@ msgstr "Nr"
 msgid "CONNECT"
 msgstr "POЈҐCZENIA"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "SUMA"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "ЊREDNIA"
@@ -410,12 +410,12 @@ msgstr "ЊREDNIA"
 msgid "Report"
 msgstr "Raport"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Tworzenie pliku index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nie moїna otworzyж pliku logowania"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Nie moїna otworzyж pliku"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Nie moїna otworzyж pliku"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "PLIK/PRZEDZ."
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DATA UTWORZ."
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "UЇYT."
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index f3ef2ab1bb3238928ef779906c53165b0c564760..382655f11352de5080023f3e4138530069b2a3a8 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Erro no open do arquivo log"
@@ -353,7 +353,7 @@ msgstr "NUM"
 msgid "CONNECT"
 msgstr "CONEX&Atilde;O"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOTAL"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "M&Eacute;DIA"
@@ -410,12 +410,12 @@ msgstr "M&Eacute;DIA"
 msgid "Report"
 msgstr "Relatorio"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Gerando index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Erro no open do arquivo log"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Erro no open do arquivo"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Erro no open do arquivo"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "ARQUIVO/PER&Iacute;ODO"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DATA CRIA&Ccedil;&Atilde;O"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "USU&Aacute;RIOS"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 344146f60c7828e3158be00b0f400335032995dc..bd9e7e9084360e4589a5efdeb136f58984714425 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
@@ -353,7 +353,7 @@ msgstr "NR."
 msgid "CONNECT"
 msgstr "CONECTARI"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOTAL"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "MEDIU"
@@ -410,12 +410,12 @@ msgstr "MEDIU"
 msgid "Report"
 msgstr "Raport"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Se genereaza fisierul index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nu poate fi deschis fisierul de accese"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Nu poate fi deshis fisierul"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Nu poate fi deshis fisierul"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "FISIER/PERIOADA"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DATA CREARII"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "UTILIZATORI"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index fc9d29e7ada7c76063594570f4be37b8fa51ee6b..ff938fcfc7d9785fb2a43232c80b5c74f1c59d58 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Не могу открыть файл журнала"
@@ -353,7 +353,7 @@ msgstr "No"
 msgid "CONNECT"
 msgstr "Подключений"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "Всего"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "Средняя"
@@ -410,12 +410,12 @@ msgstr "Средняя"
 msgid "Report"
 msgstr "Отчет"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Создание index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Не могу открыть файл журнала"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Не могу открыть файл"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Не могу открыть файл"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "Период"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "Дата создания"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "Пользователей"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 484f39bb09fd9ed79a58588f96a3338c57b7bb2f..c7d2e4f76a624f6c0e32759d7bfce605c237b418 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nemôžem otvoríť žurnál"
@@ -353,7 +353,7 @@ msgstr "PORADIE"
 msgid "CONNECT"
 msgstr "SPOJENÍ"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "CELKOM"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "PRIEMER"
@@ -410,12 +410,12 @@ msgstr "PRIEMER"
 msgid "Report"
 msgstr "Prehľad"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Vytváram index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nemôžem otvoríť žurnál"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Nedá sa otvoriť súbor"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Nedá sa otvoriť súbor"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "SÚBOR/OBDOBIE"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DÁTUM VZNIKU"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "UŽÍVATELIA"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index 8f70e56f451227040f6341f9c841931c86b3e935..0e780a9628dcc2725558f8941bb4de70cedabba6 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
@@ -353,7 +353,7 @@ msgstr "BROJ"
 msgid "CONNECT"
 msgstr "BROJ KONEKCIJA"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "UKUPNO"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "PROCENTUALNO"
@@ -410,12 +410,12 @@ msgstr "PROCENTUALNO"
 msgid "Report"
 msgstr "Izvestaj"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "Pravljenje datoteke index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Nemoguce otvoriti log datoteku"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Nemoguce otvoriti datoteku ili je los putokaz"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Nemoguce otvoriti datoteku ili je los putokaz"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "DATOTEKA/PERIOD"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "DATUM KREIRANJA"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "KORISNICI"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index c862b9368e9e9970a87b24993d07eb77786fce62..c10ce6b4a957d08e6541d6cdc3f027bfd41adeff 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -215,7 +215,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Kutuk dosyasi acilamadi"
@@ -353,7 +353,7 @@ msgstr "USERID"
 msgid "CONNECT"
 msgstr "BAGLANTI"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -400,7 +400,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "TOPLAM"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "ORTALAMA"
@@ -410,12 +410,12 @@ msgstr "ORTALAMA"
 msgid "Report"
 msgstr "Rapor"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -899,7 +899,7 @@ msgstr "index.html yaratiliyor"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Kutuk dosyasi acilamadi"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -949,72 +949,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Dosya acilamiyor"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Dosya acilamiyor"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "DOSYA/PERIYOD"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "YARATILIS TARIHI"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "KULLANICILAR"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""
index e4386ed8b2e7f904eb8ed8a156dd8661dea036a4..2b059b581294507d5c99df12b32e56e10ad74f27 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-05-18 22:36+0200\n"
+"POT-Creation-Date: 2010-05-19 21:16+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"
@@ -214,7 +214,7 @@ msgid "Maybe you have a broken rule in your %s file\n"
 msgstr ""
 
 #: datafile.c:78 html.c:112 index.c:53 index.c:107 index.c:156 index.c:217
-#: index.c:320 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
+#: index.c:319 indexonly.c:38 lastlog.c:57 report.c:108 sort.c:68 sort.c:131
 #, fuzzy, c-format
 msgid "Failed to open directory %s - %s\n"
 msgstr "Не можу відкрити файл журналу"
@@ -352,7 +352,7 @@ msgstr "№"
 msgid "CONNECT"
 msgstr "Підключення"
 
-#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:414 repday.c:141
+#: email.c:170 grepday.c:732 html.c:242 html.c:244 index.c:416 repday.c:141
 #: siteuser.c:91 topsites.c:195 topuser.c:204 topuser.c:206
 #, fuzzy
 msgid "BYTES"
@@ -399,7 +399,7 @@ msgstr ""
 msgid "TOTAL"
 msgstr "Всього"
 
-#: email.c:228 html.c:528 index.c:414 topuser.c:352
+#: email.c:228 html.c:528 index.c:416 topuser.c:352
 #, fuzzy
 msgid "AVERAGE"
 msgstr "Середній"
@@ -409,12 +409,12 @@ msgstr "Середній"
 msgid "Report"
 msgstr "Звіт"
 
-#: email.c:259 index.c:540 log.c:1606
+#: email.c:259 index.c:544 log.c:1606
 #, c-format
 msgid "command return status %d\n"
 msgstr ""
 
-#: email.c:260 index.c:541 log.c:1607
+#: email.c:260 index.c:545 log.c:1607
 #, c-format
 msgid "command: %s\n"
 msgstr ""
@@ -898,7 +898,7 @@ msgstr "Створення index.html"
 msgid "(index) Cannot open file %s - %s\n"
 msgstr "Не можу відкрити файл журналу"
 
-#: index.c:141 index.c:411
+#: index.c:141 index.c:413
 #, fuzzy
 msgid "SARG report"
 msgid_plural "SARG reports"
@@ -948,72 +948,77 @@ msgid_plural "SARG: reports for %04d/%02d"
 msgstr[0] ""
 msgstr[1] ""
 
-#: index.c:269 index.c:275 index.c:282 index.c:426
+#: index.c:269 index.c:275 index.c:282 index.c:428
 #, c-format
 msgid "Write error in the index %s\n"
 msgstr ""
 
-#: index.c:271 index.c:277 index.c:284 index.c:428
+#: index.c:271 index.c:277 index.c:284 index.c:430
 #, fuzzy, c-format
 msgid "Failed to close the index file %s - %s\n"
 msgstr "Не можу відкрити файл"
 
-#: index.c:332 index.c:389
+#: index.c:330 index.c:391
 #, c-format
 msgid "not enough memory to sort the index\n"
 msgstr ""
 
-#: index.c:355
+#: index.c:353
 #, c-format
 msgid "Maybe you have a broken week day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:359
+#: index.c:357
 #, c-format
 msgid "Maybe you have a broken month in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:363
+#: index.c:361
 #, c-format
 msgid "Maybe you have a broken day in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:367 index.c:377
+#: index.c:365 index.c:375
 #, c-format
 msgid "Maybe you have a broken time in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:372
+#: index.c:370
 #, c-format
 msgid "Maybe you have a broken year in your %s%s/sarg-date file\n"
 msgstr ""
 
-#: index.c:408
+#: index.c:383
+#, c-format
+msgid "Not enough memory to store the directory name \"%s\" in the index\n"
+msgstr ""
+
+#: index.c:410
 #, fuzzy, c-format
 msgid "(index) Cannot open file %s\n"
 msgstr "Не можу відкрити файл"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "FILE/PERIOD"
 msgstr "Період"
 
-#: index.c:414
+#: index.c:416
 #, fuzzy
 msgid "CREATION DATE"
 msgstr "Дата створення"
 
-#: index.c:414 siteuser.c:91 siteuser.c:93
+#: index.c:416 siteuser.c:91 siteuser.c:93
 #, fuzzy
 msgid "USERS"
 msgstr "Користувачі"
 
-#: index.c:519 index.c:621
+#: index.c:523 index.c:625
 #, c-format
 msgid "(index) rename error from \"%s\" to \"%s\" - %s\n"
 msgstr ""
 
-#: index.c:530
+#: index.c:534
 #, c-format
 msgid "failed to create link \"%s\" to \"%s\" - %s\n"
 msgstr ""