@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,4919 +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": "afarski",
5
- "ab": "abhaski",
6
- "ace": "ačinski",
7
- "ach": "ačoli",
8
- "ada": "adangme",
9
- "ady": "adigejski",
10
- "ae": "avestički",
11
- "af": "afrikaans",
12
- "afh": "afrihili",
13
- "agq": "aghem",
14
- "ain": "ainuski",
15
- "ak": "akanski",
16
- "akk": "akadski",
17
- "ale": "aleutski",
18
- "alt": "južni altai",
19
- "am": "amharski",
20
- "an": "aragonski",
21
- "ang": "staroengleski",
22
- "anp": "angika",
23
- "ar": "arapski",
24
- "ar_001": "moderni standardni arapski",
25
- "arc": "aramejski",
26
- "arn": "mapuche",
27
- "arp": "arapaho",
28
- "ars": "najdi arapski",
29
- "arw": "aravački",
30
- "as": "asamski",
31
- "asa": "asu",
32
- "ast": "asturijski",
33
- "av": "avarski",
34
- "awa": "awadhi",
35
- "ay": "ajmarski",
36
- "az": "azerbajdžanski",
37
- "az_alt-short": "azerski",
38
- "az_Arab": "južnoazerbajdžanski",
39
- "ba": "baškirski",
40
- "bal": "belučki",
41
- "ban": "balijski",
42
- "bas": "basa",
43
- "bax": "bamunski",
44
- "bbj": "ghomala",
45
- "be": "bjeloruski",
46
- "bej": "beja",
47
- "bem": "bemba",
48
- "bez": "bena",
49
- "bfd": "bafut",
50
- "bg": "bugarski",
51
- "bgn": "zapadnobaludžijski",
52
- "bho": "bhojpuri",
53
- "bi": "bislama",
54
- "bik": "bikolski",
55
- "bin": "bini",
56
- "bkm": "kom",
57
- "bla": "siksika",
58
- "bm": "bambara",
59
- "bn": "bangla",
60
- "bo": "tibetski",
61
- "br": "bretonski",
62
- "bra": "braj",
63
- "brx": "bodo",
64
- "bs": "bosanski",
65
- "bss": "akoose",
66
- "bua": "burjatski",
67
- "bug": "buginski",
68
- "bum": "bulu",
69
- "byn": "blin",
70
- "byv": "medumba",
71
- "ca": "katalonski",
72
- "cad": "caddo",
73
- "car": "karipski",
74
- "cay": "cayuga",
75
- "cch": "atsam",
76
- "ccp": "chakma",
77
- "ce": "čečenski",
78
- "ceb": "cebuano",
79
- "cgg": "chiga",
80
- "ch": "chamorro",
81
- "chb": "čibča",
82
- "chg": "čagatajski",
83
- "chk": "chuukese",
84
- "chm": "marijski",
85
- "chn": "chinook žargon",
86
- "cho": "choctaw",
87
- "chp": "chipewyan",
88
- "chr": "čerokijski",
89
- "chy": "čejenski",
90
- "ckb": "soranski kurdski",
91
- "co": "korzički",
92
- "cop": "koptski",
93
- "cr": "cree",
94
- "crh": "krimski turski",
95
- "crs": "sejšelski kreolski",
96
- "cs": "češki",
97
- "csb": "kašupski",
98
- "cu": "crkvenoslavenski",
99
- "cv": "čuvaški",
100
- "cy": "velški",
101
- "da": "danski",
102
- "dak": "dakota jezik",
103
- "dar": "dargwa",
104
- "dav": "taita",
105
- "de": "njemački",
106
- "de_AT": "austrijski njemački",
107
- "de_CH": "gornjonjemački (švicarski)",
108
- "del": "delavarski",
109
- "den": "slave",
110
- "dgr": "dogrib",
111
- "din": "dinka",
112
- "dje": "zarma",
113
- "doi": "dogri",
114
- "dsb": "donjolužički",
115
- "dua": "duala",
116
- "dum": "srednjonizozemski",
117
- "dv": "divehi",
118
- "dyo": "jola-fonyi",
119
- "dyu": "dyula",
120
- "dz": "dzongkha",
121
- "dzg": "dazaga",
122
- "ebu": "embu",
123
- "ee": "ewe",
124
- "efi": "efik",
125
- "egy": "staroegipatski",
126
- "eka": "ekajuk",
127
- "el": "grčki",
128
- "elx": "elamitski",
129
- "en": "engleski",
130
- "en_AU": "australski engleski",
131
- "en_CA": "kanadski engleski",
132
- "en_GB": "britanski engleski",
133
- "en_GB-alt-short": "engleski (UK)",
134
- "en_US": "američki engleski",
135
- "en_US-alt-short": "engleski (SAD)",
136
- "enm": "srednjoengleski",
137
- "eo": "esperanto",
138
- "es": "španjolski",
139
- "es_419": "latinoamerički španjolski",
140
- "es_ES": "europski španjolski",
141
- "es_MX": "meksički španjolski",
142
- "et": "estonski",
143
- "eu": "baskijski",
144
- "ewo": "ewondo",
145
- "fa": "perzijski",
146
- "fan": "fang",
147
- "fat": "fanti",
148
- "ff": "fula",
149
- "fi": "finski",
150
- "fil": "filipinski",
151
- "fj": "fidžijski",
152
- "fo": "ferojski",
153
- "fon": "fon",
154
- "fr": "francuski",
155
- "fr_CA": "kanadski francuski",
156
- "fr_CH": "švicarski francuski",
157
- "frc": "kajunski francuski",
158
- "frm": "srednjofrancuski",
159
- "fro": "starofrancuski",
160
- "frr": "sjevernofrizijski",
161
- "frs": "istočnofrizijski",
162
- "fur": "furlanski",
163
- "fy": "zapadnofrizijski",
164
- "ga": "irski",
165
- "gaa": "ga",
166
- "gag": "gagauski",
167
- "gan": "gan kineski",
168
- "gay": "gayo",
169
- "gba": "gbaya",
170
- "gd": "škotski gaelski",
171
- "gez": "geez",
172
- "gil": "gilbertski",
173
- "gl": "galicijski",
174
- "gmh": "srednjogornjonjemački",
175
- "gn": "gvaranski",
176
- "goh": "starovisokonjemački",
177
- "gon": "gondi",
178
- "gor": "gorontalo",
179
- "got": "gotski",
180
- "grb": "grebo",
181
- "grc": "starogrčki",
182
- "gsw": "švicarski njemački",
183
- "gu": "gudžaratski",
184
- "guz": "gusii",
185
- "gv": "manski",
186
- "gwi": "gwich’in",
187
- "ha": "hausa",
188
- "hai": "haidi",
189
- "hak": "hakka kineski",
190
- "haw": "havajski",
191
- "he": "hebrejski",
192
- "hi": "hindski",
193
- "hil": "hiligaynonski",
194
- "hit": "hetitski",
195
- "hmn": "hmong",
196
- "ho": "hiri motu",
197
- "hr": "hrvatski",
198
- "hsb": "gornjolužički",
199
- "hsn": "xiang kineski",
200
- "ht": "haićanski kreolski",
201
- "hu": "mađarski",
202
- "hup": "hupa",
203
- "hy": "armenski",
204
- "hz": "herero",
205
- "ia": "interlingua",
206
- "iba": "iban",
207
- "ibb": "ibibio",
208
- "id": "indonezijski",
209
- "ie": "interligua",
210
- "ig": "igbo",
211
- "ii": "sichuan ji",
212
- "ik": "inupiaq",
213
- "ilo": "iloko",
214
- "inh": "ingušetski",
215
- "io": "ido",
216
- "is": "islandski",
217
- "it": "talijanski",
218
- "iu": "inuktitut",
219
- "ja": "japanski",
220
- "jbo": "lojban",
221
- "jgo": "ngomba",
222
- "jmc": "machame",
223
- "jpr": "judejsko-perzijski",
224
- "jrb": "judejsko-arapski",
225
- "jv": "javanski",
226
- "ka": "gruzijski",
227
- "kaa": "kara-kalpak",
228
- "kab": "kabilski",
229
- "kac": "kačinski",
230
- "kaj": "kaje",
231
- "kam": "kamba",
232
- "kaw": "kawi",
233
- "kbd": "kabardinski",
234
- "kbl": "kanembu",
235
- "kcg": "tyap",
236
- "kde": "makonde",
237
- "kea": "zelenortski",
238
- "kfo": "koro",
239
- "kg": "kongo",
240
- "kha": "khasi",
241
- "kho": "khotanese",
242
- "khq": "koyra chiini",
243
- "ki": "kikuyu",
244
- "kj": "kuanyama",
245
- "kk": "kazaški",
246
- "kkj": "kako",
247
- "kl": "kalaallisut",
248
- "kln": "kalenjin",
249
- "km": "kmerski",
250
- "kmb": "kimbundu",
251
- "kn": "karnatački",
252
- "ko": "korejski",
253
- "koi": "komi-permski",
254
- "kok": "konkani",
255
- "kos": "naurski",
256
- "kpe": "kpelle",
257
- "kr": "kanuri",
258
- "krc": "karachay-balkar",
259
- "krl": "karelijski",
260
- "kru": "kuruški",
261
- "ks": "kašmirski",
262
- "ksb": "shambala",
263
- "ksf": "bafia",
264
- "ksh": "kelnski",
265
- "ku": "kurdski",
266
- "kum": "kumyk",
267
- "kut": "kutenai",
268
- "kv": "komi",
269
- "kw": "kornski",
270
- "ky": "kirgiski",
271
- "la": "latinski",
272
- "lad": "ladino",
273
- "lag": "langi",
274
- "lah": "lahnda",
275
- "lam": "lamba",
276
- "lb": "luksemburški",
277
- "lez": "lezgiški",
278
- "lg": "ganda",
279
- "li": "limburški",
280
- "lkt": "lakota",
281
- "ln": "lingala",
282
- "lo": "laoski",
283
- "lol": "mongo",
284
- "lou": "lujzijanski kreolski",
285
- "loz": "lozi",
286
- "lrc": "sjevernolurski",
287
- "lt": "litavski",
288
- "lu": "luba-katanga",
289
- "lua": "luba-lulua",
290
- "lui": "luiseno",
291
- "lun": "lunda",
292
- "luo": "luo",
293
- "lus": "lushai",
294
- "luy": "luyia",
295
- "lv": "latvijski",
296
- "mad": "madurski",
297
- "maf": "mafa",
298
- "mag": "magahi",
299
- "mai": "maithili",
300
- "mak": "makasar",
301
- "man": "mandingo",
302
- "mas": "masajski",
303
- "mde": "maba",
304
- "mdf": "moksha",
305
- "mdr": "mandar",
306
- "men": "mende",
307
- "mer": "meru",
308
- "mfe": "mauricijski kreolski",
309
- "mg": "malgaški",
310
- "mga": "srednjoirski",
311
- "mgh": "makhuwa-meetto",
312
- "mgo": "meta’",
313
- "mh": "maršalski",
314
- "mi": "maorski",
315
- "mic": "micmac",
316
- "min": "minangkabau",
317
- "mk": "makedonski",
318
- "ml": "malajalamski",
319
- "mn": "mongolski",
320
- "mnc": "mandžurski",
321
- "mni": "manipurski",
322
- "moh": "mohok",
323
- "mos": "mossi",
324
- "mr": "marathski",
325
- "ms": "malajski",
326
- "mt": "malteški",
327
- "mua": "mundang",
328
- "mul": "više jezika",
329
- "mus": "creek",
330
- "mwl": "mirandski",
331
- "mwr": "marwari",
332
- "my": "burmanski",
333
- "mye": "myene",
334
- "myv": "mordvinski",
335
- "mzn": "mazanderanski",
336
- "na": "nauru",
337
- "nan": "min nan kineski",
338
- "nap": "napolitanski",
339
- "naq": "nama",
340
- "nb": "norveški bokmål",
341
- "nd": "sjeverni ndebele",
342
- "nds": "donjonjemački",
343
- "nds_NL": "donjosaksonski",
344
- "ne": "nepalski",
345
- "new": "newari",
346
- "ng": "ndonga",
347
- "nia": "nias",
348
- "niu": "niujski",
349
- "nl": "nizozemski",
350
- "nl_BE": "flamanski",
351
- "nmg": "kwasio",
352
- "nn": "norveški nynorsk",
353
- "nnh": "ngiemboon",
354
- "no": "norveški",
355
- "nog": "nogajski",
356
- "non": "staronorveški",
357
- "nqo": "n’ko",
358
- "nr": "južni ndebele",
359
- "nso": "sjeverni sotski",
360
- "nus": "nuerski",
361
- "nv": "navajo",
362
- "nwc": "klasični newari",
363
- "ny": "njandža",
364
- "nym": "nyamwezi",
365
- "nyn": "nyankole",
366
- "nyo": "nyoro",
367
- "nzi": "nzima",
368
- "oc": "okcitanski",
369
- "oj": "ojibwa",
370
- "om": "oromski",
371
- "or": "orijski",
372
- "os": "osetski",
373
- "osa": "osage",
374
- "ota": "turski - otomanski",
375
- "pa": "pandžapski",
376
- "pag": "pangasinan",
377
- "pal": "pahlavi",
378
- "pam": "pampanga",
379
- "pap": "papiamento",
380
- "pau": "palauanski",
381
- "pcm": "nigerijski pidžin",
382
- "peo": "staroperzijski",
383
- "phn": "fenički",
384
- "pi": "pali",
385
- "pl": "poljski",
386
- "pon": "pohnpeian",
387
- "prg": "pruski",
388
- "pro": "staroprovansalski",
389
- "ps": "paštunski",
390
- "ps_alt-variant": "puštu",
391
- "pt": "portugalski",
392
- "pt_BR": "brazilski portugalski",
393
- "pt_PT": "europski portugalski",
394
- "qu": "kečuanski",
395
- "quc": "kiče",
396
- "raj": "rajasthani",
397
- "rap": "rapa nui",
398
- "rar": "rarotonški",
399
- "rm": "retoromanski",
400
- "rn": "rundi",
401
- "ro": "rumunjski",
402
- "ro_MD": "moldavski",
403
- "rof": "rombo",
404
- "rom": "romski",
405
- "root": "korijenski",
406
- "ru": "ruski",
407
- "rup": "aromunski",
408
- "rw": "kinyarwanda",
409
- "rwk": "rwa",
410
- "sa": "sanskrtski",
411
- "sad": "sandawe",
412
- "sah": "jakutski",
413
- "sam": "samarijanski aramejski",
414
- "saq": "samburu",
415
- "sas": "sasak",
416
- "sat": "santalski",
417
- "sba": "ngambay",
418
- "sbp": "sangu",
419
- "sc": "sardski",
420
- "scn": "sicilijski",
421
- "sco": "škotski",
422
- "sd": "sindski",
423
- "sdh": "južnokurdski",
424
- "se": "sjeverni sami",
425
- "see": "seneca",
426
- "seh": "sena",
427
- "sel": "selkupski",
428
- "ses": "koyraboro senni",
429
- "sg": "sango",
430
- "sga": "staroirski",
431
- "sh": "srpsko-hrvatski",
432
- "shi": "tachelhit",
433
- "shn": "shan",
434
- "shu": "čadski arapski",
435
- "si": "sinhaleški",
436
- "sid": "sidamo",
437
- "sk": "slovački",
438
- "sl": "slovenski",
439
- "sm": "samoanski",
440
- "sma": "južni sami",
441
- "smj": "lule sami",
442
- "smn": "inari sami",
443
- "sms": "skolt sami",
444
- "sn": "shona",
445
- "snk": "soninke",
446
- "so": "somalski",
447
- "sog": "sogdien",
448
- "sq": "albanski",
449
- "sr": "srpski",
450
- "srn": "sranan tongo",
451
- "srr": "serer",
452
- "ss": "svati",
453
- "ssy": "saho",
454
- "st": "sesotski",
455
- "su": "sundanski",
456
- "suk": "sukuma",
457
- "sus": "susu",
458
- "sux": "sumerski",
459
- "sv": "švedski",
460
- "sw": "svahili",
461
- "sw_CD": "kongoanski svahili",
462
- "swb": "komorski",
463
- "syc": "klasični sirski",
464
- "syr": "sirijski",
465
- "ta": "tamilski",
466
- "te": "teluški",
467
- "tem": "temne",
468
- "teo": "teso",
469
- "ter": "tereno",
470
- "tet": "tetum",
471
- "tg": "tadžički",
472
- "th": "tajlandski",
473
- "ti": "tigrinja",
474
- "tig": "tigriški",
475
- "tiv": "tiv",
476
- "tk": "turkmenski",
477
- "tkl": "tokelaunski",
478
- "tl": "tagalog",
479
- "tlh": "klingonski",
480
- "tli": "tlingit",
481
- "tmh": "tamašečki",
482
- "tn": "cvana",
483
- "to": "tonganski",
484
- "tog": "nyasa tonga",
485
- "tpi": "tok pisin",
486
- "tr": "turski",
487
- "trv": "taroko",
488
- "ts": "tsonga",
489
- "tsi": "tsimshian",
490
- "tt": "tatarski",
491
- "tum": "tumbuka",
492
- "tvl": "tuvaluanski",
493
- "tw": "twi",
494
- "twq": "tasawaq",
495
- "ty": "tahićanski",
496
- "tyv": "tuvinski",
497
- "tzm": "tamašek (Srednji Atlas)",
498
- "udm": "udmurtski",
499
- "ug": "ujgurski",
500
- "uga": "ugaritski",
501
- "uk": "ukrajinski",
502
- "umb": "umbundu",
503
- "und": "nepoznati jezik",
504
- "ur": "urdski",
505
- "uz": "uzbečki",
506
- "vai": "vai",
507
- "ve": "venda",
508
- "vi": "vijetnamski",
509
- "vo": "volapük",
510
- "vot": "votski",
511
- "vun": "vunjo",
512
- "wa": "valonski",
513
- "wae": "walserski",
514
- "wal": "walamo",
515
- "war": "waray",
516
- "was": "washo",
517
- "wbp": "warlpiri",
518
- "wo": "volof",
519
- "wuu": "wu kineski",
520
- "xal": "kalmyk",
521
- "xh": "xhosa",
522
- "xog": "soga",
523
- "yao": "yao",
524
- "yap": "japski",
525
- "yav": "yangben",
526
- "ybb": "yemba",
527
- "yi": "jidiš",
528
- "yo": "jorupski",
529
- "yue": "kantonski",
530
- "za": "zhuang",
531
- "zap": "zapotečki",
532
- "zbl": "Blissovi simboli",
533
- "zen": "zenaga",
534
- "zgh": "standardni marokanski tamašek",
535
- "zh": "kineski",
536
- "zh_Hans": "kineski (pojednostavljeni)",
537
- "zh_Hant": "kineski (tradicionalni)",
538
- "zu": "zulu",
539
- "zun": "zuni",
540
- "zxx": "bez jezičnog sadržaja",
541
- "zza": "zazaki"
542
- },
543
- "scripts": {
544
- "Adlm": "Adlm",
545
- "Afak": "afaka pismo",
546
- "Aghb": "Aghb",
547
- "Ahom": "Ahom",
548
- "Arab": "arapsko pismo",
549
- "Arab-alt-variant": "perzijsko-arapsko pismo",
550
- "Armi": "aramejsko pismo",
551
- "Armn": "armensko pismo",
552
- "Avst": "avestansko pismo",
553
- "Bali": "balijsko pismo",
554
- "Bamu": "bamum pismo",
555
- "Bass": "bassa vah pismo",
556
- "Batk": "batak pismo",
557
- "Beng": "bengalsko pismo",
558
- "Bhks": "Bhks",
559
- "Blis": "blissymbols",
560
- "Bopo": "bopomofo pismo",
561
- "Brah": "brahmi pismo",
562
- "Brai": "brajica",
563
- "Bugi": "buginsko pismo",
564
- "Buhd": "buhid pismo",
565
- "Cakm": "chakma pismo",
566
- "Cans": "unificirani kanadski aboriđinski slogovi",
567
- "Cari": "karijsko pismo",
568
- "Cham": "čamsko pismo",
569
- "Cher": "čeroki pismo",
570
- "Cirt": "cirth pismo",
571
- "Copt": "koptsko pismo",
572
- "Cprt": "cypriot pismo",
573
- "Cyrl": "ćirilica",
574
- "Cyrs": "staroslavenska crkvena čirilica",
575
- "Deva": "devangari pismo",
576
- "Dogr": "Dogr",
577
- "Dsrt": "deseret pismo",
578
- "Dupl": "Dupl",
579
- "Egyd": "egipatsko narodno pismo",
580
- "Egyh": "egipatsko hijeratsko pismo",
581
- "Egyp": "egipatski hijeroglifi",
582
- "Elba": "Elba",
583
- "Elym": "Elym",
584
- "Ethi": "etiopsko pismo",
585
- "Geok": "gruzijsko khutsuri pismo",
586
- "Geor": "gruzijsko pismo",
587
- "Glag": "glagoljica",
588
- "Gong": "Gong",
589
- "Gonm": "Gonm",
590
- "Goth": "gotičko pismo",
591
- "Gran": "grantha pismo",
592
- "Grek": "grčko pismo",
593
- "Gujr": "gudžaratsko pismo",
594
- "Guru": "gurmukhi pismo",
595
- "Hanb": "hanb pismo",
596
- "Hang": "hangul pismo",
597
- "Hani": "hansko pismo",
598
- "Hano": "hanunoo pismo",
599
- "Hans": "pojednostavljeno pismo",
600
- "Hans-alt-stand-alone": "pojednostavljeno hansko pismo",
601
- "Hant": "tradicionalno pismo",
602
- "Hant-alt-stand-alone": "tradicionalno hansko pismo",
603
- "Hatr": "Hatr",
604
- "Hebr": "hebrejsko pismo",
605
- "Hira": "hiragana pismo",
606
- "Hluw": "anatolijski hijeroglifi",
607
- "Hmng": "pahawh hmong pismo",
608
- "Hmnp": "Hmnp",
609
- "Hrkt": "japansko slogovno pismo",
610
- "Hung": "staro mađarsko pismo",
611
- "Inds": "indijsko pismo",
612
- "Ital": "staro talijansko pismo",
613
- "Jamo": "jamo pismo",
614
- "Java": "javansko pismo",
615
- "Jpan": "japansko pismo",
616
- "Jurc": "jurchen pismo",
617
- "Kali": "kayah li pismo",
618
- "Kana": "katakana pismo",
619
- "Khar": "kharoshthi pismo",
620
- "Khmr": "kmersko pismo",
621
- "Khoj": "khojki pismo",
622
- "Knda": "kannada pismo",
623
- "Kore": "korejsko pismo",
624
- "Kpel": "kpelle pismo",
625
- "Kthi": "kaithi pismo",
626
- "Lana": "lanna pismo",
627
- "Laoo": "laosko pismo",
628
- "Latf": "fraktur latinica",
629
- "Latg": "keltska latinica",
630
- "Latn": "latinica",
631
- "Lepc": "lepcha pismo",
632
- "Limb": "limbu pismo",
633
- "Lina": "linear A pismo",
634
- "Linb": "linear B pismo",
635
- "Lisu": "fraser pismo",
636
- "Loma": "loma pismo",
637
- "Lyci": "likijsko pismo",
638
- "Lydi": "lidijsko pismo",
639
- "Mahj": "Mahj",
640
- "Maka": "Maka",
641
- "Mand": "mandai pismo",
642
- "Mani": "manihejsko pismo",
643
- "Marc": "Marc",
644
- "Maya": "majanski hijeroglifi",
645
- "Medf": "Medf",
646
- "Mend": "mende pismo",
647
- "Merc": "meroitski kurziv",
648
- "Mero": "meroitic pismo",
649
- "Mlym": "malajalamsko pismo",
650
- "Modi": "Modi",
651
- "Mong": "mongolsko pismo",
652
- "Moon": "moon pismo",
653
- "Mroo": "mro pismo",
654
- "Mtei": "meitei mayek pismo",
655
- "Mult": "Mult",
656
- "Mymr": "mjanmarsko pismo",
657
- "Nand": "Nand",
658
- "Narb": "staro sjevernoarapsko pismo",
659
- "Nbat": "nabatejsko pismo",
660
- "Newa": "Newa",
661
- "Nkgb": "naxi geba pismo",
662
- "Nkoo": "n’ko pismo",
663
- "Nshu": "nushu pismo",
664
- "Ogam": "ogham pismo",
665
- "Olck": "ol chiki pismo",
666
- "Orkh": "orkhon pismo",
667
- "Orya": "orijsko pismo",
668
- "Osge": "Osge",
669
- "Osma": "osmanya pismo",
670
- "Palm": "palmyrene pismo",
671
- "Pauc": "Pauc",
672
- "Perm": "staro permic pismo",
673
- "Phag": "phags-pa pismo",
674
- "Phli": "pisani pahlavi",
675
- "Phlp": "psalter pahlavi",
676
- "Phlv": "pahlavi pismo",
677
- "Phnx": "feničko pismo",
678
- "Plrd": "pollard fonetsko pismo",
679
- "Prti": "pisani parthian",
680
- "Qaag": "Qaag",
681
- "Rjng": "rejang pismo",
682
- "Rohg": "Rohg",
683
- "Roro": "rongorongo pismo",
684
- "Runr": "runsko pismo",
685
- "Samr": "samaritansko pismo",
686
- "Sara": "sarati pismo",
687
- "Sarb": "staro južnoarapsko pismo",
688
- "Saur": "saurashtra pismo",
689
- "Sgnw": "znakovno pismo",
690
- "Shaw": "shavian pismo",
691
- "Shrd": "sharada pismo",
692
- "Sidd": "Sidd",
693
- "Sind": "khudawadi pismo",
694
- "Sinh": "sinhaleško pismo",
695
- "Sogd": "Sogd",
696
- "Sogo": "Sogo",
697
- "Sora": "sora sompeng pismo",
698
- "Soyo": "Soyo",
699
- "Sund": "sundansko pismo",
700
- "Sylo": "syloti nagri pismo",
701
- "Syrc": "sirijsko pismo",
702
- "Syre": "sirijsko estrangelo pismo",
703
- "Syrj": "pismo zapadne Sirije",
704
- "Syrn": "pismo istočne Sirije",
705
- "Tagb": "tagbanwa pismo",
706
- "Takr": "takri pismo",
707
- "Tale": "tai le pismo",
708
- "Talu": "novo tai lue pismo",
709
- "Taml": "tamilsko pismo",
710
- "Tang": "tangut pismo",
711
- "Tavt": "tai viet pismo",
712
- "Telu": "teluško pismo",
713
- "Teng": "tengwar pismo",
714
- "Tfng": "tifinar",
715
- "Tglg": "tagalog pismo",
716
- "Thaa": "thaana pismo",
717
- "Thai": "tajsko pismo",
718
- "Tibt": "tibetansko pismo",
719
- "Tirh": "tirhuta pismo",
720
- "Ugar": "ugaritsko pismo",
721
- "Vaii": "vai pismo",
722
- "Visp": "Visible Speech",
723
- "Wara": "varang kshiti pismo",
724
- "Wcho": "Wcho",
725
- "Wole": "woleai pismo",
726
- "Xpeo": "staro perzijsko pismo",
727
- "Xsux": "sumersko-akadsko cuneiform pismo",
728
- "Yiii": "Yi pismo",
729
- "Zanb": "Zanb",
730
- "Zinh": "nasljedno pismo",
731
- "Zmth": "matematičko znakovlje",
732
- "Zsye": "emotikoni",
733
- "Zsym": "simboli",
734
- "Zxxx": "jezik bez pismenosti",
735
- "Zyyy": "zajedničko pismo",
736
- "Zzzz": "nepoznato pismo"
737
- },
738
- "territories": {
739
- "142": "Azija",
740
- "143": "Srednja Azija",
741
- "145": "Zapadna Azija",
742
- "150": "Europa",
743
- "151": "Istočna Europa",
744
- "154": "Sjeverna Europa",
745
- "155": "Zapadna Europa",
746
- "202": "Subsaharska Afrika",
747
- "419": "Latinska Amerika",
748
- "001": "Svijet",
749
- "002": "Afrika",
750
- "003": "Sjevernoamerički kontinent",
751
- "005": "Južna Amerika",
752
- "009": "Oceanija",
753
- "011": "Zapadna Afrika",
754
- "013": "Centralna Amerika",
755
- "014": "Istočna Afrika",
756
- "015": "Sjeverna Afrika",
757
- "017": "Središnja Afrika",
758
- "018": "Južna Afrika",
759
- "019": "Amerike",
760
- "021": "Sjeverna Amerika",
761
- "029": "Karibi",
762
- "030": "Istočna Azija",
763
- "034": "Južna Azija",
764
- "035": "Jugoistočna Azija",
765
- "039": "Južna Europa",
766
- "053": "Australazija",
767
- "054": "Melanezija",
768
- "057": "Mikronezijsko područje",
769
- "061": "Polinezija",
770
- "AC": "Otok Ascension",
771
- "AD": "Andora",
772
- "AE": "Ujedinjeni Arapski Emirati",
773
- "AF": "Afganistan",
774
- "AG": "Antigva i Barbuda",
775
- "AI": "Angvila",
776
- "AL": "Albanija",
777
- "AM": "Armenija",
778
- "AO": "Angola",
779
- "AQ": "Antarktika",
780
- "AR": "Argentina",
781
- "AS": "Američka Samoa",
782
- "AT": "Austrija",
783
- "AU": "Australija",
784
- "AW": "Aruba",
785
- "AX": "Ålandski otoci",
786
- "AZ": "Azerbajdžan",
787
- "BA": "Bosna i Hercegovina",
788
- "BB": "Barbados",
789
- "BD": "Bangladeš",
790
- "BE": "Belgija",
791
- "BF": "Burkina Faso",
792
- "BG": "Bugarska",
793
- "BH": "Bahrein",
794
- "BI": "Burundi",
795
- "BJ": "Benin",
796
- "BL": "Saint Barthélemy",
797
- "BM": "Bermudi",
798
- "BN": "Brunej",
799
- "BO": "Bolivija",
800
- "BQ": "Karipski otoci Nizozemske",
801
- "BR": "Brazil",
802
- "BS": "Bahami",
803
- "BT": "Butan",
804
- "BV": "Otok Bouvet",
805
- "BW": "Bocvana",
806
- "BY": "Bjelorusija",
807
- "BZ": "Belize",
808
- "CA": "Kanada",
809
- "CC": "Kokosovi (Keelingovi) otoci",
810
- "CD": "Kongo - Kinshasa",
811
- "CD-alt-variant": "Kongo (DRK)",
812
- "CF": "Srednjoafrička Republika",
813
- "CG": "Kongo - Brazzaville",
814
- "CG-alt-variant": "Kongo (RK)",
815
- "CH": "Švicarska",
816
- "CI": "Obala Bjelokosti",
817
- "CI-alt-variant": "Bjelokosna Obala",
818
- "CK": "Cookovi Otoci",
819
- "CL": "Čile",
820
- "CM": "Kamerun",
821
- "CN": "Kina",
822
- "CO": "Kolumbija",
823
- "CP": "Otok Clipperton",
824
- "CR": "Kostarika",
825
- "CU": "Kuba",
826
- "CV": "Zelenortska Republika",
827
- "CW": "Curaçao",
828
- "CX": "Božićni otok",
829
- "CY": "Cipar",
830
- "CZ": "Češka",
831
- "CZ-alt-variant": "Češka Republika",
832
- "DE": "Njemačka",
833
- "DG": "Diego Garcia",
834
- "DJ": "Džibuti",
835
- "DK": "Danska",
836
- "DM": "Dominika",
837
- "DO": "Dominikanska Republika",
838
- "DZ": "Alžir",
839
- "EA": "Ceuta i Melilla",
840
- "EC": "Ekvador",
841
- "EE": "Estonija",
842
- "EG": "Egipat",
843
- "EH": "Zapadna Sahara",
844
- "ER": "Eritreja",
845
- "ES": "Španjolska",
846
- "ET": "Etiopija",
847
- "EU": "Europska unija",
848
- "EZ": "eurozona",
849
- "FI": "Finska",
850
- "FJ": "Fidži",
851
- "FK": "Falklandski otoci",
852
- "FK-alt-variant": "Falklandski otoci (Malvini)",
853
- "FM": "Mikronezija",
854
- "FO": "Farski otoci",
855
- "FR": "Francuska",
856
- "GA": "Gabon",
857
- "GB": "Ujedinjeno Kraljevstvo",
858
- "GB-alt-short": "UK",
859
- "GD": "Grenada",
860
- "GE": "Gruzija",
861
- "GF": "Francuska Gijana",
862
- "GG": "Guernsey",
863
- "GH": "Gana",
864
- "GI": "Gibraltar",
865
- "GL": "Grenland",
866
- "GM": "Gambija",
867
- "GN": "Gvineja",
868
- "GP": "Guadalupe",
869
- "GQ": "Ekvatorska Gvineja",
870
- "GR": "Grčka",
871
- "GS": "Južna Georgija i Južni Sendvički Otoci",
872
- "GT": "Gvatemala",
873
- "GU": "Guam",
874
- "GW": "Gvineja Bisau",
875
- "GY": "Gvajana",
876
- "HK": "Hong Kong, Kina",
877
- "HK-alt-short": "Hong Kong",
878
- "HM": "Otoci Heard i McDonald",
879
- "HN": "Honduras",
880
- "HR": "Hrvatska",
881
- "HT": "Haiti",
882
- "HU": "Mađarska",
883
- "IC": "Kanarski otoci",
884
- "ID": "Indonezija",
885
- "IE": "Irska",
886
- "IL": "Izrael",
887
- "IM": "Otok Man",
888
- "IN": "Indija",
889
- "IO": "Britanski Indijskooceanski teritorij",
890
- "IQ": "Irak",
891
- "IR": "Iran",
892
- "IS": "Island",
893
- "IT": "Italija",
894
- "JE": "Jersey",
895
- "JM": "Jamajka",
896
- "JO": "Jordan",
897
- "JP": "Japan",
898
- "KE": "Kenija",
899
- "KG": "Kirgistan",
900
- "KH": "Kambodža",
901
- "KI": "Kiribati",
902
- "KM": "Komori",
903
- "KN": "Sveti Kristofor i Nevis",
904
- "KP": "Sjeverna Koreja",
905
- "KR": "Južna Koreja",
906
- "KW": "Kuvajt",
907
- "KY": "Kajmanski otoci",
908
- "KZ": "Kazahstan",
909
- "LA": "Laos",
910
- "LB": "Libanon",
911
- "LC": "Sveta Lucija",
912
- "LI": "Lihtenštajn",
913
- "LK": "Šri Lanka",
914
- "LR": "Liberija",
915
- "LS": "Lesoto",
916
- "LT": "Litva",
917
- "LU": "Luksemburg",
918
- "LV": "Latvija",
919
- "LY": "Libija",
920
- "MA": "Maroko",
921
- "MC": "Monako",
922
- "MD": "Moldavija",
923
- "ME": "Crna Gora",
924
- "MF": "Saint Martin",
925
- "MG": "Madagaskar",
926
- "MH": "Maršalovi Otoci",
927
- "MK": "Sjeverna Makedonija",
928
- "MK-alt-variant": "MK",
929
- "ML": "Mali",
930
- "MM": "Mjanmar (Burma)",
931
- "MN": "Mongolija",
932
- "MO": "Makao, Kina",
933
- "MO-alt-short": "Makao",
934
- "MP": "Sjevernomarijanski otoci",
935
- "MQ": "Martinique",
936
- "MR": "Mauretanija",
937
- "MS": "Montserrat",
938
- "MT": "Malta",
939
- "MU": "Mauricijus",
940
- "MV": "Maldivi",
941
- "MW": "Malavi",
942
- "MX": "Meksiko",
943
- "MY": "Malezija",
944
- "MZ": "Mozambik",
945
- "NA": "Namibija",
946
- "NC": "Nova Kaledonija",
947
- "NE": "Niger",
948
- "NF": "Otok Norfolk",
949
- "NG": "Nigerija",
950
- "NI": "Nikaragva",
951
- "NL": "Nizozemska",
952
- "NO": "Norveška",
953
- "NP": "Nepal",
954
- "NR": "Nauru",
955
- "NU": "Niue",
956
- "NZ": "Novi Zeland",
957
- "OM": "Oman",
958
- "PA": "Panama",
959
- "PE": "Peru",
960
- "PF": "Francuska Polinezija",
961
- "PG": "Papua Nova Gvineja",
962
- "PH": "Filipini",
963
- "PK": "Pakistan",
964
- "PL": "Poljska",
965
- "PM": "Sveti Petar i Mikelon",
966
- "PN": "Otoci Pitcairn",
967
- "PR": "Portoriko",
968
- "PS": "Palestinsko područje",
969
- "PS-alt-short": "Palestina",
970
- "PT": "Portugal",
971
- "PW": "Palau",
972
- "PY": "Paragvaj",
973
- "QA": "Katar",
974
- "QO": "Vanjska područja Oceanije",
975
- "RE": "Réunion",
976
- "RO": "Rumunjska",
977
- "RS": "Srbija",
978
- "RU": "Rusija",
979
- "RW": "Ruanda",
980
- "SA": "Saudijska Arabija",
981
- "SB": "Salomonski Otoci",
982
- "SC": "Sejšeli",
983
- "SD": "Sudan",
984
- "SE": "Švedska",
985
- "SG": "Singapur",
986
- "SH": "Sveta Helena",
987
- "SI": "Slovenija",
988
- "SJ": "Svalbard i Jan Mayen",
989
- "SK": "Slovačka",
990
- "SL": "Sijera Leone",
991
- "SM": "San Marino",
992
- "SN": "Senegal",
993
- "SO": "Somalija",
994
- "SR": "Surinam",
995
- "SS": "Južni Sudan",
996
- "ST": "Sveti Toma i Princip",
997
- "SV": "Salvador",
998
- "SX": "Sint Maarten",
999
- "SY": "Sirija",
1000
- "SZ": "Svazi",
1001
- "SZ-alt-variant": "SZ",
1002
- "TA": "Tristan da Cunha",
1003
- "TC": "Otoci Turks i Caicos",
1004
- "TD": "Čad",
1005
- "TF": "Francuski južni i antarktički teritoriji",
1006
- "TG": "Togo",
1007
- "TH": "Tajland",
1008
- "TJ": "Tadžikistan",
1009
- "TK": "Tokelau",
1010
- "TL": "Timor-Leste",
1011
- "TL-alt-variant": "Istočni Timor",
1012
- "TM": "Turkmenistan",
1013
- "TN": "Tunis",
1014
- "TO": "Tonga",
1015
- "TR": "Turska",
1016
- "TT": "Trinidad i Tobago",
1017
- "TV": "Tuvalu",
1018
- "TW": "Tajvan, Kina",
1019
- "TZ": "Tanzanija",
1020
- "UA": "Ukrajina",
1021
- "UG": "Uganda",
1022
- "UM": "Mali udaljeni otoci SAD-a",
1023
- "UN": "Ujedinjeni narodi",
1024
- "UN-alt-short": "UN",
1025
- "US": "Sjedinjene Američke Države",
1026
- "US-alt-short": "SAD",
1027
- "UY": "Urugvaj",
1028
- "UZ": "Uzbekistan",
1029
- "VA": "Vatikanski Grad",
1030
- "VC": "Sveti Vincent i Grenadini",
1031
- "VE": "Venezuela",
1032
- "VG": "Britanski Djevičanski otoci",
1033
- "VI": "Američki Djevičanski otoci",
1034
- "VN": "Vijetnam",
1035
- "VU": "Vanuatu",
1036
- "WF": "Wallis i Futuna",
1037
- "WS": "Samoa",
1038
- "XA": "pseudo naglasci",
1039
- "XB": "pseudo bidi",
1040
- "XK": "Kosovo",
1041
- "YE": "Jemen",
1042
- "YT": "Mayotte",
1043
- "ZA": "Južnoafrička Republika",
1044
- "ZM": "Zambija",
1045
- "ZW": "Zimbabve",
1046
- "ZZ": "nepoznato područje"
1047
- },
1048
- "orientation": "left-to-right",
1049
- "ca-gregorian": {
1050
- "dateFormats": {
1051
- "full": "EEEE, d. MMMM y.",
1052
- "long": "d. MMMM y.",
1053
- "medium": "d. MMM y.",
1054
- "short": "dd. MM. y."
1055
- },
1056
- "timeFormats": {
1057
- "full": "HH:mm:ss (zzzz)",
1058
- "long": "HH:mm:ss z",
1059
- "medium": "HH:mm:ss",
1060
- "short": "HH:mm"
1061
- },
1062
- "dateTimeFormats": {
1063
- "full": "{1} 'u' {0}",
1064
- "long": "{1} 'u' {0}",
1065
- "medium": "{1} {0}",
1066
- "short": "{1} {0}",
1067
- "availableFormats": {
1068
- "Bh": "h B",
1069
- "Bhm": "h:mm B",
1070
- "Bhms": "h:mm:ss B",
1071
- "d": "d.",
1072
- "E": "ccc",
1073
- "EBhm": "E h:mm B",
1074
- "EBhms": "E h:mm:ss B",
1075
- "Ed": "E, d.",
1076
- "Ehm": "E h:mm a",
1077
- "EHm": "E HH:mm",
1078
- "Ehms": "E h:mm:ss a",
1079
- "EHms": "E HH:mm:ss",
1080
- "Gy": "y. G",
1081
- "GyMMM": "LLL y. G",
1082
- "GyMMMd": "d. MMM y. G",
1083
- "GyMMMEd": "E, d. MMM y. G",
1084
- "h": "h a",
1085
- "H": "HH",
1086
- "hm": "hh:mm a",
1087
- "Hm": "HH:mm",
1088
- "hms": "hh:mm:ss a",
1089
- "Hms": "HH:mm:ss",
1090
- "hmsv": "h:mm:ss a v",
1091
- "Hmsv": "HH:mm:ss v",
1092
- "hmv": "h:mm a v",
1093
- "Hmv": "HH:mm v",
1094
- "M": "L.",
1095
- "Md": "dd. MM.",
1096
- "MEd": "E, dd. MM.",
1097
- "MMdd": "dd. MM.",
1098
- "MMM": "LLL",
1099
- "MMMd": "d. MMM",
1100
- "MMMEd": "E, d. MMM",
1101
- "MMMMd": "d. MMMM",
1102
- "MMMMEd": "E, d. MMMM",
1103
- "ms": "mm:ss",
1104
- "y": "y.",
1105
- "yM": "MM. y.",
1106
- "yMd": "dd. MM. y.",
1107
- "yMEd": "E, dd. MM. y.",
1108
- "yMM": "MM. y.",
1109
- "yMMM": "LLL y.",
1110
- "yMMMd": "d. MMM y.",
1111
- "yMMMEd": "E, d. MMM y.",
1112
- "yMMMM": "LLLL y.",
1113
- "yQQQ": "QQQ y.",
1114
- "yQQQQ": "QQQQ y.",
1115
- "MMMMW": "W. 'tjedan' 'u' MMMM",
1116
- "yw": "w. 'tjedan' 'u' Y."
1117
- },
1118
- "appendItems": {
1119
- "Day": "{0} ({2}: {1})",
1120
- "Day-Of-Week": "{0} {1}",
1121
- "Era": "{1} {0}",
1122
- "Hour": "{0} ({2}: {1})",
1123
- "Minute": "{0} ({2}: {1})",
1124
- "Month": "{0} ({2}: {1})",
1125
- "Quarter": "{0} ({2}: {1})",
1126
- "Second": "{0} ({2}: {1})",
1127
- "Timezone": "{0} ({1})",
1128
- "Week": "{0} ({2}: {1})",
1129
- "Year": "{1} {0}"
1130
- },
1131
- "intervalFormats": {
1132
- "intervalFormatFallback": "{0} – {1}",
1133
- "Bh": {
1134
- "B": "h B – h B",
1135
- "h": "h – h B"
1136
- },
1137
- "Bhm": {
1138
- "B": "h:mm B – h:mm B",
1139
- "h": "h:mm – h:mm B",
1140
- "m": "h:mm – h:mm B"
1141
- },
1142
- "d": {
1143
- "d": "dd. – dd."
1144
- },
1145
- "Gy": {
1146
- "G": "y. G – y. G",
1147
- "y": "y. – y. G"
1148
- },
1149
- "GyM": {
1150
- "G": "MM. y. GGGGG – MM. y. GGGGG",
1151
- "M": "MM. y. – MM. y. GGGGG",
1152
- "y": "MM. y. – MM. y. GGGGG"
1153
- },
1154
- "GyMd": {
1155
- "d": "dd. MM. y. – dd. MM. y. GGGGG",
1156
- "G": "dd. MM. y. GGGGG – dd. MM. y. GGGGG",
1157
- "M": "dd. MM. y. – dd. MM. y. GGGGG",
1158
- "y": "dd. MM. y. – dd. MM. y. GGGGG"
1159
- },
1160
- "GyMEd": {
1161
- "d": "E, dd. MM. y. – E, dd. MM. y. GGGGG",
1162
- "G": "E, dd. MM. y. GGGGG – E, dd. MM. y. GGGGG",
1163
- "M": "E, dd. MM. y. – E, dd. MM. y. GGGGG",
1164
- "y": "E, dd. MM. y. – E, dd. MM. y. GGGGG"
1165
- },
1166
- "GyMMM": {
1167
- "G": "MMM y. G – MMM y. G",
1168
- "M": "MMM – MMM y. G",
1169
- "y": "MMM y – MMM y. G"
1170
- },
1171
- "GyMMMd": {
1172
- "d": "dd. – dd. MMM y. G",
1173
- "G": "dd. MMM y. G – dd. MMM y. G",
1174
- "M": "dd. MMM – dd. MMM y. G",
1175
- "y": "dd. MMM y. – dd. MMM y. G"
1176
- },
1177
- "GyMMMEd": {
1178
- "d": "E, dd. MMM – E, dd. MMM y. G",
1179
- "G": "E, dd. MMM y. G – E, dd. MMM y. G",
1180
- "M": "E, dd. MMM – E, dd. MMM y. G",
1181
- "y": "E, dd. MMM y. – E, dd. MMM y. G"
1182
- },
1183
- "h": {
1184
- "a": "h a – h a",
1185
- "h": "h – h 'h' a"
1186
- },
1187
- "H": {
1188
- "H": "HH – HH 'h'"
1189
- },
1190
- "hm": {
1191
- "a": "h:mm a – h:mm a",
1192
- "h": "h:mm – h:mm a",
1193
- "m": "h:mm – h:mm a"
1194
- },
1195
- "Hm": {
1196
- "H": "HH:mm – HH:mm",
1197
- "m": "HH:mm – HH:mm"
1198
- },
1199
- "hmv": {
1200
- "a": "h:mm a – h:mm a v",
1201
- "h": "h:mm – h:mm a v",
1202
- "m": "h:mm – h:mm a v"
1203
- },
1204
- "Hmv": {
1205
- "H": "HH:mm – HH:mm v",
1206
- "m": "HH:mm – HH:mm v"
1207
- },
1208
- "hv": {
1209
- "a": "h a – h a v",
1210
- "h": "h – h 'h' a v"
1211
- },
1212
- "Hv": {
1213
- "H": "HH – HH 'h' v"
1214
- },
1215
- "M": {
1216
- "M": "MM. – MM."
1217
- },
1218
- "Md": {
1219
- "d": "dd. MM. – dd. MM.",
1220
- "M": "dd. MM. – dd. MM."
1221
- },
1222
- "MEd": {
1223
- "d": "E, dd. MM. – E, dd. MM.",
1224
- "M": "E, dd. MM. – E, dd. MM."
1225
- },
1226
- "MMM": {
1227
- "M": "LLL – LLL"
1228
- },
1229
- "MMMd": {
1230
- "d": "dd. – dd. MMM",
1231
- "M": "dd. MMM – dd. MMM"
1232
- },
1233
- "MMMEd": {
1234
- "d": "E, dd. – E, dd. MMM",
1235
- "M": "E, dd. MMM – E, dd. MMM"
1236
- },
1237
- "y": {
1238
- "y": "y. – y."
1239
- },
1240
- "yM": {
1241
- "M": "MM. y. – MM. y.",
1242
- "y": "MM. y. – MM. y."
1243
- },
1244
- "yMd": {
1245
- "d": "dd. MM. y. – dd. MM. y.",
1246
- "M": "dd. MM. y. – dd. MM. y.",
1247
- "y": "dd. MM. y. – dd. MM. y."
1248
- },
1249
- "yMEd": {
1250
- "d": "E, dd. MM. y. – E, dd. MM. y.",
1251
- "M": "E, dd. MM. y. – E, dd. MM. y.",
1252
- "y": "E, dd. MM. y. – E, dd. MM. y."
1253
- },
1254
- "yMMM": {
1255
- "M": "LLL – LLL y.",
1256
- "y": "LLL y. – LLL y."
1257
- },
1258
- "yMMMd": {
1259
- "d": "dd. – dd. MMM y.",
1260
- "M": "dd. MMM – dd. MMM y.",
1261
- "y": "dd. MMM y. – dd. MMM y."
1262
- },
1263
- "yMMMEd": {
1264
- "d": "E, dd. – E, dd. MMM y.",
1265
- "M": "E, dd. MMM – E, dd. MMM y.",
1266
- "y": "E, dd. MMM y. – E, dd. MMM y."
1267
- },
1268
- "yMMMM": {
1269
- "M": "LLLL – LLLL y.",
1270
- "y": "LLLL y. – LLLL y."
1271
- }
1272
- }
1273
- },
1274
- "months": {
1275
- "format": {
1276
- "abbreviated": [
1277
- "sij",
1278
- "velj",
1279
- "ožu",
1280
- "tra",
1281
- "svi",
1282
- "lip",
1283
- "srp",
1284
- "kol",
1285
- "ruj",
1286
- "lis",
1287
- "stu",
1288
- "pro"
1289
- ],
1290
- "narrow": [
1291
- "1.",
1292
- "2.",
1293
- "3.",
1294
- "4.",
1295
- "5.",
1296
- "6.",
1297
- "7.",
1298
- "8.",
1299
- "9.",
1300
- "10.",
1301
- "11.",
1302
- "12."
1303
- ],
1304
- "wide": [
1305
- "siječnja",
1306
- "veljače",
1307
- "ožujka",
1308
- "travnja",
1309
- "svibnja",
1310
- "lipnja",
1311
- "srpnja",
1312
- "kolovoza",
1313
- "rujna",
1314
- "listopada",
1315
- "studenoga",
1316
- "prosinca"
1317
- ]
1318
- },
1319
- "stand-alone": {
1320
- "abbreviated": [
1321
- "sij",
1322
- "velj",
1323
- "ožu",
1324
- "tra",
1325
- "svi",
1326
- "lip",
1327
- "srp",
1328
- "kol",
1329
- "ruj",
1330
- "lis",
1331
- "stu",
1332
- "pro"
1333
- ],
1334
- "narrow": [
1335
- "1.",
1336
- "2.",
1337
- "3.",
1338
- "4.",
1339
- "5.",
1340
- "6.",
1341
- "7.",
1342
- "8.",
1343
- "9.",
1344
- "10.",
1345
- "11.",
1346
- "12."
1347
- ],
1348
- "wide": [
1349
- "siječanj",
1350
- "veljača",
1351
- "ožujak",
1352
- "travanj",
1353
- "svibanj",
1354
- "lipanj",
1355
- "srpanj",
1356
- "kolovoz",
1357
- "rujan",
1358
- "listopad",
1359
- "studeni",
1360
- "prosinac"
1361
- ]
1362
- }
1363
- },
1364
- "days": {
1365
- "format": {
1366
- "abbreviated": [
1367
- "ned",
1368
- "pon",
1369
- "uto",
1370
- "sri",
1371
- "čet",
1372
- "pet",
1373
- "sub"
1374
- ],
1375
- "narrow": [
1376
- "N",
1377
- "P",
1378
- "U",
1379
- "S",
1380
- "Č",
1381
- "P",
1382
- "S"
1383
- ],
1384
- "short": [
1385
- "ned",
1386
- "pon",
1387
- "uto",
1388
- "sri",
1389
- "čet",
1390
- "pet",
1391
- "sub"
1392
- ],
1393
- "wide": [
1394
- "nedjelja",
1395
- "ponedjeljak",
1396
- "utorak",
1397
- "srijeda",
1398
- "četvrtak",
1399
- "petak",
1400
- "subota"
1401
- ]
1402
- },
1403
- "stand-alone": {
1404
- "abbreviated": [
1405
- "ned",
1406
- "pon",
1407
- "uto",
1408
- "sri",
1409
- "čet",
1410
- "pet",
1411
- "sub"
1412
- ],
1413
- "narrow": [
1414
- "n",
1415
- "p",
1416
- "u",
1417
- "s",
1418
- "č",
1419
- "p",
1420
- "s"
1421
- ],
1422
- "short": [
1423
- "ned",
1424
- "pon",
1425
- "uto",
1426
- "sri",
1427
- "čet",
1428
- "pet",
1429
- "sub"
1430
- ],
1431
- "wide": [
1432
- "nedjelja",
1433
- "ponedjeljak",
1434
- "utorak",
1435
- "srijeda",
1436
- "četvrtak",
1437
- "petak",
1438
- "subota"
1439
- ]
1440
- }
1441
- },
1442
- "quarters": {
1443
- "format": {
1444
- "abbreviated": [
1445
- "1kv",
1446
- "2kv",
1447
- "3kv",
1448
- "4kv"
1449
- ],
1450
- "narrow": [
1451
- "1.",
1452
- "2.",
1453
- "3.",
1454
- "4."
1455
- ],
1456
- "wide": [
1457
- "1. kvartal",
1458
- "2. kvartal",
1459
- "3. kvartal",
1460
- "4. kvartal"
1461
- ]
1462
- },
1463
- "stand-alone": {
1464
- "abbreviated": [
1465
- "1. kv.",
1466
- "2. kv.",
1467
- "3. kv.",
1468
- "4. kv."
1469
- ],
1470
- "narrow": [
1471
- "1.",
1472
- "2.",
1473
- "3.",
1474
- "4."
1475
- ],
1476
- "wide": [
1477
- "1. kvartal",
1478
- "2. kvartal",
1479
- "3. kvartal",
1480
- "4. kvartal"
1481
- ]
1482
- }
1483
- },
1484
- "dayPeriods": {
1485
- "format": {
1486
- "abbreviated": [
1487
- "AM",
1488
- "PM"
1489
- ],
1490
- "narrow": [
1491
- "AM",
1492
- "PM"
1493
- ],
1494
- "wide": [
1495
- "AM",
1496
- "PM"
1497
- ]
1498
- },
1499
- "stand-alone": {
1500
- "abbreviated": [
1501
- "AM",
1502
- "PM"
1503
- ],
1504
- "narrow": [
1505
- "AM",
1506
- "PM"
1507
- ],
1508
- "wide": [
1509
- "AM",
1510
- "PM"
1511
- ]
1512
- }
1513
- },
1514
- "era-wide": {
1515
- "0": "prije Krista",
1516
- "1": "poslije Krista"
1517
- },
1518
- "era-abbreviated": {
1519
- "0": "pr. Kr.",
1520
- "1": "po. Kr."
1521
- },
1522
- "era-narrow": {
1523
- "0": "pr.n.e.",
1524
- "1": "AD"
1525
- }
1526
- },
1527
- "ca-islamic": {
1528
- "dateFormats": {
1529
- "full": "EEEE, d. MMMM y. G",
1530
- "long": "d. MMMM y. G",
1531
- "medium": "d. M. y. G",
1532
- "short": "d. M. y. GGGGG"
1533
- },
1534
- "timeFormats": {
1535
- "full": "HH:mm:ss (zzzz)",
1536
- "long": "HH:mm:ss z",
1537
- "medium": "HH:mm:ss",
1538
- "short": "HH:mm"
1539
- },
1540
- "dateTimeFormats": {
1541
- "full": "{1} 'u' {0}",
1542
- "long": "{1} 'u' {0}",
1543
- "medium": "{1} {0}",
1544
- "short": "{1} {0}",
1545
- "availableFormats": {
1546
- "Bh": "h B",
1547
- "Bhm": "h:mm B",
1548
- "Bhms": "h:mm:ss B",
1549
- "d": "d.",
1550
- "E": "ccc",
1551
- "EBhm": "E h:mm B",
1552
- "EBhms": "E h:mm:ss B",
1553
- "Ed": "E, d.",
1554
- "Ehm": "E h:mm a",
1555
- "EHm": "E HH:mm",
1556
- "Ehms": "E h:mm:ss a",
1557
- "EHms": "E HH:mm:ss",
1558
- "Gy": "y. G",
1559
- "GyMMM": "LLL y. G",
1560
- "GyMMMd": "d. MMM y. G",
1561
- "GyMMMEd": "E, d. MMM y. G",
1562
- "h": "hh a",
1563
- "H": "HH",
1564
- "hm": "hh:mm a",
1565
- "Hm": "HH:mm",
1566
- "hms": "hh:mm:ss a",
1567
- "Hms": "HH:mm:ss",
1568
- "M": "L.",
1569
- "Md": "d. M.",
1570
- "MEd": "E, d. M.",
1571
- "MMM": "LLL",
1572
- "MMMd": "d. MMM",
1573
- "MMMEd": "E, d. MMM",
1574
- "MMMMd": "d. MMMM",
1575
- "MMMMEd": "E, d. MMMM",
1576
- "ms": "mm:ss",
1577
- "y": "y. G",
1578
- "yyyy": "y. G",
1579
- "yyyyM": "MM. y. GGGGG",
1580
- "yyyyMd": "dd. MM. y. GGGGG",
1581
- "yyyyMEd": "E, dd. MM. y. GGGGG",
1582
- "yyyyMMM": "LLL y. G",
1583
- "yyyyMMMd": "d. MMM y. G",
1584
- "yyyyMMMEd": "E, d. MMM y. G",
1585
- "yyyyMMMM": "LLLL y. G",
1586
- "yyyyQQQ": "QQQ y. G",
1587
- "yyyyQQQQ": "QQQQ y. G"
1588
- },
1589
- "appendItems": {
1590
- "Day": "{0} ({2}: {1})",
1591
- "Day-Of-Week": "{0} {1}",
1592
- "Era": "{1} {0}",
1593
- "Hour": "{0} ({2}: {1})",
1594
- "Minute": "{0} ({2}: {1})",
1595
- "Month": "{0} ({2}: {1})",
1596
- "Quarter": "{0} ({2}: {1})",
1597
- "Second": "{0} ({2}: {1})",
1598
- "Timezone": "{0} {1}",
1599
- "Week": "{0} ({2}: {1})",
1600
- "Year": "{1} {0}"
1601
- },
1602
- "intervalFormats": {
1603
- "intervalFormatFallback": "{0} – {1}",
1604
- "Bh": {
1605
- "B": "h B – h B",
1606
- "h": "h – h B"
1607
- },
1608
- "Bhm": {
1609
- "B": "h:mm B – h:mm B",
1610
- "h": "h:mm – h:mm B",
1611
- "m": "h:mm – h:mm B"
1612
- },
1613
- "d": {
1614
- "d": "dd. – dd."
1615
- },
1616
- "Gy": {
1617
- "G": "y. G – y. G",
1618
- "y": "y. – y. G"
1619
- },
1620
- "GyM": {
1621
- "G": "M. y. GGGGG – M. y. GGGGG",
1622
- "M": "M. y. – M. y. GGGGG",
1623
- "y": "M. y. – M. y. GGGGG"
1624
- },
1625
- "GyMd": {
1626
- "d": "d. M. y. – d. M. y. GGGGG",
1627
- "G": "d. M. y. – d. M. y. GGGGG",
1628
- "M": "d. M. y. – d. M. y. GGGGG",
1629
- "y": "d. M. y. – d. M. y. GGGGG"
1630
- },
1631
- "GyMEd": {
1632
- "d": "E, d. M. y. – E, d. M. y. GGGGG",
1633
- "G": "E, d. M. y. GGGGG – E, d. M. y. GGGGG",
1634
- "M": "E, d. M. y. – E, d. M. y. GGGGG",
1635
- "y": "E, d. M. y. – E, d. M. y. GGGGG"
1636
- },
1637
- "GyMMM": {
1638
- "G": "MMM y. G – MMM y. G",
1639
- "M": "MMM y. G – MMM y. G",
1640
- "y": "MMM y. – MMM y. G"
1641
- },
1642
- "GyMMMd": {
1643
- "d": "d. – d. MMM y. G",
1644
- "G": "d. MMM y. G – d. MMM y. G",
1645
- "M": "d. MMM – d. MMM y. G",
1646
- "y": "d. MMM y. – d. MMM y. G"
1647
- },
1648
- "GyMMMEd": {
1649
- "d": "E, d. MMM – E, d. MMM y. G",
1650
- "G": "E, d. MMM y. G – E, d. MMM y. G",
1651
- "M": "E, d. MMM – E, d. MMM y. G",
1652
- "y": "E, d. MMM y. – E, d. MMM y. G"
1653
- },
1654
- "h": {
1655
- "a": "h a – h a",
1656
- "h": "h – h'h' a"
1657
- },
1658
- "H": {
1659
- "H": "HH – HH'h'"
1660
- },
1661
- "hm": {
1662
- "a": "h:mm a – h:mm a",
1663
- "h": "h:mm–h:mm a",
1664
- "m": "h:mm–h:mm a"
1665
- },
1666
- "Hm": {
1667
- "H": "HH:mm–HH:mm",
1668
- "m": "HH:mm–HH:mm"
1669
- },
1670
- "hmv": {
1671
- "a": "h:mm a – h:mm a v",
1672
- "h": "h:mm–h:mm a v",
1673
- "m": "h:mm–h:mm a v"
1674
- },
1675
- "Hmv": {
1676
- "H": "HH:mm–HH:mm v",
1677
- "m": "HH:mm–HH:mm v"
1678
- },
1679
- "hv": {
1680
- "a": "h a – h a v",
1681
- "h": "h – h 'h' a v"
1682
- },
1683
- "Hv": {
1684
- "H": "HH – HH 'h' v"
1685
- },
1686
- "M": {
1687
- "M": "MM. – MM."
1688
- },
1689
- "Md": {
1690
- "d": "dd. MM. – dd. MM.",
1691
- "M": "dd. MM. – dd. MM."
1692
- },
1693
- "MEd": {
1694
- "d": "E, dd. MM. – E, dd. MM.",
1695
- "M": "E, dd. MM. – E, dd. MM."
1696
- },
1697
- "MMM": {
1698
- "M": "LLL – LLL"
1699
- },
1700
- "MMMd": {
1701
- "d": "d. – d. MMM",
1702
- "M": "dd. MMM – dd. MMM"
1703
- },
1704
- "MMMEd": {
1705
- "d": "E, dd. – E, dd. MMM",
1706
- "M": "E, dd. MMM – E, dd. MMM"
1707
- },
1708
- "y": {
1709
- "y": "y. – y. G"
1710
- },
1711
- "yM": {
1712
- "M": "MM. y. – MM. y. G",
1713
- "y": "MM. y. – MM. y. G"
1714
- },
1715
- "yMd": {
1716
- "d": "dd. MM. y. – dd. MM. y. G",
1717
- "M": "dd. MM. y. – dd. MM. y. G",
1718
- "y": "dd. MM. y. – dd. MM. y. G"
1719
- },
1720
- "yMEd": {
1721
- "d": "E, dd. MM. y. – E, dd. MM. y. G",
1722
- "M": "E, dd. MM. y. – E, dd. MM. y. G",
1723
- "y": "E, dd. MM. y. – E, dd. MM. y. G"
1724
- },
1725
- "yMMM": {
1726
- "M": "LLL – LLL y. G",
1727
- "y": "LLL y. – LLL y. G"
1728
- },
1729
- "yMMMd": {
1730
- "d": "dd. – dd. MMM y. G",
1731
- "M": "dd. MMM – dd. MMM y. G",
1732
- "y": "dd. MMM y. – dd. MMM y. G"
1733
- },
1734
- "yMMMEd": {
1735
- "d": "E, dd. – E, dd. MMM y. G",
1736
- "M": "E, dd. MMM – E, dd. MMM y. G",
1737
- "y": "E, dd. MMM y. – E, dd. MMM y. G"
1738
- },
1739
- "yMMMM": {
1740
- "M": "LLLL – LLLL y. G",
1741
- "y": "LLLL y. – LLLL y. G"
1742
- }
1743
- }
1744
- },
1745
- "months": {
1746
- "format": {
1747
- "abbreviated": [
1748
- "Muh.",
1749
- "Saf.",
1750
- "Rab. I",
1751
- "Rab. II",
1752
- "Jum. I",
1753
- "Jum. II",
1754
- "Raj.",
1755
- "Sha.",
1756
- "Ram.",
1757
- "Shaw.",
1758
- "Dhuʻl-Q.",
1759
- "Dhuʻl-H."
1760
- ],
1761
- "narrow": [
1762
- "1.",
1763
- "2.",
1764
- "3.",
1765
- "4.",
1766
- "5.",
1767
- "6.",
1768
- "7.",
1769
- "8.",
1770
- "9.",
1771
- "10.",
1772
- "11.",
1773
- "12."
1774
- ],
1775
- "wide": [
1776
- "Muharram",
1777
- "Safar",
1778
- "Rabiʻ I",
1779
- "Rabiʻ II",
1780
- "Jumada I",
1781
- "Jumada II",
1782
- "Rajab",
1783
- "Shaʻban",
1784
- "Ramadan",
1785
- "Shawwal",
1786
- "Dhuʻl-Qiʻdah",
1787
- "Dhuʻl-Hijjah"
1788
- ]
1789
- },
1790
- "stand-alone": {
1791
- "abbreviated": [
1792
- "Muh.",
1793
- "Saf.",
1794
- "Rab. I",
1795
- "Rab. II",
1796
- "Jum. I",
1797
- "Jum. II",
1798
- "Raj.",
1799
- "Sha.",
1800
- "Ram.",
1801
- "Shaw.",
1802
- "Dhuʻl-Q.",
1803
- "Dhuʻl-H."
1804
- ],
1805
- "narrow": [
1806
- "1.",
1807
- "2.",
1808
- "3.",
1809
- "4.",
1810
- "5.",
1811
- "6.",
1812
- "7.",
1813
- "8.",
1814
- "9.",
1815
- "10.",
1816
- "11.",
1817
- "12."
1818
- ],
1819
- "wide": [
1820
- "Muharram",
1821
- "Safar",
1822
- "Rabiʻ I",
1823
- "Rabiʻ II",
1824
- "Jumada I",
1825
- "Jumada II",
1826
- "Rajab",
1827
- "Shaʻban",
1828
- "Ramadan",
1829
- "Shawwal",
1830
- "Dhuʻl-Qiʻdah",
1831
- "Dhuʻl-Hijjah"
1832
- ]
1833
- }
1834
- },
1835
- "days": {
1836
- "format": {
1837
- "abbreviated": [
1838
- "ned",
1839
- "pon",
1840
- "uto",
1841
- "sri",
1842
- "čet",
1843
- "pet",
1844
- "sub"
1845
- ],
1846
- "narrow": [
1847
- "N",
1848
- "P",
1849
- "U",
1850
- "S",
1851
- "Č",
1852
- "P",
1853
- "S"
1854
- ],
1855
- "short": [
1856
- "ned",
1857
- "pon",
1858
- "uto",
1859
- "sri",
1860
- "čet",
1861
- "pet",
1862
- "sub"
1863
- ],
1864
- "wide": [
1865
- "nedjelja",
1866
- "ponedjeljak",
1867
- "utorak",
1868
- "srijeda",
1869
- "četvrtak",
1870
- "petak",
1871
- "subota"
1872
- ]
1873
- },
1874
- "stand-alone": {
1875
- "abbreviated": [
1876
- "ned",
1877
- "pon",
1878
- "uto",
1879
- "sri",
1880
- "čet",
1881
- "pet",
1882
- "sub"
1883
- ],
1884
- "narrow": [
1885
- "n",
1886
- "p",
1887
- "u",
1888
- "s",
1889
- "č",
1890
- "p",
1891
- "s"
1892
- ],
1893
- "short": [
1894
- "ned",
1895
- "pon",
1896
- "uto",
1897
- "sri",
1898
- "čet",
1899
- "pet",
1900
- "sub"
1901
- ],
1902
- "wide": [
1903
- "nedjelja",
1904
- "ponedjeljak",
1905
- "utorak",
1906
- "srijeda",
1907
- "četvrtak",
1908
- "petak",
1909
- "subota"
1910
- ]
1911
- }
1912
- },
1913
- "quarters": {
1914
- "format": {
1915
- "abbreviated": [
1916
- "1kv",
1917
- "2kv",
1918
- "3kv",
1919
- "4kv"
1920
- ],
1921
- "narrow": [
1922
- "1.",
1923
- "2.",
1924
- "3.",
1925
- "4."
1926
- ],
1927
- "wide": [
1928
- "1. kvartal",
1929
- "2. kvartal",
1930
- "3. kvartal",
1931
- "4. kvartal"
1932
- ]
1933
- },
1934
- "stand-alone": {
1935
- "abbreviated": [
1936
- "1. kv.",
1937
- "2. kv.",
1938
- "3. kv.",
1939
- "4. kv."
1940
- ],
1941
- "narrow": [
1942
- "1.",
1943
- "2.",
1944
- "3.",
1945
- "4."
1946
- ],
1947
- "wide": [
1948
- "1. kvartal",
1949
- "2. kvartal",
1950
- "3. kvartal",
1951
- "4. kvartal"
1952
- ]
1953
- }
1954
- },
1955
- "dayPeriods": {
1956
- "format": {
1957
- "abbreviated": [
1958
- "AM",
1959
- "PM"
1960
- ],
1961
- "narrow": [
1962
- "AM",
1963
- "PM"
1964
- ],
1965
- "wide": [
1966
- "AM",
1967
- "PM"
1968
- ]
1969
- },
1970
- "stand-alone": {
1971
- "abbreviated": [
1972
- "AM",
1973
- "PM"
1974
- ],
1975
- "narrow": [
1976
- "AM",
1977
- "PM"
1978
- ],
1979
- "wide": [
1980
- "AM",
1981
- "PM"
1982
- ]
1983
- }
1984
- },
1985
- "era-wide": {
1986
- "0": "AH"
1987
- },
1988
- "era-abbreviated": {
1989
- "0": "AH"
1990
- },
1991
- "era-narrow": {
1992
- "0": "AH"
1993
- }
1994
- },
1995
- "ca-japanese": {
1996
- "dateFormats": {
1997
- "full": "EEEE, d. MMMM y. G",
1998
- "long": "d. MMMM y. G",
1999
- "medium": "d. M. y. G",
2000
- "short": "d. M. y. GGGGG"
2001
- },
2002
- "timeFormats": {
2003
- "full": "HH:mm:ss (zzzz)",
2004
- "long": "HH:mm:ss z",
2005
- "medium": "HH:mm:ss",
2006
- "short": "HH:mm"
2007
- },
2008
- "dateTimeFormats": {
2009
- "full": "{1} {0}",
2010
- "long": "{1} {0}",
2011
- "medium": "{1} {0}",
2012
- "short": "{1} {0}",
2013
- "availableFormats": {
2014
- "Bh": "h B",
2015
- "Bhm": "h:mm B",
2016
- "Bhms": "h:mm:ss B",
2017
- "d": "d.",
2018
- "E": "ccc",
2019
- "EBhm": "E h:mm B",
2020
- "EBhms": "E h:mm:ss B",
2021
- "Ed": "E, d.",
2022
- "Ehm": "E h:mm a",
2023
- "EHm": "E HH:mm",
2024
- "Ehms": "E h:mm:ss a",
2025
- "EHms": "E HH:mm:ss",
2026
- "Gy": "y. GGG",
2027
- "GyMMM": "LLL y. G",
2028
- "GyMMMd": "d. MMM y. G",
2029
- "GyMMMEd": "E, d. MMM y. G",
2030
- "h": "hh a",
2031
- "H": "HH",
2032
- "hm": "hh:mm a",
2033
- "Hm": "HH:mm",
2034
- "hms": "hh:mm:ss a",
2035
- "Hms": "HH:mm:ss",
2036
- "M": "L.",
2037
- "Md": "d. M.",
2038
- "MEd": "E, d. M.",
2039
- "MMM": "LLL",
2040
- "MMMd": "d. MMM",
2041
- "MMMEd": "E, d. MMM",
2042
- "MMMMd": "d. MMMM",
2043
- "MMMMEd": "E, d. MMMM",
2044
- "ms": "mm:ss",
2045
- "y": "y. GGG",
2046
- "yM": "M. y. GGGGG",
2047
- "yMd": "d. M. y. GGGGG",
2048
- "yMEd": "E, d. M. y. GGGGG",
2049
- "yMMM": "LLL y. GGGGG",
2050
- "yMMMd": "d. MMM y. GGGGG",
2051
- "yMMMEd": "E, d. MMM y. GGGGG",
2052
- "yQQQ": "QQQ y. GGGGG",
2053
- "yyyy": "y. G",
2054
- "yyyyM": "M. y. G",
2055
- "yyyyMd": "d. M. y. G",
2056
- "yyyyMEd": "E, d. M. y. G",
2057
- "yyyyMMM": "LLL y. G",
2058
- "yyyyMMMd": "d. MMM y. G",
2059
- "yyyyMMMEd": "E, d. MMM y. G",
2060
- "yyyyMMMM": "LLLL y. G",
2061
- "yyyyQQQ": "QQQ y. G",
2062
- "yyyyQQQQ": "QQQQ y. G"
2063
- },
2064
- "appendItems": {
2065
- "Day": "{0} ({2}: {1})",
2066
- "Day-Of-Week": "{0} {1}",
2067
- "Era": "{1} {0}",
2068
- "Hour": "{0} ({2}: {1})",
2069
- "Minute": "{0} ({2}: {1})",
2070
- "Month": "{0} ({2}: {1})",
2071
- "Quarter": "{0} ({2}: {1})",
2072
- "Second": "{0} ({2}: {1})",
2073
- "Timezone": "{0} {1}",
2074
- "Week": "{0} ({2}: {1})",
2075
- "Year": "{1} {0}"
2076
- },
2077
- "intervalFormats": {
2078
- "intervalFormatFallback": "{0} – {1}",
2079
- "Bh": {
2080
- "B": "h B – h B",
2081
- "h": "h – h B"
2082
- },
2083
- "Bhm": {
2084
- "B": "h:mm B – h:mm B",
2085
- "h": "h:mm – h:mm B",
2086
- "m": "h:mm – h:mm B"
2087
- },
2088
- "d": {
2089
- "d": "dd. – dd."
2090
- },
2091
- "Gy": {
2092
- "G": "y. G – y. G",
2093
- "y": "y. – y. G"
2094
- },
2095
- "GyM": {
2096
- "G": "M. y. GGGGG – M. y. GGGGG",
2097
- "M": "M. y. – M. y. GGGGG",
2098
- "y": "M. y. – M. y. GGGGG"
2099
- },
2100
- "GyMd": {
2101
- "d": "d. M. y. – d. M. y. GGGGG",
2102
- "G": "d. M. y. – d. M. y. GGGGG",
2103
- "M": "d. M. y. – d. M. y. GGGGG",
2104
- "y": "d. M. y. – d. M. y. GGGGG"
2105
- },
2106
- "GyMEd": {
2107
- "d": "E, d. M. y. – E, d. M. y. GGGGG",
2108
- "G": "E, d. M. y. GGGGG – E, d. M. y. GGGGG",
2109
- "M": "E, d. M. y. – E, d. M. y. GGGGG",
2110
- "y": "E, d. M. y. – E, d. M. y. GGGGG"
2111
- },
2112
- "GyMMM": {
2113
- "G": "MMM y. G – MMM y. G",
2114
- "M": "MMM y. G – MMM y. G",
2115
- "y": "MMM y. – MMM y. G"
2116
- },
2117
- "GyMMMd": {
2118
- "d": "d. – d. MMM y. G",
2119
- "G": "d. MMM y. G – d. MMM y. G",
2120
- "M": "d. MMM – d. MMM y. G",
2121
- "y": "d. MMM y. – d. MMM y. G"
2122
- },
2123
- "GyMMMEd": {
2124
- "d": "E, d. MMM – E, d. MMM y. G",
2125
- "G": "E, d. MMM y. G – E, d. MMM y. G",
2126
- "M": "E, d. MMM – E, d. MMM y. G",
2127
- "y": "E, d. MMM y. – E, d. MMM y. G"
2128
- },
2129
- "h": {
2130
- "a": "h a – h a",
2131
- "h": "h – h'h' a"
2132
- },
2133
- "H": {
2134
- "H": "HH – HH'h'"
2135
- },
2136
- "hm": {
2137
- "a": "h:mm a – h:mm a",
2138
- "h": "h:mm–h:mm a",
2139
- "m": "h:mm–h:mm a"
2140
- },
2141
- "Hm": {
2142
- "H": "HH:mm–HH:mm",
2143
- "m": "HH:mm–HH:mm"
2144
- },
2145
- "hmv": {
2146
- "a": "h:mm a – h:mm a v",
2147
- "h": "h:mm–h:mm a v",
2148
- "m": "h:mm–h:mm a v"
2149
- },
2150
- "Hmv": {
2151
- "H": "HH:mm–HH:mm v",
2152
- "m": "HH:mm–HH:mm v"
2153
- },
2154
- "hv": {
2155
- "a": "h a – h a v",
2156
- "h": "h – h 'h' a v"
2157
- },
2158
- "Hv": {
2159
- "H": "HH – HH 'h' v"
2160
- },
2161
- "M": {
2162
- "M": "MM. – MM."
2163
- },
2164
- "Md": {
2165
- "d": "dd. MM. – dd. MM.",
2166
- "M": "dd. MM. – dd. MM."
2167
- },
2168
- "MEd": {
2169
- "d": "E, dd. MM. – E, dd. MM.",
2170
- "M": "E, dd. MM. – E, dd. MM."
2171
- },
2172
- "MMM": {
2173
- "M": "LLL – LLL"
2174
- },
2175
- "MMMd": {
2176
- "d": "d. – d. MMM",
2177
- "M": "dd. MMM – dd. MMM"
2178
- },
2179
- "MMMEd": {
2180
- "d": "E, dd. – E, dd. MMM",
2181
- "M": "E, dd. MMM – E, dd. MMM"
2182
- },
2183
- "y": {
2184
- "y": "y. – y. G",
2185
- "G": "y. G – y. G"
2186
- },
2187
- "yM": {
2188
- "M": "MM. y. – MM. y. G",
2189
- "y": "MM. y. – MM. y. G",
2190
- "G": "MM. y. G – MM. y. G"
2191
- },
2192
- "yMd": {
2193
- "d": "dd. MM. y. – dd. MM. y. G",
2194
- "M": "dd. MM. y. – dd. MM. y. G",
2195
- "y": "dd. MM. y. – dd. MM. y. G",
2196
- "G": "dd. MM. y. G – dd. MM. y. G"
2197
- },
2198
- "yMEd": {
2199
- "d": "E, dd. MM. y. – E, dd. MM. y. G",
2200
- "M": "E, dd. MM. y. – E, dd. MM. y. G",
2201
- "y": "E, dd. MM. y. – E, dd. MM. y. G",
2202
- "G": "E, dd. MM. y. G – E, dd. MM. y. G"
2203
- },
2204
- "yMMM": {
2205
- "M": "LLL – LLL y. G",
2206
- "y": "LLL y. – LLL y. G",
2207
- "G": "LLL y. G – LLL y. G"
2208
- },
2209
- "yMMMd": {
2210
- "d": "dd. – dd. MMM y. G",
2211
- "M": "dd. MMM – dd. MMM y. G",
2212
- "y": "dd. MMM y. – dd. MMM y. G",
2213
- "G": "dd. MMM y. G – dd. MMM y. G"
2214
- },
2215
- "yMMMEd": {
2216
- "d": "E, dd. – E, dd. MMM y. G",
2217
- "M": "E, dd. MMM – E, dd. MMM y. G",
2218
- "y": "E, dd. MMM y. – E, dd. MMM y. G",
2219
- "G": "E, dd. MMM y. G – E, dd. MMM y. G"
2220
- },
2221
- "yMMMM": {
2222
- "M": "LLLL – LLLL y. G",
2223
- "y": "LLLL y. – LLLL y. G",
2224
- "G": "LLLL y. G – LLLL y. G"
2225
- }
2226
- }
2227
- },
2228
- "months": {
2229
- "format": {
2230
- "abbreviated": [
2231
- "sij",
2232
- "velj",
2233
- "ožu",
2234
- "tra",
2235
- "svi",
2236
- "lip",
2237
- "srp",
2238
- "kol",
2239
- "ruj",
2240
- "lis",
2241
- "stu",
2242
- "pro"
2243
- ],
2244
- "narrow": [
2245
- "1.",
2246
- "2.",
2247
- "3.",
2248
- "4.",
2249
- "5.",
2250
- "6.",
2251
- "7.",
2252
- "8.",
2253
- "9.",
2254
- "10.",
2255
- "11.",
2256
- "12."
2257
- ],
2258
- "wide": [
2259
- "siječnja",
2260
- "veljače",
2261
- "ožujka",
2262
- "travnja",
2263
- "svibnja",
2264
- "lipnja",
2265
- "srpnja",
2266
- "kolovoza",
2267
- "rujna",
2268
- "listopada",
2269
- "studenoga",
2270
- "prosinca"
2271
- ]
2272
- },
2273
- "stand-alone": {
2274
- "abbreviated": [
2275
- "sij",
2276
- "velj",
2277
- "ožu",
2278
- "tra",
2279
- "svi",
2280
- "lip",
2281
- "srp",
2282
- "kol",
2283
- "ruj",
2284
- "lis",
2285
- "stu",
2286
- "pro"
2287
- ],
2288
- "narrow": [
2289
- "1.",
2290
- "2.",
2291
- "3.",
2292
- "4.",
2293
- "5.",
2294
- "6.",
2295
- "7.",
2296
- "8.",
2297
- "9.",
2298
- "10.",
2299
- "11.",
2300
- "12."
2301
- ],
2302
- "wide": [
2303
- "siječanj",
2304
- "veljača",
2305
- "ožujak",
2306
- "travanj",
2307
- "svibanj",
2308
- "lipanj",
2309
- "srpanj",
2310
- "kolovoz",
2311
- "rujan",
2312
- "listopad",
2313
- "studeni",
2314
- "prosinac"
2315
- ]
2316
- }
2317
- },
2318
- "days": {
2319
- "format": {
2320
- "abbreviated": [
2321
- "ned",
2322
- "pon",
2323
- "uto",
2324
- "sri",
2325
- "čet",
2326
- "pet",
2327
- "sub"
2328
- ],
2329
- "narrow": [
2330
- "N",
2331
- "P",
2332
- "U",
2333
- "S",
2334
- "Č",
2335
- "P",
2336
- "S"
2337
- ],
2338
- "short": [
2339
- "ned",
2340
- "pon",
2341
- "uto",
2342
- "sri",
2343
- "čet",
2344
- "pet",
2345
- "sub"
2346
- ],
2347
- "wide": [
2348
- "nedjelja",
2349
- "ponedjeljak",
2350
- "utorak",
2351
- "srijeda",
2352
- "četvrtak",
2353
- "petak",
2354
- "subota"
2355
- ]
2356
- },
2357
- "stand-alone": {
2358
- "abbreviated": [
2359
- "ned",
2360
- "pon",
2361
- "uto",
2362
- "sri",
2363
- "čet",
2364
- "pet",
2365
- "sub"
2366
- ],
2367
- "narrow": [
2368
- "n",
2369
- "p",
2370
- "u",
2371
- "s",
2372
- "č",
2373
- "p",
2374
- "s"
2375
- ],
2376
- "short": [
2377
- "ned",
2378
- "pon",
2379
- "uto",
2380
- "sri",
2381
- "čet",
2382
- "pet",
2383
- "sub"
2384
- ],
2385
- "wide": [
2386
- "nedjelja",
2387
- "ponedjeljak",
2388
- "utorak",
2389
- "srijeda",
2390
- "četvrtak",
2391
- "petak",
2392
- "subota"
2393
- ]
2394
- }
2395
- },
2396
- "quarters": {
2397
- "format": {
2398
- "abbreviated": [
2399
- "1kv",
2400
- "2kv",
2401
- "3kv",
2402
- "4kv"
2403
- ],
2404
- "narrow": [
2405
- "1.",
2406
- "2.",
2407
- "3.",
2408
- "4."
2409
- ],
2410
- "wide": [
2411
- "1. kvartal",
2412
- "2. kvartal",
2413
- "3. kvartal",
2414
- "4. kvartal"
2415
- ]
2416
- },
2417
- "stand-alone": {
2418
- "abbreviated": [
2419
- "1. kv.",
2420
- "2. kv.",
2421
- "3. kv.",
2422
- "4. kv."
2423
- ],
2424
- "narrow": [
2425
- "1.",
2426
- "2.",
2427
- "3.",
2428
- "4."
2429
- ],
2430
- "wide": [
2431
- "1. kvartal",
2432
- "2. kvartal",
2433
- "3. kvartal",
2434
- "4. kvartal"
2435
- ]
2436
- }
2437
- },
2438
- "dayPeriods": {
2439
- "format": {
2440
- "abbreviated": [
2441
- "AM",
2442
- "PM"
2443
- ],
2444
- "narrow": [
2445
- "AM",
2446
- "PM"
2447
- ],
2448
- "wide": [
2449
- "AM",
2450
- "PM"
2451
- ]
2452
- },
2453
- "stand-alone": {
2454
- "abbreviated": [
2455
- "AM",
2456
- "PM"
2457
- ],
2458
- "narrow": [
2459
- "AM",
2460
- "PM"
2461
- ],
2462
- "wide": [
2463
- "AM",
2464
- "PM"
2465
- ]
2466
- }
2467
- },
2468
- "era-wide": {
2469
- "232": "Meiji",
2470
- "233": "Taishō",
2471
- "234": "Shōwa",
2472
- "235": "Heisei",
2473
- "236": "Reiwa"
2474
- },
2475
- "era-abbreviated": {
2476
- "232": "Meiji",
2477
- "233": "Taishō",
2478
- "234": "Shōwa",
2479
- "235": "Heisei",
2480
- "236": "Reiwa"
2481
- },
2482
- "era-narrow": {
2483
- "232": "M",
2484
- "233": "T",
2485
- "234": "S",
2486
- "235": "H",
2487
- "236": "R"
2488
- }
2489
- },
2490
- "ca-persian": {
2491
- "dateFormats": {
2492
- "full": "EEEE, d. MMMM y. G",
2493
- "long": "d. MMMM y. G",
2494
- "medium": "d. MMM y. G",
2495
- "short": "dd. MM. y. GGGGG"
2496
- },
2497
- "timeFormats": {
2498
- "full": "HH:mm:ss (zzzz)",
2499
- "long": "HH:mm:ss z",
2500
- "medium": "HH:mm:ss",
2501
- "short": "HH:mm"
2502
- },
2503
- "dateTimeFormats": {
2504
- "full": "{1} 'u' {0}",
2505
- "long": "{1} 'u' {0}",
2506
- "medium": "{1} {0}",
2507
- "short": "{1} {0}",
2508
- "availableFormats": {
2509
- "Bh": "h B",
2510
- "Bhm": "h:mm B",
2511
- "Bhms": "h:mm:ss B",
2512
- "d": "d.",
2513
- "E": "ccc",
2514
- "EBhm": "E h:mm B",
2515
- "EBhms": "E h:mm:ss B",
2516
- "Ed": "E, d.",
2517
- "Ehm": "E h:mm a",
2518
- "EHm": "E HH:mm",
2519
- "Ehms": "E h:mm:ss a",
2520
- "EHms": "E HH:mm:ss",
2521
- "Gy": "y. G",
2522
- "GyMMM": "LLL y. G",
2523
- "GyMMMd": "d. MMM y. G",
2524
- "GyMMMEd": "E, d. MMM y. G",
2525
- "h": "hh a",
2526
- "H": "HH",
2527
- "hm": "hh:mm a",
2528
- "Hm": "HH:mm",
2529
- "hms": "hh:mm:ss a",
2530
- "Hms": "HH:mm:ss",
2531
- "M": "L.",
2532
- "Md": "dd. MM.",
2533
- "MEd": "E, dd. MM.",
2534
- "MMM": "LLL",
2535
- "MMMd": "d. MMM",
2536
- "MMMEd": "E, d. MMM",
2537
- "MMMMd": "d. MMMM",
2538
- "MMMMEd": "E, d. MMMM",
2539
- "ms": "mm:ss",
2540
- "y": "y. G",
2541
- "yyyy": "y. G",
2542
- "yyyyM": "MM. y. GGGGG",
2543
- "yyyyMd": "dd. MM. y. GGGGG",
2544
- "yyyyMEd": "E, dd. MM. y. GGGGG",
2545
- "yyyyMMM": "LLL y. G",
2546
- "yyyyMMMd": "d. MMM y. G",
2547
- "yyyyMMMEd": "E, d. MMM y. G",
2548
- "yyyyMMMM": "LLLL y. G",
2549
- "yyyyQQQ": "QQQ y. G",
2550
- "yyyyQQQQ": "QQQQ y. G"
2551
- },
2552
- "appendItems": {
2553
- "Day": "{0} ({2}: {1})",
2554
- "Day-Of-Week": "{0} {1}",
2555
- "Era": "{1} {0}",
2556
- "Hour": "{0} ({2}: {1})",
2557
- "Minute": "{0} ({2}: {1})",
2558
- "Month": "{0} ({2}: {1})",
2559
- "Quarter": "{0} ({2}: {1})",
2560
- "Second": "{0} ({2}: {1})",
2561
- "Timezone": "{0} {1}",
2562
- "Week": "{0} ({2}: {1})",
2563
- "Year": "{1} {0}"
2564
- },
2565
- "intervalFormats": {
2566
- "intervalFormatFallback": "{0} – {1}",
2567
- "Bh": {
2568
- "B": "h B – h B",
2569
- "h": "h – h B"
2570
- },
2571
- "Bhm": {
2572
- "B": "h:mm B – h:mm B",
2573
- "h": "h:mm – h:mm B",
2574
- "m": "h:mm – h:mm B"
2575
- },
2576
- "d": {
2577
- "d": "dd. – dd."
2578
- },
2579
- "Gy": {
2580
- "G": "y. G – y. G",
2581
- "y": "y. – y. G"
2582
- },
2583
- "GyM": {
2584
- "G": "M. y. GGGGG – M. y. GGGGG",
2585
- "M": "M. y. – M. y. GGGGG",
2586
- "y": "M. y. – M. y. GGGGG"
2587
- },
2588
- "GyMd": {
2589
- "d": "d. M. y. – d. M. y. GGGGG",
2590
- "G": "d. M. y. – d. M. y. GGGGG",
2591
- "M": "d. M. y. – d. M. y. GGGGG",
2592
- "y": "d. M. y. – d. M. y. GGGGG"
2593
- },
2594
- "GyMEd": {
2595
- "d": "E, d. M. y. – E, d. M. y. GGGGG",
2596
- "G": "E, d. M. y. GGGGG – E, d. M. y. GGGGG",
2597
- "M": "E, d. M. y. – E, d. M. y. GGGGG",
2598
- "y": "E, d. M. y. – E, d. M. y. GGGGG"
2599
- },
2600
- "GyMMM": {
2601
- "G": "MMM y. G – MMM y. G",
2602
- "M": "MMM y. G – MMM y. G",
2603
- "y": "MMM y. – MMM y. G"
2604
- },
2605
- "GyMMMd": {
2606
- "d": "d. – d. MMM y. G",
2607
- "G": "d. MMM y. G – d. MMM y. G",
2608
- "M": "d. MMM – d. MMM y. G",
2609
- "y": "d. MMM y. – d. MMM y. G"
2610
- },
2611
- "GyMMMEd": {
2612
- "d": "E, d. MMM – E, d. MMM y. G",
2613
- "G": "E, d. MMM y. G – E, d. MMM y. G",
2614
- "M": "E, d. MMM – E, d. MMM y. G",
2615
- "y": "E, d. MMM y. – E, d. MMM y. G"
2616
- },
2617
- "h": {
2618
- "a": "h a – h a",
2619
- "h": "h – h'h' a"
2620
- },
2621
- "H": {
2622
- "H": "HH – HH'h'"
2623
- },
2624
- "hm": {
2625
- "a": "h:mm a – h:mm a",
2626
- "h": "h:mm–h:mm a",
2627
- "m": "h:mm–h:mm a"
2628
- },
2629
- "Hm": {
2630
- "H": "HH:mm–HH:mm",
2631
- "m": "HH:mm–HH:mm"
2632
- },
2633
- "hmv": {
2634
- "a": "h:mm a – h:mm a v",
2635
- "h": "h:mm–h:mm a v",
2636
- "m": "h:mm–h:mm a v"
2637
- },
2638
- "Hmv": {
2639
- "H": "HH:mm–HH:mm v",
2640
- "m": "HH:mm–HH:mm v"
2641
- },
2642
- "hv": {
2643
- "a": "h a – h a v",
2644
- "h": "h – h 'h' a v"
2645
- },
2646
- "Hv": {
2647
- "H": "HH – HH 'h' v"
2648
- },
2649
- "M": {
2650
- "M": "MM. – MM."
2651
- },
2652
- "Md": {
2653
- "d": "dd. MM. – dd. MM.",
2654
- "M": "dd. MM. – dd. MM."
2655
- },
2656
- "MEd": {
2657
- "d": "E, dd. MM. – E, dd. MM.",
2658
- "M": "E, dd. MM. – E, dd. MM."
2659
- },
2660
- "MMM": {
2661
- "M": "LLL – LLL"
2662
- },
2663
- "MMMd": {
2664
- "d": "d. – d. MMM",
2665
- "M": "dd. MMM – dd. MMM"
2666
- },
2667
- "MMMEd": {
2668
- "d": "E, dd. – E, dd. MMM",
2669
- "M": "E, dd. MMM – E, dd. MMM"
2670
- },
2671
- "y": {
2672
- "y": "y. – y. G"
2673
- },
2674
- "yM": {
2675
- "M": "MM. y. – MM. y. G",
2676
- "y": "MM. y. – MM. y. G"
2677
- },
2678
- "yMd": {
2679
- "d": "dd. MM. y. – dd. MM. y. G",
2680
- "M": "dd. MM. y. – dd. MM. y. G",
2681
- "y": "dd. MM. y. – dd. MM. y. G"
2682
- },
2683
- "yMEd": {
2684
- "d": "E, dd. MM. y. – E, dd. MM. y. G",
2685
- "M": "E, dd. MM. y. – E, dd. MM. y. G",
2686
- "y": "E, dd. MM. y. – E, dd. MM. y. G"
2687
- },
2688
- "yMMM": {
2689
- "M": "LLL – LLL y. G",
2690
- "y": "LLL y. – LLL y. G"
2691
- },
2692
- "yMMMd": {
2693
- "d": "dd. – dd. MMM y. G",
2694
- "M": "dd. MMM – dd. MMM y. G",
2695
- "y": "dd. MMM y. – dd. MMM y. G"
2696
- },
2697
- "yMMMEd": {
2698
- "d": "E, dd. – E, dd. MMM y. G",
2699
- "M": "E, dd. MMM – E, dd. MMM y. G",
2700
- "y": "E, dd. MMM y. – E, dd. MMM y. G"
2701
- },
2702
- "yMMMM": {
2703
- "M": "LLLL – LLLL y. G",
2704
- "y": "LLLL y. – LLLL y. G"
2705
- }
2706
- }
2707
- },
2708
- "months": {
2709
- "format": {
2710
- "abbreviated": [
2711
- "Farvardin",
2712
- "Ordibehesht",
2713
- "Khordad",
2714
- "Tir",
2715
- "Mordad",
2716
- "Shahrivar",
2717
- "Mehr",
2718
- "Aban",
2719
- "Azar",
2720
- "Dey",
2721
- "Bahman",
2722
- "Esfand"
2723
- ],
2724
- "narrow": [
2725
- "1.",
2726
- "2.",
2727
- "3.",
2728
- "4.",
2729
- "5.",
2730
- "6.",
2731
- "7.",
2732
- "8.",
2733
- "9.",
2734
- "10.",
2735
- "11.",
2736
- "12."
2737
- ],
2738
- "wide": [
2739
- "Farvardin",
2740
- "Ordibehesht",
2741
- "Khordad",
2742
- "Tir",
2743
- "Mordad",
2744
- "Shahrivar",
2745
- "Mehr",
2746
- "Aban",
2747
- "Azar",
2748
- "Dey",
2749
- "Bahman",
2750
- "Esfand"
2751
- ]
2752
- },
2753
- "stand-alone": {
2754
- "abbreviated": [
2755
- "Farvardin",
2756
- "Ordibehesht",
2757
- "Khordad",
2758
- "Tir",
2759
- "Mordad",
2760
- "Shahrivar",
2761
- "Mehr",
2762
- "Aban",
2763
- "Azar",
2764
- "Dey",
2765
- "Bahman",
2766
- "Esfand"
2767
- ],
2768
- "narrow": [
2769
- "1.",
2770
- "2.",
2771
- "3.",
2772
- "4.",
2773
- "5.",
2774
- "6.",
2775
- "7.",
2776
- "8.",
2777
- "9.",
2778
- "10.",
2779
- "11.",
2780
- "12."
2781
- ],
2782
- "wide": [
2783
- "Farvardin",
2784
- "Ordibehesht",
2785
- "Khordad",
2786
- "Tir",
2787
- "Mordad",
2788
- "Shahrivar",
2789
- "Mehr",
2790
- "Aban",
2791
- "Azar",
2792
- "Dey",
2793
- "Bahman",
2794
- "Esfand"
2795
- ]
2796
- }
2797
- },
2798
- "days": {
2799
- "format": {
2800
- "abbreviated": [
2801
- "ned",
2802
- "pon",
2803
- "uto",
2804
- "sri",
2805
- "čet",
2806
- "pet",
2807
- "sub"
2808
- ],
2809
- "narrow": [
2810
- "N",
2811
- "P",
2812
- "U",
2813
- "S",
2814
- "Č",
2815
- "P",
2816
- "S"
2817
- ],
2818
- "short": [
2819
- "ned",
2820
- "pon",
2821
- "uto",
2822
- "sri",
2823
- "čet",
2824
- "pet",
2825
- "sub"
2826
- ],
2827
- "wide": [
2828
- "nedjelja",
2829
- "ponedjeljak",
2830
- "utorak",
2831
- "srijeda",
2832
- "četvrtak",
2833
- "petak",
2834
- "subota"
2835
- ]
2836
- },
2837
- "stand-alone": {
2838
- "abbreviated": [
2839
- "ned",
2840
- "pon",
2841
- "uto",
2842
- "sri",
2843
- "čet",
2844
- "pet",
2845
- "sub"
2846
- ],
2847
- "narrow": [
2848
- "n",
2849
- "p",
2850
- "u",
2851
- "s",
2852
- "č",
2853
- "p",
2854
- "s"
2855
- ],
2856
- "short": [
2857
- "ned",
2858
- "pon",
2859
- "uto",
2860
- "sri",
2861
- "čet",
2862
- "pet",
2863
- "sub"
2864
- ],
2865
- "wide": [
2866
- "nedjelja",
2867
- "ponedjeljak",
2868
- "utorak",
2869
- "srijeda",
2870
- "četvrtak",
2871
- "petak",
2872
- "subota"
2873
- ]
2874
- }
2875
- },
2876
- "quarters": {
2877
- "format": {
2878
- "abbreviated": [
2879
- "1kv",
2880
- "2kv",
2881
- "3kv",
2882
- "4kv"
2883
- ],
2884
- "narrow": [
2885
- "1.",
2886
- "2.",
2887
- "3.",
2888
- "4."
2889
- ],
2890
- "wide": [
2891
- "1. kvartal",
2892
- "2. kvartal",
2893
- "3. kvartal",
2894
- "4. kvartal"
2895
- ]
2896
- },
2897
- "stand-alone": {
2898
- "abbreviated": [
2899
- "1. kv.",
2900
- "2. kv.",
2901
- "3. kv.",
2902
- "4. kv."
2903
- ],
2904
- "narrow": [
2905
- "1.",
2906
- "2.",
2907
- "3.",
2908
- "4."
2909
- ],
2910
- "wide": [
2911
- "1. kvartal",
2912
- "2. kvartal",
2913
- "3. kvartal",
2914
- "4. kvartal"
2915
- ]
2916
- }
2917
- },
2918
- "dayPeriods": {
2919
- "format": {
2920
- "abbreviated": [
2921
- "AM",
2922
- "PM"
2923
- ],
2924
- "narrow": [
2925
- "AM",
2926
- "PM"
2927
- ],
2928
- "wide": [
2929
- "AM",
2930
- "PM"
2931
- ]
2932
- },
2933
- "stand-alone": {
2934
- "abbreviated": [
2935
- "AM",
2936
- "PM"
2937
- ],
2938
- "narrow": [
2939
- "AM",
2940
- "PM"
2941
- ],
2942
- "wide": [
2943
- "AM",
2944
- "PM"
2945
- ]
2946
- }
2947
- },
2948
- "era-wide": {
2949
- "0": "AP"
2950
- },
2951
- "era-abbreviated": {
2952
- "0": "AP"
2953
- },
2954
- "era-narrow": {
2955
- "0": "AP"
2956
- }
2957
- },
2958
- "ca-buddhist": {
2959
- "dateFormats": {
2960
- "full": "EEEE, d. MMMM y. G",
2961
- "long": "d. MMMM y. G",
2962
- "medium": "d. MMM y. G",
2963
- "short": "dd. MM. y. GGGGG"
2964
- },
2965
- "timeFormats": {
2966
- "full": "HH:mm:ss (zzzz)",
2967
- "long": "HH:mm:ss z",
2968
- "medium": "HH:mm:ss",
2969
- "short": "HH:mm"
2970
- },
2971
- "dateTimeFormats": {
2972
- "full": "{1} 'u' {0}",
2973
- "long": "{1} 'u' {0}",
2974
- "medium": "{1} {0}",
2975
- "short": "{1} {0}",
2976
- "availableFormats": {
2977
- "Bh": "h B",
2978
- "Bhm": "h:mm B",
2979
- "Bhms": "h:mm:ss B",
2980
- "d": "d.",
2981
- "E": "ccc",
2982
- "EBhm": "E h:mm B",
2983
- "EBhms": "E h:mm:ss B",
2984
- "Ed": "E, d.",
2985
- "Ehm": "E h:mm a",
2986
- "EHm": "E HH:mm",
2987
- "Ehms": "E h:mm:ss a",
2988
- "EHms": "E HH:mm:ss",
2989
- "Gy": "y. G",
2990
- "GyMMM": "LLL y. G",
2991
- "GyMMMd": "d. MMM y. G",
2992
- "GyMMMEd": "E, d. MMM y. G",
2993
- "h": "hh a",
2994
- "H": "HH",
2995
- "hm": "hh:mm a",
2996
- "Hm": "HH:mm",
2997
- "hms": "hh:mm:ss a",
2998
- "Hms": "HH:mm:ss",
2999
- "M": "L.",
3000
- "Md": "dd. MM.",
3001
- "MEd": "E, dd. MM.",
3002
- "MMM": "LLL",
3003
- "MMMd": "d. MMM",
3004
- "MMMEd": "E, d. MMM",
3005
- "MMMMd": "d. MMMM",
3006
- "MMMMEd": "E, d. MMMM",
3007
- "ms": "mm:ss",
3008
- "y": "y. G",
3009
- "yyyy": "y. G",
3010
- "yyyyM": "MM. y. GGGGG",
3011
- "yyyyMd": "dd. MM. y. GGGGG",
3012
- "yyyyMEd": "E, dd. MM. y. GGGGG",
3013
- "yyyyMMM": "LLL y. G",
3014
- "yyyyMMMd": "d. MMM y. G",
3015
- "yyyyMMMEd": "E, d. MMM y. G",
3016
- "yyyyMMMM": "LLLL y. G",
3017
- "yyyyQQQ": "QQQ y. G",
3018
- "yyyyQQQQ": "QQQQ y. G"
3019
- },
3020
- "appendItems": {
3021
- "Day": "{0} ({2}: {1})",
3022
- "Day-Of-Week": "{0} {1}",
3023
- "Era": "{1} {0}",
3024
- "Hour": "{0} ({2}: {1})",
3025
- "Minute": "{0} ({2}: {1})",
3026
- "Month": "{0} ({2}: {1})",
3027
- "Quarter": "{0} ({2}: {1})",
3028
- "Second": "{0} ({2}: {1})",
3029
- "Timezone": "{0} {1}",
3030
- "Week": "{0} ({2}: {1})",
3031
- "Year": "{1} {0}"
3032
- },
3033
- "intervalFormats": {
3034
- "intervalFormatFallback": "{0} – {1}",
3035
- "Bh": {
3036
- "B": "h B – h B",
3037
- "h": "h – h B"
3038
- },
3039
- "Bhm": {
3040
- "B": "h:mm B – h:mm B",
3041
- "h": "h:mm – h:mm B",
3042
- "m": "h:mm – h:mm B"
3043
- },
3044
- "d": {
3045
- "d": "dd. – dd."
3046
- },
3047
- "Gy": {
3048
- "G": "y. G – y. G",
3049
- "y": "y. – y. G"
3050
- },
3051
- "GyM": {
3052
- "G": "M. y. GGGGG – M. y. GGGGG",
3053
- "M": "M. y. – M. y. GGGGG",
3054
- "y": "M. y. – M. y. GGGGG"
3055
- },
3056
- "GyMd": {
3057
- "d": "d. M. y. – d. M. y. GGGGG",
3058
- "G": "d. M. y. – d. M. y. GGGGG",
3059
- "M": "d. M. y. – d. M. y. GGGGG",
3060
- "y": "d. M. y. – d. M. y. GGGGG"
3061
- },
3062
- "GyMEd": {
3063
- "d": "E, d. M. y. – E, d. M. y. GGGGG",
3064
- "G": "E, d. M. y. GGGGG – E, d. M. y. GGGGG",
3065
- "M": "E, d. M. y. – E, d. M. y. GGGGG",
3066
- "y": "E, d. M. y. – E, d. M. y. GGGGG"
3067
- },
3068
- "GyMMM": {
3069
- "G": "MMM y. G – MMM y. G",
3070
- "M": "MMM y. G – MMM y. G",
3071
- "y": "MMM y. – MMM y. G"
3072
- },
3073
- "GyMMMd": {
3074
- "d": "d. – d. MMM y. G",
3075
- "G": "d. MMM y. G – d. MMM y. G",
3076
- "M": "d. MMM – d. MMM y. G",
3077
- "y": "d. MMM y. – d. MMM y. G"
3078
- },
3079
- "GyMMMEd": {
3080
- "d": "E, d. MMM – E, d. MMM y. G",
3081
- "G": "E, d. MMM y. G – E, d. MMM y. G",
3082
- "M": "E, d. MMM – E, d. MMM y. G",
3083
- "y": "E, d. MMM y. – E, d. MMM y. G"
3084
- },
3085
- "h": {
3086
- "a": "h a – h a",
3087
- "h": "h – h'h' a"
3088
- },
3089
- "H": {
3090
- "H": "HH – HH'h'"
3091
- },
3092
- "hm": {
3093
- "a": "h:mm a – h:mm a",
3094
- "h": "h:mm–h:mm a",
3095
- "m": "h:mm–h:mm a"
3096
- },
3097
- "Hm": {
3098
- "H": "HH:mm–HH:mm",
3099
- "m": "HH:mm–HH:mm"
3100
- },
3101
- "hmv": {
3102
- "a": "h:mm a – h:mm a v",
3103
- "h": "h:mm–h:mm a v",
3104
- "m": "h:mm–h:mm a v"
3105
- },
3106
- "Hmv": {
3107
- "H": "HH:mm–HH:mm v",
3108
- "m": "HH:mm–HH:mm v"
3109
- },
3110
- "hv": {
3111
- "a": "h a – h a v",
3112
- "h": "h – h 'h' a v"
3113
- },
3114
- "Hv": {
3115
- "H": "HH – HH 'h' v"
3116
- },
3117
- "M": {
3118
- "M": "MM. – MM."
3119
- },
3120
- "Md": {
3121
- "d": "dd. MM. – dd. MM.",
3122
- "M": "dd. MM. – dd. MM."
3123
- },
3124
- "MEd": {
3125
- "d": "E, dd. MM. – E, dd. MM.",
3126
- "M": "E, dd. MM. – E, dd. MM."
3127
- },
3128
- "MMM": {
3129
- "M": "LLL – LLL"
3130
- },
3131
- "MMMd": {
3132
- "d": "d. – d. MMM",
3133
- "M": "dd. MMM – dd. MMM"
3134
- },
3135
- "MMMEd": {
3136
- "d": "E, dd. – E, dd. MMM",
3137
- "M": "E, dd. MMM – E, dd. MMM"
3138
- },
3139
- "y": {
3140
- "y": "y. – y. G"
3141
- },
3142
- "yM": {
3143
- "M": "MM. y. – MM. y. G",
3144
- "y": "MM. y. – MM. y. G"
3145
- },
3146
- "yMd": {
3147
- "d": "dd. MM. y. – dd. MM. y. G",
3148
- "M": "dd. MM. y. – dd. MM. y. G",
3149
- "y": "dd. MM. y. – dd. MM. y. G"
3150
- },
3151
- "yMEd": {
3152
- "d": "E, dd. MM. y. – E, dd. MM. y. G",
3153
- "M": "E, dd. MM. y. – E, dd. MM. y. G",
3154
- "y": "E, dd. MM. y. – E, dd. MM. y. G"
3155
- },
3156
- "yMMM": {
3157
- "M": "LLL – LLL y. G",
3158
- "y": "LLL y. – LLL y. G"
3159
- },
3160
- "yMMMd": {
3161
- "d": "dd. – dd. MMM y. G",
3162
- "M": "dd. MMM – dd. MMM y. G",
3163
- "y": "dd. MMM y. – dd. MMM y. G"
3164
- },
3165
- "yMMMEd": {
3166
- "d": "E, dd. – E, dd. MMM y. G",
3167
- "M": "E, dd. MMM – E, dd. MMM y. G",
3168
- "y": "E, dd. MMM y. – E, dd. MMM y. G"
3169
- },
3170
- "yMMMM": {
3171
- "M": "LLLL – LLLL y. G",
3172
- "y": "LLLL y. – LLLL y. G"
3173
- }
3174
- }
3175
- },
3176
- "months": {
3177
- "format": {
3178
- "abbreviated": [
3179
- "sij",
3180
- "velj",
3181
- "ožu",
3182
- "tra",
3183
- "svi",
3184
- "lip",
3185
- "srp",
3186
- "kol",
3187
- "ruj",
3188
- "lis",
3189
- "stu",
3190
- "pro"
3191
- ],
3192
- "narrow": [
3193
- "1.",
3194
- "2.",
3195
- "3.",
3196
- "4.",
3197
- "5.",
3198
- "6.",
3199
- "7.",
3200
- "8.",
3201
- "9.",
3202
- "10.",
3203
- "11.",
3204
- "12."
3205
- ],
3206
- "wide": [
3207
- "siječnja",
3208
- "veljače",
3209
- "ožujka",
3210
- "travnja",
3211
- "svibnja",
3212
- "lipnja",
3213
- "srpnja",
3214
- "kolovoza",
3215
- "rujna",
3216
- "listopada",
3217
- "studenoga",
3218
- "prosinca"
3219
- ]
3220
- },
3221
- "stand-alone": {
3222
- "abbreviated": [
3223
- "sij",
3224
- "velj",
3225
- "ožu",
3226
- "tra",
3227
- "svi",
3228
- "lip",
3229
- "srp",
3230
- "kol",
3231
- "ruj",
3232
- "lis",
3233
- "stu",
3234
- "pro"
3235
- ],
3236
- "narrow": [
3237
- "1.",
3238
- "2.",
3239
- "3.",
3240
- "4.",
3241
- "5.",
3242
- "6.",
3243
- "7.",
3244
- "8.",
3245
- "9.",
3246
- "10.",
3247
- "11.",
3248
- "12."
3249
- ],
3250
- "wide": [
3251
- "siječanj",
3252
- "veljača",
3253
- "ožujak",
3254
- "travanj",
3255
- "svibanj",
3256
- "lipanj",
3257
- "srpanj",
3258
- "kolovoz",
3259
- "rujan",
3260
- "listopad",
3261
- "studeni",
3262
- "prosinac"
3263
- ]
3264
- }
3265
- },
3266
- "days": {
3267
- "format": {
3268
- "abbreviated": [
3269
- "ned",
3270
- "pon",
3271
- "uto",
3272
- "sri",
3273
- "čet",
3274
- "pet",
3275
- "sub"
3276
- ],
3277
- "narrow": [
3278
- "N",
3279
- "P",
3280
- "U",
3281
- "S",
3282
- "Č",
3283
- "P",
3284
- "S"
3285
- ],
3286
- "short": [
3287
- "ned",
3288
- "pon",
3289
- "uto",
3290
- "sri",
3291
- "čet",
3292
- "pet",
3293
- "sub"
3294
- ],
3295
- "wide": [
3296
- "nedjelja",
3297
- "ponedjeljak",
3298
- "utorak",
3299
- "srijeda",
3300
- "četvrtak",
3301
- "petak",
3302
- "subota"
3303
- ]
3304
- },
3305
- "stand-alone": {
3306
- "abbreviated": [
3307
- "ned",
3308
- "pon",
3309
- "uto",
3310
- "sri",
3311
- "čet",
3312
- "pet",
3313
- "sub"
3314
- ],
3315
- "narrow": [
3316
- "n",
3317
- "p",
3318
- "u",
3319
- "s",
3320
- "č",
3321
- "p",
3322
- "s"
3323
- ],
3324
- "short": [
3325
- "ned",
3326
- "pon",
3327
- "uto",
3328
- "sri",
3329
- "čet",
3330
- "pet",
3331
- "sub"
3332
- ],
3333
- "wide": [
3334
- "nedjelja",
3335
- "ponedjeljak",
3336
- "utorak",
3337
- "srijeda",
3338
- "četvrtak",
3339
- "petak",
3340
- "subota"
3341
- ]
3342
- }
3343
- },
3344
- "quarters": {
3345
- "format": {
3346
- "abbreviated": [
3347
- "1kv",
3348
- "2kv",
3349
- "3kv",
3350
- "4kv"
3351
- ],
3352
- "narrow": [
3353
- "1.",
3354
- "2.",
3355
- "3.",
3356
- "4."
3357
- ],
3358
- "wide": [
3359
- "1. kvartal",
3360
- "2. kvartal",
3361
- "3. kvartal",
3362
- "4. kvartal"
3363
- ]
3364
- },
3365
- "stand-alone": {
3366
- "abbreviated": [
3367
- "1. kv.",
3368
- "2. kv.",
3369
- "3. kv.",
3370
- "4. kv."
3371
- ],
3372
- "narrow": [
3373
- "1.",
3374
- "2.",
3375
- "3.",
3376
- "4."
3377
- ],
3378
- "wide": [
3379
- "1. kvartal",
3380
- "2. kvartal",
3381
- "3. kvartal",
3382
- "4. kvartal"
3383
- ]
3384
- }
3385
- },
3386
- "dayPeriods": {
3387
- "format": {
3388
- "abbreviated": [
3389
- "AM",
3390
- "PM"
3391
- ],
3392
- "narrow": [
3393
- "AM",
3394
- "PM"
3395
- ],
3396
- "wide": [
3397
- "AM",
3398
- "PM"
3399
- ]
3400
- },
3401
- "stand-alone": {
3402
- "abbreviated": [
3403
- "AM",
3404
- "PM"
3405
- ],
3406
- "narrow": [
3407
- "AM",
3408
- "PM"
3409
- ],
3410
- "wide": [
3411
- "AM",
3412
- "PM"
3413
- ]
3414
- }
3415
- },
3416
- "era-wide": {
3417
- "0": "BE"
3418
- },
3419
- "era-abbreviated": {
3420
- "0": "BE"
3421
- },
3422
- "era-narrow": {
3423
- "0": "BE"
3424
- }
3425
- },
3426
- "dateFields": {
3427
- "era": {
3428
- "displayName": "era"
3429
- },
3430
- "year-wide": {
3431
- "displayName": "godina",
3432
- "relative-type--1": "prošle godine",
3433
- "relative-type-0": "ove godine",
3434
- "relative-type-1": "sljedeće godine",
3435
- "relativeTime-type-future": {
3436
- "relativeTimePattern-count-one": "za {0} godinu",
3437
- "relativeTimePattern-count-few": "za {0} godine",
3438
- "relativeTimePattern-count-other": "za {0} godina"
3439
- },
3440
- "relativeTime-type-past": {
3441
- "relativeTimePattern-count-one": "prije {0} godinu",
3442
- "relativeTimePattern-count-few": "prije {0} godine",
3443
- "relativeTimePattern-count-other": "prije {0} godina"
3444
- }
3445
- },
3446
- "year-short": {
3447
- "displayName": "g.",
3448
- "relative-type--1": "prošle god.",
3449
- "relative-type-0": "ove god.",
3450
- "relative-type-1": "sljedeće god.",
3451
- "relativeTime-type-future": {
3452
- "relativeTimePattern-count-one": "za {0} g.",
3453
- "relativeTimePattern-count-few": "za {0} g.",
3454
- "relativeTimePattern-count-other": "za {0} g."
3455
- },
3456
- "relativeTime-type-past": {
3457
- "relativeTimePattern-count-one": "prije {0} g.",
3458
- "relativeTimePattern-count-few": "prije {0} g.",
3459
- "relativeTimePattern-count-other": "prije {0} g."
3460
- }
3461
- },
3462
- "year-narrow": {
3463
- "displayName": "g.",
3464
- "relative-type--1": "prošle g.",
3465
- "relative-type-0": "ove g.",
3466
- "relative-type-1": "sljedeće g.",
3467
- "relativeTime-type-future": {
3468
- "relativeTimePattern-count-one": "za {0} g.",
3469
- "relativeTimePattern-count-few": "za {0} g.",
3470
- "relativeTimePattern-count-other": "za {0} g."
3471
- },
3472
- "relativeTime-type-past": {
3473
- "relativeTimePattern-count-one": "prije {0} g.",
3474
- "relativeTimePattern-count-few": "prije {0} g.",
3475
- "relativeTimePattern-count-other": "prije {0} g."
3476
- }
3477
- },
3478
- "quarter-wide": {
3479
- "displayName": "kvartal",
3480
- "relative-type--1": "prošli kvartal",
3481
- "relative-type-0": "ovaj kvartal",
3482
- "relative-type-1": "sljedeći kvartal",
3483
- "relativeTime-type-future": {
3484
- "relativeTimePattern-count-one": "za {0} kvartal",
3485
- "relativeTimePattern-count-few": "za {0} kvartala",
3486
- "relativeTimePattern-count-other": "za {0} kvartala"
3487
- },
3488
- "relativeTime-type-past": {
3489
- "relativeTimePattern-count-one": "prije {0} kvartal",
3490
- "relativeTimePattern-count-few": "prije {0} kvartala",
3491
- "relativeTimePattern-count-other": "prije {0} kvartala"
3492
- }
3493
- },
3494
- "quarter-short": {
3495
- "displayName": "kv.",
3496
- "relative-type--1": "prošli kv.",
3497
- "relative-type-0": "ovaj kv.",
3498
- "relative-type-1": "sljedeći kv.",
3499
- "relativeTime-type-future": {
3500
- "relativeTimePattern-count-one": "za {0} kv.",
3501
- "relativeTimePattern-count-few": "za {0} kv.",
3502
- "relativeTimePattern-count-other": "za {0} kv."
3503
- },
3504
- "relativeTime-type-past": {
3505
- "relativeTimePattern-count-one": "prije {0} kv.",
3506
- "relativeTimePattern-count-few": "prije {0} kv.",
3507
- "relativeTimePattern-count-other": "prije {0} kv."
3508
- }
3509
- },
3510
- "quarter-narrow": {
3511
- "displayName": "kv.",
3512
- "relative-type--1": "prošli kv.",
3513
- "relative-type-0": "ovaj kv.",
3514
- "relative-type-1": "sljedeći kv.",
3515
- "relativeTime-type-future": {
3516
- "relativeTimePattern-count-one": "za {0} kv.",
3517
- "relativeTimePattern-count-few": "za {0} kv.",
3518
- "relativeTimePattern-count-other": "za {0} kv."
3519
- },
3520
- "relativeTime-type-past": {
3521
- "relativeTimePattern-count-one": "prije {0} kv.",
3522
- "relativeTimePattern-count-few": "prije {0} kv.",
3523
- "relativeTimePattern-count-other": "prije {0} kv."
3524
- }
3525
- },
3526
- "month-wide": {
3527
- "displayName": "mjesec",
3528
- "relative-type--1": "prošli mjesec",
3529
- "relative-type-0": "ovaj mjesec",
3530
- "relative-type-1": "sljedeći mjesec",
3531
- "relativeTime-type-future": {
3532
- "relativeTimePattern-count-one": "za {0} mjesec",
3533
- "relativeTimePattern-count-few": "za {0} mjeseca",
3534
- "relativeTimePattern-count-other": "za {0} mjeseci"
3535
- },
3536
- "relativeTime-type-past": {
3537
- "relativeTimePattern-count-one": "prije {0} mjesec",
3538
- "relativeTimePattern-count-few": "prije {0} mjeseca",
3539
- "relativeTimePattern-count-other": "prije {0} mjeseci"
3540
- }
3541
- },
3542
- "month-short": {
3543
- "displayName": "mj.",
3544
- "relative-type--1": "prošli mj.",
3545
- "relative-type-0": "ovaj mj.",
3546
- "relative-type-1": "sljedeći mj.",
3547
- "relativeTime-type-future": {
3548
- "relativeTimePattern-count-one": "za {0} mj.",
3549
- "relativeTimePattern-count-few": "za {0} mj.",
3550
- "relativeTimePattern-count-other": "za {0} mj."
3551
- },
3552
- "relativeTime-type-past": {
3553
- "relativeTimePattern-count-one": "prije {0} mj.",
3554
- "relativeTimePattern-count-few": "prije {0} mj.",
3555
- "relativeTimePattern-count-other": "prije {0} mj."
3556
- }
3557
- },
3558
- "month-narrow": {
3559
- "displayName": "m.",
3560
- "relative-type--1": "prošli mj.",
3561
- "relative-type-0": "ovaj mj.",
3562
- "relative-type-1": "sljedeći mj.",
3563
- "relativeTime-type-future": {
3564
- "relativeTimePattern-count-one": "za {0} mj.",
3565
- "relativeTimePattern-count-few": "za {0} mj.",
3566
- "relativeTimePattern-count-other": "za {0} mj."
3567
- },
3568
- "relativeTime-type-past": {
3569
- "relativeTimePattern-count-one": "prije {0} mj.",
3570
- "relativeTimePattern-count-few": "prije {0} mj.",
3571
- "relativeTimePattern-count-other": "prije {0} mj."
3572
- }
3573
- },
3574
- "week-wide": {
3575
- "displayName": "tjedan",
3576
- "relative-type--1": "prošli tjedan",
3577
- "relative-type-0": "ovaj tjedan",
3578
- "relative-type-1": "sljedeći tjedan",
3579
- "relativeTime-type-future": {
3580
- "relativeTimePattern-count-one": "za {0} tjedan",
3581
- "relativeTimePattern-count-few": "za {0} tjedna",
3582
- "relativeTimePattern-count-other": "za {0} tjedana"
3583
- },
3584
- "relativeTime-type-past": {
3585
- "relativeTimePattern-count-one": "prije {0} tjedan",
3586
- "relativeTimePattern-count-few": "prije {0} tjedna",
3587
- "relativeTimePattern-count-other": "prije {0} tjedana"
3588
- },
3589
- "relativePeriod": "tjedan od {0}"
3590
- },
3591
- "week-short": {
3592
- "displayName": "tj.",
3593
- "relative-type--1": "prošli tj.",
3594
- "relative-type-0": "ovaj tj.",
3595
- "relative-type-1": "sljedeći tj.",
3596
- "relativeTime-type-future": {
3597
- "relativeTimePattern-count-one": "za {0} tj.",
3598
- "relativeTimePattern-count-few": "za {0} tj.",
3599
- "relativeTimePattern-count-other": "za {0} tj."
3600
- },
3601
- "relativeTime-type-past": {
3602
- "relativeTimePattern-count-one": "prije {0} tj.",
3603
- "relativeTimePattern-count-few": "prije {0} tj.",
3604
- "relativeTimePattern-count-other": "prije {0} tj."
3605
- },
3606
- "relativePeriod": "tjedan od {0}"
3607
- },
3608
- "week-narrow": {
3609
- "displayName": "tj.",
3610
- "relative-type--1": "prošli tj.",
3611
- "relative-type-0": "ovaj tj.",
3612
- "relative-type-1": "sljedeći tj.",
3613
- "relativeTime-type-future": {
3614
- "relativeTimePattern-count-one": "za {0} tj.",
3615
- "relativeTimePattern-count-few": "za {0} tj.",
3616
- "relativeTimePattern-count-other": "za {0} tj."
3617
- },
3618
- "relativeTime-type-past": {
3619
- "relativeTimePattern-count-one": "prije {0} tj.",
3620
- "relativeTimePattern-count-few": "prije {0} tj.",
3621
- "relativeTimePattern-count-other": "prije {0} tj."
3622
- },
3623
- "relativePeriod": "tjedan od {0}"
3624
- },
3625
- "day-wide": {
3626
- "displayName": "dan",
3627
- "relative-type--2": "prekjučer",
3628
- "relative-type--1": "jučer",
3629
- "relative-type-0": "danas",
3630
- "relative-type-1": "sutra",
3631
- "relative-type-2": "prekosutra",
3632
- "relativeTime-type-future": {
3633
- "relativeTimePattern-count-one": "za {0} dan",
3634
- "relativeTimePattern-count-few": "za {0} dana",
3635
- "relativeTimePattern-count-other": "za {0} dana"
3636
- },
3637
- "relativeTime-type-past": {
3638
- "relativeTimePattern-count-one": "prije {0} dan",
3639
- "relativeTimePattern-count-few": "prije {0} dana",
3640
- "relativeTimePattern-count-other": "prije {0} dana"
3641
- }
3642
- },
3643
- "day-short": {
3644
- "displayName": "d.",
3645
- "relative-type--2": "prekjučer",
3646
- "relative-type--1": "jučer",
3647
- "relative-type-0": "danas",
3648
- "relative-type-1": "sutra",
3649
- "relative-type-2": "prekosutra",
3650
- "relativeTime-type-future": {
3651
- "relativeTimePattern-count-one": "za {0} dan",
3652
- "relativeTimePattern-count-few": "za {0} dana",
3653
- "relativeTimePattern-count-other": "za {0} dana"
3654
- },
3655
- "relativeTime-type-past": {
3656
- "relativeTimePattern-count-one": "prije {0} dan",
3657
- "relativeTimePattern-count-few": "prije {0} dana",
3658
- "relativeTimePattern-count-other": "prije {0} dana"
3659
- }
3660
- },
3661
- "day-narrow": {
3662
- "displayName": "d.",
3663
- "relative-type--2": "prekjučer",
3664
- "relative-type--1": "jučer",
3665
- "relative-type-0": "danas",
3666
- "relative-type-1": "sutra",
3667
- "relative-type-2": "prekosutra",
3668
- "relativeTime-type-future": {
3669
- "relativeTimePattern-count-one": "za {0} d",
3670
- "relativeTimePattern-count-few": "za {0} d",
3671
- "relativeTimePattern-count-other": "za {0} d"
3672
- },
3673
- "relativeTime-type-past": {
3674
- "relativeTimePattern-count-one": "prije {0} d",
3675
- "relativeTimePattern-count-few": "prije {0} d",
3676
- "relativeTimePattern-count-other": "prije {0} d"
3677
- }
3678
- },
3679
- "weekday": {
3680
- "displayName": "dan u tjednu"
3681
- },
3682
- "hour-wide": {
3683
- "displayName": "sat",
3684
- "relative-type-0": "ovaj sat",
3685
- "relativeTime-type-future": {
3686
- "relativeTimePattern-count-one": "za {0} sat",
3687
- "relativeTimePattern-count-few": "za {0} sata",
3688
- "relativeTimePattern-count-other": "za {0} sati"
3689
- },
3690
- "relativeTime-type-past": {
3691
- "relativeTimePattern-count-one": "prije {0} sat",
3692
- "relativeTimePattern-count-few": "prije {0} sata",
3693
- "relativeTimePattern-count-other": "prije {0} sati"
3694
- }
3695
- },
3696
- "hour-short": {
3697
- "displayName": "h",
3698
- "relative-type-0": "ovaj sat",
3699
- "relativeTime-type-future": {
3700
- "relativeTimePattern-count-one": "za {0} h",
3701
- "relativeTimePattern-count-few": "za {0} h",
3702
- "relativeTimePattern-count-other": "za {0} h"
3703
- },
3704
- "relativeTime-type-past": {
3705
- "relativeTimePattern-count-one": "prije {0} h",
3706
- "relativeTimePattern-count-few": "prije {0} h",
3707
- "relativeTimePattern-count-other": "prije {0} h"
3708
- }
3709
- },
3710
- "hour-narrow": {
3711
- "displayName": "h",
3712
- "relative-type-0": "ovaj sat",
3713
- "relativeTime-type-future": {
3714
- "relativeTimePattern-count-one": "za {0} h",
3715
- "relativeTimePattern-count-few": "za {0} h",
3716
- "relativeTimePattern-count-other": "za {0} h"
3717
- },
3718
- "relativeTime-type-past": {
3719
- "relativeTimePattern-count-one": "prije {0} h",
3720
- "relativeTimePattern-count-few": "prije {0} h",
3721
- "relativeTimePattern-count-other": "prije {0} h"
3722
- }
3723
- },
3724
- "minute-wide": {
3725
- "displayName": "minuta",
3726
- "relative-type-0": "ova minuta",
3727
- "relativeTime-type-future": {
3728
- "relativeTimePattern-count-one": "za {0} minutu",
3729
- "relativeTimePattern-count-few": "za {0} minute",
3730
- "relativeTimePattern-count-other": "za {0} minuta"
3731
- },
3732
- "relativeTime-type-past": {
3733
- "relativeTimePattern-count-one": "prije {0} minutu",
3734
- "relativeTimePattern-count-few": "prije {0} minute",
3735
- "relativeTimePattern-count-other": "prije {0} minuta"
3736
- }
3737
- },
3738
- "minute-short": {
3739
- "displayName": "min",
3740
- "relative-type-0": "ova minuta",
3741
- "relativeTime-type-future": {
3742
- "relativeTimePattern-count-one": "za {0} min",
3743
- "relativeTimePattern-count-few": "za {0} min",
3744
- "relativeTimePattern-count-other": "za {0} min"
3745
- },
3746
- "relativeTime-type-past": {
3747
- "relativeTimePattern-count-one": "prije {0} min",
3748
- "relativeTimePattern-count-few": "prije {0} min",
3749
- "relativeTimePattern-count-other": "prije {0} min"
3750
- }
3751
- },
3752
- "minute-narrow": {
3753
- "displayName": "min",
3754
- "relative-type-0": "ova minuta",
3755
- "relativeTime-type-future": {
3756
- "relativeTimePattern-count-one": "za {0} min",
3757
- "relativeTimePattern-count-few": "za {0} min",
3758
- "relativeTimePattern-count-other": "za {0} min"
3759
- },
3760
- "relativeTime-type-past": {
3761
- "relativeTimePattern-count-one": "prije {0} min",
3762
- "relativeTimePattern-count-few": "prije {0} min",
3763
- "relativeTimePattern-count-other": "prije {0} min"
3764
- }
3765
- },
3766
- "second-wide": {
3767
- "displayName": "sekunda",
3768
- "relative-type-0": "sad",
3769
- "relativeTime-type-future": {
3770
- "relativeTimePattern-count-one": "za {0} sekundu",
3771
- "relativeTimePattern-count-few": "za {0} sekunde",
3772
- "relativeTimePattern-count-other": "za {0} sekundi"
3773
- },
3774
- "relativeTime-type-past": {
3775
- "relativeTimePattern-count-one": "prije {0} sekundu",
3776
- "relativeTimePattern-count-few": "prije {0} sekunde",
3777
- "relativeTimePattern-count-other": "prije {0} sekundi"
3778
- }
3779
- },
3780
- "second-short": {
3781
- "displayName": "s",
3782
- "relative-type-0": "sad",
3783
- "relativeTime-type-future": {
3784
- "relativeTimePattern-count-one": "za {0} s",
3785
- "relativeTimePattern-count-few": "za {0} s",
3786
- "relativeTimePattern-count-other": "za {0} s"
3787
- },
3788
- "relativeTime-type-past": {
3789
- "relativeTimePattern-count-one": "prije {0} s",
3790
- "relativeTimePattern-count-few": "prije {0} s",
3791
- "relativeTimePattern-count-other": "prije {0} s"
3792
- }
3793
- },
3794
- "second-narrow": {
3795
- "displayName": "s",
3796
- "relative-type-0": "sad",
3797
- "relativeTime-type-future": {
3798
- "relativeTimePattern-count-one": "za {0} s",
3799
- "relativeTimePattern-count-few": "za {0} s",
3800
- "relativeTimePattern-count-other": "za {0} s"
3801
- },
3802
- "relativeTime-type-past": {
3803
- "relativeTimePattern-count-one": "prije {0} s",
3804
- "relativeTimePattern-count-few": "prije {0} s",
3805
- "relativeTimePattern-count-other": "prije {0} s"
3806
- }
3807
- },
3808
- "zone": {
3809
- "displayName": "vremenska zona"
3810
- }
3811
- },
3812
- "decimalFormat": {
3813
- "standard": "#,##0.###"
3814
- },
3815
- "decimalFormat-long": {
3816
- "1000-one": "0 tisuća",
3817
- "1000-few": "0 tisuće",
3818
- "1000-other": "0 tisuća",
3819
- "10000-one": "00 tisuća",
3820
- "10000-few": "00 tisuće",
3821
- "10000-other": "00 tisuća",
3822
- "100000-one": "000 tisuća",
3823
- "100000-few": "000 tisuće",
3824
- "100000-other": "000 tisuća",
3825
- "1000000-one": "0 milijun",
3826
- "1000000-few": "0 milijuna",
3827
- "1000000-other": "0 milijuna",
3828
- "10000000-one": "00 milijun",
3829
- "10000000-few": "00 milijuna",
3830
- "10000000-other": "00 milijuna",
3831
- "100000000-one": "000 milijun",
3832
- "100000000-few": "000 milijuna",
3833
- "100000000-other": "000 milijuna",
3834
- "1000000000-one": "0 milijarda",
3835
- "1000000000-few": "0 milijarde",
3836
- "1000000000-other": "0 milijardi",
3837
- "10000000000-one": "00 milijarda",
3838
- "10000000000-few": "00 milijarde",
3839
- "10000000000-other": "00 milijardi",
3840
- "100000000000-one": "000 milijarda",
3841
- "100000000000-few": "000 milijarde",
3842
- "100000000000-other": "000 milijardi",
3843
- "1000000000000-one": "0 bilijun",
3844
- "1000000000000-few": "0 bilijuna",
3845
- "1000000000000-other": "0 bilijuna",
3846
- "10000000000000-one": "00 bilijun",
3847
- "10000000000000-few": "00 bilijuna",
3848
- "10000000000000-other": "00 bilijuna",
3849
- "100000000000000-one": "000 bilijun",
3850
- "100000000000000-few": "000 bilijuna",
3851
- "100000000000000-other": "000 bilijuna"
3852
- },
3853
- "decimalFormat-short": {
3854
- "1000-one": "0 tis'.'",
3855
- "1000-few": "0 tis'.'",
3856
- "1000-other": "0 tis'.'",
3857
- "10000-one": "00 tis'.'",
3858
- "10000-few": "00 tis'.'",
3859
- "10000-other": "00 tis'.'",
3860
- "100000-one": "000 tis'.'",
3861
- "100000-few": "000 tis'.'",
3862
- "100000-other": "000 tis'.'",
3863
- "1000000-one": "0 mil'.'",
3864
- "1000000-few": "0 mil'.'",
3865
- "1000000-other": "0 mil'.'",
3866
- "10000000-one": "00 mil'.'",
3867
- "10000000-few": "00 mil'.'",
3868
- "10000000-other": "00 mil'.'",
3869
- "100000000-one": "000 mil'.'",
3870
- "100000000-few": "000 mil'.'",
3871
- "100000000-other": "000 mil'.'",
3872
- "1000000000-one": "0 mlr'.'",
3873
- "1000000000-few": "0 mlr'.'",
3874
- "1000000000-other": "0 mlr'.'",
3875
- "10000000000-one": "00 mlr'.'",
3876
- "10000000000-few": "00 mlr'.'",
3877
- "10000000000-other": "00 mlr'.'",
3878
- "100000000000-one": "000 mlr'.'",
3879
- "100000000000-few": "000 mlr'.'",
3880
- "100000000000-other": "000 mlr'.'",
3881
- "1000000000000-one": "0 bil'.'",
3882
- "1000000000000-few": "0 bil'.'",
3883
- "1000000000000-other": "0 bil'.'",
3884
- "10000000000000-one": "00 bil'.'",
3885
- "10000000000000-few": "00 bil'.'",
3886
- "10000000000000-other": "00 bil'.'",
3887
- "100000000000000-one": "000 bil'.'",
3888
- "100000000000000-few": "000 bil'.'",
3889
- "100000000000000-other": "000 bil'.'"
3890
- },
3891
- "scientificFormat": {
3892
- "standard": "#E0"
3893
- },
3894
- "percentFormat": {
3895
- "standard": "#,##0 %"
3896
- },
3897
- "currencyFormat": {
3898
- "standard": "#,##0.00 ¤",
3899
- "accounting": "#,##0.00 ¤",
3900
- "currencySpacing": {
3901
- "beforeCurrency": {
3902
- "currencyMatch": "[:^S:]",
3903
- "surroundingMatch": "[:digit:]",
3904
- "insertBetween": " "
3905
- },
3906
- "afterCurrency": {
3907
- "currencyMatch": "[:^S:]",
3908
- "surroundingMatch": "[:digit:]",
3909
- "insertBetween": " "
3910
- }
3911
- },
3912
- "sap-standard": "#,##0.00 ¤",
3913
- "sap-accounting": "#,##0.00 ¤"
3914
- },
3915
- "miscPattern": {
3916
- "approximately": "~{0}",
3917
- "atLeast": "{0}+",
3918
- "atMost": "≤{0}",
3919
- "range": "{0} – {1}"
3920
- },
3921
- "currencyFormat-short": {
3922
- "1000-one": "0000¤",
3923
- "1000-few": "0000¤",
3924
- "1000-other": "0000¤",
3925
- "10000-one": "00 tis'.' ¤",
3926
- "10000-few": "00 tis'.' ¤",
3927
- "10000-other": "00 tis'.' ¤",
3928
- "100000-one": "000 tis'.' ¤",
3929
- "100000-few": "000 tis'.' ¤",
3930
- "100000-other": "000 tis'.' ¤",
3931
- "1000000-one": "0 mil'.' ¤",
3932
- "1000000-few": "0 mil'.' ¤",
3933
- "1000000-other": "0 mil'.' ¤",
3934
- "10000000-one": "00 mil'.' ¤",
3935
- "10000000-few": "00 mil'.' ¤",
3936
- "10000000-other": "00 mil'.' ¤",
3937
- "100000000-one": "000 mil'.' ¤",
3938
- "100000000-few": "000 mil'.' ¤",
3939
- "100000000-other": "000 mil'.' ¤",
3940
- "1000000000-one": "0 mlr'.' ¤",
3941
- "1000000000-few": "0 mlr'.' ¤",
3942
- "1000000000-other": "0 mlr'.' ¤",
3943
- "10000000000-one": "00 mlr'.' ¤",
3944
- "10000000000-few": "00 mlr'.' ¤",
3945
- "10000000000-other": "00 mlr'.' ¤",
3946
- "100000000000-one": "000 mlr'.' ¤",
3947
- "100000000000-few": "000 mlr'.' ¤",
3948
- "100000000000-other": "000 mlr'.' ¤",
3949
- "1000000000000-one": "0 bil'.' ¤",
3950
- "1000000000000-few": "0 bil'.' ¤",
3951
- "1000000000000-other": "0 bil'.' ¤",
3952
- "10000000000000-one": "00 bil'.' ¤",
3953
- "10000000000000-few": "00 bil'.' ¤",
3954
- "10000000000000-other": "00 bil'.' ¤",
3955
- "100000000000000-one": "000 bil'.' ¤",
3956
- "100000000000000-few": "000 bil'.' ¤",
3957
- "100000000000000-other": "000 bil'.' ¤"
3958
- },
3959
- "symbols-latn-decimal": ",",
3960
- "symbols-latn-group": ".",
3961
- "symbols-latn-list": ";",
3962
- "symbols-latn-percentSign": "%",
3963
- "symbols-latn-plusSign": "+",
3964
- "symbols-latn-minusSign": "-",
3965
- "symbols-latn-exponential": "E",
3966
- "symbols-latn-superscriptingExponent": "×",
3967
- "symbols-latn-perMille": "‰",
3968
- "symbols-latn-infinity": "∞",
3969
- "symbols-latn-nan": "NaN",
3970
- "symbols-latn-timeSeparator": ":",
3971
- "currencySymbols": {
3972
- "XAF": "FCFA",
3973
- "XOF": "CFA"
3974
- },
3975
- "rtl": false,
3976
- "listPattern-standard-wide": {
3977
- "2": "{0} i {1}",
3978
- "start": "{0}, {1}",
3979
- "middle": "{0}, {1}",
3980
- "end": "{0} i {1}"
3981
- },
3982
- "listPattern-or-wide": {
3983
- "2": "{0} ili {1}",
3984
- "start": "{0}, {1}",
3985
- "middle": "{0}, {1}",
3986
- "end": "{0} ili {1}"
3987
- },
3988
- "listPattern-or-short": {
3989
- "2": "{0} ili {1}",
3990
- "start": "{0}, {1}",
3991
- "middle": "{0}, {1}",
3992
- "end": "{0} ili {1}"
3993
- },
3994
- "listPattern-standard-short": {
3995
- "2": "{0} i {1}",
3996
- "start": "{0}, {1}",
3997
- "middle": "{0}, {1}",
3998
- "end": "{0} i {1}"
3999
- },
4000
- "units": {
4001
- "short": {
4002
- "per": {
4003
- "compoundUnitPattern": "{0}/{1}"
4004
- },
4005
- "acceleration-g-force": {
4006
- "displayName": "G",
4007
- "unitPattern-count-other": "{0} G"
4008
- },
4009
- "acceleration-meter-per-second-squared": {
4010
- "displayName": "m/s²",
4011
- "unitPattern-count-other": "{0} m/s²"
4012
- },
4013
- "angle-revolution": {
4014
- "displayName": "okr.",
4015
- "unitPattern-count-one": "{0} okr.",
4016
- "unitPattern-count-few": "{0} okr.",
4017
- "unitPattern-count-other": "{0} okr."
4018
- },
4019
- "angle-radian": {
4020
- "displayName": "rad",
4021
- "unitPattern-count-other": "{0} rad"
4022
- },
4023
- "angle-degree": {
4024
- "displayName": "°",
4025
- "unitPattern-count-other": "{0}°"
4026
- },
4027
- "angle-arc-minute": {
4028
- "displayName": "min",
4029
- "unitPattern-count-one": "{0} min",
4030
- "unitPattern-count-few": "{0} min",
4031
- "unitPattern-count-other": "{0} min"
4032
- },
4033
- "angle-arc-second": {
4034
- "displayName": "s",
4035
- "unitPattern-count-one": "{0} s",
4036
- "unitPattern-count-few": "{0} s",
4037
- "unitPattern-count-other": "{0} s"
4038
- },
4039
- "area-square-kilometer": {
4040
- "displayName": "km²",
4041
- "unitPattern-count-other": "{0} km²",
4042
- "perUnitPattern": "{0}/km²"
4043
- },
4044
- "area-hectare": {
4045
- "displayName": "ha",
4046
- "unitPattern-count-other": "{0} ha"
4047
- },
4048
- "area-square-meter": {
4049
- "displayName": "m²",
4050
- "unitPattern-count-other": "{0} m²",
4051
- "perUnitPattern": "{0}/m²"
4052
- },
4053
- "area-square-centimeter": {
4054
- "displayName": "cm²",
4055
- "unitPattern-count-other": "{0} cm²",
4056
- "perUnitPattern": "{0}/cm²"
4057
- },
4058
- "area-square-mile": {
4059
- "displayName": "mi²",
4060
- "unitPattern-count-other": "{0} mi²",
4061
- "perUnitPattern": "{0}/mi²"
4062
- },
4063
- "area-acre": {
4064
- "displayName": "kj",
4065
- "unitPattern-count-one": "{0} kj",
4066
- "unitPattern-count-few": "{0} kj",
4067
- "unitPattern-count-other": "{0} kj"
4068
- },
4069
- "area-square-yard": {
4070
- "displayName": "yd²",
4071
- "unitPattern-count-other": "{0} yd²"
4072
- },
4073
- "area-square-foot": {
4074
- "displayName": "ft²",
4075
- "unitPattern-count-other": "{0} ft²"
4076
- },
4077
- "area-square-inch": {
4078
- "displayName": "in²",
4079
- "unitPattern-count-other": "{0} in²",
4080
- "perUnitPattern": "{0}/in²"
4081
- },
4082
- "area-dunam": {
4083
- "displayName": "dunami",
4084
- "unitPattern-count-one": "{0} dunama",
4085
- "unitPattern-count-few": "{0} dunama",
4086
- "unitPattern-count-other": "{0} dunama"
4087
- },
4088
- "concentr-karat": {
4089
- "displayName": "kt",
4090
- "unitPattern-count-other": "{0} kt"
4091
- },
4092
- "concentr-milligram-per-deciliter": {
4093
- "displayName": "mg/dl",
4094
- "unitPattern-count-one": "{0} mg/dl",
4095
- "unitPattern-count-few": "{0} mg/dl",
4096
- "unitPattern-count-other": "{0} mg/dl"
4097
- },
4098
- "concentr-millimole-per-liter": {
4099
- "displayName": "mmol/l",
4100
- "unitPattern-count-one": "{0} mmol/l",
4101
- "unitPattern-count-few": "{0} mmol/l",
4102
- "unitPattern-count-other": "{0} mmol/l"
4103
- },
4104
- "concentr-part-per-million": {
4105
- "displayName": "ppm",
4106
- "unitPattern-count-other": "{0} ppm"
4107
- },
4108
- "concentr-percent": {
4109
- "displayName": "%",
4110
- "unitPattern-count-one": "{0} %",
4111
- "unitPattern-count-few": "{0} %",
4112
- "unitPattern-count-other": "{0} %"
4113
- },
4114
- "concentr-permille": {
4115
- "displayName": "‰",
4116
- "unitPattern-count-one": "{0} ‰",
4117
- "unitPattern-count-few": "{0} ‰",
4118
- "unitPattern-count-other": "{0} ‰"
4119
- },
4120
- "concentr-permyriad": {
4121
- "displayName": "‱",
4122
- "unitPattern-count-one": "{0} ‱",
4123
- "unitPattern-count-few": "{0} ‱",
4124
- "unitPattern-count-other": "{0} ‱"
4125
- },
4126
- "concentr-mole": {
4127
- "displayName": "mol",
4128
- "unitPattern-count-one": "{0} mola",
4129
- "unitPattern-count-few": "{0} mola",
4130
- "unitPattern-count-other": "{0} mola"
4131
- },
4132
- "consumption-liter-per-kilometer": {
4133
- "displayName": "l/km",
4134
- "unitPattern-count-one": "{0} l/km",
4135
- "unitPattern-count-few": "{0} l/km",
4136
- "unitPattern-count-other": "{0} l/km"
4137
- },
4138
- "consumption-liter-per-100kilometers": {
4139
- "displayName": "l/100 km",
4140
- "unitPattern-count-one": "{0} l/100 km",
4141
- "unitPattern-count-few": "{0} l/100 km",
4142
- "unitPattern-count-other": "{0} l/100 km"
4143
- },
4144
- "consumption-mile-per-gallon": {
4145
- "displayName": "mpg",
4146
- "unitPattern-count-one": "{0} mpg",
4147
- "unitPattern-count-few": "{0} mpg",
4148
- "unitPattern-count-other": "{0} mpg"
4149
- },
4150
- "consumption-mile-per-gallon-imperial": {
4151
- "displayName": "milje/imp. gal.",
4152
- "unitPattern-count-one": "{0} mpg imp.",
4153
- "unitPattern-count-few": "{0} mpg imp.",
4154
- "unitPattern-count-other": "{0} mpg imp."
4155
- },
4156
- "digital-petabyte": {
4157
- "displayName": "PB",
4158
- "unitPattern-count-other": "{0} PB"
4159
- },
4160
- "digital-terabyte": {
4161
- "displayName": "TB",
4162
- "unitPattern-count-other": "{0} TB"
4163
- },
4164
- "digital-terabit": {
4165
- "displayName": "Tb",
4166
- "unitPattern-count-other": "{0} Tb"
4167
- },
4168
- "digital-gigabyte": {
4169
- "displayName": "GB",
4170
- "unitPattern-count-other": "{0} GB"
4171
- },
4172
- "digital-gigabit": {
4173
- "displayName": "Gb",
4174
- "unitPattern-count-other": "{0} Gb"
4175
- },
4176
- "digital-megabyte": {
4177
- "displayName": "MB",
4178
- "unitPattern-count-other": "{0} MB"
4179
- },
4180
- "digital-megabit": {
4181
- "displayName": "Mb",
4182
- "unitPattern-count-other": "{0} Mb"
4183
- },
4184
- "digital-kilobyte": {
4185
- "displayName": "kB",
4186
- "unitPattern-count-other": "{0} kB"
4187
- },
4188
- "digital-kilobit": {
4189
- "displayName": "kb",
4190
- "unitPattern-count-other": "{0} kb"
4191
- },
4192
- "digital-byte": {
4193
- "displayName": "bajt",
4194
- "unitPattern-count-one": "{0} bajt",
4195
- "unitPattern-count-few": "{0} bajta",
4196
- "unitPattern-count-other": "{0} bajtova"
4197
- },
4198
- "digital-bit": {
4199
- "displayName": "bit",
4200
- "unitPattern-count-one": "{0} bit",
4201
- "unitPattern-count-few": "{0} bita",
4202
- "unitPattern-count-other": "{0} bitova"
4203
- },
4204
- "duration-century": {
4205
- "displayName": "st.",
4206
- "unitPattern-count-one": "{0} st.",
4207
- "unitPattern-count-few": "{0} st.",
4208
- "unitPattern-count-other": "{0} st."
4209
- },
4210
- "duration-year": {
4211
- "displayName": "g.",
4212
- "unitPattern-count-one": "{0} g.",
4213
- "unitPattern-count-few": "{0} g.",
4214
- "unitPattern-count-other": "{0} g.",
4215
- "perUnitPattern": "{0}/g."
4216
- },
4217
- "duration-month": {
4218
- "displayName": "mj.",
4219
- "unitPattern-count-one": "{0} mj.",
4220
- "unitPattern-count-few": "{0} mj.",
4221
- "unitPattern-count-other": "{0} mj.",
4222
- "perUnitPattern": "{0}/mj."
4223
- },
4224
- "duration-week": {
4225
- "displayName": "tj.",
4226
- "unitPattern-count-one": "{0} tj.",
4227
- "unitPattern-count-few": "{0} tj.",
4228
- "unitPattern-count-other": "{0} tj.",
4229
- "perUnitPattern": "{0}/tj."
4230
- },
4231
- "duration-day": {
4232
- "displayName": "dani",
4233
- "unitPattern-count-one": "{0} dan",
4234
- "unitPattern-count-few": "{0} dana",
4235
- "unitPattern-count-other": "{0} dana",
4236
- "perUnitPattern": "{0}/d."
4237
- },
4238
- "duration-hour": {
4239
- "displayName": "h",
4240
- "unitPattern-count-other": "{0} h",
4241
- "perUnitPattern": "{0}/h"
4242
- },
4243
- "duration-minute": {
4244
- "displayName": "min",
4245
- "unitPattern-count-other": "{0} min",
4246
- "perUnitPattern": "{0}/min"
4247
- },
4248
- "duration-second": {
4249
- "displayName": "s",
4250
- "unitPattern-count-other": "{0} s",
4251
- "perUnitPattern": "{0}/s"
4252
- },
4253
- "duration-millisecond": {
4254
- "displayName": "ms",
4255
- "unitPattern-count-other": "{0} ms"
4256
- },
4257
- "duration-microsecond": {
4258
- "displayName": "μs",
4259
- "unitPattern-count-other": "{0} μs"
4260
- },
4261
- "duration-nanosecond": {
4262
- "displayName": "ns",
4263
- "unitPattern-count-other": "{0} ns"
4264
- },
4265
- "electric-ampere": {
4266
- "displayName": "A",
4267
- "unitPattern-count-other": "{0} A"
4268
- },
4269
- "electric-milliampere": {
4270
- "displayName": "mA",
4271
- "unitPattern-count-other": "{0} mA"
4272
- },
4273
- "electric-ohm": {
4274
- "displayName": "Ω",
4275
- "unitPattern-count-other": "{0} Ω"
4276
- },
4277
- "electric-volt": {
4278
- "displayName": "V",
4279
- "unitPattern-count-other": "{0} V"
4280
- },
4281
- "energy-kilocalorie": {
4282
- "displayName": "kcal",
4283
- "unitPattern-count-other": "{0} kcal"
4284
- },
4285
- "energy-calorie": {
4286
- "displayName": "cal",
4287
- "unitPattern-count-other": "{0} cal"
4288
- },
4289
- "energy-foodcalorie": {
4290
- "displayName": "kcal",
4291
- "unitPattern-count-one": "{0} kcal",
4292
- "unitPattern-count-few": "{0} kcal",
4293
- "unitPattern-count-other": "{0} kcal"
4294
- },
4295
- "energy-kilojoule": {
4296
- "displayName": "kJ",
4297
- "unitPattern-count-other": "{0} kJ"
4298
- },
4299
- "energy-joule": {
4300
- "displayName": "J",
4301
- "unitPattern-count-other": "{0} J"
4302
- },
4303
- "energy-kilowatt-hour": {
4304
- "displayName": "kWh",
4305
- "unitPattern-count-other": "{0} kWh"
4306
- },
4307
- "energy-electronvolt": {
4308
- "displayName": "eV",
4309
- "unitPattern-count-one": "{0} eV",
4310
- "unitPattern-count-few": "{0} eV",
4311
- "unitPattern-count-other": "{0} eV"
4312
- },
4313
- "energy-british-thermal-unit": {
4314
- "displayName": "BTU",
4315
- "unitPattern-count-one": "{0} BTU",
4316
- "unitPattern-count-few": "{0} BTU",
4317
- "unitPattern-count-other": "{0} BTU"
4318
- },
4319
- "force-pound-force": {
4320
- "displayName": "lbf",
4321
- "unitPattern-count-one": "{0} lbf",
4322
- "unitPattern-count-few": "{0} lbf",
4323
- "unitPattern-count-other": "{0} lbf"
4324
- },
4325
- "force-newton": {
4326
- "displayName": "N",
4327
- "unitPattern-count-one": "{0} N",
4328
- "unitPattern-count-few": "{0} N",
4329
- "unitPattern-count-other": "{0} N"
4330
- },
4331
- "frequency-gigahertz": {
4332
- "displayName": "GHz",
4333
- "unitPattern-count-other": "{0} GHz"
4334
- },
4335
- "frequency-megahertz": {
4336
- "displayName": "MHz",
4337
- "unitPattern-count-other": "{0} MHz"
4338
- },
4339
- "frequency-kilohertz": {
4340
- "displayName": "kHz",
4341
- "unitPattern-count-other": "{0} kHz"
4342
- },
4343
- "frequency-hertz": {
4344
- "displayName": "Hz",
4345
- "unitPattern-count-other": "{0} Hz"
4346
- },
4347
- "length-kilometer": {
4348
- "displayName": "km",
4349
- "unitPattern-count-other": "{0} km",
4350
- "perUnitPattern": "{0}/km"
4351
- },
4352
- "length-meter": {
4353
- "displayName": "m",
4354
- "unitPattern-count-other": "{0} m",
4355
- "perUnitPattern": "{0}/m"
4356
- },
4357
- "length-decimeter": {
4358
- "displayName": "dm",
4359
- "unitPattern-count-other": "{0} dm"
4360
- },
4361
- "length-centimeter": {
4362
- "displayName": "cm",
4363
- "unitPattern-count-other": "{0} cm",
4364
- "perUnitPattern": "{0}/cm"
4365
- },
4366
- "length-millimeter": {
4367
- "displayName": "mm",
4368
- "unitPattern-count-other": "{0} mm"
4369
- },
4370
- "length-micrometer": {
4371
- "displayName": "µm",
4372
- "unitPattern-count-other": "{0} µm"
4373
- },
4374
- "length-nanometer": {
4375
- "displayName": "nm",
4376
- "unitPattern-count-other": "{0} nm"
4377
- },
4378
- "length-picometer": {
4379
- "displayName": "pm",
4380
- "unitPattern-count-other": "{0} pm"
4381
- },
4382
- "length-mile": {
4383
- "displayName": "mi",
4384
- "unitPattern-count-other": "{0} mi"
4385
- },
4386
- "length-yard": {
4387
- "displayName": "jardi",
4388
- "unitPattern-count-other": "{0} yd"
4389
- },
4390
- "length-foot": {
4391
- "displayName": "stope",
4392
- "unitPattern-count-other": "{0} ft",
4393
- "perUnitPattern": "{0}/ft"
4394
- },
4395
- "length-inch": {
4396
- "displayName": "inči",
4397
- "unitPattern-count-other": "{0} in",
4398
- "perUnitPattern": "{0}/in"
4399
- },
4400
- "length-parsec": {
4401
- "displayName": "pc",
4402
- "unitPattern-count-other": "{0} pc"
4403
- },
4404
- "length-light-year": {
4405
- "displayName": "svjetlosne g.",
4406
- "unitPattern-count-other": "{0} ly"
4407
- },
4408
- "length-astronomical-unit": {
4409
- "displayName": "au",
4410
- "unitPattern-count-other": "{0} au"
4411
- },
4412
- "length-furlong": {
4413
- "displayName": "furlonzi",
4414
- "unitPattern-count-other": "{0} fur"
4415
- },
4416
- "length-fathom": {
4417
- "displayName": "hv",
4418
- "unitPattern-count-one": "{0} hv",
4419
- "unitPattern-count-few": "{0} hv",
4420
- "unitPattern-count-other": "{0} hv"
4421
- },
4422
- "length-nautical-mile": {
4423
- "displayName": "nmi",
4424
- "unitPattern-count-other": "{0} nmi"
4425
- },
4426
- "length-mile-scandinavian": {
4427
- "displayName": "smi",
4428
- "unitPattern-count-other": "{0} smi"
4429
- },
4430
- "length-point": {
4431
- "displayName": "točke",
4432
- "unitPattern-count-other": "{0} pt"
4433
- },
4434
- "length-solar-radius": {
4435
- "displayName": "R☉",
4436
- "unitPattern-count-one": "{0} R☉",
4437
- "unitPattern-count-few": "{0} R☉",
4438
- "unitPattern-count-other": "{0} R☉"
4439
- },
4440
- "light-lux": {
4441
- "displayName": "lx",
4442
- "unitPattern-count-other": "{0} lx"
4443
- },
4444
- "light-solar-luminosity": {
4445
- "displayName": "L☉",
4446
- "unitPattern-count-one": "{0} L☉",
4447
- "unitPattern-count-few": "{0} L☉",
4448
- "unitPattern-count-other": "{0} L☉"
4449
- },
4450
- "mass-metric-ton": {
4451
- "displayName": "t",
4452
- "unitPattern-count-other": "{0} t"
4453
- },
4454
- "mass-kilogram": {
4455
- "displayName": "kg",
4456
- "unitPattern-count-other": "{0} kg",
4457
- "perUnitPattern": "{0}/kg"
4458
- },
4459
- "mass-gram": {
4460
- "displayName": "g",
4461
- "unitPattern-count-other": "{0} g",
4462
- "perUnitPattern": "{0}/g"
4463
- },
4464
- "mass-milligram": {
4465
- "displayName": "mg",
4466
- "unitPattern-count-other": "{0} mg"
4467
- },
4468
- "mass-microgram": {
4469
- "displayName": "µg",
4470
- "unitPattern-count-other": "{0} µg"
4471
- },
4472
- "mass-ton": {
4473
- "displayName": "tn",
4474
- "unitPattern-count-other": "{0} tn"
4475
- },
4476
- "mass-stone": {
4477
- "displayName": "st",
4478
- "unitPattern-count-other": "{0} st"
4479
- },
4480
- "mass-pound": {
4481
- "displayName": "lb",
4482
- "unitPattern-count-other": "{0} lb",
4483
- "perUnitPattern": "{0}/lb"
4484
- },
4485
- "mass-ounce": {
4486
- "displayName": "oz",
4487
- "unitPattern-count-other": "{0} oz",
4488
- "perUnitPattern": "{0}/oz"
4489
- },
4490
- "mass-ounce-troy": {
4491
- "displayName": "oz t",
4492
- "unitPattern-count-other": "{0} oz t"
4493
- },
4494
- "mass-carat": {
4495
- "displayName": "ct",
4496
- "unitPattern-count-one": "{0} ct",
4497
- "unitPattern-count-few": "{0} ct",
4498
- "unitPattern-count-other": "{0} ct"
4499
- },
4500
- "mass-dalton": {
4501
- "displayName": "daltoni",
4502
- "unitPattern-count-one": "{0} Da",
4503
- "unitPattern-count-few": "{0} Da",
4504
- "unitPattern-count-other": "{0} Da"
4505
- },
4506
- "mass-earth-mass": {
4507
- "displayName": "M⊕",
4508
- "unitPattern-count-one": "{0} M⊕",
4509
- "unitPattern-count-few": "{0} M⊕",
4510
- "unitPattern-count-other": "{0} M⊕"
4511
- },
4512
- "mass-solar-mass": {
4513
- "displayName": "M☉",
4514
- "unitPattern-count-one": "{0} M☉",
4515
- "unitPattern-count-few": "{0} M☉",
4516
- "unitPattern-count-other": "{0} M☉"
4517
- },
4518
- "power-gigawatt": {
4519
- "displayName": "GW",
4520
- "unitPattern-count-other": "{0} GW"
4521
- },
4522
- "power-megawatt": {
4523
- "displayName": "MW",
4524
- "unitPattern-count-other": "{0} MW"
4525
- },
4526
- "power-kilowatt": {
4527
- "displayName": "kW",
4528
- "unitPattern-count-other": "{0} kW"
4529
- },
4530
- "power-watt": {
4531
- "displayName": "W",
4532
- "unitPattern-count-other": "{0} W"
4533
- },
4534
- "power-milliwatt": {
4535
- "displayName": "mW",
4536
- "unitPattern-count-other": "{0} mW"
4537
- },
4538
- "power-horsepower": {
4539
- "displayName": "KS",
4540
- "unitPattern-count-one": "{0} KS",
4541
- "unitPattern-count-few": "{0} KS",
4542
- "unitPattern-count-other": "{0} KS"
4543
- },
4544
- "pressure-hectopascal": {
4545
- "displayName": "hPa",
4546
- "unitPattern-count-other": "{0} hPa"
4547
- },
4548
- "pressure-millimeter-of-mercury": {
4549
- "displayName": "mm Hg",
4550
- "unitPattern-count-other": "{0} mm Hg"
4551
- },
4552
- "pressure-pound-per-square-inch": {
4553
- "displayName": "psi",
4554
- "unitPattern-count-other": "{0} psi"
4555
- },
4556
- "pressure-inch-hg": {
4557
- "displayName": "inHg",
4558
- "unitPattern-count-other": "{0} inHg"
4559
- },
4560
- "pressure-millibar": {
4561
- "displayName": "mbar",
4562
- "unitPattern-count-other": "{0} mbar"
4563
- },
4564
- "pressure-atmosphere": {
4565
- "displayName": "atm",
4566
- "unitPattern-count-other": "{0} atm"
4567
- },
4568
- "pressure-kilopascal": {
4569
- "displayName": "kPa",
4570
- "unitPattern-count-one": "{0} kPa",
4571
- "unitPattern-count-few": "{0} kPa",
4572
- "unitPattern-count-other": "{0} kPa"
4573
- },
4574
- "pressure-megapascal": {
4575
- "displayName": "MPa",
4576
- "unitPattern-count-one": "{0} MPa",
4577
- "unitPattern-count-few": "{0} MPa",
4578
- "unitPattern-count-other": "{0} MPa"
4579
- },
4580
- "speed-kilometer-per-hour": {
4581
- "displayName": "km/h",
4582
- "unitPattern-count-other": "{0} km/h"
4583
- },
4584
- "speed-meter-per-second": {
4585
- "displayName": "m/s",
4586
- "unitPattern-count-other": "{0} m/s"
4587
- },
4588
- "speed-mile-per-hour": {
4589
- "displayName": "mi/h",
4590
- "unitPattern-count-other": "{0} mi/h"
4591
- },
4592
- "speed-knot": {
4593
- "displayName": "čv",
4594
- "unitPattern-count-one": "{0} čv",
4595
- "unitPattern-count-few": "{0} čv",
4596
- "unitPattern-count-other": "{0} čv"
4597
- },
4598
- "temperature-generic": {
4599
- "displayName": "°",
4600
- "unitPattern-count-other": "{0}°"
4601
- },
4602
- "temperature-celsius": {
4603
- "displayName": "°C",
4604
- "unitPattern-count-other": "{0}°C"
4605
- },
4606
- "temperature-fahrenheit": {
4607
- "displayName": "°F",
4608
- "unitPattern-count-other": "{0}°F"
4609
- },
4610
- "temperature-kelvin": {
4611
- "displayName": "K",
4612
- "unitPattern-count-other": "{0} K"
4613
- },
4614
- "torque-pound-foot": {
4615
- "displayName": "lbf⋅ft",
4616
- "unitPattern-count-one": "{0} lbf⋅ft",
4617
- "unitPattern-count-few": "{0} lbf⋅ft",
4618
- "unitPattern-count-other": "{0} lbf⋅ft"
4619
- },
4620
- "torque-newton-meter": {
4621
- "displayName": "Nm",
4622
- "unitPattern-count-one": "{0} Nm",
4623
- "unitPattern-count-few": "{0} Nm",
4624
- "unitPattern-count-other": "{0} Nm"
4625
- },
4626
- "volume-cubic-kilometer": {
4627
- "displayName": "km³",
4628
- "unitPattern-count-other": "{0} km³"
4629
- },
4630
- "volume-cubic-meter": {
4631
- "displayName": "m³",
4632
- "unitPattern-count-other": "{0} m³",
4633
- "perUnitPattern": "{0}/m³"
4634
- },
4635
- "volume-cubic-centimeter": {
4636
- "displayName": "cm³",
4637
- "unitPattern-count-other": "{0} cm³",
4638
- "perUnitPattern": "{0}/cm³"
4639
- },
4640
- "volume-cubic-mile": {
4641
- "displayName": "mi³",
4642
- "unitPattern-count-other": "{0} mi³"
4643
- },
4644
- "volume-cubic-yard": {
4645
- "displayName": "yd³",
4646
- "unitPattern-count-other": "{0} yd³"
4647
- },
4648
- "volume-cubic-foot": {
4649
- "displayName": "ft³",
4650
- "unitPattern-count-other": "{0} ft³"
4651
- },
4652
- "volume-cubic-inch": {
4653
- "displayName": "in³",
4654
- "unitPattern-count-other": "{0} in³"
4655
- },
4656
- "volume-megaliter": {
4657
- "displayName": "Ml",
4658
- "unitPattern-count-one": "{0} Ml",
4659
- "unitPattern-count-few": "{0} Ml",
4660
- "unitPattern-count-other": "{0} Ml"
4661
- },
4662
- "volume-hectoliter": {
4663
- "displayName": "hl",
4664
- "unitPattern-count-one": "{0} hl",
4665
- "unitPattern-count-few": "{0} hl",
4666
- "unitPattern-count-other": "{0} hl"
4667
- },
4668
- "volume-liter": {
4669
- "displayName": "l",
4670
- "unitPattern-count-other": "{0} l",
4671
- "perUnitPattern": "{0}/l"
4672
- },
4673
- "volume-deciliter": {
4674
- "displayName": "dl",
4675
- "unitPattern-count-one": "{0} dl",
4676
- "unitPattern-count-few": "{0} dl",
4677
- "unitPattern-count-other": "{0} dl"
4678
- },
4679
- "volume-centiliter": {
4680
- "displayName": "cl",
4681
- "unitPattern-count-one": "{0} cl",
4682
- "unitPattern-count-few": "{0} cl",
4683
- "unitPattern-count-other": "{0} cl"
4684
- },
4685
- "volume-milliliter": {
4686
- "displayName": "ml",
4687
- "unitPattern-count-one": "{0} ml",
4688
- "unitPattern-count-few": "{0} ml",
4689
- "unitPattern-count-other": "{0} ml"
4690
- },
4691
- "volume-pint-metric": {
4692
- "displayName": "mpt",
4693
- "unitPattern-count-other": "{0} mpt"
4694
- },
4695
- "volume-cup-metric": {
4696
- "displayName": "m. šalica",
4697
- "unitPattern-count-other": "{0} mc"
4698
- },
4699
- "volume-acre-foot": {
4700
- "displayName": "ac ft",
4701
- "unitPattern-count-other": "{0} ac ft"
4702
- },
4703
- "volume-bushel": {
4704
- "displayName": "bu",
4705
- "unitPattern-count-other": "{0} bu"
4706
- },
4707
- "volume-gallon": {
4708
- "displayName": "gal",
4709
- "unitPattern-count-one": "{0} gal",
4710
- "unitPattern-count-few": "{0} gal",
4711
- "unitPattern-count-other": "{0} gal",
4712
- "perUnitPattern": "{0}/gal"
4713
- },
4714
- "volume-gallon-imperial": {
4715
- "displayName": "imp. gal.",
4716
- "unitPattern-count-one": "{0} imp. gal.",
4717
- "unitPattern-count-few": "{0} imp. gal.",
4718
- "unitPattern-count-other": "{0} imp. gal.",
4719
- "perUnitPattern": "{0}/imp. gal."
4720
- },
4721
- "volume-quart": {
4722
- "displayName": "qt",
4723
- "unitPattern-count-other": "{0} qt"
4724
- },
4725
- "volume-pint": {
4726
- "displayName": "pt",
4727
- "unitPattern-count-other": "{0} pt"
4728
- },
4729
- "volume-cup": {
4730
- "displayName": "šalice",
4731
- "unitPattern-count-other": "{0} c"
4732
- },
4733
- "volume-fluid-ounce": {
4734
- "displayName": "fl oz",
4735
- "unitPattern-count-one": "{0} fl oz",
4736
- "unitPattern-count-few": "{0} fl oz",
4737
- "unitPattern-count-other": "{0} fl oz"
4738
- },
4739
- "volume-fluid-ounce-imperial": {
4740
- "displayName": "imp. fl oz",
4741
- "unitPattern-count-one": "{0} imp. fl oz",
4742
- "unitPattern-count-few": "{0} imp. fl oz",
4743
- "unitPattern-count-other": "{0} imp. fl oz"
4744
- },
4745
- "volume-tablespoon": {
4746
- "displayName": "tbsp",
4747
- "unitPattern-count-other": "{0} tbsp"
4748
- },
4749
- "volume-teaspoon": {
4750
- "displayName": "tsp",
4751
- "unitPattern-count-other": "{0} tsp"
4752
- },
4753
- "volume-barrel": {
4754
- "displayName": "bbl",
4755
- "unitPattern-count-one": "{0} bbl",
4756
- "unitPattern-count-few": "{0} bbl",
4757
- "unitPattern-count-other": "{0} bbl"
4758
- },
4759
- "coordinateUnit": {
4760
- "displayName": "smjer",
4761
- "east": "{0}I",
4762
- "north": "{0}S",
4763
- "south": "{0}J",
4764
- "west": "{0}Z"
4765
- }
4766
- }
4767
- },
4768
- "lenient-scope-number": {
4769
- "minusSign": "-‒⁻₋−➖﹣-",
4770
- "commaSign": ",،٫、︐︑﹐﹑,、",
4771
- "plusSign": "+⁺₊➕﬩﹢+"
4772
- },
4773
- "currencyFormat-sap-short": {
4774
- "1000-one": "0000¤",
4775
- "1000-few": "0000¤",
4776
- "1000-other": "0000¤",
4777
- "10000-one": "00 tis'.' ¤",
4778
- "10000-few": "00 tis'.' ¤",
4779
- "10000-other": "00 tis'.' ¤",
4780
- "100000-one": "000 tis'.' ¤",
4781
- "100000-few": "000 tis'.' ¤",
4782
- "100000-other": "000 tis'.' ¤",
4783
- "1000000-one": "0 mil'.' ¤",
4784
- "1000000-few": "0 mil'.' ¤",
4785
- "1000000-other": "0 mil'.' ¤",
4786
- "10000000-one": "00 mil'.' ¤",
4787
- "10000000-few": "00 mil'.' ¤",
4788
- "10000000-other": "00 mil'.' ¤",
4789
- "100000000-one": "000 mil'.' ¤",
4790
- "100000000-few": "000 mil'.' ¤",
4791
- "100000000-other": "000 mil'.' ¤",
4792
- "1000000000-one": "0 mlr'.' ¤",
4793
- "1000000000-few": "0 mlr'.' ¤",
4794
- "1000000000-other": "0 mlr'.' ¤",
4795
- "10000000000-one": "00 mlr'.' ¤",
4796
- "10000000000-few": "00 mlr'.' ¤",
4797
- "10000000000-other": "00 mlr'.' ¤",
4798
- "100000000000-one": "000 mlr'.' ¤",
4799
- "100000000000-few": "000 mlr'.' ¤",
4800
- "100000000000-other": "000 mlr'.' ¤",
4801
- "1000000000000-one": "0 bil'.' ¤",
4802
- "1000000000000-few": "0 bil'.' ¤",
4803
- "1000000000000-other": "0 bil'.' ¤",
4804
- "10000000000000-one": "00 bil'.' ¤",
4805
- "10000000000000-few": "00 bil'.' ¤",
4806
- "10000000000000-other": "00 bil'.' ¤",
4807
- "100000000000000-one": "000 bil'.' ¤",
4808
- "100000000000000-few": "000 bil'.' ¤",
4809
- "100000000000000-other": "000 bil'.' ¤"
4810
- },
4811
- "currencyDigits": {
4812
- "ADP": 0,
4813
- "AFN": 0,
4814
- "ALL": 0,
4815
- "BHD": 3,
4816
- "BIF": 0,
4817
- "BYR": 0,
4818
- "CLF": 4,
4819
- "CLP": 0,
4820
- "DEFAULT": 2,
4821
- "DJF": 0,
4822
- "ESP": 0,
4823
- "GNF": 0,
4824
- "HUF": 0,
4825
- "IQD": 0,
4826
- "IRR": 0,
4827
- "ISK": 0,
4828
- "ITL": 0,
4829
- "JOD": 3,
4830
- "JPY": 0,
4831
- "KMF": 0,
4832
- "KPW": 0,
4833
- "KRW": 0,
4834
- "KWD": 3,
4835
- "LAK": 0,
4836
- "LBP": 0,
4837
- "LUF": 0,
4838
- "LYD": 3,
4839
- "MGA": 0,
4840
- "MGF": 0,
4841
- "MMK": 0,
4842
- "MRO": 0,
4843
- "OMR": 3,
4844
- "PYG": 0,
4845
- "RSD": 0,
4846
- "RWF": 0,
4847
- "SLL": 0,
4848
- "SOS": 0,
4849
- "STD": 0,
4850
- "SYP": 0,
4851
- "TMM": 0,
4852
- "TND": 3,
4853
- "TRL": 0,
4854
- "TWD": 0,
4855
- "UGX": 0,
4856
- "UYI": 0,
4857
- "UYW": 4,
4858
- "VND": 0,
4859
- "VUV": 0,
4860
- "XAF": 0,
4861
- "XOF": 0,
4862
- "XPF": 0,
4863
- "YER": 0,
4864
- "ZMK": 0,
4865
- "ZWD": 0
4866
- },
4867
- "plurals": {
4868
- "one": "v = 0 and i % 10 = 1 and i % 100 != 11 or f % 10 = 1 and f % 100 != 11",
4869
- "few": "v = 0 and i % 10 = 2..4 and i % 100 != 12..14 or f % 10 = 2..4 and f % 100 != 12..14"
4870
- },
4871
- "weekData-minDays": 1,
4872
- "weekData-firstDay": 1,
4873
- "weekData-weekendStart": 6,
4874
- "weekData-weekendEnd": 0,
4875
- "timeData": {
4876
- "_allowed": "H hB",
4877
- "_preferred": "H"
4878
- },
4879
- "eras-gregorian": {
4880
- "0": {
4881
- "_end": "0-12-31"
4882
- },
4883
- "1": {
4884
- "_start": "1-01-01"
4885
- }
4886
- },
4887
- "eras-islamic": {
4888
- "0": {
4889
- "_start": "622-7-15"
4890
- }
4891
- },
4892
- "eras-persian": {
4893
- "0": {
4894
- "_start": "622-01-01"
4895
- }
4896
- },
4897
- "eras-buddhist": {
4898
- "0": {
4899
- "_start": "-542-01-01"
4900
- }
4901
- },
4902
- "eras-japanese": {
4903
- "232": {
4904
- "_start": "1868-9-8"
4905
- },
4906
- "233": {
4907
- "_start": "1912-7-30"
4908
- },
4909
- "234": {
4910
- "_start": "1926-12-25"
4911
- },
4912
- "235": {
4913
- "_start": "1989-1-8"
4914
- },
4915
- "236": {
4916
- "_start": "2019-5-1"
4917
- }
4918
- }
4919
- }