@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,4888 +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": "abkhasisk",
6
- "ace": "achinesisk",
7
- "ach": "acoli",
8
- "ada": "adangme",
9
- "ady": "adyghe",
10
- "ae": "avestan",
11
- "af": "afrikaans",
12
- "afh": "afrihili",
13
- "agq": "aghem",
14
- "ain": "ainu",
15
- "ak": "akan",
16
- "akk": "akkadisk",
17
- "ale": "aleutisk",
18
- "alt": "sydaltaisk",
19
- "am": "amharisk",
20
- "an": "aragonesisk",
21
- "ang": "oldengelsk",
22
- "anp": "angika",
23
- "ar": "arabisk",
24
- "ar_001": "moderne standardarabisk",
25
- "arc": "aramæisk",
26
- "arn": "mapudungun",
27
- "arp": "arapaho",
28
- "ars": "Najd-arabisk",
29
- "arw": "arawak",
30
- "as": "assamesisk",
31
- "asa": "asu",
32
- "ast": "asturisk",
33
- "av": "avarisk",
34
- "awa": "awadhi",
35
- "ay": "aymara",
36
- "az": "aserbajdsjansk",
37
- "az_alt-short": "azeri",
38
- "ba": "bashkir",
39
- "bal": "baluchi",
40
- "ban": "balinesisk",
41
- "bas": "basaa",
42
- "bax": "bamun",
43
- "bbj": "ghomala",
44
- "be": "hviderussisk",
45
- "bej": "beja",
46
- "bem": "bemba",
47
- "bez": "bena",
48
- "bfd": "bafut",
49
- "bg": "bulgarsk",
50
- "bgn": "vestbaluchi",
51
- "bho": "bhojpuri",
52
- "bi": "bislama",
53
- "bik": "bikol",
54
- "bin": "bini",
55
- "bkm": "kom",
56
- "bla": "siksika",
57
- "bm": "bambara",
58
- "bn": "bengali",
59
- "bo": "tibetansk",
60
- "br": "bretonsk",
61
- "bra": "braj",
62
- "brx": "bodo",
63
- "bs": "bosnisk",
64
- "bss": "bakossi",
65
- "bua": "buriatisk",
66
- "bug": "buginesisk",
67
- "bum": "bulu",
68
- "byn": "blin",
69
- "byv": "medumba",
70
- "ca": "catalansk",
71
- "cad": "caddo",
72
- "car": "caribisk",
73
- "cay": "cayuga",
74
- "cch": "atsam",
75
- "ccp": "ccp",
76
- "ce": "tjetjensk",
77
- "ceb": "cebuano",
78
- "cgg": "chiga",
79
- "ch": "chamorro",
80
- "chb": "chibcha",
81
- "chg": "chagatai",
82
- "chk": "chuukese",
83
- "chm": "mari",
84
- "chn": "chinook",
85
- "cho": "choctaw",
86
- "chp": "chipewyan",
87
- "chr": "cherokee",
88
- "chy": "cheyenne",
89
- "ckb": "sorani",
90
- "co": "korsikansk",
91
- "cop": "koptisk",
92
- "cr": "cree",
93
- "crh": "krim-tyrkisk",
94
- "crs": "seselwa (kreol-fransk)",
95
- "cs": "tjekkisk",
96
- "csb": "kasjubisk",
97
- "cu": "kirkeslavisk",
98
- "cv": "chuvash",
99
- "cy": "walisisk",
100
- "da": "dansk",
101
- "dak": "dakota",
102
- "dar": "dargwa",
103
- "dav": "taita",
104
- "de": "tysk",
105
- "de_AT": "østrigsk tysk",
106
- "de_CH": "schweizerhøjtysk",
107
- "del": "delaware",
108
- "den": "athapaskisk",
109
- "dgr": "dogrib",
110
- "din": "dinka",
111
- "dje": "zarma",
112
- "doi": "dogri",
113
- "dsb": "nedersorbisk",
114
- "dua": "duala",
115
- "dum": "middelhollandsk",
116
- "dv": "divehi",
117
- "dyo": "jola-fonyi",
118
- "dyu": "dyula",
119
- "dz": "dzongkha",
120
- "dzg": "dazaga",
121
- "ebu": "kiembu",
122
- "ee": "ewe",
123
- "efi": "efik",
124
- "egy": "oldegyptisk",
125
- "eka": "ekajuk",
126
- "el": "græsk",
127
- "elx": "elamitisk",
128
- "en": "engelsk",
129
- "en_AU": "australsk engelsk",
130
- "en_CA": "canadisk engelsk",
131
- "en_GB": "britisk engelsk",
132
- "en_GB-alt-short": "engelsk (UK)",
133
- "en_US": "amerikansk engelsk",
134
- "en_US-alt-short": "engelsk (USA)",
135
- "enm": "middelengelsk",
136
- "eo": "esperanto",
137
- "es": "spansk",
138
- "es_419": "latinamerikansk spansk",
139
- "es_ES": "europæisk spansk",
140
- "es_MX": "mexicansk spansk",
141
- "et": "estisk",
142
- "eu": "baskisk",
143
- "ewo": "ewondo",
144
- "fa": "persisk",
145
- "fan": "fang",
146
- "fat": "fanti",
147
- "ff": "fulah",
148
- "fi": "finsk",
149
- "fil": "filippinsk",
150
- "fj": "fijiansk",
151
- "fo": "færøsk",
152
- "fon": "fon",
153
- "fr": "fransk",
154
- "fr_CA": "canadisk fransk",
155
- "fr_CH": "schweizisk fransk",
156
- "frc": "cajunfransk",
157
- "frm": "middelfransk",
158
- "fro": "oldfransk",
159
- "frr": "nordfrisisk",
160
- "frs": "østfrisisk",
161
- "fur": "friulian",
162
- "fy": "vestfrisisk",
163
- "ga": "irsk",
164
- "gaa": "ga",
165
- "gag": "gagauzisk",
166
- "gan": "gan-kinesisk",
167
- "gay": "gayo",
168
- "gba": "gbaya",
169
- "gd": "skotsk gælisk",
170
- "gez": "geez",
171
- "gil": "gilbertesisk",
172
- "gl": "galicisk",
173
- "gmh": "middelhøjtysk",
174
- "gn": "guarani",
175
- "goh": "oldhøjtysk",
176
- "gon": "gondi",
177
- "gor": "gorontalo",
178
- "got": "gotisk",
179
- "grb": "grebo",
180
- "grc": "oldgræsk",
181
- "gsw": "schweizertysk",
182
- "gu": "gujarati",
183
- "guz": "gusii",
184
- "gv": "manx",
185
- "gwi": "gwichin",
186
- "ha": "hausa",
187
- "hai": "haida",
188
- "hak": "hakka-kinesisk",
189
- "haw": "hawaiiansk",
190
- "he": "hebraisk",
191
- "hi": "hindi",
192
- "hil": "hiligaynon",
193
- "hit": "hittitisk",
194
- "hmn": "hmong",
195
- "ho": "hirimotu",
196
- "hr": "kroatisk",
197
- "hsb": "øvresorbisk",
198
- "hsn": "xiang-kinesisk",
199
- "ht": "haitisk",
200
- "hu": "ungarsk",
201
- "hup": "hupa",
202
- "hy": "armensk",
203
- "hz": "herero",
204
- "ia": "interlingua",
205
- "iba": "iban",
206
- "ibb": "ibibio",
207
- "id": "indonesisk",
208
- "ie": "interlingue",
209
- "ig": "igbo",
210
- "ii": "sichuan yi",
211
- "ik": "inupiaq",
212
- "ilo": "iloko",
213
- "inh": "ingush",
214
- "io": "ido",
215
- "is": "islandsk",
216
- "it": "italiensk",
217
- "iu": "inuktitut",
218
- "ja": "japansk",
219
- "jbo": "lojban",
220
- "jgo": "ngomba",
221
- "jmc": "machame",
222
- "jpr": "jødisk-persisk",
223
- "jrb": "jødisk-arabisk",
224
- "jv": "javanesisk",
225
- "ka": "georgisk",
226
- "kaa": "karakalpakisk",
227
- "kab": "kabylisk",
228
- "kac": "kachin",
229
- "kaj": "jju",
230
- "kam": "kamba",
231
- "kaw": "kawi",
232
- "kbd": "kabardian",
233
- "kbl": "kanembu",
234
- "kcg": "tyap",
235
- "kde": "makonde",
236
- "kea": "kapverdisk",
237
- "kfo": "koro",
238
- "kg": "kongo",
239
- "kha": "khasi",
240
- "kho": "khotanesisk",
241
- "khq": "koyra-chiini",
242
- "ki": "kikuyu",
243
- "kj": "kuanyama",
244
- "kk": "kasakhisk",
245
- "kkj": "kako",
246
- "kl": "grønlandsk",
247
- "kln": "kalenjin",
248
- "km": "khmer",
249
- "kmb": "kimbundu",
250
- "kn": "kannada",
251
- "ko": "koreansk",
252
- "koi": "komi-permjakisk",
253
- "kok": "konkani",
254
- "kos": "kosraean",
255
- "kpe": "kpelle",
256
- "kr": "kanuri",
257
- "krc": "karatjai-balkar",
258
- "krl": "karelsk",
259
- "kru": "kurukh",
260
- "ks": "kashmiri",
261
- "ksb": "shambala",
262
- "ksf": "bafia",
263
- "ksh": "kölsch",
264
- "ku": "kurdisk",
265
- "kum": "kymyk",
266
- "kut": "kutenaj",
267
- "kv": "komi",
268
- "kw": "cornisk",
269
- "ky": "kirgisisk",
270
- "la": "latin",
271
- "lad": "ladino",
272
- "lag": "langi",
273
- "lah": "lahnda",
274
- "lam": "lamba",
275
- "lb": "luxembourgsk",
276
- "lez": "lezghian",
277
- "lg": "ganda",
278
- "li": "limburgsk",
279
- "lkt": "lakota",
280
- "ln": "lingala",
281
- "lo": "lao",
282
- "lol": "mongo",
283
- "lou": "Louisiana-kreolsk",
284
- "loz": "lozi",
285
- "lrc": "nordluri",
286
- "lt": "litauisk",
287
- "lu": "luba-Katanga",
288
- "lua": "luba-Lulua",
289
- "lui": "luiseno",
290
- "lun": "lunda",
291
- "luo": "luo",
292
- "lus": "lushai",
293
- "luy": "luyana",
294
- "lv": "lettisk",
295
- "mad": "madurese",
296
- "maf": "mafa",
297
- "mag": "magahi",
298
- "mai": "maithili",
299
- "mak": "makasar",
300
- "man": "mandingo",
301
- "mas": "masai",
302
- "mde": "maba",
303
- "mdf": "moksha",
304
- "mdr": "mandar",
305
- "men": "mende",
306
- "mer": "meru",
307
- "mfe": "morisyen",
308
- "mg": "malagassisk",
309
- "mga": "middelirsk",
310
- "mgh": "makhuwa-meetto",
311
- "mgo": "meta",
312
- "mh": "marshallese",
313
- "mi": "maori",
314
- "mic": "micmac",
315
- "min": "minangkabau",
316
- "mk": "makedonsk",
317
- "ml": "malayalam",
318
- "mn": "mongolsk",
319
- "mnc": "manchu",
320
- "mni": "manipuri",
321
- "moh": "mohawk",
322
- "mos": "mossi",
323
- "mr": "marathisk",
324
- "ms": "malajisk",
325
- "mt": "maltesisk",
326
- "mua": "mundang",
327
- "mul": "flere sprog",
328
- "mus": "creek",
329
- "mwl": "mirandesisk",
330
- "mwr": "marwari",
331
- "my": "burmesisk",
332
- "mye": "myene",
333
- "myv": "erzya",
334
- "mzn": "mazenisk",
335
- "na": "nauru",
336
- "nan": "min-kinesisk",
337
- "nap": "napolitansk",
338
- "naq": "nama",
339
- "nb": "norsk bokmål",
340
- "nd": "nordndebele",
341
- "nds": "nedertysk",
342
- "nds_NL": "nedertysk (Holland)",
343
- "ne": "nepalesisk",
344
- "new": "newari",
345
- "ng": "ndonga",
346
- "nia": "nias",
347
- "niu": "niueansk",
348
- "nl": "hollandsk",
349
- "nl_BE": "flamsk",
350
- "nmg": "kwasio",
351
- "nn": "nynorsk",
352
- "nnh": "ngiemboon",
353
- "no": "norsk",
354
- "nog": "nogai",
355
- "non": "oldislandsk",
356
- "nqo": "n-ko",
357
- "nr": "sydndebele",
358
- "nso": "nordsotho",
359
- "nus": "nuer",
360
- "nv": "navajo",
361
- "nwc": "klassisk newarisk",
362
- "ny": "nyanja",
363
- "nym": "nyamwezi",
364
- "nyn": "nyankole",
365
- "nyo": "nyoro-sprog",
366
- "nzi": "nzima",
367
- "oc": "occitansk",
368
- "oj": "ojibwa",
369
- "om": "oromo",
370
- "or": "oriya",
371
- "os": "ossetisk",
372
- "osa": "osage",
373
- "ota": "osmannisk tyrkisk",
374
- "pa": "punjabisk",
375
- "pag": "pangasinan",
376
- "pal": "pahlavi",
377
- "pam": "pampanga",
378
- "pap": "papiamento",
379
- "pau": "palauansk",
380
- "pcm": "nigeriansk pidgin",
381
- "peo": "oldpersisk",
382
- "phn": "fønikisk",
383
- "pi": "pali",
384
- "pl": "polsk",
385
- "pon": "ponape",
386
- "prg": "preussisk",
387
- "pro": "oldprovencalsk",
388
- "ps": "pashto",
389
- "ps_alt-variant": "pushto",
390
- "pt": "portugisisk",
391
- "pt_BR": "brasiliansk portugisisk",
392
- "pt_PT": "europæisk portugisisk",
393
- "qu": "quechua",
394
- "quc": "quiché",
395
- "raj": "rajasthani",
396
- "rap": "rapanui",
397
- "rar": "rarotonga",
398
- "rm": "rætoromansk",
399
- "rn": "rundi",
400
- "ro": "rumænsk",
401
- "ro_MD": "moldovisk",
402
- "rof": "rombo",
403
- "rom": "romani",
404
- "root": "rod",
405
- "ru": "russisk",
406
- "rup": "arumænsk",
407
- "rw": "kinyarwanda",
408
- "rwk": "rwa",
409
- "sa": "sanskrit",
410
- "sad": "sandawe",
411
- "sah": "yakut",
412
- "sam": "samaritansk aramæisk",
413
- "saq": "samburu",
414
- "sas": "sasak",
415
- "sat": "santali",
416
- "sba": "ngambay",
417
- "sbp": "sangu",
418
- "sc": "sardinsk",
419
- "scn": "siciliansk",
420
- "sco": "skotsk",
421
- "sd": "sindhi",
422
- "sdh": "sydkurdisk",
423
- "se": "nordsamisk",
424
- "see": "seneca",
425
- "seh": "sena",
426
- "sel": "selkupisk",
427
- "ses": "koyraboro senni",
428
- "sg": "sango",
429
- "sga": "oldirsk",
430
- "sh": "serbokroatisk",
431
- "shi": "tachelhit",
432
- "shn": "shan",
433
- "shu": "tchadisk arabisk",
434
- "si": "singalesisk",
435
- "sid": "sidamo",
436
- "sk": "slovakisk",
437
- "sl": "slovensk",
438
- "sm": "samoansk",
439
- "sma": "sydsamisk",
440
- "smj": "lulesamisk",
441
- "smn": "enaresamisk",
442
- "sms": "skoltesamisk",
443
- "sn": "shona",
444
- "snk": "soninke",
445
- "so": "somali",
446
- "sog": "sogdiansk",
447
- "sq": "albansk",
448
- "sr": "serbisk",
449
- "srn": "sranan tongo",
450
- "srr": "serer",
451
- "ss": "swati",
452
- "ssy": "saho",
453
- "st": "sydsotho",
454
- "su": "sundanesisk",
455
- "suk": "sukuma",
456
- "sus": "susu",
457
- "sux": "sumerisk",
458
- "sv": "svensk",
459
- "sw": "swahili",
460
- "sw_CD": "congolesisk swahili",
461
- "swb": "shimaore",
462
- "syc": "klassisk syrisk",
463
- "syr": "syrisk",
464
- "ta": "tamil",
465
- "te": "telugu",
466
- "tem": "temne",
467
- "teo": "teso",
468
- "ter": "tereno",
469
- "tet": "tetum",
470
- "tg": "tadsjikisk",
471
- "th": "thai",
472
- "ti": "tigrinya",
473
- "tig": "tigre",
474
- "tiv": "tivi",
475
- "tk": "turkmensk",
476
- "tkl": "tokelau",
477
- "tl": "tagalog",
478
- "tlh": "klingon",
479
- "tli": "tlingit",
480
- "tmh": "tamashek",
481
- "tn": "tswana",
482
- "to": "tongansk",
483
- "tog": "nyasa tongansk",
484
- "tpi": "tok pisin",
485
- "tr": "tyrkisk",
486
- "trv": "taroko",
487
- "ts": "tsonga",
488
- "tsi": "tsimshisk",
489
- "tt": "tatarisk",
490
- "tum": "tumbuka",
491
- "tvl": "tuvaluansk",
492
- "tw": "twi",
493
- "twq": "tasawaq",
494
- "ty": "tahitiansk",
495
- "tyv": "tuvinian",
496
- "tzm": "centralmarokkansk tamazight",
497
- "udm": "udmurt",
498
- "ug": "uygurisk",
499
- "ug_alt-variant": "uighurisk",
500
- "uga": "ugaristisk",
501
- "uk": "ukrainsk",
502
- "umb": "umbundu",
503
- "und": "ukendt sprog",
504
- "ur": "urdu",
505
- "uz": "usbekisk",
506
- "vai": "vai",
507
- "ve": "venda",
508
- "vi": "vietnamesisk",
509
- "vo": "volapyk",
510
- "vot": "votisk",
511
- "vun": "vunjo",
512
- "wa": "vallonsk",
513
- "wae": "walsertysk",
514
- "wal": "walamo",
515
- "war": "waray",
516
- "was": "washo",
517
- "wbp": "walbiri",
518
- "wo": "wolof",
519
- "wuu": "wu-kinesisk",
520
- "xal": "kalmyk",
521
- "xh": "isiXhosa",
522
- "xog": "soga",
523
- "yao": "yao",
524
- "yap": "yapese",
525
- "yav": "yangben",
526
- "ybb": "yemba",
527
- "yi": "jiddisch",
528
- "yo": "yoruba",
529
- "yue": "kantonesisk",
530
- "za": "zhuang",
531
- "zap": "zapotec",
532
- "zbl": "blissymboler",
533
- "zen": "zenaga",
534
- "zgh": "tamazight",
535
- "zh": "kinesisk",
536
- "zh_Hans": "forenklet kinesisk",
537
- "zh_Hant": "traditionelt kinesisk",
538
- "zu": "zulu",
539
- "zun": "zuni",
540
- "zxx": "intet sprogligt indhold",
541
- "zza": "zaza"
542
- },
543
- "scripts": {
544
- "Adlm": "Adlm",
545
- "Afak": "afaka",
546
- "Aghb": "Aghb",
547
- "Ahom": "Ahom",
548
- "Arab": "arabisk",
549
- "Arab-alt-variant": "persisk-arabisk",
550
- "Armi": "armi",
551
- "Armn": "armensk",
552
- "Avst": "avestansk",
553
- "Bali": "balinesisk",
554
- "Bamu": "bamum",
555
- "Bass": "bassa",
556
- "Batk": "batak",
557
- "Beng": "bengali",
558
- "Bhks": "Bhks",
559
- "Blis": "blissymboler",
560
- "Bopo": "bopomofo",
561
- "Brah": "bramisk",
562
- "Brai": "punktskrift",
563
- "Bugi": "buginesisk",
564
- "Buhd": "buhid",
565
- "Cakm": "cakm",
566
- "Cans": "oprindelige canadiske symboler",
567
- "Cari": "kariansk",
568
- "Cham": "cham",
569
- "Cher": "cherokee",
570
- "Cirt": "cirt",
571
- "Copt": "koptisk",
572
- "Cprt": "cypriotisk",
573
- "Cyrl": "kyrillisk",
574
- "Cyrs": "kyrillisk - oldkirkeslavisk variant",
575
- "Deva": "devanagari",
576
- "Dogr": "Dogr",
577
- "Dsrt": "deseret",
578
- "Dupl": "Duploya-stenografi",
579
- "Egyd": "egyptisk demotisk",
580
- "Egyh": "egyptisk hieratisk",
581
- "Egyp": "egyptiske hieroglyffer",
582
- "Elba": "Elba",
583
- "Elym": "Elym",
584
- "Ethi": "etiopisk",
585
- "Geok": "georgisk kutsuri",
586
- "Geor": "georgisk",
587
- "Glag": "glagolitisk",
588
- "Gong": "Gong",
589
- "Gonm": "Gonm",
590
- "Goth": "gotisk",
591
- "Gran": "grantha",
592
- "Grek": "græsk",
593
- "Gujr": "gujarati",
594
- "Guru": "gurmukhi",
595
- "Hanb": "han med bopomofo",
596
- "Hang": "hangul",
597
- "Hani": "han",
598
- "Hano": "hanunoo",
599
- "Hans": "forenklet",
600
- "Hans-alt-stand-alone": "forenklet han",
601
- "Hant": "traditionelt",
602
- "Hant-alt-stand-alone": "traditionelt han",
603
- "Hatr": "Hatr",
604
- "Hebr": "hebraisk",
605
- "Hira": "hiragana",
606
- "Hluw": "anatolske hieroglyffer",
607
- "Hmng": "pahawh hmong",
608
- "Hmnp": "Hmnp",
609
- "Hrkt": "japanske skrifttegn",
610
- "Hung": "oldungarsk",
611
- "Inds": "indus",
612
- "Ital": "Olditalisk",
613
- "Jamo": "jamo",
614
- "Java": "javanesisk",
615
- "Jpan": "japansk",
616
- "Jurc": "jurchen",
617
- "Kali": "kaya li",
618
- "Kana": "katakana",
619
- "Khar": "kharoshti",
620
- "Khmr": "khmer",
621
- "Khoj": "khojki",
622
- "Knda": "kannada",
623
- "Kore": "koreansk",
624
- "Kpel": "kpelle",
625
- "Kthi": "kthi",
626
- "Lana": "lanna",
627
- "Laoo": "lao",
628
- "Latf": "latinsk - frakturvariant",
629
- "Latg": "latinsk - gælisk variant",
630
- "Latn": "latinsk",
631
- "Lepc": "lepcha",
632
- "Limb": "limbu",
633
- "Lina": "lineær A",
634
- "Linb": "lineær B",
635
- "Lisu": "lisu",
636
- "Loma": "loma",
637
- "Lyci": "lykisk",
638
- "Lydi": "lydisk",
639
- "Mahj": "Mahj",
640
- "Maka": "Maka",
641
- "Mand": "mandaisk",
642
- "Mani": "manikæisk",
643
- "Marc": "Marc",
644
- "Maya": "mayahieroglyffer",
645
- "Medf": "Medf",
646
- "Mend": "mende",
647
- "Merc": "metroitisk sammenhængende",
648
- "Mero": "meroitisk",
649
- "Mlym": "malayalam",
650
- "Modi": "Modi",
651
- "Mong": "mongolsk",
652
- "Moon": "moon",
653
- "Mroo": "mroo",
654
- "Mtei": "meitei-mayek",
655
- "Mult": "Mult",
656
- "Mymr": "burmesisk",
657
- "Nand": "Nand",
658
- "Narb": "gammelt nordarabisk",
659
- "Nbat": "nabateisk",
660
- "Newa": "Newa",
661
- "Nkgb": "nakhi geba",
662
- "Nkoo": "n’ko",
663
- "Nshu": "nüshu",
664
- "Ogam": "ogham",
665
- "Olck": "ol-chiki",
666
- "Orkh": "orkhon",
667
- "Orya": "oriya",
668
- "Osge": "Osge",
669
- "Osma": "osmannisk",
670
- "Palm": "palmyrensk",
671
- "Pauc": "Pauc",
672
- "Perm": "oldpermisk",
673
- "Phag": "phags-pa",
674
- "Phli": "phli",
675
- "Phlp": "phlp",
676
- "Phlv": "pahlavi",
677
- "Phnx": "fønikisk",
678
- "Plrd": "pollardtegn",
679
- "Prti": "prti",
680
- "Qaag": "Qaag",
681
- "Rjng": "rejang",
682
- "Rohg": "Rohg",
683
- "Roro": "rongo-rongo",
684
- "Runr": "runer",
685
- "Samr": "samaritansk",
686
- "Sara": "sarati",
687
- "Sarb": "oldsørarabisk",
688
- "Saur": "saurashtra",
689
- "Sgnw": "tegnskrift",
690
- "Shaw": "shavisk",
691
- "Shrd": "sharada",
692
- "Sidd": "Sidd",
693
- "Sind": "khudawadi",
694
- "Sinh": "singalesisk",
695
- "Sogd": "Sogd",
696
- "Sogo": "Sogo",
697
- "Sora": "sora",
698
- "Soyo": "Soyo",
699
- "Sund": "sundanesisk",
700
- "Sylo": "syloti nagri",
701
- "Syrc": "syrisk",
702
- "Syre": "syrisk - estrangelovariant",
703
- "Syrj": "vestsyrisk",
704
- "Syrn": "østsyriakisk",
705
- "Tagb": "tagbanwa",
706
- "Takr": "takri",
707
- "Tale": "tai le",
708
- "Talu": "tai lue",
709
- "Taml": "tamilsk",
710
- "Tang": "tangut",
711
- "Tavt": "tavt",
712
- "Telu": "telugu",
713
- "Teng": "tengwar",
714
- "Tfng": "tifinagh",
715
- "Tglg": "tagalog",
716
- "Thaa": "thaana",
717
- "Thai": "thailandsk",
718
- "Tibt": "tibetansk",
719
- "Tirh": "tirhuta",
720
- "Ugar": "ugaritisk",
721
- "Vaii": "vai",
722
- "Visp": "synlig tale",
723
- "Wara": "varang kshiti",
724
- "Wcho": "Wcho",
725
- "Wole": "woleai",
726
- "Xpeo": "oldpersisk",
727
- "Xsux": "sumero-akkadisk cuneiform",
728
- "Yiii": "yi",
729
- "Zanb": "Zanb",
730
- "Zinh": "arvet",
731
- "Zmth": "matematisk notation",
732
- "Zsye": "emoji",
733
- "Zsym": "symboler",
734
- "Zxxx": "uden skriftsprog",
735
- "Zyyy": "fælles",
736
- "Zzzz": "ukendt skriftsprog"
737
- },
738
- "territories": {
739
- "142": "Asien",
740
- "143": "Centralasien",
741
- "145": "Vestasien",
742
- "150": "Europa",
743
- "151": "Østeuropa",
744
- "154": "Nordeuropa",
745
- "155": "Vesteuropa",
746
- "202": "Subsaharisk Afrika",
747
- "419": "Latinamerika",
748
- "001": "Verden",
749
- "002": "Afrika",
750
- "003": "Nordamerika",
751
- "005": "Sydamerika",
752
- "009": "Oceanien",
753
- "011": "Vestafrika",
754
- "013": "Mellemamerika",
755
- "014": "Østafrika",
756
- "015": "Nordafrika",
757
- "017": "Centralafrika",
758
- "018": "Det sydlige Afrika",
759
- "019": "Nord-, Mellem- og Sydamerika",
760
- "021": "Det nordlige Amerika",
761
- "029": "Caribien",
762
- "030": "Østasien",
763
- "034": "Sydasien",
764
- "035": "Sydøstasien",
765
- "039": "Sydeuropa",
766
- "053": "Australasien",
767
- "054": "Melanesien",
768
- "057": "Mikronesiske område",
769
- "061": "Polynesien",
770
- "AC": "Ascensionøen",
771
- "AD": "Andorra",
772
- "AE": "De Forenede Arabiske Emirater",
773
- "AF": "Afghanistan",
774
- "AG": "Antigua og Barbuda",
775
- "AI": "Anguilla",
776
- "AL": "Albanien",
777
- "AM": "Armenien",
778
- "AO": "Angola",
779
- "AQ": "Antarktis",
780
- "AR": "Argentina",
781
- "AS": "Amerikansk Samoa",
782
- "AT": "Østrig",
783
- "AU": "Australien",
784
- "AW": "Aruba",
785
- "AX": "Åland",
786
- "AZ": "Aserbajdsjan",
787
- "BA": "Bosnien-Hercegovina",
788
- "BB": "Barbados",
789
- "BD": "Bangladesh",
790
- "BE": "Belgien",
791
- "BF": "Burkina Faso",
792
- "BG": "Bulgarien",
793
- "BH": "Bahrain",
794
- "BI": "Burundi",
795
- "BJ": "Benin",
796
- "BL": "Saint Barthélemy",
797
- "BM": "Bermuda",
798
- "BN": "Brunei",
799
- "BO": "Bolivia",
800
- "BQ": "De tidligere Nederlandske Antiller",
801
- "BR": "Brasilien",
802
- "BS": "Bahamas",
803
- "BT": "Bhutan",
804
- "BV": "Bouvetøen",
805
- "BW": "Botswana",
806
- "BY": "Hviderusland",
807
- "BZ": "Belize",
808
- "CA": "Canada",
809
- "CC": "Cocosøerne",
810
- "CD": "Congo-Kinshasa",
811
- "CD-alt-variant": "Den Demokratiske Republik Congo (DRC)",
812
- "CF": "Den Centralafrikanske Republik",
813
- "CG": "Congo-Brazzaville",
814
- "CG-alt-variant": "Republikken Congo",
815
- "CH": "Schweiz",
816
- "CI": "Elfenbenskysten",
817
- "CI-alt-variant": "CI",
818
- "CK": "Cookøerne",
819
- "CL": "Chile",
820
- "CM": "Cameroun",
821
- "CN": "Kina",
822
- "CO": "Colombia",
823
- "CP": "Clippertonøen",
824
- "CR": "Costa Rica",
825
- "CU": "Cuba",
826
- "CV": "Kap Verde",
827
- "CW": "Curaçao",
828
- "CX": "Juleøen",
829
- "CY": "Cypern",
830
- "CZ": "Tjekkiet",
831
- "CZ-alt-variant": "Den Tjekkiske Republik",
832
- "DE": "Tyskland",
833
- "DG": "Diego Garcia",
834
- "DJ": "Djibouti",
835
- "DK": "Danmark",
836
- "DM": "Dominica",
837
- "DO": "Den Dominikanske Republik",
838
- "DZ": "Algeriet",
839
- "EA": "Ceuta og Melilla",
840
- "EC": "Ecuador",
841
- "EE": "Estland",
842
- "EG": "Egypten",
843
- "EH": "Vestsahara",
844
- "ER": "Eritrea",
845
- "ES": "Spanien",
846
- "ET": "Etiopien",
847
- "EU": "Den Europæiske Union",
848
- "EZ": "eurozonen",
849
- "FI": "Finland",
850
- "FJ": "Fiji",
851
- "FK": "Falklandsøerne",
852
- "FK-alt-variant": "Falklandsøerne (Islas Malvinas)",
853
- "FM": "Mikronesien",
854
- "FO": "Færøerne",
855
- "FR": "Frankrig",
856
- "GA": "Gabon",
857
- "GB": "Storbritannien",
858
- "GB-alt-short": "UK",
859
- "GD": "Grenada",
860
- "GE": "Georgien",
861
- "GF": "Fransk Guyana",
862
- "GG": "Guernsey",
863
- "GH": "Ghana",
864
- "GI": "Gibraltar",
865
- "GL": "Grønland",
866
- "GM": "Gambia",
867
- "GN": "Guinea",
868
- "GP": "Guadeloupe",
869
- "GQ": "Ækvatorialguinea",
870
- "GR": "Grækenland",
871
- "GS": "South Georgia og De Sydlige Sandwichøer",
872
- "GT": "Guatemala",
873
- "GU": "Guam",
874
- "GW": "Guinea-Bissau",
875
- "GY": "Guyana",
876
- "HK": "Hongkong, Kina",
877
- "HK-alt-short": "Hongkong",
878
- "HM": "Heard Island og McDonald Islands",
879
- "HN": "Honduras",
880
- "HR": "Kroatien",
881
- "HT": "Haiti",
882
- "HU": "Ungarn",
883
- "IC": "Kanariske øer",
884
- "ID": "Indonesien",
885
- "IE": "Irland",
886
- "IL": "Israel",
887
- "IM": "Isle of Man",
888
- "IN": "Indien",
889
- "IO": "Det britiske territorium i Det Indiske Ocean",
890
- "IQ": "Irak",
891
- "IR": "Iran",
892
- "IS": "Island",
893
- "IT": "Italien",
894
- "JE": "Jersey",
895
- "JM": "Jamaica",
896
- "JO": "Jordan",
897
- "JP": "Japan",
898
- "KE": "Kenya",
899
- "KG": "Kirgisistan",
900
- "KH": "Cambodja",
901
- "KI": "Kiribati",
902
- "KM": "Comorerne",
903
- "KN": "Saint Kitts og Nevis",
904
- "KP": "Nordkorea",
905
- "KR": "Sydkorea",
906
- "KW": "Kuwait",
907
- "KY": "Caymanøerne",
908
- "KZ": "Kasakhstan",
909
- "LA": "Laos",
910
- "LB": "Libanon",
911
- "LC": "Saint Lucia",
912
- "LI": "Liechtenstein",
913
- "LK": "Sri Lanka",
914
- "LR": "Liberia",
915
- "LS": "Lesotho",
916
- "LT": "Litauen",
917
- "LU": "Luxembourg",
918
- "LV": "Letland",
919
- "LY": "Libyen",
920
- "MA": "Marokko",
921
- "MC": "Monaco",
922
- "MD": "Moldova",
923
- "ME": "Montenegro",
924
- "MF": "Saint Martin",
925
- "MG": "Madagaskar",
926
- "MH": "Marshalløerne",
927
- "MK": "Nordmakedonien",
928
- "MK-alt-variant": "MK",
929
- "ML": "Mali",
930
- "MM": "Myanmar (Burma)",
931
- "MN": "Mongoliet",
932
- "MO": "Macao, Kina",
933
- "MO-alt-short": "Macao",
934
- "MP": "Nordmarianerne",
935
- "MQ": "Martinique",
936
- "MR": "Mauretanien",
937
- "MS": "Montserrat",
938
- "MT": "Malta",
939
- "MU": "Mauritius",
940
- "MV": "Maldiverne",
941
- "MW": "Malawi",
942
- "MX": "Mexico",
943
- "MY": "Malaysia",
944
- "MZ": "Mozambique",
945
- "NA": "Namibia",
946
- "NC": "Ny Kaledonien",
947
- "NE": "Niger",
948
- "NF": "Norfolk Island",
949
- "NG": "Nigeria",
950
- "NI": "Nicaragua",
951
- "NL": "Holland",
952
- "NO": "Norge",
953
- "NP": "Nepal",
954
- "NR": "Nauru",
955
- "NU": "Niue",
956
- "NZ": "New Zealand",
957
- "OM": "Oman",
958
- "PA": "Panama",
959
- "PE": "Peru",
960
- "PF": "Fransk Polynesien",
961
- "PG": "Papua Ny Guinea",
962
- "PH": "Filippinerne",
963
- "PK": "Pakistan",
964
- "PL": "Polen",
965
- "PM": "Saint Pierre og Miquelon",
966
- "PN": "Pitcairn",
967
- "PR": "Puerto Rico",
968
- "PS": "De palæstinensiske områder",
969
- "PS-alt-short": "Palæstina",
970
- "PT": "Portugal",
971
- "PW": "Palau",
972
- "PY": "Paraguay",
973
- "QA": "Qatar",
974
- "QO": "Ydre Oceanien",
975
- "RE": "Réunion",
976
- "RO": "Rumænien",
977
- "RS": "Serbien",
978
- "RU": "Rusland",
979
- "RW": "Rwanda",
980
- "SA": "Saudi-Arabien",
981
- "SB": "Salomonøerne",
982
- "SC": "Seychellerne",
983
- "SD": "Sudan",
984
- "SE": "Sverige",
985
- "SG": "Singapore",
986
- "SH": "St. Helena",
987
- "SI": "Slovenien",
988
- "SJ": "Svalbard og Jan Mayen",
989
- "SK": "Slovakiet",
990
- "SL": "Sierra Leone",
991
- "SM": "San Marino",
992
- "SN": "Senegal",
993
- "SO": "Somalia",
994
- "SR": "Surinam",
995
- "SS": "Sydsudan",
996
- "ST": "São Tomé og Príncipe",
997
- "SV": "El Salvador",
998
- "SX": "Sint Maarten",
999
- "SY": "Syrien",
1000
- "SZ": "Eswatini",
1001
- "SZ-alt-variant": "Swaziland",
1002
- "TA": "Tristan da Cunha",
1003
- "TC": "Turks- og Caicosøerne",
1004
- "TD": "Tchad",
1005
- "TF": "De Franske Besiddelser i Det Sydlige Indiske Ocean",
1006
- "TG": "Togo",
1007
- "TH": "Thailand",
1008
- "TJ": "Tadsjikistan",
1009
- "TK": "Tokelau",
1010
- "TL": "Timor-Leste",
1011
- "TL-alt-variant": "Østtimor",
1012
- "TM": "Turkmenistan",
1013
- "TN": "Tunesien",
1014
- "TO": "Tonga",
1015
- "TR": "Tyrkiet",
1016
- "TT": "Trinidad og Tobago",
1017
- "TV": "Tuvalu",
1018
- "TW": "Taiwan, Kina",
1019
- "TZ": "Tanzania",
1020
- "UA": "Ukraine",
1021
- "UG": "Uganda",
1022
- "UM": "Amerikanske oversøiske øer",
1023
- "UN": "De Forenede Nationer",
1024
- "UN-alt-short": "FN",
1025
- "US": "USA",
1026
- "US-alt-short": "USA",
1027
- "UY": "Uruguay",
1028
- "UZ": "Usbekistan",
1029
- "VA": "Vatikanstaten",
1030
- "VC": "Saint Vincent og Grenadinerne",
1031
- "VE": "Venezuela",
1032
- "VG": "De Britiske Jomfruøer",
1033
- "VI": "De Amerikanske Jomfruøer",
1034
- "VN": "Vietnam",
1035
- "VU": "Vanuatu",
1036
- "WF": "Wallis og Futuna",
1037
- "WS": "Samoa",
1038
- "XA": "XA",
1039
- "XB": "XB",
1040
- "XK": "Kosovo",
1041
- "YE": "Yemen",
1042
- "YT": "Mayotte",
1043
- "ZA": "Sydafrika",
1044
- "ZM": "Zambia",
1045
- "ZW": "Zimbabwe",
1046
- "ZZ": "Ukendt område"
1047
- },
1048
- "orientation": "left-to-right",
1049
- "ca-gregorian": {
1050
- "dateFormats": {
1051
- "full": "EEEE 'den' d. MMMM y",
1052
- "long": "d. MMMM y",
1053
- "medium": "d. MMM y",
1054
- "short": "dd.MM.y"
1055
- },
1056
- "timeFormats": {
1057
- "full": "HH.mm.ss zzzz",
1058
- "long": "HH.mm.ss z",
1059
- "medium": "HH.mm.ss",
1060
- "short": "HH.mm"
1061
- },
1062
- "dateTimeFormats": {
1063
- "full": "{1} 'kl'. {0}",
1064
- "long": "{1} 'kl'. {0}",
1065
- "medium": "{1} {0}",
1066
- "short": "{1} {0}",
1067
- "availableFormats": {
1068
- "Bh": "h B",
1069
- "Bhm": "h.mm B",
1070
- "Bhms": "h.mm.ss B",
1071
- "d": "d.",
1072
- "E": "ccc",
1073
- "EBhm": "E h.mm B",
1074
- "EBhms": "E h.mm.ss B",
1075
- "Ed": "E 'den' d.",
1076
- "Ehm": "E h.mm a",
1077
- "EHm": "E HH.mm",
1078
- "Ehms": "E h.mm.ss a",
1079
- "EHms": "E HH.mm.ss",
1080
- "Gy": "y G",
1081
- "GyMMM": "MMM y G",
1082
- "GyMMMd": "d. MMM y G",
1083
- "GyMMMEd": "E d. MMM y G",
1084
- "h": "h a",
1085
- "H": "HH",
1086
- "hm": "h.mm a",
1087
- "Hm": "HH.mm",
1088
- "hms": "h.mm.ss a",
1089
- "Hms": "HH.mm.ss",
1090
- "hmsv": "h.mm.ss a v",
1091
- "Hmsv": "HH.mm.ss v",
1092
- "hmv": "h.mm a v",
1093
- "Hmv": "HH.mm v",
1094
- "M": "M",
1095
- "Md": "d.M",
1096
- "MEd": "E d.M",
1097
- "MMdd": "dd.MM",
1098
- "MMM": "MMM",
1099
- "MMMd": "d. MMM",
1100
- "MMMEd": "E d. MMM",
1101
- "MMMMd": "d. MMMM",
1102
- "MMMMEd": "E d. MMMM",
1103
- "ms": "mm.ss",
1104
- "y": "y",
1105
- "yM": "M.y",
1106
- "yMd": "d.M.y",
1107
- "yMEd": "E d.M.y",
1108
- "yMM": "MM.y",
1109
- "yMMM": "MMM y",
1110
- "yMMMd": "d. MMM y",
1111
- "yMMMEd": "E d. MMM y",
1112
- "yMMMM": "MMMM y",
1113
- "yQQQ": "QQQ y",
1114
- "yQQQQ": "QQQQ y",
1115
- "MMMMW": "'uge' W 'i' MMMM",
1116
- "yw": "'uge' w 'i' Y"
1117
- },
1118
- "appendItems": {
1119
- "Day": "{0} ({2}: {1})",
1120
- "Day-Of-Week": "{0} {1}",
1121
- "Era": "{1} {0}",
1122
- "Hour": "{0} ({2}: {1})",
1123
- "Minute": "{0} ({2}: {1})",
1124
- "Month": "{0} ({2}: {1})",
1125
- "Quarter": "{0} ({2}: {1})",
1126
- "Second": "{0} ({2}: {1})",
1127
- "Timezone": "{0} {1}",
1128
- "Week": "{0} ({2}: {1})",
1129
- "Year": "{1} {0}"
1130
- },
1131
- "intervalFormats": {
1132
- "intervalFormatFallback": "{0}-{1}",
1133
- "Bh": {
1134
- "B": "h B–h B",
1135
- "h": "h–h B"
1136
- },
1137
- "Bhm": {
1138
- "B": "h.mm B–h.mm B",
1139
- "h": "h.mm–h.mm B",
1140
- "m": "h.mm–h.mm B"
1141
- },
1142
- "d": {
1143
- "d": "d.–d."
1144
- },
1145
- "Gy": {
1146
- "G": "G y–G y",
1147
- "y": "G y–y"
1148
- },
1149
- "GyM": {
1150
- "G": "GGGGG MM.y–GGGGG MM.y",
1151
- "M": "GGGGG MM.y–MM.y",
1152
- "y": "GGGGG MM.y–MM.y"
1153
- },
1154
- "GyMd": {
1155
- "d": "GGGGG dd.MM.y–dd.MM.y",
1156
- "G": "GGGGG dd.MM.y–GGGGG dd.MM.y",
1157
- "M": "GGGGG dd.MM.y–dd.MM.y",
1158
- "y": "GGGGG dd.MM.y–dd.MM.y"
1159
- },
1160
- "GyMEd": {
1161
- "d": "GGGGG E dd.MM.y–E dd.MM.y",
1162
- "G": "GGGGG E dd.MM.y–GGGGG E dd.MM.y",
1163
- "M": "GGGGG E dd.MM.y–E dd.MM.y",
1164
- "y": "GGGGG E dd.MM.y–E dd.MM.y"
1165
- },
1166
- "GyMMM": {
1167
- "G": "G MMM y–G MMM y",
1168
- "M": "G MMM y–MMM",
1169
- "y": "G MMM y–MMM y"
1170
- },
1171
- "GyMMMd": {
1172
- "d": "G d.–d. MMM y",
1173
- "G": "G d. MMM y–G d. MMM y",
1174
- "M": "G d. MMM y–d. MMM",
1175
- "y": "G d. MMM y–d. MMM y"
1176
- },
1177
- "GyMMMEd": {
1178
- "d": "G E d. MMM y–E d. MMM",
1179
- "G": "G E d. MMM y–G E d. MMM y",
1180
- "M": "G E d. MMM y–E d. MMM",
1181
- "y": "G E d. MMM y–E d. MMM y"
1182
- },
1183
- "h": {
1184
- "a": "h a–h a",
1185
- "h": "h–h a"
1186
- },
1187
- "H": {
1188
- "H": "HH–HH"
1189
- },
1190
- "hm": {
1191
- "a": "h.mm a–h.mm a",
1192
- "h": "h.mm–h.mm a",
1193
- "m": "h.mm–h.mm a"
1194
- },
1195
- "Hm": {
1196
- "H": "HH.mm–HH.mm",
1197
- "m": "HH.mm–HH.mm"
1198
- },
1199
- "hmv": {
1200
- "a": "h.mm a–h.mm a v",
1201
- "h": "h.mm–h.mm a v",
1202
- "m": "h.mm–h.mm a v"
1203
- },
1204
- "Hmv": {
1205
- "H": "HH.mm–HH.mm v",
1206
- "m": "HH.mm–HH.mm v"
1207
- },
1208
- "hv": {
1209
- "a": "h a–h a v",
1210
- "h": "h–h a v"
1211
- },
1212
- "Hv": {
1213
- "H": "HH–HH v"
1214
- },
1215
- "M": {
1216
- "M": "M–M"
1217
- },
1218
- "Md": {
1219
- "d": "dd.MM–dd.MM",
1220
- "M": "dd.MM–dd.MM"
1221
- },
1222
- "MEd": {
1223
- "d": "E dd.MM–E dd.MM",
1224
- "M": "E dd.MM–E dd.MM"
1225
- },
1226
- "MMM": {
1227
- "M": "MMM–MMM"
1228
- },
1229
- "MMMd": {
1230
- "d": "d.–d. MMM",
1231
- "M": "d. MMM–d. MMM"
1232
- },
1233
- "MMMEd": {
1234
- "d": "E d.–E d. MMM",
1235
- "M": "E d. MMM–E d. MMM"
1236
- },
1237
- "y": {
1238
- "y": "y–y"
1239
- },
1240
- "yM": {
1241
- "M": "MM.y–MM.y",
1242
- "y": "MM.y–MM.y"
1243
- },
1244
- "yMd": {
1245
- "d": "dd.MM.y–dd.MM.y",
1246
- "M": "dd.MM.y–dd.MM.y",
1247
- "y": "dd.MM.y–dd.MM.y"
1248
- },
1249
- "yMEd": {
1250
- "d": "E dd.MM.y–E dd.MM.y",
1251
- "M": "E dd.MM.y–E dd.MM.y",
1252
- "y": "E dd.MM.y–E dd.MM.y"
1253
- },
1254
- "yMMM": {
1255
- "M": "MMM–MMM y",
1256
- "y": "MMM y–MMM y"
1257
- },
1258
- "yMMMd": {
1259
- "d": "d.–d. MMM y",
1260
- "M": "d. MMM–d. MMM y",
1261
- "y": "d. MMM y–d. MMM y"
1262
- },
1263
- "yMMMEd": {
1264
- "d": "E d.–E d. MMM y",
1265
- "M": "E d. MMM–E d. MMM y",
1266
- "y": "E d. MMM y–E d. MMM y"
1267
- },
1268
- "yMMMM": {
1269
- "M": "MMMM–MMMM y",
1270
- "y": "MMMM y–MMMM y"
1271
- }
1272
- }
1273
- },
1274
- "months": {
1275
- "format": {
1276
- "abbreviated": [
1277
- "jan.",
1278
- "feb.",
1279
- "mar.",
1280
- "apr.",
1281
- "maj",
1282
- "jun.",
1283
- "jul.",
1284
- "aug.",
1285
- "sep.",
1286
- "okt.",
1287
- "nov.",
1288
- "dec."
1289
- ],
1290
- "narrow": [
1291
- "J",
1292
- "F",
1293
- "M",
1294
- "A",
1295
- "M",
1296
- "J",
1297
- "J",
1298
- "A",
1299
- "S",
1300
- "O",
1301
- "N",
1302
- "D"
1303
- ],
1304
- "wide": [
1305
- "januar",
1306
- "februar",
1307
- "marts",
1308
- "april",
1309
- "maj",
1310
- "juni",
1311
- "juli",
1312
- "august",
1313
- "september",
1314
- "oktober",
1315
- "november",
1316
- "december"
1317
- ]
1318
- },
1319
- "stand-alone": {
1320
- "abbreviated": [
1321
- "jan.",
1322
- "feb.",
1323
- "mar.",
1324
- "apr.",
1325
- "maj",
1326
- "jun.",
1327
- "jul.",
1328
- "aug.",
1329
- "sep.",
1330
- "okt.",
1331
- "nov.",
1332
- "dec."
1333
- ],
1334
- "narrow": [
1335
- "J",
1336
- "F",
1337
- "M",
1338
- "A",
1339
- "M",
1340
- "J",
1341
- "J",
1342
- "A",
1343
- "S",
1344
- "O",
1345
- "N",
1346
- "D"
1347
- ],
1348
- "wide": [
1349
- "januar",
1350
- "februar",
1351
- "marts",
1352
- "april",
1353
- "maj",
1354
- "juni",
1355
- "juli",
1356
- "august",
1357
- "september",
1358
- "oktober",
1359
- "november",
1360
- "december"
1361
- ]
1362
- }
1363
- },
1364
- "days": {
1365
- "format": {
1366
- "abbreviated": [
1367
- "søn.",
1368
- "man.",
1369
- "tir.",
1370
- "ons.",
1371
- "tor.",
1372
- "fre.",
1373
- "lør."
1374
- ],
1375
- "narrow": [
1376
- "S",
1377
- "M",
1378
- "T",
1379
- "O",
1380
- "T",
1381
- "F",
1382
- "L"
1383
- ],
1384
- "short": [
1385
- "sø",
1386
- "ma",
1387
- "ti",
1388
- "on",
1389
- "to",
1390
- "fr",
1391
- "lø"
1392
- ],
1393
- "wide": [
1394
- "søndag",
1395
- "mandag",
1396
- "tirsdag",
1397
- "onsdag",
1398
- "torsdag",
1399
- "fredag",
1400
- "lørdag"
1401
- ]
1402
- },
1403
- "stand-alone": {
1404
- "abbreviated": [
1405
- "søn",
1406
- "man",
1407
- "tir",
1408
- "ons",
1409
- "tor",
1410
- "fre",
1411
- "lør"
1412
- ],
1413
- "narrow": [
1414
- "S",
1415
- "M",
1416
- "T",
1417
- "O",
1418
- "T",
1419
- "F",
1420
- "L"
1421
- ],
1422
- "short": [
1423
- "sø",
1424
- "ma",
1425
- "ti",
1426
- "on",
1427
- "to",
1428
- "fr",
1429
- "lø"
1430
- ],
1431
- "wide": [
1432
- "søndag",
1433
- "mandag",
1434
- "tirsdag",
1435
- "onsdag",
1436
- "torsdag",
1437
- "fredag",
1438
- "lørdag"
1439
- ]
1440
- }
1441
- },
1442
- "quarters": {
1443
- "format": {
1444
- "abbreviated": [
1445
- "1. kvt.",
1446
- "2. kvt.",
1447
- "3. kvt.",
1448
- "4. kvt."
1449
- ],
1450
- "narrow": [
1451
- "1",
1452
- "2",
1453
- "3",
1454
- "4"
1455
- ],
1456
- "wide": [
1457
- "1. kvartal",
1458
- "2. kvartal",
1459
- "3. kvartal",
1460
- "4. kvartal"
1461
- ]
1462
- },
1463
- "stand-alone": {
1464
- "abbreviated": [
1465
- "1. kvt.",
1466
- "2. kvt.",
1467
- "3. kvt.",
1468
- "4. kvt."
1469
- ],
1470
- "narrow": [
1471
- "1",
1472
- "2",
1473
- "3",
1474
- "4"
1475
- ],
1476
- "wide": [
1477
- "1. kvartal",
1478
- "2. kvartal",
1479
- "3. kvartal",
1480
- "4. kvartal"
1481
- ]
1482
- }
1483
- },
1484
- "dayPeriods": {
1485
- "format": {
1486
- "abbreviated": [
1487
- "AM",
1488
- "PM"
1489
- ],
1490
- "narrow": [
1491
- "a",
1492
- "p"
1493
- ],
1494
- "wide": [
1495
- "AM",
1496
- "PM"
1497
- ]
1498
- },
1499
- "stand-alone": {
1500
- "abbreviated": [
1501
- "AM",
1502
- "PM"
1503
- ],
1504
- "narrow": [
1505
- "AM",
1506
- "PM"
1507
- ],
1508
- "wide": [
1509
- "AM",
1510
- "PM"
1511
- ]
1512
- }
1513
- },
1514
- "era-wide": {
1515
- "0": "f.Kr.",
1516
- "1": "e.Kr."
1517
- },
1518
- "era-abbreviated": {
1519
- "0": "f.Kr.",
1520
- "1": "e.Kr."
1521
- },
1522
- "era-narrow": {
1523
- "0": "fKr",
1524
- "1": "eKr"
1525
- }
1526
- },
1527
- "ca-islamic": {
1528
- "dateFormats": {
1529
- "full": "EEEE d. MMMM y G",
1530
- "long": "d. MMMM y G",
1531
- "medium": "d. MMM y G",
1532
- "short": "d/M/y"
1533
- },
1534
- "timeFormats": {
1535
- "full": "HH.mm.ss zzzz",
1536
- "long": "HH.mm.ss z",
1537
- "medium": "HH.mm.ss",
1538
- "short": "HH.mm"
1539
- },
1540
- "dateTimeFormats": {
1541
- "full": "{1} {0}",
1542
- "long": "{1} {0}",
1543
- "medium": "{1} {0}",
1544
- "short": "{1} {0}",
1545
- "availableFormats": {
1546
- "Bh": "h B",
1547
- "Bhm": "h.mm B",
1548
- "Bhms": "h.mm.ss B",
1549
- "d": "d.",
1550
- "E": "ccc",
1551
- "EBhm": "E h.mm B",
1552
- "EBhms": "E h.mm.ss B",
1553
- "Ed": "E 'd'. d.",
1554
- "Ehm": "E h.mm a",
1555
- "EHm": "E HH.mm",
1556
- "Ehms": "E h.mm.ss a",
1557
- "EHms": "E HH.mm.ss",
1558
- "Gy": "y G",
1559
- "GyMMM": "MMM y G",
1560
- "GyMMMd": "d. MMM y G",
1561
- "GyMMMEd": "E d. MMM y G",
1562
- "h": "h a",
1563
- "H": "HH",
1564
- "hm": "h.mm a",
1565
- "Hm": "HH.mm",
1566
- "hms": "h.mm.ss a",
1567
- "Hms": "HH.mm.ss",
1568
- "M": "M",
1569
- "Md": "d/M",
1570
- "MEd": "E d/M",
1571
- "MMM": "MMM",
1572
- "MMMd": "d. MMM",
1573
- "MMMEd": "E d. MMM",
1574
- "MMMMd": "d. MMMM",
1575
- "MMMMEd": "E d. MMMM",
1576
- "ms": "mm.ss",
1577
- "y": "y G",
1578
- "yyyy": "y G",
1579
- "yyyyM": "M/y G",
1580
- "yyyyMd": "d/M/y G",
1581
- "yyyyMEd": "E d/M/y G",
1582
- "yyyyMMM": "MMM y G",
1583
- "yyyyMMMd": "d. MMM y G",
1584
- "yyyyMMMEd": "E d. MMM y G",
1585
- "yyyyMMMM": "MMMM y G",
1586
- "yyyyQQQ": "QQQ y G",
1587
- "yyyyQQQQ": "QQQQ y G"
1588
- },
1589
- "appendItems": {
1590
- "Day": "{0} ({2}: {1})",
1591
- "Day-Of-Week": "{0} {1}",
1592
- "Era": "{1} {0}",
1593
- "Hour": "{0} ({2}: {1})",
1594
- "Minute": "{0} ({2}: {1})",
1595
- "Month": "{0} ({2}: {1})",
1596
- "Quarter": "{0} ({2}: {1})",
1597
- "Second": "{0} ({2}: {1})",
1598
- "Timezone": "{0} {1}",
1599
- "Week": "{0} ({2}: {1})",
1600
- "Year": "{1} {0}"
1601
- },
1602
- "intervalFormats": {
1603
- "intervalFormatFallback": "{0}-{1}",
1604
- "Bh": {
1605
- "B": "h B – h B",
1606
- "h": "h – h B"
1607
- },
1608
- "Bhm": {
1609
- "B": "h.mm B – h.mm B",
1610
- "h": "h.mm – h.mm B",
1611
- "m": "h.mm – h.mm B"
1612
- },
1613
- "d": {
1614
- "d": "d.–d."
1615
- },
1616
- "Gy": {
1617
- "G": "G y – G y",
1618
- "y": "G y–y"
1619
- },
1620
- "GyM": {
1621
- "G": "GGGGG y-MM – GGGGG y-MM",
1622
- "M": "GGGGG y-MM – y-MM",
1623
- "y": "GGGGG y-MM – y-MM"
1624
- },
1625
- "GyMd": {
1626
- "d": "GGGGG y-MM-dd – y-MM-dd",
1627
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1628
- "M": "GGGGG y-MM-dd – y-MM-dd",
1629
- "y": "GGGGG y-MM-dd – y-MM-dd"
1630
- },
1631
- "GyMEd": {
1632
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1633
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1634
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1635
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1636
- },
1637
- "GyMMM": {
1638
- "G": "G y MMM – G y MMM",
1639
- "M": "G y MMM–MMM",
1640
- "y": "G y MMM – y MMM"
1641
- },
1642
- "GyMMMd": {
1643
- "d": "G y MMM d–d",
1644
- "G": "G y MMM d – G y MMM d",
1645
- "M": "G y MMM d – MMM d",
1646
- "y": "G y MMM d – y MMM d"
1647
- },
1648
- "GyMMMEd": {
1649
- "d": "G y MMM d, E – MMM d, E",
1650
- "G": "G y MMM d, E – G y MMM d, E",
1651
- "M": "G y MMM d, E – MMM d, E",
1652
- "y": "G y MMM d, E – y MMM d, E"
1653
- },
1654
- "h": {
1655
- "a": "h a – h a",
1656
- "h": "h–h a"
1657
- },
1658
- "H": {
1659
- "H": "HH–HH"
1660
- },
1661
- "hm": {
1662
- "a": "h.mm a – h.mm a",
1663
- "h": "h.mm–h.mm a",
1664
- "m": "h.mm–h.mm a"
1665
- },
1666
- "Hm": {
1667
- "H": "HH.mm–HH.mm",
1668
- "m": "HH.mm–HH.mm"
1669
- },
1670
- "hmv": {
1671
- "a": "h.mm a – h.mm a v",
1672
- "h": "h.mm–h.mm a v",
1673
- "m": "h.mm–h.mm a v"
1674
- },
1675
- "Hmv": {
1676
- "H": "HH.mm–HH.mm v",
1677
- "m": "HH.mm–HH.mm v"
1678
- },
1679
- "hv": {
1680
- "a": "h a – h a v",
1681
- "h": "h–h a v"
1682
- },
1683
- "Hv": {
1684
- "H": "HH–HH v"
1685
- },
1686
- "M": {
1687
- "M": "M–M"
1688
- },
1689
- "Md": {
1690
- "d": "dd/MM–dd/MM",
1691
- "M": "dd/MM–dd/MM"
1692
- },
1693
- "MEd": {
1694
- "d": "E dd/MM–E dd/MM",
1695
- "M": "E dd/MM–E dd/MM"
1696
- },
1697
- "MMM": {
1698
- "M": "MMM–MMM"
1699
- },
1700
- "MMMd": {
1701
- "d": "d.–d. MMM",
1702
- "M": "d. MMM–d. MMM"
1703
- },
1704
- "MMMEd": {
1705
- "d": "E 'den' d.–E 'den' d. MMM",
1706
- "M": "E 'den' d. MMM–E 'den' d. MMM"
1707
- },
1708
- "y": {
1709
- "y": "y–y G"
1710
- },
1711
- "yM": {
1712
- "M": "MM/y–MM/y G",
1713
- "y": "MM/y–MM/y G"
1714
- },
1715
- "yMd": {
1716
- "d": "dd/MM/y–dd/MM/y G",
1717
- "M": "dd/MM/y–dd/MM/y G",
1718
- "y": "dd/MM/y–dd/MM/y G"
1719
- },
1720
- "yMEd": {
1721
- "d": "E dd/MM/y–E dd/MM/y G",
1722
- "M": "E dd/MM/y–E dd/MM/y G",
1723
- "y": "E dd/MM/y–E dd/MM/y G"
1724
- },
1725
- "yMMM": {
1726
- "M": "MMM–MMM y G",
1727
- "y": "MMM y–MMM y G"
1728
- },
1729
- "yMMMd": {
1730
- "d": "d.–d. MMM y G",
1731
- "M": "d. MMM–d. MMM y G",
1732
- "y": "d. MMM y–d. MMM y G"
1733
- },
1734
- "yMMMEd": {
1735
- "d": "E 'den' d.–E 'den' d. MMM y G",
1736
- "M": "E 'den' d. MMM–E 'den' d. MMM y G",
1737
- "y": "E 'den' d. MMM y–E 'den' d. MMM y G"
1738
- },
1739
- "yMMMM": {
1740
- "M": "MMMM–MMMM y G",
1741
- "y": "MMMM y–MMMM y G"
1742
- }
1743
- }
1744
- },
1745
- "months": {
1746
- "format": {
1747
- "abbreviated": [
1748
- "Muh.",
1749
- "Saf.",
1750
- "Rab. I",
1751
- "Rab. II",
1752
- "Jum. I",
1753
- "Jum. II",
1754
- "Raj.",
1755
- "Sha.",
1756
- "Ram.",
1757
- "Shaw.",
1758
- "Dhuʻl-Q.",
1759
- "Dhuʻl-H."
1760
- ],
1761
- "narrow": [
1762
- "1",
1763
- "2",
1764
- "3",
1765
- "4",
1766
- "5",
1767
- "6",
1768
- "7",
1769
- "8",
1770
- "9",
1771
- "10",
1772
- "11",
1773
- "12"
1774
- ],
1775
- "wide": [
1776
- "muharram",
1777
- "safar",
1778
- "rabiʻ I",
1779
- "rabiʻ II",
1780
- "jumada I",
1781
- "jumada II",
1782
- "rajab",
1783
- "shaʻban",
1784
- "ramadan",
1785
- "shawwal",
1786
- "dhuʻl-Qiʻdah",
1787
- "dhuʻl-Hijjah"
1788
- ]
1789
- },
1790
- "stand-alone": {
1791
- "abbreviated": [
1792
- "Muh.",
1793
- "Saf.",
1794
- "Rab. I",
1795
- "Rab. II",
1796
- "Jum. I",
1797
- "Jum. II",
1798
- "Raj.",
1799
- "Sha.",
1800
- "Ram.",
1801
- "Shaw.",
1802
- "Dhuʻl-Q.",
1803
- "Dhuʻl-H."
1804
- ],
1805
- "narrow": [
1806
- "1",
1807
- "2",
1808
- "3",
1809
- "4",
1810
- "5",
1811
- "6",
1812
- "7",
1813
- "8",
1814
- "9",
1815
- "10",
1816
- "11",
1817
- "12"
1818
- ],
1819
- "wide": [
1820
- "muharram",
1821
- "safar",
1822
- "rabiʻ I",
1823
- "rabiʻ II",
1824
- "jumada I",
1825
- "jumada II",
1826
- "rajab",
1827
- "shaʻban",
1828
- "ramadan",
1829
- "shawwal",
1830
- "dhuʻl-Qiʻdah",
1831
- "dhuʻl-Hijjah"
1832
- ]
1833
- }
1834
- },
1835
- "days": {
1836
- "format": {
1837
- "abbreviated": [
1838
- "søn.",
1839
- "man.",
1840
- "tir.",
1841
- "ons.",
1842
- "tor.",
1843
- "fre.",
1844
- "lør."
1845
- ],
1846
- "narrow": [
1847
- "S",
1848
- "M",
1849
- "T",
1850
- "O",
1851
- "T",
1852
- "F",
1853
- "L"
1854
- ],
1855
- "short": [
1856
- "sø",
1857
- "ma",
1858
- "ti",
1859
- "on",
1860
- "to",
1861
- "fr",
1862
- "lø"
1863
- ],
1864
- "wide": [
1865
- "søndag",
1866
- "mandag",
1867
- "tirsdag",
1868
- "onsdag",
1869
- "torsdag",
1870
- "fredag",
1871
- "lørdag"
1872
- ]
1873
- },
1874
- "stand-alone": {
1875
- "abbreviated": [
1876
- "søn",
1877
- "man",
1878
- "tir",
1879
- "ons",
1880
- "tor",
1881
- "fre",
1882
- "lør"
1883
- ],
1884
- "narrow": [
1885
- "S",
1886
- "M",
1887
- "T",
1888
- "O",
1889
- "T",
1890
- "F",
1891
- "L"
1892
- ],
1893
- "short": [
1894
- "sø",
1895
- "ma",
1896
- "ti",
1897
- "on",
1898
- "to",
1899
- "fr",
1900
- "lø"
1901
- ],
1902
- "wide": [
1903
- "søndag",
1904
- "mandag",
1905
- "tirsdag",
1906
- "onsdag",
1907
- "torsdag",
1908
- "fredag",
1909
- "lørdag"
1910
- ]
1911
- }
1912
- },
1913
- "quarters": {
1914
- "format": {
1915
- "abbreviated": [
1916
- "1. kvt.",
1917
- "2. kvt.",
1918
- "3. kvt.",
1919
- "4. kvt."
1920
- ],
1921
- "narrow": [
1922
- "1",
1923
- "2",
1924
- "3",
1925
- "4"
1926
- ],
1927
- "wide": [
1928
- "1. kvartal",
1929
- "2. kvartal",
1930
- "3. kvartal",
1931
- "4. kvartal"
1932
- ]
1933
- },
1934
- "stand-alone": {
1935
- "abbreviated": [
1936
- "1. kvt.",
1937
- "2. kvt.",
1938
- "3. kvt.",
1939
- "4. kvt."
1940
- ],
1941
- "narrow": [
1942
- "1",
1943
- "2",
1944
- "3",
1945
- "4"
1946
- ],
1947
- "wide": [
1948
- "1. kvartal",
1949
- "2. kvartal",
1950
- "3. kvartal",
1951
- "4. kvartal"
1952
- ]
1953
- }
1954
- },
1955
- "dayPeriods": {
1956
- "format": {
1957
- "abbreviated": [
1958
- "AM",
1959
- "PM"
1960
- ],
1961
- "narrow": [
1962
- "a",
1963
- "p"
1964
- ],
1965
- "wide": [
1966
- "AM",
1967
- "PM"
1968
- ]
1969
- },
1970
- "stand-alone": {
1971
- "abbreviated": [
1972
- "AM",
1973
- "PM"
1974
- ],
1975
- "narrow": [
1976
- "AM",
1977
- "PM"
1978
- ],
1979
- "wide": [
1980
- "AM",
1981
- "PM"
1982
- ]
1983
- }
1984
- },
1985
- "era-wide": {
1986
- "0": "AH"
1987
- },
1988
- "era-abbreviated": {
1989
- "0": "AH"
1990
- },
1991
- "era-narrow": {
1992
- "0": "AH"
1993
- }
1994
- },
1995
- "ca-japanese": {
1996
- "dateFormats": {
1997
- "full": "EEEE d. MMMM y G",
1998
- "long": "d. MMMM y G",
1999
- "medium": "d. MMM y G",
2000
- "short": "d/M/y"
2001
- },
2002
- "timeFormats": {
2003
- "full": "HH.mm.ss zzzz",
2004
- "long": "HH.mm.ss z",
2005
- "medium": "HH.mm.ss",
2006
- "short": "HH.mm"
2007
- },
2008
- "dateTimeFormats": {
2009
- "full": "{1} {0}",
2010
- "long": "{1} {0}",
2011
- "medium": "{1} {0}",
2012
- "short": "{1} {0}",
2013
- "availableFormats": {
2014
- "Bh": "h B",
2015
- "Bhm": "h.mm B",
2016
- "Bhms": "h.mm.ss B",
2017
- "d": "d.",
2018
- "E": "ccc",
2019
- "EBhm": "E h.mm B",
2020
- "EBhms": "E h.mm.ss B",
2021
- "Ed": "E 'd'. d.",
2022
- "Ehm": "E h.mm a",
2023
- "EHm": "E HH.mm",
2024
- "Ehms": "E h.mm.ss a",
2025
- "EHms": "E HH.mm.ss",
2026
- "Gy": "y G",
2027
- "GyMMM": "MMM y G",
2028
- "GyMMMd": "d. MMM y G",
2029
- "GyMMMEd": "E d. MMM y G",
2030
- "h": "h a",
2031
- "H": "HH",
2032
- "hm": "h.mm a",
2033
- "Hm": "HH.mm",
2034
- "hms": "h.mm.ss a",
2035
- "Hms": "HH.mm.ss",
2036
- "M": "M",
2037
- "Md": "d/M",
2038
- "MEd": "E d/M",
2039
- "MMM": "MMM",
2040
- "MMMd": "d. MMM",
2041
- "MMMEd": "E d. MMM",
2042
- "MMMMd": "d. MMMM",
2043
- "MMMMEd": "E d. MMMM",
2044
- "ms": "mm.ss",
2045
- "y": "y G",
2046
- "yyyy": "y G",
2047
- "yyyyM": "M/y G",
2048
- "yyyyMd": "d/M/y G",
2049
- "yyyyMEd": "E d/M/y G",
2050
- "yyyyMMM": "MMM y G",
2051
- "yyyyMMMd": "d. MMM y G",
2052
- "yyyyMMMEd": "E d. MMM y G",
2053
- "yyyyMMMM": "MMMM y G",
2054
- "yyyyQQQ": "QQQ y G",
2055
- "yyyyQQQQ": "QQQQ y G"
2056
- },
2057
- "appendItems": {
2058
- "Day": "{0} ({2}: {1})",
2059
- "Day-Of-Week": "{0} {1}",
2060
- "Era": "{1} {0}",
2061
- "Hour": "{0} ({2}: {1})",
2062
- "Minute": "{0} ({2}: {1})",
2063
- "Month": "{0} ({2}: {1})",
2064
- "Quarter": "{0} ({2}: {1})",
2065
- "Second": "{0} ({2}: {1})",
2066
- "Timezone": "{0} {1}",
2067
- "Week": "{0} ({2}: {1})",
2068
- "Year": "{1} {0}"
2069
- },
2070
- "intervalFormats": {
2071
- "intervalFormatFallback": "{0}-{1}",
2072
- "Bh": {
2073
- "B": "h B – h B",
2074
- "h": "h – h B"
2075
- },
2076
- "Bhm": {
2077
- "B": "h.mm B – h.mm B",
2078
- "h": "h.mm – h.mm B",
2079
- "m": "h.mm – h.mm B"
2080
- },
2081
- "d": {
2082
- "d": "d.–d."
2083
- },
2084
- "Gy": {
2085
- "G": "G y – G y",
2086
- "y": "G y–y"
2087
- },
2088
- "GyM": {
2089
- "G": "GGGGG y-MM – GGGGG y-MM",
2090
- "M": "GGGGG y-MM – y-MM",
2091
- "y": "GGGGG y-MM – y-MM"
2092
- },
2093
- "GyMd": {
2094
- "d": "GGGGG y-MM-dd – y-MM-dd",
2095
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2096
- "M": "GGGGG y-MM-dd – y-MM-dd",
2097
- "y": "GGGGG y-MM-dd – y-MM-dd"
2098
- },
2099
- "GyMEd": {
2100
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2101
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2102
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2103
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2104
- },
2105
- "GyMMM": {
2106
- "G": "G y MMM – G y MMM",
2107
- "M": "G y MMM–MMM",
2108
- "y": "G y MMM – y MMM"
2109
- },
2110
- "GyMMMd": {
2111
- "d": "G y MMM d–d",
2112
- "G": "G y MMM d – G y MMM d",
2113
- "M": "G y MMM d – MMM d",
2114
- "y": "G y MMM d – y MMM d"
2115
- },
2116
- "GyMMMEd": {
2117
- "d": "G y MMM d, E – MMM d, E",
2118
- "G": "G y MMM d, E – G y MMM d, E",
2119
- "M": "G y MMM d, E – MMM d, E",
2120
- "y": "G y MMM d, E – y MMM d, E"
2121
- },
2122
- "h": {
2123
- "a": "h a – h a",
2124
- "h": "h–h a"
2125
- },
2126
- "H": {
2127
- "H": "HH–HH"
2128
- },
2129
- "hm": {
2130
- "a": "h.mm a – h.mm a",
2131
- "h": "h.mm–h.mm a",
2132
- "m": "h.mm–h.mm a"
2133
- },
2134
- "Hm": {
2135
- "H": "HH.mm–HH.mm",
2136
- "m": "HH.mm–HH.mm"
2137
- },
2138
- "hmv": {
2139
- "a": "h.mm a – h.mm a v",
2140
- "h": "h.mm–h.mm a v",
2141
- "m": "h.mm–h.mm a v"
2142
- },
2143
- "Hmv": {
2144
- "H": "HH.mm–HH.mm v",
2145
- "m": "HH.mm–HH.mm v"
2146
- },
2147
- "hv": {
2148
- "a": "h a – h a v",
2149
- "h": "h–h a v"
2150
- },
2151
- "Hv": {
2152
- "H": "HH–HH v"
2153
- },
2154
- "M": {
2155
- "M": "M–M"
2156
- },
2157
- "Md": {
2158
- "d": "dd/MM–dd/MM",
2159
- "M": "dd/MM–dd/MM"
2160
- },
2161
- "MEd": {
2162
- "d": "E dd/MM–E dd/MM",
2163
- "M": "E dd/MM–E dd/MM"
2164
- },
2165
- "MMM": {
2166
- "M": "MMM–MMM"
2167
- },
2168
- "MMMd": {
2169
- "d": "d.–d. MMM",
2170
- "M": "d. MMM–d. MMM"
2171
- },
2172
- "MMMEd": {
2173
- "d": "E 'den' d.–E 'den' d. MMM",
2174
- "M": "E 'den' d. MMM–E 'den' d. MMM"
2175
- },
2176
- "y": {
2177
- "y": "y–y G",
2178
- "G": "y G–y G"
2179
- },
2180
- "yM": {
2181
- "M": "MM/y–MM/y G",
2182
- "y": "MM/y–MM/y G",
2183
- "G": "MM/y G–MM/y G"
2184
- },
2185
- "yMd": {
2186
- "d": "dd/MM/y–dd/MM/y G",
2187
- "M": "dd/MM/y–dd/MM/y G",
2188
- "y": "dd/MM/y–dd/MM/y G",
2189
- "G": "dd/MM/y G–dd/MM/y G"
2190
- },
2191
- "yMEd": {
2192
- "d": "E dd/MM/y–E dd/MM/y G",
2193
- "M": "E dd/MM/y–E dd/MM/y G",
2194
- "y": "E dd/MM/y–E dd/MM/y G",
2195
- "G": "E dd/MM/y G–E dd/MM/y G"
2196
- },
2197
- "yMMM": {
2198
- "M": "MMM–MMM y G",
2199
- "y": "MMM y–MMM y G",
2200
- "G": "MMM y G–MMM y G"
2201
- },
2202
- "yMMMd": {
2203
- "d": "d.–d. MMM y G",
2204
- "M": "d. MMM–d. MMM y G",
2205
- "y": "d. MMM y–d. MMM y G",
2206
- "G": "d. MMM y G–d. MMM y G"
2207
- },
2208
- "yMMMEd": {
2209
- "d": "E 'den' d.–E 'den' d. MMM y G",
2210
- "M": "E 'den' d. MMM–E 'den' d. MMM y G",
2211
- "y": "E 'den' d. MMM y–E 'den' d. MMM y G",
2212
- "G": "E 'den' d. MMM y G–E 'den' d. MMM y G"
2213
- },
2214
- "yMMMM": {
2215
- "M": "MMMM–MMMM y G",
2216
- "y": "MMMM y–MMMM y G",
2217
- "G": "MMMM y G–MMMM y G"
2218
- }
2219
- }
2220
- },
2221
- "months": {
2222
- "format": {
2223
- "abbreviated": [
2224
- "jan.",
2225
- "feb.",
2226
- "mar.",
2227
- "apr.",
2228
- "maj",
2229
- "jun.",
2230
- "jul.",
2231
- "aug.",
2232
- "sep.",
2233
- "okt.",
2234
- "nov.",
2235
- "dec."
2236
- ],
2237
- "narrow": [
2238
- "J",
2239
- "F",
2240
- "M",
2241
- "A",
2242
- "M",
2243
- "J",
2244
- "J",
2245
- "A",
2246
- "S",
2247
- "O",
2248
- "N",
2249
- "D"
2250
- ],
2251
- "wide": [
2252
- "januar",
2253
- "februar",
2254
- "marts",
2255
- "april",
2256
- "maj",
2257
- "juni",
2258
- "juli",
2259
- "august",
2260
- "september",
2261
- "oktober",
2262
- "november",
2263
- "december"
2264
- ]
2265
- },
2266
- "stand-alone": {
2267
- "abbreviated": [
2268
- "jan.",
2269
- "feb.",
2270
- "mar.",
2271
- "apr.",
2272
- "maj",
2273
- "jun.",
2274
- "jul.",
2275
- "aug.",
2276
- "sep.",
2277
- "okt.",
2278
- "nov.",
2279
- "dec."
2280
- ],
2281
- "narrow": [
2282
- "J",
2283
- "F",
2284
- "M",
2285
- "A",
2286
- "M",
2287
- "J",
2288
- "J",
2289
- "A",
2290
- "S",
2291
- "O",
2292
- "N",
2293
- "D"
2294
- ],
2295
- "wide": [
2296
- "januar",
2297
- "februar",
2298
- "marts",
2299
- "april",
2300
- "maj",
2301
- "juni",
2302
- "juli",
2303
- "august",
2304
- "september",
2305
- "oktober",
2306
- "november",
2307
- "december"
2308
- ]
2309
- }
2310
- },
2311
- "days": {
2312
- "format": {
2313
- "abbreviated": [
2314
- "søn.",
2315
- "man.",
2316
- "tir.",
2317
- "ons.",
2318
- "tor.",
2319
- "fre.",
2320
- "lør."
2321
- ],
2322
- "narrow": [
2323
- "S",
2324
- "M",
2325
- "T",
2326
- "O",
2327
- "T",
2328
- "F",
2329
- "L"
2330
- ],
2331
- "short": [
2332
- "sø",
2333
- "ma",
2334
- "ti",
2335
- "on",
2336
- "to",
2337
- "fr",
2338
- "lø"
2339
- ],
2340
- "wide": [
2341
- "søndag",
2342
- "mandag",
2343
- "tirsdag",
2344
- "onsdag",
2345
- "torsdag",
2346
- "fredag",
2347
- "lørdag"
2348
- ]
2349
- },
2350
- "stand-alone": {
2351
- "abbreviated": [
2352
- "søn",
2353
- "man",
2354
- "tir",
2355
- "ons",
2356
- "tor",
2357
- "fre",
2358
- "lør"
2359
- ],
2360
- "narrow": [
2361
- "S",
2362
- "M",
2363
- "T",
2364
- "O",
2365
- "T",
2366
- "F",
2367
- "L"
2368
- ],
2369
- "short": [
2370
- "sø",
2371
- "ma",
2372
- "ti",
2373
- "on",
2374
- "to",
2375
- "fr",
2376
- "lø"
2377
- ],
2378
- "wide": [
2379
- "søndag",
2380
- "mandag",
2381
- "tirsdag",
2382
- "onsdag",
2383
- "torsdag",
2384
- "fredag",
2385
- "lørdag"
2386
- ]
2387
- }
2388
- },
2389
- "quarters": {
2390
- "format": {
2391
- "abbreviated": [
2392
- "1. kvt.",
2393
- "2. kvt.",
2394
- "3. kvt.",
2395
- "4. kvt."
2396
- ],
2397
- "narrow": [
2398
- "1",
2399
- "2",
2400
- "3",
2401
- "4"
2402
- ],
2403
- "wide": [
2404
- "1. kvartal",
2405
- "2. kvartal",
2406
- "3. kvartal",
2407
- "4. kvartal"
2408
- ]
2409
- },
2410
- "stand-alone": {
2411
- "abbreviated": [
2412
- "1. kvt.",
2413
- "2. kvt.",
2414
- "3. kvt.",
2415
- "4. kvt."
2416
- ],
2417
- "narrow": [
2418
- "1",
2419
- "2",
2420
- "3",
2421
- "4"
2422
- ],
2423
- "wide": [
2424
- "1. kvartal",
2425
- "2. kvartal",
2426
- "3. kvartal",
2427
- "4. kvartal"
2428
- ]
2429
- }
2430
- },
2431
- "dayPeriods": {
2432
- "format": {
2433
- "abbreviated": [
2434
- "AM",
2435
- "PM"
2436
- ],
2437
- "narrow": [
2438
- "a",
2439
- "p"
2440
- ],
2441
- "wide": [
2442
- "AM",
2443
- "PM"
2444
- ]
2445
- },
2446
- "stand-alone": {
2447
- "abbreviated": [
2448
- "AM",
2449
- "PM"
2450
- ],
2451
- "narrow": [
2452
- "AM",
2453
- "PM"
2454
- ],
2455
- "wide": [
2456
- "AM",
2457
- "PM"
2458
- ]
2459
- }
2460
- },
2461
- "era-wide": {
2462
- "232": "Meiji",
2463
- "233": "Taishō",
2464
- "234": "Shōwa",
2465
- "235": "Heisei",
2466
- "236": "Reiwa"
2467
- },
2468
- "era-abbreviated": {
2469
- "232": "Meiji",
2470
- "233": "Taishō",
2471
- "234": "Shōwa",
2472
- "235": "Heisei",
2473
- "236": "Reiwa"
2474
- },
2475
- "era-narrow": {
2476
- "232": "M",
2477
- "233": "T",
2478
- "234": "S",
2479
- "235": "H",
2480
- "236": "R"
2481
- }
2482
- },
2483
- "ca-persian": {
2484
- "dateFormats": {
2485
- "full": "EEEE d. MMMM y G",
2486
- "long": "d. MMMM y G",
2487
- "medium": "d. MMM y G",
2488
- "short": "d/M/y"
2489
- },
2490
- "timeFormats": {
2491
- "full": "HH.mm.ss zzzz",
2492
- "long": "HH.mm.ss z",
2493
- "medium": "HH.mm.ss",
2494
- "short": "HH.mm"
2495
- },
2496
- "dateTimeFormats": {
2497
- "full": "{1} {0}",
2498
- "long": "{1} {0}",
2499
- "medium": "{1} {0}",
2500
- "short": "{1} {0}",
2501
- "availableFormats": {
2502
- "Bh": "h B",
2503
- "Bhm": "h.mm B",
2504
- "Bhms": "h.mm.ss B",
2505
- "d": "d.",
2506
- "E": "ccc",
2507
- "EBhm": "E h.mm B",
2508
- "EBhms": "E h.mm.ss B",
2509
- "Ed": "E 'd'. d.",
2510
- "Ehm": "E h.mm a",
2511
- "EHm": "E HH.mm",
2512
- "Ehms": "E h.mm.ss a",
2513
- "EHms": "E HH.mm.ss",
2514
- "Gy": "y G",
2515
- "GyMMM": "MMM y G",
2516
- "GyMMMd": "d. MMM y G",
2517
- "GyMMMEd": "E d. MMM y G",
2518
- "h": "h a",
2519
- "H": "HH",
2520
- "hm": "h.mm a",
2521
- "Hm": "HH.mm",
2522
- "hms": "h.mm.ss a",
2523
- "Hms": "HH.mm.ss",
2524
- "M": "M",
2525
- "Md": "d/M",
2526
- "MEd": "E d/M",
2527
- "MMM": "MMM",
2528
- "MMMd": "d. MMM",
2529
- "MMMEd": "E d. MMM",
2530
- "MMMMd": "d. MMMM",
2531
- "MMMMEd": "E d. MMMM",
2532
- "ms": "mm.ss",
2533
- "y": "y G",
2534
- "yyyy": "y G",
2535
- "yyyyM": "M/y G",
2536
- "yyyyMd": "d/M/y G",
2537
- "yyyyMEd": "E d/M/y G",
2538
- "yyyyMMM": "MMM y G",
2539
- "yyyyMMMd": "d. MMM y G",
2540
- "yyyyMMMEd": "E d. MMM y G",
2541
- "yyyyMMMM": "MMMM y G",
2542
- "yyyyQQQ": "QQQ y G",
2543
- "yyyyQQQQ": "QQQQ y G"
2544
- },
2545
- "appendItems": {
2546
- "Day": "{0} ({2}: {1})",
2547
- "Day-Of-Week": "{0} {1}",
2548
- "Era": "{1} {0}",
2549
- "Hour": "{0} ({2}: {1})",
2550
- "Minute": "{0} ({2}: {1})",
2551
- "Month": "{0} ({2}: {1})",
2552
- "Quarter": "{0} ({2}: {1})",
2553
- "Second": "{0} ({2}: {1})",
2554
- "Timezone": "{0} {1}",
2555
- "Week": "{0} ({2}: {1})",
2556
- "Year": "{1} {0}"
2557
- },
2558
- "intervalFormats": {
2559
- "intervalFormatFallback": "{0}-{1}",
2560
- "Bh": {
2561
- "B": "h B – h B",
2562
- "h": "h – h B"
2563
- },
2564
- "Bhm": {
2565
- "B": "h.mm B – h.mm B",
2566
- "h": "h.mm – h.mm B",
2567
- "m": "h.mm – h.mm B"
2568
- },
2569
- "d": {
2570
- "d": "d.–d."
2571
- },
2572
- "Gy": {
2573
- "G": "G y – G y",
2574
- "y": "G y–y"
2575
- },
2576
- "GyM": {
2577
- "G": "GGGGG y-MM – GGGGG y-MM",
2578
- "M": "GGGGG y-MM – y-MM",
2579
- "y": "GGGGG y-MM – y-MM"
2580
- },
2581
- "GyMd": {
2582
- "d": "GGGGG y-MM-dd – y-MM-dd",
2583
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2584
- "M": "GGGGG y-MM-dd – y-MM-dd",
2585
- "y": "GGGGG y-MM-dd – y-MM-dd"
2586
- },
2587
- "GyMEd": {
2588
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2589
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2590
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2591
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2592
- },
2593
- "GyMMM": {
2594
- "G": "G y MMM – G y MMM",
2595
- "M": "G y MMM–MMM",
2596
- "y": "G y MMM – y MMM"
2597
- },
2598
- "GyMMMd": {
2599
- "d": "G y MMM d–d",
2600
- "G": "G y MMM d – G y MMM d",
2601
- "M": "G y MMM d – MMM d",
2602
- "y": "G y MMM d – y MMM d"
2603
- },
2604
- "GyMMMEd": {
2605
- "d": "G y MMM d, E – MMM d, E",
2606
- "G": "G y MMM d, E – G y MMM d, E",
2607
- "M": "G y MMM d, E – MMM d, E",
2608
- "y": "G y MMM d, E – y MMM d, E"
2609
- },
2610
- "h": {
2611
- "a": "h a – h a",
2612
- "h": "h–h a"
2613
- },
2614
- "H": {
2615
- "H": "HH–HH"
2616
- },
2617
- "hm": {
2618
- "a": "h.mm a – h.mm a",
2619
- "h": "h.mm–h.mm a",
2620
- "m": "h.mm–h.mm a"
2621
- },
2622
- "Hm": {
2623
- "H": "HH.mm–HH.mm",
2624
- "m": "HH.mm–HH.mm"
2625
- },
2626
- "hmv": {
2627
- "a": "h.mm a – h.mm a v",
2628
- "h": "h.mm–h.mm a v",
2629
- "m": "h.mm–h.mm a v"
2630
- },
2631
- "Hmv": {
2632
- "H": "HH.mm–HH.mm v",
2633
- "m": "HH.mm–HH.mm v"
2634
- },
2635
- "hv": {
2636
- "a": "h a – h a v",
2637
- "h": "h–h a v"
2638
- },
2639
- "Hv": {
2640
- "H": "HH–HH v"
2641
- },
2642
- "M": {
2643
- "M": "M–M"
2644
- },
2645
- "Md": {
2646
- "d": "dd/MM–dd/MM",
2647
- "M": "dd/MM–dd/MM"
2648
- },
2649
- "MEd": {
2650
- "d": "E dd/MM–E dd/MM",
2651
- "M": "E dd/MM–E dd/MM"
2652
- },
2653
- "MMM": {
2654
- "M": "MMM–MMM"
2655
- },
2656
- "MMMd": {
2657
- "d": "d.–d. MMM",
2658
- "M": "d. MMM–d. MMM"
2659
- },
2660
- "MMMEd": {
2661
- "d": "E 'den' d.–E 'den' d. MMM",
2662
- "M": "E 'den' d. MMM–E 'den' d. MMM"
2663
- },
2664
- "y": {
2665
- "y": "y–y G"
2666
- },
2667
- "yM": {
2668
- "M": "MM/y–MM/y G",
2669
- "y": "MM/y–MM/y G"
2670
- },
2671
- "yMd": {
2672
- "d": "dd/MM/y–dd/MM/y G",
2673
- "M": "dd/MM/y–dd/MM/y G",
2674
- "y": "dd/MM/y–dd/MM/y G"
2675
- },
2676
- "yMEd": {
2677
- "d": "E dd/MM/y–E dd/MM/y G",
2678
- "M": "E dd/MM/y–E dd/MM/y G",
2679
- "y": "E dd/MM/y–E dd/MM/y G"
2680
- },
2681
- "yMMM": {
2682
- "M": "MMM–MMM y G",
2683
- "y": "MMM y–MMM y G"
2684
- },
2685
- "yMMMd": {
2686
- "d": "d.–d. MMM y G",
2687
- "M": "d. MMM–d. MMM y G",
2688
- "y": "d. MMM y–d. MMM y G"
2689
- },
2690
- "yMMMEd": {
2691
- "d": "E 'den' d.–E 'den' d. MMM y G",
2692
- "M": "E 'den' d. MMM–E 'den' d. MMM y G",
2693
- "y": "E 'den' d. MMM y–E 'den' d. MMM y G"
2694
- },
2695
- "yMMMM": {
2696
- "M": "MMMM–MMMM y G",
2697
- "y": "MMMM y–MMMM y G"
2698
- }
2699
- }
2700
- },
2701
- "months": {
2702
- "format": {
2703
- "abbreviated": [
2704
- "farvardin",
2705
- "ordibehesht",
2706
- "khordad",
2707
- "tir",
2708
- "mordad",
2709
- "shahrivar",
2710
- "mehr",
2711
- "aban",
2712
- "azar",
2713
- "dey",
2714
- "bahman",
2715
- "esfand"
2716
- ],
2717
- "narrow": [
2718
- "1",
2719
- "2",
2720
- "3",
2721
- "4",
2722
- "5",
2723
- "6",
2724
- "7",
2725
- "8",
2726
- "9",
2727
- "10",
2728
- "11",
2729
- "12"
2730
- ],
2731
- "wide": [
2732
- "farvardin",
2733
- "ordibehesht",
2734
- "khordad",
2735
- "tir",
2736
- "mordad",
2737
- "shahrivar",
2738
- "mehr",
2739
- "aban",
2740
- "azar",
2741
- "dey",
2742
- "bahman",
2743
- "esfand"
2744
- ]
2745
- },
2746
- "stand-alone": {
2747
- "abbreviated": [
2748
- "farvardin",
2749
- "ordibehesht",
2750
- "khordad",
2751
- "tir",
2752
- "mordad",
2753
- "shahrivar",
2754
- "mehr",
2755
- "aban",
2756
- "azar",
2757
- "dey",
2758
- "bahman",
2759
- "esfand"
2760
- ],
2761
- "narrow": [
2762
- "1",
2763
- "2",
2764
- "3",
2765
- "4",
2766
- "5",
2767
- "6",
2768
- "7",
2769
- "8",
2770
- "9",
2771
- "10",
2772
- "11",
2773
- "12"
2774
- ],
2775
- "wide": [
2776
- "farvardin",
2777
- "ordibehesht",
2778
- "khordad",
2779
- "tir",
2780
- "mordad",
2781
- "shahrivar",
2782
- "mehr",
2783
- "aban",
2784
- "azar",
2785
- "dey",
2786
- "bahman",
2787
- "esfand"
2788
- ]
2789
- }
2790
- },
2791
- "days": {
2792
- "format": {
2793
- "abbreviated": [
2794
- "søn.",
2795
- "man.",
2796
- "tir.",
2797
- "ons.",
2798
- "tor.",
2799
- "fre.",
2800
- "lør."
2801
- ],
2802
- "narrow": [
2803
- "S",
2804
- "M",
2805
- "T",
2806
- "O",
2807
- "T",
2808
- "F",
2809
- "L"
2810
- ],
2811
- "short": [
2812
- "sø",
2813
- "ma",
2814
- "ti",
2815
- "on",
2816
- "to",
2817
- "fr",
2818
- "lø"
2819
- ],
2820
- "wide": [
2821
- "søndag",
2822
- "mandag",
2823
- "tirsdag",
2824
- "onsdag",
2825
- "torsdag",
2826
- "fredag",
2827
- "lørdag"
2828
- ]
2829
- },
2830
- "stand-alone": {
2831
- "abbreviated": [
2832
- "søn",
2833
- "man",
2834
- "tir",
2835
- "ons",
2836
- "tor",
2837
- "fre",
2838
- "lør"
2839
- ],
2840
- "narrow": [
2841
- "S",
2842
- "M",
2843
- "T",
2844
- "O",
2845
- "T",
2846
- "F",
2847
- "L"
2848
- ],
2849
- "short": [
2850
- "sø",
2851
- "ma",
2852
- "ti",
2853
- "on",
2854
- "to",
2855
- "fr",
2856
- "lø"
2857
- ],
2858
- "wide": [
2859
- "søndag",
2860
- "mandag",
2861
- "tirsdag",
2862
- "onsdag",
2863
- "torsdag",
2864
- "fredag",
2865
- "lørdag"
2866
- ]
2867
- }
2868
- },
2869
- "quarters": {
2870
- "format": {
2871
- "abbreviated": [
2872
- "1. kvt.",
2873
- "2. kvt.",
2874
- "3. kvt.",
2875
- "4. kvt."
2876
- ],
2877
- "narrow": [
2878
- "1",
2879
- "2",
2880
- "3",
2881
- "4"
2882
- ],
2883
- "wide": [
2884
- "1. kvartal",
2885
- "2. kvartal",
2886
- "3. kvartal",
2887
- "4. kvartal"
2888
- ]
2889
- },
2890
- "stand-alone": {
2891
- "abbreviated": [
2892
- "1. kvt.",
2893
- "2. kvt.",
2894
- "3. kvt.",
2895
- "4. kvt."
2896
- ],
2897
- "narrow": [
2898
- "1",
2899
- "2",
2900
- "3",
2901
- "4"
2902
- ],
2903
- "wide": [
2904
- "1. kvartal",
2905
- "2. kvartal",
2906
- "3. kvartal",
2907
- "4. kvartal"
2908
- ]
2909
- }
2910
- },
2911
- "dayPeriods": {
2912
- "format": {
2913
- "abbreviated": [
2914
- "AM",
2915
- "PM"
2916
- ],
2917
- "narrow": [
2918
- "a",
2919
- "p"
2920
- ],
2921
- "wide": [
2922
- "AM",
2923
- "PM"
2924
- ]
2925
- },
2926
- "stand-alone": {
2927
- "abbreviated": [
2928
- "AM",
2929
- "PM"
2930
- ],
2931
- "narrow": [
2932
- "AM",
2933
- "PM"
2934
- ],
2935
- "wide": [
2936
- "AM",
2937
- "PM"
2938
- ]
2939
- }
2940
- },
2941
- "era-wide": {
2942
- "0": "AP"
2943
- },
2944
- "era-abbreviated": {
2945
- "0": "AP"
2946
- },
2947
- "era-narrow": {
2948
- "0": "AP"
2949
- }
2950
- },
2951
- "ca-buddhist": {
2952
- "dateFormats": {
2953
- "full": "EEEE d. MMMM y G",
2954
- "long": "d. MMMM y G",
2955
- "medium": "d. MMM y G",
2956
- "short": "d/M/y"
2957
- },
2958
- "timeFormats": {
2959
- "full": "HH.mm.ss zzzz",
2960
- "long": "HH.mm.ss z",
2961
- "medium": "HH.mm.ss",
2962
- "short": "HH.mm"
2963
- },
2964
- "dateTimeFormats": {
2965
- "full": "{1} {0}",
2966
- "long": "{1} {0}",
2967
- "medium": "{1} {0}",
2968
- "short": "{1} {0}",
2969
- "availableFormats": {
2970
- "Bh": "h B",
2971
- "Bhm": "h.mm B",
2972
- "Bhms": "h.mm.ss B",
2973
- "d": "d.",
2974
- "E": "ccc",
2975
- "EBhm": "E h.mm B",
2976
- "EBhms": "E h.mm.ss B",
2977
- "Ed": "E 'd'. d.",
2978
- "Ehm": "E h.mm a",
2979
- "EHm": "E HH.mm",
2980
- "Ehms": "E h.mm.ss a",
2981
- "EHms": "E HH.mm.ss",
2982
- "Gy": "y G",
2983
- "GyMMM": "MMM y G",
2984
- "GyMMMd": "d. MMM y G",
2985
- "GyMMMEd": "E d. MMM y G",
2986
- "h": "h a",
2987
- "H": "HH",
2988
- "hm": "h.mm a",
2989
- "Hm": "HH.mm",
2990
- "hms": "h.mm.ss a",
2991
- "Hms": "HH.mm.ss",
2992
- "M": "M",
2993
- "Md": "d/M",
2994
- "MEd": "E d/M",
2995
- "MMM": "MMM",
2996
- "MMMd": "d. MMM",
2997
- "MMMEd": "E d. MMM",
2998
- "MMMMd": "d. MMMM",
2999
- "MMMMEd": "E d. MMMM",
3000
- "ms": "mm.ss",
3001
- "y": "y G",
3002
- "yyyy": "y G",
3003
- "yyyyM": "M/y G",
3004
- "yyyyMd": "d/M/y G",
3005
- "yyyyMEd": "E d/M/y G",
3006
- "yyyyMMM": "MMM y G",
3007
- "yyyyMMMd": "d. MMM y G",
3008
- "yyyyMMMEd": "E d. MMM y G",
3009
- "yyyyMMMM": "MMMM y G",
3010
- "yyyyQQQ": "QQQ y G",
3011
- "yyyyQQQQ": "QQQQ y G"
3012
- },
3013
- "appendItems": {
3014
- "Day": "{0} ({2}: {1})",
3015
- "Day-Of-Week": "{0} {1}",
3016
- "Era": "{1} {0}",
3017
- "Hour": "{0} ({2}: {1})",
3018
- "Minute": "{0} ({2}: {1})",
3019
- "Month": "{0} ({2}: {1})",
3020
- "Quarter": "{0} ({2}: {1})",
3021
- "Second": "{0} ({2}: {1})",
3022
- "Timezone": "{0} {1}",
3023
- "Week": "{0} ({2}: {1})",
3024
- "Year": "{1} {0}"
3025
- },
3026
- "intervalFormats": {
3027
- "intervalFormatFallback": "{0}-{1}",
3028
- "Bh": {
3029
- "B": "h B – h B",
3030
- "h": "h – h B"
3031
- },
3032
- "Bhm": {
3033
- "B": "h.mm B – h.mm B",
3034
- "h": "h.mm – h.mm B",
3035
- "m": "h.mm – h.mm B"
3036
- },
3037
- "d": {
3038
- "d": "d.–d."
3039
- },
3040
- "Gy": {
3041
- "G": "G y – G y",
3042
- "y": "G y–y"
3043
- },
3044
- "GyM": {
3045
- "G": "GGGGG y-MM – GGGGG y-MM",
3046
- "M": "GGGGG y-MM – y-MM",
3047
- "y": "GGGGG y-MM – y-MM"
3048
- },
3049
- "GyMd": {
3050
- "d": "GGGGG y-MM-dd – y-MM-dd",
3051
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3052
- "M": "GGGGG y-MM-dd – y-MM-dd",
3053
- "y": "GGGGG y-MM-dd – y-MM-dd"
3054
- },
3055
- "GyMEd": {
3056
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3057
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3058
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3059
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3060
- },
3061
- "GyMMM": {
3062
- "G": "G y MMM – G y MMM",
3063
- "M": "G y MMM–MMM",
3064
- "y": "G y MMM – y MMM"
3065
- },
3066
- "GyMMMd": {
3067
- "d": "G y MMM d–d",
3068
- "G": "G y MMM d – G y MMM d",
3069
- "M": "G y MMM d – MMM d",
3070
- "y": "G y MMM d – y MMM d"
3071
- },
3072
- "GyMMMEd": {
3073
- "d": "G y MMM d, E – MMM d, E",
3074
- "G": "G y MMM d, E – G y MMM d, E",
3075
- "M": "G y MMM d, E – MMM d, E",
3076
- "y": "G y MMM d, E – y MMM d, E"
3077
- },
3078
- "h": {
3079
- "a": "h a – h a",
3080
- "h": "h–h a"
3081
- },
3082
- "H": {
3083
- "H": "HH–HH"
3084
- },
3085
- "hm": {
3086
- "a": "h.mm a – h.mm a",
3087
- "h": "h.mm–h.mm a",
3088
- "m": "h.mm–h.mm a"
3089
- },
3090
- "Hm": {
3091
- "H": "HH.mm–HH.mm",
3092
- "m": "HH.mm–HH.mm"
3093
- },
3094
- "hmv": {
3095
- "a": "h.mm a – h.mm a v",
3096
- "h": "h.mm–h.mm a v",
3097
- "m": "h.mm–h.mm a v"
3098
- },
3099
- "Hmv": {
3100
- "H": "HH.mm–HH.mm v",
3101
- "m": "HH.mm–HH.mm v"
3102
- },
3103
- "hv": {
3104
- "a": "h a – h a v",
3105
- "h": "h–h a v"
3106
- },
3107
- "Hv": {
3108
- "H": "HH–HH v"
3109
- },
3110
- "M": {
3111
- "M": "M–M"
3112
- },
3113
- "Md": {
3114
- "d": "dd/MM–dd/MM",
3115
- "M": "dd/MM–dd/MM"
3116
- },
3117
- "MEd": {
3118
- "d": "E dd/MM–E dd/MM",
3119
- "M": "E dd/MM–E dd/MM"
3120
- },
3121
- "MMM": {
3122
- "M": "MMM–MMM"
3123
- },
3124
- "MMMd": {
3125
- "d": "d.–d. MMM",
3126
- "M": "d. MMM–d. MMM"
3127
- },
3128
- "MMMEd": {
3129
- "d": "E 'den' d.–E 'den' d. MMM",
3130
- "M": "E 'den' d. MMM–E 'den' d. MMM"
3131
- },
3132
- "y": {
3133
- "y": "y–y G"
3134
- },
3135
- "yM": {
3136
- "M": "MM/y–MM/y G",
3137
- "y": "MM/y–MM/y G"
3138
- },
3139
- "yMd": {
3140
- "d": "dd/MM/y–dd/MM/y G",
3141
- "M": "dd/MM/y–dd/MM/y G",
3142
- "y": "dd/MM/y–dd/MM/y G"
3143
- },
3144
- "yMEd": {
3145
- "d": "E dd/MM/y–E dd/MM/y G",
3146
- "M": "E dd/MM/y–E dd/MM/y G",
3147
- "y": "E dd/MM/y–E dd/MM/y G"
3148
- },
3149
- "yMMM": {
3150
- "M": "MMM–MMM y G",
3151
- "y": "MMM y–MMM y G"
3152
- },
3153
- "yMMMd": {
3154
- "d": "d.–d. MMM y G",
3155
- "M": "d. MMM–d. MMM y G",
3156
- "y": "d. MMM y–d. MMM y G"
3157
- },
3158
- "yMMMEd": {
3159
- "d": "E 'den' d.–E 'den' d. MMM y G",
3160
- "M": "E 'den' d. MMM–E 'den' d. MMM y G",
3161
- "y": "E 'den' d. MMM y–E 'den' d. MMM y G"
3162
- },
3163
- "yMMMM": {
3164
- "M": "MMMM–MMMM y G",
3165
- "y": "MMMM y–MMMM y G"
3166
- }
3167
- }
3168
- },
3169
- "months": {
3170
- "format": {
3171
- "abbreviated": [
3172
- "jan.",
3173
- "feb.",
3174
- "mar.",
3175
- "apr.",
3176
- "maj",
3177
- "jun.",
3178
- "jul.",
3179
- "aug.",
3180
- "sep.",
3181
- "okt.",
3182
- "nov.",
3183
- "dec."
3184
- ],
3185
- "narrow": [
3186
- "J",
3187
- "F",
3188
- "M",
3189
- "A",
3190
- "M",
3191
- "J",
3192
- "J",
3193
- "A",
3194
- "S",
3195
- "O",
3196
- "N",
3197
- "D"
3198
- ],
3199
- "wide": [
3200
- "januar",
3201
- "februar",
3202
- "marts",
3203
- "april",
3204
- "maj",
3205
- "juni",
3206
- "juli",
3207
- "august",
3208
- "september",
3209
- "oktober",
3210
- "november",
3211
- "december"
3212
- ]
3213
- },
3214
- "stand-alone": {
3215
- "abbreviated": [
3216
- "jan.",
3217
- "feb.",
3218
- "mar.",
3219
- "apr.",
3220
- "maj",
3221
- "jun.",
3222
- "jul.",
3223
- "aug.",
3224
- "sep.",
3225
- "okt.",
3226
- "nov.",
3227
- "dec."
3228
- ],
3229
- "narrow": [
3230
- "J",
3231
- "F",
3232
- "M",
3233
- "A",
3234
- "M",
3235
- "J",
3236
- "J",
3237
- "A",
3238
- "S",
3239
- "O",
3240
- "N",
3241
- "D"
3242
- ],
3243
- "wide": [
3244
- "januar",
3245
- "februar",
3246
- "marts",
3247
- "april",
3248
- "maj",
3249
- "juni",
3250
- "juli",
3251
- "august",
3252
- "september",
3253
- "oktober",
3254
- "november",
3255
- "december"
3256
- ]
3257
- }
3258
- },
3259
- "days": {
3260
- "format": {
3261
- "abbreviated": [
3262
- "søn.",
3263
- "man.",
3264
- "tir.",
3265
- "ons.",
3266
- "tor.",
3267
- "fre.",
3268
- "lør."
3269
- ],
3270
- "narrow": [
3271
- "S",
3272
- "M",
3273
- "T",
3274
- "O",
3275
- "T",
3276
- "F",
3277
- "L"
3278
- ],
3279
- "short": [
3280
- "sø",
3281
- "ma",
3282
- "ti",
3283
- "on",
3284
- "to",
3285
- "fr",
3286
- "lø"
3287
- ],
3288
- "wide": [
3289
- "søndag",
3290
- "mandag",
3291
- "tirsdag",
3292
- "onsdag",
3293
- "torsdag",
3294
- "fredag",
3295
- "lørdag"
3296
- ]
3297
- },
3298
- "stand-alone": {
3299
- "abbreviated": [
3300
- "søn",
3301
- "man",
3302
- "tir",
3303
- "ons",
3304
- "tor",
3305
- "fre",
3306
- "lør"
3307
- ],
3308
- "narrow": [
3309
- "S",
3310
- "M",
3311
- "T",
3312
- "O",
3313
- "T",
3314
- "F",
3315
- "L"
3316
- ],
3317
- "short": [
3318
- "sø",
3319
- "ma",
3320
- "ti",
3321
- "on",
3322
- "to",
3323
- "fr",
3324
- "lø"
3325
- ],
3326
- "wide": [
3327
- "søndag",
3328
- "mandag",
3329
- "tirsdag",
3330
- "onsdag",
3331
- "torsdag",
3332
- "fredag",
3333
- "lørdag"
3334
- ]
3335
- }
3336
- },
3337
- "quarters": {
3338
- "format": {
3339
- "abbreviated": [
3340
- "1. kvt.",
3341
- "2. kvt.",
3342
- "3. kvt.",
3343
- "4. kvt."
3344
- ],
3345
- "narrow": [
3346
- "1",
3347
- "2",
3348
- "3",
3349
- "4"
3350
- ],
3351
- "wide": [
3352
- "1. kvartal",
3353
- "2. kvartal",
3354
- "3. kvartal",
3355
- "4. kvartal"
3356
- ]
3357
- },
3358
- "stand-alone": {
3359
- "abbreviated": [
3360
- "1. kvt.",
3361
- "2. kvt.",
3362
- "3. kvt.",
3363
- "4. kvt."
3364
- ],
3365
- "narrow": [
3366
- "1",
3367
- "2",
3368
- "3",
3369
- "4"
3370
- ],
3371
- "wide": [
3372
- "1. kvartal",
3373
- "2. kvartal",
3374
- "3. kvartal",
3375
- "4. kvartal"
3376
- ]
3377
- }
3378
- },
3379
- "dayPeriods": {
3380
- "format": {
3381
- "abbreviated": [
3382
- "AM",
3383
- "PM"
3384
- ],
3385
- "narrow": [
3386
- "a",
3387
- "p"
3388
- ],
3389
- "wide": [
3390
- "AM",
3391
- "PM"
3392
- ]
3393
- },
3394
- "stand-alone": {
3395
- "abbreviated": [
3396
- "AM",
3397
- "PM"
3398
- ],
3399
- "narrow": [
3400
- "AM",
3401
- "PM"
3402
- ],
3403
- "wide": [
3404
- "AM",
3405
- "PM"
3406
- ]
3407
- }
3408
- },
3409
- "era-wide": {
3410
- "0": "BE"
3411
- },
3412
- "era-abbreviated": {
3413
- "0": "BE"
3414
- },
3415
- "era-narrow": {
3416
- "0": "BE"
3417
- }
3418
- },
3419
- "dateFields": {
3420
- "era": {
3421
- "displayName": "æra"
3422
- },
3423
- "year-wide": {
3424
- "displayName": "år",
3425
- "relative-type--1": "sidste år",
3426
- "relative-type-0": "i år",
3427
- "relative-type-1": "næste år",
3428
- "relativeTime-type-future": {
3429
- "relativeTimePattern-count-one": "om {0} år",
3430
- "relativeTimePattern-count-other": "om {0} år"
3431
- },
3432
- "relativeTime-type-past": {
3433
- "relativeTimePattern-count-one": "for {0} år siden",
3434
- "relativeTimePattern-count-other": "for {0} år siden"
3435
- }
3436
- },
3437
- "year-short": {
3438
- "displayName": "år",
3439
- "relative-type--1": "sidste år",
3440
- "relative-type-0": "i år",
3441
- "relative-type-1": "næste år",
3442
- "relativeTime-type-future": {
3443
- "relativeTimePattern-count-one": "om {0} år",
3444
- "relativeTimePattern-count-other": "om {0} år"
3445
- },
3446
- "relativeTime-type-past": {
3447
- "relativeTimePattern-count-one": "for {0} år siden",
3448
- "relativeTimePattern-count-other": "for {0} år siden"
3449
- }
3450
- },
3451
- "year-narrow": {
3452
- "displayName": "år",
3453
- "relative-type--1": "sidste år",
3454
- "relative-type-0": "i år",
3455
- "relative-type-1": "næste år",
3456
- "relativeTime-type-future": {
3457
- "relativeTimePattern-count-one": "om {0} år",
3458
- "relativeTimePattern-count-other": "om {0} år"
3459
- },
3460
- "relativeTime-type-past": {
3461
- "relativeTimePattern-count-one": "for {0} år siden",
3462
- "relativeTimePattern-count-other": "for {0} år siden"
3463
- }
3464
- },
3465
- "quarter-wide": {
3466
- "displayName": "kvartal",
3467
- "relative-type--1": "sidste kvartal",
3468
- "relative-type-0": "dette kvartal",
3469
- "relative-type-1": "næste kvartal",
3470
- "relativeTime-type-future": {
3471
- "relativeTimePattern-count-one": "om {0} kvartal",
3472
- "relativeTimePattern-count-other": "om {0} kvartaler"
3473
- },
3474
- "relativeTime-type-past": {
3475
- "relativeTimePattern-count-one": "for {0} kvartal siden",
3476
- "relativeTimePattern-count-other": "for {0} kvartaler siden"
3477
- }
3478
- },
3479
- "quarter-short": {
3480
- "displayName": "kvt.",
3481
- "relative-type--1": "sidste kvt.",
3482
- "relative-type-0": "dette kvt.",
3483
- "relative-type-1": "næste kvt.",
3484
- "relativeTime-type-future": {
3485
- "relativeTimePattern-count-one": "om {0} kvt.",
3486
- "relativeTimePattern-count-other": "om {0} kvt."
3487
- },
3488
- "relativeTime-type-past": {
3489
- "relativeTimePattern-count-one": "for {0} kvt. siden",
3490
- "relativeTimePattern-count-other": "for {0} kvt. siden"
3491
- }
3492
- },
3493
- "quarter-narrow": {
3494
- "displayName": "kvt.",
3495
- "relative-type--1": "sidste kvt.",
3496
- "relative-type-0": "dette kvt.",
3497
- "relative-type-1": "næste kvt.",
3498
- "relativeTime-type-future": {
3499
- "relativeTimePattern-count-one": "om {0} kvt.",
3500
- "relativeTimePattern-count-other": "om {0} kvt."
3501
- },
3502
- "relativeTime-type-past": {
3503
- "relativeTimePattern-count-one": "for {0} kvt. siden",
3504
- "relativeTimePattern-count-other": "for {0} kvt. siden"
3505
- }
3506
- },
3507
- "month-wide": {
3508
- "displayName": "måned",
3509
- "relative-type--1": "sidste måned",
3510
- "relative-type-0": "denne måned",
3511
- "relative-type-1": "næste måned",
3512
- "relativeTime-type-future": {
3513
- "relativeTimePattern-count-one": "om {0} måned",
3514
- "relativeTimePattern-count-other": "om {0} måneder"
3515
- },
3516
- "relativeTime-type-past": {
3517
- "relativeTimePattern-count-one": "for {0} måned siden",
3518
- "relativeTimePattern-count-other": "for {0} måneder siden"
3519
- }
3520
- },
3521
- "month-short": {
3522
- "displayName": "md.",
3523
- "relative-type--1": "sidste md.",
3524
- "relative-type-0": "denne md.",
3525
- "relative-type-1": "næste md.",
3526
- "relativeTime-type-future": {
3527
- "relativeTimePattern-count-one": "om {0} md.",
3528
- "relativeTimePattern-count-other": "om {0} mdr."
3529
- },
3530
- "relativeTime-type-past": {
3531
- "relativeTimePattern-count-one": "for {0} md. siden",
3532
- "relativeTimePattern-count-other": "for {0} mdr. siden"
3533
- }
3534
- },
3535
- "month-narrow": {
3536
- "displayName": "md.",
3537
- "relative-type--1": "sidste md.",
3538
- "relative-type-0": "denne md.",
3539
- "relative-type-1": "næste md.",
3540
- "relativeTime-type-future": {
3541
- "relativeTimePattern-count-one": "om {0} md.",
3542
- "relativeTimePattern-count-other": "om {0} mdr."
3543
- },
3544
- "relativeTime-type-past": {
3545
- "relativeTimePattern-count-one": "for {0} md. siden",
3546
- "relativeTimePattern-count-other": "for {0} mdr. siden"
3547
- }
3548
- },
3549
- "week-wide": {
3550
- "displayName": "uge",
3551
- "relative-type--1": "sidste uge",
3552
- "relative-type-0": "denne uge",
3553
- "relative-type-1": "næste uge",
3554
- "relativeTime-type-future": {
3555
- "relativeTimePattern-count-one": "om {0} uge",
3556
- "relativeTimePattern-count-other": "om {0} uger"
3557
- },
3558
- "relativeTime-type-past": {
3559
- "relativeTimePattern-count-one": "for {0} uge siden",
3560
- "relativeTimePattern-count-other": "for {0} uger siden"
3561
- },
3562
- "relativePeriod": "i ugen med {0}"
3563
- },
3564
- "week-short": {
3565
- "displayName": "uge",
3566
- "relative-type--1": "sidste uge",
3567
- "relative-type-0": "denne uge",
3568
- "relative-type-1": "næste uge",
3569
- "relativeTime-type-future": {
3570
- "relativeTimePattern-count-one": "om {0} uge",
3571
- "relativeTimePattern-count-other": "om {0} uger"
3572
- },
3573
- "relativeTime-type-past": {
3574
- "relativeTimePattern-count-one": "for {0} uge siden",
3575
- "relativeTimePattern-count-other": "for {0} uger siden"
3576
- },
3577
- "relativePeriod": "i ugen med {0}"
3578
- },
3579
- "week-narrow": {
3580
- "displayName": "uge",
3581
- "relative-type--1": "sidste uge",
3582
- "relative-type-0": "denne uge",
3583
- "relative-type-1": "næste uge",
3584
- "relativeTime-type-future": {
3585
- "relativeTimePattern-count-one": "om {0} uge",
3586
- "relativeTimePattern-count-other": "om {0} uger"
3587
- },
3588
- "relativeTime-type-past": {
3589
- "relativeTimePattern-count-one": "for {0} uge siden",
3590
- "relativeTimePattern-count-other": "for {0} uger siden"
3591
- },
3592
- "relativePeriod": "i ugen med {0}"
3593
- },
3594
- "day-wide": {
3595
- "displayName": "dag",
3596
- "relative-type--2": "i forgårs",
3597
- "relative-type--1": "i går",
3598
- "relative-type-0": "i dag",
3599
- "relative-type-1": "i morgen",
3600
- "relative-type-2": "i overmorgen",
3601
- "relativeTime-type-future": {
3602
- "relativeTimePattern-count-one": "om {0} dag",
3603
- "relativeTimePattern-count-other": "om {0} dage"
3604
- },
3605
- "relativeTime-type-past": {
3606
- "relativeTimePattern-count-one": "for {0} dag siden",
3607
- "relativeTimePattern-count-other": "for {0} dage siden"
3608
- }
3609
- },
3610
- "day-short": {
3611
- "displayName": "dag",
3612
- "relative-type--2": "i forgårs",
3613
- "relative-type--1": "i går",
3614
- "relative-type-0": "i dag",
3615
- "relative-type-1": "i morgen",
3616
- "relative-type-2": "i overmorgen",
3617
- "relativeTime-type-future": {
3618
- "relativeTimePattern-count-one": "om {0} dag",
3619
- "relativeTimePattern-count-other": "om {0} dage"
3620
- },
3621
- "relativeTime-type-past": {
3622
- "relativeTimePattern-count-one": "for {0} dag siden",
3623
- "relativeTimePattern-count-other": "for {0} dage siden"
3624
- }
3625
- },
3626
- "day-narrow": {
3627
- "displayName": "dag",
3628
- "relative-type--2": "i forgårs",
3629
- "relative-type--1": "i går",
3630
- "relative-type-0": "i dag",
3631
- "relative-type-1": "i morgen",
3632
- "relative-type-2": "i overmorgen",
3633
- "relativeTime-type-future": {
3634
- "relativeTimePattern-count-one": "om {0} dag",
3635
- "relativeTimePattern-count-other": "om {0} dage"
3636
- },
3637
- "relativeTime-type-past": {
3638
- "relativeTimePattern-count-one": "for {0} dag siden",
3639
- "relativeTimePattern-count-other": "for {0} dage siden"
3640
- }
3641
- },
3642
- "weekday": {
3643
- "displayName": "ugedag"
3644
- },
3645
- "hour-wide": {
3646
- "displayName": "time",
3647
- "relative-type-0": "i den kommende time",
3648
- "relativeTime-type-future": {
3649
- "relativeTimePattern-count-one": "om {0} time",
3650
- "relativeTimePattern-count-other": "om {0} timer"
3651
- },
3652
- "relativeTime-type-past": {
3653
- "relativeTimePattern-count-one": "for {0} time siden",
3654
- "relativeTimePattern-count-other": "for {0} timer siden"
3655
- }
3656
- },
3657
- "hour-short": {
3658
- "displayName": "t.",
3659
- "relative-type-0": "i den kommende time",
3660
- "relativeTime-type-future": {
3661
- "relativeTimePattern-count-one": "om {0} time",
3662
- "relativeTimePattern-count-other": "om {0} timer"
3663
- },
3664
- "relativeTime-type-past": {
3665
- "relativeTimePattern-count-one": "for {0} time siden",
3666
- "relativeTimePattern-count-other": "for {0} timer siden"
3667
- }
3668
- },
3669
- "hour-narrow": {
3670
- "displayName": "t.",
3671
- "relative-type-0": "i den kommende time",
3672
- "relativeTime-type-future": {
3673
- "relativeTimePattern-count-one": "om {0} time",
3674
- "relativeTimePattern-count-other": "om {0} timer"
3675
- },
3676
- "relativeTime-type-past": {
3677
- "relativeTimePattern-count-one": "for {0} time siden",
3678
- "relativeTimePattern-count-other": "for {0} timer siden"
3679
- }
3680
- },
3681
- "minute-wide": {
3682
- "displayName": "minut",
3683
- "relative-type-0": "i det kommende minut",
3684
- "relativeTime-type-future": {
3685
- "relativeTimePattern-count-one": "om {0} minut",
3686
- "relativeTimePattern-count-other": "om {0} minutter"
3687
- },
3688
- "relativeTime-type-past": {
3689
- "relativeTimePattern-count-one": "for {0} minut siden",
3690
- "relativeTimePattern-count-other": "for {0} minutter siden"
3691
- }
3692
- },
3693
- "minute-short": {
3694
- "displayName": "min.",
3695
- "relative-type-0": "i det kommende minut",
3696
- "relativeTime-type-future": {
3697
- "relativeTimePattern-count-one": "om {0} min.",
3698
- "relativeTimePattern-count-other": "om {0} min."
3699
- },
3700
- "relativeTime-type-past": {
3701
- "relativeTimePattern-count-one": "for {0} min. siden",
3702
- "relativeTimePattern-count-other": "for {0} min. siden"
3703
- }
3704
- },
3705
- "minute-narrow": {
3706
- "displayName": "min.",
3707
- "relative-type-0": "i det kommende minut",
3708
- "relativeTime-type-future": {
3709
- "relativeTimePattern-count-one": "om {0} min.",
3710
- "relativeTimePattern-count-other": "om {0} min."
3711
- },
3712
- "relativeTime-type-past": {
3713
- "relativeTimePattern-count-one": "for {0} min. siden",
3714
- "relativeTimePattern-count-other": "for {0} min. siden"
3715
- }
3716
- },
3717
- "second-wide": {
3718
- "displayName": "sekund",
3719
- "relative-type-0": "nu",
3720
- "relativeTime-type-future": {
3721
- "relativeTimePattern-count-one": "om {0} sekund",
3722
- "relativeTimePattern-count-other": "om {0} sekunder"
3723
- },
3724
- "relativeTime-type-past": {
3725
- "relativeTimePattern-count-one": "for {0} sekund siden",
3726
- "relativeTimePattern-count-other": "for {0} sekunder siden"
3727
- }
3728
- },
3729
- "second-short": {
3730
- "displayName": "sek.",
3731
- "relative-type-0": "nu",
3732
- "relativeTime-type-future": {
3733
- "relativeTimePattern-count-one": "om {0} sek.",
3734
- "relativeTimePattern-count-other": "om {0} sek."
3735
- },
3736
- "relativeTime-type-past": {
3737
- "relativeTimePattern-count-one": "for {0} sek. siden",
3738
- "relativeTimePattern-count-other": "for {0} sek. siden"
3739
- }
3740
- },
3741
- "second-narrow": {
3742
- "displayName": "s",
3743
- "relative-type-0": "nu",
3744
- "relativeTime-type-future": {
3745
- "relativeTimePattern-count-one": "om {0} sek.",
3746
- "relativeTimePattern-count-other": "om {0} sek."
3747
- },
3748
- "relativeTime-type-past": {
3749
- "relativeTimePattern-count-one": "for {0} sek. siden",
3750
- "relativeTimePattern-count-other": "for {0} sek. siden"
3751
- }
3752
- },
3753
- "zone": {
3754
- "displayName": "tidszone"
3755
- }
3756
- },
3757
- "decimalFormat": {
3758
- "standard": "#,##0.###"
3759
- },
3760
- "decimalFormat-long": {
3761
- "1000-one": "0 tusind",
3762
- "1000-other": "0 tusind",
3763
- "10000-one": "00 tusind",
3764
- "10000-other": "00 tusind",
3765
- "100000-one": "000 tusind",
3766
- "100000-other": "000 tusind",
3767
- "1000000-one": "0 million",
3768
- "1000000-other": "0 millioner",
3769
- "10000000-one": "00 millioner",
3770
- "10000000-other": "00 millioner",
3771
- "100000000-one": "000 millioner",
3772
- "100000000-other": "000 millioner",
3773
- "1000000000-one": "0 milliard",
3774
- "1000000000-other": "0 milliarder",
3775
- "10000000000-one": "00 milliarder",
3776
- "10000000000-other": "00 milliarder",
3777
- "100000000000-one": "000 milliarder",
3778
- "100000000000-other": "000 milliarder",
3779
- "1000000000000-one": "0 billion",
3780
- "1000000000000-other": "0 billioner",
3781
- "10000000000000-one": "00 billioner",
3782
- "10000000000000-other": "00 billioner",
3783
- "100000000000000-one": "000 billioner",
3784
- "100000000000000-other": "000 billioner"
3785
- },
3786
- "decimalFormat-short": {
3787
- "1000-one": "0 t",
3788
- "1000-other": "0 t",
3789
- "10000-one": "00 t",
3790
- "10000-other": "00 t",
3791
- "100000-one": "000 t",
3792
- "100000-other": "000 t",
3793
- "1000000-one": "0 mio'.'",
3794
- "1000000-other": "0 mio'.'",
3795
- "10000000-one": "00 mio'.'",
3796
- "10000000-other": "00 mio'.'",
3797
- "100000000-one": "000 mio'.'",
3798
- "100000000-other": "000 mio'.'",
3799
- "1000000000-one": "0 mia'.'",
3800
- "1000000000-other": "0 mia'.'",
3801
- "10000000000-one": "00 mia'.'",
3802
- "10000000000-other": "00 mia'.'",
3803
- "100000000000-one": "000 mia'.'",
3804
- "100000000000-other": "000 mia'.'",
3805
- "1000000000000-one": "0 bio'.'",
3806
- "1000000000000-other": "0 bio'.'",
3807
- "10000000000000-one": "00 bio'.'",
3808
- "10000000000000-other": "00 bio'.'",
3809
- "100000000000000-one": "000 bio'.'",
3810
- "100000000000000-other": "000 bio'.'"
3811
- },
3812
- "scientificFormat": {
3813
- "standard": "#E0"
3814
- },
3815
- "percentFormat": {
3816
- "standard": "#,##0 %"
3817
- },
3818
- "currencyFormat": {
3819
- "standard": "#,##0.00 ¤",
3820
- "accounting": "#,##0.00 ¤",
3821
- "currencySpacing": {
3822
- "beforeCurrency": {
3823
- "currencyMatch": "[:^S:]",
3824
- "surroundingMatch": "[:digit:]",
3825
- "insertBetween": " "
3826
- },
3827
- "afterCurrency": {
3828
- "currencyMatch": "[:^S:]",
3829
- "surroundingMatch": "[:digit:]",
3830
- "insertBetween": " "
3831
- }
3832
- },
3833
- "sap-standard": "#,##0.00 ¤",
3834
- "sap-accounting": "#,##0.00 ¤"
3835
- },
3836
- "miscPattern": {
3837
- "approximately": "~{0}",
3838
- "atLeast": "{0}+",
3839
- "atMost": "≤{0}",
3840
- "range": "{0}-{1}"
3841
- },
3842
- "currencyFormat-short": {
3843
- "1000-one": "0 t ¤",
3844
- "1000-other": "0 t ¤",
3845
- "10000-one": "00 t ¤",
3846
- "10000-other": "00 t ¤",
3847
- "100000-one": "000 t ¤",
3848
- "100000-other": "000 t ¤",
3849
- "1000000-one": "0 mio'.' ¤",
3850
- "1000000-other": "0 mio'.' ¤",
3851
- "10000000-one": "00 mio'.' ¤",
3852
- "10000000-other": "00 mio'.' ¤",
3853
- "100000000-one": "000 mio'.' ¤",
3854
- "100000000-other": "000 mio'.' ¤",
3855
- "1000000000-one": "0 mia'.' ¤",
3856
- "1000000000-other": "0 mia'.' ¤",
3857
- "10000000000-one": "00 mia'.' ¤",
3858
- "10000000000-other": "00 mia'.' ¤",
3859
- "100000000000-one": "000 mia'.' ¤",
3860
- "100000000000-other": "000 mia'.' ¤",
3861
- "1000000000000-one": "0 bio'.' ¤",
3862
- "1000000000000-other": "0 bio'.' ¤",
3863
- "10000000000000-one": "00 bio'.' ¤",
3864
- "10000000000000-other": "00 bio'.' ¤",
3865
- "100000000000000-one": "000 bio'.' ¤",
3866
- "100000000000000-other": "000 bio'.' ¤"
3867
- },
3868
- "symbols-latn-decimal": ",",
3869
- "symbols-latn-group": ".",
3870
- "symbols-latn-list": ";",
3871
- "symbols-latn-percentSign": "%",
3872
- "symbols-latn-plusSign": "+",
3873
- "symbols-latn-minusSign": "-",
3874
- "symbols-latn-exponential": "E",
3875
- "symbols-latn-superscriptingExponent": "×",
3876
- "symbols-latn-perMille": "‰",
3877
- "symbols-latn-infinity": "∞",
3878
- "symbols-latn-nan": "NaN",
3879
- "symbols-latn-timeSeparator": ".",
3880
- "currencySymbols": {
3881
- "AUD": "AU$",
3882
- "BRL": "R$",
3883
- "CAD": "CA$",
3884
- "CNY": "CN¥",
3885
- "DKK": "kr.",
3886
- "EUR": "€",
3887
- "GBP": "£",
3888
- "HKD": "HK$",
3889
- "ILS": "₪",
3890
- "INR": "₹",
3891
- "JPY": "JP¥",
3892
- "KRW": "₩",
3893
- "MXN": "MX$",
3894
- "NZD": "NZ$",
3895
- "THB": "฿",
3896
- "TWD": "NT$",
3897
- "USD": "$",
3898
- "VND": "₫",
3899
- "XAF": "FCFA",
3900
- "XCD": "EC$",
3901
- "XOF": "CFA",
3902
- "XPF": "CFPF",
3903
- "XXX": "¤"
3904
- },
3905
- "rtl": false,
3906
- "listPattern-standard-wide": {
3907
- "2": "{0} og {1}",
3908
- "start": "{0}, {1}",
3909
- "middle": "{0}, {1}",
3910
- "end": "{0} og {1}"
3911
- },
3912
- "listPattern-or-wide": {
3913
- "2": "{0} eller {1}",
3914
- "start": "{0}, {1}",
3915
- "middle": "{0}, {1}",
3916
- "end": "{0} eller {1}"
3917
- },
3918
- "listPattern-or-short": {
3919
- "2": "{0} eller {1}",
3920
- "start": "{0}, {1}",
3921
- "middle": "{0}, {1}",
3922
- "end": "{0} eller {1}"
3923
- },
3924
- "listPattern-standard-short": {
3925
- "2": "{0} og {1}",
3926
- "start": "{0}, {1}",
3927
- "middle": "{0}, {1}",
3928
- "end": "{0} og {1}"
3929
- },
3930
- "units": {
3931
- "short": {
3932
- "per": {
3933
- "compoundUnitPattern": "{0}/{1}"
3934
- },
3935
- "acceleration-g-force": {
3936
- "displayName": "G-kraft",
3937
- "unitPattern-count-one": "{0} G",
3938
- "unitPattern-count-other": "{0} G"
3939
- },
3940
- "acceleration-meter-per-second-squared": {
3941
- "displayName": "m/s²",
3942
- "unitPattern-count-one": "{0} m/s²",
3943
- "unitPattern-count-other": "{0} m/s²"
3944
- },
3945
- "angle-revolution": {
3946
- "displayName": "omdr.",
3947
- "unitPattern-count-one": "{0} omdr.",
3948
- "unitPattern-count-other": "{0} omdr."
3949
- },
3950
- "angle-radian": {
3951
- "displayName": "radian",
3952
- "unitPattern-count-one": "{0} radian",
3953
- "unitPattern-count-other": "{0} radian"
3954
- },
3955
- "angle-degree": {
3956
- "displayName": "grader",
3957
- "unitPattern-count-one": "{0}°",
3958
- "unitPattern-count-other": "{0}°"
3959
- },
3960
- "angle-arc-minute": {
3961
- "displayName": "buemin.",
3962
- "unitPattern-count-one": "{0}′",
3963
- "unitPattern-count-other": "{0}′"
3964
- },
3965
- "angle-arc-second": {
3966
- "displayName": "buesek.",
3967
- "unitPattern-count-one": "{0}″",
3968
- "unitPattern-count-other": "{0}″"
3969
- },
3970
- "area-square-kilometer": {
3971
- "displayName": "km²",
3972
- "unitPattern-count-one": "{0} km²",
3973
- "unitPattern-count-other": "{0} km²",
3974
- "perUnitPattern": "{0}/km²"
3975
- },
3976
- "area-hectare": {
3977
- "displayName": "hektar",
3978
- "unitPattern-count-one": "{0} ha",
3979
- "unitPattern-count-other": "{0} ha"
3980
- },
3981
- "area-square-meter": {
3982
- "displayName": "m²",
3983
- "unitPattern-count-one": "{0} m²",
3984
- "unitPattern-count-other": "{0} m²",
3985
- "perUnitPattern": "{0}/m²"
3986
- },
3987
- "area-square-centimeter": {
3988
- "displayName": "cm²",
3989
- "unitPattern-count-one": "{0} cm²",
3990
- "unitPattern-count-other": "{0} cm²",
3991
- "perUnitPattern": "{0}/cm²"
3992
- },
3993
- "area-square-mile": {
3994
- "displayName": "mi²",
3995
- "unitPattern-count-one": "{0} mi²",
3996
- "unitPattern-count-other": "{0} mi²",
3997
- "perUnitPattern": "{0}/mi²"
3998
- },
3999
- "area-acre": {
4000
- "displayName": "acre",
4001
- "unitPattern-count-one": "{0} ac",
4002
- "unitPattern-count-other": "{0} ac"
4003
- },
4004
- "area-square-yard": {
4005
- "displayName": "yd²",
4006
- "unitPattern-count-one": "{0} yd²",
4007
- "unitPattern-count-other": "{0} yd²"
4008
- },
4009
- "area-square-foot": {
4010
- "displayName": "kvadratfod",
4011
- "unitPattern-count-one": "{0} kvadratfod",
4012
- "unitPattern-count-other": "{0} kvadratfod"
4013
- },
4014
- "area-square-inch": {
4015
- "displayName": "in²",
4016
- "unitPattern-count-one": "{0} in²",
4017
- "unitPattern-count-other": "{0} in²",
4018
- "perUnitPattern": "{0}/in²"
4019
- },
4020
- "area-dunam": {
4021
- "displayName": "dunam",
4022
- "unitPattern-count-one": "{0} dunam",
4023
- "unitPattern-count-other": "{0} dunam"
4024
- },
4025
- "concentr-karat": {
4026
- "displayName": "karat",
4027
- "unitPattern-count-one": "{0} kt.",
4028
- "unitPattern-count-other": "{0} kt."
4029
- },
4030
- "concentr-milligram-per-deciliter": {
4031
- "displayName": "mg/dl",
4032
- "unitPattern-count-one": "{0} mg/dl",
4033
- "unitPattern-count-other": "{0} mg/dl"
4034
- },
4035
- "concentr-millimole-per-liter": {
4036
- "displayName": "mmol/l",
4037
- "unitPattern-count-one": "{0} mmol/l",
4038
- "unitPattern-count-other": "{0} mmol/l"
4039
- },
4040
- "concentr-part-per-million": {
4041
- "displayName": "ppm",
4042
- "unitPattern-count-one": "{0} ppm",
4043
- "unitPattern-count-other": "{0} ppm"
4044
- },
4045
- "concentr-percent": {
4046
- "displayName": "pct.",
4047
- "unitPattern-count-one": "{0} pct.",
4048
- "unitPattern-count-other": "{0} pct."
4049
- },
4050
- "concentr-permille": {
4051
- "displayName": "‰",
4052
- "unitPattern-count-one": "{0} ‰",
4053
- "unitPattern-count-other": "{0} ‰"
4054
- },
4055
- "concentr-permyriad": {
4056
- "displayName": "‱",
4057
- "unitPattern-count-one": "{0} ‱",
4058
- "unitPattern-count-other": "{0} ‱"
4059
- },
4060
- "concentr-mole": {
4061
- "displayName": "mol",
4062
- "unitPattern-count-one": "{0} mol",
4063
- "unitPattern-count-other": "{0} mol"
4064
- },
4065
- "consumption-liter-per-kilometer": {
4066
- "displayName": "l/km",
4067
- "unitPattern-count-one": "{0} l/km",
4068
- "unitPattern-count-other": "{0} l/km"
4069
- },
4070
- "consumption-liter-per-100kilometers": {
4071
- "displayName": "l/100 km",
4072
- "unitPattern-count-one": "{0} l/100 km",
4073
- "unitPattern-count-other": "{0} l/100 km"
4074
- },
4075
- "consumption-mile-per-gallon": {
4076
- "displayName": "mpg",
4077
- "unitPattern-count-one": "{0} mpg",
4078
- "unitPattern-count-other": "{0} mpg"
4079
- },
4080
- "consumption-mile-per-gallon-imperial": {
4081
- "displayName": "mil/eng. gal",
4082
- "unitPattern-count-one": "{0} eng. mpg",
4083
- "unitPattern-count-other": "{0} eng. mpg"
4084
- },
4085
- "digital-petabyte": {
4086
- "displayName": "PB",
4087
- "unitPattern-count-one": "{0} PB",
4088
- "unitPattern-count-other": "{0} PB"
4089
- },
4090
- "digital-terabyte": {
4091
- "displayName": "TB",
4092
- "unitPattern-count-one": "{0} TB",
4093
- "unitPattern-count-other": "{0} TB"
4094
- },
4095
- "digital-terabit": {
4096
- "displayName": "Tbit",
4097
- "unitPattern-count-one": "{0} Tbit",
4098
- "unitPattern-count-other": "{0} Tbit"
4099
- },
4100
- "digital-gigabyte": {
4101
- "displayName": "GB",
4102
- "unitPattern-count-one": "{0} GB",
4103
- "unitPattern-count-other": "{0} GB"
4104
- },
4105
- "digital-gigabit": {
4106
- "displayName": "Gbit",
4107
- "unitPattern-count-one": "{0} Gbit",
4108
- "unitPattern-count-other": "{0} Gbit"
4109
- },
4110
- "digital-megabyte": {
4111
- "displayName": "MB",
4112
- "unitPattern-count-one": "{0} MB",
4113
- "unitPattern-count-other": "{0} MB"
4114
- },
4115
- "digital-megabit": {
4116
- "displayName": "Mbit",
4117
- "unitPattern-count-one": "{0} Mbit",
4118
- "unitPattern-count-other": "{0} Mbit"
4119
- },
4120
- "digital-kilobyte": {
4121
- "displayName": "kB",
4122
- "unitPattern-count-one": "{0} kB",
4123
- "unitPattern-count-other": "{0} kB"
4124
- },
4125
- "digital-kilobit": {
4126
- "displayName": "kbit",
4127
- "unitPattern-count-one": "{0} kbit",
4128
- "unitPattern-count-other": "{0} kbit"
4129
- },
4130
- "digital-byte": {
4131
- "displayName": "byte",
4132
- "unitPattern-count-one": "{0} byte",
4133
- "unitPattern-count-other": "{0} byte"
4134
- },
4135
- "digital-bit": {
4136
- "displayName": "bit",
4137
- "unitPattern-count-one": "{0} bit",
4138
- "unitPattern-count-other": "{0} bit"
4139
- },
4140
- "duration-century": {
4141
- "displayName": "årh.",
4142
- "unitPattern-count-one": "{0} årh.",
4143
- "unitPattern-count-other": "{0} årh."
4144
- },
4145
- "duration-year": {
4146
- "displayName": "år",
4147
- "unitPattern-count-one": "{0} år",
4148
- "unitPattern-count-other": "{0} år",
4149
- "perUnitPattern": "{0}/år"
4150
- },
4151
- "duration-month": {
4152
- "displayName": "måneder",
4153
- "unitPattern-count-one": "{0} md.",
4154
- "unitPattern-count-other": "{0} mdr.",
4155
- "perUnitPattern": "{0}/md."
4156
- },
4157
- "duration-week": {
4158
- "displayName": "uger",
4159
- "unitPattern-count-one": "{0} uge",
4160
- "unitPattern-count-other": "{0} uger",
4161
- "perUnitPattern": "{0}/uge"
4162
- },
4163
- "duration-day": {
4164
- "displayName": "dage",
4165
- "unitPattern-count-one": "{0} dag",
4166
- "unitPattern-count-other": "{0} dage",
4167
- "perUnitPattern": "{0}/dag"
4168
- },
4169
- "duration-hour": {
4170
- "displayName": "timer",
4171
- "unitPattern-count-one": "{0} t",
4172
- "unitPattern-count-other": "{0} t",
4173
- "perUnitPattern": "{0} /t"
4174
- },
4175
- "duration-minute": {
4176
- "displayName": "minutter",
4177
- "unitPattern-count-one": "{0} min.",
4178
- "unitPattern-count-other": "{0} min.",
4179
- "perUnitPattern": "{0}/min."
4180
- },
4181
- "duration-second": {
4182
- "displayName": "sekunder",
4183
- "unitPattern-count-one": "{0} sek.",
4184
- "unitPattern-count-other": "{0} sek.",
4185
- "perUnitPattern": "{0}/sek."
4186
- },
4187
- "duration-millisecond": {
4188
- "displayName": "milisek.",
4189
- "unitPattern-count-one": "{0} ms",
4190
- "unitPattern-count-other": "{0} ms"
4191
- },
4192
- "duration-microsecond": {
4193
- "displayName": "μs",
4194
- "unitPattern-count-one": "{0} μs",
4195
- "unitPattern-count-other": "{0} μs"
4196
- },
4197
- "duration-nanosecond": {
4198
- "displayName": "ns",
4199
- "unitPattern-count-one": "{0} ns",
4200
- "unitPattern-count-other": "{0} ns"
4201
- },
4202
- "electric-ampere": {
4203
- "displayName": "A",
4204
- "unitPattern-count-one": "{0} A",
4205
- "unitPattern-count-other": "{0} A"
4206
- },
4207
- "electric-milliampere": {
4208
- "displayName": "mA",
4209
- "unitPattern-count-one": "{0} mA",
4210
- "unitPattern-count-other": "{0} mA"
4211
- },
4212
- "electric-ohm": {
4213
- "displayName": "Ω",
4214
- "unitPattern-count-one": "{0} Ω",
4215
- "unitPattern-count-other": "{0} Ω"
4216
- },
4217
- "electric-volt": {
4218
- "displayName": "V",
4219
- "unitPattern-count-one": "{0} V",
4220
- "unitPattern-count-other": "{0} V"
4221
- },
4222
- "energy-kilocalorie": {
4223
- "displayName": "kcal",
4224
- "unitPattern-count-one": "{0} kcal",
4225
- "unitPattern-count-other": "{0} kcal"
4226
- },
4227
- "energy-calorie": {
4228
- "displayName": "cal",
4229
- "unitPattern-count-one": "{0} cal",
4230
- "unitPattern-count-other": "{0} cal"
4231
- },
4232
- "energy-foodcalorie": {
4233
- "displayName": "cal",
4234
- "unitPattern-count-one": "{0} cal",
4235
- "unitPattern-count-other": "{0} cal"
4236
- },
4237
- "energy-kilojoule": {
4238
- "displayName": "kJ",
4239
- "unitPattern-count-one": "{0} kJ",
4240
- "unitPattern-count-other": "{0} kJ"
4241
- },
4242
- "energy-joule": {
4243
- "displayName": "joule",
4244
- "unitPattern-count-one": "{0} J",
4245
- "unitPattern-count-other": "{0} J"
4246
- },
4247
- "energy-kilowatt-hour": {
4248
- "displayName": "kWh",
4249
- "unitPattern-count-one": "{0} kWh",
4250
- "unitPattern-count-other": "{0} kWh"
4251
- },
4252
- "energy-electronvolt": {
4253
- "displayName": "elektronvolt",
4254
- "unitPattern-count-one": "{0} eV",
4255
- "unitPattern-count-other": "{0} eV"
4256
- },
4257
- "energy-british-thermal-unit": {
4258
- "displayName": "Btu",
4259
- "unitPattern-count-one": "{0} Btu",
4260
- "unitPattern-count-other": "{0} Btu"
4261
- },
4262
- "force-pound-force": {
4263
- "displayName": "lbf",
4264
- "unitPattern-count-one": "{0} lbf",
4265
- "unitPattern-count-other": "{0} lbf"
4266
- },
4267
- "force-newton": {
4268
- "displayName": "newton",
4269
- "unitPattern-count-one": "{0} N",
4270
- "unitPattern-count-other": "{0} N"
4271
- },
4272
- "frequency-gigahertz": {
4273
- "displayName": "GHz",
4274
- "unitPattern-count-one": "{0} GHz",
4275
- "unitPattern-count-other": "{0} GHz"
4276
- },
4277
- "frequency-megahertz": {
4278
- "displayName": "MHz",
4279
- "unitPattern-count-one": "{0} MHz",
4280
- "unitPattern-count-other": "{0} MHz"
4281
- },
4282
- "frequency-kilohertz": {
4283
- "displayName": "kHz",
4284
- "unitPattern-count-one": "{0} kHz",
4285
- "unitPattern-count-other": "{0} kHz"
4286
- },
4287
- "frequency-hertz": {
4288
- "displayName": "Hz",
4289
- "unitPattern-count-one": "{0} Hz",
4290
- "unitPattern-count-other": "{0} Hz"
4291
- },
4292
- "length-kilometer": {
4293
- "displayName": "km",
4294
- "unitPattern-count-one": "{0} km",
4295
- "unitPattern-count-other": "{0} km",
4296
- "perUnitPattern": "{0}/km"
4297
- },
4298
- "length-meter": {
4299
- "displayName": "meter",
4300
- "unitPattern-count-one": "{0} m",
4301
- "unitPattern-count-other": "{0} m",
4302
- "perUnitPattern": "{0}/m"
4303
- },
4304
- "length-decimeter": {
4305
- "displayName": "dm",
4306
- "unitPattern-count-one": "{0} dm",
4307
- "unitPattern-count-other": "{0} dm"
4308
- },
4309
- "length-centimeter": {
4310
- "displayName": "cm",
4311
- "unitPattern-count-one": "{0} cm",
4312
- "unitPattern-count-other": "{0} cm",
4313
- "perUnitPattern": "{0}/cm"
4314
- },
4315
- "length-millimeter": {
4316
- "displayName": "mm",
4317
- "unitPattern-count-one": "{0} mm",
4318
- "unitPattern-count-other": "{0} mm"
4319
- },
4320
- "length-micrometer": {
4321
- "displayName": "µm",
4322
- "unitPattern-count-one": "{0} µm",
4323
- "unitPattern-count-other": "{0} µm"
4324
- },
4325
- "length-nanometer": {
4326
- "displayName": "nm",
4327
- "unitPattern-count-one": "{0} nm",
4328
- "unitPattern-count-other": "{0} nm"
4329
- },
4330
- "length-picometer": {
4331
- "displayName": "pm",
4332
- "unitPattern-count-one": "{0} pm",
4333
- "unitPattern-count-other": "{0} pm"
4334
- },
4335
- "length-mile": {
4336
- "displayName": "engelske mil",
4337
- "unitPattern-count-one": "{0} mil",
4338
- "unitPattern-count-other": "{0} mil"
4339
- },
4340
- "length-yard": {
4341
- "displayName": "engelske yard",
4342
- "unitPattern-count-one": "{0} yard",
4343
- "unitPattern-count-other": "{0} yard"
4344
- },
4345
- "length-foot": {
4346
- "displayName": "fod",
4347
- "unitPattern-count-one": "{0} fod",
4348
- "unitPattern-count-other": "{0} fod",
4349
- "perUnitPattern": "{0}/ft"
4350
- },
4351
- "length-inch": {
4352
- "displayName": "tommer",
4353
- "unitPattern-count-one": "{0} tomme",
4354
- "unitPattern-count-other": "{0} tommer",
4355
- "perUnitPattern": "{0}/tomme"
4356
- },
4357
- "length-parsec": {
4358
- "displayName": "pc",
4359
- "unitPattern-count-one": "{0} pc",
4360
- "unitPattern-count-other": "{0} pc"
4361
- },
4362
- "length-light-year": {
4363
- "displayName": "lysår",
4364
- "unitPattern-count-one": "{0} ly",
4365
- "unitPattern-count-other": "{0} ly"
4366
- },
4367
- "length-astronomical-unit": {
4368
- "displayName": "ae",
4369
- "unitPattern-count-one": "{0} ae",
4370
- "unitPattern-count-other": "{0} ae"
4371
- },
4372
- "length-furlong": {
4373
- "displayName": "fur",
4374
- "unitPattern-count-other": "{0} fur"
4375
- },
4376
- "length-fathom": {
4377
- "displayName": "fm",
4378
- "unitPattern-count-other": "{0} fth"
4379
- },
4380
- "length-nautical-mile": {
4381
- "displayName": "sømil",
4382
- "unitPattern-count-one": "{0} sm",
4383
- "unitPattern-count-other": "{0} sm"
4384
- },
4385
- "length-mile-scandinavian": {
4386
- "displayName": "smi",
4387
- "unitPattern-count-one": "{0} smi",
4388
- "unitPattern-count-other": "{0} smi"
4389
- },
4390
- "length-point": {
4391
- "displayName": "pkt.",
4392
- "unitPattern-count-one": "{0} pkt.",
4393
- "unitPattern-count-other": "{0} pkt."
4394
- },
4395
- "length-solar-radius": {
4396
- "displayName": "solradier",
4397
- "unitPattern-count-one": "{0} R☉",
4398
- "unitPattern-count-other": "{0} R☉"
4399
- },
4400
- "light-lux": {
4401
- "displayName": "lx",
4402
- "unitPattern-count-one": "{0} lx",
4403
- "unitPattern-count-other": "{0} lx"
4404
- },
4405
- "light-solar-luminosity": {
4406
- "displayName": "L☉",
4407
- "unitPattern-count-one": "{0} L☉",
4408
- "unitPattern-count-other": "{0} L☉"
4409
- },
4410
- "mass-metric-ton": {
4411
- "displayName": "t",
4412
- "unitPattern-count-one": "{0} t",
4413
- "unitPattern-count-other": "{0} t"
4414
- },
4415
- "mass-kilogram": {
4416
- "displayName": "kilogram",
4417
- "unitPattern-count-one": "{0} kg",
4418
- "unitPattern-count-other": "{0} kg",
4419
- "perUnitPattern": "{0}/kg"
4420
- },
4421
- "mass-gram": {
4422
- "displayName": "gram",
4423
- "unitPattern-count-one": "{0} g",
4424
- "unitPattern-count-other": "{0} g",
4425
- "perUnitPattern": "{0}/g"
4426
- },
4427
- "mass-milligram": {
4428
- "displayName": "mg",
4429
- "unitPattern-count-one": "{0} mg",
4430
- "unitPattern-count-other": "{0} mg"
4431
- },
4432
- "mass-microgram": {
4433
- "displayName": "µg",
4434
- "unitPattern-count-one": "{0} µg",
4435
- "unitPattern-count-other": "{0} µg"
4436
- },
4437
- "mass-ton": {
4438
- "displayName": "tn",
4439
- "unitPattern-count-one": "{0} tn",
4440
- "unitPattern-count-other": "{0} tn"
4441
- },
4442
- "mass-stone": {
4443
- "displayName": "st",
4444
- "unitPattern-count-other": "{0} st"
4445
- },
4446
- "mass-pound": {
4447
- "displayName": "pund",
4448
- "unitPattern-count-one": "{0} lb",
4449
- "unitPattern-count-other": "{0} lb",
4450
- "perUnitPattern": "{0}/lb"
4451
- },
4452
- "mass-ounce": {
4453
- "displayName": "oz",
4454
- "unitPattern-count-one": "{0} oz",
4455
- "unitPattern-count-other": "{0} oz",
4456
- "perUnitPattern": "{0}/oz"
4457
- },
4458
- "mass-ounce-troy": {
4459
- "displayName": "oz t",
4460
- "unitPattern-count-one": "{0} oz t",
4461
- "unitPattern-count-other": "{0} oz t"
4462
- },
4463
- "mass-carat": {
4464
- "displayName": "kt.",
4465
- "unitPattern-count-one": "{0} kt.",
4466
- "unitPattern-count-other": "{0} kt."
4467
- },
4468
- "mass-dalton": {
4469
- "displayName": "Da",
4470
- "unitPattern-count-one": "{0} Da",
4471
- "unitPattern-count-other": "{0} Da"
4472
- },
4473
- "mass-earth-mass": {
4474
- "displayName": "M⊕",
4475
- "unitPattern-count-one": "{0} M⊕",
4476
- "unitPattern-count-other": "{0} M⊕"
4477
- },
4478
- "mass-solar-mass": {
4479
- "displayName": "solmasser",
4480
- "unitPattern-count-one": "{0} M☉",
4481
- "unitPattern-count-other": "{0} M☉"
4482
- },
4483
- "power-gigawatt": {
4484
- "displayName": "GW",
4485
- "unitPattern-count-one": "{0} GW",
4486
- "unitPattern-count-other": "{0} GW"
4487
- },
4488
- "power-megawatt": {
4489
- "displayName": "MW",
4490
- "unitPattern-count-one": "{0} MW",
4491
- "unitPattern-count-other": "{0} MW"
4492
- },
4493
- "power-kilowatt": {
4494
- "displayName": "kW",
4495
- "unitPattern-count-one": "{0} kW",
4496
- "unitPattern-count-other": "{0} kW"
4497
- },
4498
- "power-watt": {
4499
- "displayName": "W",
4500
- "unitPattern-count-one": "{0} W",
4501
- "unitPattern-count-other": "{0} W"
4502
- },
4503
- "power-milliwatt": {
4504
- "displayName": "mW",
4505
- "unitPattern-count-one": "{0} mW",
4506
- "unitPattern-count-other": "{0} mW"
4507
- },
4508
- "power-horsepower": {
4509
- "displayName": "hk",
4510
- "unitPattern-count-one": "{0} hk",
4511
- "unitPattern-count-other": "{0} hk"
4512
- },
4513
- "pressure-hectopascal": {
4514
- "displayName": "hPa",
4515
- "unitPattern-count-one": "{0} hPa",
4516
- "unitPattern-count-other": "{0} hPa"
4517
- },
4518
- "pressure-millimeter-of-mercury": {
4519
- "displayName": "mmHg",
4520
- "unitPattern-count-one": "{0} mmHg",
4521
- "unitPattern-count-other": "{0} mmHg"
4522
- },
4523
- "pressure-pound-per-square-inch": {
4524
- "displayName": "psi",
4525
- "unitPattern-count-one": "{0} psi",
4526
- "unitPattern-count-other": "{0} psi"
4527
- },
4528
- "pressure-inch-hg": {
4529
- "displayName": "# Hg",
4530
- "unitPattern-count-one": "{0} # Hg",
4531
- "unitPattern-count-other": "{0} # Hg"
4532
- },
4533
- "pressure-millibar": {
4534
- "displayName": "mbar",
4535
- "unitPattern-count-one": "{0} mbar",
4536
- "unitPattern-count-other": "{0} mbar"
4537
- },
4538
- "pressure-atmosphere": {
4539
- "displayName": "atm",
4540
- "unitPattern-count-other": "{0} atm"
4541
- },
4542
- "pressure-kilopascal": {
4543
- "displayName": "kPa",
4544
- "unitPattern-count-one": "{0} kPa",
4545
- "unitPattern-count-other": "{0} kPa"
4546
- },
4547
- "pressure-megapascal": {
4548
- "displayName": "MPa",
4549
- "unitPattern-count-one": "{0} MPa",
4550
- "unitPattern-count-other": "{0} MPa"
4551
- },
4552
- "speed-kilometer-per-hour": {
4553
- "displayName": "km/t",
4554
- "unitPattern-count-one": "{0} km/t.",
4555
- "unitPattern-count-other": "{0} km/t."
4556
- },
4557
- "speed-meter-per-second": {
4558
- "displayName": "m/s",
4559
- "unitPattern-count-one": "{0} m/s",
4560
- "unitPattern-count-other": "{0} m/s"
4561
- },
4562
- "speed-mile-per-hour": {
4563
- "displayName": "engelske mil/timen",
4564
- "unitPattern-count-one": "{0} mph",
4565
- "unitPattern-count-other": "{0} mph"
4566
- },
4567
- "speed-knot": {
4568
- "displayName": "knob",
4569
- "unitPattern-count-one": "{0} knob",
4570
- "unitPattern-count-other": "{0} knob"
4571
- },
4572
- "temperature-generic": {
4573
- "displayName": "°",
4574
- "unitPattern-count-one": "{0}°",
4575
- "unitPattern-count-other": "{0}°"
4576
- },
4577
- "temperature-celsius": {
4578
- "displayName": "°C",
4579
- "unitPattern-count-one": "{0}°C",
4580
- "unitPattern-count-other": "{0}°C"
4581
- },
4582
- "temperature-fahrenheit": {
4583
- "displayName": "°F",
4584
- "unitPattern-count-one": "{0}°F",
4585
- "unitPattern-count-other": "{0}°F"
4586
- },
4587
- "temperature-kelvin": {
4588
- "displayName": "K",
4589
- "unitPattern-count-one": "{0} K",
4590
- "unitPattern-count-other": "{0} K"
4591
- },
4592
- "torque-pound-foot": {
4593
- "displayName": "lbf⋅ft",
4594
- "unitPattern-count-one": "{0} lbf⋅ft",
4595
- "unitPattern-count-other": "{0} lbf⋅ft"
4596
- },
4597
- "torque-newton-meter": {
4598
- "displayName": "N⋅m",
4599
- "unitPattern-count-one": "{0} N⋅m",
4600
- "unitPattern-count-other": "{0} N⋅m"
4601
- },
4602
- "volume-cubic-kilometer": {
4603
- "displayName": "km³",
4604
- "unitPattern-count-one": "{0} km³",
4605
- "unitPattern-count-other": "{0} km³"
4606
- },
4607
- "volume-cubic-meter": {
4608
- "displayName": "m³",
4609
- "unitPattern-count-one": "{0} m³",
4610
- "unitPattern-count-other": "{0} m³",
4611
- "perUnitPattern": "{0}/m³"
4612
- },
4613
- "volume-cubic-centimeter": {
4614
- "displayName": "cm³",
4615
- "unitPattern-count-one": "{0} cm³",
4616
- "unitPattern-count-other": "{0} cm³",
4617
- "perUnitPattern": "{0}/cm³"
4618
- },
4619
- "volume-cubic-mile": {
4620
- "displayName": "mi³",
4621
- "unitPattern-count-one": "{0} mi³",
4622
- "unitPattern-count-other": "{0} mi³"
4623
- },
4624
- "volume-cubic-yard": {
4625
- "displayName": "yd³",
4626
- "unitPattern-count-one": "{0} yd³",
4627
- "unitPattern-count-other": "{0} yd³"
4628
- },
4629
- "volume-cubic-foot": {
4630
- "displayName": "ft³",
4631
- "unitPattern-count-one": "{0} ft³",
4632
- "unitPattern-count-other": "{0} ft³"
4633
- },
4634
- "volume-cubic-inch": {
4635
- "displayName": "in³",
4636
- "unitPattern-count-one": "{0} in³",
4637
- "unitPattern-count-other": "{0} in³"
4638
- },
4639
- "volume-megaliter": {
4640
- "displayName": "ML",
4641
- "unitPattern-count-one": "{0} ML",
4642
- "unitPattern-count-other": "{0} ML"
4643
- },
4644
- "volume-hectoliter": {
4645
- "displayName": "hl",
4646
- "unitPattern-count-one": "{0} hl",
4647
- "unitPattern-count-other": "{0} hl"
4648
- },
4649
- "volume-liter": {
4650
- "displayName": "liter",
4651
- "unitPattern-count-one": "{0} l",
4652
- "unitPattern-count-other": "{0} l",
4653
- "perUnitPattern": "{0}/l"
4654
- },
4655
- "volume-deciliter": {
4656
- "displayName": "dl",
4657
- "unitPattern-count-one": "{0} dl",
4658
- "unitPattern-count-other": "{0} dl"
4659
- },
4660
- "volume-centiliter": {
4661
- "displayName": "cl",
4662
- "unitPattern-count-one": "{0} cl",
4663
- "unitPattern-count-other": "{0} cl"
4664
- },
4665
- "volume-milliliter": {
4666
- "displayName": "ml",
4667
- "unitPattern-count-one": "{0} ml",
4668
- "unitPattern-count-other": "{0} ml"
4669
- },
4670
- "volume-pint-metric": {
4671
- "displayName": "mpt",
4672
- "unitPattern-count-one": "mpt",
4673
- "unitPattern-count-other": "{0} mpt"
4674
- },
4675
- "volume-cup-metric": {
4676
- "displayName": "mcup",
4677
- "unitPattern-count-one": "{0} mc",
4678
- "unitPattern-count-other": "{0} mc"
4679
- },
4680
- "volume-acre-foot": {
4681
- "displayName": "ac ft",
4682
- "unitPattern-count-one": "{0} ac ft",
4683
- "unitPattern-count-other": "{0} ac ft"
4684
- },
4685
- "volume-bushel": {
4686
- "displayName": "bu",
4687
- "unitPattern-count-other": "{0} bu"
4688
- },
4689
- "volume-gallon": {
4690
- "displayName": "gal",
4691
- "unitPattern-count-one": "{0} gal",
4692
- "unitPattern-count-other": "{0} gal",
4693
- "perUnitPattern": "{0}/gal"
4694
- },
4695
- "volume-gallon-imperial": {
4696
- "displayName": "eng. gal",
4697
- "unitPattern-count-one": "{0} eng. gal",
4698
- "unitPattern-count-other": "{0} eng. gal",
4699
- "perUnitPattern": "{0} eng. gal"
4700
- },
4701
- "volume-quart": {
4702
- "displayName": "qt",
4703
- "unitPattern-count-one": "{0} qt",
4704
- "unitPattern-count-other": "{0} qt"
4705
- },
4706
- "volume-pint": {
4707
- "displayName": "pt",
4708
- "unitPattern-count-one": "{0} pt",
4709
- "unitPattern-count-other": "{0} pt"
4710
- },
4711
- "volume-cup": {
4712
- "displayName": "cups",
4713
- "unitPattern-count-one": "{0} c",
4714
- "unitPattern-count-other": "{0} c"
4715
- },
4716
- "volume-fluid-ounce": {
4717
- "displayName": "fl oz",
4718
- "unitPattern-count-one": "{0} fl oz",
4719
- "unitPattern-count-other": "{0} fl oz"
4720
- },
4721
- "volume-fluid-ounce-imperial": {
4722
- "displayName": "Imp. fl oz",
4723
- "unitPattern-count-one": "{0} fl oz Imp.",
4724
- "unitPattern-count-other": "{0} fl oz Imp."
4725
- },
4726
- "volume-tablespoon": {
4727
- "displayName": "spsk.",
4728
- "unitPattern-count-one": "{0} spsk.",
4729
- "unitPattern-count-other": "{0} spsk."
4730
- },
4731
- "volume-teaspoon": {
4732
- "displayName": "tsk.",
4733
- "unitPattern-count-one": "{0} tsk.",
4734
- "unitPattern-count-other": "{0} tsk."
4735
- },
4736
- "volume-barrel": {
4737
- "displayName": "tønde",
4738
- "unitPattern-count-one": "{0} td.",
4739
- "unitPattern-count-other": "{0} tdr."
4740
- },
4741
- "coordinateUnit": {
4742
- "displayName": "retning",
4743
- "east": "{0}Ø",
4744
- "north": "{0}N",
4745
- "south": "{0}S",
4746
- "west": "{0}V"
4747
- }
4748
- }
4749
- },
4750
- "lenient-scope-number": {
4751
- "minusSign": "-‒⁻₋−➖﹣-",
4752
- "commaSign": ",،٫、︐︑﹐﹑,、",
4753
- "plusSign": "+⁺₊➕﬩﹢+"
4754
- },
4755
- "currencyFormat-sap-short": {
4756
- "1000-one": "0 t ¤",
4757
- "1000-other": "0 t ¤",
4758
- "10000-one": "00 t ¤",
4759
- "10000-other": "00 t ¤",
4760
- "100000-one": "000 t ¤",
4761
- "100000-other": "000 t ¤",
4762
- "1000000-one": "0 mio'.' ¤",
4763
- "1000000-other": "0 mio'.' ¤",
4764
- "10000000-one": "00 mio'.' ¤",
4765
- "10000000-other": "00 mio'.' ¤",
4766
- "100000000-one": "000 mio'.' ¤",
4767
- "100000000-other": "000 mio'.' ¤",
4768
- "1000000000-one": "0 mia'.' ¤",
4769
- "1000000000-other": "0 mia'.' ¤",
4770
- "10000000000-one": "00 mia'.' ¤",
4771
- "10000000000-other": "00 mia'.' ¤",
4772
- "100000000000-one": "000 mia'.' ¤",
4773
- "100000000000-other": "000 mia'.' ¤",
4774
- "1000000000000-one": "0 bio'.' ¤",
4775
- "1000000000000-other": "0 bio'.' ¤",
4776
- "10000000000000-one": "00 bio'.' ¤",
4777
- "10000000000000-other": "00 bio'.' ¤",
4778
- "100000000000000-one": "000 bio'.' ¤",
4779
- "100000000000000-other": "000 bio'.' ¤"
4780
- },
4781
- "currencyDigits": {
4782
- "ADP": 0,
4783
- "AFN": 0,
4784
- "ALL": 0,
4785
- "BHD": 3,
4786
- "BIF": 0,
4787
- "BYR": 0,
4788
- "CLF": 4,
4789
- "CLP": 0,
4790
- "DEFAULT": 2,
4791
- "DJF": 0,
4792
- "ESP": 0,
4793
- "GNF": 0,
4794
- "HUF": 0,
4795
- "IQD": 0,
4796
- "IRR": 0,
4797
- "ISK": 0,
4798
- "ITL": 0,
4799
- "JOD": 3,
4800
- "JPY": 0,
4801
- "KMF": 0,
4802
- "KPW": 0,
4803
- "KRW": 0,
4804
- "KWD": 3,
4805
- "LAK": 0,
4806
- "LBP": 0,
4807
- "LUF": 0,
4808
- "LYD": 3,
4809
- "MGA": 0,
4810
- "MGF": 0,
4811
- "MMK": 0,
4812
- "MRO": 0,
4813
- "OMR": 3,
4814
- "PYG": 0,
4815
- "RSD": 0,
4816
- "RWF": 0,
4817
- "SLL": 0,
4818
- "SOS": 0,
4819
- "STD": 0,
4820
- "SYP": 0,
4821
- "TMM": 0,
4822
- "TND": 3,
4823
- "TRL": 0,
4824
- "TWD": 0,
4825
- "UGX": 0,
4826
- "UYI": 0,
4827
- "UYW": 4,
4828
- "VND": 0,
4829
- "VUV": 0,
4830
- "XAF": 0,
4831
- "XOF": 0,
4832
- "XPF": 0,
4833
- "YER": 0,
4834
- "ZMK": 0,
4835
- "ZWD": 0
4836
- },
4837
- "plurals": {
4838
- "one": "n = 1 or t != 0 and i = 0,1"
4839
- },
4840
- "weekData-minDays": 4,
4841
- "weekData-firstDay": 1,
4842
- "weekData-weekendStart": 6,
4843
- "weekData-weekendEnd": 0,
4844
- "timeData": {
4845
- "_allowed": "H",
4846
- "_preferred": "H"
4847
- },
4848
- "eras-gregorian": {
4849
- "0": {
4850
- "_end": "0-12-31"
4851
- },
4852
- "1": {
4853
- "_start": "1-01-01"
4854
- }
4855
- },
4856
- "eras-islamic": {
4857
- "0": {
4858
- "_start": "622-7-15"
4859
- }
4860
- },
4861
- "eras-persian": {
4862
- "0": {
4863
- "_start": "622-01-01"
4864
- }
4865
- },
4866
- "eras-buddhist": {
4867
- "0": {
4868
- "_start": "-542-01-01"
4869
- }
4870
- },
4871
- "eras-japanese": {
4872
- "232": {
4873
- "_start": "1868-9-8"
4874
- },
4875
- "233": {
4876
- "_start": "1912-7-30"
4877
- },
4878
- "234": {
4879
- "_start": "1926-12-25"
4880
- },
4881
- "235": {
4882
- "_start": "1989-1-8"
4883
- },
4884
- "236": {
4885
- "_start": "2019-5-1"
4886
- }
4887
- }
4888
- }