ar_TN.php
6 years ago
ca_ES.php
6 years ago
cs_CZ.php
6 years ago
da_DK.php
6 years ago
de_DE.php
6 years ago
en_GB.php
6 years ago
en_US.php
6 years ago
es_ES.php
6 years ago
fr_FR.php
6 years ago
hu_HU.php
6 years ago
id_ID.php
6 years ago
it_IT.php
6 years ago
ja_JP.php
6 years ago
ko_KR.php
6 years ago
lv_LV.php
6 years ago
nl_NL.php
6 years ago
no_NO.php
6 years ago
oc_LNC.php
6 years ago
pl_PL.php
6 years ago
pt_BR.php
6 years ago
pt_PT.php
6 years ago
ro_RO.php
6 years ago
ru_RU.php
6 years ago
se_SV.php
6 years ago
th_TH.php
6 years ago
tr_TR.php
6 years ago
uk_UA.php
6 years ago
vi_VN.php
6 years ago
zh_CN.php
6 years ago
zh_TW.php
6 years ago
fr_FR.php
56 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: french (fr) |
| 4 | // author: John Fischer https://github.com/jfroffice |
| 5 | |
| 6 | return array( |
| 7 | "months" => explode('_', 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'), |
| 8 | "monthsShort" => explode('_', 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'), |
| 9 | "weekdays" => explode('_', 'lundi_mardi_mercredi_jeudi_vendredi_samedi_dimanche'), |
| 10 | "weekdaysShort" => explode('_', 'lun._mar._mer._jeu._ven._sam._dim.'), |
| 11 | "calendar" => array( |
| 12 | "sameDay" => '[Aujourd\'hui]', |
| 13 | "nextDay" => '[Demain]', |
| 14 | "lastDay" => '[Hier]', |
| 15 | "lastWeek" => 'l [dernier]', |
| 16 | "sameElse" => 'l', |
| 17 | "withTime" => '[à] G [h] i', |
| 18 | "default" => 'd/m/Y', |
| 19 | ), |
| 20 | "relativeTime" => array( |
| 21 | "future" => 'dans %s', |
| 22 | "past" => 'il y a %s', |
| 23 | "s" => 'quelques secondes', |
| 24 | "ss" => '%d secondes', |
| 25 | "m" => 'une minute', |
| 26 | "mm" => '%d minutes', |
| 27 | "h" => 'une heure', |
| 28 | "hh" => '%d heures', |
| 29 | "d" => 'un jour', |
| 30 | "dd" => '%d jours', |
| 31 | "M" => 'un mois', |
| 32 | "MM" => '%d mois', |
| 33 | "y" => 'un an', |
| 34 | "yy" => '%d ans', |
| 35 | ), |
| 36 | "ordinal" => function ($number) |
| 37 | { |
| 38 | return $number . ($number === 1 || $number === '1' ? '[er]' : ''); |
| 39 | }, |
| 40 | "week" => array( |
| 41 | "dow" => 1, // Monday is the first day of the week. |
| 42 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 43 | ), |
| 44 | "customFormats" => array( |
| 45 | "LT" => "G:i", // 20:30 |
| 46 | "L" => "d/m/Y", // 04/09/1986 |
| 47 | "l" => "j/n/Y", // 4/9/1986 |
| 48 | "LL" => "jS F Y", // 4 Septembre 1986 |
| 49 | "ll" => "j M Y", // 4 Sep 1986 |
| 50 | "LLL" => "jS F Y G:i", // 4 Septembre 1986 20:30 |
| 51 | "lll" => "j M Y G:i", // 4 Sep 1986 20:30 |
| 52 | "LLLL" => "l, jS F Y G:i", // Jeudi, 4 Septembre 1986 20:30 |
| 53 | "llll" => "D, j M Y G:i", // Jeu, 4 Sep 1986 20:30 |
| 54 | ), |
| 55 | ); |
| 56 |