67 lines
No EOL
2.4 KiB
PHP
67 lines
No EOL
2.4 KiB
PHP
<?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'] = 'fév';
|
|
$GLOBALS['__l10n']['Mar'] = 'mar';
|
|
$GLOBALS['__l10n']['Apr'] = 'avr';
|
|
$GLOBALS['__l10n']['May'] = 'mai';
|
|
$GLOBALS['__l10n']['Jun'] = 'juin';
|
|
$GLOBALS['__l10n']['Jul'] = 'juil';
|
|
$GLOBALS['__l10n']['Aug'] = 'aoû';
|
|
$GLOBALS['__l10n']['Sep'] = 'sep';
|
|
$GLOBALS['__l10n']['Oct'] = 'oct';
|
|
$GLOBALS['__l10n']['Nov'] = 'nov';
|
|
$GLOBALS['__l10n']['Dec'] = 'dec';
|
|
$GLOBALS['__l10n']['January'] = 'janvier';
|
|
$GLOBALS['__l10n']['February'] = 'février';
|
|
$GLOBALS['__l10n']['March'] = 'mars';
|
|
$GLOBALS['__l10n']['April'] = 'avril';
|
|
$GLOBALS['__l10n']['June'] = 'juin';
|
|
$GLOBALS['__l10n']['July'] = 'juillet';
|
|
$GLOBALS['__l10n']['August'] = 'août';
|
|
$GLOBALS['__l10n']['September'] = 'septembre';
|
|
$GLOBALS['__l10n']['October'] = 'octobre';
|
|
$GLOBALS['__l10n']['November'] = 'novembre';
|
|
$GLOBALS['__l10n']['December'] = 'décembre';
|
|
$GLOBALS['__l10n']['Mon'] = 'lun';
|
|
$GLOBALS['__l10n']['Tue'] = 'mar';
|
|
$GLOBALS['__l10n']['Wed'] = 'mer';
|
|
$GLOBALS['__l10n']['Thu'] = 'jeu';
|
|
$GLOBALS['__l10n']['Fri'] = 'ven';
|
|
$GLOBALS['__l10n']['Sat'] = 'sam';
|
|
$GLOBALS['__l10n']['Sun'] = 'dim';
|
|
$GLOBALS['__l10n']['Monday'] = 'lundi';
|
|
$GLOBALS['__l10n']['Tuesday'] = 'mardi';
|
|
$GLOBALS['__l10n']['Wednesday'] = 'mercredi';
|
|
$GLOBALS['__l10n']['Thursday'] = 'jeudi';
|
|
$GLOBALS['__l10n']['Friday'] = 'vendredi';
|
|
$GLOBALS['__l10n']['Saturday'] = 'samedi';
|
|
$GLOBALS['__l10n']['Sunday'] = 'dimanche';
|
|
?>
|