12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- # ***** BEGIN LICENSE BLOCK *****
- # This file is part of DotClear.
- # Copyright (c) 2004 Olivier Meunier and contributors. All rights
- # reserved.
- #
- # DotClear is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 2 of the License, or
- # (at your option) any later version.
- #
- # DotClear is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with DotClear; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- #
- # ***** END LICENSE BLOCK *****
- #
- # DOT NOT MODIFY THIS FILE !
- $GLOBALS['__l10n']['Jan'] = 'jan';
- $GLOBALS['__l10n']['Feb'] = 'feb';
- $GLOBALS['__l10n']['Mar'] = 'mar';
- $GLOBALS['__l10n']['Apr'] = 'apr';
- $GLOBALS['__l10n']['May'] = 'may';
- $GLOBALS['__l10n']['Jun'] = 'jun';
- $GLOBALS['__l10n']['Jul'] = 'jul';
- $GLOBALS['__l10n']['Aug'] = 'aug';
- $GLOBALS['__l10n']['Sep'] = 'sep';
- $GLOBALS['__l10n']['Oct'] = 'oct';
- $GLOBALS['__l10n']['Nov'] = 'nov';
- $GLOBALS['__l10n']['Dec'] = 'dec';
- $GLOBALS['__l10n']['January'] = 'january';
- $GLOBALS['__l10n']['February'] = 'february';
- $GLOBALS['__l10n']['March'] = 'march';
- $GLOBALS['__l10n']['April'] = 'april';
- $GLOBALS['__l10n']['June'] = 'june';
- $GLOBALS['__l10n']['July'] = 'july';
- $GLOBALS['__l10n']['August'] = 'august';
- $GLOBALS['__l10n']['September'] = 'september';
- $GLOBALS['__l10n']['October'] = 'october';
- $GLOBALS['__l10n']['November'] = 'november';
- $GLOBALS['__l10n']['December'] = 'december';
- $GLOBALS['__l10n']['Mon'] = 'mon';
- $GLOBALS['__l10n']['Tue'] = 'tue';
- $GLOBALS['__l10n']['Wed'] = 'wed';
- $GLOBALS['__l10n']['Thu'] = 'thu';
- $GLOBALS['__l10n']['Fri'] = 'fri';
- $GLOBALS['__l10n']['Sat'] = 'sat';
- $GLOBALS['__l10n']['Sun'] = 'sun';
- $GLOBALS['__l10n']['Monday'] = 'monday';
- $GLOBALS['__l10n']['Tuesday'] = 'tuesday';
- $GLOBALS['__l10n']['Wednesday'] = 'wednesday';
- $GLOBALS['__l10n']['Thursday'] = 'thursday';
- $GLOBALS['__l10n']['Friday'] = 'friday';
- $GLOBALS['__l10n']['Saturday'] = 'saturday';
- $GLOBALS['__l10n']['Sunday'] = 'sunday';
- ?>
|