From 5e6e064081112adb0e82e0335b35f3aafdcad95d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Marchal?= Date: Wed, 19 May 2010 19:18:03 +0000 Subject: [PATCH] Fix a regression to accept any directory name length in the index --- CMakeLists.txt | 2 +- ChangeLog | 3 ++- include/info.h | 2 +- index.c | 14 +++++++++----- po/bg.po | 47 ++++++++++++++++++++++++++--------------------- po/ca.po | 47 ++++++++++++++++++++++++++--------------------- po/cs.po | 47 ++++++++++++++++++++++++++--------------------- po/de.po | 47 ++++++++++++++++++++++++++--------------------- po/el.po | 47 ++++++++++++++++++++++++++--------------------- po/es.po | 47 ++++++++++++++++++++++++++--------------------- po/fr.po | 50 ++++++++++++++++++++++++++++---------------------- po/hu.po | 47 ++++++++++++++++++++++++++--------------------- po/id.po | 47 ++++++++++++++++++++++++++--------------------- po/it.po | 47 ++++++++++++++++++++++++++--------------------- po/ja.po | 47 ++++++++++++++++++++++++++--------------------- po/lv.po | 47 ++++++++++++++++++++++++++--------------------- po/nl.po | 47 ++++++++++++++++++++++++++--------------------- po/pl.po | 47 ++++++++++++++++++++++++++--------------------- po/pt.po | 47 ++++++++++++++++++++++++++--------------------- po/ro.po | 47 ++++++++++++++++++++++++++--------------------- po/ru.po | 47 ++++++++++++++++++++++++++--------------------- po/sk.po | 47 ++++++++++++++++++++++++++--------------------- po/sr.po | 47 ++++++++++++++++++++++++++--------------------- po/tr.po | 47 ++++++++++++++++++++++++++--------------------- po/uk.po | 47 ++++++++++++++++++++++++++--------------------- 25 files changed, 561 insertions(+), 450 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c20ff5..1affd9e 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/ChangeLog b/ChangeLog index 851a055..1f524a9 100644 --- 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). diff --git a/include/info.h b/include/info.h index ce7a253..c561eb3 100755 --- a/include/info.h +++ b/include/info.h @@ -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 ae96dc5..8529b09 100644 --- 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 ; idirname); free(sortlist[i]); + } free(sortlist); } } diff --git a/po/bg.po b/po/bg.po index 8a1ea65..efff1fd 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/ca.po b/po/ca.po index 7121d4a..1fee9d2 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/cs.po b/po/cs.po index d8ebd26..fc9118b 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/de.po b/po/de.po index faa9945..7839b29 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/el.po b/po/el.po index 7122dc9..05d8aab 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/es.po b/po/es.po index a7f18ff..953e707 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/fr.po b/po/fr.po index 77474a3..1e8aff6 100644 --- 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 \n" "Language-Team: French \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" diff --git a/po/hu.po b/po/hu.po index ee05a7b..be8d982 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/id.po b/po/id.po index 91b9e78..1489140 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/it.po b/po/it.po index 0ccf253..cad4369 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/ja.po b/po/ja.po index e078dbc..a320c6d 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/lv.po b/po/lv.po index 5815694..edd4a99 100644 --- 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 \n" "Language-Team: Latvian \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 "" diff --git a/po/nl.po b/po/nl.po index 67cde84..3aa35e8 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/pl.po b/po/pl.po index d916513..e637929 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/pt.po b/po/pt.po index f3ef2ab..382655f 100644 --- 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 \n" "Language-Team: LANGUAGE \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Ã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ÉDIA" @@ -410,12 +410,12 @@ msgstr "MÉ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ÍODO" -#: index.c:414 +#: index.c:416 #, fuzzy msgid "CREATION DATE" msgstr "DATA CRIAÇÃO" -#: index.c:414 siteuser.c:91 siteuser.c:93 +#: index.c:416 siteuser.c:91 siteuser.c:93 #, fuzzy msgid "USERS" msgstr "USUÁ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 "" diff --git a/po/ro.po b/po/ro.po index 344146f..bd9e7e9 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/ru.po b/po/ru.po index fc9d29e..ff938fc 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/sk.po b/po/sk.po index 484f39b..c7d2e4f 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/sr.po b/po/sr.po index 8f70e56..0e780a9 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/tr.po b/po/tr.po index c862b93..c10ce6b 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/po/uk.po b/po/uk.po index e4386ed..2b059b5 100644 --- 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 \n" "Language-Team: LANGUAGE \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 "" -- 2.47.2