From 55e814ffba2d705112d9c0ca3d2b24539dd8dc26 Mon Sep 17 00:00:00 2001 From: jwangen Date: Thu, 3 Oct 2002 04:36:10 +0000 Subject: Localization update, every file changed, basically. --- languages/dutch.inc.php | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) (limited to 'languages/dutch.inc.php') 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 -- cgit v1.2.3