aboutsummaryrefslogtreecommitdiffstats
path: root/languages/english.inc.php
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/english.inc.php
parent852cbafcdba1744f6544643641417eaf89e4831a (diff)
downloadphpicalendar-55e814ffba2d705112d9c0ca3d2b24539dd8dc26.tar.gz
phpicalendar-55e814ffba2d705112d9c0ca3d2b24539dd8dc26.tar.bz2
phpicalendar-55e814ffba2d705112d9c0ca3d2b24539dd8dc26.zip
Localization update, every file changed, basically.
Diffstat (limited to 'languages/english.inc.php')
-rw-r--r--languages/english.inc.php19
1 files changed, 18 insertions, 1 deletions
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

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