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