date.lang.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. # ***** BEGIN LICENSE BLOCK *****
  3. # This file is part of DotClear.
  4. # Copyright (c) 2004 Olivier Meunier and contributors. All rights
  5. # reserved.
  6. #
  7. # DotClear is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # DotClear is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with DotClear; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. #
  21. # ***** END LICENSE BLOCK *****
  22. #
  23. # DOT NOT MODIFY THIS FILE !
  24. $GLOBALS['__l10n']['Jan'] = 'jan';
  25. $GLOBALS['__l10n']['Feb'] = 'feb';
  26. $GLOBALS['__l10n']['Mar'] = 'mar';
  27. $GLOBALS['__l10n']['Apr'] = 'apr';
  28. $GLOBALS['__l10n']['May'] = 'may';
  29. $GLOBALS['__l10n']['Jun'] = 'jun';
  30. $GLOBALS['__l10n']['Jul'] = 'jul';
  31. $GLOBALS['__l10n']['Aug'] = 'aug';
  32. $GLOBALS['__l10n']['Sep'] = 'sep';
  33. $GLOBALS['__l10n']['Oct'] = 'oct';
  34. $GLOBALS['__l10n']['Nov'] = 'nov';
  35. $GLOBALS['__l10n']['Dec'] = 'dec';
  36. $GLOBALS['__l10n']['January'] = 'january';
  37. $GLOBALS['__l10n']['February'] = 'february';
  38. $GLOBALS['__l10n']['March'] = 'march';
  39. $GLOBALS['__l10n']['April'] = 'april';
  40. $GLOBALS['__l10n']['June'] = 'june';
  41. $GLOBALS['__l10n']['July'] = 'july';
  42. $GLOBALS['__l10n']['August'] = 'august';
  43. $GLOBALS['__l10n']['September'] = 'september';
  44. $GLOBALS['__l10n']['October'] = 'october';
  45. $GLOBALS['__l10n']['November'] = 'november';
  46. $GLOBALS['__l10n']['December'] = 'december';
  47. $GLOBALS['__l10n']['Mon'] = 'mon';
  48. $GLOBALS['__l10n']['Tue'] = 'tue';
  49. $GLOBALS['__l10n']['Wed'] = 'wed';
  50. $GLOBALS['__l10n']['Thu'] = 'thu';
  51. $GLOBALS['__l10n']['Fri'] = 'fri';
  52. $GLOBALS['__l10n']['Sat'] = 'sat';
  53. $GLOBALS['__l10n']['Sun'] = 'sun';
  54. $GLOBALS['__l10n']['Monday'] = 'monday';
  55. $GLOBALS['__l10n']['Tuesday'] = 'tuesday';
  56. $GLOBALS['__l10n']['Wednesday'] = 'wednesday';
  57. $GLOBALS['__l10n']['Thursday'] = 'thursday';
  58. $GLOBALS['__l10n']['Friday'] = 'friday';
  59. $GLOBALS['__l10n']['Saturday'] = 'saturday';
  60. $GLOBALS['__l10n']['Sunday'] = 'sunday';
  61. ?>