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