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