@openui5/sap.ui.integration 1.96.2 → 1.98.0

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 (681) hide show
  1. package/.reuse/dep5 +26 -31
  2. package/THIRDPARTY.txt +15 -21
  3. package/package.json +3 -3
  4. package/src/sap/ui/integration/.library +16 -22
  5. package/src/sap/ui/integration/ActionDefinition.js +2 -2
  6. package/src/sap/ui/integration/Designtime.js +2 -2
  7. package/src/sap/ui/integration/Extension.js +2 -2
  8. package/src/sap/ui/integration/Host.js +38 -2
  9. package/src/sap/ui/integration/bindingFeatures/DateRange.js +1 -1
  10. package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -50
  11. package/src/sap/ui/integration/cards/AnalyticalContent.js +8 -9
  12. package/src/sap/ui/integration/cards/AnalyticalContentRenderer.js +1 -1
  13. package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +5 -3
  14. package/src/sap/ui/integration/cards/AnalyticsCloudContentRenderer.js +1 -1
  15. package/src/sap/ui/integration/cards/BaseContent.js +56 -6
  16. package/src/sap/ui/integration/cards/BaseContentRenderer.js +2 -2
  17. package/src/sap/ui/integration/cards/BaseListContent.js +39 -69
  18. package/src/sap/ui/integration/cards/CalendarContent.js +16 -12
  19. package/src/sap/ui/integration/cards/CalendarContentRenderer.js +2 -1
  20. package/src/sap/ui/integration/cards/ComponentContent.js +3 -2
  21. package/src/sap/ui/integration/cards/ComponentContentRenderer.js +1 -1
  22. package/src/sap/ui/integration/cards/Footer.js +2 -2
  23. package/src/sap/ui/integration/cards/Header.js +3 -3
  24. package/src/sap/ui/integration/cards/ListContent.js +67 -23
  25. package/src/sap/ui/integration/cards/ListContentRenderer.js +1 -1
  26. package/src/sap/ui/integration/cards/NumericHeader.js +3 -3
  27. package/src/sap/ui/integration/cards/ObjectContent.js +353 -228
  28. package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
  29. package/src/sap/ui/integration/cards/TableContent.js +6 -10
  30. package/src/sap/ui/integration/cards/TableContentRenderer.js +1 -1
  31. package/src/sap/ui/integration/cards/TimelineContent.js +10 -14
  32. package/src/sap/ui/integration/cards/TimelineContentRenderer.js +1 -1
  33. package/src/sap/ui/integration/cards/WebPageContent.js +6 -2
  34. package/src/sap/ui/integration/cards/WebPageContentRenderer.js +1 -1
  35. package/src/sap/ui/integration/cards/actions/BaseAction.js +89 -0
  36. package/src/sap/ui/integration/cards/actions/CardActions.js +472 -0
  37. package/src/sap/ui/integration/cards/actions/CustomAction.js +31 -0
  38. package/src/sap/ui/integration/cards/actions/DateChangeAction.js +20 -0
  39. package/src/sap/ui/integration/cards/actions/MonthChangeAction.js +20 -0
  40. package/src/sap/ui/integration/cards/actions/NavigationAction.js +63 -0
  41. package/src/sap/ui/integration/cards/actions/SubmitAction.js +89 -0
  42. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +10 -10
  43. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +3 -3
  44. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +7 -12
  45. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +2 -2
  46. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +2 -2
  47. package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +3 -3
  48. package/src/sap/ui/integration/cards/adaptivecards/elements/hostConfig.js +1 -1
  49. package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +1 -1
  50. package/src/sap/ui/integration/cards/filters/BaseFilter.js +2 -2
  51. package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +63 -58
  52. package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
  53. package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +34 -13
  54. package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
  55. package/src/sap/ui/integration/cards/filters/SelectFilter.js +34 -4
  56. package/src/sap/ui/integration/controls/ActionsStrip.js +3 -3
  57. package/src/sap/ui/integration/controls/ActionsToolbar.js +4 -5
  58. package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
  59. package/src/sap/ui/integration/controls/ListContentItem.js +2 -2
  60. package/src/sap/ui/integration/controls/ListContentItemRenderer.js +1 -1
  61. package/src/sap/ui/integration/controls/Microchart.js +2 -2
  62. package/src/sap/ui/integration/controls/MicrochartLegend.js +2 -2
  63. package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +1 -1
  64. package/src/sap/ui/integration/customElements/CustomElementBase.js +1 -1
  65. package/src/sap/ui/integration/customElements/CustomElementCard.js +1 -1
  66. package/src/sap/ui/integration/customElements/CustomElementCardEditor.js +1 -1
  67. package/src/sap/ui/integration/customElements/CustomElementEditor.js +1 -1
  68. package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
  69. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +2 -2
  70. package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +2 -2
  71. package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +15 -11
  72. package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +13 -19
  73. package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +16 -12
  74. package/src/sap/ui/integration/designtime/baseEditor/layout/Form.js +1 -1
  75. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +2 -2
  76. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
  77. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
  78. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
  79. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -2
  80. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -2
  81. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +2 -2
  82. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -2
  83. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
  84. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +2 -2
  85. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -2
  86. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.fragment.xml +1 -0
  87. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +7 -2
  88. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -2
  89. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -2
  90. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.fragment.xml +15 -0
  91. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +116 -0
  92. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -2
  93. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -2
  94. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -2
  95. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -2
  96. package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -2
  97. package/src/sap/ui/integration/designtime/baseEditor/util/BaseDefaultValidatorModules.js +1 -1
  98. package/src/sap/ui/integration/designtime/baseEditor/util/StylesheetManager.js +1 -1
  99. package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +2 -2
  100. package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +1 -1
  101. package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +1 -1
  102. package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +1 -1
  103. package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +1 -1
  104. package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +1 -1
  105. package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +1 -1
  106. package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +1 -1
  107. package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +1 -1
  108. package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +2 -2
  109. package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +2 -2
  110. package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +2 -2
  111. package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +2 -2
  112. package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +2 -2
  113. package/src/sap/ui/integration/designtime/baseEditor/validator/IsPatternMatch.js +1 -1
  114. package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +18 -3
  115. package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +2 -2
  116. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +2 -2
  117. package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +2 -2
  118. package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +2 -2
  119. package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +2 -2
  120. package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +2 -2
  121. package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +2 -2
  122. package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +1 -1
  123. package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +1 -1
  124. package/src/sap/ui/integration/designtime/cardEditor/PropertyEditor.js +1 -1
  125. package/src/sap/ui/integration/designtime/cardEditor/PropertyEditors.js +1 -1
  126. package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +1 -1
  127. package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +1 -1
  128. package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +1 -1
  129. package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +1 -1
  130. package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +1 -1
  131. package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +1 -1
  132. package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +1 -1
  133. package/src/sap/ui/integration/designtime/cardEditor/config/index.js +13 -2
  134. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +57 -0
  135. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +40 -0
  136. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +40 -0
  137. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +40 -0
  138. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +40 -0
  139. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +40 -0
  140. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +40 -0
  141. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +40 -0
  142. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +40 -0
  143. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +40 -0
  144. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +40 -0
  145. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +40 -0
  146. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +0 -4
  147. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +40 -0
  148. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +40 -0
  149. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +40 -0
  150. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +40 -0
  151. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +40 -0
  152. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +40 -0
  153. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +40 -0
  154. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +40 -0
  155. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +40 -0
  156. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +40 -0
  157. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +40 -0
  158. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +40 -0
  159. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +40 -0
  160. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +40 -0
  161. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +40 -0
  162. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +40 -0
  163. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +40 -0
  164. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +40 -0
  165. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +40 -0
  166. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +40 -0
  167. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +40 -0
  168. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +40 -0
  169. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +40 -0
  170. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +40 -0
  171. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +40 -0
  172. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +40 -0
  173. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +40 -0
  174. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +40 -0
  175. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +40 -0
  176. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +40 -0
  177. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +40 -0
  178. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +40 -0
  179. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +41 -1
  180. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +40 -0
  181. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +40 -0
  182. package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +40 -0
  183. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +62 -4
  184. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -2
  185. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
  186. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
  187. package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -2
  188. package/src/sap/ui/integration/designtime/cardEditor/util/CommonPatterns.js +1 -1
  189. package/src/sap/ui/integration/designtime/cardEditor/validator/IsPatternMatchList.js +1 -1
  190. package/src/sap/ui/integration/designtime/editor/CardEditor.js +53 -4
  191. package/src/sap/ui/integration/designtime/editor/CardPreview.js +31 -11
  192. package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +18 -1
  193. package/src/sap/ui/integration/editor/Editor.js +219 -209
  194. package/src/sap/ui/integration/editor/EditorResourceBundles.js +43 -32
  195. package/src/sap/ui/integration/editor/Extension.js +2 -2
  196. package/src/sap/ui/integration/editor/Manifest.js +3 -3
  197. package/src/sap/ui/integration/editor/Merger.js +1 -19
  198. package/src/sap/ui/integration/editor/Settings.js +10 -6
  199. package/src/sap/ui/integration/editor/css/Editor.css +22 -0
  200. package/src/sap/ui/integration/editor/fields/BaseField.js +9 -12
  201. package/src/sap/ui/integration/editor/fields/BooleanField.js +4 -2
  202. package/src/sap/ui/integration/editor/fields/DateField.js +2 -2
  203. package/src/sap/ui/integration/editor/fields/DateTimeField.js +2 -2
  204. package/src/sap/ui/integration/editor/fields/DestinationField.js +2 -2
  205. package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -2
  206. package/src/sap/ui/integration/editor/fields/ListField.js +274 -62
  207. package/src/sap/ui/integration/editor/fields/NumberField.js +2 -2
  208. package/src/sap/ui/integration/editor/fields/StringField.js +85 -53
  209. package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +10 -30
  210. package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +2 -4
  211. package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +2 -4
  212. package/src/sap/ui/integration/editor/languages.json +2 -2
  213. package/src/sap/ui/integration/formatters/DateTimeFormatter.js +1 -1
  214. package/src/sap/ui/integration/formatters/IconFormatter.js +1 -1
  215. package/src/sap/ui/integration/formatters/NumberFormatter.js +1 -1
  216. package/src/sap/ui/integration/formatters/TextFormatter.js +1 -1
  217. package/src/sap/ui/integration/library-bootstrap.js +1 -1
  218. package/src/sap/ui/integration/library.js +21 -4
  219. package/src/sap/ui/integration/messagebundle_ar.properties +4 -0
  220. package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
  221. package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
  222. package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
  223. package/src/sap/ui/integration/messagebundle_cy.properties +4 -0
  224. package/src/sap/ui/integration/messagebundle_da.properties +4 -0
  225. package/src/sap/ui/integration/messagebundle_de.properties +4 -0
  226. package/src/sap/ui/integration/messagebundle_el.properties +4 -0
  227. package/src/sap/ui/integration/messagebundle_en.properties +4 -0
  228. package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
  229. package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +4 -0
  230. package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +55 -81
  231. package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +4 -0
  232. package/src/sap/ui/integration/messagebundle_es.properties +4 -0
  233. package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
  234. package/src/sap/ui/integration/messagebundle_et.properties +4 -0
  235. package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
  236. package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
  237. package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
  238. package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
  239. package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
  240. package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
  241. package/src/sap/ui/integration/messagebundle_id.properties +4 -0
  242. package/src/sap/ui/integration/messagebundle_it.properties +4 -0
  243. package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
  244. package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
  245. package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
  246. package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
  247. package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
  248. package/src/sap/ui/integration/messagebundle_lv.properties +4 -0
  249. package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
  250. package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
  251. package/src/sap/ui/integration/messagebundle_no.properties +4 -0
  252. package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
  253. package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
  254. package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
  255. package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
  256. package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
  257. package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
  258. package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
  259. package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
  260. package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
  261. package/src/sap/ui/integration/messagebundle_th.properties +4 -0
  262. package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
  263. package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
  264. package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
  265. package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
  266. package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
  267. package/src/sap/ui/integration/model/ContextModel.js +3 -3
  268. package/src/sap/ui/integration/model/ObservableModel.js +2 -2
  269. package/src/sap/ui/integration/sap-ui-integration-config.js +1 -1
  270. package/src/sap/ui/integration/sap-ui-integration-define-nojQuery.js +1 -1
  271. package/src/sap/ui/integration/schemas/sap-card.json +195 -8
  272. package/src/sap/ui/integration/services/Data.js +1 -1
  273. package/src/sap/ui/integration/services/Navigation.js +1 -1
  274. package/src/sap/ui/integration/services/Service.js +1 -1
  275. package/src/sap/ui/integration/themes/base/CalendarContent.less +31 -4
  276. package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
  277. package/src/sap/ui/integration/themes/base/library.source.less +1 -1
  278. package/src/sap/ui/integration/themes/sap_hcb/library.source.less +1 -1
  279. package/src/sap/ui/integration/thirdparty/adaptive-expressions.js +1 -0
  280. package/src/sap/ui/integration/thirdparty/adaptivecards-templating.js +660 -952
  281. package/src/sap/ui/integration/thirdparty/markdown-it.js +8340 -1
  282. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +27 -102
  283. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -0
  284. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js +2 -0
  285. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js.map +1 -0
  286. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +2 -0
  287. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +1 -0
  288. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js +2 -0
  289. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js.map +1 -0
  290. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +2 -0
  291. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +1 -0
  292. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +2 -0
  293. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +1 -0
  294. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js +2 -0
  295. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js.map +1 -0
  296. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js +2 -0
  297. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js.map +1 -0
  298. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +2 -0
  299. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +1 -0
  300. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js +2 -0
  301. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js.map +1 -0
  302. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +2 -0
  303. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +1 -0
  304. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +2 -0
  305. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +1 -0
  306. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js +2 -0
  307. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js.map +1 -0
  308. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js +2 -0
  309. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js.map +1 -0
  310. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +2 -0
  311. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +1 -0
  312. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +2 -0
  313. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +1 -0
  314. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js +2 -0
  315. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js.map +1 -0
  316. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +2 -0
  317. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +1 -0
  318. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js +2 -0
  319. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js.map +1 -0
  320. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js +2 -0
  321. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js.map +1 -0
  322. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +2 -0
  323. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +1 -0
  324. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js +2 -0
  325. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js.map +1 -0
  326. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +2 -0
  327. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +1 -0
  328. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +2 -0
  329. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +1 -0
  330. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js +2 -0
  331. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js.map +1 -0
  332. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js +2 -0
  333. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js.map +1 -0
  334. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +2 -0
  335. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +1 -0
  336. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js +2 -0
  337. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js.map +1 -0
  338. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +2 -0
  339. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +1 -0
  340. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +2 -0
  341. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +1 -0
  342. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js +2 -0
  343. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js.map +1 -0
  344. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +2 -0
  345. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +1 -0
  346. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js +2 -0
  347. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js.map +1 -0
  348. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +2 -0
  349. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +1 -0
  350. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js +2 -0
  351. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js.map +1 -0
  352. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js +2 -0
  353. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js.map +1 -0
  354. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +2 -0
  355. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +1 -0
  356. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js +2 -0
  357. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js.map +1 -0
  358. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +2 -0
  359. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +1 -0
  360. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js +2 -0
  361. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js.map +1 -0
  362. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +2 -0
  363. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +1 -0
  364. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +2 -0
  365. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +1 -0
  366. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js +2 -0
  367. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js.map +1 -0
  368. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +2 -0
  369. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +1 -0
  370. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js +2 -0
  371. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js.map +1 -0
  372. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +2 -0
  373. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +1 -0
  374. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +2 -0
  375. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +1 -0
  376. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +2 -0
  377. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +1 -0
  378. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js +2 -0
  379. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js.map +1 -0
  380. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +2 -0
  381. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +1 -0
  382. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js +2 -0
  383. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js.map +1 -0
  384. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js +2 -0
  385. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js.map +1 -0
  386. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +2 -0
  387. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +1 -0
  388. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +2 -0
  389. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +1 -0
  390. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js +2 -0
  391. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js.map +1 -0
  392. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +2 -0
  393. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +1 -0
  394. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js +2 -0
  395. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js.map +1 -0
  396. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js +2 -0
  397. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js.map +1 -0
  398. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +2 -0
  399. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +1 -0
  400. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +2 -0
  401. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +1 -0
  402. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js +2 -0
  403. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js.map +1 -0
  404. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +2 -0
  405. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +1 -0
  406. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js +2 -0
  407. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js.map +1 -0
  408. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +2 -0
  409. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +1 -0
  410. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js +2 -0
  411. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js.map +1 -0
  412. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js +2 -0
  413. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js.map +1 -0
  414. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +2 -0
  415. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +1 -0
  416. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +2 -0
  417. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +1 -0
  418. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js +2 -0
  419. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js.map +1 -0
  420. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +2 -0
  421. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +1 -0
  422. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js +2 -0
  423. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js.map +1 -0
  424. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js +2 -0
  425. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js.map +1 -0
  426. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +2 -0
  427. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +1 -0
  428. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +2 -0
  429. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +1 -0
  430. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js +2 -0
  431. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js.map +1 -0
  432. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +2 -0
  433. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +1 -0
  434. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js +2 -0
  435. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js.map +1 -0
  436. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +2 -0
  437. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +1 -0
  438. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js +2 -0
  439. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js.map +1 -0
  440. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js +2 -0
  441. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js.map +1 -0
  442. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +2 -0
  443. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +1 -0
  444. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +2 -0
  445. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +1 -0
  446. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js +2 -0
  447. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js.map +1 -0
  448. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +2 -0
  449. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +1 -0
  450. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js +2 -0
  451. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js.map +1 -0
  452. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +2 -0
  453. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +1 -0
  454. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js +2 -0
  455. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js.map +1 -0
  456. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js +2 -0
  457. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js.map +1 -0
  458. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +2 -0
  459. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +1 -0
  460. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +2 -0
  461. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +1 -0
  462. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js +2 -0
  463. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js.map +1 -0
  464. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +2 -0
  465. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +1 -0
  466. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js +2 -0
  467. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js.map +1 -0
  468. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +2 -0
  469. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +1 -0
  470. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js +2 -0
  471. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js.map +1 -0
  472. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +2 -0
  473. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +1 -0
  474. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js +2 -0
  475. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js.map +1 -0
  476. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js +2 -0
  477. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js.map +1 -0
  478. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js +2 -0
  479. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js.map +1 -0
  480. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js +2 -0
  481. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js.map +1 -0
  482. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js +2 -0
  483. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js.map +1 -0
  484. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js +2 -0
  485. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js.map +1 -0
  486. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js +2 -0
  487. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js.map +1 -0
  488. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js +2 -0
  489. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js.map +1 -0
  490. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js +2 -0
  491. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js.map +1 -0
  492. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js +2 -0
  493. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js.map +1 -0
  494. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js +2 -0
  495. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js.map +1 -0
  496. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js +2 -0
  497. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js.map +1 -0
  498. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js +2 -0
  499. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js.map +1 -0
  500. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js +2 -0
  501. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js.map +1 -0
  502. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js +2 -0
  503. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js.map +1 -0
  504. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js +2 -0
  505. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js.map +1 -0
  506. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js +2 -0
  507. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js.map +1 -0
  508. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js +2 -0
  509. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js.map +1 -0
  510. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js +2 -0
  511. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js.map +1 -0
  512. package/src/sap/ui/integration/util/BaseFactory.js +2 -2
  513. package/src/sap/ui/integration/util/BindingHelper.js +6 -4
  514. package/src/sap/ui/integration/util/BindingResolver.js +6 -5
  515. package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +1 -1
  516. package/src/sap/ui/integration/util/CardMerger.js +7 -18
  517. package/src/sap/ui/integration/util/CardObserver.js +2 -2
  518. package/src/sap/ui/integration/util/ContentFactory.js +5 -9
  519. package/src/sap/ui/integration/util/CsrfTokenHandler.js +296 -0
  520. package/src/sap/ui/integration/util/DataProvider.js +11 -2
  521. package/src/sap/ui/integration/util/DataProviderFactory.js +49 -12
  522. package/src/sap/ui/integration/util/Destinations.js +2 -2
  523. package/src/sap/ui/integration/util/ExtensionDataProvider.js +2 -2
  524. package/src/sap/ui/integration/util/HeaderFactory.js +3 -3
  525. package/src/sap/ui/integration/util/JSONBindingHelper.js +3 -3
  526. package/src/sap/ui/integration/util/LoadingProvider.js +2 -2
  527. package/src/sap/ui/integration/util/Manifest.js +4 -4
  528. package/src/sap/ui/integration/util/ManifestResolver.js +99 -0
  529. package/src/sap/ui/integration/util/ParameterMap.js +1 -1
  530. package/src/sap/ui/integration/util/RequestDataProvider.js +88 -50
  531. package/src/sap/ui/integration/util/ServiceDataProvider.js +2 -2
  532. package/src/sap/ui/integration/util/ServiceManager.js +2 -2
  533. package/src/sap/ui/integration/util/SkeletonCard.js +50 -0
  534. package/src/sap/ui/integration/util/Utils.js +74 -2
  535. package/src/sap/ui/integration/util/loadCardEditor.js +1 -1
  536. package/src/sap/ui/integration/widgets/Card.js +67 -20
  537. package/src/sap/ui/integration/widgets/CardRenderer.js +1 -7
  538. package/src/sap-ui-integration-card-editor.js +1 -1
  539. package/src/sap-ui-integration-editor.js +1 -1
  540. package/src/sap-ui-integration.js +1 -1
  541. package/ui5.yaml +288 -1
  542. package/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt +0 -27
  543. package/src/sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json +0 -5906
  544. package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json +0 -5906
  545. package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json +0 -5906
  546. package/src/sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json +0 -4979
  547. package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +0 -212
  548. package/src/sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json +0 -4996
  549. package/src/sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json +0 -5498
  550. package/src/sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json +0 -4888
  551. package/src/sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json +0 -4916
  552. package/src/sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json +0 -4917
  553. package/src/sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json +0 -4915
  554. package/src/sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json +0 -4883
  555. package/src/sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json +0 -4883
  556. package/src/sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json +0 -4970
  557. package/src/sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json +0 -4962
  558. package/src/sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json +0 -4971
  559. package/src/sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json +0 -4977
  560. package/src/sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json +0 -4971
  561. package/src/sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json +0 -4972
  562. package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json +0 -4971
  563. package/src/sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json +0 -4972
  564. package/src/sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json +0 -4973
  565. package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json +0 -4972
  566. package/src/sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json +0 -4912
  567. package/src/sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json +0 -4914
  568. package/src/sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json +0 -4913
  569. package/src/sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json +0 -4914
  570. package/src/sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json +0 -4913
  571. package/src/sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json +0 -4915
  572. package/src/sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json +0 -4913
  573. package/src/sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json +0 -4915
  574. package/src/sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json +0 -4914
  575. package/src/sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json +0 -4967
  576. package/src/sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json +0 -4883
  577. package/src/sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json +0 -5008
  578. package/src/sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json +0 -4979
  579. package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json +0 -4979
  580. package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json +0 -4973
  581. package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json +0 -4997
  582. package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json +0 -4979
  583. package/src/sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json +0 -5378
  584. package/src/sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json +0 -4829
  585. package/src/sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json +0 -4919
  586. package/src/sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json +0 -4856
  587. package/src/sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json +0 -4658
  588. package/src/sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json +0 -4950
  589. package/src/sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json +0 -4950
  590. package/src/sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json +0 -4830
  591. package/src/sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json +0 -4725
  592. package/src/sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json +0 -4738
  593. package/src/sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json +0 -5481
  594. package/src/sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json +0 -5112
  595. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json +0 -1
  596. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json +0 -1
  597. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json +0 -1
  598. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json +0 -1
  599. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json +0 -1
  600. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json +0 -1
  601. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json +0 -1
  602. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json +0 -1
  603. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json +0 -1
  604. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json +0 -1
  605. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json +0 -1
  606. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json +0 -1
  607. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json +0 -1
  608. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json +0 -1
  609. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json +0 -1
  610. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json +0 -1
  611. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json +0 -1
  612. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json +0 -1
  613. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json +0 -1
  614. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json +0 -1
  615. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json +0 -1
  616. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json +0 -1
  617. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json +0 -1
  618. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json +0 -1
  619. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json +0 -1
  620. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json +0 -1
  621. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json +0 -1
  622. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json +0 -1
  623. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json +0 -1
  624. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json +0 -1
  625. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json +0 -1
  626. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json +0 -1
  627. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json +0 -1
  628. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json +0 -1
  629. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json +0 -1
  630. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json +0 -1
  631. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json +0 -1
  632. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json +0 -1
  633. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json +0 -1
  634. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json +0 -1
  635. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json +0 -1
  636. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json +0 -1
  637. package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json +0 -1
  638. package/src/sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json +0 -4515
  639. package/src/sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json +0 -4977
  640. package/src/sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json +0 -4884
  641. package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json +0 -4884
  642. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json +0 -1
  643. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json +0 -1
  644. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json +0 -1
  645. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json +0 -1
  646. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json +0 -1
  647. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json +0 -1
  648. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json +0 -1
  649. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json +0 -1
  650. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json +0 -1
  651. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json +0 -1
  652. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json +0 -1
  653. package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json +0 -1
  654. package/src/sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json +0 -5176
  655. package/src/sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json +0 -4805
  656. package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json +0 -4940
  657. package/src/sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json +0 -5090
  658. package/src/sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json +0 -5407
  659. package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json +0 -5407
  660. package/src/sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json +0 -5370
  661. package/src/sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json +0 -5340
  662. package/src/sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json +0 -5126
  663. package/src/sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json +0 -5011
  664. package/src/sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json +0 -4797
  665. package/src/sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json +0 -4979
  666. package/src/sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json +0 -5353
  667. package/src/sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json +0 -4673
  668. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
  669. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  670. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -336
  671. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  672. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -221
  673. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  674. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +0 -169
  675. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  676. package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/webcomponents-loader.js +0 -185
  677. package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json +0 -4632
  678. package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json +0 -4640
  679. package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json +0 -4640
  680. package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json +0 -4728
  681. package/src/sap/ui/integration/util/CardActions.js +0 -551
@@ -1,4673 +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": "Tiếng Chakma",
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
- "Elym": "Elym",
612
- "Ethi": "Chữ Ethiopia",
613
- "Geok": "Chữ Khutsuri Georgia",
614
- "Geor": "Chữ Gruzia",
615
- "Glag": "Chữ Glagolitic",
616
- "Gong": "Gong",
617
- "Gonm": "Gonm",
618
- "Goth": "Chữ Gô-tích",
619
- "Gran": "Chữ Grantha",
620
- "Grek": "Chữ Hy Lạp",
621
- "Gujr": "Chữ Gujarati",
622
- "Guru": "Chữ Gurmukhi",
623
- "Hanb": "Chữ Hanb",
624
- "Hang": "Chữ Hangul",
625
- "Hani": "Chữ Hán",
626
- "Hano": "Chữ Hanunoo",
627
- "Hans": "Giản thể",
628
- "Hans-alt-stand-alone": "Chữ Hán giản thể",
629
- "Hant": "Phồn thể",
630
- "Hant-alt-stand-alone": "Chữ Hán phồn thể",
631
- "Hatr": "Hatr",
632
- "Hebr": "Chữ Do Thái",
633
- "Hira": "Chữ Hiragana",
634
- "Hluw": "Chữ tượng hình Anatolia",
635
- "Hmng": "Chữ Pahawh Hmong",
636
- "Hmnp": "Hmnp",
637
- "Hrkt": "Bảng ký hiệu âm tiết Tiếng Nhật",
638
- "Hung": "Chữ Hungary cổ",
639
- "Inds": "Chữ Indus",
640
- "Ital": "Chữ Italic cổ",
641
- "Jamo": "Chữ Jamo",
642
- "Java": "Chữ Java",
643
- "Jpan": "Chữ Nhật Bản",
644
- "Jurc": "Chữ Jurchen",
645
- "Kali": "Chữ Kayah Li",
646
- "Kana": "Chữ Katakana",
647
- "Khar": "Chữ Kharoshthi",
648
- "Khmr": "Chữ Khơ-me",
649
- "Khoj": "Chữ Khojki",
650
- "Knda": "Chữ Kannada",
651
- "Kore": "Chữ Hàn Quốc",
652
- "Kpel": "Chữ Kpelle",
653
- "Kthi": "Chữ Kaithi",
654
- "Lana": "Chữ Lanna",
655
- "Laoo": "Chữ Lào",
656
- "Latf": "Chữ La-tinh Fraktur",
657
- "Latg": "Chữ La-tinh Xcốt-len",
658
- "Latn": "Chữ La tinh",
659
- "Lepc": "Chữ Lepcha",
660
- "Limb": "Chữ Limbu",
661
- "Lina": "Chữ Linear A",
662
- "Linb": "Chữ Linear B",
663
- "Lisu": "Chữ Fraser",
664
- "Loma": "Chữ Loma",
665
- "Lyci": "Chữ Lycia",
666
- "Lydi": "Chữ Lydia",
667
- "Mahj": "Mahj",
668
- "Maka": "Maka",
669
- "Mand": "Chữ Mandaean",
670
- "Mani": "Chữ Manichaean",
671
- "Marc": "Marc",
672
- "Maya": "Chữ tượng hình Maya",
673
- "Medf": "Medf",
674
- "Mend": "Chữ Mende",
675
- "Merc": "Chữ Meroitic Nét thảo",
676
- "Mero": "Chữ Meroitic",
677
- "Mlym": "Chữ Malayalam",
678
- "Modi": "Modi",
679
- "Mong": "Chữ Mông Cổ",
680
- "Moon": "Chữ nổi Moon",
681
- "Mroo": "Chữ Mro",
682
- "Mtei": "Chữ Meitei Mayek",
683
- "Mult": "Mult",
684
- "Mymr": "Chữ Myanmar",
685
- "Nand": "Nand",
686
- "Narb": "Chữ Bắc Ả Rập cổ",
687
- "Nbat": "Chữ Nabataean",
688
- "Newa": "Newa",
689
- "Nkgb": "Chữ Naxi Geba",
690
- "Nkoo": "Chữ N’Ko",
691
- "Nshu": "Chữ Nüshu",
692
- "Ogam": "Chữ Ogham",
693
- "Olck": "Chữ Ol Chiki",
694
- "Orkh": "Chữ Orkhon",
695
- "Orya": "Chữ Odia",
696
- "Osge": "Osge",
697
- "Osma": "Chữ Osmanya",
698
- "Palm": "Chữ Palmyrene",
699
- "Pauc": "Pauc",
700
- "Perm": "Chữ Permic cổ",
701
- "Phag": "Chữ Phags-pa",
702
- "Phli": "Chữ Pahlavi Văn bia",
703
- "Phlp": "Chữ Pahlavi Thánh ca",
704
- "Phlv": "Chữ Pahlavi Sách",
705
- "Phnx": "Chữ Phoenicia",
706
- "Plrd": "Ngữ âm Pollard",
707
- "Prti": "Chữ Parthia Văn bia",
708
- "Qaag": "Qaag",
709
- "Rjng": "Chữ Rejang",
710
- "Rohg": "Rohg",
711
- "Roro": "Chữ Rongorongo",
712
- "Runr": "Chữ Runic",
713
- "Samr": "Chữ Samaritan",
714
- "Sara": "Chữ Sarati",
715
- "Sarb": "Chữ Nam Ả Rập cổ",
716
- "Saur": "Chữ Saurashtra",
717
- "Sgnw": "Chữ viết Ký hiệu",
718
- "Shaw": "Chữ Shavian",
719
- "Shrd": "Chữ Sharada",
720
- "Sidd": "Sidd",
721
- "Sind": "Chữ Khudawadi",
722
- "Sinh": "Chữ Sinhala",
723
- "Sogd": "Sogd",
724
- "Sogo": "Sogo",
725
- "Sora": "Chữ Sora Sompeng",
726
- "Soyo": "Soyo",
727
- "Sund": "Chữ Xu-đăng",
728
- "Sylo": "Chữ Syloti Nagri",
729
- "Syrc": "Chữ Syria",
730
- "Syre": "Chữ Estrangelo Syriac",
731
- "Syrj": "Chữ Tây Syria",
732
- "Syrn": "Chữ Đông Syria",
733
- "Tagb": "Chữ Tagbanwa",
734
- "Takr": "Chữ Takri",
735
- "Tale": "Chữ Thái Na",
736
- "Talu": "Chữ Thái Lặc mới",
737
- "Taml": "Chữ Tamil",
738
- "Tang": "Chữ Tangut",
739
- "Tavt": "Chữ Thái Việt",
740
- "Telu": "Chữ Telugu",
741
- "Teng": "Chữ Tengwar",
742
- "Tfng": "Chữ Tifinagh",
743
- "Tglg": "Chữ Tagalog",
744
- "Thaa": "Chữ Thaana",
745
- "Thai": "Chữ Thái",
746
- "Tibt": "Chữ Tây Tạng",
747
- "Tirh": "Chữ Tirhuta",
748
- "Ugar": "Chữ Ugarit",
749
- "Vaii": "Chữ Vai",
750
- "Visp": "Tiếng nói Nhìn thấy được",
751
- "Wara": "Chữ Varang Kshiti",
752
- "Wcho": "Wcho",
753
- "Wole": "Chữ Woleai",
754
- "Xpeo": "Chữ Ba Tư cổ",
755
- "Xsux": "Chữ hình nêm Sumero-Akkadian",
756
- "Yiii": "Chữ Di",
757
- "Zanb": "Zanb",
758
- "Zinh": "Chữ Kế thừa",
759
- "Zmth": "Ký hiệu Toán học",
760
- "Zsye": "Biểu tượng",
761
- "Zsym": "Ký hiệu",
762
- "Zxxx": "Chưa có chữ viết",
763
- "Zyyy": "Chung",
764
- "Zzzz": "Chữ viết không xác định"
765
- },
766
- "territories": {
767
- "142": "Châu Á",
768
- "143": "Trung Á",
769
- "145": "Tây Á",
770
- "150": "Châu Âu",
771
- "151": "Đông Âu",
772
- "154": "Bắc Âu",
773
- "155": "Tây Âu",
774
- "202": "Châu Phi hạ Sahara",
775
- "419": "Châu Mỹ La-tinh",
776
- "001": "Thế giới",
777
- "002": "Châu Phi",
778
- "003": "Bắc Mỹ",
779
- "005": "Nam Mỹ",
780
- "009": "Châu Đại Dương",
781
- "011": "Tây Phi",
782
- "013": "Trung Mỹ",
783
- "014": "Đông Phi",
784
- "015": "Bắc Phi",
785
- "017": "Trung Phi",
786
- "018": "Miền Nam Châu Phi",
787
- "019": "Châu Mỹ",
788
- "021": "Miền Bắc Châu Mỹ",
789
- "029": "Ca-ri-bê",
790
- "030": "Đông Á",
791
- "034": "Nam Á",
792
- "035": "Đông Nam Á",
793
- "039": "Nam Âu",
794
- "053": "Úc và New Zealand",
795
- "054": "Melanesia",
796
- "057": "Vùng Micronesian",
797
- "061": "Polynesia",
798
- "AC": "Đảo Ascension",
799
- "AD": "Andorra",
800
- "AE": "Các Tiểu Vương quốc Ả Rập Thống nhất",
801
- "AF": "Afghanistan",
802
- "AG": "Antigua và Barbuda",
803
- "AI": "Anguilla",
804
- "AL": "Albania",
805
- "AM": "Armenia",
806
- "AO": "Angola",
807
- "AQ": "Nam Cực",
808
- "AR": "Argentina",
809
- "AS": "Samoa thuộc Mỹ",
810
- "AT": "Áo",
811
- "AU": "Australia",
812
- "AW": "Aruba",
813
- "AX": "Quần đảo Åland",
814
- "AZ": "Azerbaijan",
815
- "BA": "Bosnia và Herzegovina",
816
- "BB": "Barbados",
817
- "BD": "Bangladesh",
818
- "BE": "Bỉ",
819
- "BF": "Burkina Faso",
820
- "BG": "Bulgaria",
821
- "BH": "Bahrain",
822
- "BI": "Burundi",
823
- "BJ": "Benin",
824
- "BL": "St. Barthélemy",
825
- "BM": "Bermuda",
826
- "BN": "Brunei",
827
- "BO": "Bolivia",
828
- "BQ": "Ca-ri-bê Hà Lan",
829
- "BR": "Brazil",
830
- "BS": "Bahamas",
831
- "BT": "Bhutan",
832
- "BV": "Đảo Bouvet",
833
- "BW": "Botswana",
834
- "BY": "Belarus",
835
- "BZ": "Belize",
836
- "CA": "Canada",
837
- "CC": "Quần đảo Cocos (Keeling)",
838
- "CD": "Congo - Kinshasa",
839
- "CD-alt-variant": "Cộng hòa Dân chủ Congo",
840
- "CF": "Cộng hòa Trung Phi",
841
- "CG": "Congo - Brazzaville",
842
- "CG-alt-variant": "Cộng hòa Congo",
843
- "CH": "Thụy Sĩ",
844
- "CI": "Côte d’Ivoire",
845
- "CI-alt-variant": "Bờ Biển Ngà",
846
- "CK": "Quần đảo Cook",
847
- "CL": "Chile",
848
- "CM": "Cameroon",
849
- "CN": "Trung Quốc",
850
- "CO": "Colombia",
851
- "CP": "Đảo Clipperton",
852
- "CR": "Costa Rica",
853
- "CU": "Cuba",
854
- "CV": "Cape Verde",
855
- "CW": "Curaçao",
856
- "CX": "Đảo Giáng Sinh",
857
- "CY": "Síp",
858
- "CZ": "Séc",
859
- "CZ-alt-variant": "Cộng hòa Séc",
860
- "DE": "Đức",
861
- "DG": "Diego Garcia",
862
- "DJ": "Djibouti",
863
- "DK": "Đan Mạch",
864
- "DM": "Dominica",
865
- "DO": "Cộng hòa Dominica",
866
- "DZ": "Algeria",
867
- "EA": "Ceuta và Melilla",
868
- "EC": "Ecuador",
869
- "EE": "Estonia",
870
- "EG": "Ai Cập",
871
- "EH": "Tây Sahara",
872
- "ER": "Eritrea",
873
- "ES": "Tây Ban Nha",
874
- "ET": "Ethiopia",
875
- "EU": "Liên Minh Châu Âu",
876
- "EZ": "Khu vực đồng Euro",
877
- "FI": "Phần Lan",
878
- "FJ": "Fiji",
879
- "FK": "Quần đảo Falkland",
880
- "FK-alt-variant": "Quần đảo Falkland (Islas Malvinas)",
881
- "FM": "Micronesia",
882
- "FO": "Quần đảo Faroe",
883
- "FR": "Pháp",
884
- "GA": "Gabon",
885
- "GB": "Vương quốc Anh",
886
- "GB-alt-short": "Vương quốc Anh",
887
- "GD": "Grenada",
888
- "GE": "Gruzia",
889
- "GF": "Guiana thuộc Pháp",
890
- "GG": "Guernsey",
891
- "GH": "Ghana",
892
- "GI": "Gibraltar",
893
- "GL": "Greenland",
894
- "GM": "Gambia",
895
- "GN": "Guinea",
896
- "GP": "Guadeloupe",
897
- "GQ": "Guinea Xích Đạo",
898
- "GR": "Hy Lạp",
899
- "GS": "Nam Georgia & Quần đảo Nam Sandwich",
900
- "GT": "Guatemala",
901
- "GU": "Guam",
902
- "GW": "Guinea-Bissau",
903
- "GY": "Guyana",
904
- "HK": "Hồng Kông, Trung Quốc",
905
- "HK-alt-short": "Hồng Kông",
906
- "HM": "Quần đảo Heard và McDonald",
907
- "HN": "Honduras",
908
- "HR": "Croatia",
909
- "HT": "Haiti",
910
- "HU": "Hungary",
911
- "IC": "Quần đảo Canary",
912
- "ID": "Indonesia",
913
- "IE": "Ireland",
914
- "IL": "Israel",
915
- "IM": "Đảo Man",
916
- "IN": "Ấn Độ",
917
- "IO": "Lãnh thổ Ấn Độ Dương thuộc Anh",
918
- "IQ": "Iraq",
919
- "IR": "Iran",
920
- "IS": "Iceland",
921
- "IT": "Italy",
922
- "JE": "Jersey",
923
- "JM": "Jamaica",
924
- "JO": "Jordan",
925
- "JP": "Nhật Bản",
926
- "KE": "Kenya",
927
- "KG": "Kyrgyzstan",
928
- "KH": "Campuchia",
929
- "KI": "Kiribati",
930
- "KM": "Comoros",
931
- "KN": "St. Kitts và Nevis",
932
- "KP": "Triều Tiên",
933
- "KR": "Hàn Quốc",
934
- "KW": "Kuwait",
935
- "KY": "Quần đảo Cayman",
936
- "KZ": "Kazakhstan",
937
- "LA": "Lào",
938
- "LB": "Li-băng",
939
- "LC": "St. Lucia",
940
- "LI": "Liechtenstein",
941
- "LK": "Sri Lanka",
942
- "LR": "Liberia",
943
- "LS": "Lesotho",
944
- "LT": "Litva",
945
- "LU": "Luxembourg",
946
- "LV": "Latvia",
947
- "LY": "Libya",
948
- "MA": "Ma-rốc",
949
- "MC": "Monaco",
950
- "MD": "Moldova",
951
- "ME": "Montenegro",
952
- "MF": "St. Martin",
953
- "MG": "Madagascar",
954
- "MH": "Quần đảo Marshall",
955
- "MK": "Bắc Macedonia",
956
- "MK-alt-variant": "MK",
957
- "ML": "Mali",
958
- "MM": "Myanmar (Miến Điện)",
959
- "MN": "Mông Cổ",
960
- "MO": "Macao, Trung Quốc",
961
- "MO-alt-short": "Macao",
962
- "MP": "Quần đảo Bắc Mariana",
963
- "MQ": "Martinique",
964
- "MR": "Mauritania",
965
- "MS": "Montserrat",
966
- "MT": "Malta",
967
- "MU": "Mauritius",
968
- "MV": "Maldives",
969
- "MW": "Malawi",
970
- "MX": "Mexico",
971
- "MY": "Malaysia",
972
- "MZ": "Mozambique",
973
- "NA": "Namibia",
974
- "NC": "New Caledonia",
975
- "NE": "Niger",
976
- "NF": "Đảo Norfolk",
977
- "NG": "Nigeria",
978
- "NI": "Nicaragua",
979
- "NL": "Hà Lan",
980
- "NO": "Na Uy",
981
- "NP": "Nepal",
982
- "NR": "Nauru",
983
- "NU": "Niue",
984
- "NZ": "New Zealand",
985
- "OM": "Oman",
986
- "PA": "Panama",
987
- "PE": "Peru",
988
- "PF": "Polynesia thuộc Pháp",
989
- "PG": "Papua New Guinea",
990
- "PH": "Philippines",
991
- "PK": "Pakistan",
992
- "PL": "Ba Lan",
993
- "PM": "Saint Pierre và Miquelon",
994
- "PN": "Quần đảo Pitcairn",
995
- "PR": "Puerto Rico",
996
- "PS": "Lãnh thổ Palestine",
997
- "PS-alt-short": "Palestine",
998
- "PT": "Bồ Đào Nha",
999
- "PW": "Palau",
1000
- "PY": "Paraguay",
1001
- "QA": "Qatar",
1002
- "QO": "Vùng xa xôi thuộc Châu Đại Dương",
1003
- "RE": "Réunion",
1004
- "RO": "Romania",
1005
- "RS": "Serbia",
1006
- "RU": "Nga",
1007
- "RW": "Rwanda",
1008
- "SA": "Ả Rập Xê-út",
1009
- "SB": "Quần đảo Solomon",
1010
- "SC": "Seychelles",
1011
- "SD": "Sudan",
1012
- "SE": "Thụy Điển",
1013
- "SG": "Singapore",
1014
- "SH": "St. Helena",
1015
- "SI": "Slovenia",
1016
- "SJ": "Svalbard và Jan Mayen",
1017
- "SK": "Slovakia",
1018
- "SL": "Sierra Leone",
1019
- "SM": "San Marino",
1020
- "SN": "Senegal",
1021
- "SO": "Somalia",
1022
- "SR": "Suriname",
1023
- "SS": "Nam Sudan",
1024
- "ST": "São Tomé và Príncipe",
1025
- "SV": "El Salvador",
1026
- "SX": "Sint Maarten",
1027
- "SY": "Syria",
1028
- "SZ": "Swaziland",
1029
- "SZ-alt-variant": "SZ",
1030
- "TA": "Tristan da Cunha",
1031
- "TC": "Quần đảo Turks và Caicos",
1032
- "TD": "Chad",
1033
- "TF": "Lãnh thổ phía Nam Thuộc Pháp",
1034
- "TG": "Togo",
1035
- "TH": "Thái Lan",
1036
- "TJ": "Tajikistan",
1037
- "TK": "Tokelau",
1038
- "TL": "Timor-Leste",
1039
- "TL-alt-variant": "Đông Timor",
1040
- "TM": "Turkmenistan",
1041
- "TN": "Tunisia",
1042
- "TO": "Tonga",
1043
- "TR": "Thổ Nhĩ Kỳ",
1044
- "TT": "Trinidad và Tobago",
1045
- "TV": "Tuvalu",
1046
- "TW": "Đài Loan, Trung Quốc",
1047
- "TZ": "Tanzania",
1048
- "UA": "Ukraina",
1049
- "UG": "Uganda",
1050
- "UM": "Các tiểu đảo xa của Hoa Kỳ",
1051
- "UN": "Liên hiệp quốc",
1052
- "UN-alt-short": "Liên hiệp quốc",
1053
- "US": "Hoa Kỳ",
1054
- "US-alt-short": "Hoa Kỳ",
1055
- "UY": "Uruguay",
1056
- "UZ": "Uzbekistan",
1057
- "VA": "Thành Vatican",
1058
- "VC": "St. Vincent và Grenadines",
1059
- "VE": "Venezuela",
1060
- "VG": "Quần đảo Virgin thuộc Anh",
1061
- "VI": "Quần đảo Virgin thuộc Mỹ",
1062
- "VN": "Việt Nam",
1063
- "VU": "Vanuatu",
1064
- "WF": "Wallis và Futuna",
1065
- "WS": "Samoa",
1066
- "XA": "XA",
1067
- "XB": "XB",
1068
- "XK": "Kosovo",
1069
- "YE": "Yemen",
1070
- "YT": "Mayotte",
1071
- "ZA": "Nam Phi",
1072
- "ZM": "Zambia",
1073
- "ZW": "Zimbabwe",
1074
- "ZZ": "Vùng không xác định"
1075
- },
1076
- "orientation": "left-to-right",
1077
- "ca-gregorian": {
1078
- "dateFormats": {
1079
- "full": "EEEE, d MMMM, y",
1080
- "long": "d MMMM, y",
1081
- "medium": "d MMM, y",
1082
- "short": "dd/MM/y"
1083
- },
1084
- "timeFormats": {
1085
- "full": "HH:mm:ss zzzz",
1086
- "long": "HH:mm:ss z",
1087
- "medium": "HH:mm:ss",
1088
- "short": "HH:mm"
1089
- },
1090
- "dateTimeFormats": {
1091
- "full": "{0} {1}",
1092
- "long": "{0} {1}",
1093
- "medium": "{0}, {1}",
1094
- "short": "{0}, {1}",
1095
- "availableFormats": {
1096
- "Bh": "h B",
1097
- "Bhm": "h:mm B",
1098
- "Bhms": "h:mm:ss B",
1099
- "d": "d",
1100
- "E": "ccc",
1101
- "EBhm": "E h:mm B",
1102
- "EBhms": "E h:mm:ss B",
1103
- "Ed": "E, 'ngày' d",
1104
- "Ehm": "E h:mm a",
1105
- "EHm": "E HH:mm",
1106
- "Ehms": "E h:mm:ss a",
1107
- "EHms": "E HH:mm:ss",
1108
- "Gy": "y G",
1109
- "GyMMM": "MMM y G",
1110
- "GyMMMd": "dd MMM, y G",
1111
- "GyMMMEd": "E, dd/MM/y G",
1112
- "h": "h a",
1113
- "H": "HH",
1114
- "hm": "h:mm a",
1115
- "Hm": "H:mm",
1116
- "hms": "h:mm:ss a",
1117
- "Hms": "HH:mm:ss",
1118
- "hmsv": "h:mm:ss a v",
1119
- "Hmsv": "HH:mm:ss v",
1120
- "hmv": "h:mm a v",
1121
- "Hmv": "HH:mm v",
1122
- "M": "L",
1123
- "Md": "dd/M",
1124
- "MEd": "E, dd/M",
1125
- "MMdd": "dd-MM",
1126
- "MMM": "LLL",
1127
- "MMMd": "d MMM",
1128
- "MMMEd": "E, d MMM",
1129
- "MMMMd": "d MMMM",
1130
- "MMMMEd": "E, d MMMM",
1131
- "mmss": "mm:ss",
1132
- "ms": "mm:ss",
1133
- "y": "y",
1134
- "yM": "M/y",
1135
- "yMd": "d/M/y",
1136
- "yMEd": "E, dd/M/y",
1137
- "yMM": "'tháng' MM, y",
1138
- "yMMM": "MMM y",
1139
- "yMMMd": "d MMM, y",
1140
- "yMMMEd": "E, d MMM, y",
1141
- "yMMMM": "MMMM 'năm' y",
1142
- "yQQQ": "QQQ y",
1143
- "yQQQQ": "QQQQ 'năm' y",
1144
- "MMMMW": "'tuần' W 'của' 'tháng' M",
1145
- "yw": "'tuần' w 'của' 'năm' Y"
1146
- },
1147
- "appendItems": {
1148
- "Day": "{0} ({2}: {1})",
1149
- "Day-Of-Week": "{0} {1}",
1150
- "Era": "{1} {0}",
1151
- "Hour": "{0} ({2}: {1})",
1152
- "Minute": "{0} ({2}: {1})",
1153
- "Month": "{0} ({2}: {1})",
1154
- "Quarter": "{0} ({2}: {1})",
1155
- "Second": "{0} ({2}: {1})",
1156
- "Timezone": "{0} {1}",
1157
- "Week": "{0} ({2}: {1})",
1158
- "Year": "{1} {0}"
1159
- },
1160
- "intervalFormats": {
1161
- "intervalFormatFallback": "{0} - {1}",
1162
- "Bh": {
1163
- "B": "h B – h B",
1164
- "h": "h – h B"
1165
- },
1166
- "Bhm": {
1167
- "B": "h:mm B – h:mm B",
1168
- "h": "h:mm – h:mm B",
1169
- "m": "h:mm – h:mm B"
1170
- },
1171
- "d": {
1172
- "d": "'Ngày' dd–dd"
1173
- },
1174
- "Gy": {
1175
- "G": "y G – y G",
1176
- "y": "y – y G"
1177
- },
1178
- "GyM": {
1179
- "G": "M/y GGGGG – M/y GGGGG",
1180
- "M": "M/y – M/y GGGGG",
1181
- "y": "M/y – M/y GGGGG"
1182
- },
1183
- "GyMd": {
1184
- "d": "dd-MM-y – dd-MM-y GGGGG",
1185
- "G": "dd-MM-y GGGGG – dd-MM-y GGGGG",
1186
- "M": "dd-MM-y – dd-MM-y GGGGG",
1187
- "y": "dd-MM-y – dd-MM-y GGGGG"
1188
- },
1189
- "GyMEd": {
1190
- "d": "E, dd-MM-y – E, dd-MM-y GGGGG",
1191
- "G": "E, dd-MM-y GGGGG – E, dd-MM-y GGGGG",
1192
- "M": "E, dd-MM-y – E, dd-MM-y GGGGG",
1193
- "y": "E, dd-MM-y – E, dd-MM-y GGGGG"
1194
- },
1195
- "GyMMM": {
1196
- "G": "MM y G – MM y G",
1197
- "M": "MMM – MMM y G",
1198
- "y": "MMM y – MMM y G"
1199
- },
1200
- "GyMMMd": {
1201
- "d": "d – d MMM y G",
1202
- "G": "d MMM y G – d MMM y G",
1203
- "M": "d MMM – d MMM y G",
1204
- "y": "d MMM y – d MMM y G"
1205
- },
1206
- "GyMMMEd": {
1207
- "d": "E, d MMM – E, d MMM y G",
1208
- "G": "E, d MMM y G – E, d MMM y G",
1209
- "M": "E, d MMM – E, d MMM y G",
1210
- "y": "E, d MMM y – E, d MMM y G"
1211
- },
1212
- "h": {
1213
- "a": "h a – h a",
1214
- "h": "h–h a"
1215
- },
1216
- "H": {
1217
- "H": "HH–HH"
1218
- },
1219
- "hm": {
1220
- "a": "h:mm a – h:mm a",
1221
- "h": "h:mm–h:mm a",
1222
- "m": "h:mm–h:mm a"
1223
- },
1224
- "Hm": {
1225
- "H": "HH:mm–HH:mm",
1226
- "m": "HH:mm–HH:mm"
1227
- },
1228
- "hmv": {
1229
- "a": "h:mm a – h:mm a v",
1230
- "h": "h:mm–h:mm a v",
1231
- "m": "h:mm–h:mm a v"
1232
- },
1233
- "Hmv": {
1234
- "H": "HH:mm–HH:mm v",
1235
- "m": "HH:mm–HH:mm v"
1236
- },
1237
- "hv": {
1238
- "a": "h a – h a v",
1239
- "h": "h–h a v"
1240
- },
1241
- "Hv": {
1242
- "H": "HH–HH v"
1243
- },
1244
- "M": {
1245
- "M": "'Tháng' M – M"
1246
- },
1247
- "Md": {
1248
- "d": "dd/MM – dd/MM",
1249
- "M": "dd/MM – dd/MM"
1250
- },
1251
- "MEd": {
1252
- "d": "EEEE, dd/MM – EEEE, dd/MM",
1253
- "M": "EEEE, dd/MM – EEEE, dd/MM"
1254
- },
1255
- "MMM": {
1256
- "M": "MMM–MMM"
1257
- },
1258
- "MMMd": {
1259
- "d": "'Ngày' dd - 'Ngày' dd 'tháng' M",
1260
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
1261
- },
1262
- "MMMEd": {
1263
- "d": "E, d MMM – E, d MMM",
1264
- "M": "E, d MMM – E, d MMM"
1265
- },
1266
- "y": {
1267
- "y": "y–y"
1268
- },
1269
- "yM": {
1270
- "M": "MM/y – MM/y",
1271
- "y": "MM/y – MM/y"
1272
- },
1273
- "yMd": {
1274
- "d": "dd/MM/y – dd/MM/y",
1275
- "M": "dd/MM/y – dd/MM/y",
1276
- "y": "dd/MM/y – dd/MM/y"
1277
- },
1278
- "yMEd": {
1279
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y",
1280
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y",
1281
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y"
1282
- },
1283
- "yMMM": {
1284
- "M": "'Tháng' M - 'Tháng' M 'năm' y",
1285
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y"
1286
- },
1287
- "yMMMd": {
1288
- "d": "d – d MMM, y",
1289
- "M": "d MMM – d MMM, y",
1290
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y"
1291
- },
1292
- "yMMMEd": {
1293
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y",
1294
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y",
1295
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y"
1296
- },
1297
- "yMMMM": {
1298
- "M": "MMMM–MMMM 'năm' y",
1299
- "y": "MMMM, y – MMMM, y"
1300
- }
1301
- }
1302
- },
1303
- "months": {
1304
- "format": {
1305
- "abbreviated": [
1306
- "thg 1",
1307
- "thg 2",
1308
- "thg 3",
1309
- "thg 4",
1310
- "thg 5",
1311
- "thg 6",
1312
- "thg 7",
1313
- "thg 8",
1314
- "thg 9",
1315
- "thg 10",
1316
- "thg 11",
1317
- "thg 12"
1318
- ],
1319
- "narrow": [
1320
- "1",
1321
- "2",
1322
- "3",
1323
- "4",
1324
- "5",
1325
- "6",
1326
- "7",
1327
- "8",
1328
- "9",
1329
- "10",
1330
- "11",
1331
- "12"
1332
- ],
1333
- "wide": [
1334
- "tháng 1",
1335
- "tháng 2",
1336
- "tháng 3",
1337
- "tháng 4",
1338
- "tháng 5",
1339
- "tháng 6",
1340
- "tháng 7",
1341
- "tháng 8",
1342
- "tháng 9",
1343
- "tháng 10",
1344
- "tháng 11",
1345
- "tháng 12"
1346
- ]
1347
- },
1348
- "stand-alone": {
1349
- "abbreviated": [
1350
- "Thg 1",
1351
- "Thg 2",
1352
- "Thg 3",
1353
- "Thg 4",
1354
- "Thg 5",
1355
- "Thg 6",
1356
- "Thg 7",
1357
- "Thg 8",
1358
- "Thg 9",
1359
- "Thg 10",
1360
- "Thg 11",
1361
- "Thg 12"
1362
- ],
1363
- "narrow": [
1364
- "1",
1365
- "2",
1366
- "3",
1367
- "4",
1368
- "5",
1369
- "6",
1370
- "7",
1371
- "8",
1372
- "9",
1373
- "10",
1374
- "11",
1375
- "12"
1376
- ],
1377
- "wide": [
1378
- "Tháng 1",
1379
- "Tháng 2",
1380
- "Tháng 3",
1381
- "Tháng 4",
1382
- "Tháng 5",
1383
- "Tháng 6",
1384
- "Tháng 7",
1385
- "Tháng 8",
1386
- "Tháng 9",
1387
- "Tháng 10",
1388
- "Tháng 11",
1389
- "Tháng 12"
1390
- ]
1391
- }
1392
- },
1393
- "days": {
1394
- "format": {
1395
- "abbreviated": [
1396
- "CN",
1397
- "Th 2",
1398
- "Th 3",
1399
- "Th 4",
1400
- "Th 5",
1401
- "Th 6",
1402
- "Th 7"
1403
- ],
1404
- "narrow": [
1405
- "CN",
1406
- "T2",
1407
- "T3",
1408
- "T4",
1409
- "T5",
1410
- "T6",
1411
- "T7"
1412
- ],
1413
- "short": [
1414
- "CN",
1415
- "T2",
1416
- "T3",
1417
- "T4",
1418
- "T5",
1419
- "T6",
1420
- "T7"
1421
- ],
1422
- "wide": [
1423
- "Chủ Nhật",
1424
- "Thứ Hai",
1425
- "Thứ Ba",
1426
- "Thứ Tư",
1427
- "Thứ Năm",
1428
- "Thứ Sáu",
1429
- "Thứ Bảy"
1430
- ]
1431
- },
1432
- "stand-alone": {
1433
- "abbreviated": [
1434
- "CN",
1435
- "Th 2",
1436
- "Th 3",
1437
- "Th 4",
1438
- "Th 5",
1439
- "Th 6",
1440
- "Th 7"
1441
- ],
1442
- "narrow": [
1443
- "CN",
1444
- "T2",
1445
- "T3",
1446
- "T4",
1447
- "T5",
1448
- "T6",
1449
- "T7"
1450
- ],
1451
- "short": [
1452
- "CN",
1453
- "T2",
1454
- "T3",
1455
- "T4",
1456
- "T5",
1457
- "T6",
1458
- "T7"
1459
- ],
1460
- "wide": [
1461
- "Chủ Nhật",
1462
- "Thứ Hai",
1463
- "Thứ Ba",
1464
- "Thứ Tư",
1465
- "Thứ Năm",
1466
- "Thứ Sáu",
1467
- "Thứ Bảy"
1468
- ]
1469
- }
1470
- },
1471
- "quarters": {
1472
- "format": {
1473
- "abbreviated": [
1474
- "Q1",
1475
- "Q2",
1476
- "Q3",
1477
- "Q4"
1478
- ],
1479
- "narrow": [
1480
- "1",
1481
- "2",
1482
- "3",
1483
- "4"
1484
- ],
1485
- "wide": [
1486
- "Quý 1",
1487
- "Quý 2",
1488
- "Quý 3",
1489
- "Quý 4"
1490
- ]
1491
- },
1492
- "stand-alone": {
1493
- "abbreviated": [
1494
- "Q1",
1495
- "Q2",
1496
- "Q3",
1497
- "Q4"
1498
- ],
1499
- "narrow": [
1500
- "1",
1501
- "2",
1502
- "3",
1503
- "4"
1504
- ],
1505
- "wide": [
1506
- "quý 1",
1507
- "quý 2",
1508
- "quý 3",
1509
- "quý 4"
1510
- ]
1511
- }
1512
- },
1513
- "dayPeriods": {
1514
- "format": {
1515
- "abbreviated": [
1516
- "SA",
1517
- "CH"
1518
- ],
1519
- "narrow": [
1520
- "s",
1521
- "c"
1522
- ],
1523
- "wide": [
1524
- "SA",
1525
- "CH"
1526
- ]
1527
- },
1528
- "stand-alone": {
1529
- "abbreviated": [
1530
- "SA",
1531
- "CH"
1532
- ],
1533
- "narrow": [
1534
- "SA",
1535
- "CH"
1536
- ],
1537
- "wide": [
1538
- "SA",
1539
- "CH"
1540
- ]
1541
- }
1542
- },
1543
- "era-wide": {
1544
- "0": "Trước CN",
1545
- "1": "sau CN"
1546
- },
1547
- "era-abbreviated": {
1548
- "0": "Trước CN",
1549
- "1": "sau CN"
1550
- },
1551
- "era-narrow": {
1552
- "0": "tr. CN",
1553
- "1": "sau CN"
1554
- }
1555
- },
1556
- "ca-islamic": {
1557
- "dateFormats": {
1558
- "full": "EEEE, 'ngày' dd 'tháng' MM 'năm' y G",
1559
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
1560
- "medium": "dd-MM-y G",
1561
- "short": "dd/MM/y GGGGG"
1562
- },
1563
- "timeFormats": {
1564
- "full": "HH:mm:ss zzzz",
1565
- "long": "HH:mm:ss z",
1566
- "medium": "HH:mm:ss",
1567
- "short": "HH:mm"
1568
- },
1569
- "dateTimeFormats": {
1570
- "full": "{1} 'lúc' {0}",
1571
- "long": "{1} 'lúc' {0}",
1572
- "medium": "{1} {0}",
1573
- "short": "{1} {0}",
1574
- "availableFormats": {
1575
- "Bh": "h B",
1576
- "Bhm": "h:mm B",
1577
- "Bhms": "h:mm:ss B",
1578
- "d": "'Ngày' dd",
1579
- "E": "ccc",
1580
- "EBhm": "E h:mm B",
1581
- "EBhms": "E h:mm:ss B",
1582
- "Ed": "E, dd",
1583
- "Ehm": "E h:mm a",
1584
- "EHm": "E HH:mm",
1585
- "Ehms": "E h:mm:ss a",
1586
- "EHms": "E HH:mm:ss",
1587
- "Gy": "y G",
1588
- "GyMMM": "MMM y G",
1589
- "GyMMMd": "d MMM, y G",
1590
- "GyMMMEd": "E, d MMM, y G",
1591
- "h": "h a",
1592
- "H": "HH",
1593
- "hm": "h:mm a",
1594
- "Hm": "HH:mm",
1595
- "hms": "h:mm:ss a",
1596
- "Hms": "HH:mm:ss",
1597
- "M": "L",
1598
- "Md": "dd/M",
1599
- "MEd": "E, dd/M",
1600
- "MMdd": "dd-MM",
1601
- "MMM": "LLL",
1602
- "MMMd": "d MMM",
1603
- "MMMEd": "E, d MMM",
1604
- "MMMMd": "dd MMMM",
1605
- "MMMMEd": "E, dd MMMM",
1606
- "ms": "mm:ss",
1607
- "y": "y G",
1608
- "yyyy": "y G",
1609
- "yyyyM": "M/y G",
1610
- "yyyyMd": "d/M/y G",
1611
- "yyyyMEd": "E, d/M/y GGGGG",
1612
- "yyyyMM": "MM-y G",
1613
- "yyyyMMM": "MMM y G",
1614
- "yyyyMMMd": "d MMM, y G",
1615
- "yyyyMMMEd": "E, d MMM, y G",
1616
- "yyyyMMMM": "MMMM y G",
1617
- "yyyyQQQ": "QQQ y G",
1618
- "yyyyQQQQ": "QQQQ y G"
1619
- },
1620
- "appendItems": {
1621
- "Day": "{0} ({2}: {1})",
1622
- "Day-Of-Week": "{0} {1}",
1623
- "Era": "{1} {0}",
1624
- "Hour": "{0} ({2}: {1})",
1625
- "Minute": "{0} ({2}: {1})",
1626
- "Month": "{0} ({2}: {1})",
1627
- "Quarter": "{0} ({2}: {1})",
1628
- "Second": "{0} ({2}: {1})",
1629
- "Timezone": "{0} {1}",
1630
- "Week": "{0} ({2}: {1})",
1631
- "Year": "{1} {0}"
1632
- },
1633
- "intervalFormats": {
1634
- "intervalFormatFallback": "{0} - {1}",
1635
- "Bh": {
1636
- "B": "h B – h B",
1637
- "h": "h – h B"
1638
- },
1639
- "Bhm": {
1640
- "B": "h:mm B – h:mm B",
1641
- "h": "h:mm – h:mm B",
1642
- "m": "h:mm – h:mm B"
1643
- },
1644
- "d": {
1645
- "d": "'Ngày' dd–dd"
1646
- },
1647
- "Gy": {
1648
- "G": "y G – y G",
1649
- "y": "y – y G"
1650
- },
1651
- "GyM": {
1652
- "G": "M/y GGGGG – M/y GGGGG",
1653
- "M": "M/y – M/y GGGGG",
1654
- "y": "M/y – M/y GGGGG"
1655
- },
1656
- "GyMd": {
1657
- "d": "dd-MM-y – dd-MM-y GGGGG",
1658
- "G": "dd-MM-y GGGGG – dd-MM-y GGGGG",
1659
- "M": "dd-MM-y – dd-MM-y GGGGG",
1660
- "y": "dd-MM-y – dd-MM-y GGGGG"
1661
- },
1662
- "GyMEd": {
1663
- "d": "E, dd-MM-y – E, dd-MM-y GGGGG",
1664
- "G": "E, dd-MM-y GGGGG – E, dd-MM-y GGGGG",
1665
- "M": "E, dd-MM-y – E, dd-MM-y GGGGG",
1666
- "y": "E, dd-MM-y – E, dd-MM-y GGGGG"
1667
- },
1668
- "GyMMM": {
1669
- "G": "MMM y G – MMM y G",
1670
- "M": "MMM – MMM y G",
1671
- "y": "MMM y – MMM y G"
1672
- },
1673
- "GyMMMd": {
1674
- "d": "d – d MMM y G",
1675
- "G": "d MMM y G – d MMM y G",
1676
- "M": "d MMM – d MMM y G",
1677
- "y": "d MMM y – d MMM y G"
1678
- },
1679
- "GyMMMEd": {
1680
- "d": "E, d MMM – E, d MMM y G",
1681
- "G": "E, d MMM y G – E, d MMM y G",
1682
- "M": "E, d MMM – E, d MMM y G",
1683
- "y": "E, d MMM y – E, d MMM y G"
1684
- },
1685
- "h": {
1686
- "a": "h'h' a – h'h' a",
1687
- "h": "h'h' - h'h' a"
1688
- },
1689
- "H": {
1690
- "H": "HH'h' - HH'h'"
1691
- },
1692
- "hm": {
1693
- "a": "h:mm a – h:mm a",
1694
- "h": "h:mm–h:mm a",
1695
- "m": "h:mm–h:mm a"
1696
- },
1697
- "Hm": {
1698
- "H": "HH:mm–HH:mm",
1699
- "m": "HH:mm–HH:mm"
1700
- },
1701
- "hmv": {
1702
- "a": "h:mm a – h:mm a v",
1703
- "h": "h:mm–h:mm a v",
1704
- "m": "h:mm–h:mm a v"
1705
- },
1706
- "Hmv": {
1707
- "H": "HH:mm–HH:mm v",
1708
- "m": "HH:mm–HH:mm v"
1709
- },
1710
- "hv": {
1711
- "a": "h'h' a – h'h' a v",
1712
- "h": "h'h'-h'h' a v"
1713
- },
1714
- "Hv": {
1715
- "H": "HH'h'-HH'h' v"
1716
- },
1717
- "M": {
1718
- "M": "'Tháng' M - 'Tháng' M"
1719
- },
1720
- "Md": {
1721
- "d": "dd/MM – dd/MM",
1722
- "M": "dd/MM – dd/MM"
1723
- },
1724
- "MEd": {
1725
- "d": "EEEE, dd/MM – EEEE, dd/MM",
1726
- "M": "EEEE, dd/MM – EEEE, dd/MM"
1727
- },
1728
- "MMM": {
1729
- "M": "MMM–MMM"
1730
- },
1731
- "MMMd": {
1732
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
1733
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
1734
- },
1735
- "MMMEd": {
1736
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
1737
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
1738
- },
1739
- "y": {
1740
- "y": "y–y G"
1741
- },
1742
- "yM": {
1743
- "M": "MM/y – MM/y G",
1744
- "y": "MM/y – MM/y G"
1745
- },
1746
- "yMd": {
1747
- "d": "dd/MM/y – dd/MM/y G",
1748
- "M": "dd/MM/y – dd/MM/y G",
1749
- "y": "dd/MM/y – dd/MM/y G"
1750
- },
1751
- "yMEd": {
1752
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
1753
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
1754
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
1755
- },
1756
- "yMMM": {
1757
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
1758
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
1759
- },
1760
- "yMMMd": {
1761
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
1762
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
1763
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
1764
- },
1765
- "yMMMEd": {
1766
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
1767
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
1768
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
1769
- },
1770
- "yMMMM": {
1771
- "M": "MMMM–MMMM y G",
1772
- "y": "MMMM y – MMMM y G"
1773
- }
1774
- }
1775
- },
1776
- "months": {
1777
- "format": {
1778
- "abbreviated": [
1779
- "Muh.",
1780
- "Saf.",
1781
- "Rab. I",
1782
- "Rab. II",
1783
- "Jum. I",
1784
- "Jum. II",
1785
- "Raj.",
1786
- "Sha.",
1787
- "Ram.",
1788
- "Shaw.",
1789
- "Dhuʻl-Q.",
1790
- "Dhuʻl-H."
1791
- ],
1792
- "narrow": [
1793
- "1",
1794
- "2",
1795
- "3",
1796
- "4",
1797
- "5",
1798
- "6",
1799
- "7",
1800
- "8",
1801
- "9",
1802
- "10",
1803
- "11",
1804
- "12"
1805
- ],
1806
- "wide": [
1807
- "Muharram",
1808
- "Safar",
1809
- "Rabiʻ I",
1810
- "Rabiʻ II",
1811
- "Jumada I",
1812
- "Jumada II",
1813
- "Rajab",
1814
- "Shaʻban",
1815
- "Ramadan",
1816
- "Shawwal",
1817
- "Dhuʻl-Qiʻdah",
1818
- "Dhuʻl-Hijjah"
1819
- ]
1820
- },
1821
- "stand-alone": {
1822
- "abbreviated": [
1823
- "Muh.",
1824
- "Saf.",
1825
- "Rab. I",
1826
- "Rab. II",
1827
- "Jum. I",
1828
- "Jum. II",
1829
- "Raj.",
1830
- "Sha.",
1831
- "Ram.",
1832
- "Shaw.",
1833
- "Dhuʻl-Q.",
1834
- "Dhuʻl-H."
1835
- ],
1836
- "narrow": [
1837
- "1",
1838
- "2",
1839
- "3",
1840
- "4",
1841
- "5",
1842
- "6",
1843
- "7",
1844
- "8",
1845
- "9",
1846
- "10",
1847
- "11",
1848
- "12"
1849
- ],
1850
- "wide": [
1851
- "Muharram",
1852
- "Safar",
1853
- "Rabiʻ I",
1854
- "Rabiʻ II",
1855
- "Jumada I",
1856
- "Jumada II",
1857
- "Rajab",
1858
- "Shaʻban",
1859
- "Ramadan",
1860
- "Shawwal",
1861
- "Dhuʻl-Qiʻdah",
1862
- "Dhuʻl-Hijjah"
1863
- ]
1864
- }
1865
- },
1866
- "days": {
1867
- "format": {
1868
- "abbreviated": [
1869
- "CN",
1870
- "Th 2",
1871
- "Th 3",
1872
- "Th 4",
1873
- "Th 5",
1874
- "Th 6",
1875
- "Th 7"
1876
- ],
1877
- "narrow": [
1878
- "CN",
1879
- "T2",
1880
- "T3",
1881
- "T4",
1882
- "T5",
1883
- "T6",
1884
- "T7"
1885
- ],
1886
- "short": [
1887
- "CN",
1888
- "T2",
1889
- "T3",
1890
- "T4",
1891
- "T5",
1892
- "T6",
1893
- "T7"
1894
- ],
1895
- "wide": [
1896
- "Chủ Nhật",
1897
- "Thứ Hai",
1898
- "Thứ Ba",
1899
- "Thứ Tư",
1900
- "Thứ Năm",
1901
- "Thứ Sáu",
1902
- "Thứ Bảy"
1903
- ]
1904
- },
1905
- "stand-alone": {
1906
- "abbreviated": [
1907
- "CN",
1908
- "Th 2",
1909
- "Th 3",
1910
- "Th 4",
1911
- "Th 5",
1912
- "Th 6",
1913
- "Th 7"
1914
- ],
1915
- "narrow": [
1916
- "CN",
1917
- "T2",
1918
- "T3",
1919
- "T4",
1920
- "T5",
1921
- "T6",
1922
- "T7"
1923
- ],
1924
- "short": [
1925
- "CN",
1926
- "T2",
1927
- "T3",
1928
- "T4",
1929
- "T5",
1930
- "T6",
1931
- "T7"
1932
- ],
1933
- "wide": [
1934
- "Chủ Nhật",
1935
- "Thứ Hai",
1936
- "Thứ Ba",
1937
- "Thứ Tư",
1938
- "Thứ Năm",
1939
- "Thứ Sáu",
1940
- "Thứ Bảy"
1941
- ]
1942
- }
1943
- },
1944
- "quarters": {
1945
- "format": {
1946
- "abbreviated": [
1947
- "Q1",
1948
- "Q2",
1949
- "Q3",
1950
- "Q4"
1951
- ],
1952
- "narrow": [
1953
- "1",
1954
- "2",
1955
- "3",
1956
- "4"
1957
- ],
1958
- "wide": [
1959
- "Quý 1",
1960
- "Quý 2",
1961
- "Quý 3",
1962
- "Quý 4"
1963
- ]
1964
- },
1965
- "stand-alone": {
1966
- "abbreviated": [
1967
- "Q1",
1968
- "Q2",
1969
- "Q3",
1970
- "Q4"
1971
- ],
1972
- "narrow": [
1973
- "1",
1974
- "2",
1975
- "3",
1976
- "4"
1977
- ],
1978
- "wide": [
1979
- "quý 1",
1980
- "quý 2",
1981
- "quý 3",
1982
- "quý 4"
1983
- ]
1984
- }
1985
- },
1986
- "dayPeriods": {
1987
- "format": {
1988
- "abbreviated": [
1989
- "SA",
1990
- "CH"
1991
- ],
1992
- "narrow": [
1993
- "s",
1994
- "c"
1995
- ],
1996
- "wide": [
1997
- "SA",
1998
- "CH"
1999
- ]
2000
- },
2001
- "stand-alone": {
2002
- "abbreviated": [
2003
- "SA",
2004
- "CH"
2005
- ],
2006
- "narrow": [
2007
- "SA",
2008
- "CH"
2009
- ],
2010
- "wide": [
2011
- "SA",
2012
- "CH"
2013
- ]
2014
- }
2015
- },
2016
- "era-wide": {
2017
- "0": "AH"
2018
- },
2019
- "era-abbreviated": {
2020
- "0": "AH"
2021
- },
2022
- "era-narrow": {
2023
- "0": "AH"
2024
- }
2025
- },
2026
- "ca-japanese": {
2027
- "dateFormats": {
2028
- "full": "EEEE, 'ngày' dd MMMM 'năm' y G",
2029
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2030
- "medium": "dd-MM-y G",
2031
- "short": "dd/MM/y G"
2032
- },
2033
- "timeFormats": {
2034
- "full": "HH:mm:ss zzzz",
2035
- "long": "HH:mm:ss z",
2036
- "medium": "HH:mm:ss",
2037
- "short": "HH:mm"
2038
- },
2039
- "dateTimeFormats": {
2040
- "full": "{1} 'lúc' {0}",
2041
- "long": "{1} 'lúc' {0}",
2042
- "medium": "{1} {0}",
2043
- "short": "{1} {0}",
2044
- "availableFormats": {
2045
- "Bh": "h B",
2046
- "Bhm": "h:mm B",
2047
- "Bhms": "h:mm:ss B",
2048
- "d": "'Ngày' dd",
2049
- "E": "ccc",
2050
- "EBhm": "E h:mm B",
2051
- "EBhms": "E h:mm:ss B",
2052
- "Ed": "E, dd",
2053
- "Ehm": "E h:mm a",
2054
- "EHm": "E HH:mm",
2055
- "Ehms": "E h:mm:ss a",
2056
- "EHms": "E HH:mm:ss",
2057
- "Gy": "y G",
2058
- "GyMMM": "MMM y G",
2059
- "GyMMMd": "d MMM, y G",
2060
- "GyMMMEd": "E, d MMM, y G",
2061
- "h": "h a",
2062
- "H": "HH",
2063
- "hm": "h:mm a",
2064
- "Hm": "HH:mm",
2065
- "hms": "h:mm:ss a",
2066
- "Hms": "HH:mm:ss",
2067
- "M": "L",
2068
- "Md": "dd/M",
2069
- "MEd": "E, dd/M",
2070
- "MMdd": "dd-MM",
2071
- "MMM": "LLL",
2072
- "MMMd": "d MMM",
2073
- "MMMEd": "E, d MMM",
2074
- "MMMMd": "dd MMMM",
2075
- "MMMMEd": "E, dd MMMM",
2076
- "ms": "mm:ss",
2077
- "y": "y G",
2078
- "yyyy": "y G",
2079
- "yyyyM": "M/y G",
2080
- "yyyyMd": "d/M/y G",
2081
- "yyyyMEd": "E, d/M/y GGGGG",
2082
- "yyyyMM": "MM-y G",
2083
- "yyyyMMM": "MMM y G",
2084
- "yyyyMMMd": "d MMM, y G",
2085
- "yyyyMMMEd": "E, d MMM, y G",
2086
- "yyyyMMMM": "MMMM y G",
2087
- "yyyyQQQ": "QQQ y G",
2088
- "yyyyQQQQ": "QQQQ y G"
2089
- },
2090
- "appendItems": {
2091
- "Day": "{0} ({2}: {1})",
2092
- "Day-Of-Week": "{0} {1}",
2093
- "Era": "{1} {0}",
2094
- "Hour": "{0} ({2}: {1})",
2095
- "Minute": "{0} ({2}: {1})",
2096
- "Month": "{0} ({2}: {1})",
2097
- "Quarter": "{0} ({2}: {1})",
2098
- "Second": "{0} ({2}: {1})",
2099
- "Timezone": "{0} {1}",
2100
- "Week": "{0} ({2}: {1})",
2101
- "Year": "{1} {0}"
2102
- },
2103
- "intervalFormats": {
2104
- "intervalFormatFallback": "{0} - {1}",
2105
- "Bh": {
2106
- "B": "h B – h B",
2107
- "h": "h – h B"
2108
- },
2109
- "Bhm": {
2110
- "B": "h:mm B – h:mm B",
2111
- "h": "h:mm – h:mm B",
2112
- "m": "h:mm – h:mm B"
2113
- },
2114
- "d": {
2115
- "d": "'Ngày' dd–dd"
2116
- },
2117
- "Gy": {
2118
- "G": "y G – y G",
2119
- "y": "y – y G"
2120
- },
2121
- "GyM": {
2122
- "G": "M/y GGGGG – M/y GGGGG",
2123
- "M": "M/y – M/y GGGGG",
2124
- "y": "M/y – M/y GGGGG"
2125
- },
2126
- "GyMd": {
2127
- "d": "dd-MM-y – dd-MM-y GGGGG",
2128
- "G": "dd-MM-y GGGGG – dd-MM-y GGGGG",
2129
- "M": "dd-MM-y – dd-MM-y GGGGG",
2130
- "y": "dd-MM-y – dd-MM-y GGGGG"
2131
- },
2132
- "GyMEd": {
2133
- "d": "E, dd-MM-y – E, dd-MM-y GGGGG",
2134
- "G": "E, dd-MM-y GGGGG – E, dd-MM-y GGGGG",
2135
- "M": "E, dd-MM-y – E, dd-MM-y GGGGG",
2136
- "y": "E, dd-MM-y – E, dd-MM-y GGGGG"
2137
- },
2138
- "GyMMM": {
2139
- "G": "MMM y G – MMM y G",
2140
- "M": "MMM – MMM y G",
2141
- "y": "MMM y – MMM y G"
2142
- },
2143
- "GyMMMd": {
2144
- "d": "d – d MMM y G",
2145
- "G": "d MMM y G – d MMM y G",
2146
- "M": "d MMM – d MMM y G",
2147
- "y": "d MMM y – d MMM y G"
2148
- },
2149
- "GyMMMEd": {
2150
- "d": "E, d MMM – E, d MMM y G",
2151
- "G": "E, d MMM y G – E, d MMM y G",
2152
- "M": "E, d MMM – E, d MMM y G",
2153
- "y": "E, d MMM y – E, d MMM y G"
2154
- },
2155
- "h": {
2156
- "a": "h'h' a – h'h' a",
2157
- "h": "h'h' - h'h' a"
2158
- },
2159
- "H": {
2160
- "H": "HH'h' - HH'h'"
2161
- },
2162
- "hm": {
2163
- "a": "h:mm a – h:mm a",
2164
- "h": "h:mm–h:mm a",
2165
- "m": "h:mm–h:mm a"
2166
- },
2167
- "Hm": {
2168
- "H": "HH:mm–HH:mm",
2169
- "m": "HH:mm–HH:mm"
2170
- },
2171
- "hmv": {
2172
- "a": "h:mm a – h:mm a v",
2173
- "h": "h:mm–h:mm a v",
2174
- "m": "h:mm–h:mm a v"
2175
- },
2176
- "Hmv": {
2177
- "H": "HH:mm–HH:mm v",
2178
- "m": "HH:mm–HH:mm v"
2179
- },
2180
- "hv": {
2181
- "a": "h'h' a – h'h' a v",
2182
- "h": "h'h'-h'h' a v"
2183
- },
2184
- "Hv": {
2185
- "H": "HH'h'-HH'h' v"
2186
- },
2187
- "M": {
2188
- "M": "'Tháng' M - 'Tháng' M"
2189
- },
2190
- "Md": {
2191
- "d": "dd/MM – dd/MM",
2192
- "M": "dd/MM – dd/MM"
2193
- },
2194
- "MEd": {
2195
- "d": "EEEE, dd/MM – EEEE, dd/MM",
2196
- "M": "EEEE, dd/MM – EEEE, dd/MM"
2197
- },
2198
- "MMM": {
2199
- "M": "MMM–MMM"
2200
- },
2201
- "MMMd": {
2202
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
2203
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
2204
- },
2205
- "MMMEd": {
2206
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
2207
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
2208
- },
2209
- "y": {
2210
- "y": "y–y G",
2211
- "G": "y G–y G"
2212
- },
2213
- "yM": {
2214
- "M": "MM/y – MM/y G",
2215
- "y": "MM/y – MM/y G",
2216
- "G": "MM/y G – MM/y G"
2217
- },
2218
- "yMd": {
2219
- "d": "dd/MM/y – dd/MM/y G",
2220
- "M": "dd/MM/y – dd/MM/y G",
2221
- "y": "dd/MM/y – dd/MM/y G",
2222
- "G": "dd/MM/y G – dd/MM/y G"
2223
- },
2224
- "yMEd": {
2225
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2226
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2227
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2228
- "G": "EEEE, dd/MM/y G – EEEE, dd/MM/y G"
2229
- },
2230
- "yMMM": {
2231
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
2232
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G",
2233
- "G": "'Tháng' M 'năm' y G - 'Tháng' M 'năm' y G"
2234
- },
2235
- "yMMMd": {
2236
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2237
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2238
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G",
2239
- "G": "'Ngày G' dd 'tháng' M 'năm' y G - 'Ngày G' dd 'tháng' M 'năm' y G"
2240
- },
2241
- "yMMMEd": {
2242
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
2243
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
2244
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G",
2245
- "G": "E, dd 'tháng' M, y G – E, dd 'tháng' M, y G"
2246
- },
2247
- "yMMMM": {
2248
- "M": "MMMM–MMMM y G",
2249
- "y": "MMMM y – MMMM y G",
2250
- "G": "MMMM y G – MMMM y G"
2251
- }
2252
- }
2253
- },
2254
- "months": {
2255
- "format": {
2256
- "abbreviated": [
2257
- "thg 1",
2258
- "thg 2",
2259
- "thg 3",
2260
- "thg 4",
2261
- "thg 5",
2262
- "thg 6",
2263
- "thg 7",
2264
- "thg 8",
2265
- "thg 9",
2266
- "thg 10",
2267
- "thg 11",
2268
- "thg 12"
2269
- ],
2270
- "narrow": [
2271
- "1",
2272
- "2",
2273
- "3",
2274
- "4",
2275
- "5",
2276
- "6",
2277
- "7",
2278
- "8",
2279
- "9",
2280
- "10",
2281
- "11",
2282
- "12"
2283
- ],
2284
- "wide": [
2285
- "tháng 1",
2286
- "tháng 2",
2287
- "tháng 3",
2288
- "tháng 4",
2289
- "tháng 5",
2290
- "tháng 6",
2291
- "tháng 7",
2292
- "tháng 8",
2293
- "tháng 9",
2294
- "tháng 10",
2295
- "tháng 11",
2296
- "tháng 12"
2297
- ]
2298
- },
2299
- "stand-alone": {
2300
- "abbreviated": [
2301
- "Thg 1",
2302
- "Thg 2",
2303
- "Thg 3",
2304
- "Thg 4",
2305
- "Thg 5",
2306
- "Thg 6",
2307
- "Thg 7",
2308
- "Thg 8",
2309
- "Thg 9",
2310
- "Thg 10",
2311
- "Thg 11",
2312
- "Thg 12"
2313
- ],
2314
- "narrow": [
2315
- "1",
2316
- "2",
2317
- "3",
2318
- "4",
2319
- "5",
2320
- "6",
2321
- "7",
2322
- "8",
2323
- "9",
2324
- "10",
2325
- "11",
2326
- "12"
2327
- ],
2328
- "wide": [
2329
- "Tháng 1",
2330
- "Tháng 2",
2331
- "Tháng 3",
2332
- "Tháng 4",
2333
- "Tháng 5",
2334
- "Tháng 6",
2335
- "Tháng 7",
2336
- "Tháng 8",
2337
- "Tháng 9",
2338
- "Tháng 10",
2339
- "Tháng 11",
2340
- "Tháng 12"
2341
- ]
2342
- }
2343
- },
2344
- "days": {
2345
- "format": {
2346
- "abbreviated": [
2347
- "CN",
2348
- "Th 2",
2349
- "Th 3",
2350
- "Th 4",
2351
- "Th 5",
2352
- "Th 6",
2353
- "Th 7"
2354
- ],
2355
- "narrow": [
2356
- "CN",
2357
- "T2",
2358
- "T3",
2359
- "T4",
2360
- "T5",
2361
- "T6",
2362
- "T7"
2363
- ],
2364
- "short": [
2365
- "CN",
2366
- "T2",
2367
- "T3",
2368
- "T4",
2369
- "T5",
2370
- "T6",
2371
- "T7"
2372
- ],
2373
- "wide": [
2374
- "Chủ Nhật",
2375
- "Thứ Hai",
2376
- "Thứ Ba",
2377
- "Thứ Tư",
2378
- "Thứ Năm",
2379
- "Thứ Sáu",
2380
- "Thứ Bảy"
2381
- ]
2382
- },
2383
- "stand-alone": {
2384
- "abbreviated": [
2385
- "CN",
2386
- "Th 2",
2387
- "Th 3",
2388
- "Th 4",
2389
- "Th 5",
2390
- "Th 6",
2391
- "Th 7"
2392
- ],
2393
- "narrow": [
2394
- "CN",
2395
- "T2",
2396
- "T3",
2397
- "T4",
2398
- "T5",
2399
- "T6",
2400
- "T7"
2401
- ],
2402
- "short": [
2403
- "CN",
2404
- "T2",
2405
- "T3",
2406
- "T4",
2407
- "T5",
2408
- "T6",
2409
- "T7"
2410
- ],
2411
- "wide": [
2412
- "Chủ Nhật",
2413
- "Thứ Hai",
2414
- "Thứ Ba",
2415
- "Thứ Tư",
2416
- "Thứ Năm",
2417
- "Thứ Sáu",
2418
- "Thứ Bảy"
2419
- ]
2420
- }
2421
- },
2422
- "quarters": {
2423
- "format": {
2424
- "abbreviated": [
2425
- "Q1",
2426
- "Q2",
2427
- "Q3",
2428
- "Q4"
2429
- ],
2430
- "narrow": [
2431
- "1",
2432
- "2",
2433
- "3",
2434
- "4"
2435
- ],
2436
- "wide": [
2437
- "Quý 1",
2438
- "Quý 2",
2439
- "Quý 3",
2440
- "Quý 4"
2441
- ]
2442
- },
2443
- "stand-alone": {
2444
- "abbreviated": [
2445
- "Q1",
2446
- "Q2",
2447
- "Q3",
2448
- "Q4"
2449
- ],
2450
- "narrow": [
2451
- "1",
2452
- "2",
2453
- "3",
2454
- "4"
2455
- ],
2456
- "wide": [
2457
- "quý 1",
2458
- "quý 2",
2459
- "quý 3",
2460
- "quý 4"
2461
- ]
2462
- }
2463
- },
2464
- "dayPeriods": {
2465
- "format": {
2466
- "abbreviated": [
2467
- "SA",
2468
- "CH"
2469
- ],
2470
- "narrow": [
2471
- "s",
2472
- "c"
2473
- ],
2474
- "wide": [
2475
- "SA",
2476
- "CH"
2477
- ]
2478
- },
2479
- "stand-alone": {
2480
- "abbreviated": [
2481
- "SA",
2482
- "CH"
2483
- ],
2484
- "narrow": [
2485
- "SA",
2486
- "CH"
2487
- ],
2488
- "wide": [
2489
- "SA",
2490
- "CH"
2491
- ]
2492
- }
2493
- },
2494
- "era-wide": {
2495
- "232": "Meiji",
2496
- "233": "Taishō",
2497
- "234": "Shōwa",
2498
- "235": "Heisei",
2499
- "236": "Reiwa"
2500
- },
2501
- "era-abbreviated": {
2502
- "232": "Meiji",
2503
- "233": "Taishō",
2504
- "234": "Shōwa",
2505
- "235": "Heisei",
2506
- "236": "Reiwa"
2507
- },
2508
- "era-narrow": {
2509
- "232": "M",
2510
- "233": "T",
2511
- "234": "S",
2512
- "235": "H",
2513
- "236": "R"
2514
- }
2515
- },
2516
- "ca-persian": {
2517
- "dateFormats": {
2518
- "full": "EEEE, 'ngày' dd 'tháng' MM 'năm' y G",
2519
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2520
- "medium": "dd-MM-y G",
2521
- "short": "dd/MM/y GGGGG"
2522
- },
2523
- "timeFormats": {
2524
- "full": "HH:mm:ss zzzz",
2525
- "long": "HH:mm:ss z",
2526
- "medium": "HH:mm:ss",
2527
- "short": "HH:mm"
2528
- },
2529
- "dateTimeFormats": {
2530
- "full": "{1} 'lúc' {0}",
2531
- "long": "{1} 'lúc' {0}",
2532
- "medium": "{1} {0}",
2533
- "short": "{1} {0}",
2534
- "availableFormats": {
2535
- "Bh": "h B",
2536
- "Bhm": "h:mm B",
2537
- "Bhms": "h:mm:ss B",
2538
- "d": "'Ngày' dd",
2539
- "E": "ccc",
2540
- "EBhm": "E h:mm B",
2541
- "EBhms": "E h:mm:ss B",
2542
- "Ed": "E, dd",
2543
- "Ehm": "E h:mm a",
2544
- "EHm": "E HH:mm",
2545
- "Ehms": "E h:mm:ss a",
2546
- "EHms": "E HH:mm:ss",
2547
- "Gy": "y G",
2548
- "GyMMM": "MMM y G",
2549
- "GyMMMd": "d MMM, y G",
2550
- "GyMMMEd": "E, d MMM, y G",
2551
- "h": "h a",
2552
- "H": "HH",
2553
- "hm": "h:mm a",
2554
- "Hm": "HH:mm",
2555
- "hms": "h:mm:ss a",
2556
- "Hms": "HH:mm:ss",
2557
- "M": "L",
2558
- "Md": "dd/M",
2559
- "MEd": "E, dd/M",
2560
- "MMdd": "dd-MM",
2561
- "MMM": "LLL",
2562
- "MMMd": "d MMM",
2563
- "MMMEd": "E, d MMM",
2564
- "MMMMd": "dd MMMM",
2565
- "MMMMEd": "E, dd MMMM",
2566
- "ms": "mm:ss",
2567
- "y": "y G",
2568
- "yyyy": "y G",
2569
- "yyyyM": "M/y G",
2570
- "yyyyMd": "d/M/y G",
2571
- "yyyyMEd": "E, d/M/y GGGGG",
2572
- "yyyyMM": "MM-y G",
2573
- "yyyyMMM": "MMM y G",
2574
- "yyyyMMMd": "d MMM, y G",
2575
- "yyyyMMMEd": "E, d MMM, y G",
2576
- "yyyyMMMM": "MMMM y G",
2577
- "yyyyQQQ": "QQQ y G",
2578
- "yyyyQQQQ": "QQQQ y G"
2579
- },
2580
- "appendItems": {
2581
- "Day": "{0} ({2}: {1})",
2582
- "Day-Of-Week": "{0} {1}",
2583
- "Era": "{1} {0}",
2584
- "Hour": "{0} ({2}: {1})",
2585
- "Minute": "{0} ({2}: {1})",
2586
- "Month": "{0} ({2}: {1})",
2587
- "Quarter": "{0} ({2}: {1})",
2588
- "Second": "{0} ({2}: {1})",
2589
- "Timezone": "{0} {1}",
2590
- "Week": "{0} ({2}: {1})",
2591
- "Year": "{1} {0}"
2592
- },
2593
- "intervalFormats": {
2594
- "intervalFormatFallback": "{0} - {1}",
2595
- "Bh": {
2596
- "B": "h B – h B",
2597
- "h": "h – h B"
2598
- },
2599
- "Bhm": {
2600
- "B": "h:mm B – h:mm B",
2601
- "h": "h:mm – h:mm B",
2602
- "m": "h:mm – h:mm B"
2603
- },
2604
- "d": {
2605
- "d": "'Ngày' dd–dd"
2606
- },
2607
- "Gy": {
2608
- "G": "y G – y G",
2609
- "y": "y – y G"
2610
- },
2611
- "GyM": {
2612
- "G": "M/y GGGGG – M/y GGGGG",
2613
- "M": "M/y – M/y GGGGG",
2614
- "y": "M/y – M/y GGGGG"
2615
- },
2616
- "GyMd": {
2617
- "d": "dd-MM-y – dd-MM-y GGGGG",
2618
- "G": "dd-MM-y GGGGG – dd-MM-y GGGGG",
2619
- "M": "dd-MM-y – dd-MM-y GGGGG",
2620
- "y": "dd-MM-y – dd-MM-y GGGGG"
2621
- },
2622
- "GyMEd": {
2623
- "d": "E, dd-MM-y – E, dd-MM-y GGGGG",
2624
- "G": "E, dd-MM-y GGGGG – E, dd-MM-y GGGGG",
2625
- "M": "E, dd-MM-y – E, dd-MM-y GGGGG",
2626
- "y": "E, dd-MM-y – E, dd-MM-y GGGGG"
2627
- },
2628
- "GyMMM": {
2629
- "G": "MMM y G – MMM y G",
2630
- "M": "MMM – MMM y G",
2631
- "y": "MMM y – MMM y G"
2632
- },
2633
- "GyMMMd": {
2634
- "d": "d – d MMM y G",
2635
- "G": "d MMM y G – d MMM y G",
2636
- "M": "d MMM – d MMM y G",
2637
- "y": "d MMM y – d MMM y G"
2638
- },
2639
- "GyMMMEd": {
2640
- "d": "E, d MMM – E, d MMM y G",
2641
- "G": "E, d MMM y G – E, d MMM y G",
2642
- "M": "E, d MMM – E, d MMM y G",
2643
- "y": "E, d MMM y – E, d MMM y G"
2644
- },
2645
- "h": {
2646
- "a": "h'h' a – h'h' a",
2647
- "h": "h'h' - h'h' a"
2648
- },
2649
- "H": {
2650
- "H": "HH'h' - HH'h'"
2651
- },
2652
- "hm": {
2653
- "a": "h:mm a – h:mm a",
2654
- "h": "h:mm–h:mm a",
2655
- "m": "h:mm–h:mm a"
2656
- },
2657
- "Hm": {
2658
- "H": "HH:mm–HH:mm",
2659
- "m": "HH:mm–HH:mm"
2660
- },
2661
- "hmv": {
2662
- "a": "h:mm a – h:mm a v",
2663
- "h": "h:mm–h:mm a v",
2664
- "m": "h:mm–h:mm a v"
2665
- },
2666
- "Hmv": {
2667
- "H": "HH:mm–HH:mm v",
2668
- "m": "HH:mm–HH:mm v"
2669
- },
2670
- "hv": {
2671
- "a": "h'h' a – h'h' a v",
2672
- "h": "h'h'-h'h' a v"
2673
- },
2674
- "Hv": {
2675
- "H": "HH'h'-HH'h' v"
2676
- },
2677
- "M": {
2678
- "M": "'Tháng' M - 'Tháng' M"
2679
- },
2680
- "Md": {
2681
- "d": "dd/MM – dd/MM",
2682
- "M": "dd/MM – dd/MM"
2683
- },
2684
- "MEd": {
2685
- "d": "EEEE, dd/MM – EEEE, dd/MM",
2686
- "M": "EEEE, dd/MM – EEEE, dd/MM"
2687
- },
2688
- "MMM": {
2689
- "M": "MMM–MMM"
2690
- },
2691
- "MMMd": {
2692
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
2693
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
2694
- },
2695
- "MMMEd": {
2696
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
2697
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
2698
- },
2699
- "y": {
2700
- "y": "y–y G"
2701
- },
2702
- "yM": {
2703
- "M": "MM/y – MM/y G",
2704
- "y": "MM/y – MM/y G"
2705
- },
2706
- "yMd": {
2707
- "d": "dd/MM/y – dd/MM/y G",
2708
- "M": "dd/MM/y – dd/MM/y G",
2709
- "y": "dd/MM/y – dd/MM/y G"
2710
- },
2711
- "yMEd": {
2712
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2713
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
2714
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
2715
- },
2716
- "yMMM": {
2717
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
2718
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
2719
- },
2720
- "yMMMd": {
2721
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2722
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
2723
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
2724
- },
2725
- "yMMMEd": {
2726
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
2727
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
2728
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
2729
- },
2730
- "yMMMM": {
2731
- "M": "MMMM–MMMM y G",
2732
- "y": "MMMM y – MMMM y G"
2733
- }
2734
- }
2735
- },
2736
- "months": {
2737
- "format": {
2738
- "abbreviated": [
2739
- "Farvardin",
2740
- "Ordibehesht",
2741
- "Khordad",
2742
- "Tir",
2743
- "Mordad",
2744
- "Shahrivar",
2745
- "Mehr",
2746
- "Aban",
2747
- "Azar",
2748
- "Dey",
2749
- "Bahman",
2750
- "Esfand"
2751
- ],
2752
- "narrow": [
2753
- "1",
2754
- "2",
2755
- "3",
2756
- "4",
2757
- "5",
2758
- "6",
2759
- "7",
2760
- "8",
2761
- "9",
2762
- "10",
2763
- "11",
2764
- "12"
2765
- ],
2766
- "wide": [
2767
- "Farvardin",
2768
- "Ordibehesht",
2769
- "Khordad",
2770
- "Tir",
2771
- "Mordad",
2772
- "Shahrivar",
2773
- "Mehr",
2774
- "Aban",
2775
- "Azar",
2776
- "Dey",
2777
- "Bahman",
2778
- "Esfand"
2779
- ]
2780
- },
2781
- "stand-alone": {
2782
- "abbreviated": [
2783
- "Farvardin",
2784
- "Ordibehesht",
2785
- "Khordad",
2786
- "Tir",
2787
- "Mordad",
2788
- "Shahrivar",
2789
- "Mehr",
2790
- "Aban",
2791
- "Azar",
2792
- "Dey",
2793
- "Bahman",
2794
- "Esfand"
2795
- ],
2796
- "narrow": [
2797
- "1",
2798
- "2",
2799
- "3",
2800
- "4",
2801
- "5",
2802
- "6",
2803
- "7",
2804
- "8",
2805
- "9",
2806
- "10",
2807
- "11",
2808
- "12"
2809
- ],
2810
- "wide": [
2811
- "Farvardin",
2812
- "Ordibehesht",
2813
- "Khordad",
2814
- "Tir",
2815
- "Mordad",
2816
- "Shahrivar",
2817
- "Mehr",
2818
- "Aban",
2819
- "Azar",
2820
- "Dey",
2821
- "Bahman",
2822
- "Esfand"
2823
- ]
2824
- }
2825
- },
2826
- "days": {
2827
- "format": {
2828
- "abbreviated": [
2829
- "CN",
2830
- "Th 2",
2831
- "Th 3",
2832
- "Th 4",
2833
- "Th 5",
2834
- "Th 6",
2835
- "Th 7"
2836
- ],
2837
- "narrow": [
2838
- "CN",
2839
- "T2",
2840
- "T3",
2841
- "T4",
2842
- "T5",
2843
- "T6",
2844
- "T7"
2845
- ],
2846
- "short": [
2847
- "CN",
2848
- "T2",
2849
- "T3",
2850
- "T4",
2851
- "T5",
2852
- "T6",
2853
- "T7"
2854
- ],
2855
- "wide": [
2856
- "Chủ Nhật",
2857
- "Thứ Hai",
2858
- "Thứ Ba",
2859
- "Thứ Tư",
2860
- "Thứ Năm",
2861
- "Thứ Sáu",
2862
- "Thứ Bảy"
2863
- ]
2864
- },
2865
- "stand-alone": {
2866
- "abbreviated": [
2867
- "CN",
2868
- "Th 2",
2869
- "Th 3",
2870
- "Th 4",
2871
- "Th 5",
2872
- "Th 6",
2873
- "Th 7"
2874
- ],
2875
- "narrow": [
2876
- "CN",
2877
- "T2",
2878
- "T3",
2879
- "T4",
2880
- "T5",
2881
- "T6",
2882
- "T7"
2883
- ],
2884
- "short": [
2885
- "CN",
2886
- "T2",
2887
- "T3",
2888
- "T4",
2889
- "T5",
2890
- "T6",
2891
- "T7"
2892
- ],
2893
- "wide": [
2894
- "Chủ Nhật",
2895
- "Thứ Hai",
2896
- "Thứ Ba",
2897
- "Thứ Tư",
2898
- "Thứ Năm",
2899
- "Thứ Sáu",
2900
- "Thứ Bảy"
2901
- ]
2902
- }
2903
- },
2904
- "quarters": {
2905
- "format": {
2906
- "abbreviated": [
2907
- "Q1",
2908
- "Q2",
2909
- "Q3",
2910
- "Q4"
2911
- ],
2912
- "narrow": [
2913
- "1",
2914
- "2",
2915
- "3",
2916
- "4"
2917
- ],
2918
- "wide": [
2919
- "Quý 1",
2920
- "Quý 2",
2921
- "Quý 3",
2922
- "Quý 4"
2923
- ]
2924
- },
2925
- "stand-alone": {
2926
- "abbreviated": [
2927
- "Q1",
2928
- "Q2",
2929
- "Q3",
2930
- "Q4"
2931
- ],
2932
- "narrow": [
2933
- "1",
2934
- "2",
2935
- "3",
2936
- "4"
2937
- ],
2938
- "wide": [
2939
- "quý 1",
2940
- "quý 2",
2941
- "quý 3",
2942
- "quý 4"
2943
- ]
2944
- }
2945
- },
2946
- "dayPeriods": {
2947
- "format": {
2948
- "abbreviated": [
2949
- "SA",
2950
- "CH"
2951
- ],
2952
- "narrow": [
2953
- "s",
2954
- "c"
2955
- ],
2956
- "wide": [
2957
- "SA",
2958
- "CH"
2959
- ]
2960
- },
2961
- "stand-alone": {
2962
- "abbreviated": [
2963
- "SA",
2964
- "CH"
2965
- ],
2966
- "narrow": [
2967
- "SA",
2968
- "CH"
2969
- ],
2970
- "wide": [
2971
- "SA",
2972
- "CH"
2973
- ]
2974
- }
2975
- },
2976
- "era-wide": {
2977
- "0": "AP"
2978
- },
2979
- "era-abbreviated": {
2980
- "0": "AP"
2981
- },
2982
- "era-narrow": {
2983
- "0": "AP"
2984
- }
2985
- },
2986
- "ca-buddhist": {
2987
- "dateFormats": {
2988
- "full": "EEEE, 'ngày' dd MMMM 'năm' y G",
2989
- "long": "'Ngày' dd 'tháng' M 'năm' y G",
2990
- "medium": "dd-MM-y G",
2991
- "short": "dd/MM/y GGGGG"
2992
- },
2993
- "timeFormats": {
2994
- "full": "HH:mm:ss zzzz",
2995
- "long": "HH:mm:ss z",
2996
- "medium": "HH:mm:ss",
2997
- "short": "HH:mm"
2998
- },
2999
- "dateTimeFormats": {
3000
- "full": "{1} 'lúc' {0}",
3001
- "long": "{1} 'lúc' {0}",
3002
- "medium": "{1} {0}",
3003
- "short": "{1} {0}",
3004
- "availableFormats": {
3005
- "Bh": "h B",
3006
- "Bhm": "h:mm B",
3007
- "Bhms": "h:mm:ss B",
3008
- "d": "'Ngày' dd",
3009
- "E": "ccc",
3010
- "EBhm": "E h:mm B",
3011
- "EBhms": "E h:mm:ss B",
3012
- "Ed": "E, dd",
3013
- "Ehm": "E h:mm a",
3014
- "EHm": "E HH:mm",
3015
- "Ehms": "E h:mm:ss a",
3016
- "EHms": "E HH:mm:ss",
3017
- "Gy": "y G",
3018
- "GyMMM": "MMM y G",
3019
- "GyMMMd": "d MMM, y G",
3020
- "GyMMMEd": "E, d MMM, y G",
3021
- "h": "h a",
3022
- "H": "HH",
3023
- "hm": "h:mm a",
3024
- "Hm": "HH:mm",
3025
- "hms": "h:mm:ss a",
3026
- "Hms": "HH:mm:ss",
3027
- "M": "'tháng' L",
3028
- "Md": "dd/M",
3029
- "MEd": "E, dd-M",
3030
- "MMdd": "dd-MM",
3031
- "MMM": "LLL",
3032
- "MMMd": "d MMM",
3033
- "MMMEd": "E, d MMM",
3034
- "MMMMd": "dd MMMM",
3035
- "MMMMEd": "E, dd MMMM",
3036
- "ms": "mm:ss",
3037
- "y": "y G",
3038
- "yyyy": "y G",
3039
- "yyyyM": "M/y G",
3040
- "yyyyMd": "d/M/y G",
3041
- "yyyyMEd": "E, d/M/y GGGGG",
3042
- "yyyyMM": "MM-y G",
3043
- "yyyyMMM": "MMM y G",
3044
- "yyyyMMMd": "d MMM, y G",
3045
- "yyyyMMMEd": "E, d MMM, y G",
3046
- "yyyyMMMM": "MMMM y G",
3047
- "yyyyQQQ": "QQQ y G",
3048
- "yyyyQQQQ": "QQQQ y G"
3049
- },
3050
- "appendItems": {
3051
- "Day": "{0} ({2}: {1})",
3052
- "Day-Of-Week": "{0} {1}",
3053
- "Era": "{1} {0}",
3054
- "Hour": "{0} ({2}: {1})",
3055
- "Minute": "{0} ({2}: {1})",
3056
- "Month": "{0} ({2}: {1})",
3057
- "Quarter": "{0} ({2}: {1})",
3058
- "Second": "{0} ({2}: {1})",
3059
- "Timezone": "{0} {1}",
3060
- "Week": "{0} ({2}: {1})",
3061
- "Year": "{1} {0}"
3062
- },
3063
- "intervalFormats": {
3064
- "intervalFormatFallback": "{0} - {1}",
3065
- "Bh": {
3066
- "B": "h B – h B",
3067
- "h": "h – h B"
3068
- },
3069
- "Bhm": {
3070
- "B": "h:mm B – h:mm B",
3071
- "h": "h:mm – h:mm B",
3072
- "m": "h:mm – h:mm B"
3073
- },
3074
- "d": {
3075
- "d": "'Ngày' dd–dd"
3076
- },
3077
- "Gy": {
3078
- "G": "y G – y G",
3079
- "y": "y – y G"
3080
- },
3081
- "GyM": {
3082
- "G": "M/y GGGGG – M/y GGGGG",
3083
- "M": "M/y – M/y GGGGG",
3084
- "y": "M/y – M/y GGGGG"
3085
- },
3086
- "GyMd": {
3087
- "d": "dd-MM-y – dd-MM-y GGGGG",
3088
- "G": "dd-MM-y GGGGG – dd-MM-y GGGGG",
3089
- "M": "dd-MM-y – dd-MM-y GGGGG",
3090
- "y": "dd-MM-y – dd-MM-y GGGGG"
3091
- },
3092
- "GyMEd": {
3093
- "d": "E, dd-MM-y – E, dd-MM-y GGGGG",
3094
- "G": "E, dd-MM-y GGGGG – E, dd-MM-y GGGGG",
3095
- "M": "E, dd-MM-y – E, dd-MM-y GGGGG",
3096
- "y": "E, dd-MM-y – E, dd-MM-y GGGGG"
3097
- },
3098
- "GyMMM": {
3099
- "G": "MMM y G – MMM y G",
3100
- "M": "MMM – MMM y G",
3101
- "y": "MMM y – MMM y G"
3102
- },
3103
- "GyMMMd": {
3104
- "d": "d – d MMM y G",
3105
- "G": "d MMM y G – d MMM y G",
3106
- "M": "d MMM – d MMM y G",
3107
- "y": "d MMM y – d MMM y G"
3108
- },
3109
- "GyMMMEd": {
3110
- "d": "E, d MMM – E, d MMM y G",
3111
- "G": "E, d MMM y G – E, d MMM y G",
3112
- "M": "E, d MMM – E, d MMM y G",
3113
- "y": "E, d MMM y – E, d MMM y G"
3114
- },
3115
- "h": {
3116
- "a": "h'h' a – h'h' a",
3117
- "h": "h'h' - h'h' a"
3118
- },
3119
- "H": {
3120
- "H": "HH'h' - HH'h'"
3121
- },
3122
- "hm": {
3123
- "a": "h:mm a – h:mm a",
3124
- "h": "h:mm–h:mm a",
3125
- "m": "h:mm–h:mm a"
3126
- },
3127
- "Hm": {
3128
- "H": "HH:mm–HH:mm",
3129
- "m": "HH:mm–HH:mm"
3130
- },
3131
- "hmv": {
3132
- "a": "h:mm a – h:mm a v",
3133
- "h": "h:mm–h:mm a v",
3134
- "m": "h:mm–h:mm a v"
3135
- },
3136
- "Hmv": {
3137
- "H": "HH:mm–HH:mm v",
3138
- "m": "HH:mm–HH:mm v"
3139
- },
3140
- "hv": {
3141
- "a": "h'h' a – h'h' a v",
3142
- "h": "h'h'-h'h' a v"
3143
- },
3144
- "Hv": {
3145
- "H": "HH'h'-HH'h' v"
3146
- },
3147
- "M": {
3148
- "M": "'Tháng' M - 'Tháng' M"
3149
- },
3150
- "Md": {
3151
- "d": "dd/MM – dd/MM",
3152
- "M": "dd/MM – dd/MM"
3153
- },
3154
- "MEd": {
3155
- "d": "EEEE, dd/MM – EEEE, dd/MM",
3156
- "M": "EEEE, dd/MM – EEEE, dd/MM"
3157
- },
3158
- "MMM": {
3159
- "M": "MMM–MMM"
3160
- },
3161
- "MMMd": {
3162
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M",
3163
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M"
3164
- },
3165
- "MMMEd": {
3166
- "d": "EEEE, 'ngày' dd – EEEE, 'ngày' dd 'tháng' M",
3167
- "M": "EEEE, 'ngày' dd 'tháng' M – EEEE, 'ngày' dd 'tháng' M"
3168
- },
3169
- "y": {
3170
- "y": "y–y G"
3171
- },
3172
- "yM": {
3173
- "M": "MM/y – MM/y G",
3174
- "y": "MM/y – MM/y G"
3175
- },
3176
- "yMd": {
3177
- "d": "dd/MM/y – dd/MM/y G",
3178
- "M": "dd/MM/y – dd/MM/y G",
3179
- "y": "dd/MM/y – dd/MM/y G"
3180
- },
3181
- "yMEd": {
3182
- "d": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
3183
- "M": "EEEE, dd/MM/y – EEEE, dd/MM/y G",
3184
- "y": "EEEE, dd/MM/y – EEEE, dd/MM/y G"
3185
- },
3186
- "yMMM": {
3187
- "M": "'Tháng' M - 'Tháng' M 'năm' y G",
3188
- "y": "'Tháng' M 'năm' y - 'Tháng' M 'năm' y G"
3189
- },
3190
- "yMMMd": {
3191
- "d": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
3192
- "M": "'Ngày' dd 'tháng' M - 'Ngày' dd 'tháng' M 'năm' y G",
3193
- "y": "'Ngày' dd 'tháng' M 'năm' y - 'Ngày' dd 'tháng' M 'năm' y G"
3194
- },
3195
- "yMMMEd": {
3196
- "d": "EEEE, 'ngày' dd MMM – EEEE, 'ngày' dd MMM 'năm' y G",
3197
- "M": "E, dd 'tháng' M – E, dd 'tháng' M, y G",
3198
- "y": "E, dd 'tháng' M, y – E, dd 'tháng' M, y G"
3199
- },
3200
- "yMMMM": {
3201
- "M": "MMMM–MMMM y G",
3202
- "y": "MMMM y – MMMM y G"
3203
- }
3204
- }
3205
- },
3206
- "months": {
3207
- "format": {
3208
- "abbreviated": [
3209
- "thg 1",
3210
- "thg 2",
3211
- "thg 3",
3212
- "thg 4",
3213
- "thg 5",
3214
- "thg 6",
3215
- "thg 7",
3216
- "thg 8",
3217
- "thg 9",
3218
- "thg 10",
3219
- "thg 11",
3220
- "thg 12"
3221
- ],
3222
- "narrow": [
3223
- "1",
3224
- "2",
3225
- "3",
3226
- "4",
3227
- "5",
3228
- "6",
3229
- "7",
3230
- "8",
3231
- "9",
3232
- "10",
3233
- "11",
3234
- "12"
3235
- ],
3236
- "wide": [
3237
- "tháng 1",
3238
- "tháng 2",
3239
- "tháng 3",
3240
- "tháng 4",
3241
- "tháng 5",
3242
- "tháng 6",
3243
- "tháng 7",
3244
- "tháng 8",
3245
- "tháng 9",
3246
- "tháng 10",
3247
- "tháng 11",
3248
- "tháng 12"
3249
- ]
3250
- },
3251
- "stand-alone": {
3252
- "abbreviated": [
3253
- "Thg 1",
3254
- "Thg 2",
3255
- "Thg 3",
3256
- "Thg 4",
3257
- "Thg 5",
3258
- "Thg 6",
3259
- "Thg 7",
3260
- "Thg 8",
3261
- "Thg 9",
3262
- "Thg 10",
3263
- "Thg 11",
3264
- "Thg 12"
3265
- ],
3266
- "narrow": [
3267
- "1",
3268
- "2",
3269
- "3",
3270
- "4",
3271
- "5",
3272
- "6",
3273
- "7",
3274
- "8",
3275
- "9",
3276
- "10",
3277
- "11",
3278
- "12"
3279
- ],
3280
- "wide": [
3281
- "Tháng 1",
3282
- "Tháng 2",
3283
- "Tháng 3",
3284
- "Tháng 4",
3285
- "Tháng 5",
3286
- "Tháng 6",
3287
- "Tháng 7",
3288
- "Tháng 8",
3289
- "Tháng 9",
3290
- "Tháng 10",
3291
- "Tháng 11",
3292
- "Tháng 12"
3293
- ]
3294
- }
3295
- },
3296
- "days": {
3297
- "format": {
3298
- "abbreviated": [
3299
- "CN",
3300
- "Th 2",
3301
- "Th 3",
3302
- "Th 4",
3303
- "Th 5",
3304
- "Th 6",
3305
- "Th 7"
3306
- ],
3307
- "narrow": [
3308
- "CN",
3309
- "T2",
3310
- "T3",
3311
- "T4",
3312
- "T5",
3313
- "T6",
3314
- "T7"
3315
- ],
3316
- "short": [
3317
- "CN",
3318
- "T2",
3319
- "T3",
3320
- "T4",
3321
- "T5",
3322
- "T6",
3323
- "T7"
3324
- ],
3325
- "wide": [
3326
- "Chủ Nhật",
3327
- "Thứ Hai",
3328
- "Thứ Ba",
3329
- "Thứ Tư",
3330
- "Thứ Năm",
3331
- "Thứ Sáu",
3332
- "Thứ Bảy"
3333
- ]
3334
- },
3335
- "stand-alone": {
3336
- "abbreviated": [
3337
- "CN",
3338
- "Th 2",
3339
- "Th 3",
3340
- "Th 4",
3341
- "Th 5",
3342
- "Th 6",
3343
- "Th 7"
3344
- ],
3345
- "narrow": [
3346
- "CN",
3347
- "T2",
3348
- "T3",
3349
- "T4",
3350
- "T5",
3351
- "T6",
3352
- "T7"
3353
- ],
3354
- "short": [
3355
- "CN",
3356
- "T2",
3357
- "T3",
3358
- "T4",
3359
- "T5",
3360
- "T6",
3361
- "T7"
3362
- ],
3363
- "wide": [
3364
- "Chủ Nhật",
3365
- "Thứ Hai",
3366
- "Thứ Ba",
3367
- "Thứ Tư",
3368
- "Thứ Năm",
3369
- "Thứ Sáu",
3370
- "Thứ Bảy"
3371
- ]
3372
- }
3373
- },
3374
- "quarters": {
3375
- "format": {
3376
- "abbreviated": [
3377
- "Q1",
3378
- "Q2",
3379
- "Q3",
3380
- "Q4"
3381
- ],
3382
- "narrow": [
3383
- "1",
3384
- "2",
3385
- "3",
3386
- "4"
3387
- ],
3388
- "wide": [
3389
- "Quý 1",
3390
- "Quý 2",
3391
- "Quý 3",
3392
- "Quý 4"
3393
- ]
3394
- },
3395
- "stand-alone": {
3396
- "abbreviated": [
3397
- "Q1",
3398
- "Q2",
3399
- "Q3",
3400
- "Q4"
3401
- ],
3402
- "narrow": [
3403
- "1",
3404
- "2",
3405
- "3",
3406
- "4"
3407
- ],
3408
- "wide": [
3409
- "quý 1",
3410
- "quý 2",
3411
- "quý 3",
3412
- "quý 4"
3413
- ]
3414
- }
3415
- },
3416
- "dayPeriods": {
3417
- "format": {
3418
- "abbreviated": [
3419
- "SA",
3420
- "CH"
3421
- ],
3422
- "narrow": [
3423
- "s",
3424
- "c"
3425
- ],
3426
- "wide": [
3427
- "SA",
3428
- "CH"
3429
- ]
3430
- },
3431
- "stand-alone": {
3432
- "abbreviated": [
3433
- "SA",
3434
- "CH"
3435
- ],
3436
- "narrow": [
3437
- "SA",
3438
- "CH"
3439
- ],
3440
- "wide": [
3441
- "SA",
3442
- "CH"
3443
- ]
3444
- }
3445
- },
3446
- "era-wide": {
3447
- "0": "BE"
3448
- },
3449
- "era-abbreviated": {
3450
- "0": "BE"
3451
- },
3452
- "era-narrow": {
3453
- "0": "BE"
3454
- }
3455
- },
3456
- "dateFields": {
3457
- "era": {
3458
- "displayName": "thời đại"
3459
- },
3460
- "year-wide": {
3461
- "displayName": "Năm",
3462
- "relative-type--1": "năm ngoái",
3463
- "relative-type-0": "năm nay",
3464
- "relative-type-1": "năm sau",
3465
- "relativeTime-type-future": {
3466
- "relativeTimePattern-count-other": "sau {0} năm nữa"
3467
- },
3468
- "relativeTime-type-past": {
3469
- "relativeTimePattern-count-other": "{0} năm trước"
3470
- }
3471
- },
3472
- "year-short": {
3473
- "displayName": "Năm",
3474
- "relative-type--1": "năm ngoái",
3475
- "relative-type-0": "năm nay",
3476
- "relative-type-1": "năm sau",
3477
- "relativeTime-type-future": {
3478
- "relativeTimePattern-count-other": "sau {0} năm nữa"
3479
- },
3480
- "relativeTime-type-past": {
3481
- "relativeTimePattern-count-other": "{0} năm trước"
3482
- }
3483
- },
3484
- "year-narrow": {
3485
- "displayName": "Năm",
3486
- "relative-type--1": "năm ngoái",
3487
- "relative-type-0": "năm nay",
3488
- "relative-type-1": "năm sau",
3489
- "relativeTime-type-future": {
3490
- "relativeTimePattern-count-other": "sau {0} năm nữa"
3491
- },
3492
- "relativeTime-type-past": {
3493
- "relativeTimePattern-count-other": "{0} năm trước"
3494
- }
3495
- },
3496
- "quarter-wide": {
3497
- "displayName": "Quý",
3498
- "relative-type--1": "quý trước",
3499
- "relative-type-0": "quý này",
3500
- "relative-type-1": "quý sau",
3501
- "relativeTime-type-future": {
3502
- "relativeTimePattern-count-other": "sau {0} quý nữa"
3503
- },
3504
- "relativeTime-type-past": {
3505
- "relativeTimePattern-count-other": "{0} quý trước"
3506
- }
3507
- },
3508
- "quarter-short": {
3509
- "displayName": "Quý",
3510
- "relative-type--1": "quý trước",
3511
- "relative-type-0": "quý này",
3512
- "relative-type-1": "quý sau",
3513
- "relativeTime-type-future": {
3514
- "relativeTimePattern-count-other": "sau {0} quý nữa"
3515
- },
3516
- "relativeTime-type-past": {
3517
- "relativeTimePattern-count-other": "{0} quý trước"
3518
- }
3519
- },
3520
- "quarter-narrow": {
3521
- "displayName": "Quý",
3522
- "relative-type--1": "quý trước",
3523
- "relative-type-0": "quý này",
3524
- "relative-type-1": "quý sau",
3525
- "relativeTime-type-future": {
3526
- "relativeTimePattern-count-other": "sau {0} quý nữa"
3527
- },
3528
- "relativeTime-type-past": {
3529
- "relativeTimePattern-count-other": "{0} quý trước"
3530
- }
3531
- },
3532
- "month-wide": {
3533
- "displayName": "Tháng",
3534
- "relative-type--1": "tháng trước",
3535
- "relative-type-0": "tháng này",
3536
- "relative-type-1": "tháng sau",
3537
- "relativeTime-type-future": {
3538
- "relativeTimePattern-count-other": "sau {0} tháng nữa"
3539
- },
3540
- "relativeTime-type-past": {
3541
- "relativeTimePattern-count-other": "{0} tháng trước"
3542
- }
3543
- },
3544
- "month-short": {
3545
- "displayName": "Tháng",
3546
- "relative-type--1": "tháng trước",
3547
- "relative-type-0": "tháng này",
3548
- "relative-type-1": "tháng sau",
3549
- "relativeTime-type-future": {
3550
- "relativeTimePattern-count-other": "sau {0} tháng nữa"
3551
- },
3552
- "relativeTime-type-past": {
3553
- "relativeTimePattern-count-other": "{0} tháng trước"
3554
- }
3555
- },
3556
- "month-narrow": {
3557
- "displayName": "Tháng",
3558
- "relative-type--1": "tháng trước",
3559
- "relative-type-0": "tháng này",
3560
- "relative-type-1": "tháng sau",
3561
- "relativeTime-type-future": {
3562
- "relativeTimePattern-count-other": "sau {0} tháng nữa"
3563
- },
3564
- "relativeTime-type-past": {
3565
- "relativeTimePattern-count-other": "{0} tháng trước"
3566
- }
3567
- },
3568
- "week-wide": {
3569
- "displayName": "Tuần",
3570
- "relative-type--1": "tuần trước",
3571
- "relative-type-0": "tuần này",
3572
- "relative-type-1": "tuần sau",
3573
- "relativeTime-type-future": {
3574
- "relativeTimePattern-count-other": "sau {0} tuần nữa"
3575
- },
3576
- "relativeTime-type-past": {
3577
- "relativeTimePattern-count-other": "{0} tuần trước"
3578
- },
3579
- "relativePeriod": "tuần {0}"
3580
- },
3581
- "week-short": {
3582
- "displayName": "Tuần",
3583
- "relative-type--1": "tuần trước",
3584
- "relative-type-0": "tuần này",
3585
- "relative-type-1": "tuần sau",
3586
- "relativeTime-type-future": {
3587
- "relativeTimePattern-count-other": "sau {0} tuần nữa"
3588
- },
3589
- "relativeTime-type-past": {
3590
- "relativeTimePattern-count-other": "{0} tuần trước"
3591
- },
3592
- "relativePeriod": "tuần {0}"
3593
- },
3594
- "week-narrow": {
3595
- "displayName": "Tuần",
3596
- "relative-type--1": "tuần trước",
3597
- "relative-type-0": "tuần này",
3598
- "relative-type-1": "tuần sau",
3599
- "relativeTime-type-future": {
3600
- "relativeTimePattern-count-other": "sau {0} tuần nữa"
3601
- },
3602
- "relativeTime-type-past": {
3603
- "relativeTimePattern-count-other": "{0} tuần trước"
3604
- },
3605
- "relativePeriod": "tuần {0}"
3606
- },
3607
- "day-wide": {
3608
- "displayName": "Ngày",
3609
- "relative-type--2": "Hôm kia",
3610
- "relative-type--1": "Hôm qua",
3611
- "relative-type-0": "Hôm nay",
3612
- "relative-type-1": "Ngày mai",
3613
- "relative-type-2": "Ngày kia",
3614
- "relativeTime-type-future": {
3615
- "relativeTimePattern-count-other": "sau {0} ngày nữa"
3616
- },
3617
- "relativeTime-type-past": {
3618
- "relativeTimePattern-count-other": "{0} ngày trước"
3619
- }
3620
- },
3621
- "day-short": {
3622
- "displayName": "Ngày",
3623
- "relative-type--2": "Hôm kia",
3624
- "relative-type--1": "Hôm qua",
3625
- "relative-type-0": "Hôm nay",
3626
- "relative-type-1": "Ngày mai",
3627
- "relative-type-2": "Ngày kia",
3628
- "relativeTime-type-future": {
3629
- "relativeTimePattern-count-other": "sau {0} ngày nữa"
3630
- },
3631
- "relativeTime-type-past": {
3632
- "relativeTimePattern-count-other": "{0} ngày trước"
3633
- }
3634
- },
3635
- "day-narrow": {
3636
- "displayName": "Ngày",
3637
- "relative-type--2": "Hôm kia",
3638
- "relative-type--1": "Hôm qua",
3639
- "relative-type-0": "Hôm nay",
3640
- "relative-type-1": "Ngày mai",
3641
- "relative-type-2": "Ngày kia",
3642
- "relativeTime-type-future": {
3643
- "relativeTimePattern-count-other": "sau {0} ngày nữa"
3644
- },
3645
- "relativeTime-type-past": {
3646
- "relativeTimePattern-count-other": "{0} ngày trước"
3647
- }
3648
- },
3649
- "weekday": {
3650
- "displayName": "ngày trong tuần"
3651
- },
3652
- "hour-wide": {
3653
- "displayName": "Giờ",
3654
- "relative-type-0": "giờ này",
3655
- "relativeTime-type-future": {
3656
- "relativeTimePattern-count-other": "sau {0} giờ nữa"
3657
- },
3658
- "relativeTime-type-past": {
3659
- "relativeTimePattern-count-other": "{0} giờ trước"
3660
- }
3661
- },
3662
- "hour-short": {
3663
- "displayName": "Giờ",
3664
- "relative-type-0": "giờ này",
3665
- "relativeTime-type-future": {
3666
- "relativeTimePattern-count-other": "sau {0} giờ nữa"
3667
- },
3668
- "relativeTime-type-past": {
3669
- "relativeTimePattern-count-other": "{0} giờ trước"
3670
- }
3671
- },
3672
- "hour-narrow": {
3673
- "displayName": "Giờ",
3674
- "relative-type-0": "giờ này",
3675
- "relativeTime-type-future": {
3676
- "relativeTimePattern-count-other": "sau {0} giờ nữa"
3677
- },
3678
- "relativeTime-type-past": {
3679
- "relativeTimePattern-count-other": "{0} giờ trước"
3680
- }
3681
- },
3682
- "minute-wide": {
3683
- "displayName": "Phút",
3684
- "relative-type-0": "phút này",
3685
- "relativeTime-type-future": {
3686
- "relativeTimePattern-count-other": "sau {0} phút nữa"
3687
- },
3688
- "relativeTime-type-past": {
3689
- "relativeTimePattern-count-other": "{0} phút trước"
3690
- }
3691
- },
3692
- "minute-short": {
3693
- "displayName": "Phút",
3694
- "relative-type-0": "phút này",
3695
- "relativeTime-type-future": {
3696
- "relativeTimePattern-count-other": "sau {0} phút nữa"
3697
- },
3698
- "relativeTime-type-past": {
3699
- "relativeTimePattern-count-other": "{0} phút trước"
3700
- }
3701
- },
3702
- "minute-narrow": {
3703
- "displayName": "Phút",
3704
- "relative-type-0": "phút này",
3705
- "relativeTime-type-future": {
3706
- "relativeTimePattern-count-other": "sau {0} phút nữa"
3707
- },
3708
- "relativeTime-type-past": {
3709
- "relativeTimePattern-count-other": "{0} phút trước"
3710
- }
3711
- },
3712
- "second-wide": {
3713
- "displayName": "Giây",
3714
- "relative-type-0": "bây giờ",
3715
- "relativeTime-type-future": {
3716
- "relativeTimePattern-count-other": "sau {0} giây nữa"
3717
- },
3718
- "relativeTime-type-past": {
3719
- "relativeTimePattern-count-other": "{0} giây trước"
3720
- }
3721
- },
3722
- "second-short": {
3723
- "displayName": "Giây",
3724
- "relative-type-0": "bây giờ",
3725
- "relativeTime-type-future": {
3726
- "relativeTimePattern-count-other": "sau {0} giây nữa"
3727
- },
3728
- "relativeTime-type-past": {
3729
- "relativeTimePattern-count-other": "{0} giây trước"
3730
- }
3731
- },
3732
- "second-narrow": {
3733
- "displayName": "Giây",
3734
- "relative-type-0": "bây giờ",
3735
- "relativeTime-type-future": {
3736
- "relativeTimePattern-count-other": "sau {0} giây nữa"
3737
- },
3738
- "relativeTime-type-past": {
3739
- "relativeTimePattern-count-other": "{0} giây trước"
3740
- }
3741
- },
3742
- "zone": {
3743
- "displayName": "Múi giờ"
3744
- }
3745
- },
3746
- "decimalFormat": {
3747
- "standard": "#,##0.###"
3748
- },
3749
- "decimalFormat-long": {
3750
- "1000-other": "0 nghìn",
3751
- "10000-other": "00 nghìn",
3752
- "100000-other": "000 nghìn",
3753
- "1000000-other": "0 triệu",
3754
- "10000000-other": "00 triệu",
3755
- "100000000-other": "000 triệu",
3756
- "1000000000-other": "0 tỷ",
3757
- "10000000000-other": "00 tỷ",
3758
- "100000000000-other": "000 tỷ",
3759
- "1000000000000-other": "0 nghìn tỷ",
3760
- "10000000000000-other": "00 nghìn tỷ",
3761
- "100000000000000-other": "000 nghìn tỷ"
3762
- },
3763
- "decimalFormat-short": {
3764
- "1000-other": "0 N",
3765
- "10000-other": "00 N",
3766
- "100000-other": "000 N",
3767
- "1000000-other": "0 Tr",
3768
- "10000000-other": "00 Tr",
3769
- "100000000-other": "000 Tr",
3770
- "1000000000-other": "0 T",
3771
- "10000000000-other": "00 T",
3772
- "100000000000-other": "000 T",
3773
- "1000000000000-other": "0 NT",
3774
- "10000000000000-other": "00 NT",
3775
- "100000000000000-other": "000 NT"
3776
- },
3777
- "scientificFormat": {
3778
- "standard": "#E0"
3779
- },
3780
- "percentFormat": {
3781
- "standard": "#,##0%"
3782
- },
3783
- "currencyFormat": {
3784
- "standard": "#,##0.00 ¤",
3785
- "accounting": "#,##0.00 ¤",
3786
- "currencySpacing": {
3787
- "beforeCurrency": {
3788
- "currencyMatch": "[:^S:]",
3789
- "surroundingMatch": "[:digit:]",
3790
- "insertBetween": " "
3791
- },
3792
- "afterCurrency": {
3793
- "currencyMatch": "[:^S:]",
3794
- "surroundingMatch": "[:digit:]",
3795
- "insertBetween": " "
3796
- }
3797
- },
3798
- "sap-standard": "#,##0.00 ¤",
3799
- "sap-accounting": "#,##0.00 ¤"
3800
- },
3801
- "miscPattern": {
3802
- "approximately": "~{0}",
3803
- "atLeast": "{0}+",
3804
- "atMost": "≤{0}",
3805
- "range": "{0}-{1}"
3806
- },
3807
- "currencyFormat-short": {
3808
- "1000-other": "0 N ¤",
3809
- "10000-other": "00 N ¤",
3810
- "100000-other": "000 N ¤",
3811
- "1000000-other": "0 Tr ¤",
3812
- "10000000-other": "00 Tr ¤",
3813
- "100000000-other": "000 Tr ¤",
3814
- "1000000000-other": "0 T ¤",
3815
- "10000000000-other": "00 T ¤",
3816
- "100000000000-other": "000 T ¤",
3817
- "1000000000000-other": "0 NT ¤",
3818
- "10000000000000-other": "00 NT ¤",
3819
- "100000000000000-other": "000 NT ¤"
3820
- },
3821
- "symbols-latn-decimal": ",",
3822
- "symbols-latn-group": ".",
3823
- "symbols-latn-list": ";",
3824
- "symbols-latn-percentSign": "%",
3825
- "symbols-latn-plusSign": "+",
3826
- "symbols-latn-minusSign": "-",
3827
- "symbols-latn-exponential": "E",
3828
- "symbols-latn-superscriptingExponent": "×",
3829
- "symbols-latn-perMille": "‰",
3830
- "symbols-latn-infinity": "∞",
3831
- "symbols-latn-nan": "NaN",
3832
- "symbols-latn-timeSeparator": ":",
3833
- "currencySymbols": {
3834
- "AUD": "AU$",
3835
- "BRL": "R$",
3836
- "CAD": "CA$",
3837
- "CNY": "CN¥",
3838
- "EUR": "€",
3839
- "GBP": "£",
3840
- "HKD": "HK$",
3841
- "ILS": "₪",
3842
- "INR": "₹",
3843
- "JPY": "JP¥",
3844
- "KRW": "₩",
3845
- "MXN": "MX$",
3846
- "NZD": "NZ$",
3847
- "THB": "฿",
3848
- "TWD": "NT$",
3849
- "USD": "US$",
3850
- "VND": "₫",
3851
- "XAF": "FCFA",
3852
- "XCD": "EC$",
3853
- "XOF": "CFA",
3854
- "XPF": "CFPF"
3855
- },
3856
- "rtl": false,
3857
- "listPattern-standard-wide": {
3858
- "2": "{0} và {1}",
3859
- "start": "{0}, {1}",
3860
- "middle": "{0}, {1}",
3861
- "end": "{0} và {1}"
3862
- },
3863
- "listPattern-or-wide": {
3864
- "2": "{0} hoặc {1}",
3865
- "start": "{0}, {1}",
3866
- "middle": "{0}, {1}",
3867
- "end": "{0} hoặc {1}"
3868
- },
3869
- "listPattern-or-short": {
3870
- "2": "{0} hoặc {1}",
3871
- "start": "{0}, {1}",
3872
- "middle": "{0}, {1}",
3873
- "end": "{0} hoặc {1}"
3874
- },
3875
- "listPattern-standard-short": {
3876
- "2": "{0} và {1}",
3877
- "start": "{0}, {1}",
3878
- "middle": "{0}, {1}",
3879
- "end": "{0} và {1}"
3880
- },
3881
- "units": {
3882
- "short": {
3883
- "per": {
3884
- "compoundUnitPattern": "{0}/{1}"
3885
- },
3886
- "acceleration-g-force": {
3887
- "displayName": "lực g",
3888
- "unitPattern-count-other": "{0} G"
3889
- },
3890
- "acceleration-meter-per-second-squared": {
3891
- "displayName": "m/s²",
3892
- "unitPattern-count-other": "{0} m/s²"
3893
- },
3894
- "angle-revolution": {
3895
- "displayName": "rev",
3896
- "unitPattern-count-other": "{0} rev"
3897
- },
3898
- "angle-radian": {
3899
- "displayName": "rad",
3900
- "unitPattern-count-other": "{0} rad"
3901
- },
3902
- "angle-degree": {
3903
- "displayName": "độ",
3904
- "unitPattern-count-other": "{0}°"
3905
- },
3906
- "angle-arc-minute": {
3907
- "displayName": "phút",
3908
- "unitPattern-count-other": "{0}′"
3909
- },
3910
- "angle-arc-second": {
3911
- "displayName": "giây",
3912
- "unitPattern-count-other": "{0}″"
3913
- },
3914
- "area-square-kilometer": {
3915
- "displayName": "km²",
3916
- "unitPattern-count-other": "{0} km²",
3917
- "perUnitPattern": "{0}/km²"
3918
- },
3919
- "area-hectare": {
3920
- "displayName": "ha",
3921
- "unitPattern-count-other": "{0} ha"
3922
- },
3923
- "area-square-meter": {
3924
- "displayName": "m²",
3925
- "unitPattern-count-other": "{0} m²",
3926
- "perUnitPattern": "{0}/m²"
3927
- },
3928
- "area-square-centimeter": {
3929
- "displayName": "cm²",
3930
- "unitPattern-count-other": "{0} cm²",
3931
- "perUnitPattern": "{0}/cm²"
3932
- },
3933
- "area-square-mile": {
3934
- "displayName": "mi²",
3935
- "unitPattern-count-other": "{0} mi²",
3936
- "perUnitPattern": "{0}/mi²"
3937
- },
3938
- "area-acre": {
3939
- "displayName": "mẫu",
3940
- "unitPattern-count-other": "{0} mẫu"
3941
- },
3942
- "area-square-yard": {
3943
- "displayName": "yd²",
3944
- "unitPattern-count-other": "{0} yd²"
3945
- },
3946
- "area-square-foot": {
3947
- "displayName": "ft²",
3948
- "unitPattern-count-other": "{0} ft²"
3949
- },
3950
- "area-square-inch": {
3951
- "displayName": "in²",
3952
- "unitPattern-count-other": "{0} in²",
3953
- "perUnitPattern": "{0}/in²"
3954
- },
3955
- "area-dunam": {
3956
- "displayName": "dunam",
3957
- "unitPattern-count-other": "{0} dunam"
3958
- },
3959
- "concentr-karat": {
3960
- "displayName": "kt",
3961
- "unitPattern-count-other": "{0} kt"
3962
- },
3963
- "concentr-milligram-per-deciliter": {
3964
- "displayName": "mg/dL",
3965
- "unitPattern-count-other": "{0} mg/dL"
3966
- },
3967
- "concentr-millimole-per-liter": {
3968
- "displayName": "mmol/L",
3969
- "unitPattern-count-other": "{0} mmol/L"
3970
- },
3971
- "concentr-part-per-million": {
3972
- "displayName": "ppm",
3973
- "unitPattern-count-other": "{0} ppm"
3974
- },
3975
- "concentr-percent": {
3976
- "displayName": "%",
3977
- "unitPattern-count-other": "{0}%"
3978
- },
3979
- "concentr-permille": {
3980
- "displayName": "‰",
3981
- "unitPattern-count-other": "{0}‰"
3982
- },
3983
- "concentr-permyriad": {
3984
- "displayName": "phần vạn",
3985
- "unitPattern-count-other": "{0}‱"
3986
- },
3987
- "concentr-mole": {
3988
- "displayName": "mol",
3989
- "unitPattern-count-other": "{0} mol"
3990
- },
3991
- "consumption-liter-per-kilometer": {
3992
- "displayName": "l/km",
3993
- "unitPattern-count-other": "{0} l/km"
3994
- },
3995
- "consumption-liter-per-100kilometers": {
3996
- "displayName": "L/100km",
3997
- "unitPattern-count-other": "{0} L/100km"
3998
- },
3999
- "consumption-mile-per-gallon": {
4000
- "displayName": "mpg",
4001
- "unitPattern-count-other": "{0} mpg"
4002
- },
4003
- "consumption-mile-per-gallon-imperial": {
4004
- "displayName": "mpg Imp.",
4005
- "unitPattern-count-other": "{0} mpg Imp."
4006
- },
4007
- "digital-petabyte": {
4008
- "displayName": "PByte",
4009
- "unitPattern-count-other": "{0} PB"
4010
- },
4011
- "digital-terabyte": {
4012
- "displayName": "TB",
4013
- "unitPattern-count-other": "{0} TB"
4014
- },
4015
- "digital-terabit": {
4016
- "displayName": "Tb",
4017
- "unitPattern-count-other": "{0} Tb"
4018
- },
4019
- "digital-gigabyte": {
4020
- "displayName": "GB",
4021
- "unitPattern-count-other": "{0} GB"
4022
- },
4023
- "digital-gigabit": {
4024
- "displayName": "Gb",
4025
- "unitPattern-count-other": "{0} Gb"
4026
- },
4027
- "digital-megabyte": {
4028
- "displayName": "MB",
4029
- "unitPattern-count-other": "{0} MB"
4030
- },
4031
- "digital-megabit": {
4032
- "displayName": "Mb",
4033
- "unitPattern-count-other": "{0} Mb"
4034
- },
4035
- "digital-kilobyte": {
4036
- "displayName": "kB",
4037
- "unitPattern-count-other": "{0} kB"
4038
- },
4039
- "digital-kilobit": {
4040
- "displayName": "kb",
4041
- "unitPattern-count-other": "{0} kb"
4042
- },
4043
- "digital-byte": {
4044
- "displayName": "byte",
4045
- "unitPattern-count-other": "{0} byte"
4046
- },
4047
- "digital-bit": {
4048
- "displayName": "bit",
4049
- "unitPattern-count-other": "{0} bit"
4050
- },
4051
- "duration-century": {
4052
- "displayName": "thế kỷ",
4053
- "unitPattern-count-other": "{0} thế kỷ"
4054
- },
4055
- "duration-year": {
4056
- "displayName": "năm",
4057
- "unitPattern-count-other": "{0} năm",
4058
- "perUnitPattern": "{0}/năm"
4059
- },
4060
- "duration-month": {
4061
- "displayName": "tháng",
4062
- "unitPattern-count-other": "{0} tháng",
4063
- "perUnitPattern": "{0}/tháng"
4064
- },
4065
- "duration-week": {
4066
- "displayName": "tuần",
4067
- "unitPattern-count-other": "{0} tuần",
4068
- "perUnitPattern": "{0}/tuần"
4069
- },
4070
- "duration-day": {
4071
- "displayName": "ngày",
4072
- "unitPattern-count-other": "{0} ngày",
4073
- "perUnitPattern": "{0}/ngày"
4074
- },
4075
- "duration-hour": {
4076
- "displayName": "giờ",
4077
- "unitPattern-count-other": "{0} giờ",
4078
- "perUnitPattern": "{0}/giờ"
4079
- },
4080
- "duration-minute": {
4081
- "displayName": "phút",
4082
- "unitPattern-count-other": "{0} phút",
4083
- "perUnitPattern": "{0}/phút"
4084
- },
4085
- "duration-second": {
4086
- "displayName": "giây",
4087
- "unitPattern-count-other": "{0} giây",
4088
- "perUnitPattern": "{0}/giây"
4089
- },
4090
- "duration-millisecond": {
4091
- "displayName": "mili giây",
4092
- "unitPattern-count-other": "{0} mili giây"
4093
- },
4094
- "duration-microsecond": {
4095
- "displayName": "μs",
4096
- "unitPattern-count-other": "{0} μs"
4097
- },
4098
- "duration-nanosecond": {
4099
- "displayName": "nano giây",
4100
- "unitPattern-count-other": "{0} nano giây"
4101
- },
4102
- "electric-ampere": {
4103
- "displayName": "A",
4104
- "unitPattern-count-other": "{0} A"
4105
- },
4106
- "electric-milliampere": {
4107
- "displayName": "mA",
4108
- "unitPattern-count-other": "{0} mA"
4109
- },
4110
- "electric-ohm": {
4111
- "displayName": "Ω",
4112
- "unitPattern-count-other": "{0} Ω"
4113
- },
4114
- "electric-volt": {
4115
- "displayName": "v",
4116
- "unitPattern-count-other": "{0} V"
4117
- },
4118
- "energy-kilocalorie": {
4119
- "displayName": "kcal",
4120
- "unitPattern-count-other": "{0} kcal"
4121
- },
4122
- "energy-calorie": {
4123
- "displayName": "cal",
4124
- "unitPattern-count-other": "{0} cal"
4125
- },
4126
- "energy-foodcalorie": {
4127
- "displayName": "Cal",
4128
- "unitPattern-count-other": "{0} Cal"
4129
- },
4130
- "energy-kilojoule": {
4131
- "displayName": "kJ",
4132
- "unitPattern-count-other": "{0} kJ"
4133
- },
4134
- "energy-joule": {
4135
- "displayName": "J",
4136
- "unitPattern-count-other": "{0} J"
4137
- },
4138
- "energy-kilowatt-hour": {
4139
- "displayName": "kWh",
4140
- "unitPattern-count-other": "{0} kWh"
4141
- },
4142
- "energy-electronvolt": {
4143
- "displayName": "electronvôn",
4144
- "unitPattern-count-other": "{0} eV"
4145
- },
4146
- "energy-british-thermal-unit": {
4147
- "displayName": "BTU",
4148
- "unitPattern-count-other": "{0} Btu"
4149
- },
4150
- "force-pound-force": {
4151
- "displayName": "pound-lực",
4152
- "unitPattern-count-other": "{0} lbf"
4153
- },
4154
- "force-newton": {
4155
- "displayName": "newton",
4156
- "unitPattern-count-other": "{0} N"
4157
- },
4158
- "frequency-gigahertz": {
4159
- "displayName": "GHz",
4160
- "unitPattern-count-other": "{0} GHz"
4161
- },
4162
- "frequency-megahertz": {
4163
- "displayName": "MHz",
4164
- "unitPattern-count-other": "{0} MHz"
4165
- },
4166
- "frequency-kilohertz": {
4167
- "displayName": "kHz",
4168
- "unitPattern-count-other": "{0} kHz"
4169
- },
4170
- "frequency-hertz": {
4171
- "displayName": "Hz",
4172
- "unitPattern-count-other": "{0} Hz"
4173
- },
4174
- "length-kilometer": {
4175
- "displayName": "km",
4176
- "unitPattern-count-other": "{0} km",
4177
- "perUnitPattern": "{0}/km"
4178
- },
4179
- "length-meter": {
4180
- "displayName": "m",
4181
- "unitPattern-count-other": "{0} m",
4182
- "perUnitPattern": "{0}/m"
4183
- },
4184
- "length-decimeter": {
4185
- "displayName": "dm",
4186
- "unitPattern-count-other": "{0} dm"
4187
- },
4188
- "length-centimeter": {
4189
- "displayName": "cm",
4190
- "unitPattern-count-other": "{0} cm",
4191
- "perUnitPattern": "{0}/cm"
4192
- },
4193
- "length-millimeter": {
4194
- "displayName": "mm",
4195
- "unitPattern-count-other": "{0} mm"
4196
- },
4197
- "length-micrometer": {
4198
- "displayName": "µm",
4199
- "unitPattern-count-other": "{0} µm"
4200
- },
4201
- "length-nanometer": {
4202
- "displayName": "nm",
4203
- "unitPattern-count-other": "{0} nm"
4204
- },
4205
- "length-picometer": {
4206
- "displayName": "pm",
4207
- "unitPattern-count-other": "{0} pm"
4208
- },
4209
- "length-mile": {
4210
- "displayName": "dặm",
4211
- "unitPattern-count-other": "{0} dặm"
4212
- },
4213
- "length-yard": {
4214
- "displayName": "yd",
4215
- "unitPattern-count-other": "{0} yd"
4216
- },
4217
- "length-foot": {
4218
- "displayName": "ft",
4219
- "unitPattern-count-other": "{0} ft",
4220
- "perUnitPattern": "{0}/ft"
4221
- },
4222
- "length-inch": {
4223
- "displayName": "inch",
4224
- "unitPattern-count-other": "{0} inch",
4225
- "perUnitPattern": "{0}/in"
4226
- },
4227
- "length-parsec": {
4228
- "displayName": "pc",
4229
- "unitPattern-count-other": "{0} pc"
4230
- },
4231
- "length-light-year": {
4232
- "displayName": "ly",
4233
- "unitPattern-count-other": "{0} ly"
4234
- },
4235
- "length-astronomical-unit": {
4236
- "displayName": "au",
4237
- "unitPattern-count-other": "{0} au"
4238
- },
4239
- "length-furlong": {
4240
- "displayName": "fur",
4241
- "unitPattern-count-other": "{0} fur"
4242
- },
4243
- "length-fathom": {
4244
- "displayName": "fm",
4245
- "unitPattern-count-other": "{0} fth"
4246
- },
4247
- "length-nautical-mile": {
4248
- "displayName": "nmi",
4249
- "unitPattern-count-other": "{0} nmi"
4250
- },
4251
- "length-mile-scandinavian": {
4252
- "displayName": "smi",
4253
- "unitPattern-count-other": "{0} smi"
4254
- },
4255
- "length-point": {
4256
- "displayName": "đ",
4257
- "unitPattern-count-other": "{0} đ"
4258
- },
4259
- "length-solar-radius": {
4260
- "displayName": "bán kính mặt trời",
4261
- "unitPattern-count-other": "{0} R☉"
4262
- },
4263
- "light-lux": {
4264
- "displayName": "lx",
4265
- "unitPattern-count-other": "{0} lx"
4266
- },
4267
- "light-solar-luminosity": {
4268
- "displayName": "độ sáng của mặt trời",
4269
- "unitPattern-count-other": "{0} L☉"
4270
- },
4271
- "mass-metric-ton": {
4272
- "displayName": "t",
4273
- "unitPattern-count-other": "{0} t"
4274
- },
4275
- "mass-kilogram": {
4276
- "displayName": "kg",
4277
- "unitPattern-count-other": "{0} kg",
4278
- "perUnitPattern": "{0}/kg"
4279
- },
4280
- "mass-gram": {
4281
- "displayName": "g",
4282
- "unitPattern-count-other": "{0} g",
4283
- "perUnitPattern": "{0}/g"
4284
- },
4285
- "mass-milligram": {
4286
- "displayName": "mg",
4287
- "unitPattern-count-other": "{0} mg"
4288
- },
4289
- "mass-microgram": {
4290
- "displayName": "µg",
4291
- "unitPattern-count-other": "{0} µg"
4292
- },
4293
- "mass-ton": {
4294
- "displayName": "tn",
4295
- "unitPattern-count-other": "{0} tn"
4296
- },
4297
- "mass-stone": {
4298
- "displayName": "st",
4299
- "unitPattern-count-other": "{0} st"
4300
- },
4301
- "mass-pound": {
4302
- "displayName": "pao",
4303
- "unitPattern-count-other": "{0} lb",
4304
- "perUnitPattern": "{0}/lb"
4305
- },
4306
- "mass-ounce": {
4307
- "displayName": "oz",
4308
- "unitPattern-count-other": "{0} oz",
4309
- "perUnitPattern": "{0}/oz"
4310
- },
4311
- "mass-ounce-troy": {
4312
- "displayName": "oz t",
4313
- "unitPattern-count-other": "{0} oz t"
4314
- },
4315
- "mass-carat": {
4316
- "displayName": "CD",
4317
- "unitPattern-count-other": "{0} CD"
4318
- },
4319
- "mass-dalton": {
4320
- "displayName": "dalton",
4321
- "unitPattern-count-other": "{0} Da"
4322
- },
4323
- "mass-earth-mass": {
4324
- "displayName": "Trọng lượng trái đất",
4325
- "unitPattern-count-other": "{0} M⊕"
4326
- },
4327
- "mass-solar-mass": {
4328
- "displayName": "trọng lượng mặt trời",
4329
- "unitPattern-count-other": "{0} M☉"
4330
- },
4331
- "power-gigawatt": {
4332
- "displayName": "GW",
4333
- "unitPattern-count-other": "{0} GW"
4334
- },
4335
- "power-megawatt": {
4336
- "displayName": "MW",
4337
- "unitPattern-count-other": "{0} MW"
4338
- },
4339
- "power-kilowatt": {
4340
- "displayName": "kW",
4341
- "unitPattern-count-other": "{0} kW"
4342
- },
4343
- "power-watt": {
4344
- "displayName": "W",
4345
- "unitPattern-count-other": "{0} W"
4346
- },
4347
- "power-milliwatt": {
4348
- "displayName": "mW",
4349
- "unitPattern-count-other": "{0} mW"
4350
- },
4351
- "power-horsepower": {
4352
- "displayName": "hp",
4353
- "unitPattern-count-other": "{0} hp"
4354
- },
4355
- "pressure-hectopascal": {
4356
- "displayName": "hPa",
4357
- "unitPattern-count-other": "{0} hPa"
4358
- },
4359
- "pressure-millimeter-of-mercury": {
4360
- "displayName": "mm Hg",
4361
- "unitPattern-count-other": "{0} mm Hg"
4362
- },
4363
- "pressure-pound-per-square-inch": {
4364
- "displayName": "psi",
4365
- "unitPattern-count-other": "{0} psi"
4366
- },
4367
- "pressure-inch-hg": {
4368
- "displayName": "inHg",
4369
- "unitPattern-count-other": "{0} inHg"
4370
- },
4371
- "pressure-millibar": {
4372
- "displayName": "mbar",
4373
- "unitPattern-count-other": "{0} mbar"
4374
- },
4375
- "pressure-atmosphere": {
4376
- "displayName": "atm",
4377
- "unitPattern-count-other": "{0} atm"
4378
- },
4379
- "pressure-kilopascal": {
4380
- "displayName": "kPa",
4381
- "unitPattern-count-other": "{0} kPa"
4382
- },
4383
- "pressure-megapascal": {
4384
- "displayName": "MPa",
4385
- "unitPattern-count-other": "{0} MPa"
4386
- },
4387
- "speed-kilometer-per-hour": {
4388
- "displayName": "km/h",
4389
- "unitPattern-count-other": "{0} km/h"
4390
- },
4391
- "speed-meter-per-second": {
4392
- "displayName": "m/s",
4393
- "unitPattern-count-other": "{0} m/s"
4394
- },
4395
- "speed-mile-per-hour": {
4396
- "displayName": "mi/h",
4397
- "unitPattern-count-other": "{0} mi/h"
4398
- },
4399
- "speed-knot": {
4400
- "displayName": "kn",
4401
- "unitPattern-count-other": "{0} kn"
4402
- },
4403
- "temperature-generic": {
4404
- "displayName": "°",
4405
- "unitPattern-count-other": "{0}°"
4406
- },
4407
- "temperature-celsius": {
4408
- "displayName": "°C",
4409
- "unitPattern-count-other": "{0}°C"
4410
- },
4411
- "temperature-fahrenheit": {
4412
- "displayName": "°F",
4413
- "unitPattern-count-other": "{0}°F"
4414
- },
4415
- "temperature-kelvin": {
4416
- "displayName": "K",
4417
- "unitPattern-count-other": "{0} K"
4418
- },
4419
- "torque-pound-foot": {
4420
- "displayName": "lbf⋅ft",
4421
- "unitPattern-count-other": "{0} lbf⋅ft"
4422
- },
4423
- "torque-newton-meter": {
4424
- "displayName": "N⋅m",
4425
- "unitPattern-count-other": "{0} N⋅m"
4426
- },
4427
- "volume-cubic-kilometer": {
4428
- "displayName": "km³",
4429
- "unitPattern-count-other": "{0} km³"
4430
- },
4431
- "volume-cubic-meter": {
4432
- "displayName": "m³",
4433
- "unitPattern-count-other": "{0} m³",
4434
- "perUnitPattern": "{0}/m³"
4435
- },
4436
- "volume-cubic-centimeter": {
4437
- "displayName": "cm³",
4438
- "unitPattern-count-other": "{0} cm³",
4439
- "perUnitPattern": "{0}/cm³"
4440
- },
4441
- "volume-cubic-mile": {
4442
- "displayName": "mi³",
4443
- "unitPattern-count-other": "{0} mi³"
4444
- },
4445
- "volume-cubic-yard": {
4446
- "displayName": "yd³",
4447
- "unitPattern-count-other": "{0} yd³"
4448
- },
4449
- "volume-cubic-foot": {
4450
- "displayName": "ft³",
4451
- "unitPattern-count-other": "{0} ft³"
4452
- },
4453
- "volume-cubic-inch": {
4454
- "displayName": "in³",
4455
- "unitPattern-count-other": "{0} in³"
4456
- },
4457
- "volume-megaliter": {
4458
- "displayName": "ML",
4459
- "unitPattern-count-other": "{0} ML"
4460
- },
4461
- "volume-hectoliter": {
4462
- "displayName": "hL",
4463
- "unitPattern-count-other": "{0} hL"
4464
- },
4465
- "volume-liter": {
4466
- "displayName": "l",
4467
- "unitPattern-count-other": "{0} L",
4468
- "perUnitPattern": "{0}/l"
4469
- },
4470
- "volume-deciliter": {
4471
- "displayName": "dL",
4472
- "unitPattern-count-other": "{0} dL"
4473
- },
4474
- "volume-centiliter": {
4475
- "displayName": "cL",
4476
- "unitPattern-count-other": "{0} cL"
4477
- },
4478
- "volume-milliliter": {
4479
- "displayName": "mL",
4480
- "unitPattern-count-other": "{0} mL"
4481
- },
4482
- "volume-pint-metric": {
4483
- "displayName": "mpt",
4484
- "unitPattern-count-other": "{0} mpt"
4485
- },
4486
- "volume-cup-metric": {
4487
- "displayName": "mcup",
4488
- "unitPattern-count-other": "{0} mc"
4489
- },
4490
- "volume-acre-foot": {
4491
- "displayName": "ac ft",
4492
- "unitPattern-count-other": "{0} ac ft"
4493
- },
4494
- "volume-bushel": {
4495
- "displayName": "bu",
4496
- "unitPattern-count-other": "{0} bu"
4497
- },
4498
- "volume-gallon": {
4499
- "displayName": "gal",
4500
- "unitPattern-count-other": "{0} gal",
4501
- "perUnitPattern": "{0}/gal"
4502
- },
4503
- "volume-gallon-imperial": {
4504
- "displayName": "gal Anh",
4505
- "unitPattern-count-other": "{0} gal Anh",
4506
- "perUnitPattern": "{0}/gal Anh"
4507
- },
4508
- "volume-quart": {
4509
- "displayName": "qt",
4510
- "unitPattern-count-other": "{0} qt"
4511
- },
4512
- "volume-pint": {
4513
- "displayName": "pt",
4514
- "unitPattern-count-other": "{0} pt"
4515
- },
4516
- "volume-cup": {
4517
- "displayName": "c",
4518
- "unitPattern-count-other": "{0} c"
4519
- },
4520
- "volume-fluid-ounce": {
4521
- "displayName": "fl oz",
4522
- "unitPattern-count-other": "{0} fl oz"
4523
- },
4524
- "volume-fluid-ounce-imperial": {
4525
- "displayName": "Oz",
4526
- "unitPattern-count-other": "{0} fl oz Imp."
4527
- },
4528
- "volume-tablespoon": {
4529
- "displayName": "thìa xúp",
4530
- "unitPattern-count-other": "{0} tbsp"
4531
- },
4532
- "volume-teaspoon": {
4533
- "displayName": "tsp",
4534
- "unitPattern-count-other": "{0} tsp"
4535
- },
4536
- "volume-barrel": {
4537
- "displayName": "thùng",
4538
- "unitPattern-count-other": "{0} thùng"
4539
- },
4540
- "coordinateUnit": {
4541
- "displayName": "hướng",
4542
- "east": "{0}Đ",
4543
- "north": "{0}B",
4544
- "south": "{0}N",
4545
- "west": "{0}T"
4546
- }
4547
- }
4548
- },
4549
- "lenient-scope-number": {
4550
- "minusSign": "-‒⁻₋−➖﹣-",
4551
- "commaSign": ",،٫、︐︑﹐﹑,、",
4552
- "plusSign": "+⁺₊➕﬩﹢+"
4553
- },
4554
- "currencyFormat-sap-short": {
4555
- "1000-other": "0 N ¤",
4556
- "10000-other": "00 N ¤",
4557
- "100000-other": "000 N ¤",
4558
- "1000000-other": "0 Tr ¤",
4559
- "10000000-other": "00 Tr ¤",
4560
- "100000000-other": "000 Tr ¤",
4561
- "1000000000-other": "0 T ¤",
4562
- "10000000000-other": "00 T ¤",
4563
- "100000000000-other": "000 T ¤",
4564
- "1000000000000-other": "0 NT ¤",
4565
- "10000000000000-other": "00 NT ¤",
4566
- "100000000000000-other": "000 NT ¤"
4567
- },
4568
- "currencyDigits": {
4569
- "ADP": 0,
4570
- "AFN": 0,
4571
- "ALL": 0,
4572
- "BHD": 3,
4573
- "BIF": 0,
4574
- "BYR": 0,
4575
- "CLF": 4,
4576
- "CLP": 0,
4577
- "DEFAULT": 2,
4578
- "DJF": 0,
4579
- "ESP": 0,
4580
- "GNF": 0,
4581
- "HUF": 0,
4582
- "IQD": 0,
4583
- "IRR": 0,
4584
- "ISK": 0,
4585
- "ITL": 0,
4586
- "JOD": 3,
4587
- "JPY": 0,
4588
- "KMF": 0,
4589
- "KPW": 0,
4590
- "KRW": 0,
4591
- "KWD": 3,
4592
- "LAK": 0,
4593
- "LBP": 0,
4594
- "LUF": 0,
4595
- "LYD": 3,
4596
- "MGA": 0,
4597
- "MGF": 0,
4598
- "MMK": 0,
4599
- "MRO": 0,
4600
- "OMR": 3,
4601
- "PYG": 0,
4602
- "RSD": 0,
4603
- "RWF": 0,
4604
- "SLL": 0,
4605
- "SOS": 0,
4606
- "STD": 0,
4607
- "SYP": 0,
4608
- "TMM": 0,
4609
- "TND": 3,
4610
- "TRL": 0,
4611
- "TWD": 0,
4612
- "UGX": 0,
4613
- "UYI": 0,
4614
- "UYW": 4,
4615
- "VND": 0,
4616
- "VUV": 0,
4617
- "XAF": 0,
4618
- "XOF": 0,
4619
- "XPF": 0,
4620
- "YER": 0,
4621
- "ZMK": 0,
4622
- "ZWD": 0
4623
- },
4624
- "plurals": {},
4625
- "weekData-minDays": 1,
4626
- "weekData-firstDay": 1,
4627
- "weekData-weekendStart": 6,
4628
- "weekData-weekendEnd": 0,
4629
- "timeData": {
4630
- "_allowed": "H h",
4631
- "_preferred": "H"
4632
- },
4633
- "eras-gregorian": {
4634
- "0": {
4635
- "_end": "0-12-31"
4636
- },
4637
- "1": {
4638
- "_start": "1-01-01"
4639
- }
4640
- },
4641
- "eras-islamic": {
4642
- "0": {
4643
- "_start": "622-7-15"
4644
- }
4645
- },
4646
- "eras-persian": {
4647
- "0": {
4648
- "_start": "622-01-01"
4649
- }
4650
- },
4651
- "eras-buddhist": {
4652
- "0": {
4653
- "_start": "-542-01-01"
4654
- }
4655
- },
4656
- "eras-japanese": {
4657
- "232": {
4658
- "_start": "1868-9-8"
4659
- },
4660
- "233": {
4661
- "_start": "1912-7-30"
4662
- },
4663
- "234": {
4664
- "_start": "1926-12-25"
4665
- },
4666
- "235": {
4667
- "_start": "1989-1-8"
4668
- },
4669
- "236": {
4670
- "_start": "2019-5-1"
4671
- }
4672
- }
4673
- }