aboutsummaryrefslogtreecommitdiffstats
path: root/languages/english.inc.php
diff options
context:
space:
mode:
authorjwangen <jwangen>2002-09-25 21:54:13 +0000
committerjwangen <jwangen>2002-09-25 21:54:13 +0000
commitaf86e13fd3d9be51561ab4685129fd841b7bf39b (patch)
treebb6645e0a49e1f062a1b97deec9ae2cec0ee5cdc /languages/english.inc.php
parent8a587b7052a1a53ecb153bc295639ed2b3e735fc (diff)
downloadphpicalendar-af86e13fd3d9be51561ab4685129fd841b7bf39b.tar.gz
phpicalendar-af86e13fd3d9be51561ab4685129fd841b7bf39b.tar.bz2
phpicalendar-af86e13fd3d9be51561ab4685129fd841b7bf39b.zip
Added variable in language files, $all_day_lang, for occurrences of the
English string "All day event." Needs to be translated.
Diffstat (limited to 'languages/english.inc.php')
-rw-r--r--languages/english.inc.php51
1 files changed, 50 insertions, 1 deletions
diff --git a/languages/english.inc.php b/languages/english.inc.php
index 7b8d16d..9fe1f77 100644
--- a/languages/english.inc.php
+++ b/languages/english.inc.php
@@ -1 +1,50 @@
-<?php // English language include // For version 0.5 PHP iCalendar // // Translation by Chad Little (chad@chadsdomain.com) // // Submit new translations to chad@chadsdomain.com $day_lang = "Day"; $week_lang = "Week"; $month_lang = "Month"; $year_lang = "Year"; $calendar_lang = "Calendar"; $next_day_lang = "Next Day"; $next_month_lang = "Next Month"; $next_week_lang = "Next Week"; $next_year_lang = "Next Year"; $last_day_lang = "Previous Day"; $last_month_lang = "Previous Month"; $last_week_lang = "Previous Week"; $last_year_lang = "Previous Year"; $subscribe_lang = "Subscribe"; $download_lang = "Download"; $powered_by_lang = "Powered by"; $version_lang = "0.5"; $event_lang = "Event"; $event_start_lang = "Start Time"; $event_end_lang = "End Time"; $this_months_lang = "This Month's Events"; $date_lang = "Date"; $summary_lang = "Summary"; // Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php 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 $dateFormat_day = "%A, %B %e"; $dateFormat_week = "%B %e"; $dateFormat_week_list = "%a, %b %e"; $dateFormat_month = "%B %Y"; $dateFormat_month_list = "%A, %B %e"; ?> \ No newline at end of file
+<?php
+
+// English language include
+// For version 0.5 PHP iCalendar
+//
+// Translation by Chad Little (chad@chadsdomain.com)
+//
+// Submit new translations to chad@chadsdomain.com
+
+
+
+$day_lang = "Day";
+$week_lang = "Week";
+$month_lang = "Month";
+$year_lang = "Year";
+$calendar_lang = "Calendar";
+$next_day_lang = "Next Day";
+$next_month_lang = "Next Month";
+$next_week_lang = "Next Week";
+$next_year_lang = "Next Year";
+$last_day_lang = "Previous Day";
+$last_month_lang = "Previous Month";
+$last_week_lang = "Previous Week";
+$last_year_lang = "Previous Year";
+$subscribe_lang = "Subscribe";
+$download_lang = "Download";
+$powered_by_lang = "Powered by";
+$version_lang = "0.5";
+$event_lang = "Event";
+$event_start_lang = "Start Time";
+$event_end_lang = "End Time";
+$this_months_lang = "This Month's Events";
+$date_lang = "Date";
+$summary_lang = "Summary";
+$all_day_lang = "All day event";
+
+// Set Location for date formatting, check out: http://www.php.net/manual/en/function.setlocale.php
+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
+$dateFormat_day = "%A, %B %e";
+$dateFormat_week = "%B %e";
+$dateFormat_week_list = "%a, %b %e";
+$dateFormat_month = "%B %Y";
+$dateFormat_month_list = "%A, %B %e";
+
+?> \ No newline at end of file

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