aboutsummaryrefslogtreecommitdiffstats
path: root/languages
diff options
context:
space:
mode:
authorjwangen <jwangen>2002-10-03 04:36:10 +0000
committerjwangen <jwangen>2002-10-03 04:36:10 +0000
commit55e814ffba2d705112d9c0ca3d2b24539dd8dc26 (patch)
tree8434e93de2264ff0f728cfe4dc9b03afd69058cb /languages
parent852cbafcdba1744f6544643641417eaf89e4831a (diff)
downloadphpicalendar-55e814ffba2d705112d9c0ca3d2b24539dd8dc26.tar.gz
phpicalendar-55e814ffba2d705112d9c0ca3d2b24539dd8dc26.tar.bz2
phpicalendar-55e814ffba2d705112d9c0ca3d2b24539dd8dc26.zip
Localization update, every file changed, basically.
Diffstat (limited to 'languages')
-rw-r--r--languages/danish.inc.php40
-rw-r--r--languages/dutch.inc.php39
-rw-r--r--languages/english.inc.php19
-rw-r--r--languages/french.inc.php40
-rw-r--r--languages/german.inc.php38
-rw-r--r--languages/italian.inc.php39
-rw-r--r--languages/japanese.inc.php46
-rw-r--r--languages/norwegian.inc.php39
-rw-r--r--languages/polish.inc.php39
9 files changed, 323 insertions, 16 deletions
diff --git a/languages/danish.inc.php b/languages/danish.inc.php
index aa061c0..cd81e65 100644
--- a/languages/danish.inc.php
+++ b/languages/danish.inc.php
@@ -32,8 +32,29 @@ $event_end_lang = "Slut Tidspunkt";
$this_months_lang = "Denne M&aring;neds Aftaler";
$date_lang = "Dato";
$summary_lang = "Opsummering";
+
+// new since last translation
$all_day_lang = "All day event";
$notes_lang = "Notes";
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect.
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
+
+
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
setlocale (LC_TIME, 'dk_DK');
@@ -41,11 +62,28 @@ setlocale (LC_TIME, 'dk_DK');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "H:i";
-// For date formatting, cehck out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A, %B %e";
$dateFormat_week = "%B %e";
$dateFormat_week_list = "%a, %b %e";
+$dateFormat_week_jump = "%b %e"; // new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A, %e %B";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?> \ No newline at end of file
diff --git a/languages/dutch.inc.php b/languages/dutch.inc.php
index 0be2327..6d61fea 100644
--- a/languages/dutch.inc.php
+++ b/languages/dutch.inc.php
@@ -32,8 +32,29 @@ $event_end_lang = "Eind Tijd";
$this_months_lang = "Activiteiten Deze Maand";
$date_lang = "Datum";
$summary_lang = "Overzicht";
+
+// new since last translation
$all_day_lang = "All day event";
$notes_lang = "Notes";
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect. // new since last translation
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
+
+
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
setlocale (LC_TIME, 'nl_BE');
@@ -41,12 +62,28 @@ setlocale (LC_TIME, 'nl_BE');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "G:i";
-// For date formatting, check out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A %e %B";
$dateFormat_week = "%e %B";
$dateFormat_week_list = "%a %e %b";
+$dateFormat_week_jump = "%b %e";// new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A %e %B";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
?> \ No newline at end of file
diff --git a/languages/english.inc.php b/languages/english.inc.php
index 904ce4a..8635571 100644
--- a/languages/english.inc.php
+++ b/languages/english.inc.php
@@ -48,6 +48,7 @@ $goyear_lang = "Go to This Year";
// Date display since setlocale isnt perfect.
$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
@@ -58,7 +59,7 @@ setlocale (LC_TIME, 'en_EN');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "g:i A";
-// For date formatting, check out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A, %B %e";
$dateFormat_week = "%B %e";
$dateFormat_week_list = "%a, %b %e";
@@ -66,4 +67,20 @@ $dateFormat_week_jump = "%b %e";
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A, %B %e";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?> \ No newline at end of file
diff --git a/languages/french.inc.php b/languages/french.inc.php
index 6f6c3b2..c301517 100644
--- a/languages/french.inc.php
+++ b/languages/french.inc.php
@@ -32,8 +32,29 @@ $event_end_lang = "Fin";
$this_months_lang = "&Eacute;v&eacute;nements de ce mois";
$date_lang = "Date";
$summary_lang = "R&eacute;sum&eacute;";
+
+// new since last translation
$all_day_lang = "All day event";
$notes_lang = "Notes";
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect. // new since last translation
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
+
+
// Set Location for date formatting, check out: http://www.php.net/manual/fr/function.setlocale.php
setlocale (LC_TIME,"fr_FR");
@@ -41,11 +62,28 @@ setlocale (LC_TIME,"fr_FR");
// For time formatting, check out: http://www.php.net/manual/fr/function.date.php
$timeFormat = "H:i";
-// For date formatting, check out: http://www.php.net/manual/fr/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A %e %B";
$dateFormat_week = "%e %B";
$dateFormat_week_list = "%a %e %b";
+$dateFormat_week_jump = "%b %e";// new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A %e %B";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?>
diff --git a/languages/german.inc.php b/languages/german.inc.php
index f5b677b..867711d 100644
--- a/languages/german.inc.php
+++ b/languages/german.inc.php
@@ -31,8 +31,27 @@ $event_end_lang = "Ende";
$this_months_lang = "Alle Einträge in diesem Monat";
$date_lang = "Datum";
$summary_lang = "Beschreibung";
+
+// new since last translation
$all_day_lang = "All day event";
$notes_lang = "Notes";
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect. // new since last translation
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
// for Switzerland
@@ -45,12 +64,29 @@ setlocale (LC_TIME, 'ch_DE');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "H:i";
-// For date formatting, check out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A, %e. %B";
$dateFormat_week = "%B %e";
$dateFormat_week_list = "%a, %e. %b";
+$dateFormat_week_jump = "%b %e";// new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A, %e. %B";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?> \ No newline at end of file
diff --git a/languages/italian.inc.php b/languages/italian.inc.php
index c6c17d5..edf9f7a 100644
--- a/languages/italian.inc.php
+++ b/languages/italian.inc.php
@@ -32,8 +32,28 @@ $event_end_lang = "Fine";
$this_months_lang = "Eventi di questo mese";
$date_lang = "Data";
$summary_lang = "Sommario";
+
+// new since last translation
$all_day_lang = "All day event";
$notes_lang = "Notes";
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect. // new since last translation
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
+
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
setlocale (LC_TIME, 'it_IT');
@@ -41,11 +61,28 @@ setlocale (LC_TIME, 'it_IT');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "G:i";
-// For date formatting, cehck out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A, %e %B";
$dateFormat_week = "%e %B";
$dateFormat_week_list = "%a, %e %b";
+$dateFormat_week_jump = "%b %e";// new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A, %e %B";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?> \ No newline at end of file
diff --git a/languages/japanese.inc.php b/languages/japanese.inc.php
index 4c8b6e7..2f212b8 100644
--- a/languages/japanese.inc.php
+++ b/languages/japanese.inc.php
@@ -46,17 +46,47 @@ $this_week_lang = "今週";
$this_month_lang = "今月";
$this_year_lang = "今年";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+$daysofweek_lang = array ("日曜日","月曜日","火曜日","水曜日","木曜日","金曜日","土曜日");
+$daysofweekshort_lang = array ("日曜","月曜","火曜","水曜","木曜","金曜","土曜");
+$daysofweekreallyshort_lang = array ("日","月","火","水","木","金","土");
+$monthsofyear_lang = array ("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");
+$monthsofyearshort_lang = $monthsofyear_lang;
+
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
setlocale (LC_TIME, 'ja_JP');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
-$timeFormat = "g:iA";
-
-// For date formatting, cehck out: http://www.php.net/manual/en/function.strftime.php
-$dateFormat_day = "%B %e %A";
-$dateFormat_week = "%B %e";
-$dateFormat_week_list = "%b %e %a";
-$dateFormat_month = "%Y %B";
-$dateFormat_month_list = "%B %e %A";
+$timeFormat = "g:i A";
+
+// For date formatting, see note below
+$dateFormat_day = "%B %e日 %A";
+$dateFormat_week = "%B %e日";
+$dateFormat_week_list = "%b %e日 %a";
+$dateFormat_week_jump = "%b %e日";
+$dateFormat_month = "%Y年 %B";
+$dateFormat_month_list = "%B %e日 %A";
+
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
?> \ No newline at end of file
diff --git a/languages/norwegian.inc.php b/languages/norwegian.inc.php
index 8c2ab4a..557e00b 100644
--- a/languages/norwegian.inc.php
+++ b/languages/norwegian.inc.php
@@ -35,17 +35,54 @@ $summary_lang = "Sammendrag";
$all_day_lang = "Hele dagen";
$notes_lang = "Notater";
+// new since last translation
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect. // new since last translation
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
+
+
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
setlocale (LC_TIME, 'no_NO');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "H:i";
-// For date formatting, check out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A, %e. %B ";
$dateFormat_week = "%e. %B";
$dateFormat_week_list = "%a, %e. %b";
+$dateFormat_week_jump = "%b %e"; // new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A, %e. %B";
+/*
+Notes about dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?> \ No newline at end of file
diff --git a/languages/polish.inc.php b/languages/polish.inc.php
index 7e2743a..bcfe001 100644
--- a/languages/polish.inc.php
+++ b/languages/polish.inc.php
@@ -32,8 +32,28 @@ $event_end_lang = "Koniec";
$this_months_lang = "Zadania miesiąca";
$date_lang = "Data";
$summary_lang = "Info";
+
+// new since last translation
$all_day_lang = "All day event";
$notes_lang = "Notes";
+$this_years_lang = "This Year's Events";
+$today_lang = "Today";
+$this_week_lang = "This Week";
+$this_month_lang = "This Month";
+$jump_lang = "Jump to";
+$tomorrows_lang = "Tomorrow's Events";
+$goday_lang = "Go to Today";
+$goweek_lang = "Go to This Week";
+$gomonth_lang = "Go to This Month";
+$goyear_lang = "Go to This Year";
+
+// Date display since setlocale isnt perfect.
+$daysofweek_lang = array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
+$daysofweekshort_lang = array ("Sun","Mon","Tue","Wed","Thu","Fri","Sat");
+$daysofweekreallyshort_lang = array ("S","M","T","W","T","F","S");
+$monthsofyear_lang = array ("January","February","March","April","May","June","July","August","September","October","November","December");
+$monthsofyearshort_lang = array ("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
+
// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
setlocale (LC_TIME, 'pl_PL');
@@ -41,11 +61,28 @@ setlocale (LC_TIME, 'pl_PL');
// For time formatting, check out: http://www.php.net/manual/en/function.date.php
$timeFormat = "G:i";
-// For date formatting, cehck out: http://www.php.net/manual/en/function.strftime.php
+// For date formatting, see note below
$dateFormat_day = "%A, %e %B";
$dateFormat_week = "%e %B";
$dateFormat_week_list = "%a, %e %b";
+$dateFormat_week_jump = "%b %e";// new since last translation
$dateFormat_month = "%B %Y";
$dateFormat_month_list = "%A, %e %B";
+/*
+Notes about $dateFormat_*
+ The pieces are similar to that of the PHP function strftime(),
+ however only the following is supported at this time:
+
+ %A - the full week day name as specified in $daysofweek_lang
+ %a - the shortened week day name as specified in $daysofweekshort_lang
+ %B - the full month name as specified in $monthsofyear_lang
+ %b - the shortened month name as specified in $monthsofyearshort_lang
+ %e - the day of the month as a decimal number (1 to 31)
+ %Y - the 4-digit year
+
+ If this causes problems with representing your language accurately, let
+ us know. We will be happy to modify this if needed.
+*/
+
?> \ No newline at end of file

© 2014-2024 Faster IT GmbH | imprint | privacy policy