PageRenderTime 24ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/root/language/en/mods/calendar.php

http://phpbb3calendar.googlecode.com/
PHP | 112 lines | 73 code | 11 blank | 28 comment | 2 complexity | 01dba27dde621af300e9403138587960 MD5 | raw file
  1. <?php
  2. /**
  3. *
  4. * common [English]
  5. *
  6. * @package language
  7. * @version $Id: calendar.php,v ALPHA 3 2007/10/02 12:00:00 jcc264 Exp $
  8. * @copyright (c) 2007 M and J Media
  9. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  10. *
  11. */
  12. /**
  13. * DO NOT CHANGE
  14. */
  15. if (empty($lang) || !is_array($lang))
  16. {
  17. $lang = array();
  18. }
  19. // DEVELOPERS PLEASE NOTE
  20. //
  21. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  22. //
  23. // Placeholders can now contain order information, e.g. instead of
  24. // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  25. // translators to re-order the output of data while ensuring it remains correct
  26. //
  27. // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  28. // equally where a string contains only two placeholders which are used to wrap text
  29. // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  30. //
  31. // Some characters you may want to copy&paste:
  32. // ’ ť “ ” …
  33. //
  34. $lang = array_merge($lang, array(
  35. 'calendar'=> array(
  36. 'day'=> array(
  37. 0 => 'Su',
  38. 1 => 'Mo',
  39. 2 => 'Tu',
  40. 3 => 'We',
  41. 4 => 'Th',
  42. 5 => 'Fr',
  43. 6 => 'Sa',
  44. ),
  45. 'long_day'=> array(
  46. 0 => 'Sunday',
  47. 1 => 'Monday',
  48. 2 => 'Tuesday',
  49. 3 => 'Wednesday',
  50. 4 => 'Thursday',
  51. 5 => 'Friday',
  52. 6 => 'Saturday',
  53. ),
  54. 'month'=> array(
  55. 1 => 'Jan',
  56. 2 => 'Feb',
  57. 3 => 'Mar',
  58. 4 => 'Apr',
  59. 5 => 'May',
  60. 6 => 'Jun',
  61. 7 => 'Jul',
  62. 8 => 'Aug',
  63. 9 => 'Sep',
  64. 10 => 'Oct',
  65. 11 => 'Nov',
  66. 12 => 'Dec',
  67. ),
  68. 'long_month'=> array(
  69. 1 => 'January',
  70. 2 => 'February',
  71. 3 => 'March',
  72. 4 => 'April',
  73. 5 => 'May',
  74. 6 => 'June',
  75. 7 => 'July',
  76. 8 => 'August',
  77. 9 => 'September',
  78. 10 => 'October',
  79. 11 => 'November',
  80. 12 => 'December',
  81. ),
  82. ),
  83. 'calendar_add_event' => 'Add Event',
  84. 'calendar_delete_event' => 'Delete Event',
  85. 'calendar_delete_warn' => 'Once deleted the event cannot be recovered',
  86. 'calendar_event_name' => 'Event Name',
  87. 'calendar_event_desc' => 'Event Description',
  88. 'calendar_event_desc_exp' => 'Enter your event description here, it may contain no more than 255 characters',
  89. 'calendar_event_end' => 'Event End',
  90. 'calendar_event_start' => 'Event Start',
  91. 'calendar_upcoming_event' => 'Upcoming Events',
  92. 'calendar_post_name_error' => 'You must specify an event name when posting a new event.',
  93. 'calendar_edit_name_error' => 'You must specify an event name when editing an event.',
  94. 'calendar_post_time_error' => 'You must specify a valid event start time when posting a new event.',
  95. 'calendar_edit_time_error' => 'You must specify a valid event start time when editing an event.',
  96. 'calendar_post_date_error' => 'You must specify a valid event start date when posting a new event.',
  97. 'calendar_edit_date_error' => 'You must specify a valid event start date when editing an event.',
  98. 'calendar_post_desc_error' => 'You must include an event description when posting a new event.',
  99. 'calendar_edit_desc_error' => 'You must include an event description when editing an event.',
  100. ));
  101. ?>