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