ff-GN.js 2.1 KB

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