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