index.js 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. "use strict";
  2. var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
  3. Object.defineProperty(exports, "__esModule", {
  4. value: true
  5. });
  6. exports.default = void 0;
  7. var _index = _interopRequireDefault(require("../../../_lib/buildLocalizeFn/index.js"));
  8. // Vietnamese locale reference: http://www.localeplanet.com/icu/vi-VN/index.html
  9. // Capitalization reference: http://hcmup.edu.vn/index.php?option=com_content&view=article&id=4106%3Avit-hoa-trong-vn-bn-hanh-chinh&catid=2345%3Atham-kho&Itemid=4103&lang=vi&site=134
  10. var eraValues = {
  11. narrow: ['TCN', 'SCN'],
  12. abbreviated: ['trước CN', 'sau CN'],
  13. wide: ['trước Công Nguyên', 'sau Công Nguyên']
  14. };
  15. var quarterValues = {
  16. narrow: ['1', '2', '3', '4'],
  17. abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
  18. wide: ['Quý 1', 'Quý 2', 'Quý 3', 'Quý 4']
  19. };
  20. var formattingQuarterValues = {
  21. narrow: ['1', '2', '3', '4'],
  22. abbreviated: ['Q1', 'Q2', 'Q3', 'Q4'],
  23. // I notice many news outlet use this "quý II/2018"
  24. wide: ['quý I', 'quý II', 'quý III', 'quý IV']
  25. };
  26. // Note: in English, the names of days of the week and months are capitalized.
  27. // If you are making a new locale based on this one, check if the same is true for the language you're working on.
  28. // Generally, formatted dates should look like they are in the middle of a sentence,
  29. // e.g. in Spanish language the weekdays and months should be in the lowercase.
  30. var monthValues = {
  31. narrow: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'],
  32. abbreviated: ['Thg 1', 'Thg 2', 'Thg 3', 'Thg 4', 'Thg 5', 'Thg 6', 'Thg 7', 'Thg 8', 'Thg 9', 'Thg 10', 'Thg 11', 'Thg 12'],
  33. wide: ['Tháng Một', 'Tháng Hai', 'Tháng Ba', 'Tháng Tư', 'Tháng Năm', 'Tháng Sáu', 'Tháng Bảy', 'Tháng Tám', 'Tháng Chín', 'Tháng Mười', 'Tháng Mười Một', 'Tháng Mười Hai']
  34. };
  35. // In Vietnamese date formatting, month number less than 10 expected to have leading zero
  36. var formattingMonthValues = {
  37. narrow: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],
  38. abbreviated: ['thg 1', 'thg 2', 'thg 3', 'thg 4', 'thg 5', 'thg 6', 'thg 7', 'thg 8', 'thg 9', 'thg 10', 'thg 11', 'thg 12'],
  39. wide: ['tháng 01', 'tháng 02', 'tháng 03', 'tháng 04', 'tháng 05', 'tháng 06', 'tháng 07', 'tháng 08', 'tháng 09', 'tháng 10', 'tháng 11', 'tháng 12']
  40. };
  41. var dayValues = {
  42. narrow: ['CN', 'T2', 'T3', 'T4', 'T5', 'T6', 'T7'],
  43. short: ['CN', 'Th 2', 'Th 3', 'Th 4', 'Th 5', 'Th 6', 'Th 7'],
  44. abbreviated: ['CN', 'Thứ 2', 'Thứ 3', 'Thứ 4', 'Thứ 5', 'Thứ 6', 'Thứ 7'],
  45. wide: ['Chủ Nhật', 'Thứ Hai', 'Thứ Ba', 'Thứ Tư', 'Thứ Năm', 'Thứ Sáu', 'Thứ Bảy']
  46. };
  47. // Vietnamese are used to AM/PM borrowing from English, hence `narrow` and
  48. // `abbreviated` are just like English but I'm leaving the `wide`
  49. // format being localized with abbreviations found in some systems (SÁng / CHiều);
  50. // however, personally, I don't think `Chiều` sounds appropriate for `PM`
  51. var dayPeriodValues = {
  52. // narrow date period is extremely rare in Vietnamese
  53. // I used abbreviated form for noon, morning and afternoon
  54. // which are regconizable by Vietnamese, others cannot be any shorter
  55. narrow: {
  56. am: 'am',
  57. pm: 'pm',
  58. midnight: 'nửa đêm',
  59. noon: 'tr',
  60. morning: 'sg',
  61. afternoon: 'ch',
  62. evening: 'tối',
  63. night: 'đêm'
  64. },
  65. abbreviated: {
  66. am: 'AM',
  67. pm: 'PM',
  68. midnight: 'nửa đêm',
  69. noon: 'trưa',
  70. morning: 'sáng',
  71. afternoon: 'chiều',
  72. evening: 'tối',
  73. night: 'đêm'
  74. },
  75. wide: {
  76. am: 'SA',
  77. pm: 'CH',
  78. midnight: 'nửa đêm',
  79. noon: 'trưa',
  80. morning: 'sáng',
  81. afternoon: 'chiều',
  82. evening: 'tối',
  83. night: 'đêm'
  84. }
  85. };
  86. var formattingDayPeriodValues = {
  87. narrow: {
  88. am: 'am',
  89. pm: 'pm',
  90. midnight: 'nửa đêm',
  91. noon: 'tr',
  92. morning: 'sg',
  93. afternoon: 'ch',
  94. evening: 'tối',
  95. night: 'đêm'
  96. },
  97. abbreviated: {
  98. am: 'AM',
  99. pm: 'PM',
  100. midnight: 'nửa đêm',
  101. noon: 'trưa',
  102. morning: 'sáng',
  103. afternoon: 'chiều',
  104. evening: 'tối',
  105. night: 'đêm'
  106. },
  107. wide: {
  108. am: 'SA',
  109. pm: 'CH',
  110. midnight: 'nửa đêm',
  111. noon: 'giữa trưa',
  112. morning: 'vào buổi sáng',
  113. afternoon: 'vào buổi chiều',
  114. evening: 'vào buổi tối',
  115. night: 'vào ban đêm'
  116. }
  117. };
  118. var ordinalNumber = function ordinalNumber(dirtyNumber, options) {
  119. var number = Number(dirtyNumber);
  120. var unit = options === null || options === void 0 ? void 0 : options.unit;
  121. if (unit === 'quarter') {
  122. // many news outlets use "quý I"...
  123. switch (number) {
  124. case 1:
  125. return 'I';
  126. case 2:
  127. return 'II';
  128. case 3:
  129. return 'III';
  130. case 4:
  131. return 'IV';
  132. }
  133. } else if (unit === 'day') {
  134. // day of week in Vietnamese has ordinal number meaning,
  135. // so we should use them, else it'll sound weird
  136. switch (number) {
  137. case 1:
  138. return 'thứ 2';
  139. // meaning 2nd day but it's the first day of the week :D
  140. case 2:
  141. return 'thứ 3';
  142. // meaning 3rd day
  143. case 3:
  144. return 'thứ 4';
  145. // meaning 4th day and so on
  146. case 4:
  147. return 'thứ 5';
  148. case 5:
  149. return 'thứ 6';
  150. case 6:
  151. return 'thứ 7';
  152. case 7:
  153. return 'chủ nhật';
  154. // meaning Sunday, there's no 8th day :D
  155. }
  156. } else if (unit === 'week') {
  157. if (number === 1) {
  158. return 'thứ nhất';
  159. } else {
  160. return 'thứ ' + number;
  161. }
  162. } else if (unit === 'dayOfYear') {
  163. if (number === 1) {
  164. return 'đầu tiên';
  165. } else {
  166. return 'thứ ' + number;
  167. }
  168. }
  169. // there are no different forms of ordinal numbers in Vietnamese
  170. return String(number);
  171. };
  172. var localize = {
  173. ordinalNumber: ordinalNumber,
  174. era: (0, _index.default)({
  175. values: eraValues,
  176. defaultWidth: 'wide'
  177. }),
  178. quarter: (0, _index.default)({
  179. values: quarterValues,
  180. defaultWidth: 'wide',
  181. formattingValues: formattingQuarterValues,
  182. defaultFormattingWidth: 'wide',
  183. argumentCallback: function argumentCallback(quarter) {
  184. return quarter - 1;
  185. }
  186. }),
  187. month: (0, _index.default)({
  188. values: monthValues,
  189. defaultWidth: 'wide',
  190. formattingValues: formattingMonthValues,
  191. defaultFormattingWidth: 'wide'
  192. }),
  193. day: (0, _index.default)({
  194. values: dayValues,
  195. defaultWidth: 'wide'
  196. }),
  197. dayPeriod: (0, _index.default)({
  198. values: dayPeriodValues,
  199. defaultWidth: 'wide',
  200. formattingValues: formattingDayPeriodValues,
  201. defaultFormattingWidth: 'wide'
  202. })
  203. };
  204. var _default = localize;
  205. exports.default = _default;
  206. module.exports = exports.default;