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