55 lines
1.5 KiB
TypeScript
55 lines
1.5 KiB
TypeScript
|
/**
|
|||
|
* @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
|
|||
|
|
|||
|
import {Plural} from '@angular/common';
|
|||
|
|
|||
|
export default [
|
|||
|
'fr-PF',
|
|||
|
[
|
|||
|
['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']], 1, [6, 0],
|
|||
|
['dd/MM/y', 'd MMM y', 'd MMMM y', 'EEEE d MMMM y'],
|
|||
|
['HH:mm', 'HH:mm:ss', 'HH:mm:ss z', 'HH:mm:ss zzzz'],
|
|||
|
[
|
|||
|
'{1} {0}',
|
|||
|
'{1} \'à\' {0}',
|
|||
|
,
|
|||
|
],
|
|||
|
[',', ' ', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
|
|||
|
['#,##0.###', '#,##0 %', '#,##0.00 ¤', '#E0'], 'FCFP', 'franc CFP',
|
|||
|
function(n: number):
|
|||
|
Plural {
|
|||
|
let i = Math.floor(Math.abs(n));
|
|||
|
if (i === 0 || i === 1) return Plural.One;
|
|||
|
return Plural.Other;
|
|||
|
}
|
|||
|
];
|