ff-GN.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. (function (global) {
  15. global.ng = global.ng || {};
  16. global.ng.common = global.ng.common || {};
  17. global.ng.common.locales = global.ng.common.locales || {};
  18. const u = undefined;
  19. function plural(n) {
  20. let i = Math.floor(Math.abs(n));
  21. if (i === 0 || i === 1) return 1;
  22. return 5;
  23. }
  24. root.ng.common.locales['ff-gn'] = [
  25. 'ff-GN',
  26. [['subaka', 'kikiiɗe'], u, u],
  27. u,
  28. [
  29. ['d', 'a', 'm', 'n', 'n', 'm', 'h'],
  30. ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],
  31. ['dewo', 'aaɓnde', 'mawbaare', 'njeslaare', 'naasaande', 'mawnde', 'hoore-biir'],
  32. ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],
  33. ],
  34. u,
  35. [
  36. ['s', 'c', 'm', 's', 'd', 'k', 'm', 'j', 's', 'y', 'j', 'b'],
  37. ['sii', 'col', 'mbo', 'see', 'duu', 'kor', 'mor', 'juk', 'slt', 'yar', 'jol', 'bow'],
  38. [
  39. 'siilo',
  40. 'colte',
  41. 'mbooy',
  42. 'seeɗto',
  43. 'duujal',
  44. 'korse',
  45. 'morso',
  46. 'juko',
  47. 'siilto',
  48. 'yarkomaa',
  49. 'jolal',
  50. 'bowte',
  51. ],
  52. ],
  53. u,
  54. [['H-I', 'C-I'], u, ['Hade Iisa', 'Caggal Iisa']],
  55. 1,
  56. [6, 0],
  57. ['d/M/y', 'd MMM, y', 'd MMMM y', 'EEEE d MMMM y'],
  58. ['HH:mm', 'HH:mm:ss', 'HH:mm:ss z', 'HH:mm:ss zzzz'],
  59. ['{1} {0}', u, u, u],
  60. [',', ' ', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
  61. ['#,##0.###', '#,##0%', '#,##0.00 ¤', '#E0'],
  62. 'FG',
  63. 'GNF',
  64. {'GNF': ['FG'], 'JPY': ['JP¥', '¥'], 'USD': ['US$', '$']},
  65. plural,
  66. [],
  67. ];
  68. })(
  69. (typeof globalThis !== 'undefined' && globalThis) ||
  70. (typeof global !== 'undefined' && global) ||
  71. (typeof window !== 'undefined' && window),
  72. );