1 | /**
|
---|
2 | * @license
|
---|
3 | * Copyright Google LLC All Rights Reserved.
|
---|
4 | *
|
---|
5 | * Use of this source code is governed by an MIT-style license that can be
|
---|
6 | * found in the LICENSE file at https://angular.io/license
|
---|
7 | */
|
---|
8 |
|
---|
9 | // **Note**: Locale files are generated through Bazel and never part of the sources. This is an
|
---|
10 | // exception for backwards compatibility. With the Gulp setup we never deleted old locale files
|
---|
11 | // when updating CLDR, so older locale files which have been removed, or renamed in the CLDR
|
---|
12 | // data remained in the repository. We keep these files checked-in until the next major to avoid
|
---|
13 | // potential breaking changes. It's worth noting that the locale data for such files is outdated
|
---|
14 | // anyway. e.g. the data is missing the directionality, throwing off the indices.
|
---|
15 |
|
---|
16 | (function(global) {
|
---|
17 | global.ng = global.ng || {};
|
---|
18 | global.ng.common = global.ng.common || {};
|
---|
19 | global.ng.common.locales = global.ng.common.locales || {};
|
---|
20 | const u = undefined;
|
---|
21 | function plural(n) {
|
---|
22 | let i = Math.floor(Math.abs(n));
|
---|
23 | if (i === 0 || i === 1) return 1;
|
---|
24 | return 5;
|
---|
25 | }
|
---|
26 | root.ng.common.locales['ff-gn'] = [
|
---|
27 | 'ff-GN',
|
---|
28 | [['subaka', 'kikiiɗe'], u, u],
|
---|
29 | u,
|
---|
30 | [
|
---|
31 | ['d', 'a', 'm', 'n', 'n', 'm', 'h'], ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],
|
---|
32 | ['dewo', 'aaɓnde', 'mawbaare', 'njeslaare', 'naasaande', 'mawnde', 'hoore-biir'],
|
---|
33 | ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi']
|
---|
34 | ],
|
---|
35 | u,
|
---|
36 | [
|
---|
37 | ['s', 'c', 'm', 's', 'd', 'k', 'm', 'j', 's', 'y', 'j', 'b'],
|
---|
38 | ['sii', 'col', 'mbo', 'see', 'duu', 'kor', 'mor', 'juk', 'slt', 'yar', 'jol', 'bow'],
|
---|
39 | [
|
---|
40 | 'siilo', 'colte', 'mbooy', 'seeɗto', 'duujal', 'korse', 'morso', 'juko', 'siilto', 'yarkomaa',
|
---|
41 | 'jolal', 'bowte'
|
---|
42 | ]
|
---|
43 | ],
|
---|
44 | u,
|
---|
45 | [['H-I', 'C-I'], u, ['Hade Iisa', 'Caggal Iisa']],
|
---|
46 | 1,
|
---|
47 | [6, 0],
|
---|
48 | ['d/M/y', 'd MMM, y', 'd MMMM y', 'EEEE d MMMM y'],
|
---|
49 | ['HH:mm', 'HH:mm:ss', 'HH:mm:ss z', 'HH:mm:ss zzzz'],
|
---|
50 | ['{1} {0}', u, u, u],
|
---|
51 | [',', ' ', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
|
---|
52 | ['#,##0.###', '#,##0%', '#,##0.00 ¤', '#E0'],
|
---|
53 | 'FG',
|
---|
54 | 'GNF',
|
---|
55 | {'GNF': ['FG'], 'JPY': ['JP¥', '¥'], 'USD': ['US$', '$']},
|
---|
56 | plural,
|
---|
57 | []
|
---|
58 | ];
|
---|
59 | })(typeof globalThis !== 'undefined' && globalThis || typeof global !== 'undefined' && global ||
|
---|
60 | typeof window !== 'undefined' && window);
|
---|