ff-GN.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. // **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'], ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi'],
  30. ['dewo', 'aaɓnde', 'mawbaare', 'njeslaare', 'naasaande', 'mawnde', 'hoore-biir'],
  31. ['dew', 'aaɓ', 'maw', 'nje', 'naa', 'mwd', 'hbi']
  32. ],
  33. u,
  34. [
  35. ['s', 'c', 'm', 's', 'd', 'k', 'm', 'j', 's', 'y', 'j', 'b'],
  36. ['sii', 'col', 'mbo', 'see', 'duu', 'kor', 'mor', 'juk', 'slt', 'yar', 'jol', 'bow'],
  37. [
  38. 'siilo', 'colte', 'mbooy', 'seeɗto', 'duujal', 'korse', 'morso', 'juko', 'siilto', 'yarkomaa',
  39. 'jolal', 'bowte'
  40. ]
  41. ],
  42. u,
  43. [['H-I', 'C-I'], u, ['Hade Iisa', 'Caggal Iisa']],
  44. 1,
  45. [6, 0],
  46. ['d/M/y', 'd MMM, y', 'd MMMM y', 'EEEE d MMMM y'],
  47. ['HH:mm', 'HH:mm:ss', 'HH:mm:ss z', 'HH:mm:ss zzzz'],
  48. ['{1} {0}', u, u, u],
  49. [',', ' ', ';', '%', '+', '-', 'E', '×', '‰', '∞', 'NaN', ':'],
  50. ['#,##0.###', '#,##0%', '#,##0.00 ¤', '#E0'],
  51. 'FG',
  52. 'GNF',
  53. {'GNF': ['FG'], 'JPY': ['JP¥', '¥'], 'USD': ['US$', '$']},
  54. plural,
  55. []
  56. ];
  57. })(typeof globalThis !== 'undefined' && globalThis || typeof global !== 'undefined' && global ||
  58. typeof window !== 'undefined' && window);