angular-locale_yo-bj.js 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. 'use strict';
  2. angular.module("ngLocale", [], ["$provide", function ($provide) {
  3. var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
  4. function getDecimals(n) {
  5. n = n + '';
  6. var i = n.indexOf('.');
  7. return (i == -1) ? 0 : n.length - i - 1;
  8. }
  9. function getVF(n, opt_precision) {
  10. var v = opt_precision;
  11. if (undefined === v) {
  12. v = Math.min(getDecimals(n), 3);
  13. }
  14. var base = Math.pow(10, v);
  15. var f = ((n * base) | 0) % base;
  16. return {v: v, f: f};
  17. }
  18. $provide.value("$locale", {
  19. "DATETIME_FORMATS": {
  20. "AMPMS": [
  21. "\u00c0\u00e1r\u0254\u0300",
  22. "\u0186\u0300s\u00e1n"
  23. ],
  24. "DAY": [
  25. "\u0186j\u0254\u0301 \u00c0\u00eck\u00fa",
  26. "\u0186j\u0254\u0301 Aj\u00e9",
  27. "\u0186j\u0254\u0301 \u00ccs\u025b\u0301gun",
  28. "\u0186j\u0254\u0301r\u00fa",
  29. "\u0186j\u0254\u0301b\u0254",
  30. "\u0186j\u0254\u0301 \u0190t\u00ec",
  31. "\u0186j\u0254\u0301 \u00c0b\u00e1m\u025b\u0301ta"
  32. ],
  33. "ERANAMES": [
  34. "Saju Kristi",
  35. "Lehin Kristi"
  36. ],
  37. "ERAS": [
  38. "BCE",
  39. "LK"
  40. ],
  41. "FIRSTDAYOFWEEK": 0,
  42. "MONTH": [
  43. "Osh\u00f9 Sh\u025b\u0301r\u025b\u0301",
  44. "Osh\u00f9 \u00c8r\u00e8l\u00e8",
  45. "Osh\u00f9 \u0190r\u025b\u0300n\u00e0",
  46. "Osh\u00f9 \u00ccgb\u00e9",
  47. "Osh\u00f9 \u0190\u0300bibi",
  48. "Osh\u00f9 \u00d2k\u00fadu",
  49. "Osh\u00f9 Ag\u025bm\u0254",
  50. "Osh\u00f9 \u00d2g\u00fan",
  51. "Osh\u00f9 Owewe",
  52. "Osh\u00f9 \u0186\u0300w\u00e0r\u00e0",
  53. "Osh\u00f9 B\u00e9l\u00fa",
  54. "Osh\u00f9 \u0186\u0300p\u025b\u0300"
  55. ],
  56. "SHORTDAY": [
  57. "\u00c0\u00eck\u00fa",
  58. "Aj\u00e9",
  59. "\u00ccs\u025b\u0301gun",
  60. "\u0186j\u0254\u0301r\u00fa",
  61. "\u0186j\u0254\u0301b\u0254",
  62. "\u0190t\u00ec",
  63. "\u00c0b\u00e1m\u025b\u0301ta"
  64. ],
  65. "SHORTMONTH": [
  66. "Sh\u025b\u0301r\u025b\u0301",
  67. "\u00c8r\u00e8l\u00e8",
  68. "\u0190r\u025b\u0300n\u00e0",
  69. "\u00ccgb\u00e9",
  70. "\u0190\u0300bibi",
  71. "\u00d2k\u00fadu",
  72. "Ag\u025bm\u0254",
  73. "\u00d2g\u00fan",
  74. "Owewe",
  75. "\u0186\u0300w\u00e0r\u00e0",
  76. "B\u00e9l\u00fa",
  77. "\u0186\u0300p\u025b\u0300"
  78. ],
  79. "STANDALONEMONTH": [
  80. "Osh\u00f9 Sh\u025b\u0301r\u025b\u0301",
  81. "Osh\u00f9 \u00c8r\u00e8l\u00e8",
  82. "Osh\u00f9 \u0190r\u025b\u0300n\u00e0",
  83. "Osh\u00f9 \u00ccgb\u00e9",
  84. "Osh\u00f9 \u0190\u0300bibi",
  85. "Osh\u00f9 \u00d2k\u00fadu",
  86. "Osh\u00f9 Ag\u025bm\u0254",
  87. "Osh\u00f9 \u00d2g\u00fan",
  88. "Osh\u00f9 Owewe",
  89. "Osh\u00f9 \u0186\u0300w\u00e0r\u00e0",
  90. "Osh\u00f9 B\u00e9l\u00fa",
  91. "Osh\u00f9 \u0186\u0300p\u025b\u0300"
  92. ],
  93. "WEEKENDRANGE": [
  94. 5,
  95. 6
  96. ],
  97. "fullDate": "EEEE, d MMMM y",
  98. "longDate": "d MMMM y",
  99. "medium": "d MMM y HH:mm:ss",
  100. "mediumDate": "d MMM y",
  101. "mediumTime": "HH:mm:ss",
  102. "short": "dd/MM/y HH:mm",
  103. "shortDate": "dd/MM/y",
  104. "shortTime": "HH:mm"
  105. },
  106. "NUMBER_FORMATS": {
  107. "CURRENCY_SYM": "CFA",
  108. "DECIMAL_SEP": ".",
  109. "GROUP_SEP": ",",
  110. "PATTERNS": [
  111. {
  112. "gSize": 3,
  113. "lgSize": 3,
  114. "maxFrac": 3,
  115. "minFrac": 0,
  116. "minInt": 1,
  117. "negPre": "-",
  118. "negSuf": "",
  119. "posPre": "",
  120. "posSuf": ""
  121. },
  122. {
  123. "gSize": 3,
  124. "lgSize": 3,
  125. "maxFrac": 0,
  126. "minFrac": 0,
  127. "minInt": 1,
  128. "negPre": "-\u00a4",
  129. "negSuf": "",
  130. "posPre": "\u00a4",
  131. "posSuf": ""
  132. }
  133. ]
  134. },
  135. "id": "yo-bj",
  136. "localeID": "yo_BJ",
  137. "pluralCat": function (n, opt_precision) {
  138. var i = n | 0;
  139. var vf = getVF(n, opt_precision);
  140. if (i == 1 && vf.v == 0) {
  141. return PLURAL_CATEGORY.ONE;
  142. }
  143. return PLURAL_CATEGORY.OTHER;
  144. }
  145. });
  146. }]);