@ui5/webcomponents-base 0.0.0-e463d2345 → 0.0.0-e818f286e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (469) hide show
  1. package/.eslintignore +4 -0
  2. package/CHANGELOG.md +437 -0
  3. package/README.md +53 -7
  4. package/bundle.esm.js +24 -20
  5. package/dist/AssetRegistry.js +8 -6
  6. package/dist/Boot.js +59 -0
  7. package/dist/CSP.js +59 -0
  8. package/dist/CustomElementsRegistry.js +95 -0
  9. package/dist/CustomElementsScope.js +30 -0
  10. package/dist/CustomElementsScopeUtils.js +108 -0
  11. package/dist/DOMObserver.js +65 -0
  12. package/dist/Device.js +71 -773
  13. package/dist/EventProvider.js +38 -26
  14. package/dist/FeaturesRegistry.js +4 -1
  15. package/dist/FontFace.js +20 -56
  16. package/dist/InitialConfiguration.js +64 -17
  17. package/dist/Keys.js +295 -0
  18. package/dist/ManagedStyles.js +83 -0
  19. package/dist/MediaRange.js +109 -0
  20. package/dist/PropertiesFileFormat.js +95 -0
  21. package/dist/Render.js +175 -0
  22. package/dist/RenderQueue.js +41 -17
  23. package/dist/RenderScheduler.js +24 -145
  24. package/dist/Runtimes.js +107 -0
  25. package/dist/StaticArea.js +2 -34
  26. package/dist/StaticAreaItem.js +69 -35
  27. package/dist/SystemCSSVars.js +10 -0
  28. package/dist/Theming.js +3 -44
  29. package/dist/UI5Element.js +497 -306
  30. package/dist/UI5ElementMetadata.js +198 -19
  31. package/dist/asset-registries/Icons.js +125 -14
  32. package/dist/asset-registries/Illustrations.js +30 -0
  33. package/dist/asset-registries/LocaleData.js +114 -51
  34. package/dist/asset-registries/Themes.js +37 -30
  35. package/dist/asset-registries/i18n.js +81 -33
  36. package/dist/assets/bundle.esm.81ba431e.js +43 -0
  37. package/dist/assets-meta/IconCollectionsAlias.js +18 -0
  38. package/dist/config/AnimationMode.js +16 -2
  39. package/dist/config/CalendarType.js +7 -7
  40. package/dist/config/FormatSettings.js +5 -1
  41. package/dist/config/Icons.js +52 -0
  42. package/dist/config/Language.js +62 -3
  43. package/dist/config/NoConflict.js +10 -3
  44. package/dist/config/Theme.js +32 -3
  45. package/dist/css/BusyIndicator.css +80 -0
  46. package/dist/css/FontFace.css +75 -0
  47. package/dist/css/OverrideFontFace.css +32 -0
  48. package/dist/css/SystemCSSVars.css +17 -0
  49. package/dist/delegate/ItemNavigation.js +249 -127
  50. package/dist/delegate/ResizeHandler.js +78 -38
  51. package/dist/delegate/ScrollEnablement.js +122 -14
  52. package/dist/features/F6Navigation.js +110 -0
  53. package/dist/features/OpenUI5Enablement.js +119 -0
  54. package/dist/features/OpenUI5Support.js +125 -0
  55. package/dist/generated/AssetParameters.js +13 -0
  56. package/dist/generated/VersionInfo.js +10 -0
  57. package/dist/generated/css/BusyIndicator.css.js +5 -0
  58. package/dist/generated/css/FontFace.css.js +5 -0
  59. package/dist/generated/css/OverrideFontFace.css.js +5 -0
  60. package/dist/generated/css/SystemCSSVars.css.js +5 -0
  61. package/dist/getSharedResource.js +30 -0
  62. package/dist/i18nBundle.js +62 -11
  63. package/{src → dist/locale}/Locale.js +0 -10
  64. package/dist/locale/RTLAwareRegistry.js +14 -0
  65. package/dist/locale/applyDirection.js +17 -0
  66. package/dist/locale/directionChange.js +32 -0
  67. package/dist/locale/getEffectiveDir.js +28 -0
  68. package/dist/locale/getLocale.js +41 -0
  69. package/dist/locale/languageChange.js +22 -0
  70. package/dist/locale/nextFallbackLocale.js +28 -0
  71. package/dist/{util → locale}/normalizeLocale.js +8 -31
  72. package/dist/renderer/LitRenderer.js +44 -7
  73. package/dist/renderer/directives/style-map.js +72 -0
  74. package/dist/renderer/executeTemplate.js +34 -0
  75. package/dist/sap/base/Log.js +241 -0
  76. package/dist/sap/base/assert.js +8 -0
  77. package/dist/sap/base/security/URLListValidator.js +148 -0
  78. package/dist/sap/base/security/encodeCSS.js +14 -0
  79. package/dist/sap/base/security/encodeXML.js +23 -0
  80. package/dist/sap/base/security/sanitizeHTML.js +16 -0
  81. package/dist/sap/base/strings/toHex.js +8 -0
  82. package/dist/sap/base/util/now.js +7 -0
  83. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +3585 -0
  84. package/dist/theming/CustomStyle.js +47 -6
  85. package/dist/theming/ThemeLoaded.js +22 -0
  86. package/dist/theming/applyTheme.js +79 -0
  87. package/dist/theming/getConstructableStyle.js +30 -0
  88. package/dist/theming/getEffectiveLinksHrefs.js +27 -0
  89. package/dist/theming/getEffectiveStyle.js +39 -0
  90. package/dist/theming/getStylesString.js +15 -0
  91. package/dist/theming/getThemeDesignerTheme.js +87 -0
  92. package/dist/theming/preloadLinks.js +23 -0
  93. package/dist/thirdparty/_merge.js +32 -0
  94. package/dist/thirdparty/isPlainObject.js +18 -0
  95. package/dist/thirdparty/merge.js +10 -0
  96. package/dist/types/CSSColor.js +9 -0
  97. package/dist/{dates → types}/CalendarType.js +2 -2
  98. package/dist/types/DataType.js +13 -1
  99. package/dist/types/Float.js +14 -0
  100. package/dist/types/Integer.js +4 -0
  101. package/dist/types/InvisibleMessageMode.js +30 -0
  102. package/dist/types/ItemNavigationBehavior.js +2 -7
  103. package/dist/types/NavigationMode.js +1 -0
  104. package/dist/types/PopupState.js +1 -1
  105. package/dist/types/ValueState.js +2 -1
  106. package/dist/updateShadowRoot.js +29 -0
  107. package/dist/util/AriaLabelHelper.js +39 -0
  108. package/dist/util/Caret.js +32 -0
  109. package/dist/util/ColorConversion.js +398 -0
  110. package/dist/util/FocusableElements.js +30 -11
  111. package/dist/util/HTMLSanitizer.js +7 -0
  112. package/dist/util/InvisibleMessage.js +69 -0
  113. package/dist/util/PopupUtils.js +93 -0
  114. package/dist/util/SlotsHelper.js +43 -0
  115. package/dist/util/StringHelper.js +17 -2
  116. package/dist/util/TabbableElements.js +9 -2
  117. package/dist/util/arraysAreEqual.js +15 -0
  118. package/dist/util/clamp.js +12 -0
  119. package/dist/util/createLinkInHead.js +19 -0
  120. package/dist/util/debounce.js +17 -0
  121. package/dist/util/detectNavigatorLanguage.js +3 -1
  122. package/dist/util/escapeRegex.js +10 -0
  123. package/dist/util/generateHighlightedMarkup.js +42 -0
  124. package/dist/util/getActiveElement.js +11 -0
  125. package/dist/util/getClassCopy.js +10 -0
  126. package/dist/util/getEffectiveContentDensity.js +5 -0
  127. package/dist/util/getFileExtension.js +21 -0
  128. package/dist/util/getNormalizedTarget.js +16 -0
  129. package/dist/util/getSingletonElementInstance.js +13 -0
  130. package/dist/util/isDefaultSlotProvided.js +11 -0
  131. package/dist/util/isElementInView.js +15 -0
  132. package/dist/util/isNodeHidden.js +1 -5
  133. package/dist/util/isNodeTabbable.js +4 -4
  134. package/dist/util/isValidPropertyName.js +11 -2
  135. package/dist/util/setToArray.js +10 -0
  136. package/hash.txt +1 -0
  137. package/index.js +1 -1
  138. package/lib/generate-asset-parameters/index.js +25 -0
  139. package/lib/generate-styles/index.js +26 -0
  140. package/lib/generate-version-info/index.js +32 -0
  141. package/package-scripts.js +41 -27
  142. package/package.json +22 -14
  143. package/src/AssetRegistry.js +8 -6
  144. package/src/Boot.js +59 -0
  145. package/src/CSP.js +59 -0
  146. package/src/CustomElementsRegistry.js +95 -0
  147. package/src/CustomElementsScope.js +30 -0
  148. package/src/CustomElementsScopeUtils.js +108 -0
  149. package/src/DOMObserver.js +65 -0
  150. package/src/Device.js +71 -773
  151. package/src/EventProvider.js +38 -26
  152. package/src/FeaturesRegistry.js +4 -1
  153. package/src/FontFace.js +20 -56
  154. package/src/InitialConfiguration.js +64 -17
  155. package/src/Keys.js +295 -0
  156. package/src/ManagedStyles.js +83 -0
  157. package/src/MediaRange.js +109 -0
  158. package/src/PropertiesFileFormat.js +95 -0
  159. package/src/Render.js +175 -0
  160. package/src/RenderQueue.js +41 -17
  161. package/src/RenderScheduler.js +24 -145
  162. package/src/Runtimes.js +107 -0
  163. package/src/StaticArea.js +2 -34
  164. package/src/StaticAreaItem.js +69 -35
  165. package/src/SystemCSSVars.js +10 -0
  166. package/src/Theming.js +3 -44
  167. package/src/UI5Element.js +497 -306
  168. package/src/UI5ElementMetadata.js +198 -19
  169. package/src/asset-registries/Icons.js +125 -14
  170. package/src/asset-registries/Illustrations.js +30 -0
  171. package/src/asset-registries/LocaleData.js +114 -51
  172. package/src/asset-registries/Themes.js +37 -30
  173. package/src/asset-registries/i18n.js +81 -33
  174. package/src/assets-meta/IconCollectionsAlias.js +18 -0
  175. package/src/config/AnimationMode.js +16 -2
  176. package/src/config/CalendarType.js +7 -7
  177. package/src/config/FormatSettings.js +5 -1
  178. package/src/config/Icons.js +52 -0
  179. package/src/config/Language.js +62 -3
  180. package/src/config/NoConflict.js +10 -3
  181. package/src/config/Theme.js +32 -3
  182. package/src/css/BusyIndicator.css +80 -0
  183. package/src/css/FontFace.css +75 -0
  184. package/src/css/OverrideFontFace.css +32 -0
  185. package/src/css/SystemCSSVars.css +17 -0
  186. package/src/delegate/ItemNavigation.js +249 -127
  187. package/src/delegate/ResizeHandler.js +78 -38
  188. package/src/delegate/ScrollEnablement.js +122 -14
  189. package/src/features/F6Navigation.js +110 -0
  190. package/src/features/OpenUI5Enablement.js +119 -0
  191. package/src/features/OpenUI5Support.js +125 -0
  192. package/src/getSharedResource.js +30 -0
  193. package/src/i18nBundle.js +62 -11
  194. package/{dist → src/locale}/Locale.js +0 -10
  195. package/src/locale/RTLAwareRegistry.js +14 -0
  196. package/src/locale/applyDirection.js +17 -0
  197. package/src/locale/directionChange.js +32 -0
  198. package/src/locale/getEffectiveDir.js +28 -0
  199. package/src/locale/getLocale.js +41 -0
  200. package/src/locale/languageChange.js +22 -0
  201. package/src/locale/nextFallbackLocale.js +28 -0
  202. package/src/{util → locale}/normalizeLocale.js +8 -31
  203. package/src/renderer/LitRenderer.js +44 -7
  204. package/src/renderer/directives/style-map.js +72 -0
  205. package/src/renderer/executeTemplate.js +34 -0
  206. package/src/theming/CustomStyle.js +47 -6
  207. package/src/theming/ThemeLoaded.js +22 -0
  208. package/src/theming/applyTheme.js +79 -0
  209. package/src/theming/getConstructableStyle.js +30 -0
  210. package/src/theming/getEffectiveLinksHrefs.js +27 -0
  211. package/src/theming/getEffectiveStyle.js +39 -0
  212. package/src/theming/getStylesString.js +15 -0
  213. package/src/theming/getThemeDesignerTheme.js +87 -0
  214. package/src/theming/preloadLinks.js +23 -0
  215. package/src/thirdparty/_merge.js +32 -0
  216. package/src/thirdparty/isPlainObject.js +18 -0
  217. package/src/thirdparty/merge.js +10 -0
  218. package/src/types/CSSColor.js +9 -0
  219. package/src/{dates → types}/CalendarType.js +2 -2
  220. package/src/types/DataType.js +13 -1
  221. package/src/types/Float.js +14 -0
  222. package/src/types/Integer.js +4 -0
  223. package/src/types/InvisibleMessageMode.js +30 -0
  224. package/src/types/ItemNavigationBehavior.js +2 -7
  225. package/src/types/NavigationMode.js +1 -0
  226. package/src/types/PopupState.js +1 -1
  227. package/src/types/ValueState.js +2 -1
  228. package/src/updateShadowRoot.js +29 -0
  229. package/src/util/AriaLabelHelper.js +39 -0
  230. package/src/util/Caret.js +32 -0
  231. package/src/util/ColorConversion.js +398 -0
  232. package/src/util/FocusableElements.js +30 -11
  233. package/src/util/HTMLSanitizer.js +7 -0
  234. package/src/util/InvisibleMessage.js +69 -0
  235. package/src/util/PopupUtils.js +93 -0
  236. package/src/util/SlotsHelper.js +43 -0
  237. package/src/util/StringHelper.js +17 -2
  238. package/src/util/TabbableElements.js +9 -2
  239. package/src/util/arraysAreEqual.js +15 -0
  240. package/src/util/clamp.js +12 -0
  241. package/src/util/createLinkInHead.js +19 -0
  242. package/src/util/debounce.js +17 -0
  243. package/src/util/detectNavigatorLanguage.js +3 -1
  244. package/src/util/escapeRegex.js +10 -0
  245. package/src/util/generateHighlightedMarkup.js +42 -0
  246. package/src/util/getActiveElement.js +11 -0
  247. package/src/util/getClassCopy.js +10 -0
  248. package/src/util/getEffectiveContentDensity.js +5 -0
  249. package/src/util/getFileExtension.js +21 -0
  250. package/src/util/getNormalizedTarget.js +16 -0
  251. package/src/util/getSingletonElementInstance.js +13 -0
  252. package/src/util/isDefaultSlotProvided.js +11 -0
  253. package/src/util/isElementInView.js +15 -0
  254. package/src/util/isNodeHidden.js +1 -5
  255. package/src/util/isNodeTabbable.js +4 -4
  256. package/src/util/isValidPropertyName.js +11 -2
  257. package/src/util/setToArray.js +10 -0
  258. package/used-modules.txt +10 -0
  259. package/bundle.es5.js +0 -28
  260. package/config/.eslintrc.js +0 -3
  261. package/config/rollup.config.js +0 -1
  262. package/dist/Assets.js +0 -2
  263. package/dist/CSS.js +0 -48
  264. package/dist/FormatSettings.js +0 -31
  265. package/dist/LocaleProvider.js +0 -34
  266. package/dist/ResourceLoaderOverrides.js +0 -38
  267. package/dist/SVGIconRegistry.js +0 -54
  268. package/dist/boot.js +0 -25
  269. package/dist/compatibility/DOMObserver.js +0 -62
  270. package/dist/compatibility/patchNodeValue.js +0 -24
  271. package/dist/compatibility/whenPolyfillLoaded.js +0 -26
  272. package/dist/dates/CalendarDate.js +0 -203
  273. package/dist/dates/CalendarUtils.js +0 -99
  274. package/dist/delegate/CustomResize.js +0 -78
  275. package/dist/delegate/NativeResize.js +0 -44
  276. package/dist/events/PseudoEvents.js +0 -58
  277. package/dist/features/browsersupport/Edge.js +0 -6
  278. package/dist/features/browsersupport/IE11.js +0 -41
  279. package/dist/features/calendar/Buddhist.js +0 -1
  280. package/dist/features/calendar/Islamic.js +0 -1
  281. package/dist/features/calendar/Japanese.js +0 -1
  282. package/dist/features/calendar/Persian.js +0 -1
  283. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar.json +0 -5598
  284. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar_EG.json +0 -5598
  285. package/dist/generated/assets/cldr/sap/ui/core/cldr/ar_SA.json +0 -5598
  286. package/dist/generated/assets/cldr/sap/ui/core/cldr/bg.json +0 -4789
  287. package/dist/generated/assets/cldr/sap/ui/core/cldr/ca.json +0 -4801
  288. package/dist/generated/assets/cldr/sap/ui/core/cldr/cs.json +0 -5245
  289. package/dist/generated/assets/cldr/sap/ui/core/cldr/da.json +0 -4696
  290. package/dist/generated/assets/cldr/sap/ui/core/cldr/de.json +0 -4797
  291. package/dist/generated/assets/cldr/sap/ui/core/cldr/de_AT.json +0 -4798
  292. package/dist/generated/assets/cldr/sap/ui/core/cldr/de_CH.json +0 -4796
  293. package/dist/generated/assets/cldr/sap/ui/core/cldr/el.json +0 -4694
  294. package/dist/generated/assets/cldr/sap/ui/core/cldr/el_CY.json +0 -4694
  295. package/dist/generated/assets/cldr/sap/ui/core/cldr/en.json +0 -4777
  296. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_AU.json +0 -4769
  297. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_GB.json +0 -4778
  298. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_HK.json +0 -4784
  299. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_IE.json +0 -4778
  300. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_IN.json +0 -4779
  301. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_NZ.json +0 -4778
  302. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_PG.json +0 -4779
  303. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_SG.json +0 -4780
  304. package/dist/generated/assets/cldr/sap/ui/core/cldr/en_ZA.json +0 -4779
  305. package/dist/generated/assets/cldr/sap/ui/core/cldr/es.json +0 -4719
  306. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_AR.json +0 -4721
  307. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_BO.json +0 -4720
  308. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_CL.json +0 -4721
  309. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_CO.json +0 -4721
  310. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_MX.json +0 -4722
  311. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_PE.json +0 -4720
  312. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_UY.json +0 -4722
  313. package/dist/generated/assets/cldr/sap/ui/core/cldr/es_VE.json +0 -4721
  314. package/dist/generated/assets/cldr/sap/ui/core/cldr/et.json +0 -4776
  315. package/dist/generated/assets/cldr/sap/ui/core/cldr/fa.json +0 -4704
  316. package/dist/generated/assets/cldr/sap/ui/core/cldr/fi.json +0 -4816
  317. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr.json +0 -4788
  318. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_BE.json +0 -4788
  319. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_CA.json +0 -4782
  320. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_CH.json +0 -4806
  321. package/dist/generated/assets/cldr/sap/ui/core/cldr/fr_LU.json +0 -4788
  322. package/dist/generated/assets/cldr/sap/ui/core/cldr/he.json +0 -5133
  323. package/dist/generated/assets/cldr/sap/ui/core/cldr/hi.json +0 -4680
  324. package/dist/generated/assets/cldr/sap/ui/core/cldr/hr.json +0 -4910
  325. package/dist/generated/assets/cldr/sap/ui/core/cldr/hu.json +0 -4664
  326. package/dist/generated/assets/cldr/sap/ui/core/cldr/id.json +0 -4500
  327. package/dist/generated/assets/cldr/sap/ui/core/cldr/it.json +0 -4757
  328. package/dist/generated/assets/cldr/sap/ui/core/cldr/it_CH.json +0 -4757
  329. package/dist/generated/assets/cldr/sap/ui/core/cldr/ja.json +0 -4599
  330. package/dist/generated/assets/cldr/sap/ui/core/cldr/kk.json +0 -4537
  331. package/dist/generated/assets/cldr/sap/ui/core/cldr/ko.json +0 -4574
  332. package/dist/generated/assets/cldr/sap/ui/core/cldr/lt.json +0 -5234
  333. package/dist/generated/assets/cldr/sap/ui/core/cldr/lv.json +0 -4902
  334. package/dist/generated/assets/cldr/sap/ui/core/cldr/ms.json +0 -4352
  335. package/dist/generated/assets/cldr/sap/ui/core/cldr/nb.json +0 -4784
  336. package/dist/generated/assets/cldr/sap/ui/core/cldr/nl.json +0 -4790
  337. package/dist/generated/assets/cldr/sap/ui/core/cldr/nl_BE.json +0 -4790
  338. package/dist/generated/assets/cldr/sap/ui/core/cldr/pl.json +0 -5223
  339. package/dist/generated/assets/cldr/sap/ui/core/cldr/pt.json +0 -4703
  340. package/dist/generated/assets/cldr/sap/ui/core/cldr/pt_PT.json +0 -4753
  341. package/dist/generated/assets/cldr/sap/ui/core/cldr/ro.json +0 -4881
  342. package/dist/generated/assets/cldr/sap/ui/core/cldr/ru.json +0 -5157
  343. package/dist/generated/assets/cldr/sap/ui/core/cldr/ru_UA.json +0 -5157
  344. package/dist/generated/assets/cldr/sap/ui/core/cldr/sk.json +0 -5125
  345. package/dist/generated/assets/cldr/sap/ui/core/cldr/sl.json +0 -5105
  346. package/dist/generated/assets/cldr/sap/ui/core/cldr/sr.json +0 -4908
  347. package/dist/generated/assets/cldr/sap/ui/core/cldr/sv.json +0 -4818
  348. package/dist/generated/assets/cldr/sap/ui/core/cldr/th.json +0 -4633
  349. package/dist/generated/assets/cldr/sap/ui/core/cldr/tr.json +0 -4791
  350. package/dist/generated/assets/cldr/sap/ui/core/cldr/uk.json +0 -5126
  351. package/dist/generated/assets/cldr/sap/ui/core/cldr/vi.json +0 -4510
  352. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_CN.json +0 -4469
  353. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_HK.json +0 -4479
  354. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_SG.json +0 -4479
  355. package/dist/generated/assets/cldr/sap/ui/core/cldr/zh_TW.json +0 -4565
  356. package/dist/json-imports/LocaleData.js +0 -171
  357. package/dist/renderer/ifDefined.js +0 -21
  358. package/dist/resources/bundle.es5.js +0 -12643
  359. package/dist/resources/bundle.es5.js.map +0 -1
  360. package/dist/resources/bundle.esm.js +0 -7450
  361. package/dist/resources/bundle.esm.js.map +0 -1
  362. package/dist/shims/Core-shim.js +0 -52
  363. package/dist/shims/jquery-shim.js +0 -89
  364. package/dist/test-resources/assets/Themes.js +0 -11
  365. package/dist/test-resources/elements/Child.js +0 -35
  366. package/dist/test-resources/elements/Generic.js +0 -83
  367. package/dist/test-resources/elements/GenericExt.js +0 -26
  368. package/dist/test-resources/elements/NoShadowDOM.js +0 -13
  369. package/dist/test-resources/elements/Parent.js +0 -36
  370. package/dist/test-resources/pages/AllTestElements.html +0 -42
  371. package/dist/test-resources/pages/Configuration.html +0 -20
  372. package/dist/test-resources/pages/ConfigurationScript.html +0 -36
  373. package/dist/test-resources/specs/ConfigurationChange.spec.js +0 -25
  374. package/dist/test-resources/specs/ConfigurationScript.spec.js +0 -61
  375. package/dist/test-resources/specs/ConfigurationURL.spec.js +0 -45
  376. package/dist/test-resources/specs/CustomTheme.spec.js +0 -25
  377. package/dist/test-resources/specs/Theming.spec.js +0 -31
  378. package/dist/test-resources/specs/UI5ElementInvalidation.js +0 -258
  379. package/dist/test-resources/specs/UI5ElementLifecycle.js +0 -93
  380. package/dist/test-resources/specs/UI5ElementListenForChildPropChanges.spec.js +0 -101
  381. package/dist/test-resources/specs/UI5ElementMetadataExt.js +0 -40
  382. package/dist/test-resources/specs/UI5ElementPropertyValidation.js +0 -12
  383. package/dist/test-resources/specs/UI5ElementPropsAndAttrs.spec.js +0 -65
  384. package/dist/test-resources/specs/UI5ElementShadowDOM.js +0 -22
  385. package/dist/test-resources/specs/UI5ElementSlots.js +0 -34
  386. package/dist/theming/StyleInjection.js +0 -67
  387. package/dist/thirdparty/Array.from.js +0 -16
  388. package/dist/thirdparty/Array.prototype.fill.js +0 -44
  389. package/dist/thirdparty/Array.prototype.find.js +0 -46
  390. package/dist/thirdparty/Array.prototype.includes.js +0 -51
  391. package/dist/thirdparty/Element.prototype.closest.js +0 -11
  392. package/dist/thirdparty/Element.prototype.matches.js +0 -6
  393. package/dist/thirdparty/Map.prototype.keys.js +0 -9
  394. package/dist/thirdparty/Number.isInteger.js +0 -5
  395. package/dist/thirdparty/Number.isNaN.js +0 -1
  396. package/dist/thirdparty/Number.parseInt.js +0 -1
  397. package/dist/thirdparty/Object.assign.js +0 -31
  398. package/dist/thirdparty/Object.entries.js +0 -11
  399. package/dist/thirdparty/Symbol.js +0 -2
  400. package/dist/thirdparty/WeakSet.js +0 -27
  401. package/dist/thirdparty/events-polyfills.js +0 -89
  402. package/dist/thirdparty/fetch.js +0 -1
  403. package/dist/thirdparty/template.js +0 -600
  404. package/dist/util/CSSTransformUtils.js +0 -90
  405. package/dist/webcomponentsjs/LICENSE.md +0 -19
  406. package/dist/webcomponentsjs/README.md +0 -229
  407. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  408. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  409. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  410. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  411. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  412. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  413. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  414. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  415. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  416. package/dist/webcomponentsjs/package.json +0 -46
  417. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  418. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  419. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  420. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  421. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  422. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  423. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  424. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  425. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  426. package/src/Assets.js +0 -2
  427. package/src/CSS.js +0 -48
  428. package/src/FormatSettings.js +0 -31
  429. package/src/LocaleProvider.js +0 -34
  430. package/src/ResourceLoaderOverrides.js +0 -38
  431. package/src/SVGIconRegistry.js +0 -54
  432. package/src/boot.js +0 -25
  433. package/src/compatibility/DOMObserver.js +0 -62
  434. package/src/compatibility/patchNodeValue.js +0 -24
  435. package/src/compatibility/whenPolyfillLoaded.js +0 -26
  436. package/src/dates/CalendarDate.js +0 -203
  437. package/src/dates/CalendarUtils.js +0 -99
  438. package/src/delegate/CustomResize.js +0 -78
  439. package/src/delegate/NativeResize.js +0 -44
  440. package/src/events/PseudoEvents.js +0 -58
  441. package/src/features/browsersupport/Edge.js +0 -6
  442. package/src/features/browsersupport/IE11.js +0 -41
  443. package/src/features/calendar/Buddhist.js +0 -1
  444. package/src/features/calendar/Islamic.js +0 -1
  445. package/src/features/calendar/Japanese.js +0 -1
  446. package/src/features/calendar/Persian.js +0 -1
  447. package/src/json-imports/LocaleData.js +0 -171
  448. package/src/renderer/ifDefined.js +0 -21
  449. package/src/shims/Core-shim.js +0 -52
  450. package/src/shims/jquery-shim.js +0 -89
  451. package/src/theming/StyleInjection.js +0 -67
  452. package/src/thirdparty/Array.from.js +0 -16
  453. package/src/thirdparty/Array.prototype.fill.js +0 -44
  454. package/src/thirdparty/Array.prototype.find.js +0 -46
  455. package/src/thirdparty/Array.prototype.includes.js +0 -51
  456. package/src/thirdparty/Element.prototype.closest.js +0 -11
  457. package/src/thirdparty/Element.prototype.matches.js +0 -6
  458. package/src/thirdparty/Map.prototype.keys.js +0 -9
  459. package/src/thirdparty/Number.isInteger.js +0 -5
  460. package/src/thirdparty/Number.isNaN.js +0 -1
  461. package/src/thirdparty/Number.parseInt.js +0 -1
  462. package/src/thirdparty/Object.assign.js +0 -31
  463. package/src/thirdparty/Object.entries.js +0 -11
  464. package/src/thirdparty/Symbol.js +0 -2
  465. package/src/thirdparty/WeakSet.js +0 -27
  466. package/src/thirdparty/events-polyfills.js +0 -89
  467. package/src/thirdparty/fetch.js +0 -1
  468. package/src/thirdparty/template.js +0 -600
  469. package/src/util/CSSTransformUtils.js +0 -90
@@ -1,4510 +0,0 @@
1
- {
2
- "__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
3
- "languages": {
4
- "aa": "Tiếng Afar",
5
- "ab": "Tiếng Abkhazia",
6
- "ace": "Tiếng Achinese",
7
- "ach": "Tiếng Acoli",
8
- "ada": "Tiếng Adangme",
9
- "ady": "Tiếng Adyghe",
10
- "ae": "Tiếng Avestan",
11
- "af": "Tiếng Afrikaans",
12
- "afh": "Tiếng Afrihili",
13
- "agq": "Tiếng Aghem",
14
- "ain": "Tiếng Ainu",
15
- "ak": "Tiếng Akan",
16
- "akk": "Tiếng Akkadia",
17
- "akz": "Tiếng Alabama",
18
- "ale": "Tiếng Aleut",
19
- "aln": "Tiếng Gheg Albani",
20
- "alt": "Tiếng Altai Miền Nam",
21
- "am": "Tiếng Amharic",
22
- "an": "Tiếng Aragon",
23
- "ang": "Tiếng Anh cổ",
24
- "anp": "Tiếng Angika",
25
- "ar": "Tiếng Ả Rập",
26
- "ar_001": "Tiếng Ả Rập Hiện đại",
27
- "arc": "Tiếng Aramaic",
28
- "arn": "Tiếng Mapuche",
29
- "aro": "Tiếng Araona",
30
- "arp": "Tiếng Arapaho",
31
- "arq": "Tiếng Ả Rập Algeria",
32
- "ars": "Tiếng Ả Rập Najdi",
33
- "arw": "Tiếng Arawak",
34
- "arz": "Tiếng Ả Rập Ai Cập",
35
- "as": "Tiếng Assam",
36
- "asa": "Tiếng Asu",
37
- "ase": "Ngôn ngữ Ký hiệu Mỹ",
38
- "ast": "Tiếng Asturias",
39
- "av": "Tiếng Avaric",
40
- "awa": "Tiếng Awadhi",
41
- "ay": "Tiếng Aymara",
42
- "az": "Tiếng Azerbaijan",
43
- "az_alt-short": "Tiếng Azeri",
44
- "ba": "Tiếng Bashkir",
45
- "bal": "Tiếng Baluchi",
46
- "ban": "Tiếng Bali",
47
- "bar": "Tiếng Bavaria",
48
- "bas": "Tiếng Basaa",
49
- "bax": "Tiếng Bamun",
50
- "bbc": "Tiếng Batak Toba",
51
- "bbj": "Tiếng Ghomala",
52
- "be": "Tiếng Belarus",
53
- "bej": "Tiếng Beja",
54
- "bem": "Tiếng Bemba",
55
- "bew": "Tiếng Betawi",
56
- "bez": "Tiếng Bena",
57
- "bfd": "Tiếng Bafut",
58
- "bfq": "Tiếng Badaga",
59
- "bg": "Tiếng Bulgaria",
60
- "bgn": "Tiếng Tây Balochi",
61
- "bho": "Tiếng Bhojpuri",
62
- "bi": "Tiếng Bislama",
63
- "bik": "Tiếng Bikol",
64
- "bin": "Tiếng Bini",
65
- "bjn": "Tiếng Banjar",
66
- "bkm": "Tiếng Kom",
67
- "bla": "Tiếng Siksika",
68
- "bm": "Tiếng Bambara",
69
- "bn": "Tiếng Bangla",
70
- "bo": "Tiếng Tây Tạng",
71
- "bpy": "Tiếng Bishnupriya",
72
- "bqi": "Tiếng Bakhtiari",
73
- "br": "Tiếng Breton",
74
- "bra": "Tiếng Braj",
75
- "brh": "Tiếng Brahui",
76
- "brx": "Tiếng Bodo",
77
- "bs": "Tiếng Bosnia",
78
- "bss": "Tiếng Akoose",
79
- "bua": "Tiếng Buriat",
80
- "bug": "Tiếng Bugin",
81
- "bum": "Tiếng Bulu",
82
- "byn": "Tiếng Blin",
83
- "byv": "Tiếng Medumba",
84
- "ca": "Tiếng Catalan",
85
- "cad": "Tiếng Caddo",
86
- "car": "Tiếng Carib",
87
- "cay": "Tiếng Cayuga",
88
- "cch": "Tiếng Atsam",
89
- "ccp": "ccp",
90
- "ce": "Tiếng Chechen",
91
- "ceb": "Tiếng Cebuano",
92
- "cgg": "Tiếng Chiga",
93
- "ch": "Tiếng Chamorro",
94
- "chb": "Tiếng Chibcha",
95
- "chg": "Tiếng Chagatai",
96
- "chk": "Tiếng Chuuk",
97
- "chm": "Tiếng Mari",
98
- "chn": "Biệt ngữ Chinook",
99
- "cho": "Tiếng Choctaw",
100
- "chp": "Tiếng Chipewyan",
101
- "chr": "Tiếng Cherokee",
102
- "chy": "Tiếng Cheyenne",
103
- "ckb": "Tiếng Kurd Miền Trung",
104
- "co": "Tiếng Corsica",
105
- "cop": "Tiếng Coptic",
106
- "cps": "Tiếng Capiznon",
107
- "cr": "Tiếng Cree",
108
- "crh": "Tiếng Thổ Nhĩ Kỳ Crimean",
109
- "crs": "Tiếng Pháp Seselwa Creole",
110
- "cs": "Tiếng Séc",
111
- "csb": "Tiếng Kashubia",
112
- "cu": "Tiếng Slavơ Nhà thờ",
113
- "cv": "Tiếng Chuvash",
114
- "cy": "Tiếng Wales",
115
- "da": "Tiếng Đan Mạch",
116
- "dak": "Tiếng Dakota",
117
- "dar": "Tiếng Dargwa",
118
- "dav": "Tiếng Taita",
119
- "de": "Tiếng Đức",
120
- "de_AT": "Tiếng Đức (Áo)",
121
- "de_CH": "Tiếng Thượng Giéc-man (Thụy Sĩ)",
122
- "del": "Tiếng Delaware",
123
- "den": "Tiếng Slave",
124
- "dgr": "Tiếng Dogrib",
125
- "din": "Tiếng Dinka",
126
- "dje": "Tiếng Zarma",
127
- "doi": "Tiếng Dogri",
128
- "dsb": "Tiếng Hạ Sorbia",
129
- "dtp": "Tiếng Dusun Miền Trung",
130
- "dua": "Tiếng Duala",
131
- "dum": "Tiếng Hà Lan Trung cổ",
132
- "dv": "Tiếng Divehi",
133
- "dyo": "Tiếng Jola-Fonyi",
134
- "dyu": "Tiếng Dyula",
135
- "dz": "Tiếng Dzongkha",
136
- "dzg": "Tiếng Dazaga",
137
- "ebu": "Tiếng Embu",
138
- "ee": "Tiếng Ewe",
139
- "efi": "Tiếng Efik",
140
- "egl": "Tiếng Emilia",
141
- "egy": "Tiếng Ai Cập cổ",
142
- "eka": "Tiếng Ekajuk",
143
- "el": "Tiếng Hy Lạp",
144
- "elx": "Tiếng Elamite",
145
- "en": "Tiếng Anh",
146
- "en_AU": "Tiếng Anh (Australia)",
147
- "en_CA": "Tiếng Anh (Canada)",
148
- "en_GB": "Tiếng Anh (Anh)",
149
- "en_GB-alt-short": "Tiếng Anh (Anh)",
150
- "en_US": "Tiếng Anh (Mỹ)",
151
- "en_US-alt-short": "Tiếng Anh (Mỹ)",
152
- "enm": "Tiếng Anh Trung cổ",
153
- "eo": "Tiếng Quốc Tế Ngữ",
154
- "es": "Tiếng Tây Ban Nha",
155
- "es_419": "Tiếng Tây Ban Nha (Mỹ La tinh)",
156
- "es_ES": "Tiếng Tây Ban Nha (Châu Âu)",
157
- "es_MX": "Tiếng Tây Ban Nha (Mexico)",
158
- "esu": "Tiếng Yupik Miền Trung",
159
- "et": "Tiếng Estonia",
160
- "eu": "Tiếng Basque",
161
- "ewo": "Tiếng Ewondo",
162
- "ext": "Tiếng Extremadura",
163
- "fa": "Tiếng Ba Tư",
164
- "fan": "Tiếng Fang",
165
- "fat": "Tiếng Fanti",
166
- "ff": "Tiếng Fulah",
167
- "fi": "Tiếng Phần Lan",
168
- "fil": "Tiếng Philippines",
169
- "fj": "Tiếng Fiji",
170
- "fo": "Tiếng Faroe",
171
- "fon": "Tiếng Fon",
172
- "fr": "Tiếng Pháp",
173
- "fr_CA": "Tiếng Pháp (Canada)",
174
- "fr_CH": "Tiếng Pháp (Thụy Sĩ)",
175
- "frc": "Tiếng Pháp Cajun",
176
- "frm": "Tiếng Pháp Trung cổ",
177
- "fro": "Tiếng Pháp cổ",
178
- "frp": "Tiếng Arpitan",
179
- "frr": "Tiếng Frisia Miền Bắc",
180
- "frs": "Tiếng Frisian Miền Đông",
181
- "fur": "Tiếng Friulian",
182
- "fy": "Tiếng Frisia",
183
- "ga": "Tiếng Ireland",
184
- "gaa": "Tiếng Ga",
185
- "gag": "Tiếng Gagauz",
186
- "gan": "Tiếng Cám",
187
- "gay": "Tiếng Gayo",
188
- "gba": "Tiếng Gbaya",
189
- "gd": "Tiếng Gael Scotland",
190
- "gez": "Tiếng Geez",
191
- "gil": "Tiếng Gilbert",
192
- "gl": "Tiếng Galician",
193
- "glk": "Tiếng Gilaki",
194
- "gmh": "Tiếng Thượng Giéc-man Trung cổ",
195
- "gn": "Tiếng Guarani",
196
- "goh": "Tiếng Thượng Giéc-man cổ",
197
- "gom": "Tiếng Goan Konkani",
198
- "gon": "Tiếng Gondi",
199
- "gor": "Tiếng Gorontalo",
200
- "got": "Tiếng Gô-tích",
201
- "grb": "Tiếng Grebo",
202
- "grc": "Tiếng Hy Lạp cổ",
203
- "gsw": "Tiếng Đức (Thụy Sĩ)",
204
- "gu": "Tiếng Gujarati",
205
- "gur": "Tiếng Frafra",
206
- "guz": "Tiếng Gusii",
207
- "gv": "Tiếng Manx",
208
- "gwi": "Tiếng Gwichʼin",
209
- "ha": "Tiếng Hausa",
210
- "hai": "Tiếng Haida",
211
- "hak": "Tiếng Khách Gia",
212
- "haw": "Tiếng Hawaii",
213
- "he": "Tiếng Do Thái",
214
- "hi": "Tiếng Hindi",
215
- "hif": "Tiếng Fiji Hindi",
216
- "hil": "Tiếng Hiligaynon",
217
- "hit": "Tiếng Hittite",
218
- "hmn": "Tiếng Hmông",
219
- "ho": "Tiếng Hiri Motu",
220
- "hr": "Tiếng Croatia",
221
- "hsb": "Tiếng Thượng Sorbia",
222
- "hsn": "Tiếng Tương",
223
- "ht": "Tiếng Haiti",
224
- "hu": "Tiếng Hungary",
225
- "hup": "Tiếng Hupa",
226
- "hy": "Tiếng Armenia",
227
- "hz": "Tiếng Herero",
228
- "ia": "Tiếng Khoa Học Quốc Tế",
229
- "iba": "Tiếng Iban",
230
- "ibb": "Tiếng Ibibio",
231
- "id": "Tiếng Indonesia",
232
- "ie": "Tiếng Interlingue",
233
- "ig": "Tiếng Igbo",
234
- "ii": "Tiếng Di Tứ Xuyên",
235
- "ik": "Tiếng Inupiaq",
236
- "ilo": "Tiếng Iloko",
237
- "inh": "Tiếng Ingush",
238
- "io": "Tiếng Ido",
239
- "is": "Tiếng Iceland",
240
- "it": "Tiếng Italy",
241
- "iu": "Tiếng Inuktitut",
242
- "izh": "Tiếng Ingria",
243
- "ja": "Tiếng Nhật",
244
- "jam": "Tiếng Anh Jamaica Creole",
245
- "jbo": "Tiếng Lojban",
246
- "jgo": "Tiếng Ngomba",
247
- "jmc": "Tiếng Machame",
248
- "jpr": "Tiếng Judeo-Ba Tư",
249
- "jrb": "Tiếng Judeo-Ả Rập",
250
- "jut": "Tiếng Jutish",
251
- "jv": "Tiếng Java",
252
- "ka": "Tiếng Georgia",
253
- "kaa": "Tiếng Kara-Kalpak",
254
- "kab": "Tiếng Kabyle",
255
- "kac": "Tiếng Kachin",
256
- "kaj": "Tiếng Jju",
257
- "kam": "Tiếng Kamba",
258
- "kaw": "Tiếng Kawi",
259
- "kbd": "Tiếng Kabardian",
260
- "kbl": "Tiếng Kanembu",
261
- "kcg": "Tiếng Tyap",
262
- "kde": "Tiếng Makonde",
263
- "kea": "Tiếng Kabuverdianu",
264
- "kfo": "Tiếng Koro",
265
- "kg": "Tiếng Kongo",
266
- "kha": "Tiếng Khasi",
267
- "kho": "Tiếng Khotan",
268
- "khq": "Tiếng Koyra Chiini",
269
- "ki": "Tiếng Kikuyu",
270
- "kj": "Tiếng Kuanyama",
271
- "kk": "Tiếng Kazakh",
272
- "kkj": "Tiếng Kako",
273
- "kl": "Tiếng Kalaallisut",
274
- "kln": "Tiếng Kalenjin",
275
- "km": "Tiếng Khmer",
276
- "kmb": "Tiếng Kimbundu",
277
- "kn": "Tiếng Kannada",
278
- "ko": "Tiếng Hàn",
279
- "koi": "Tiếng Komi-Permyak",
280
- "kok": "Tiếng Konkani",
281
- "kos": "Tiếng Kosrae",
282
- "kpe": "Tiếng Kpelle",
283
- "kr": "Tiếng Kanuri",
284
- "krc": "Tiếng Karachay-Balkar",
285
- "krl": "Tiếng Karelian",
286
- "kru": "Tiếng Kurukh",
287
- "ks": "Tiếng Kashmir",
288
- "ksb": "Tiếng Shambala",
289
- "ksf": "Tiếng Bafia",
290
- "ksh": "Tiếng Cologne",
291
- "ku": "Tiếng Kurd",
292
- "kum": "Tiếng Kumyk",
293
- "kut": "Tiếng Kutenai",
294
- "kv": "Tiếng Komi",
295
- "kw": "Tiếng Cornwall",
296
- "ky": "Tiếng Kyrgyz",
297
- "la": "Tiếng La-tinh",
298
- "lad": "Tiếng Ladino",
299
- "lag": "Tiếng Langi",
300
- "lah": "Tiếng Lahnda",
301
- "lam": "Tiếng Lamba",
302
- "lb": "Tiếng Luxembourg",
303
- "lez": "Tiếng Lezghian",
304
- "lg": "Tiếng Ganda",
305
- "li": "Tiếng Limburg",
306
- "lkt": "Tiếng Lakota",
307
- "ln": "Tiếng Lingala",
308
- "lo": "Tiếng Lào",
309
- "lol": "Tiếng Mongo",
310
- "lou": "Tiếng Creole Louisiana",
311
- "loz": "Tiếng Lozi",
312
- "lrc": "Tiếng Bắc Luri",
313
- "lt": "Tiếng Litva",
314
- "lu": "Tiếng Luba-Katanga",
315
- "lua": "Tiếng Luba-Lulua",
316
- "lui": "Tiếng Luiseno",
317
- "lun": "Tiếng Lunda",
318
- "luo": "Tiếng Luo",
319
- "lus": "Tiếng Lushai",
320
- "luy": "Tiếng Luyia",
321
- "lv": "Tiếng Latvia",
322
- "mad": "Tiếng Madura",
323
- "maf": "Tiếng Mafa",
324
- "mag": "Tiếng Magahi",
325
- "mai": "Tiếng Maithili",
326
- "mak": "Tiếng Makasar",
327
- "man": "Tiếng Mandingo",
328
- "mas": "Tiếng Masai",
329
- "mde": "Tiếng Maba",
330
- "mdf": "Tiếng Moksha",
331
- "mdr": "Tiếng Mandar",
332
- "men": "Tiếng Mende",
333
- "mer": "Tiếng Meru",
334
- "mfe": "Tiếng Morisyen",
335
- "mg": "Tiếng Malagasy",
336
- "mga": "Tiếng Ai-len Trung cổ",
337
- "mgh": "Tiếng Makhuwa-Meetto",
338
- "mgo": "Tiếng Meta’",
339
- "mh": "Tiếng Marshall",
340
- "mi": "Tiếng Maori",
341
- "mic": "Tiếng Micmac",
342
- "min": "Tiếng Minangkabau",
343
- "mk": "Tiếng Macedonia",
344
- "ml": "Tiếng Malayalam",
345
- "mn": "Tiếng Mông Cổ",
346
- "mnc": "Tiếng Mãn Châu",
347
- "mni": "Tiếng Manipuri",
348
- "moh": "Tiếng Mohawk",
349
- "mos": "Tiếng Mossi",
350
- "mr": "Tiếng Marathi",
351
- "ms": "Tiếng Mã Lai",
352
- "mt": "Tiếng Malta",
353
- "mua": "Tiếng Mundang",
354
- "mul": "Nhiều Ngôn ngữ",
355
- "mus": "Tiếng Creek",
356
- "mwl": "Tiếng Miranda",
357
- "mwr": "Tiếng Marwari",
358
- "my": "Tiếng Miến Điện",
359
- "mye": "Tiếng Myene",
360
- "myv": "Tiếng Erzya",
361
- "mzn": "Tiếng Mazanderani",
362
- "na": "Tiếng Nauru",
363
- "nan": "Tiếng Mân Nam",
364
- "nap": "Tiếng Napoli",
365
- "naq": "Tiếng Nama",
366
- "nb": "Tiếng Na Uy (Bokmål)",
367
- "nd": "Tiếng Ndebele Miền Bắc",
368
- "nds": "Tiếng Hạ Giéc-man",
369
- "nds_NL": "Tiếng Hạ Saxon",
370
- "ne": "Tiếng Nepal",
371
- "new": "Tiếng Newari",
372
- "ng": "Tiếng Ndonga",
373
- "nia": "Tiếng Nias",
374
- "niu": "Tiếng Niuean",
375
- "njo": "Tiếng Ao Naga",
376
- "nl": "Tiếng Hà Lan",
377
- "nl_BE": "Tiếng Flemish",
378
- "nmg": "Tiếng Kwasio",
379
- "nn": "Tiếng Na Uy (Nynorsk)",
380
- "nnh": "Tiếng Ngiemboon",
381
- "no": "Tiếng Na Uy",
382
- "nog": "Tiếng Nogai",
383
- "non": "Tiếng Na Uy cổ",
384
- "nqo": "Tiếng N’Ko",
385
- "nr": "Tiếng Ndebele Miền Nam",
386
- "nso": "Tiếng Sotho Miền Bắc",
387
- "nus": "Tiếng Nuer",
388
- "nv": "Tiếng Navajo",
389
- "nwc": "Tiếng Newari cổ",
390
- "ny": "Tiếng Nyanja",
391
- "nym": "Tiếng Nyamwezi",
392
- "nyn": "Tiếng Nyankole",
393
- "nyo": "Tiếng Nyoro",
394
- "nzi": "Tiếng Nzima",
395
- "oc": "Tiếng Occitan",
396
- "oj": "Tiếng Ojibwa",
397
- "om": "Tiếng Oromo",
398
- "or": "Tiếng Odia",
399
- "os": "Tiếng Ossetic",
400
- "osa": "Tiếng Osage",
401
- "ota": "Tiếng Thổ Nhĩ Kỳ Ottoman",
402
- "pa": "Tiếng Punjab",
403
- "pag": "Tiếng Pangasinan",
404
- "pal": "Tiếng Pahlavi",
405
- "pam": "Tiếng Pampanga",
406
- "pap": "Tiếng Papiamento",
407
- "pau": "Tiếng Palauan",
408
- "pcm": "Tiếng Nigeria Pidgin",
409
- "peo": "Tiếng Ba Tư cổ",
410
- "phn": "Tiếng Phoenicia",
411
- "pi": "Tiếng Pali",
412
- "pl": "Tiếng Ba Lan",
413
- "pon": "Tiếng Pohnpeian",
414
- "prg": "Tiếng Prussia",
415
- "pro": "Tiếng Provençal cổ",
416
- "ps": "Tiếng Pashto",
417
- "ps_alt-variant": "Tiếng Pushto",
418
- "pt": "Tiếng Bồ Đào Nha",
419
- "pt_BR": "Tiếng Bồ Đào Nha (Brazil)",
420
- "pt_PT": "Tiếng Bồ Đào Nha (Châu Âu)",
421
- "qu": "Tiếng Quechua",
422
- "quc": "Tiếng Kʼicheʼ",
423
- "qug": "Tiếng Quechua ở Cao nguyên Chimborazo",
424
- "raj": "Tiếng Rajasthani",
425
- "rap": "Tiếng Rapanui",
426
- "rar": "Tiếng Rarotongan",
427
- "rm": "Tiếng Romansh",
428
- "rn": "Tiếng Rundi",
429
- "ro": "Tiếng Romania",
430
- "ro_MD": "Tiếng Moldova",
431
- "rof": "Tiếng Rombo",
432
- "rom": "Tiếng Romany",
433
- "root": "Tiếng Root",
434
- "ru": "Tiếng Nga",
435
- "rup": "Tiếng Aromania",
436
- "rw": "Tiếng Kinyarwanda",
437
- "rwk": "Tiếng Rwa",
438
- "sa": "Tiếng Phạn",
439
- "sad": "Tiếng Sandawe",
440
- "sah": "Tiếng Sakha",
441
- "sam": "Tiếng Samaritan Aramaic",
442
- "saq": "Tiếng Samburu",
443
- "sas": "Tiếng Sasak",
444
- "sat": "Tiếng Santali",
445
- "sba": "Tiếng Ngambay",
446
- "sbp": "Tiếng Sangu",
447
- "sc": "Tiếng Sardinia",
448
- "scn": "Tiếng Sicilia",
449
- "sco": "Tiếng Scots",
450
- "sd": "Tiếng Sindhi",
451
- "sdh": "Tiếng Kurd Miền Nam",
452
- "se": "Tiếng Sami Miền Bắc",
453
- "see": "Tiếng Seneca",
454
- "seh": "Tiếng Sena",
455
- "sel": "Tiếng Selkup",
456
- "ses": "Tiếng Koyraboro Senni",
457
- "sg": "Tiếng Sango",
458
- "sga": "Tiếng Ai-len cổ",
459
- "sh": "Tiếng Serbo-Croatia",
460
- "shi": "Tiếng Tachelhit",
461
- "shn": "Tiếng Shan",
462
- "shu": "Tiếng Ả-Rập Chad",
463
- "si": "Tiếng Sinhala",
464
- "sid": "Tiếng Sidamo",
465
- "sk": "Tiếng Slovak",
466
- "sl": "Tiếng Slovenia",
467
- "sm": "Tiếng Samoa",
468
- "sma": "Tiếng Sami Miền Nam",
469
- "smj": "Tiếng Lule Sami",
470
- "smn": "Tiếng Inari Sami",
471
- "sms": "Tiếng Skolt Sami",
472
- "sn": "Tiếng Shona",
473
- "snk": "Tiếng Soninke",
474
- "so": "Tiếng Somali",
475
- "sog": "Tiếng Sogdien",
476
- "sq": "Tiếng Albania",
477
- "sr": "Tiếng Serbia",
478
- "srn": "Tiếng Sranan Tongo",
479
- "srr": "Tiếng Serer",
480
- "ss": "Tiếng Swati",
481
- "ssy": "Tiếng Saho",
482
- "st": "Tiếng Sotho Miền Nam",
483
- "su": "Tiếng Sunda",
484
- "suk": "Tiếng Sukuma",
485
- "sus": "Tiếng Susu",
486
- "sux": "Tiếng Sumeria",
487
- "sv": "Tiếng Thụy Điển",
488
- "sw": "Tiếng Swahili",
489
- "sw_CD": "Tiếng Swahili Congo",
490
- "swb": "Tiếng Cômo",
491
- "syc": "Tiếng Syriac cổ",
492
- "syr": "Tiếng Syriac",
493
- "ta": "Tiếng Tamil",
494
- "te": "Tiếng Telugu",
495
- "tem": "Tiếng Timne",
496
- "teo": "Tiếng Teso",
497
- "ter": "Tiếng Tereno",
498
- "tet": "Tiếng Tetum",
499
- "tg": "Tiếng Tajik",
500
- "th": "Tiếng Thái",
501
- "ti": "Tiếng Tigrinya",
502
- "tig": "Tiếng Tigre",
503
- "tiv": "Tiếng Tiv",
504
- "tk": "Tiếng Turkmen",
505
- "tkl": "Tiếng Tokelau",
506
- "tl": "Tiếng Tagalog",
507
- "tlh": "Tiếng Klingon",
508
- "tli": "Tiếng Tlingit",
509
- "tmh": "Tiếng Tamashek",
510
- "tn": "Tiếng Tswana",
511
- "to": "Tiếng Tonga",
512
- "tog": "Tiếng Nyasa Tonga",
513
- "tpi": "Tiếng Tok Pisin",
514
- "tr": "Tiếng Thổ Nhĩ Kỳ",
515
- "trv": "Tiếng Taroko",
516
- "ts": "Tiếng Tsonga",
517
- "tsi": "Tiếng Tsimshian",
518
- "tt": "Tiếng Tatar",
519
- "tum": "Tiếng Tumbuka",
520
- "tvl": "Tiếng Tuvalu",
521
- "tw": "Tiếng Twi",
522
- "twq": "Tiếng Tasawaq",
523
- "ty": "Tiếng Tahiti",
524
- "tyv": "Tiếng Tuvinian",
525
- "tzm": "Tiếng Tamazight Miền Trung Ma-rốc",
526
- "udm": "Tiếng Udmurt",
527
- "ug": "Tiếng Uyghur",
528
- "uga": "Tiếng Ugaritic",
529
- "uk": "Tiếng Ucraina",
530
- "umb": "Tiếng Umbundu",
531
- "und": "Ngôn ngữ không xác định",
532
- "ur": "Tiếng Urdu",
533
- "uz": "Tiếng Uzbek",
534
- "vai": "Tiếng Vai",
535
- "ve": "Tiếng Venda",
536
- "vi": "Tiếng Việt",
537
- "vo": "Tiếng Volapük",
538
- "vot": "Tiếng Votic",
539
- "vun": "Tiếng Vunjo",
540
- "wa": "Tiếng Walloon",
541
- "wae": "Tiếng Walser",
542
- "wal": "Tiếng Walamo",
543
- "war": "Tiếng Waray",
544
- "was": "Tiếng Washo",
545
- "wbp": "Tiếng Warlpiri",
546
- "wo": "Tiếng Wolof",
547
- "wuu": "Tiếng Ngô",
548
- "xal": "Tiếng Kalmyk",
549
- "xh": "Tiếng Xhosa",
550
- "xog": "Tiếng Soga",
551
- "yao": "Tiếng Yao",
552
- "yap": "Tiếng Yap",
553
- "yav": "Tiếng Yangben",
554
- "ybb": "Tiếng Yemba",
555
- "yi": "Tiếng Yiddish",
556
- "yo": "Tiếng Yoruba",
557
- "yue": "Tiếng Quảng Đông",
558
- "za": "Tiếng Choang",
559
- "zap": "Tiếng Zapotec",
560
- "zbl": "Ký hiệu Blissymbols",
561
- "zen": "Tiếng Zenaga",
562
- "zgh": "Tiếng Tamazight Chuẩn của Ma-rốc",
563
- "zh": "Tiếng Trung",
564
- "zh_Hans": "Tiếng Trung (Giản thể)",
565
- "zh_Hant": "Tiếng Trung (Phồn thể)",
566
- "zu": "Tiếng Zulu",
567
- "zun": "Tiếng Zuni",
568
- "zxx": "Không có nội dung ngôn ngữ",
569
- "zza": "Tiếng Zaza"
570
- },
571
- "scripts": {
572
- "Adlm": "Adlm",
573
- "Afak": "Chữ Afaka",
574
- "Aghb": "Aghb",
575
- "Ahom": "Ahom",
576
- "Arab": "Chữ Ả Rập",
577
- "Arab-alt-variant": "Chữ Ba Tư-Ả Rập",
578
- "Armi": "Chữ Imperial Aramaic",
579
- "Armn": "Chữ Armenia",
580
- "Avst": "Chữ Avestan",
581
- "Bali": "Chữ Bali",
582
- "Bamu": "Chữ Bamum",
583
- "Bass": "Chữ Bassa Vah",
584
- "Batk": "Chữ Batak",
585
- "Beng": "Chữ Bangladesh",
586
- "Bhks": "Bhks",
587
- "Blis": "Chữ Blissymbols",
588
- "Bopo": "Chữ Bopomofo",
589
- "Brah": "Chữ Brahmi",
590
- "Brai": "Chữ nổi Braille",
591
- "Bugi": "Chữ Bugin",
592
- "Buhd": "Chữ Buhid",
593
- "Cakm": "Chữ Chakma",
594
- "Cans": "Âm tiết Thổ dân Canada Hợp nhất",
595
- "Cari": "Chữ Caria",
596
- "Cham": "Chữ Chăm",
597
- "Cher": "Chữ Cherokee",
598
- "Cirt": "Chữ Cirth",
599
- "Copt": "Chữ Coptic",
600
- "Cprt": "Chứ Síp",
601
- "Cyrl": "Chữ Kirin",
602
- "Cyrs": "Chữ Kirin Slavơ Nhà thờ cổ",
603
- "Deva": "Chữ Devanagari",
604
- "Dogr": "Dogr",
605
- "Dsrt": "Chữ Deseret",
606
- "Dupl": "Chữ tốc ký Duployan",
607
- "Egyd": "Chữ Ai Cập bình dân",
608
- "Egyh": "Chữ Ai Cập thày tu",
609
- "Egyp": "Chữ tượng hình Ai Cập",
610
- "Elba": "Elba",
611
- "Ethi": "Chữ Ethiopia",
612
- "Geok": "Chữ Khutsuri Georgia",
613
- "Geor": "Chữ Gruzia",
614
- "Glag": "Chữ Glagolitic",
615
- "Gong": "Gong",
616
- "Gonm": "Gonm",
617
- "Goth": "Chữ Gô-tích",
618
- "Gran": "Chữ Grantha",
619
- "Grek": "Chữ Hy Lạp",
620
- "Gujr": "Chữ Gujarati",
621
- "Guru": "Chữ Gurmukhi",
622
- "Hanb": "Chữ Hanb",
623
- "Hang": "Chữ Hangul",
624
- "Hani": "Chữ Hán",
625
- "Hano": "Chữ Hanunoo",
626
- "Hans": "Giản thể",
627
- "Hans-alt-stand-alone": "Chữ Hán giản thể",
628
- "Hant": "Phồn thể",
629
- "Hant-alt-stand-alone": "Chữ Hán phồn thể",
630
- "Hatr": "Hatr",
631
- "Hebr": "Chữ Do Thái",
632
- "Hira": "Chữ Hiragana",
633
- "Hluw": "Chữ tượng hình Anatolia",
634
- "Hmng": "Chữ Pahawh Hmong",
635
- "Hrkt": "Bảng ký hiệu âm tiết Tiếng Nhật",
636
- "Hung": "Chữ Hungary cổ",
637
- "Inds": "Chữ Indus",
638
- "Ital": "Chữ Italic cổ",
639
- "Jamo": "Chữ Jamo",
640
- "Java": "Chữ Java",
641
- "Jpan": "Chữ Nhật Bản",
642
- "Jurc": "Chữ Jurchen",
643
- "Kali": "Chữ Kayah Li",
644
- "Kana": "Chữ Katakana",
645
- "Khar": "Chữ Kharoshthi",
646
- "Khmr": "Chữ Khơ-me",
647
- "Khoj": "Chữ Khojki",
648
- "Knda": "Chữ Kannada",
649
- "Kore": "Chữ Hàn Quốc",
650
- "Kpel": "Chữ Kpelle",
651
- "Kthi": "Chữ Kaithi",
652
- "Lana": "Chữ Lanna",
653
- "Laoo": "Chữ Lào",
654
- "Latf": "Chữ La-tinh Fraktur",
655
- "Latg": "Chữ La-tinh Xcốt-len",
656
- "Latn": "Chữ La tinh",
657
- "Lepc": "Chữ Lepcha",
658
- "Limb": "Chữ Limbu",
659
- "Lina": "Chữ Linear A",
660
- "Linb": "Chữ Linear B",
661
- "Lisu": "Chữ Fraser",
662
- "Loma": "Chữ Loma",
663
- "Lyci": "Chữ Lycia",
664
- "Lydi": "Chữ Lydia",
665
- "Mahj": "Mahj",
666
- "Maka": "Maka",
667
- "Mand": "Chữ Mandaean",
668
- "Mani": "Chữ Manichaean",
669
- "Marc": "Marc",
670
- "Maya": "Chữ tượng hình Maya",
671
- "Medf": "Medf",
672
- "Mend": "Chữ Mende",
673
- "Merc": "Chữ Meroitic Nét thảo",
674
- "Mero": "Chữ Meroitic",
675
- "Mlym": "Chữ Malayalam",
676
- "Modi": "Modi",
677
- "Mong": "Chữ Mông Cổ",
678
- "Moon": "Chữ nổi Moon",
679
- "Mroo": "Chữ Mro",
680
- "Mtei": "Chữ Meitei Mayek",
681
- "Mult": "Mult",
682
- "Mymr": "Chữ Myanmar",
683
- "Narb": "Chữ Bắc Ả Rập cổ",
684
- "Nbat": "Chữ Nabataean",
685
- "Newa": "Newa",
686
- "Nkgb": "Chữ Naxi Geba",
687
- "Nkoo": "Chữ N’Ko",
688
- "Nshu": "Chữ Nüshu",
689
- "Ogam": "Chữ Ogham",
690
- "Olck": "Chữ Ol Chiki",
691
- "Orkh": "Chữ Orkhon",
692
- "Orya": "Chữ Odia",
693
- "Osge": "Osge",
694
- "Osma": "Chữ Osmanya",
695
- "Palm": "Chữ Palmyrene",
696
- "Pauc": "Pauc",
697
- "Perm": "Chữ Permic cổ",
698
- "Phag": "Chữ Phags-pa",
699
- "Phli": "Chữ Pahlavi Văn bia",
700
- "Phlp": "Chữ Pahlavi Thánh ca",
701
- "Phlv": "Chữ Pahlavi Sách",
702
- "Phnx": "Chữ Phoenicia",
703
- "Plrd": "Ngữ âm Pollard",
704
- "Prti": "Chữ Parthia Văn bia",
705
- "Qaag": "Qaag",
706
- "Rjng": "Chữ Rejang",
707
- "Rohg": "Rohg",
708
- "Roro": "Chữ Rongorongo",
709
- "Runr": "Chữ Runic",
710
- "Samr": "Chữ Samaritan",
711
- "Sara": "Chữ Sarati",
712
- "Sarb": "Chữ Nam Ả Rập cổ",
713
- "Saur": "Chữ Saurashtra",
714
- "Sgnw": "Chữ viết Ký hiệu",
715
- "Shaw": "Chữ Shavian",
716
- "Shrd": "Chữ Sharada",
717
- "Sidd": "Sidd",
718
- "Sind": "Chữ Khudawadi",
719
- "Sinh": "Chữ Sinhala",
720
- "Sogd": "Sogd",
721
- "Sogo": "Sogo",
722
- "Sora": "Chữ Sora Sompeng",
723
- "Soyo": "Soyo",
724
- "Sund": "Chữ Xu-đăng",
725
- "Sylo": "Chữ Syloti Nagri",
726
- "Syrc": "Chữ Syria",
727
- "Syre": "Chữ Estrangelo Syriac",
728
- "Syrj": "Chữ Tây Syria",
729
- "Syrn": "Chữ Đông Syria",
730
- "Tagb": "Chữ Tagbanwa",
731
- "Takr": "Chữ Takri",
732
- "Tale": "Chữ Thái Na",
733
- "Talu": "Chữ Thái Lặc mới",
734
- "Taml": "Chữ Tamil",
735
- "Tang": "Chữ Tangut",
736
- "Tavt": "Chữ Thái Việt",
737
- "Telu": "Chữ Telugu",
738
- "Teng": "Chữ Tengwar",
739
- "Tfng": "Chữ Tifinagh",
740
- "Tglg": "Chữ Tagalog",
741
- "Thaa": "Chữ Thaana",
742
- "Thai": "Chữ Thái",
743
- "Tibt": "Chữ Tây Tạng",
744
- "Tirh": "Chữ Tirhuta",
745
- "Ugar": "Chữ Ugarit",
746
- "Vaii": "Chữ Vai",
747
- "Visp": "Tiếng nói Nhìn thấy được",
748
- "Wara": "Chữ Varang Kshiti",
749
- "Wole": "Chữ Woleai",
750
- "Xpeo": "Chữ Ba Tư cổ",
751
- "Xsux": "Chữ hình nêm Sumero-Akkadian",
752
- "Yiii": "Chữ Di",
753
- "Zanb": "Zanb",
754
- "Zinh": "Chữ Kế thừa",
755
- "Zmth": "Ký hiệu Toán học",
756
- "Zsye": "Biểu tượng",
757
- "Zsym": "Ký hiệu",
758
- "Zxxx": "Chưa có chữ viết",
759
- "Zyyy": "Chung",
760
- "Zzzz": "Chữ viết không xác định"
761
- },
762
- "territories": {
763
- "142": "Châu Á",
764
- "143": "Trung Á",
765
- "145": "Tây Á",
766
- "150": "Châu Âu",
767
- "151": "Đông Âu",
768
- "154": "Bắc Âu",
769
- "155": "Tây Âu",
770
- "202": "Châu Phi hạ Sahara",
771
- "419": "Châu Mỹ La-tinh",
772
- "001": "Thế giới",
773
- "002": "Châu Phi",
774
- "003": "Bắc Mỹ",
775
- "005": "Nam Mỹ",
776
- "009": "Châu Đại Dương",
777
- "011": "Tây Phi",
778
- "013": "Trung Mỹ",
779
- "014": "Đông Phi",
780
- "015": "Bắc Phi",
781
- "017": "Trung Phi",
782
- "018": "Miền Nam Châu Phi",
783
- "019": "Châu Mỹ",
784
- "021": "Miền Bắc Châu Mỹ",
785
- "029": "Ca-ri-bê",
786
- "030": "Đông Á",
787
- "034": "Nam Á",
788
- "035": "Đông Nam Á",
789
- "039": "Nam Âu",
790
- "053": "Úc và New Zealand",
791
- "054": "Melanesia",
792
- "057": "Vùng Micronesian",
793
- "061": "Polynesia",
794
- "AC": "Đảo Ascension",
795
- "AD": "Andorra",
796
- "AE": "Các Tiểu Vương quốc Ả Rập Thống nhất",
797
- "AF": "Afghanistan",
798
- "AG": "Antigua và Barbuda",
799
- "AI": "Anguilla",
800
- "AL": "Albania",
801
- "AM": "Armenia",
802
- "AO": "Angola",
803
- "AQ": "Nam Cực",
804
- "AR": "Argentina",
805
- "AS": "Samoa thuộc Mỹ",
806
- "AT": "Áo",
807
- "AU": "Australia",
808
- "AW": "Aruba",
809
- "AX": "Quần đảo Åland",
810
- "AZ": "Azerbaijan",
811
- "BA": "Bosnia và Herzegovina",
812
- "BB": "Barbados",
813
- "BD": "Bangladesh",
814
- "BE": "Bỉ",
815
- "BF": "Burkina Faso",
816
- "BG": "Bulgaria",
817
- "BH": "Bahrain",
818
- "BI": "Burundi",
819
- "BJ": "Benin",
820
- "BL": "St. Barthélemy",
821
- "BM": "Bermuda",
822
- "BN": "Brunei",
823
- "BO": "Bolivia",
824
- "BQ": "Ca-ri-bê Hà Lan",
825
- "BR": "Brazil",
826
- "BS": "Bahamas",
827
- "BT": "Bhutan",
828
- "BV": "Đảo Bouvet",
829
- "BW": "Botswana",
830
- "BY": "Belarus",
831
- "BZ": "Belize",
832
- "CA": "Canada",
833
- "CC": "Quần đảo Cocos (Keeling)",
834
- "CD": "Congo - Kinshasa",
835
- "CD-alt-variant": "Cộng hòa Dân chủ Congo",
836
- "CF": "Cộng hòa Trung Phi",
837
- "CG": "Congo - Brazzaville",
838
- "CG-alt-variant": "Cộng hòa Congo",
839
- "CH": "Thụy Sĩ",
840
- "CI": "Côte d’Ivoire",
841
- "CI-alt-variant": "Bờ Biển Ngà",
842
- "CK": "Quần đảo Cook",
843
- "CL": "Chile",
844
- "CM": "Cameroon",
845
- "CN": "Trung Quốc",
846
- "CO": "Colombia",
847
- "CP": "Đảo Clipperton",
848
- "CR": "Costa Rica",
849
- "CU": "Cuba",
850
- "CV": "Cape Verde",
851
- "CW": "Curaçao",
852
- "CX": "Đảo Giáng Sinh",
853
- "CY": "Síp",
854
- "CZ": "Séc",
855
- "CZ-alt-variant": "Cộng hòa Séc",
856
- "DE": "Đức",
857
- "DG": "Diego Garcia",
858
- "DJ": "Djibouti",
859
- "DK": "Đan Mạch",
860
- "DM": "Dominica",
861
- "DO": "Cộng hòa Dominica",
862
- "DZ": "Algeria",
863
- "EA": "Ceuta và Melilla",
864
- "EC": "Ecuador",
865
- "EE": "Estonia",
866
- "EG": "Ai Cập",
867
- "EH": "Tây Sahara",
868
- "ER": "Eritrea",
869
- "ES": "Tây Ban Nha",
870
- "ET": "Ethiopia",
871
- "EU": "Liên Minh Châu Âu",
872
- "EZ": "Khu vực đồng Euro",
873
- "FI": "Phần Lan",
874
- "FJ": "Fiji",
875
- "FK": "Quần đảo Falkland",
876
- "FK-alt-variant": "Quần đảo Falkland (Islas Malvinas)",
877
- "FM": "Micronesia",
878
- "FO": "Quần đảo Faroe",
879
- "FR": "Pháp",
880
- "GA": "Gabon",
881
- "GB": "Vương quốc Anh",
882
- "GB-alt-short": "Vương quốc Anh",
883
- "GD": "Grenada",
884
- "GE": "Gruzia",
885
- "GF": "Guiana thuộc Pháp",
886
- "GG": "Guernsey",
887
- "GH": "Ghana",
888
- "GI": "Gibraltar",
889
- "GL": "Greenland",
890
- "GM": "Gambia",
891
- "GN": "Guinea",
892
- "GP": "Guadeloupe",
893
- "GQ": "Guinea Xích Đạo",
894
- "GR": "Hy Lạp",
895
- "GS": "Nam Georgia & Quần đảo Nam Sandwich",
896
- "GT": "Guatemala",
897
- "GU": "Guam",
898
- "GW": "Guinea-Bissau",
899
- "GY": "Guyana",
900
- "HK": "Hồng Kông, Trung Quốc",
901
- "HK-alt-short": "Hồng Kông",
902
- "HM": "Quần đảo Heard và McDonald",
903
- "HN": "Honduras",
904
- "HR": "Croatia",
905
- "HT": "Haiti",
906
- "HU": "Hungary",
907
- "IC": "Quần đảo Canary",
908
- "ID": "Indonesia",
909
- "IE": "Ireland",
910
- "IL": "Israel",
911
- "IM": "Đảo Man",
912
- "IN": "Ấn Độ",
913
- "IO": "Lãnh thổ Ấn Độ Dương thuộc Anh",
914
- "IQ": "Iraq",
915
- "IR": "Iran",
916
- "IS": "Iceland",
917
- "IT": "Italy",
918
- "JE": "Jersey",
919
- "JM": "Jamaica",
920
- "JO": "Jordan",
921
- "JP": "Nhật Bản",
922
- "KE": "Kenya",
923
- "KG": "Kyrgyzstan",
924
- "KH": "Campuchia",
925
- "KI": "Kiribati",
926
- "KM": "Comoros",
927
- "KN": "St. Kitts và Nevis",
928
- "KP": "Triều Tiên",
929
- "KR": "Hàn Quốc",
930
- "KW": "Kuwait",
931
- "KY": "Quần đảo Cayman",
932
- "KZ": "Kazakhstan",
933
- "LA": "Lào",
934
- "LB": "Li-băng",
935
- "LC": "St. Lucia",
936
- "LI": "Liechtenstein",
937
- "LK": "Sri Lanka",
938
- "LR": "Liberia",
939
- "LS": "Lesotho",
940
- "LT": "Litva",
941
- "LU": "Luxembourg",
942
- "LV": "Latvia",
943
- "LY": "Libya",
944
- "MA": "Ma-rốc",
945
- "MC": "Monaco",
946
- "MD": "Moldova",
947
- "ME": "Montenegro",
948
- "MF": "St. Martin",
949
- "MG": "Madagascar",
950
- "MH": "Quần đảo Marshall",
951
- "MK": "Macedonia",
952
- "MK-alt-variant": "Macedonia (FYROM)",
953
- "ML": "Mali",
954
- "MM": "Myanmar (Miến Điện)",
955
- "MN": "Mông Cổ",
956
- "MO": "Macao, Trung Quốc",
957
- "MO-alt-short": "Macao",
958
- "MP": "Quần đảo Bắc Mariana",
959
- "MQ": "Martinique",
960
- "MR": "Mauritania",
961
- "MS": "Montserrat",
962
- "MT": "Malta",
963
- "MU": "Mauritius",
964
- "MV": "Maldives",
965
- "MW": "Malawi",
966
- "MX": "Mexico",
967
- "MY": "Malaysia",
968
- "MZ": "Mozambique",
969
- "NA": "Namibia",
970
- "NC": "New Caledonia",
971
- "NE": "Niger",
972
- "NF": "Đảo Norfolk",
973
- "NG": "Nigeria",
974
- "NI": "Nicaragua",
975
- "NL": "Hà Lan",
976
- "NO": "Na Uy",
977
- "NP": "Nepal",
978
- "NR": "Nauru",
979
- "NU": "Niue",
980
- "NZ": "New Zealand",
981
- "OM": "Oman",
982
- "PA": "Panama",
983
- "PE": "Peru",
984
- "PF": "Polynesia thuộc Pháp",
985
- "PG": "Papua New Guinea",
986
- "PH": "Philippines",
987
- "PK": "Pakistan",
988
- "PL": "Ba Lan",
989
- "PM": "Saint Pierre và Miquelon",
990
- "PN": "Quần đảo Pitcairn",
991
- "PR": "Puerto Rico",
992
- "PS": "Lãnh thổ Palestine",
993
- "PS-alt-short": "Palestine",
994
- "PT": "Bồ Đào Nha",
995
- "PW": "Palau",
996
- "PY": "Paraguay",
997
- "QA": "Qatar",
998
- "QO": "Vùng xa xôi thuộc Châu Đại Dương",
999
- "RE": "Réunion",
1000
- "RO": "Romania",
1001
- "RS": "Serbia",
1002
- "RU": "Nga",
1003
- "RW": "Rwanda",
1004
- "SA": "Ả Rập Xê-út",
1005
- "SB": "Quần đảo Solomon",
1006
- "SC": "Seychelles",
1007
- "SD": "Sudan",
1008
- "SE": "Thụy Điển",
1009
- "SG": "Singapore",
1010
- "SH": "St. Helena",
1011
- "SI": "Slovenia",
1012
- "SJ": "Svalbard và Jan Mayen",
1013
- "SK": "Slovakia",
1014
- "SL": "Sierra Leone",
1015
- "SM": "San Marino",
1016
- "SN": "Senegal",
1017
- "SO": "Somalia",
1018
- "SR": "Suriname",
1019
- "SS": "Nam Sudan",
1020
- "ST": "São Tomé và Príncipe",
1021
- "SV": "El Salvador",
1022
- "SX": "Sint Maarten",
1023
- "SY": "Syria",
1024
- "SZ": "Swaziland",
1025
- "TA": "Tristan da Cunha",
1026
- "TC": "Quần đảo Turks và Caicos",
1027
- "TD": "Chad",
1028
- "TF": "Lãnh thổ phía Nam Thuộc Pháp",
1029
- "TG": "Togo",
1030
- "TH": "Thái Lan",
1031
- "TJ": "Tajikistan",
1032
- "TK": "Tokelau",
1033
- "TL": "Timor-Leste",
1034
- "TL-alt-variant": "Đông Timor",
1035
- "TM": "Turkmenistan",
1036
- "TN": "Tunisia",
1037
- "TO": "Tonga",
1038
- "TR": "Thổ Nhĩ Kỳ",
1039
- "TT": "Trinidad và Tobago",
1040
- "TV": "Tuvalu",
1041
- "TW": "Đài Loan",
1042
- "TZ": "Tanzania",
1043
- "UA": "Ukraina",
1044
- "UG": "Uganda",
1045
- "UM": "Các tiểu đảo xa của Hoa Kỳ",
1046
- "UN": "Liên hiệp quốc",
1047
- "UN-alt-short": "Liên hiệp quốc",
1048
- "US": "Hoa Kỳ",
1049
- "US-alt-short": "Hoa Kỳ",
1050
- "UY": "Uruguay",
1051
- "UZ": "Uzbekistan",
1052
- "VA": "Thành Vatican",
1053
- "VC": "St. Vincent và Grenadines",
1054
- "VE": "Venezuela",
1055
- "VG": "Quần đảo Virgin thuộc Anh",
1056
- "VI": "Quần đảo Virgin thuộc Mỹ",
1057
- "VN": "Việt Nam",
1058
- "VU": "Vanuatu",
1059
- "WF": "Wallis và Futuna",
1060
- "WS": "Samoa",
1061
- "XA": "XA",
1062
- "XB": "XB",
1063
- "XK": "Kosovo",
1064
- "YE": "Yemen",
1065
- "YT": "Mayotte",
1066
- "ZA": "Nam Phi",
1067
- "ZM": "Zambia",
1068
- "ZW": "Zimbabwe",
1069
- "ZZ": "Vùng không xác định"
1070
- },
1071
- "orientation": "left-to-right",
1072
- "ca-gregorian": {
1073
- "dateFormats": {
1074
- "full": "EEEE, d MMMM, y",
1075
- "long": "d MMMM, y",
1076
- "medium": "d MMM, y",
1077
- "short": "dd/MM/y"
1078
- },
1079
- "timeFormats": {
1080
- "full": "HH:mm:ss zzzz",
1081
- "long": "HH:mm:ss z",
1082
- "medium": "HH:mm:ss",
1083
- "short": "HH:mm"
1084
- },
1085
- "dateTimeFormats": {
1086
- "full": "{0} {1}",
1087
- "long": "{0} {1}",
1088
- "medium": "{0}, {1}",
1089
- "short": "{0}, {1}",
1090
- "availableFormats": {
1091
- "Bh": "h B",
1092
- "Bhm": "h:mm B",
1093
- "Bhms": "h:mm:ss B",
1094
- "d": "d",
1095
- "E": "ccc",
1096
- "EBhm": "E h:mm B",
1097
- "EBhms": "E h:mm:ss B",
1098
- "Ed": "E, 'ngày' d",
1099
- "Ehm": "E h:mm a",
1100
- "EHm": "E HH:mm",
1101
- "Ehms": "E h:mm:ss a",
1102
- "EHms": "E HH:mm:ss",
1103
- "Gy": "y G",
1104
- "GyMMM": "MMM y G",
1105
- "GyMMMd": "dd MMM, y G",
1106
- "GyMMMEd": "E, dd/MM/y G",
1107
- "h": "h a",
1108
- "H": "HH",
1109
- "hm": "h:mm a",
1110
- "Hm": "H:mm",
1111
- "hms": "h:mm:ss a",
1112
- "Hms": "HH:mm:ss",
1113
- "hmsv": "h:mm:ss a v",
1114
- "Hmsv": "HH:mm:ss v",
1115
- "hmv": "h:mm a v",
1116
- "Hmv": "HH:mm v",
1117
- "M": "L",
1118
- "Md": "dd/M",
1119
- "MEd": "E, dd/M",
1120
- "MMdd": "dd-MM",
1121
- "MMM": "LLL",
1122
- "MMMd": "d MMM",
1123
- "MMMEd": "E, d MMM",
1124
- "MMMMd": "d MMMM",
1125
- "MMMMEd": "E, d MMMM",
1126
- "mmss": "mm:ss",
1127
- "ms": "mm:ss",
1128
- "y": "y",
1129
- "yM": "M/y",
1130
- "yMd": "d/M/y",
1131
- "yMEd": "E, dd/M/y",
1132
- "yMM": "'tháng' MM, y",
1133
- "yMMM": "MMM y",
1134
- "yMMMd": "d MMM, y",
1135
- "yMMMEd": "E, d MMM, y",
1136
- "yMMMM": "MMMM 'năm' y",
1137
- "yQQQ": "QQQ y",
1138
- "yQQQQ": "QQQQ 'năm' y",
1139
- "MMMMW": "'tuần' W 'của' 'tháng' M",
1140
- "yw": "'tuần' w 'của' 'năm' Y"
1141
- },
1142
- "appendItems": {
1143
- "Day": "{0} ({2}: {1})",
1144
- "Day-Of-Week": "{0} {1}",
1145
- "Era": "{1} {0}",
1146
- "Hour": "{0} ({2}: {1})",
1147
- "Minute": "{0} ({2}: {1})",
1148
- "Month": "{0} ({2}: {1})",
1149
- "Quarter": "{0} ({2}: {1})",
1150
- "Second": "{0} ({2}: {1})",
1151
- "Timezone": "{0} {1}",
1152
- "Week": "{0} ({2}: {1})",
1153
- "Year": "{1} {0}"
1154
- },
1155
- "intervalFormats": {
1156
- "intervalFormatFallback": "{0} - {1}",
1157
- "d": {
1158
- "d": "'Ngày' dd–dd"
1159
- },
1160
- "Gy": {
1161
- "G": "G y – G y",
1162
- "y": "G y–y"
1163
- },
1164
- "GyM": {
1165
- "G": "GGGGG y-MM – GGGGG y-MM",
1166
- "M": "GGGGG y-MM – y-MM",
1167
- "y": "GGGGG y-MM – y-MM"
1168
- },
1169
- "GyMd": {
1170
- "d": "GGGGG y-MM-dd – y-MM-dd",
1171
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1172
- "M": "GGGGG y-MM-dd – y-MM-dd",
1173
- "y": "GGGGG y-MM-dd – y-MM-dd"
1174
- },
1175
- "GyMEd": {
1176
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1177
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1178
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1179
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1180
- },
1181
- "GyMMM": {
1182
- "G": "G y MMM – G y MMM",
1183
- "M": "G y MMM–MMM",
1184
- "y": "G y MMM – y MMM"
1185
- },
1186
- "GyMMMd": {
1187
- "d": "G y MMM d–d",
1188
- "G": "G y MMM d – G y MMM d",
1189
- "M": "G y MMM d – MMM d",
1190
- "y": "G y MMM d – y MMM d"
1191
- },
1192
- "GyMMMEd": {
1193
- "d": "G y MMM d, E – MMM d, E",
1194
- "G": "G y MMM d, E – G y MMM d, E",
1195
- "M": "G y MMM d, E – MMM d, E",
1196
- "y": "G y MMM d, E – y MMM d, E"
1197
- },
1198
- "h": {
1199
- "a": "h a – h a",
1200
- "h": "h–h a"
1201
- },
1202
- "H": {
1203
- "H": "HH–HH"
1204
- },
1205
- "hm": {
1206
- "a": "h:mm a – h:mm a",
1207
- "h": "h:mm–h:mm a",
1208
- "m": "h:mm–h:mm a"
1209
- },
1210
- "Hm": {
1211
- "H": "HH:mm–HH:mm",
1212
- "m": "HH:mm–HH:mm"
1213
- },
1214
- "hmv": {
1215
- "a": "h:mm a – h:mm a v",
1216
- "h": "h:mm–h:mm a v",
1217
- "m": "h:mm–h:mm a v"
1218
- },
1219
- "Hmv": {
1220
- "H": "HH:mm–HH:mm v",
1221
- "m": "HH:mm–HH:mm v"
1222
- },
1223
- "hv": {
1224
- "a": "h a – h a v",
1225
- "h": "h–h a v"
1226
- },
1227
- "Hv": {
1228
- "H": "HH–HH v"
1229
- },
1230
- "M": {
1231
- "M": "'Tháng' M – M"
1232
- },
1233
- "Md": {
1234
- "d": "dd/MM – dd/MM",
1235
- "M": "dd/MM – dd/MM"
1236
- },
1237
- "MEd": {
1238
- "d": "EEEE, dd/MM – EEEE, dd/MM",
1239
- "M": "EEEE, dd/MM – EEEE, dd/MM"
1240
- },
1241
- "MMM": {
1242
- "M": "MMM–MMM"
1243
- },
1244
- "MMMd": {
1245
- "d": "'Ngày' dd - 'Ngày' dd 'tháng' M",
1246
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
1247
- },
1248
- "MMMEd": {
1249
- "d": "E, d MMM – E, d MMM",
1250
- "M": "E, d MMM – E, d MMM"
1251
- },
1252
- "y": {
1253
- "y": "y–y"
1254
- },
1255
- "yM": {
1256
- "M": "MM/y – MM/y",
1257
- "y": "MM/y – MM/y"
1258
- },
1259
- "yMd": {
1260
- "d": "dd/MM/y – dd/MM/y",
1261
- "M": "dd/MM/y – dd/MM/y",
1262
- "y": "dd/MM/y – dd/MM/y"
1263
- },
1264
- "yMEd": {
1265
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y",
1266
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y",
1267
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y"
1268
- },
1269
- "yMMM": {
1270
- "M": "'Tháng' M - 'Tháng' M 'năm' y",
1271
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y"
1272
- },
1273
- "yMMMd": {
1274
- "d": "d – d MMM, y",
1275
- "M": "d MMM – d MMM, y",
1276
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y"
1277
- },
1278
- "yMMMEd": {
1279
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y",
1280
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y",
1281
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y"
1282
- },
1283
- "yMMMM": {
1284
- "M": "MMMM–MMMM 'năm' y",
1285
- "y": "MMMM, y – MMMM, y"
1286
- }
1287
- }
1288
- },
1289
- "months": {
1290
- "format": {
1291
- "abbreviated": [
1292
- "thg 1",
1293
- "thg 2",
1294
- "thg 3",
1295
- "thg 4",
1296
- "thg 5",
1297
- "thg 6",
1298
- "thg 7",
1299
- "thg 8",
1300
- "thg 9",
1301
- "thg 10",
1302
- "thg 11",
1303
- "thg 12"
1304
- ],
1305
- "narrow": [
1306
- "1",
1307
- "2",
1308
- "3",
1309
- "4",
1310
- "5",
1311
- "6",
1312
- "7",
1313
- "8",
1314
- "9",
1315
- "10",
1316
- "11",
1317
- "12"
1318
- ],
1319
- "wide": [
1320
- "tháng 1",
1321
- "tháng 2",
1322
- "tháng 3",
1323
- "tháng 4",
1324
- "tháng 5",
1325
- "tháng 6",
1326
- "tháng 7",
1327
- "tháng 8",
1328
- "tháng 9",
1329
- "tháng 10",
1330
- "tháng 11",
1331
- "tháng 12"
1332
- ]
1333
- },
1334
- "stand-alone": {
1335
- "abbreviated": [
1336
- "Thg 1",
1337
- "Thg 2",
1338
- "Thg 3",
1339
- "Thg 4",
1340
- "Thg 5",
1341
- "Thg 6",
1342
- "Thg 7",
1343
- "Thg 8",
1344
- "Thg 9",
1345
- "Thg 10",
1346
- "Thg 11",
1347
- "Thg 12"
1348
- ],
1349
- "narrow": [
1350
- "1",
1351
- "2",
1352
- "3",
1353
- "4",
1354
- "5",
1355
- "6",
1356
- "7",
1357
- "8",
1358
- "9",
1359
- "10",
1360
- "11",
1361
- "12"
1362
- ],
1363
- "wide": [
1364
- "Tháng 1",
1365
- "Tháng 2",
1366
- "Tháng 3",
1367
- "Tháng 4",
1368
- "Tháng 5",
1369
- "Tháng 6",
1370
- "Tháng 7",
1371
- "Tháng 8",
1372
- "Tháng 9",
1373
- "Tháng 10",
1374
- "Tháng 11",
1375
- "Tháng 12"
1376
- ]
1377
- }
1378
- },
1379
- "days": {
1380
- "format": {
1381
- "abbreviated": [
1382
- "CN",
1383
- "Th 2",
1384
- "Th 3",
1385
- "Th 4",
1386
- "Th 5",
1387
- "Th 6",
1388
- "Th 7"
1389
- ],
1390
- "narrow": [
1391
- "CN",
1392
- "T2",
1393
- "T3",
1394
- "T4",
1395
- "T5",
1396
- "T6",
1397
- "T7"
1398
- ],
1399
- "short": [
1400
- "CN",
1401
- "T2",
1402
- "T3",
1403
- "T4",
1404
- "T5",
1405
- "T6",
1406
- "T7"
1407
- ],
1408
- "wide": [
1409
- "Chủ Nhật",
1410
- "Thứ Hai",
1411
- "Thứ Ba",
1412
- "Thứ Tư",
1413
- "Thứ Năm",
1414
- "Thứ Sáu",
1415
- "Thứ Bảy"
1416
- ]
1417
- },
1418
- "stand-alone": {
1419
- "abbreviated": [
1420
- "CN",
1421
- "Th 2",
1422
- "Th 3",
1423
- "Th 4",
1424
- "Th 5",
1425
- "Th 6",
1426
- "Th 7"
1427
- ],
1428
- "narrow": [
1429
- "CN",
1430
- "T2",
1431
- "T3",
1432
- "T4",
1433
- "T5",
1434
- "T6",
1435
- "T7"
1436
- ],
1437
- "short": [
1438
- "CN",
1439
- "T2",
1440
- "T3",
1441
- "T4",
1442
- "T5",
1443
- "T6",
1444
- "T7"
1445
- ],
1446
- "wide": [
1447
- "Chủ Nhật",
1448
- "Thứ Hai",
1449
- "Thứ Ba",
1450
- "Thứ Tư",
1451
- "Thứ Năm",
1452
- "Thứ Sáu",
1453
- "Thứ Bảy"
1454
- ]
1455
- }
1456
- },
1457
- "quarters": {
1458
- "format": {
1459
- "abbreviated": [
1460
- "Q1",
1461
- "Q2",
1462
- "Q3",
1463
- "Q4"
1464
- ],
1465
- "narrow": [
1466
- "1",
1467
- "2",
1468
- "3",
1469
- "4"
1470
- ],
1471
- "wide": [
1472
- "Quý 1",
1473
- "Quý 2",
1474
- "Quý 3",
1475
- "Quý 4"
1476
- ]
1477
- },
1478
- "stand-alone": {
1479
- "abbreviated": [
1480
- "Q1",
1481
- "Q2",
1482
- "Q3",
1483
- "Q4"
1484
- ],
1485
- "narrow": [
1486
- "1",
1487
- "2",
1488
- "3",
1489
- "4"
1490
- ],
1491
- "wide": [
1492
- "quý 1",
1493
- "quý 2",
1494
- "quý 3",
1495
- "quý 4"
1496
- ]
1497
- }
1498
- },
1499
- "dayPeriods": {
1500
- "format": {
1501
- "abbreviated": [
1502
- "SA",
1503
- "CH"
1504
- ],
1505
- "narrow": [
1506
- "s",
1507
- "c"
1508
- ],
1509
- "wide": [
1510
- "SA",
1511
- "CH"
1512
- ]
1513
- },
1514
- "stand-alone": {
1515
- "abbreviated": [
1516
- "SA",
1517
- "CH"
1518
- ],
1519
- "narrow": [
1520
- "SA",
1521
- "CH"
1522
- ],
1523
- "wide": [
1524
- "SA",
1525
- "CH"
1526
- ]
1527
- }
1528
- },
1529
- "era-wide": {
1530
- "0": "Trước CN",
1531
- "1": "sau CN"
1532
- },
1533
- "era-abbreviated": {
1534
- "0": "Trước CN",
1535
- "1": "sau CN"
1536
- },
1537
- "era-narrow": {
1538
- "0": "tr. CN",
1539
- "1": "sau CN"
1540
- }
1541
- },
1542
- "ca-islamic": {
1543
- "dateFormats": {
1544
- "full": "EEEE, 'ngày' dd 'tháng' MM 'năm' y G",
1545
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
1546
- "medium": "dd-MM-y G",
1547
- "short": "dd/MM/y GGGGG"
1548
- },
1549
- "timeFormats": {
1550
- "full": "HH:mm:ss zzzz",
1551
- "long": "HH:mm:ss z",
1552
- "medium": "HH:mm:ss",
1553
- "short": "HH:mm"
1554
- },
1555
- "dateTimeFormats": {
1556
- "full": "{1} 'lúc' {0}",
1557
- "long": "{1} 'lúc' {0}",
1558
- "medium": "{1} {0}",
1559
- "short": "{1} {0}",
1560
- "availableFormats": {
1561
- "Bh": "h B",
1562
- "Bhm": "h:mm B",
1563
- "Bhms": "h:mm:ss B",
1564
- "d": "'Ngày' dd",
1565
- "E": "ccc",
1566
- "EBhm": "E h:mm B",
1567
- "EBhms": "E h:mm:ss B",
1568
- "Ed": "E, dd",
1569
- "Ehm": "E h:mm a",
1570
- "EHm": "E HH:mm",
1571
- "Ehms": "E h:mm:ss a",
1572
- "EHms": "E HH:mm:ss",
1573
- "Gy": "y G",
1574
- "GyMMM": "MMM y G",
1575
- "GyMMMd": "d MMM, y G",
1576
- "GyMMMEd": "E, d MMM, y G",
1577
- "h": "h a",
1578
- "H": "HH",
1579
- "hm": "h:mm a",
1580
- "Hm": "HH:mm",
1581
- "hms": "h:mm:ss a",
1582
- "Hms": "HH:mm:ss",
1583
- "M": "L",
1584
- "Md": "dd/M",
1585
- "MEd": "E, dd/M",
1586
- "MMdd": "dd-MM",
1587
- "MMM": "LLL",
1588
- "MMMd": "d MMM",
1589
- "MMMEd": "E, d MMM",
1590
- "MMMMd": "dd MMMM",
1591
- "MMMMEd": "E, dd MMMM",
1592
- "ms": "mm:ss",
1593
- "y": "y G",
1594
- "yyyy": "y G",
1595
- "yyyyM": "M/y G",
1596
- "yyyyMd": "d/M/y G",
1597
- "yyyyMEd": "E, d/M/y GGGGG",
1598
- "yyyyMM": "MM-y G",
1599
- "yyyyMMM": "MMM y G",
1600
- "yyyyMMMd": "d MMM, y G",
1601
- "yyyyMMMEd": "E, d MMM, y G",
1602
- "yyyyMMMM": "MMMM y G",
1603
- "yyyyQQQ": "QQQ y G",
1604
- "yyyyQQQQ": "QQQQ y G"
1605
- },
1606
- "appendItems": {
1607
- "Day": "{0} ({2}: {1})",
1608
- "Day-Of-Week": "{0} {1}",
1609
- "Era": "{1} {0}",
1610
- "Hour": "{0} ({2}: {1})",
1611
- "Minute": "{0} ({2}: {1})",
1612
- "Month": "{0} ({2}: {1})",
1613
- "Quarter": "{0} ({2}: {1})",
1614
- "Second": "{0} ({2}: {1})",
1615
- "Timezone": "{0} {1}",
1616
- "Week": "{0} ({2}: {1})",
1617
- "Year": "{1} {0}"
1618
- },
1619
- "intervalFormats": {
1620
- "intervalFormatFallback": "{0} - {1}",
1621
- "d": {
1622
- "d": "'Ngày' dd–dd"
1623
- },
1624
- "Gy": {
1625
- "G": "G y – G y",
1626
- "y": "G y–y"
1627
- },
1628
- "GyM": {
1629
- "G": "GGGGG y-MM – GGGGG y-MM",
1630
- "M": "GGGGG y-MM – y-MM",
1631
- "y": "GGGGG y-MM – y-MM"
1632
- },
1633
- "GyMd": {
1634
- "d": "GGGGG y-MM-dd – y-MM-dd",
1635
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1636
- "M": "GGGGG y-MM-dd – y-MM-dd",
1637
- "y": "GGGGG y-MM-dd – y-MM-dd"
1638
- },
1639
- "GyMEd": {
1640
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1641
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1642
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1643
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1644
- },
1645
- "GyMMM": {
1646
- "G": "G y MMM – G y MMM",
1647
- "M": "G y MMM–MMM",
1648
- "y": "G y MMM – y MMM"
1649
- },
1650
- "GyMMMd": {
1651
- "d": "G y MMM d–d",
1652
- "G": "G y MMM d – G y MMM d",
1653
- "M": "G y MMM d – MMM d",
1654
- "y": "G y MMM d – y MMM d"
1655
- },
1656
- "GyMMMEd": {
1657
- "d": "G y MMM d, E – MMM d, E",
1658
- "G": "G y MMM d, E – G y MMM d, E",
1659
- "M": "G y MMM d, E – MMM d, E",
1660
- "y": "G y MMM d, E – y MMM d, E"
1661
- },
1662
- "h": {
1663
- "a": "h'h' a – h'h' a",
1664
- "h": "h'h' - h'h' a"
1665
- },
1666
- "H": {
1667
- "H": "HH'h' - HH'h'"
1668
- },
1669
- "hm": {
1670
- "a": "h:mm a – h:mm a",
1671
- "h": "h:mm–h:mm a",
1672
- "m": "h:mm–h:mm a"
1673
- },
1674
- "Hm": {
1675
- "H": "HH:mm–HH:mm",
1676
- "m": "HH:mm–HH:mm"
1677
- },
1678
- "hmv": {
1679
- "a": "h:mm a – h:mm a v",
1680
- "h": "h:mm–h:mm a v",
1681
- "m": "h:mm–h:mm a v"
1682
- },
1683
- "Hmv": {
1684
- "H": "HH:mm–HH:mm v",
1685
- "m": "HH:mm–HH:mm v"
1686
- },
1687
- "hv": {
1688
- "a": "h'h' a – h'h' a v",
1689
- "h": "h'h'-h'h' a v"
1690
- },
1691
- "Hv": {
1692
- "H": "HH'h'-HH'h' v"
1693
- },
1694
- "M": {
1695
- "M": "'Tháng' M - 'Tháng' M"
1696
- },
1697
- "Md": {
1698
- "d": "dd/MM – dd/MM",
1699
- "M": "dd/MM – dd/MM"
1700
- },
1701
- "MEd": {
1702
- "d": "EEEE, dd/MM – EEEE, dd/MM",
1703
- "M": "EEEE, dd/MM – EEEE, dd/MM"
1704
- },
1705
- "MMM": {
1706
- "M": "MMM–MMM"
1707
- },
1708
- "MMMd": {
1709
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
1710
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
1711
- },
1712
- "MMMEd": {
1713
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
1714
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
1715
- },
1716
- "y": {
1717
- "y": "y–y G"
1718
- },
1719
- "yM": {
1720
- "M": "MM/y – MM/y G",
1721
- "y": "MM/y – MM/y G"
1722
- },
1723
- "yMd": {
1724
- "d": "dd/MM/y – dd/MM/y G",
1725
- "M": "dd/MM/y – dd/MM/y G",
1726
- "y": "dd/MM/y – dd/MM/y G"
1727
- },
1728
- "yMEd": {
1729
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
1730
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
1731
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
1732
- },
1733
- "yMMM": {
1734
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
1735
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
1736
- },
1737
- "yMMMd": {
1738
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
1739
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
1740
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
1741
- },
1742
- "yMMMEd": {
1743
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
1744
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
1745
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
1746
- },
1747
- "yMMMM": {
1748
- "M": "MMMM–MMMM y G",
1749
- "y": "MMMM y – MMMM y G"
1750
- }
1751
- }
1752
- },
1753
- "months": {
1754
- "format": {
1755
- "abbreviated": [
1756
- "Muh.",
1757
- "Saf.",
1758
- "Rab. I",
1759
- "Rab. II",
1760
- "Jum. I",
1761
- "Jum. II",
1762
- "Raj.",
1763
- "Sha.",
1764
- "Ram.",
1765
- "Shaw.",
1766
- "Dhuʻl-Q.",
1767
- "Dhuʻl-H."
1768
- ],
1769
- "narrow": [
1770
- "1",
1771
- "2",
1772
- "3",
1773
- "4",
1774
- "5",
1775
- "6",
1776
- "7",
1777
- "8",
1778
- "9",
1779
- "10",
1780
- "11",
1781
- "12"
1782
- ],
1783
- "wide": [
1784
- "Muharram",
1785
- "Safar",
1786
- "Rabiʻ I",
1787
- "Rabiʻ II",
1788
- "Jumada I",
1789
- "Jumada II",
1790
- "Rajab",
1791
- "Shaʻban",
1792
- "Ramadan",
1793
- "Shawwal",
1794
- "Dhuʻl-Qiʻdah",
1795
- "Dhuʻl-Hijjah"
1796
- ]
1797
- },
1798
- "stand-alone": {
1799
- "abbreviated": [
1800
- "Muh.",
1801
- "Saf.",
1802
- "Rab. I",
1803
- "Rab. II",
1804
- "Jum. I",
1805
- "Jum. II",
1806
- "Raj.",
1807
- "Sha.",
1808
- "Ram.",
1809
- "Shaw.",
1810
- "Dhuʻl-Q.",
1811
- "Dhuʻl-H."
1812
- ],
1813
- "narrow": [
1814
- "1",
1815
- "2",
1816
- "3",
1817
- "4",
1818
- "5",
1819
- "6",
1820
- "7",
1821
- "8",
1822
- "9",
1823
- "10",
1824
- "11",
1825
- "12"
1826
- ],
1827
- "wide": [
1828
- "Muharram",
1829
- "Safar",
1830
- "Rabiʻ I",
1831
- "Rabiʻ II",
1832
- "Jumada I",
1833
- "Jumada II",
1834
- "Rajab",
1835
- "Shaʻban",
1836
- "Ramadan",
1837
- "Shawwal",
1838
- "Dhuʻl-Qiʻdah",
1839
- "Dhuʻl-Hijjah"
1840
- ]
1841
- }
1842
- },
1843
- "days": {
1844
- "format": {
1845
- "abbreviated": [
1846
- "CN",
1847
- "Th 2",
1848
- "Th 3",
1849
- "Th 4",
1850
- "Th 5",
1851
- "Th 6",
1852
- "Th 7"
1853
- ],
1854
- "narrow": [
1855
- "CN",
1856
- "T2",
1857
- "T3",
1858
- "T4",
1859
- "T5",
1860
- "T6",
1861
- "T7"
1862
- ],
1863
- "short": [
1864
- "CN",
1865
- "T2",
1866
- "T3",
1867
- "T4",
1868
- "T5",
1869
- "T6",
1870
- "T7"
1871
- ],
1872
- "wide": [
1873
- "Chủ Nhật",
1874
- "Thứ Hai",
1875
- "Thứ Ba",
1876
- "Thứ Tư",
1877
- "Thứ Năm",
1878
- "Thứ Sáu",
1879
- "Thứ Bảy"
1880
- ]
1881
- },
1882
- "stand-alone": {
1883
- "abbreviated": [
1884
- "CN",
1885
- "Th 2",
1886
- "Th 3",
1887
- "Th 4",
1888
- "Th 5",
1889
- "Th 6",
1890
- "Th 7"
1891
- ],
1892
- "narrow": [
1893
- "CN",
1894
- "T2",
1895
- "T3",
1896
- "T4",
1897
- "T5",
1898
- "T6",
1899
- "T7"
1900
- ],
1901
- "short": [
1902
- "CN",
1903
- "T2",
1904
- "T3",
1905
- "T4",
1906
- "T5",
1907
- "T6",
1908
- "T7"
1909
- ],
1910
- "wide": [
1911
- "Chủ Nhật",
1912
- "Thứ Hai",
1913
- "Thứ Ba",
1914
- "Thứ Tư",
1915
- "Thứ Năm",
1916
- "Thứ Sáu",
1917
- "Thứ Bảy"
1918
- ]
1919
- }
1920
- },
1921
- "quarters": {
1922
- "format": {
1923
- "abbreviated": [
1924
- "Q1",
1925
- "Q2",
1926
- "Q3",
1927
- "Q4"
1928
- ],
1929
- "narrow": [
1930
- "1",
1931
- "2",
1932
- "3",
1933
- "4"
1934
- ],
1935
- "wide": [
1936
- "Quý 1",
1937
- "Quý 2",
1938
- "Quý 3",
1939
- "Quý 4"
1940
- ]
1941
- },
1942
- "stand-alone": {
1943
- "abbreviated": [
1944
- "Q1",
1945
- "Q2",
1946
- "Q3",
1947
- "Q4"
1948
- ],
1949
- "narrow": [
1950
- "1",
1951
- "2",
1952
- "3",
1953
- "4"
1954
- ],
1955
- "wide": [
1956
- "quý 1",
1957
- "quý 2",
1958
- "quý 3",
1959
- "quý 4"
1960
- ]
1961
- }
1962
- },
1963
- "dayPeriods": {
1964
- "format": {
1965
- "abbreviated": [
1966
- "SA",
1967
- "CH"
1968
- ],
1969
- "narrow": [
1970
- "s",
1971
- "c"
1972
- ],
1973
- "wide": [
1974
- "SA",
1975
- "CH"
1976
- ]
1977
- },
1978
- "stand-alone": {
1979
- "abbreviated": [
1980
- "SA",
1981
- "CH"
1982
- ],
1983
- "narrow": [
1984
- "SA",
1985
- "CH"
1986
- ],
1987
- "wide": [
1988
- "SA",
1989
- "CH"
1990
- ]
1991
- }
1992
- },
1993
- "era-wide": {
1994
- "0": "AH"
1995
- },
1996
- "era-abbreviated": {
1997
- "0": "AH"
1998
- },
1999
- "era-narrow": {
2000
- "0": "AH"
2001
- }
2002
- },
2003
- "ca-japanese": {
2004
- "dateFormats": {
2005
- "full": "EEEE, 'ngày' dd MMMM 'năm' y G",
2006
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2007
- "medium": "dd-MM-y G",
2008
- "short": "dd/MM/y G"
2009
- },
2010
- "timeFormats": {
2011
- "full": "HH:mm:ss zzzz",
2012
- "long": "HH:mm:ss z",
2013
- "medium": "HH:mm:ss",
2014
- "short": "HH:mm"
2015
- },
2016
- "dateTimeFormats": {
2017
- "full": "{1} 'lúc' {0}",
2018
- "long": "{1} 'lúc' {0}",
2019
- "medium": "{1} {0}",
2020
- "short": "{1} {0}",
2021
- "availableFormats": {
2022
- "Bh": "h B",
2023
- "Bhm": "h:mm B",
2024
- "Bhms": "h:mm:ss B",
2025
- "d": "'Ngày' dd",
2026
- "E": "ccc",
2027
- "EBhm": "E h:mm B",
2028
- "EBhms": "E h:mm:ss B",
2029
- "Ed": "E, dd",
2030
- "Ehm": "E h:mm a",
2031
- "EHm": "E HH:mm",
2032
- "Ehms": "E h:mm:ss a",
2033
- "EHms": "E HH:mm:ss",
2034
- "Gy": "y G",
2035
- "GyMMM": "MMM y G",
2036
- "GyMMMd": "d MMM, y G",
2037
- "GyMMMEd": "E, d MMM, y G",
2038
- "h": "h a",
2039
- "H": "HH",
2040
- "hm": "h:mm a",
2041
- "Hm": "HH:mm",
2042
- "hms": "h:mm:ss a",
2043
- "Hms": "HH:mm:ss",
2044
- "M": "L",
2045
- "Md": "dd/M",
2046
- "MEd": "E, dd/M",
2047
- "MMdd": "dd-MM",
2048
- "MMM": "LLL",
2049
- "MMMd": "d MMM",
2050
- "MMMEd": "E, d MMM",
2051
- "MMMMd": "dd MMMM",
2052
- "MMMMEd": "E, dd MMMM",
2053
- "ms": "mm:ss",
2054
- "y": "y G",
2055
- "yyyy": "y G",
2056
- "yyyyM": "M/y G",
2057
- "yyyyMd": "d/M/y G",
2058
- "yyyyMEd": "E, d/M/y GGGGG",
2059
- "yyyyMM": "MM-y G",
2060
- "yyyyMMM": "MMM y G",
2061
- "yyyyMMMd": "d MMM, y G",
2062
- "yyyyMMMEd": "E, d MMM, y G",
2063
- "yyyyMMMM": "MMMM y G",
2064
- "yyyyQQQ": "QQQ y G",
2065
- "yyyyQQQQ": "QQQQ y G"
2066
- },
2067
- "appendItems": {
2068
- "Day": "{0} ({2}: {1})",
2069
- "Day-Of-Week": "{0} {1}",
2070
- "Era": "{1} {0}",
2071
- "Hour": "{0} ({2}: {1})",
2072
- "Minute": "{0} ({2}: {1})",
2073
- "Month": "{0} ({2}: {1})",
2074
- "Quarter": "{0} ({2}: {1})",
2075
- "Second": "{0} ({2}: {1})",
2076
- "Timezone": "{0} {1}",
2077
- "Week": "{0} ({2}: {1})",
2078
- "Year": "{1} {0}"
2079
- },
2080
- "intervalFormats": {
2081
- "intervalFormatFallback": "{0} - {1}",
2082
- "d": {
2083
- "d": "'Ngày' dd–dd"
2084
- },
2085
- "Gy": {
2086
- "G": "G y – G y",
2087
- "y": "G y–y"
2088
- },
2089
- "GyM": {
2090
- "G": "GGGGG y-MM – GGGGG y-MM",
2091
- "M": "GGGGG y-MM – y-MM",
2092
- "y": "GGGGG y-MM – y-MM"
2093
- },
2094
- "GyMd": {
2095
- "d": "GGGGG y-MM-dd – y-MM-dd",
2096
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2097
- "M": "GGGGG y-MM-dd – y-MM-dd",
2098
- "y": "GGGGG y-MM-dd – y-MM-dd"
2099
- },
2100
- "GyMEd": {
2101
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2102
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2103
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2104
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2105
- },
2106
- "GyMMM": {
2107
- "G": "G y MMM – G y MMM",
2108
- "M": "G y MMM–MMM",
2109
- "y": "G y MMM – y MMM"
2110
- },
2111
- "GyMMMd": {
2112
- "d": "G y MMM d–d",
2113
- "G": "G y MMM d – G y MMM d",
2114
- "M": "G y MMM d – MMM d",
2115
- "y": "G y MMM d – y MMM d"
2116
- },
2117
- "GyMMMEd": {
2118
- "d": "G y MMM d, E – MMM d, E",
2119
- "G": "G y MMM d, E – G y MMM d, E",
2120
- "M": "G y MMM d, E – MMM d, E",
2121
- "y": "G y MMM d, E – y MMM d, E"
2122
- },
2123
- "h": {
2124
- "a": "h'h' a – h'h' a",
2125
- "h": "h'h' - h'h' a"
2126
- },
2127
- "H": {
2128
- "H": "HH'h' - HH'h'"
2129
- },
2130
- "hm": {
2131
- "a": "h:mm a – h:mm a",
2132
- "h": "h:mm–h:mm a",
2133
- "m": "h:mm–h:mm a"
2134
- },
2135
- "Hm": {
2136
- "H": "HH:mm–HH:mm",
2137
- "m": "HH:mm–HH:mm"
2138
- },
2139
- "hmv": {
2140
- "a": "h:mm a – h:mm a v",
2141
- "h": "h:mm–h:mm a v",
2142
- "m": "h:mm–h:mm a v"
2143
- },
2144
- "Hmv": {
2145
- "H": "HH:mm–HH:mm v",
2146
- "m": "HH:mm–HH:mm v"
2147
- },
2148
- "hv": {
2149
- "a": "h'h' a – h'h' a v",
2150
- "h": "h'h'-h'h' a v"
2151
- },
2152
- "Hv": {
2153
- "H": "HH'h'-HH'h' v"
2154
- },
2155
- "M": {
2156
- "M": "'Tháng' M - 'Tháng' M"
2157
- },
2158
- "Md": {
2159
- "d": "dd/MM – dd/MM",
2160
- "M": "dd/MM – dd/MM"
2161
- },
2162
- "MEd": {
2163
- "d": "EEEE, dd/MM – EEEE, dd/MM",
2164
- "M": "EEEE, dd/MM – EEEE, dd/MM"
2165
- },
2166
- "MMM": {
2167
- "M": "MMM–MMM"
2168
- },
2169
- "MMMd": {
2170
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
2171
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
2172
- },
2173
- "MMMEd": {
2174
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
2175
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
2176
- },
2177
- "y": {
2178
- "y": "y–y G"
2179
- },
2180
- "yM": {
2181
- "M": "MM/y – MM/y G",
2182
- "y": "MM/y – MM/y G"
2183
- },
2184
- "yMd": {
2185
- "d": "dd/MM/y – dd/MM/y G",
2186
- "M": "dd/MM/y – dd/MM/y G",
2187
- "y": "dd/MM/y – dd/MM/y G"
2188
- },
2189
- "yMEd": {
2190
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2191
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2192
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
2193
- },
2194
- "yMMM": {
2195
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
2196
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
2197
- },
2198
- "yMMMd": {
2199
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2200
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2201
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
2202
- },
2203
- "yMMMEd": {
2204
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
2205
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
2206
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
2207
- },
2208
- "yMMMM": {
2209
- "M": "MMMM–MMMM y G",
2210
- "y": "MMMM y – MMMM y G"
2211
- }
2212
- }
2213
- },
2214
- "months": {
2215
- "format": {
2216
- "abbreviated": [
2217
- "thg 1",
2218
- "thg 2",
2219
- "thg 3",
2220
- "thg 4",
2221
- "thg 5",
2222
- "thg 6",
2223
- "thg 7",
2224
- "thg 8",
2225
- "thg 9",
2226
- "thg 10",
2227
- "thg 11",
2228
- "thg 12"
2229
- ],
2230
- "narrow": [
2231
- "1",
2232
- "2",
2233
- "3",
2234
- "4",
2235
- "5",
2236
- "6",
2237
- "7",
2238
- "8",
2239
- "9",
2240
- "10",
2241
- "11",
2242
- "12"
2243
- ],
2244
- "wide": [
2245
- "tháng 1",
2246
- "tháng 2",
2247
- "tháng 3",
2248
- "tháng 4",
2249
- "tháng 5",
2250
- "tháng 6",
2251
- "tháng 7",
2252
- "tháng 8",
2253
- "tháng 9",
2254
- "tháng 10",
2255
- "tháng 11",
2256
- "tháng 12"
2257
- ]
2258
- },
2259
- "stand-alone": {
2260
- "abbreviated": [
2261
- "Thg 1",
2262
- "Thg 2",
2263
- "Thg 3",
2264
- "Thg 4",
2265
- "Thg 5",
2266
- "Thg 6",
2267
- "Thg 7",
2268
- "Thg 8",
2269
- "Thg 9",
2270
- "Thg 10",
2271
- "Thg 11",
2272
- "Thg 12"
2273
- ],
2274
- "narrow": [
2275
- "1",
2276
- "2",
2277
- "3",
2278
- "4",
2279
- "5",
2280
- "6",
2281
- "7",
2282
- "8",
2283
- "9",
2284
- "10",
2285
- "11",
2286
- "12"
2287
- ],
2288
- "wide": [
2289
- "Tháng 1",
2290
- "Tháng 2",
2291
- "Tháng 3",
2292
- "Tháng 4",
2293
- "Tháng 5",
2294
- "Tháng 6",
2295
- "Tháng 7",
2296
- "Tháng 8",
2297
- "Tháng 9",
2298
- "Tháng 10",
2299
- "Tháng 11",
2300
- "Tháng 12"
2301
- ]
2302
- }
2303
- },
2304
- "days": {
2305
- "format": {
2306
- "abbreviated": [
2307
- "CN",
2308
- "Th 2",
2309
- "Th 3",
2310
- "Th 4",
2311
- "Th 5",
2312
- "Th 6",
2313
- "Th 7"
2314
- ],
2315
- "narrow": [
2316
- "CN",
2317
- "T2",
2318
- "T3",
2319
- "T4",
2320
- "T5",
2321
- "T6",
2322
- "T7"
2323
- ],
2324
- "short": [
2325
- "CN",
2326
- "T2",
2327
- "T3",
2328
- "T4",
2329
- "T5",
2330
- "T6",
2331
- "T7"
2332
- ],
2333
- "wide": [
2334
- "Chủ Nhật",
2335
- "Thứ Hai",
2336
- "Thứ Ba",
2337
- "Thứ Tư",
2338
- "Thứ Năm",
2339
- "Thứ Sáu",
2340
- "Thứ Bảy"
2341
- ]
2342
- },
2343
- "stand-alone": {
2344
- "abbreviated": [
2345
- "CN",
2346
- "Th 2",
2347
- "Th 3",
2348
- "Th 4",
2349
- "Th 5",
2350
- "Th 6",
2351
- "Th 7"
2352
- ],
2353
- "narrow": [
2354
- "CN",
2355
- "T2",
2356
- "T3",
2357
- "T4",
2358
- "T5",
2359
- "T6",
2360
- "T7"
2361
- ],
2362
- "short": [
2363
- "CN",
2364
- "T2",
2365
- "T3",
2366
- "T4",
2367
- "T5",
2368
- "T6",
2369
- "T7"
2370
- ],
2371
- "wide": [
2372
- "Chủ Nhật",
2373
- "Thứ Hai",
2374
- "Thứ Ba",
2375
- "Thứ Tư",
2376
- "Thứ Năm",
2377
- "Thứ Sáu",
2378
- "Thứ Bảy"
2379
- ]
2380
- }
2381
- },
2382
- "quarters": {
2383
- "format": {
2384
- "abbreviated": [
2385
- "Q1",
2386
- "Q2",
2387
- "Q3",
2388
- "Q4"
2389
- ],
2390
- "narrow": [
2391
- "1",
2392
- "2",
2393
- "3",
2394
- "4"
2395
- ],
2396
- "wide": [
2397
- "Quý 1",
2398
- "Quý 2",
2399
- "Quý 3",
2400
- "Quý 4"
2401
- ]
2402
- },
2403
- "stand-alone": {
2404
- "abbreviated": [
2405
- "Q1",
2406
- "Q2",
2407
- "Q3",
2408
- "Q4"
2409
- ],
2410
- "narrow": [
2411
- "1",
2412
- "2",
2413
- "3",
2414
- "4"
2415
- ],
2416
- "wide": [
2417
- "quý 1",
2418
- "quý 2",
2419
- "quý 3",
2420
- "quý 4"
2421
- ]
2422
- }
2423
- },
2424
- "dayPeriods": {
2425
- "format": {
2426
- "abbreviated": [
2427
- "SA",
2428
- "CH"
2429
- ],
2430
- "narrow": [
2431
- "s",
2432
- "c"
2433
- ],
2434
- "wide": [
2435
- "SA",
2436
- "CH"
2437
- ]
2438
- },
2439
- "stand-alone": {
2440
- "abbreviated": [
2441
- "SA",
2442
- "CH"
2443
- ],
2444
- "narrow": [
2445
- "SA",
2446
- "CH"
2447
- ],
2448
- "wide": [
2449
- "SA",
2450
- "CH"
2451
- ]
2452
- }
2453
- },
2454
- "era-wide": {
2455
- "232": "Meiji",
2456
- "233": "Taishō",
2457
- "234": "Shōwa",
2458
- "235": "Heisei"
2459
- },
2460
- "era-abbreviated": {
2461
- "232": "Meiji",
2462
- "233": "Taishō",
2463
- "234": "Shōwa",
2464
- "235": "Heisei"
2465
- },
2466
- "era-narrow": {
2467
- "232": "M",
2468
- "233": "T",
2469
- "234": "S",
2470
- "235": "H"
2471
- }
2472
- },
2473
- "ca-persian": {
2474
- "dateFormats": {
2475
- "full": "EEEE, 'ngày' dd 'tháng' MM 'năm' y G",
2476
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2477
- "medium": "dd-MM-y G",
2478
- "short": "dd/MM/y GGGGG"
2479
- },
2480
- "timeFormats": {
2481
- "full": "HH:mm:ss zzzz",
2482
- "long": "HH:mm:ss z",
2483
- "medium": "HH:mm:ss",
2484
- "short": "HH:mm"
2485
- },
2486
- "dateTimeFormats": {
2487
- "full": "{1} 'lúc' {0}",
2488
- "long": "{1} 'lúc' {0}",
2489
- "medium": "{1} {0}",
2490
- "short": "{1} {0}",
2491
- "availableFormats": {
2492
- "Bh": "h B",
2493
- "Bhm": "h:mm B",
2494
- "Bhms": "h:mm:ss B",
2495
- "d": "'Ngày' dd",
2496
- "E": "ccc",
2497
- "EBhm": "E h:mm B",
2498
- "EBhms": "E h:mm:ss B",
2499
- "Ed": "E, dd",
2500
- "Ehm": "E h:mm a",
2501
- "EHm": "E HH:mm",
2502
- "Ehms": "E h:mm:ss a",
2503
- "EHms": "E HH:mm:ss",
2504
- "Gy": "y G",
2505
- "GyMMM": "MMM y G",
2506
- "GyMMMd": "d MMM, y G",
2507
- "GyMMMEd": "E, d MMM, y G",
2508
- "h": "h a",
2509
- "H": "HH",
2510
- "hm": "h:mm a",
2511
- "Hm": "HH:mm",
2512
- "hms": "h:mm:ss a",
2513
- "Hms": "HH:mm:ss",
2514
- "M": "L",
2515
- "Md": "dd/M",
2516
- "MEd": "E, dd/M",
2517
- "MMdd": "dd-MM",
2518
- "MMM": "LLL",
2519
- "MMMd": "d MMM",
2520
- "MMMEd": "E, d MMM",
2521
- "MMMMd": "dd MMMM",
2522
- "MMMMEd": "E, dd MMMM",
2523
- "ms": "mm:ss",
2524
- "y": "y G",
2525
- "yyyy": "y G",
2526
- "yyyyM": "M/y G",
2527
- "yyyyMd": "d/M/y G",
2528
- "yyyyMEd": "E, d/M/y GGGGG",
2529
- "yyyyMM": "MM-y G",
2530
- "yyyyMMM": "MMM y G",
2531
- "yyyyMMMd": "d MMM, y G",
2532
- "yyyyMMMEd": "E, d MMM, y G",
2533
- "yyyyMMMM": "MMMM y G",
2534
- "yyyyQQQ": "QQQ y G",
2535
- "yyyyQQQQ": "QQQQ y G"
2536
- },
2537
- "appendItems": {
2538
- "Day": "{0} ({2}: {1})",
2539
- "Day-Of-Week": "{0} {1}",
2540
- "Era": "{1} {0}",
2541
- "Hour": "{0} ({2}: {1})",
2542
- "Minute": "{0} ({2}: {1})",
2543
- "Month": "{0} ({2}: {1})",
2544
- "Quarter": "{0} ({2}: {1})",
2545
- "Second": "{0} ({2}: {1})",
2546
- "Timezone": "{0} {1}",
2547
- "Week": "{0} ({2}: {1})",
2548
- "Year": "{1} {0}"
2549
- },
2550
- "intervalFormats": {
2551
- "intervalFormatFallback": "{0} - {1}",
2552
- "d": {
2553
- "d": "'Ngày' dd–dd"
2554
- },
2555
- "Gy": {
2556
- "G": "G y – G y",
2557
- "y": "G y–y"
2558
- },
2559
- "GyM": {
2560
- "G": "GGGGG y-MM – GGGGG y-MM",
2561
- "M": "GGGGG y-MM – y-MM",
2562
- "y": "GGGGG y-MM – y-MM"
2563
- },
2564
- "GyMd": {
2565
- "d": "GGGGG y-MM-dd – y-MM-dd",
2566
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2567
- "M": "GGGGG y-MM-dd – y-MM-dd",
2568
- "y": "GGGGG y-MM-dd – y-MM-dd"
2569
- },
2570
- "GyMEd": {
2571
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2572
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2573
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2574
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2575
- },
2576
- "GyMMM": {
2577
- "G": "G y MMM – G y MMM",
2578
- "M": "G y MMM–MMM",
2579
- "y": "G y MMM – y MMM"
2580
- },
2581
- "GyMMMd": {
2582
- "d": "G y MMM d–d",
2583
- "G": "G y MMM d – G y MMM d",
2584
- "M": "G y MMM d – MMM d",
2585
- "y": "G y MMM d – y MMM d"
2586
- },
2587
- "GyMMMEd": {
2588
- "d": "G y MMM d, E – MMM d, E",
2589
- "G": "G y MMM d, E – G y MMM d, E",
2590
- "M": "G y MMM d, E – MMM d, E",
2591
- "y": "G y MMM d, E – y MMM d, E"
2592
- },
2593
- "h": {
2594
- "a": "h'h' a – h'h' a",
2595
- "h": "h'h' - h'h' a"
2596
- },
2597
- "H": {
2598
- "H": "HH'h' - HH'h'"
2599
- },
2600
- "hm": {
2601
- "a": "h:mm a – h:mm a",
2602
- "h": "h:mm–h:mm a",
2603
- "m": "h:mm–h:mm a"
2604
- },
2605
- "Hm": {
2606
- "H": "HH:mm–HH:mm",
2607
- "m": "HH:mm–HH:mm"
2608
- },
2609
- "hmv": {
2610
- "a": "h:mm a – h:mm a v",
2611
- "h": "h:mm–h:mm a v",
2612
- "m": "h:mm–h:mm a v"
2613
- },
2614
- "Hmv": {
2615
- "H": "HH:mm–HH:mm v",
2616
- "m": "HH:mm–HH:mm v"
2617
- },
2618
- "hv": {
2619
- "a": "h'h' a – h'h' a v",
2620
- "h": "h'h'-h'h' a v"
2621
- },
2622
- "Hv": {
2623
- "H": "HH'h'-HH'h' v"
2624
- },
2625
- "M": {
2626
- "M": "'Tháng' M - 'Tháng' M"
2627
- },
2628
- "Md": {
2629
- "d": "dd/MM – dd/MM",
2630
- "M": "dd/MM – dd/MM"
2631
- },
2632
- "MEd": {
2633
- "d": "EEEE, dd/MM – EEEE, dd/MM",
2634
- "M": "EEEE, dd/MM – EEEE, dd/MM"
2635
- },
2636
- "MMM": {
2637
- "M": "MMM–MMM"
2638
- },
2639
- "MMMd": {
2640
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
2641
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
2642
- },
2643
- "MMMEd": {
2644
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
2645
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
2646
- },
2647
- "y": {
2648
- "y": "y–y G"
2649
- },
2650
- "yM": {
2651
- "M": "MM/y – MM/y G",
2652
- "y": "MM/y – MM/y G"
2653
- },
2654
- "yMd": {
2655
- "d": "dd/MM/y – dd/MM/y G",
2656
- "M": "dd/MM/y – dd/MM/y G",
2657
- "y": "dd/MM/y – dd/MM/y G"
2658
- },
2659
- "yMEd": {
2660
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2661
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2662
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
2663
- },
2664
- "yMMM": {
2665
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
2666
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
2667
- },
2668
- "yMMMd": {
2669
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2670
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2671
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
2672
- },
2673
- "yMMMEd": {
2674
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
2675
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
2676
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
2677
- },
2678
- "yMMMM": {
2679
- "M": "MMMM–MMMM y G",
2680
- "y": "MMMM y – MMMM y G"
2681
- }
2682
- }
2683
- },
2684
- "months": {
2685
- "format": {
2686
- "abbreviated": [
2687
- "Farvardin",
2688
- "Ordibehesht",
2689
- "Khordad",
2690
- "Tir",
2691
- "Mordad",
2692
- "Shahrivar",
2693
- "Mehr",
2694
- "Aban",
2695
- "Azar",
2696
- "Dey",
2697
- "Bahman",
2698
- "Esfand"
2699
- ],
2700
- "narrow": [
2701
- "1",
2702
- "2",
2703
- "3",
2704
- "4",
2705
- "5",
2706
- "6",
2707
- "7",
2708
- "8",
2709
- "9",
2710
- "10",
2711
- "11",
2712
- "12"
2713
- ],
2714
- "wide": [
2715
- "Farvardin",
2716
- "Ordibehesht",
2717
- "Khordad",
2718
- "Tir",
2719
- "Mordad",
2720
- "Shahrivar",
2721
- "Mehr",
2722
- "Aban",
2723
- "Azar",
2724
- "Dey",
2725
- "Bahman",
2726
- "Esfand"
2727
- ]
2728
- },
2729
- "stand-alone": {
2730
- "abbreviated": [
2731
- "Farvardin",
2732
- "Ordibehesht",
2733
- "Khordad",
2734
- "Tir",
2735
- "Mordad",
2736
- "Shahrivar",
2737
- "Mehr",
2738
- "Aban",
2739
- "Azar",
2740
- "Dey",
2741
- "Bahman",
2742
- "Esfand"
2743
- ],
2744
- "narrow": [
2745
- "1",
2746
- "2",
2747
- "3",
2748
- "4",
2749
- "5",
2750
- "6",
2751
- "7",
2752
- "8",
2753
- "9",
2754
- "10",
2755
- "11",
2756
- "12"
2757
- ],
2758
- "wide": [
2759
- "Farvardin",
2760
- "Ordibehesht",
2761
- "Khordad",
2762
- "Tir",
2763
- "Mordad",
2764
- "Shahrivar",
2765
- "Mehr",
2766
- "Aban",
2767
- "Azar",
2768
- "Dey",
2769
- "Bahman",
2770
- "Esfand"
2771
- ]
2772
- }
2773
- },
2774
- "days": {
2775
- "format": {
2776
- "abbreviated": [
2777
- "CN",
2778
- "Th 2",
2779
- "Th 3",
2780
- "Th 4",
2781
- "Th 5",
2782
- "Th 6",
2783
- "Th 7"
2784
- ],
2785
- "narrow": [
2786
- "CN",
2787
- "T2",
2788
- "T3",
2789
- "T4",
2790
- "T5",
2791
- "T6",
2792
- "T7"
2793
- ],
2794
- "short": [
2795
- "CN",
2796
- "T2",
2797
- "T3",
2798
- "T4",
2799
- "T5",
2800
- "T6",
2801
- "T7"
2802
- ],
2803
- "wide": [
2804
- "Chủ Nhật",
2805
- "Thứ Hai",
2806
- "Thứ Ba",
2807
- "Thứ Tư",
2808
- "Thứ Năm",
2809
- "Thứ Sáu",
2810
- "Thứ Bảy"
2811
- ]
2812
- },
2813
- "stand-alone": {
2814
- "abbreviated": [
2815
- "CN",
2816
- "Th 2",
2817
- "Th 3",
2818
- "Th 4",
2819
- "Th 5",
2820
- "Th 6",
2821
- "Th 7"
2822
- ],
2823
- "narrow": [
2824
- "CN",
2825
- "T2",
2826
- "T3",
2827
- "T4",
2828
- "T5",
2829
- "T6",
2830
- "T7"
2831
- ],
2832
- "short": [
2833
- "CN",
2834
- "T2",
2835
- "T3",
2836
- "T4",
2837
- "T5",
2838
- "T6",
2839
- "T7"
2840
- ],
2841
- "wide": [
2842
- "Chủ Nhật",
2843
- "Thứ Hai",
2844
- "Thứ Ba",
2845
- "Thứ Tư",
2846
- "Thứ Năm",
2847
- "Thứ Sáu",
2848
- "Thứ Bảy"
2849
- ]
2850
- }
2851
- },
2852
- "quarters": {
2853
- "format": {
2854
- "abbreviated": [
2855
- "Q1",
2856
- "Q2",
2857
- "Q3",
2858
- "Q4"
2859
- ],
2860
- "narrow": [
2861
- "1",
2862
- "2",
2863
- "3",
2864
- "4"
2865
- ],
2866
- "wide": [
2867
- "Quý 1",
2868
- "Quý 2",
2869
- "Quý 3",
2870
- "Quý 4"
2871
- ]
2872
- },
2873
- "stand-alone": {
2874
- "abbreviated": [
2875
- "Q1",
2876
- "Q2",
2877
- "Q3",
2878
- "Q4"
2879
- ],
2880
- "narrow": [
2881
- "1",
2882
- "2",
2883
- "3",
2884
- "4"
2885
- ],
2886
- "wide": [
2887
- "quý 1",
2888
- "quý 2",
2889
- "quý 3",
2890
- "quý 4"
2891
- ]
2892
- }
2893
- },
2894
- "dayPeriods": {
2895
- "format": {
2896
- "abbreviated": [
2897
- "SA",
2898
- "CH"
2899
- ],
2900
- "narrow": [
2901
- "s",
2902
- "c"
2903
- ],
2904
- "wide": [
2905
- "SA",
2906
- "CH"
2907
- ]
2908
- },
2909
- "stand-alone": {
2910
- "abbreviated": [
2911
- "SA",
2912
- "CH"
2913
- ],
2914
- "narrow": [
2915
- "SA",
2916
- "CH"
2917
- ],
2918
- "wide": [
2919
- "SA",
2920
- "CH"
2921
- ]
2922
- }
2923
- },
2924
- "era-wide": {
2925
- "0": "AP"
2926
- },
2927
- "era-abbreviated": {
2928
- "0": "AP"
2929
- },
2930
- "era-narrow": {
2931
- "0": "AP"
2932
- }
2933
- },
2934
- "ca-buddhist": {
2935
- "dateFormats": {
2936
- "full": "EEEE, 'ngày' dd MMMM 'năm' y G",
2937
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2938
- "medium": "dd-MM-y G",
2939
- "short": "dd/MM/y GGGGG"
2940
- },
2941
- "timeFormats": {
2942
- "full": "HH:mm:ss zzzz",
2943
- "long": "HH:mm:ss z",
2944
- "medium": "HH:mm:ss",
2945
- "short": "HH:mm"
2946
- },
2947
- "dateTimeFormats": {
2948
- "full": "{1} 'lúc' {0}",
2949
- "long": "{1} 'lúc' {0}",
2950
- "medium": "{1} {0}",
2951
- "short": "{1} {0}",
2952
- "availableFormats": {
2953
- "Bh": "h B",
2954
- "Bhm": "h:mm B",
2955
- "Bhms": "h:mm:ss B",
2956
- "d": "'Ngày' dd",
2957
- "E": "ccc",
2958
- "EBhm": "E h:mm B",
2959
- "EBhms": "E h:mm:ss B",
2960
- "Ed": "E, dd",
2961
- "Ehm": "E h:mm a",
2962
- "EHm": "E HH:mm",
2963
- "Ehms": "E h:mm:ss a",
2964
- "EHms": "E HH:mm:ss",
2965
- "Gy": "y G",
2966
- "GyMMM": "MMM y G",
2967
- "GyMMMd": "d MMM, y G",
2968
- "GyMMMEd": "E, d MMM, y G",
2969
- "h": "h a",
2970
- "H": "HH",
2971
- "hm": "h:mm a",
2972
- "Hm": "HH:mm",
2973
- "hms": "h:mm:ss a",
2974
- "Hms": "HH:mm:ss",
2975
- "M": "'tháng' L",
2976
- "Md": "dd/M",
2977
- "MEd": "E, dd-M",
2978
- "MMdd": "dd-MM",
2979
- "MMM": "LLL",
2980
- "MMMd": "d MMM",
2981
- "MMMEd": "E, d MMM",
2982
- "MMMMd": "dd MMMM",
2983
- "MMMMEd": "E, dd MMMM",
2984
- "ms": "mm:ss",
2985
- "y": "y G",
2986
- "yyyy": "y G",
2987
- "yyyyM": "M/y G",
2988
- "yyyyMd": "d/M/y G",
2989
- "yyyyMEd": "E, d/M/y GGGGG",
2990
- "yyyyMM": "MM-y G",
2991
- "yyyyMMM": "MMM y G",
2992
- "yyyyMMMd": "d MMM, y G",
2993
- "yyyyMMMEd": "E, d MMM, y G",
2994
- "yyyyMMMM": "MMMM y G",
2995
- "yyyyQQQ": "QQQ y G",
2996
- "yyyyQQQQ": "QQQQ y G"
2997
- },
2998
- "appendItems": {
2999
- "Day": "{0} ({2}: {1})",
3000
- "Day-Of-Week": "{0} {1}",
3001
- "Era": "{1} {0}",
3002
- "Hour": "{0} ({2}: {1})",
3003
- "Minute": "{0} ({2}: {1})",
3004
- "Month": "{0} ({2}: {1})",
3005
- "Quarter": "{0} ({2}: {1})",
3006
- "Second": "{0} ({2}: {1})",
3007
- "Timezone": "{0} {1}",
3008
- "Week": "{0} ({2}: {1})",
3009
- "Year": "{1} {0}"
3010
- },
3011
- "intervalFormats": {
3012
- "intervalFormatFallback": "{0} - {1}",
3013
- "d": {
3014
- "d": "'Ngày' dd–dd"
3015
- },
3016
- "Gy": {
3017
- "G": "G y – G y",
3018
- "y": "G y–y"
3019
- },
3020
- "GyM": {
3021
- "G": "GGGGG y-MM – GGGGG y-MM",
3022
- "M": "GGGGG y-MM – y-MM",
3023
- "y": "GGGGG y-MM – y-MM"
3024
- },
3025
- "GyMd": {
3026
- "d": "GGGGG y-MM-dd – y-MM-dd",
3027
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3028
- "M": "GGGGG y-MM-dd – y-MM-dd",
3029
- "y": "GGGGG y-MM-dd – y-MM-dd"
3030
- },
3031
- "GyMEd": {
3032
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3033
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3034
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3035
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3036
- },
3037
- "GyMMM": {
3038
- "G": "G y MMM – G y MMM",
3039
- "M": "G y MMM–MMM",
3040
- "y": "G y MMM – y MMM"
3041
- },
3042
- "GyMMMd": {
3043
- "d": "G y MMM d–d",
3044
- "G": "G y MMM d – G y MMM d",
3045
- "M": "G y MMM d – MMM d",
3046
- "y": "G y MMM d – y MMM d"
3047
- },
3048
- "GyMMMEd": {
3049
- "d": "G y MMM d, E – MMM d, E",
3050
- "G": "G y MMM d, E – G y MMM d, E",
3051
- "M": "G y MMM d, E – MMM d, E",
3052
- "y": "G y MMM d, E – y MMM d, E"
3053
- },
3054
- "h": {
3055
- "a": "h'h' a – h'h' a",
3056
- "h": "h'h' - h'h' a"
3057
- },
3058
- "H": {
3059
- "H": "HH'h' - HH'h'"
3060
- },
3061
- "hm": {
3062
- "a": "h:mm a – h:mm a",
3063
- "h": "h:mm–h:mm a",
3064
- "m": "h:mm–h:mm a"
3065
- },
3066
- "Hm": {
3067
- "H": "HH:mm–HH:mm",
3068
- "m": "HH:mm–HH:mm"
3069
- },
3070
- "hmv": {
3071
- "a": "h:mm a – h:mm a v",
3072
- "h": "h:mm–h:mm a v",
3073
- "m": "h:mm–h:mm a v"
3074
- },
3075
- "Hmv": {
3076
- "H": "HH:mm–HH:mm v",
3077
- "m": "HH:mm–HH:mm v"
3078
- },
3079
- "hv": {
3080
- "a": "h'h' a – h'h' a v",
3081
- "h": "h'h'-h'h' a v"
3082
- },
3083
- "Hv": {
3084
- "H": "HH'h'-HH'h' v"
3085
- },
3086
- "M": {
3087
- "M": "'Tháng' M - 'Tháng' M"
3088
- },
3089
- "Md": {
3090
- "d": "dd/MM – dd/MM",
3091
- "M": "dd/MM – dd/MM"
3092
- },
3093
- "MEd": {
3094
- "d": "EEEE, dd/MM – EEEE, dd/MM",
3095
- "M": "EEEE, dd/MM – EEEE, dd/MM"
3096
- },
3097
- "MMM": {
3098
- "M": "MMM–MMM"
3099
- },
3100
- "MMMd": {
3101
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
3102
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
3103
- },
3104
- "MMMEd": {
3105
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
3106
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
3107
- },
3108
- "y": {
3109
- "y": "y–y G"
3110
- },
3111
- "yM": {
3112
- "M": "MM/y – MM/y G",
3113
- "y": "MM/y – MM/y G"
3114
- },
3115
- "yMd": {
3116
- "d": "dd/MM/y – dd/MM/y G",
3117
- "M": "dd/MM/y – dd/MM/y G",
3118
- "y": "dd/MM/y – dd/MM/y G"
3119
- },
3120
- "yMEd": {
3121
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
3122
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
3123
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
3124
- },
3125
- "yMMM": {
3126
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
3127
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
3128
- },
3129
- "yMMMd": {
3130
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
3131
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
3132
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
3133
- },
3134
- "yMMMEd": {
3135
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
3136
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
3137
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
3138
- },
3139
- "yMMMM": {
3140
- "M": "MMMM–MMMM y G",
3141
- "y": "MMMM y – MMMM y G"
3142
- }
3143
- }
3144
- },
3145
- "months": {
3146
- "format": {
3147
- "abbreviated": [
3148
- "thg 1",
3149
- "thg 2",
3150
- "thg 3",
3151
- "thg 4",
3152
- "thg 5",
3153
- "thg 6",
3154
- "thg 7",
3155
- "thg 8",
3156
- "thg 9",
3157
- "thg 10",
3158
- "thg 11",
3159
- "thg 12"
3160
- ],
3161
- "narrow": [
3162
- "1",
3163
- "2",
3164
- "3",
3165
- "4",
3166
- "5",
3167
- "6",
3168
- "7",
3169
- "8",
3170
- "9",
3171
- "10",
3172
- "11",
3173
- "12"
3174
- ],
3175
- "wide": [
3176
- "tháng 1",
3177
- "tháng 2",
3178
- "tháng 3",
3179
- "tháng 4",
3180
- "tháng 5",
3181
- "tháng 6",
3182
- "tháng 7",
3183
- "tháng 8",
3184
- "tháng 9",
3185
- "tháng 10",
3186
- "tháng 11",
3187
- "tháng 12"
3188
- ]
3189
- },
3190
- "stand-alone": {
3191
- "abbreviated": [
3192
- "Thg 1",
3193
- "Thg 2",
3194
- "Thg 3",
3195
- "Thg 4",
3196
- "Thg 5",
3197
- "Thg 6",
3198
- "Thg 7",
3199
- "Thg 8",
3200
- "Thg 9",
3201
- "Thg 10",
3202
- "Thg 11",
3203
- "Thg 12"
3204
- ],
3205
- "narrow": [
3206
- "1",
3207
- "2",
3208
- "3",
3209
- "4",
3210
- "5",
3211
- "6",
3212
- "7",
3213
- "8",
3214
- "9",
3215
- "10",
3216
- "11",
3217
- "12"
3218
- ],
3219
- "wide": [
3220
- "Tháng 1",
3221
- "Tháng 2",
3222
- "Tháng 3",
3223
- "Tháng 4",
3224
- "Tháng 5",
3225
- "Tháng 6",
3226
- "Tháng 7",
3227
- "Tháng 8",
3228
- "Tháng 9",
3229
- "Tháng 10",
3230
- "Tháng 11",
3231
- "Tháng 12"
3232
- ]
3233
- }
3234
- },
3235
- "days": {
3236
- "format": {
3237
- "abbreviated": [
3238
- "CN",
3239
- "Th 2",
3240
- "Th 3",
3241
- "Th 4",
3242
- "Th 5",
3243
- "Th 6",
3244
- "Th 7"
3245
- ],
3246
- "narrow": [
3247
- "CN",
3248
- "T2",
3249
- "T3",
3250
- "T4",
3251
- "T5",
3252
- "T6",
3253
- "T7"
3254
- ],
3255
- "short": [
3256
- "CN",
3257
- "T2",
3258
- "T3",
3259
- "T4",
3260
- "T5",
3261
- "T6",
3262
- "T7"
3263
- ],
3264
- "wide": [
3265
- "Chủ Nhật",
3266
- "Thứ Hai",
3267
- "Thứ Ba",
3268
- "Thứ Tư",
3269
- "Thứ Năm",
3270
- "Thứ Sáu",
3271
- "Thứ Bảy"
3272
- ]
3273
- },
3274
- "stand-alone": {
3275
- "abbreviated": [
3276
- "CN",
3277
- "Th 2",
3278
- "Th 3",
3279
- "Th 4",
3280
- "Th 5",
3281
- "Th 6",
3282
- "Th 7"
3283
- ],
3284
- "narrow": [
3285
- "CN",
3286
- "T2",
3287
- "T3",
3288
- "T4",
3289
- "T5",
3290
- "T6",
3291
- "T7"
3292
- ],
3293
- "short": [
3294
- "CN",
3295
- "T2",
3296
- "T3",
3297
- "T4",
3298
- "T5",
3299
- "T6",
3300
- "T7"
3301
- ],
3302
- "wide": [
3303
- "Chủ Nhật",
3304
- "Thứ Hai",
3305
- "Thứ Ba",
3306
- "Thứ Tư",
3307
- "Thứ Năm",
3308
- "Thứ Sáu",
3309
- "Thứ Bảy"
3310
- ]
3311
- }
3312
- },
3313
- "quarters": {
3314
- "format": {
3315
- "abbreviated": [
3316
- "Q1",
3317
- "Q2",
3318
- "Q3",
3319
- "Q4"
3320
- ],
3321
- "narrow": [
3322
- "1",
3323
- "2",
3324
- "3",
3325
- "4"
3326
- ],
3327
- "wide": [
3328
- "Quý 1",
3329
- "Quý 2",
3330
- "Quý 3",
3331
- "Quý 4"
3332
- ]
3333
- },
3334
- "stand-alone": {
3335
- "abbreviated": [
3336
- "Q1",
3337
- "Q2",
3338
- "Q3",
3339
- "Q4"
3340
- ],
3341
- "narrow": [
3342
- "1",
3343
- "2",
3344
- "3",
3345
- "4"
3346
- ],
3347
- "wide": [
3348
- "quý 1",
3349
- "quý 2",
3350
- "quý 3",
3351
- "quý 4"
3352
- ]
3353
- }
3354
- },
3355
- "dayPeriods": {
3356
- "format": {
3357
- "abbreviated": [
3358
- "SA",
3359
- "CH"
3360
- ],
3361
- "narrow": [
3362
- "s",
3363
- "c"
3364
- ],
3365
- "wide": [
3366
- "SA",
3367
- "CH"
3368
- ]
3369
- },
3370
- "stand-alone": {
3371
- "abbreviated": [
3372
- "SA",
3373
- "CH"
3374
- ],
3375
- "narrow": [
3376
- "SA",
3377
- "CH"
3378
- ],
3379
- "wide": [
3380
- "SA",
3381
- "CH"
3382
- ]
3383
- }
3384
- },
3385
- "era-wide": {
3386
- "0": "BE"
3387
- },
3388
- "era-abbreviated": {
3389
- "0": "BE"
3390
- },
3391
- "era-narrow": {
3392
- "0": "BE"
3393
- }
3394
- },
3395
- "dateFields": {
3396
- "era": {
3397
- "displayName": "thời đại"
3398
- },
3399
- "year-wide": {
3400
- "displayName": "Năm",
3401
- "relative-type--1": "năm ngoái",
3402
- "relative-type-0": "năm nay",
3403
- "relative-type-1": "năm sau",
3404
- "relativeTime-type-future": {
3405
- "relativeTimePattern-count-other": "sau {0} năm nữa"
3406
- },
3407
- "relativeTime-type-past": {
3408
- "relativeTimePattern-count-other": "{0} năm trước"
3409
- }
3410
- },
3411
- "year-short": {
3412
- "displayName": "Năm",
3413
- "relative-type--1": "năm ngoái",
3414
- "relative-type-0": "năm nay",
3415
- "relative-type-1": "năm sau",
3416
- "relativeTime-type-future": {
3417
- "relativeTimePattern-count-other": "sau {0} năm nữa"
3418
- },
3419
- "relativeTime-type-past": {
3420
- "relativeTimePattern-count-other": "{0} năm trước"
3421
- }
3422
- },
3423
- "year-narrow": {
3424
- "displayName": "Năm",
3425
- "relative-type--1": "năm ngoái",
3426
- "relative-type-0": "năm nay",
3427
- "relative-type-1": "năm sau",
3428
- "relativeTime-type-future": {
3429
- "relativeTimePattern-count-other": "sau {0} năm nữa"
3430
- },
3431
- "relativeTime-type-past": {
3432
- "relativeTimePattern-count-other": "{0} năm trước"
3433
- }
3434
- },
3435
- "quarter-wide": {
3436
- "displayName": "Quý",
3437
- "relative-type--1": "quý trước",
3438
- "relative-type-0": "quý này",
3439
- "relative-type-1": "quý sau",
3440
- "relativeTime-type-future": {
3441
- "relativeTimePattern-count-other": "sau {0} quý nữa"
3442
- },
3443
- "relativeTime-type-past": {
3444
- "relativeTimePattern-count-other": "{0} quý trước"
3445
- }
3446
- },
3447
- "quarter-short": {
3448
- "displayName": "Quý",
3449
- "relative-type--1": "quý trước",
3450
- "relative-type-0": "quý này",
3451
- "relative-type-1": "quý sau",
3452
- "relativeTime-type-future": {
3453
- "relativeTimePattern-count-other": "sau {0} quý nữa"
3454
- },
3455
- "relativeTime-type-past": {
3456
- "relativeTimePattern-count-other": "{0} quý trước"
3457
- }
3458
- },
3459
- "quarter-narrow": {
3460
- "displayName": "Quý",
3461
- "relative-type--1": "quý trước",
3462
- "relative-type-0": "quý này",
3463
- "relative-type-1": "quý sau",
3464
- "relativeTime-type-future": {
3465
- "relativeTimePattern-count-other": "sau {0} quý nữa"
3466
- },
3467
- "relativeTime-type-past": {
3468
- "relativeTimePattern-count-other": "{0} quý trước"
3469
- }
3470
- },
3471
- "month-wide": {
3472
- "displayName": "Tháng",
3473
- "relative-type--1": "tháng trước",
3474
- "relative-type-0": "tháng này",
3475
- "relative-type-1": "tháng sau",
3476
- "relativeTime-type-future": {
3477
- "relativeTimePattern-count-other": "sau {0} tháng nữa"
3478
- },
3479
- "relativeTime-type-past": {
3480
- "relativeTimePattern-count-other": "{0} tháng trước"
3481
- }
3482
- },
3483
- "month-short": {
3484
- "displayName": "Tháng",
3485
- "relative-type--1": "tháng trước",
3486
- "relative-type-0": "tháng này",
3487
- "relative-type-1": "tháng sau",
3488
- "relativeTime-type-future": {
3489
- "relativeTimePattern-count-other": "sau {0} tháng nữa"
3490
- },
3491
- "relativeTime-type-past": {
3492
- "relativeTimePattern-count-other": "{0} tháng trước"
3493
- }
3494
- },
3495
- "month-narrow": {
3496
- "displayName": "Tháng",
3497
- "relative-type--1": "tháng trước",
3498
- "relative-type-0": "tháng này",
3499
- "relative-type-1": "tháng sau",
3500
- "relativeTime-type-future": {
3501
- "relativeTimePattern-count-other": "sau {0} tháng nữa"
3502
- },
3503
- "relativeTime-type-past": {
3504
- "relativeTimePattern-count-other": "{0} tháng trước"
3505
- }
3506
- },
3507
- "week-wide": {
3508
- "displayName": "Tuần",
3509
- "relative-type--1": "tuần trước",
3510
- "relative-type-0": "tuần này",
3511
- "relative-type-1": "tuần sau",
3512
- "relativeTime-type-future": {
3513
- "relativeTimePattern-count-other": "sau {0} tuần nữa"
3514
- },
3515
- "relativeTime-type-past": {
3516
- "relativeTimePattern-count-other": "{0} tuần trước"
3517
- },
3518
- "relativePeriod": "tuần {0}"
3519
- },
3520
- "week-short": {
3521
- "displayName": "Tuần",
3522
- "relative-type--1": "tuần trước",
3523
- "relative-type-0": "tuần này",
3524
- "relative-type-1": "tuần sau",
3525
- "relativeTime-type-future": {
3526
- "relativeTimePattern-count-other": "sau {0} tuần nữa"
3527
- },
3528
- "relativeTime-type-past": {
3529
- "relativeTimePattern-count-other": "{0} tuần trước"
3530
- },
3531
- "relativePeriod": "tuần {0}"
3532
- },
3533
- "week-narrow": {
3534
- "displayName": "Tuần",
3535
- "relative-type--1": "tuần trước",
3536
- "relative-type-0": "tuần này",
3537
- "relative-type-1": "tuần sau",
3538
- "relativeTime-type-future": {
3539
- "relativeTimePattern-count-other": "sau {0} tuần nữa"
3540
- },
3541
- "relativeTime-type-past": {
3542
- "relativeTimePattern-count-other": "{0} tuần trước"
3543
- },
3544
- "relativePeriod": "tuần {0}"
3545
- },
3546
- "day-wide": {
3547
- "displayName": "Ngày",
3548
- "relative-type--2": "Hôm kia",
3549
- "relative-type--1": "Hôm qua",
3550
- "relative-type-0": "Hôm nay",
3551
- "relative-type-1": "Ngày mai",
3552
- "relative-type-2": "Ngày kia",
3553
- "relativeTime-type-future": {
3554
- "relativeTimePattern-count-other": "sau {0} ngày nữa"
3555
- },
3556
- "relativeTime-type-past": {
3557
- "relativeTimePattern-count-other": "{0} ngày trước"
3558
- }
3559
- },
3560
- "day-short": {
3561
- "displayName": "Ngày",
3562
- "relative-type--2": "Hôm kia",
3563
- "relative-type--1": "Hôm qua",
3564
- "relative-type-0": "Hôm nay",
3565
- "relative-type-1": "Ngày mai",
3566
- "relative-type-2": "Ngày kia",
3567
- "relativeTime-type-future": {
3568
- "relativeTimePattern-count-other": "sau {0} ngày nữa"
3569
- },
3570
- "relativeTime-type-past": {
3571
- "relativeTimePattern-count-other": "{0} ngày trước"
3572
- }
3573
- },
3574
- "day-narrow": {
3575
- "displayName": "Ngày",
3576
- "relative-type--2": "Hôm kia",
3577
- "relative-type--1": "Hôm qua",
3578
- "relative-type-0": "Hôm nay",
3579
- "relative-type-1": "Ngày mai",
3580
- "relative-type-2": "Ngày kia",
3581
- "relativeTime-type-future": {
3582
- "relativeTimePattern-count-other": "sau {0} ngày nữa"
3583
- },
3584
- "relativeTime-type-past": {
3585
- "relativeTimePattern-count-other": "{0} ngày trước"
3586
- }
3587
- },
3588
- "weekday": {
3589
- "displayName": "ngày trong tuần"
3590
- },
3591
- "hour-wide": {
3592
- "displayName": "Giờ",
3593
- "relative-type-0": "giờ này",
3594
- "relativeTime-type-future": {
3595
- "relativeTimePattern-count-other": "sau {0} giờ nữa"
3596
- },
3597
- "relativeTime-type-past": {
3598
- "relativeTimePattern-count-other": "{0} giờ trước"
3599
- }
3600
- },
3601
- "hour-short": {
3602
- "displayName": "Giờ",
3603
- "relative-type-0": "giờ này",
3604
- "relativeTime-type-future": {
3605
- "relativeTimePattern-count-other": "sau {0} giờ nữa"
3606
- },
3607
- "relativeTime-type-past": {
3608
- "relativeTimePattern-count-other": "{0} giờ trước"
3609
- }
3610
- },
3611
- "hour-narrow": {
3612
- "displayName": "Giờ",
3613
- "relative-type-0": "giờ này",
3614
- "relativeTime-type-future": {
3615
- "relativeTimePattern-count-other": "sau {0} giờ nữa"
3616
- },
3617
- "relativeTime-type-past": {
3618
- "relativeTimePattern-count-other": "{0} giờ trước"
3619
- }
3620
- },
3621
- "minute-wide": {
3622
- "displayName": "Phút",
3623
- "relative-type-0": "phút này",
3624
- "relativeTime-type-future": {
3625
- "relativeTimePattern-count-other": "sau {0} phút nữa"
3626
- },
3627
- "relativeTime-type-past": {
3628
- "relativeTimePattern-count-other": "{0} phút trước"
3629
- }
3630
- },
3631
- "minute-short": {
3632
- "displayName": "Phút",
3633
- "relative-type-0": "phút này",
3634
- "relativeTime-type-future": {
3635
- "relativeTimePattern-count-other": "sau {0} phút nữa"
3636
- },
3637
- "relativeTime-type-past": {
3638
- "relativeTimePattern-count-other": "{0} phút trước"
3639
- }
3640
- },
3641
- "minute-narrow": {
3642
- "displayName": "Phút",
3643
- "relative-type-0": "phút này",
3644
- "relativeTime-type-future": {
3645
- "relativeTimePattern-count-other": "sau {0} phút nữa"
3646
- },
3647
- "relativeTime-type-past": {
3648
- "relativeTimePattern-count-other": "{0} phút trước"
3649
- }
3650
- },
3651
- "second-wide": {
3652
- "displayName": "Giây",
3653
- "relative-type-0": "bây giờ",
3654
- "relativeTime-type-future": {
3655
- "relativeTimePattern-count-other": "sau {0} giây nữa"
3656
- },
3657
- "relativeTime-type-past": {
3658
- "relativeTimePattern-count-other": "{0} giây trước"
3659
- }
3660
- },
3661
- "second-short": {
3662
- "displayName": "Giây",
3663
- "relative-type-0": "bây giờ",
3664
- "relativeTime-type-future": {
3665
- "relativeTimePattern-count-other": "sau {0} giây nữa"
3666
- },
3667
- "relativeTime-type-past": {
3668
- "relativeTimePattern-count-other": "{0} giây trước"
3669
- }
3670
- },
3671
- "second-narrow": {
3672
- "displayName": "Giây",
3673
- "relative-type-0": "bây giờ",
3674
- "relativeTime-type-future": {
3675
- "relativeTimePattern-count-other": "sau {0} giây nữa"
3676
- },
3677
- "relativeTime-type-past": {
3678
- "relativeTimePattern-count-other": "{0} giây trước"
3679
- }
3680
- },
3681
- "zone": {
3682
- "displayName": "Múi giờ"
3683
- }
3684
- },
3685
- "decimalFormat": {
3686
- "standard": "#,##0.###"
3687
- },
3688
- "decimalFormat-long": {
3689
- "1000-other": "0 nghìn",
3690
- "10000-other": "00 nghìn",
3691
- "100000-other": "000 nghìn",
3692
- "1000000-other": "0 triệu",
3693
- "10000000-other": "00 triệu",
3694
- "100000000-other": "000 triệu",
3695
- "1000000000-other": "0 tỷ",
3696
- "10000000000-other": "00 tỷ",
3697
- "100000000000-other": "000 tỷ",
3698
- "1000000000000-other": "0 nghìn tỷ",
3699
- "10000000000000-other": "00 nghìn tỷ",
3700
- "100000000000000-other": "000 nghìn tỷ"
3701
- },
3702
- "decimalFormat-short": {
3703
- "1000-other": "0 N",
3704
- "10000-other": "00 N",
3705
- "100000-other": "000 N",
3706
- "1000000-other": "0 Tr",
3707
- "10000000-other": "00 Tr",
3708
- "100000000-other": "000 Tr",
3709
- "1000000000-other": "0 T",
3710
- "10000000000-other": "00 T",
3711
- "100000000000-other": "000 T",
3712
- "1000000000000-other": "0 NT",
3713
- "10000000000000-other": "00 NT",
3714
- "100000000000000-other": "000 NT"
3715
- },
3716
- "scientificFormat": {
3717
- "standard": "#E0"
3718
- },
3719
- "percentFormat": {
3720
- "standard": "#,##0%"
3721
- },
3722
- "currencyFormat": {
3723
- "standard": "#,##0.00 ¤",
3724
- "accounting": "#,##0.00 ¤",
3725
- "currencySpacing": {
3726
- "beforeCurrency": {
3727
- "currencyMatch": "[:^S:]",
3728
- "surroundingMatch": "[:digit:]",
3729
- "insertBetween": " "
3730
- },
3731
- "afterCurrency": {
3732
- "currencyMatch": "[:^S:]",
3733
- "surroundingMatch": "[:digit:]",
3734
- "insertBetween": " "
3735
- }
3736
- }
3737
- },
3738
- "currencyFormat-short": {
3739
- "1000-other": "0 N ¤",
3740
- "10000-other": "00 N ¤",
3741
- "100000-other": "000 N ¤",
3742
- "1000000-other": "0 Tr ¤",
3743
- "10000000-other": "00 Tr ¤",
3744
- "100000000-other": "000 Tr ¤",
3745
- "1000000000-other": "0 T ¤",
3746
- "10000000000-other": "00 T ¤",
3747
- "100000000000-other": "000 T ¤",
3748
- "1000000000000-other": "0 NT ¤",
3749
- "10000000000000-other": "00 NT ¤",
3750
- "100000000000000-other": "000 NT ¤"
3751
- },
3752
- "symbols-latn-decimal": ",",
3753
- "symbols-latn-group": ".",
3754
- "symbols-latn-list": ";",
3755
- "symbols-latn-percentSign": "%",
3756
- "symbols-latn-plusSign": "+",
3757
- "symbols-latn-minusSign": "-",
3758
- "symbols-latn-exponential": "E",
3759
- "symbols-latn-superscriptingExponent": "×",
3760
- "symbols-latn-perMille": "‰",
3761
- "symbols-latn-infinity": "∞",
3762
- "symbols-latn-nan": "NaN",
3763
- "symbols-latn-timeSeparator": ":",
3764
- "currencySymbols": {
3765
- "AUD": "AU$",
3766
- "BRL": "R$",
3767
- "CAD": "CA$",
3768
- "CNY": "CN¥",
3769
- "EUR": "€",
3770
- "GBP": "£",
3771
- "HKD": "HK$",
3772
- "ILS": "₪",
3773
- "INR": "₹",
3774
- "JPY": "JP¥",
3775
- "KRW": "₩",
3776
- "MXN": "MX$",
3777
- "NZD": "NZ$",
3778
- "THB": "฿",
3779
- "TWD": "NT$",
3780
- "USD": "US$",
3781
- "VND": "₫",
3782
- "XAF": "FCFA",
3783
- "XCD": "EC$",
3784
- "XOF": "CFA",
3785
- "XPF": "CFPF"
3786
- },
3787
- "rtl": false,
3788
- "listPattern-standard-wide": {
3789
- "2": "{0} và {1}",
3790
- "start": "{0}, {1}",
3791
- "middle": "{0}, {1}",
3792
- "end": "{0} và {1}"
3793
- },
3794
- "listPattern-or-wide": {
3795
- "2": "{0} hoặc {1}",
3796
- "start": "{0}, {1}",
3797
- "middle": "{0}, {1}",
3798
- "end": "{0} hoặc {1}"
3799
- },
3800
- "listPattern-or-short": {
3801
- "2": "{0} hoặc {1}",
3802
- "start": "{0}, {1}",
3803
- "middle": "{0}, {1}",
3804
- "end": "{0} hoặc {1}"
3805
- },
3806
- "listPattern-standard-short": {
3807
- "2": "{0} và {1}",
3808
- "start": "{0}, {1}",
3809
- "middle": "{0}, {1}",
3810
- "end": "{0} và {1}"
3811
- },
3812
- "units": {
3813
- "short": {
3814
- "per": {
3815
- "compoundUnitPattern": "{0}/{1}"
3816
- },
3817
- "acceleration-g-force": {
3818
- "displayName": "lực g",
3819
- "unitPattern-count-other": "{0} G"
3820
- },
3821
- "acceleration-meter-per-second-squared": {
3822
- "displayName": "m/s²",
3823
- "unitPattern-count-other": "{0} m/s²"
3824
- },
3825
- "angle-revolution": {
3826
- "displayName": "rev",
3827
- "unitPattern-count-other": "{0} rev"
3828
- },
3829
- "angle-radian": {
3830
- "displayName": "rad",
3831
- "unitPattern-count-other": "{0} rad"
3832
- },
3833
- "angle-degree": {
3834
- "displayName": "độ",
3835
- "unitPattern-count-other": "{0}°"
3836
- },
3837
- "angle-arc-minute": {
3838
- "displayName": "phút",
3839
- "unitPattern-count-other": "{0}′"
3840
- },
3841
- "angle-arc-second": {
3842
- "displayName": "giây",
3843
- "unitPattern-count-other": "{0}″"
3844
- },
3845
- "area-square-kilometer": {
3846
- "displayName": "km²",
3847
- "unitPattern-count-other": "{0} km²",
3848
- "perUnitPattern": "{0}/km²"
3849
- },
3850
- "area-hectare": {
3851
- "displayName": "ha",
3852
- "unitPattern-count-other": "{0} ha"
3853
- },
3854
- "area-square-meter": {
3855
- "displayName": "m²",
3856
- "unitPattern-count-other": "{0} m²",
3857
- "perUnitPattern": "{0}/m²"
3858
- },
3859
- "area-square-centimeter": {
3860
- "displayName": "cm²",
3861
- "unitPattern-count-other": "{0} cm²",
3862
- "perUnitPattern": "{0}/cm²"
3863
- },
3864
- "area-square-mile": {
3865
- "displayName": "mi²",
3866
- "unitPattern-count-other": "{0} mi²",
3867
- "perUnitPattern": "{0}/mi²"
3868
- },
3869
- "area-acre": {
3870
- "displayName": "mẫu",
3871
- "unitPattern-count-other": "{0} mẫu"
3872
- },
3873
- "area-square-yard": {
3874
- "displayName": "yd²",
3875
- "unitPattern-count-other": "{0} yd²"
3876
- },
3877
- "area-square-foot": {
3878
- "displayName": "ft²",
3879
- "unitPattern-count-other": "{0} ft²"
3880
- },
3881
- "area-square-inch": {
3882
- "displayName": "in²",
3883
- "unitPattern-count-other": "{0} in²",
3884
- "perUnitPattern": "{0}/in²"
3885
- },
3886
- "concentr-karat": {
3887
- "displayName": "kt",
3888
- "unitPattern-count-other": "{0} kt"
3889
- },
3890
- "concentr-milligram-per-deciliter": {
3891
- "displayName": "mg/dL",
3892
- "unitPattern-count-other": "{0} mg/dL"
3893
- },
3894
- "concentr-millimole-per-liter": {
3895
- "displayName": "mmol/L",
3896
- "unitPattern-count-other": "{0} mmol/L"
3897
- },
3898
- "concentr-part-per-million": {
3899
- "displayName": "ppm",
3900
- "unitPattern-count-other": "{0} ppm"
3901
- },
3902
- "concentr-percent": {
3903
- "displayName": "%",
3904
- "unitPattern-count-other": "{0}%"
3905
- },
3906
- "concentr-permille": {
3907
- "displayName": "‰",
3908
- "unitPattern-count-other": "{0}‰"
3909
- },
3910
- "consumption-liter-per-kilometer": {
3911
- "displayName": "l/km",
3912
- "unitPattern-count-other": "{0} l/km"
3913
- },
3914
- "consumption-liter-per-100kilometers": {
3915
- "displayName": "L/100km",
3916
- "unitPattern-count-other": "{0} L/100km"
3917
- },
3918
- "consumption-mile-per-gallon": {
3919
- "displayName": "mpg",
3920
- "unitPattern-count-other": "{0} mpg"
3921
- },
3922
- "consumption-mile-per-gallon-imperial": {
3923
- "displayName": "mpg Imp.",
3924
- "unitPattern-count-other": "{0} mpg Imp."
3925
- },
3926
- "digital-petabyte": {
3927
- "displayName": "PByte",
3928
- "unitPattern-count-other": "{0} PB"
3929
- },
3930
- "digital-terabyte": {
3931
- "displayName": "TB",
3932
- "unitPattern-count-other": "{0} TB"
3933
- },
3934
- "digital-terabit": {
3935
- "displayName": "Tb",
3936
- "unitPattern-count-other": "{0} Tb"
3937
- },
3938
- "digital-gigabyte": {
3939
- "displayName": "GB",
3940
- "unitPattern-count-other": "{0} GB"
3941
- },
3942
- "digital-gigabit": {
3943
- "displayName": "Gb",
3944
- "unitPattern-count-other": "{0} Gb"
3945
- },
3946
- "digital-megabyte": {
3947
- "displayName": "MB",
3948
- "unitPattern-count-other": "{0} MB"
3949
- },
3950
- "digital-megabit": {
3951
- "displayName": "Mb",
3952
- "unitPattern-count-other": "{0} Mb"
3953
- },
3954
- "digital-kilobyte": {
3955
- "displayName": "kB",
3956
- "unitPattern-count-other": "{0} kB"
3957
- },
3958
- "digital-kilobit": {
3959
- "displayName": "kb",
3960
- "unitPattern-count-other": "{0} kb"
3961
- },
3962
- "digital-byte": {
3963
- "displayName": "byte",
3964
- "unitPattern-count-other": "{0} byte"
3965
- },
3966
- "digital-bit": {
3967
- "displayName": "bit",
3968
- "unitPattern-count-other": "{0} bit"
3969
- },
3970
- "duration-century": {
3971
- "displayName": "thế kỷ",
3972
- "unitPattern-count-other": "{0} thế kỷ"
3973
- },
3974
- "duration-year": {
3975
- "displayName": "năm",
3976
- "unitPattern-count-other": "{0} năm",
3977
- "perUnitPattern": "{0}/năm"
3978
- },
3979
- "duration-month": {
3980
- "displayName": "tháng",
3981
- "unitPattern-count-other": "{0} tháng",
3982
- "perUnitPattern": "{0}/tháng"
3983
- },
3984
- "duration-week": {
3985
- "displayName": "tuần",
3986
- "unitPattern-count-other": "{0} tuần",
3987
- "perUnitPattern": "{0}/tuần"
3988
- },
3989
- "duration-day": {
3990
- "displayName": "ngày",
3991
- "unitPattern-count-other": "{0} ngày",
3992
- "perUnitPattern": "{0}/ngày"
3993
- },
3994
- "duration-hour": {
3995
- "displayName": "giờ",
3996
- "unitPattern-count-other": "{0} giờ",
3997
- "perUnitPattern": "{0}/giờ"
3998
- },
3999
- "duration-minute": {
4000
- "displayName": "phút",
4001
- "unitPattern-count-other": "{0} phút",
4002
- "perUnitPattern": "{0}/phút"
4003
- },
4004
- "duration-second": {
4005
- "displayName": "giây",
4006
- "unitPattern-count-other": "{0} giây",
4007
- "perUnitPattern": "{0}/giây"
4008
- },
4009
- "duration-millisecond": {
4010
- "displayName": "mili giây",
4011
- "unitPattern-count-other": "{0} mili giây"
4012
- },
4013
- "duration-microsecond": {
4014
- "displayName": "μs",
4015
- "unitPattern-count-other": "{0} μs"
4016
- },
4017
- "duration-nanosecond": {
4018
- "displayName": "nano giây",
4019
- "unitPattern-count-other": "{0} nano giây"
4020
- },
4021
- "electric-ampere": {
4022
- "displayName": "A",
4023
- "unitPattern-count-other": "{0} A"
4024
- },
4025
- "electric-milliampere": {
4026
- "displayName": "mA",
4027
- "unitPattern-count-other": "{0} mA"
4028
- },
4029
- "electric-ohm": {
4030
- "displayName": "Ω",
4031
- "unitPattern-count-other": "{0} Ω"
4032
- },
4033
- "electric-volt": {
4034
- "displayName": "v",
4035
- "unitPattern-count-other": "{0} V"
4036
- },
4037
- "energy-kilocalorie": {
4038
- "displayName": "kcal",
4039
- "unitPattern-count-other": "{0} kcal"
4040
- },
4041
- "energy-calorie": {
4042
- "displayName": "cal",
4043
- "unitPattern-count-other": "{0} cal"
4044
- },
4045
- "energy-foodcalorie": {
4046
- "displayName": "Cal",
4047
- "unitPattern-count-other": "{0} Cal"
4048
- },
4049
- "energy-kilojoule": {
4050
- "displayName": "kJ",
4051
- "unitPattern-count-other": "{0} kJ"
4052
- },
4053
- "energy-joule": {
4054
- "displayName": "J",
4055
- "unitPattern-count-other": "{0} J"
4056
- },
4057
- "energy-kilowatt-hour": {
4058
- "displayName": "kWh",
4059
- "unitPattern-count-other": "{0} kWh"
4060
- },
4061
- "frequency-gigahertz": {
4062
- "displayName": "GHz",
4063
- "unitPattern-count-other": "{0} GHz"
4064
- },
4065
- "frequency-megahertz": {
4066
- "displayName": "MHz",
4067
- "unitPattern-count-other": "{0} MHz"
4068
- },
4069
- "frequency-kilohertz": {
4070
- "displayName": "kHz",
4071
- "unitPattern-count-other": "{0} kHz"
4072
- },
4073
- "frequency-hertz": {
4074
- "displayName": "Hz",
4075
- "unitPattern-count-other": "{0} Hz"
4076
- },
4077
- "length-kilometer": {
4078
- "displayName": "km",
4079
- "unitPattern-count-other": "{0} km",
4080
- "perUnitPattern": "{0}/km"
4081
- },
4082
- "length-meter": {
4083
- "displayName": "m",
4084
- "unitPattern-count-other": "{0} m",
4085
- "perUnitPattern": "{0}/m"
4086
- },
4087
- "length-decimeter": {
4088
- "displayName": "dm",
4089
- "unitPattern-count-other": "{0} dm"
4090
- },
4091
- "length-centimeter": {
4092
- "displayName": "cm",
4093
- "unitPattern-count-other": "{0} cm",
4094
- "perUnitPattern": "{0}/cm"
4095
- },
4096
- "length-millimeter": {
4097
- "displayName": "mm",
4098
- "unitPattern-count-other": "{0} mm"
4099
- },
4100
- "length-micrometer": {
4101
- "displayName": "µm",
4102
- "unitPattern-count-other": "{0} µm"
4103
- },
4104
- "length-nanometer": {
4105
- "displayName": "nm",
4106
- "unitPattern-count-other": "{0} nm"
4107
- },
4108
- "length-picometer": {
4109
- "displayName": "pm",
4110
- "unitPattern-count-other": "{0} pm"
4111
- },
4112
- "length-mile": {
4113
- "displayName": "dặm",
4114
- "unitPattern-count-other": "{0} dặm"
4115
- },
4116
- "length-yard": {
4117
- "displayName": "yd",
4118
- "unitPattern-count-other": "{0} yd"
4119
- },
4120
- "length-foot": {
4121
- "displayName": "ft",
4122
- "unitPattern-count-other": "{0} ft",
4123
- "perUnitPattern": "{0}/ft"
4124
- },
4125
- "length-inch": {
4126
- "displayName": "inch",
4127
- "unitPattern-count-other": "{0} inch",
4128
- "perUnitPattern": "{0}/in"
4129
- },
4130
- "length-parsec": {
4131
- "displayName": "pc",
4132
- "unitPattern-count-other": "{0} pc"
4133
- },
4134
- "length-light-year": {
4135
- "displayName": "ly",
4136
- "unitPattern-count-other": "{0} ly"
4137
- },
4138
- "length-astronomical-unit": {
4139
- "displayName": "au",
4140
- "unitPattern-count-other": "{0} au"
4141
- },
4142
- "length-furlong": {
4143
- "displayName": "fur",
4144
- "unitPattern-count-other": "{0} fur"
4145
- },
4146
- "length-fathom": {
4147
- "displayName": "fm",
4148
- "unitPattern-count-other": "{0} fth"
4149
- },
4150
- "length-nautical-mile": {
4151
- "displayName": "nmi",
4152
- "unitPattern-count-other": "{0} nmi"
4153
- },
4154
- "length-mile-scandinavian": {
4155
- "displayName": "smi",
4156
- "unitPattern-count-other": "{0} smi"
4157
- },
4158
- "length-point": {
4159
- "displayName": "đ",
4160
- "unitPattern-count-other": "{0} đ"
4161
- },
4162
- "light-lux": {
4163
- "displayName": "lx",
4164
- "unitPattern-count-other": "{0} lx"
4165
- },
4166
- "mass-metric-ton": {
4167
- "displayName": "t",
4168
- "unitPattern-count-other": "{0} t"
4169
- },
4170
- "mass-kilogram": {
4171
- "displayName": "kg",
4172
- "unitPattern-count-other": "{0} kg",
4173
- "perUnitPattern": "{0}/kg"
4174
- },
4175
- "mass-gram": {
4176
- "displayName": "g",
4177
- "unitPattern-count-other": "{0} g",
4178
- "perUnitPattern": "{0}/g"
4179
- },
4180
- "mass-milligram": {
4181
- "displayName": "mg",
4182
- "unitPattern-count-other": "{0} mg"
4183
- },
4184
- "mass-microgram": {
4185
- "displayName": "µg",
4186
- "unitPattern-count-other": "{0} µg"
4187
- },
4188
- "mass-ton": {
4189
- "displayName": "tn",
4190
- "unitPattern-count-other": "{0} tn"
4191
- },
4192
- "mass-stone": {
4193
- "displayName": "st",
4194
- "unitPattern-count-other": "{0} st"
4195
- },
4196
- "mass-pound": {
4197
- "displayName": "pao",
4198
- "unitPattern-count-other": "{0} lb",
4199
- "perUnitPattern": "{0}/lb"
4200
- },
4201
- "mass-ounce": {
4202
- "displayName": "oz",
4203
- "unitPattern-count-other": "{0} oz",
4204
- "perUnitPattern": "{0}/oz"
4205
- },
4206
- "mass-ounce-troy": {
4207
- "displayName": "oz t",
4208
- "unitPattern-count-other": "{0} oz t"
4209
- },
4210
- "mass-carat": {
4211
- "displayName": "CD",
4212
- "unitPattern-count-other": "{0} CD"
4213
- },
4214
- "power-gigawatt": {
4215
- "displayName": "GW",
4216
- "unitPattern-count-other": "{0} GW"
4217
- },
4218
- "power-megawatt": {
4219
- "displayName": "MW",
4220
- "unitPattern-count-other": "{0} MW"
4221
- },
4222
- "power-kilowatt": {
4223
- "displayName": "kW",
4224
- "unitPattern-count-other": "{0} kW"
4225
- },
4226
- "power-watt": {
4227
- "displayName": "W",
4228
- "unitPattern-count-other": "{0} W"
4229
- },
4230
- "power-milliwatt": {
4231
- "displayName": "mW",
4232
- "unitPattern-count-other": "{0} mW"
4233
- },
4234
- "power-horsepower": {
4235
- "displayName": "hp",
4236
- "unitPattern-count-other": "{0} hp"
4237
- },
4238
- "pressure-hectopascal": {
4239
- "displayName": "hPa",
4240
- "unitPattern-count-other": "{0} hPa"
4241
- },
4242
- "pressure-millimeter-of-mercury": {
4243
- "displayName": "mm Hg",
4244
- "unitPattern-count-other": "{0} mm Hg"
4245
- },
4246
- "pressure-pound-per-square-inch": {
4247
- "displayName": "psi",
4248
- "unitPattern-count-other": "{0} psi"
4249
- },
4250
- "pressure-inch-hg": {
4251
- "displayName": "inHg",
4252
- "unitPattern-count-other": "{0} inHg"
4253
- },
4254
- "pressure-millibar": {
4255
- "displayName": "mbar",
4256
- "unitPattern-count-other": "{0} mbar"
4257
- },
4258
- "pressure-atmosphere": {
4259
- "displayName": "atm",
4260
- "unitPattern-count-other": "{0} atm"
4261
- },
4262
- "speed-kilometer-per-hour": {
4263
- "displayName": "km/h",
4264
- "unitPattern-count-other": "{0} km/h"
4265
- },
4266
- "speed-meter-per-second": {
4267
- "displayName": "m/s",
4268
- "unitPattern-count-other": "{0} m/s"
4269
- },
4270
- "speed-mile-per-hour": {
4271
- "displayName": "mi/h",
4272
- "unitPattern-count-other": "{0} mi/h"
4273
- },
4274
- "speed-knot": {
4275
- "displayName": "kn",
4276
- "unitPattern-count-other": "{0} kn"
4277
- },
4278
- "temperature-generic": {
4279
- "displayName": "°",
4280
- "unitPattern-count-other": "{0}°"
4281
- },
4282
- "temperature-celsius": {
4283
- "displayName": "°C",
4284
- "unitPattern-count-other": "{0}°C"
4285
- },
4286
- "temperature-fahrenheit": {
4287
- "displayName": "°F",
4288
- "unitPattern-count-other": "{0}°F"
4289
- },
4290
- "temperature-kelvin": {
4291
- "displayName": "K",
4292
- "unitPattern-count-other": "{0} K"
4293
- },
4294
- "volume-cubic-kilometer": {
4295
- "displayName": "km³",
4296
- "unitPattern-count-other": "{0} km³"
4297
- },
4298
- "volume-cubic-meter": {
4299
- "displayName": "m³",
4300
- "unitPattern-count-other": "{0} m³",
4301
- "perUnitPattern": "{0}/m³"
4302
- },
4303
- "volume-cubic-centimeter": {
4304
- "displayName": "cm³",
4305
- "unitPattern-count-other": "{0} cm³",
4306
- "perUnitPattern": "{0}/cm³"
4307
- },
4308
- "volume-cubic-mile": {
4309
- "displayName": "mi³",
4310
- "unitPattern-count-other": "{0} mi³"
4311
- },
4312
- "volume-cubic-yard": {
4313
- "displayName": "yd³",
4314
- "unitPattern-count-other": "{0} yd³"
4315
- },
4316
- "volume-cubic-foot": {
4317
- "displayName": "ft³",
4318
- "unitPattern-count-other": "{0} ft³"
4319
- },
4320
- "volume-cubic-inch": {
4321
- "displayName": "in³",
4322
- "unitPattern-count-other": "{0} in³"
4323
- },
4324
- "volume-megaliter": {
4325
- "displayName": "ML",
4326
- "unitPattern-count-other": "{0} ML"
4327
- },
4328
- "volume-hectoliter": {
4329
- "displayName": "hL",
4330
- "unitPattern-count-other": "{0} hL"
4331
- },
4332
- "volume-liter": {
4333
- "displayName": "l",
4334
- "unitPattern-count-other": "{0} L",
4335
- "perUnitPattern": "{0}/l"
4336
- },
4337
- "volume-deciliter": {
4338
- "displayName": "dL",
4339
- "unitPattern-count-other": "{0} dL"
4340
- },
4341
- "volume-centiliter": {
4342
- "displayName": "cL",
4343
- "unitPattern-count-other": "{0} cL"
4344
- },
4345
- "volume-milliliter": {
4346
- "displayName": "mL",
4347
- "unitPattern-count-other": "{0} mL"
4348
- },
4349
- "volume-pint-metric": {
4350
- "displayName": "mpt",
4351
- "unitPattern-count-other": "{0} mpt"
4352
- },
4353
- "volume-cup-metric": {
4354
- "displayName": "mcup",
4355
- "unitPattern-count-other": "{0} mc"
4356
- },
4357
- "volume-acre-foot": {
4358
- "displayName": "ac ft",
4359
- "unitPattern-count-other": "{0} ac ft"
4360
- },
4361
- "volume-bushel": {
4362
- "displayName": "bu",
4363
- "unitPattern-count-other": "{0} bu"
4364
- },
4365
- "volume-gallon": {
4366
- "displayName": "gal",
4367
- "unitPattern-count-other": "{0} gal",
4368
- "perUnitPattern": "{0}/gal"
4369
- },
4370
- "volume-gallon-imperial": {
4371
- "displayName": "gal Anh",
4372
- "unitPattern-count-other": "{0} gal Anh",
4373
- "perUnitPattern": "{0}/gal Anh"
4374
- },
4375
- "volume-quart": {
4376
- "displayName": "qt",
4377
- "unitPattern-count-other": "{0} qt"
4378
- },
4379
- "volume-pint": {
4380
- "displayName": "pt",
4381
- "unitPattern-count-other": "{0} pt"
4382
- },
4383
- "volume-cup": {
4384
- "displayName": "c",
4385
- "unitPattern-count-other": "{0} c"
4386
- },
4387
- "volume-fluid-ounce": {
4388
- "displayName": "fl oz",
4389
- "unitPattern-count-other": "{0} fl oz"
4390
- },
4391
- "volume-tablespoon": {
4392
- "displayName": "thìa xúp",
4393
- "unitPattern-count-other": "{0} tbsp"
4394
- },
4395
- "volume-teaspoon": {
4396
- "displayName": "tsp",
4397
- "unitPattern-count-other": "{0} tsp"
4398
- },
4399
- "coordinateUnit": {
4400
- "displayName": "hướng",
4401
- "east": "{0}Đ",
4402
- "north": "{0}B",
4403
- "south": "{0}N",
4404
- "west": "{0}T"
4405
- }
4406
- }
4407
- },
4408
- "currencyDigits": {
4409
- "ADP": 0,
4410
- "AFN": 0,
4411
- "ALL": 0,
4412
- "BHD": 3,
4413
- "BIF": 0,
4414
- "BYR": 0,
4415
- "CLF": 4,
4416
- "CLP": 0,
4417
- "DEFAULT": 2,
4418
- "DJF": 0,
4419
- "ESP": 0,
4420
- "GNF": 0,
4421
- "HUF": 0,
4422
- "IQD": 0,
4423
- "IRR": 0,
4424
- "ISK": 0,
4425
- "ITL": 0,
4426
- "JOD": 3,
4427
- "JPY": 0,
4428
- "KMF": 0,
4429
- "KPW": 0,
4430
- "KRW": 0,
4431
- "KWD": 3,
4432
- "LAK": 0,
4433
- "LBP": 0,
4434
- "LUF": 0,
4435
- "LYD": 3,
4436
- "MGA": 0,
4437
- "MGF": 0,
4438
- "MMK": 0,
4439
- "MRO": 0,
4440
- "OMR": 3,
4441
- "PYG": 0,
4442
- "RSD": 0,
4443
- "RWF": 0,
4444
- "SLL": 0,
4445
- "SOS": 0,
4446
- "STD": 0,
4447
- "SYP": 0,
4448
- "TMM": 0,
4449
- "TND": 3,
4450
- "TRL": 0,
4451
- "TWD": 0,
4452
- "UGX": 0,
4453
- "UYI": 0,
4454
- "UYW": 4,
4455
- "VND": 0,
4456
- "VUV": 0,
4457
- "XAF": 0,
4458
- "XOF": 0,
4459
- "XPF": 0,
4460
- "YER": 0,
4461
- "ZMK": 0,
4462
- "ZWD": 0
4463
- },
4464
- "plurals": {},
4465
- "weekData-minDays": 1,
4466
- "weekData-firstDay": 1,
4467
- "weekData-weekendStart": 6,
4468
- "weekData-weekendEnd": 0,
4469
- "timeData": {
4470
- "_allowed": "H h",
4471
- "_preferred": "H"
4472
- },
4473
- "eras-gregorian": {
4474
- "0": {
4475
- "_end": "0-12-31"
4476
- },
4477
- "1": {
4478
- "_start": "1-01-01"
4479
- }
4480
- },
4481
- "eras-islamic": {
4482
- "0": {
4483
- "_start": "622-7-15"
4484
- }
4485
- },
4486
- "eras-persian": {
4487
- "0": {
4488
- "_start": "622-01-01"
4489
- }
4490
- },
4491
- "eras-buddhist": {
4492
- "0": {
4493
- "_start": "-542-01-01"
4494
- }
4495
- },
4496
- "eras-japanese": {
4497
- "232": {
4498
- "_start": "1868-9-8"
4499
- },
4500
- "233": {
4501
- "_start": "1912-7-30"
4502
- },
4503
- "234": {
4504
- "_start": "1926-12-25"
4505
- },
4506
- "235": {
4507
- "_start": "1989-1-8"
4508
- }
4509
- }
4510
- }