12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /**
- * @license
- * Copyright Google Inc. All Rights Reserved.
- *
- * Use of this source code is governed by an MIT-style license that can be
- * found in the LICENSE file at https://angular.io/license
- */
- // THIS CODE IS GENERATED - DO NOT MODIFY
- // See angular/tools/gulp-tasks/cldr/extract.js
- function plural(n) {
- var i = Math.floor(Math.abs(n));
- if (i === 0 || i === 1)
- return 1;
- return 5;
- }
- export default [
- 'fr-DJ',
- [
- ['AM', 'PM'],
- ,
- ],
- ,
- [
- ['D', 'L', 'M', 'M', 'J', 'V', 'S'], ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],
- ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'],
- ['di', 'lu', 'ma', 'me', 'je', 've', 'sa']
- ],
- ,
- [
- ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],
- [
- 'janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.',
- 'déc.'
- ],
- [
- 'janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre',
- 'octobre', 'novembre', 'décembre'
- ]
- ],
- ,
- [['av. J.-C.', 'ap. J.-C.'], , ['avant Jésus-Christ', 'après Jésus-Christ']], 6, [6, 0],
- ['dd/MM/y', 'd MMM y', 'd MMMM y', 'EEEE d MMMM y'],
- ['h:mm a', 'h:mm:ss a', 'h:mm:ss a z', 'h:mm:ss a zzzz'],
- [
- '{1} {0}',
- '{1} \'à\' {0}',
- ,
- ],
- [',', ' ', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
- ['#,##0.###', '#,##0 %', '#,##0.00 ¤', '#E0'], 'Fdj', 'franc djiboutien', plural
- ];
- //# sourceMappingURL=fr-DJ.js.map
|