aboutsummaryrefslogtreecommitdiffstats
path: root/languages/dutch.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/dutch.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/dutch.inc.php')
-rw-r--r--languages/dutch.inc.php39
1 files changed, 38 insertions, 1 deletions
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

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