SproutCMS

This is the code documentation for the SproutCMS project

source of /sprout/i18n/en_US/calendar.php

  1. <?php
  2. /*
  3.  * Copyright (C) 2017 Karmabunny Pty Ltd.
  4.  *
  5.  * This file is a part of SproutCMS.
  6.  *
  7.  * SproutCMS is free software: you can redistribute it and/or modify it under the terms
  8.  * of the GNU General Public License as published by the Free Software Foundation, either
  9.  * version 2 of the License, or (at your option) any later version.
  10.  *
  11.  * For more information, visit <http://getsproutcms.com>.
  12.  */
  13.  
  14.  
  15. $lang = array
  16. (
  17. // Two letter days
  18. 'su' => 'Su',
  19. 'mo' => 'Mo',
  20. 'tu' => 'Tu',
  21. 'we' => 'We',
  22. 'th' => 'Th',
  23. 'fr' => 'Fr',
  24. 'sa' => 'Sa',
  25.  
  26. // Short day names
  27. 'sun' => 'Sun',
  28. 'mon' => 'Mon',
  29. 'tue' => 'Tue',
  30. 'wed' => 'Wed',
  31. 'thu' => 'Thu',
  32. 'fri' => 'Fri',
  33. 'sat' => 'Sat',
  34.  
  35. // Long day names
  36. 'sunday' => 'Sunday',
  37. 'monday' => 'Monday',
  38. 'tuesday' => 'Tuesday',
  39. 'wednesday' => 'Wednesday',
  40. 'thursday' => 'Thursday',
  41. 'friday' => 'Friday',
  42. 'saturday' => 'Saturday',
  43.  
  44. // Short month names
  45. 'jan' => 'Jan',
  46. 'feb' => 'Feb',
  47. 'mar' => 'Mar',
  48. 'apr' => 'Apr',
  49. 'may' => 'May',
  50. 'jun' => 'Jun',
  51. 'jul' => 'Jul',
  52. 'aug' => 'Aug',
  53. 'sep' => 'Sep',
  54. 'oct' => 'Oct',
  55. 'nov' => 'Nov',
  56. 'dec' => 'Dec',
  57.  
  58. // Long month names
  59. 'january' => 'January',
  60. 'february' => 'February',
  61. 'march' => 'March',
  62. 'april' => 'April',
  63. 'mayl' => 'May',
  64. 'june' => 'June',
  65. 'july' => 'July',
  66. 'august' => 'August',
  67. 'september' => 'September',
  68. 'october' => 'October',
  69. 'november' => 'November',
  70. 'december' => 'December'
  71. );