@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,4967 +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": "afari",
5
- "ab": "abhaasi",
6
- "ace": "atšehi",
7
- "ach": "atšoli",
8
- "ada": "adangme",
9
- "ady": "adõgee",
10
- "ae": "avesta",
11
- "aeb": "Tuneesia araabia",
12
- "af": "afrikaani",
13
- "afh": "afrihili",
14
- "agq": "aghemi",
15
- "ain": "ainu",
16
- "ak": "akani",
17
- "akk": "akadi",
18
- "akz": "alabama",
19
- "ale": "aleuudi",
20
- "aln": "geegi",
21
- "alt": "altai",
22
- "am": "amhara",
23
- "an": "aragoni",
24
- "ang": "vanainglise",
25
- "anp": "angika",
26
- "ar": "araabia",
27
- "ar_001": "araabia (tänapäevane)",
28
- "arc": "aramea",
29
- "arn": "mapudunguni",
30
- "aro": "araona",
31
- "arp": "arapaho",
32
- "arq": "Alžeeria araabia",
33
- "arw": "aravaki",
34
- "ary": "Maroko araabia",
35
- "arz": "Egiptuse araabia",
36
- "as": "assami",
37
- "asa": "asu",
38
- "ase": "Ameerika viipekeel",
39
- "ast": "astuuria",
40
- "av": "avaari",
41
- "awa": "avadhi",
42
- "ay": "aimara",
43
- "az": "aserbaidžaani",
44
- "az_alt-short": "aseri",
45
- "ba": "baškiiri",
46
- "bal": "belutši",
47
- "ban": "bali",
48
- "bar": "baieri",
49
- "bas": "basaa",
50
- "bax": "bamuni",
51
- "bbc": "bataki",
52
- "bbj": "ghomala",
53
- "be": "valgevene",
54
- "bej": "bedža",
55
- "bem": "bemba",
56
- "bew": "betavi",
57
- "bez": "bena",
58
- "bfd": "bafuti",
59
- "bfq": "badaga",
60
- "bg": "bulgaaria",
61
- "bgn": "läänebelutši",
62
- "bho": "bhodžpuri",
63
- "bi": "bislama",
64
- "bik": "bikoli",
65
- "bin": "edo",
66
- "bjn": "bandžari",
67
- "bkm": "komi (Aafrika)",
68
- "bla": "mustjalaindiaani",
69
- "bm": "bambara",
70
- "bn": "bengali",
71
- "bo": "tiibeti",
72
- "bpy": "bišnuprija",
73
- "bqi": "bahtiari",
74
- "br": "bretooni",
75
- "bra": "bradži",
76
- "brh": "brahui",
77
- "brx": "bodo",
78
- "bs": "bosnia",
79
- "bss": "akoose",
80
- "bua": "burjaadi",
81
- "bug": "bugi",
82
- "bum": "bulu",
83
- "byn": "bilini",
84
- "byv": "medumba",
85
- "ca": "katalaani",
86
- "cad": "kado",
87
- "car": "kariibi",
88
- "cay": "kajuka",
89
- "cch": "aitšami",
90
- "ccp": "Chakma",
91
- "ce": "tšetšeeni",
92
- "ceb": "sebu",
93
- "cgg": "tšiga",
94
- "ch": "tšamorro",
95
- "chb": "tšibtša",
96
- "chg": "tšagatai",
97
- "chk": "tšuugi",
98
- "chm": "mari",
99
- "chn": "tšinuki žargoon",
100
- "cho": "tšokto",
101
- "chp": "tšipevai",
102
- "chr": "tšerokii",
103
- "chy": "šaieeni",
104
- "ckb": "sorani",
105
- "co": "korsika",
106
- "cop": "kopti",
107
- "cps": "kapisnoni",
108
- "cr": "krii",
109
- "crh": "krimmitatari",
110
- "crs": "seišelli",
111
- "cs": "tšehhi",
112
- "csb": "kašuubi",
113
- "cu": "kirikuslaavi",
114
- "cv": "tšuvaši",
115
- "cy": "kõmri",
116
- "da": "taani",
117
- "dak": "siuu",
118
- "dar": "dargi",
119
- "dav": "davida",
120
- "de": "saksa",
121
- "de_AT": "Austria saksa",
122
- "de_CH": "Šveitsi ülemsaksa",
123
- "del": "delavari",
124
- "den": "sleivi",
125
- "dgr": "dogribi",
126
- "din": "dinka",
127
- "dje": "zarma",
128
- "doi": "dogri",
129
- "dsb": "alamsorbi",
130
- "dtp": "keskdusuni",
131
- "dua": "duala",
132
- "dum": "keskhollandi",
133
- "dv": "maldiivi",
134
- "dyo": "fonji",
135
- "dyu": "djula",
136
- "dz": "dzongkha",
137
- "dzg": "daza",
138
- "ebu": "embu",
139
- "ee": "eve",
140
- "efi": "efiki",
141
- "egl": "emiilia",
142
- "egy": "egiptuse",
143
- "eka": "ekadžuki",
144
- "el": "kreeka",
145
- "elx": "eelami",
146
- "en": "inglise",
147
- "en_AU": "Austraalia inglise",
148
- "en_CA": "Kanada inglise",
149
- "en_GB": "Briti inglise",
150
- "en_GB-alt-short": "Briti inglise",
151
- "en_US": "Ameerika inglise",
152
- "en_US-alt-short": "USA inglise",
153
- "enm": "keskinglise",
154
- "eo": "esperanto",
155
- "es": "hispaania",
156
- "es_419": "Ladina-Ameerika hispaania",
157
- "es_ES": "Euroopa hispaania",
158
- "es_MX": "Mehhiko hispaania",
159
- "esu": "keskjupiki",
160
- "et": "eesti",
161
- "eu": "baski",
162
- "ewo": "evondo",
163
- "ext": "estremenju",
164
- "fa": "pärsia",
165
- "fan": "fangi",
166
- "fat": "fanti",
167
- "ff": "fula",
168
- "fi": "soome",
169
- "fil": "filipiini",
170
- "fit": "meä",
171
- "fj": "fidži",
172
- "fo": "fääri",
173
- "fon": "foni",
174
- "fr": "prantsuse",
175
- "fr_CA": "Kanada prantsuse",
176
- "fr_CH": "Šveitsi prantsuse",
177
- "frc": "cajun’i",
178
- "frm": "keskprantsuse",
179
- "fro": "vanaprantsuse",
180
- "frp": "frankoprovansi",
181
- "frr": "põhjafriisi",
182
- "frs": "idafriisi",
183
- "fur": "friuuli",
184
- "fy": "läänefriisi",
185
- "ga": "iiri",
186
- "gaa": "gaa",
187
- "gag": "gagauusi",
188
- "gan": "kani",
189
- "gay": "gajo",
190
- "gba": "gbaja",
191
- "gd": "gaeli",
192
- "gez": "etioopia",
193
- "gil": "kiribati",
194
- "gl": "galeegi",
195
- "glk": "gilaki",
196
- "gmh": "keskülemsaksa",
197
- "gn": "guaranii",
198
- "goh": "vanaülemsaksa",
199
- "gon": "gondi",
200
- "gor": "gorontalo",
201
- "got": "gooti",
202
- "grb": "grebo",
203
- "grc": "vanakreeka",
204
- "gsw": "šveitsisaksa",
205
- "gu": "gudžarati",
206
- "guc": "vajuu",
207
- "gur": "farefare",
208
- "guz": "gusii",
209
- "gv": "mänksi",
210
- "gwi": "gvitšini",
211
- "ha": "hausa",
212
- "hai": "haida",
213
- "hak": "hakka",
214
- "haw": "havai",
215
- "he": "heebrea",
216
- "hi": "hindi",
217
- "hif": "Fidži hindi",
218
- "hil": "hiligainoni",
219
- "hit": "heti",
220
- "hmn": "hmongi",
221
- "ho": "hirimotu",
222
- "hr": "horvaadi",
223
- "hsb": "ülemsorbi",
224
- "hsn": "sjangi",
225
- "ht": "haiti",
226
- "hu": "ungari",
227
- "hup": "hupa",
228
- "hy": "armeenia",
229
- "hz": "herero",
230
- "ia": "interlingua",
231
- "iba": "ibani",
232
- "ibb": "ibibio",
233
- "id": "indoneesia",
234
- "ie": "interlingue",
235
- "ig": "ibo",
236
- "ii": "Sichuani jii",
237
- "ik": "injupiaki",
238
- "ilo": "iloko",
239
- "inh": "inguši",
240
- "io": "ido",
241
- "is": "islandi",
242
- "it": "itaalia",
243
- "iu": "inuktituti",
244
- "izh": "isuri",
245
- "ja": "jaapani",
246
- "jam": "Jamaica kreoolkeel",
247
- "jbo": "ložban",
248
- "jgo": "ngomba",
249
- "jmc": "matšame",
250
- "jpr": "juudipärsia",
251
- "jrb": "juudiaraabia",
252
- "jut": "jüüti",
253
- "jv": "jaava",
254
- "ka": "gruusia",
255
- "kaa": "karakalpaki",
256
- "kab": "kabiili",
257
- "kac": "katšini",
258
- "kaj": "jju",
259
- "kam": "kamba",
260
- "kaw": "kaavi",
261
- "kbd": "kabardi-tšerkessi",
262
- "kbl": "kanembu",
263
- "kcg": "tjapi",
264
- "kde": "makonde",
265
- "kea": "kabuverdianu",
266
- "kfo": "koro",
267
- "kg": "kongo",
268
- "kgp": "kaingangi",
269
- "kha": "khasi",
270
- "kho": "saka",
271
- "khq": "koyra chiini",
272
- "khw": "khovari",
273
- "ki": "kikuju",
274
- "kiu": "kõrmandžki",
275
- "kj": "kvanjama",
276
- "kk": "kasahhi",
277
- "kkj": "kako",
278
- "kl": "grööni",
279
- "kln": "kalendžini",
280
- "km": "khmeeri",
281
- "kmb": "mbundu",
282
- "kn": "kannada",
283
- "ko": "korea",
284
- "koi": "permikomi",
285
- "kok": "konkani",
286
- "kos": "kosrae",
287
- "kpe": "kpelle",
288
- "kr": "kanuri",
289
- "krc": "karatšai-balkaari",
290
- "kri": "krio",
291
- "krj": "kinaraia",
292
- "krl": "karjala",
293
- "kru": "kuruhhi",
294
- "ks": "kašmiiri",
295
- "ksb": "šambala",
296
- "ksf": "bafia",
297
- "ksh": "kölni",
298
- "ku": "kurdi",
299
- "kum": "kumõki",
300
- "kut": "kutenai",
301
- "kv": "komi",
302
- "kw": "korni",
303
- "ky": "kirgiisi",
304
- "la": "ladina",
305
- "lad": "ladiino",
306
- "lag": "langi",
307
- "lah": "lahnda",
308
- "lam": "lamba",
309
- "lb": "letseburgi",
310
- "lez": "lesgi",
311
- "lg": "ganda",
312
- "li": "limburgi",
313
- "lij": "liguuri",
314
- "liv": "liivi",
315
- "lkt": "lakota",
316
- "lmo": "lombardi",
317
- "ln": "lingala",
318
- "lo": "lao",
319
- "lol": "mongo",
320
- "lou": "Louisiana kreoolkeel",
321
- "loz": "lozi",
322
- "lrc": "põhjaluri",
323
- "lt": "leedu",
324
- "ltg": "latgali",
325
- "lu": "luba",
326
- "lua": "lulua",
327
- "lui": "luisenjo",
328
- "lun": "lunda",
329
- "luo": "luo",
330
- "lus": "lušei",
331
- "luy": "luhja",
332
- "lv": "läti",
333
- "lzh": "klassikaline hiina",
334
- "lzz": "lazi",
335
- "mad": "madura",
336
- "maf": "mafa",
337
- "mag": "magahi",
338
- "mai": "maithili",
339
- "mak": "makassari",
340
- "man": "malinke",
341
- "mas": "masai",
342
- "mde": "maba",
343
- "mdf": "mokša",
344
- "mdr": "mandari",
345
- "men": "mende",
346
- "mer": "meru",
347
- "mfe": "Mauritiuse kreoolkeel",
348
- "mg": "malagassi",
349
- "mga": "keskiiri",
350
- "mgh": "makhuwa-meetto",
351
- "mgo": "meta",
352
- "mh": "maršalli",
353
- "mi": "maoori",
354
- "mic": "mikmaki",
355
- "min": "minangkabau",
356
- "mk": "makedoonia",
357
- "ml": "malajalami",
358
- "mn": "mongoli",
359
- "mnc": "mandžu",
360
- "mni": "manipuri",
361
- "moh": "mohoogi",
362
- "mos": "more",
363
- "mr": "marathi",
364
- "mrj": "mäemari",
365
- "ms": "malai",
366
- "mt": "malta",
367
- "mua": "mundangi",
368
- "mul": "mitu keelt",
369
- "mus": "maskogi",
370
- "mwl": "miranda",
371
- "mwr": "marvari",
372
- "mwv": "mentavei",
373
- "my": "birma",
374
- "mye": "mjene",
375
- "myv": "ersa",
376
- "mzn": "mazandaraani",
377
- "na": "nauru",
378
- "nan": "lõunamini",
379
- "nap": "napoli",
380
- "naq": "nama",
381
- "nb": "norra bokmål",
382
- "nd": "põhjandebele",
383
- "nds": "alamsaksa",
384
- "nds_NL": "Hollandi alamsaksa",
385
- "ne": "nepali",
386
- "new": "nevari",
387
- "ng": "ndonga",
388
- "nia": "niasi",
389
- "niu": "niue",
390
- "njo": "ao",
391
- "nl": "hollandi",
392
- "nl_BE": "flaami",
393
- "nmg": "kwasio",
394
- "nn": "uusnorra",
395
- "nnh": "ngiembooni",
396
- "no": "norra",
397
- "nog": "nogai",
398
- "non": "vanapõhjala",
399
- "nov": "noviaal",
400
- "nqo": "nkoo",
401
- "nr": "lõunandebele",
402
- "nso": "põhjasotho",
403
- "nus": "nueri",
404
- "nv": "navaho",
405
- "nwc": "vananevari",
406
- "ny": "njandža",
407
- "nym": "njamvesi",
408
- "nyn": "nkole",
409
- "nyo": "njoro",
410
- "nzi": "nzima",
411
- "oc": "oksitaani",
412
- "oj": "odžibvei",
413
- "om": "oromo",
414
- "or": "oria",
415
- "os": "osseedi",
416
- "osa": "oseidži",
417
- "ota": "osmanitürgi",
418
- "pa": "pandžabi",
419
- "pag": "pangasinani",
420
- "pal": "pahlavi",
421
- "pam": "pampanga",
422
- "pap": "papiamento",
423
- "pau": "belau",
424
- "pcd": "pikardi",
425
- "pcm": "Nigeeria pidžinkeel",
426
- "pdc": "Pennsylvania saksa",
427
- "pdt": "mennoniidisaksa",
428
- "peo": "vanapärsia",
429
- "pfl": "Pfalzi",
430
- "phn": "foiniikia",
431
- "pi": "paali",
432
- "pl": "poola",
433
- "pms": "piemonte",
434
- "pnt": "pontose",
435
- "pon": "poonpei",
436
- "prg": "preisi",
437
- "pro": "vanaprovansi",
438
- "ps": "puštu",
439
- "pt": "portugali",
440
- "pt_BR": "Brasiilia portugali",
441
- "pt_PT": "Euroopa portugali",
442
- "qu": "ketšua",
443
- "quc": "kitše",
444
- "raj": "radžastani",
445
- "rap": "rapanui",
446
- "rar": "rarotonga",
447
- "rgn": "romanja",
448
- "rif": "riifi",
449
- "rm": "romanši",
450
- "rn": "rundi",
451
- "ro": "rumeenia",
452
- "ro_MD": "moldova",
453
- "rof": "rombo",
454
- "rom": "mustlaskeel",
455
- "root": "root",
456
- "rtm": "rotuma",
457
- "ru": "vene",
458
- "rue": "russiini",
459
- "rug": "roviana",
460
- "rup": "aromuuni",
461
- "rw": "ruanda",
462
- "rwk": "rvaa",
463
- "sa": "sanskriti",
464
- "sad": "sandave",
465
- "sah": "jakuudi",
466
- "sam": "Samaaria aramea",
467
- "saq": "samburu",
468
- "sas": "sasaki",
469
- "sat": "santali",
470
- "saz": "sauraštra",
471
- "sba": "ngambai",
472
- "sbp": "sangu",
473
- "sc": "sardi",
474
- "scn": "sitsiilia",
475
- "sco": "šoti",
476
- "sd": "sindhi",
477
- "sdh": "lõunakurdi",
478
- "se": "põhjasaami",
479
- "see": "seneka",
480
- "seh": "sena",
481
- "sei": "seri",
482
- "sel": "sölkupi",
483
- "ses": "koyraboro senni",
484
- "sg": "sango",
485
- "sga": "vanaiiri",
486
- "sgs": "žemaidi",
487
- "sh": "serbia-horvaadi",
488
- "shi": "šilha",
489
- "shn": "šani",
490
- "shu": "Tšaadi araabia",
491
- "si": "singali",
492
- "sid": "sidamo",
493
- "sk": "slovaki",
494
- "sl": "sloveeni",
495
- "sli": "alamsileesia",
496
- "sly": "selajari",
497
- "sm": "samoa",
498
- "sma": "lõunasaami",
499
- "smj": "Lule saami",
500
- "smn": "Inari saami",
501
- "sms": "koltasaami",
502
- "sn": "šona",
503
- "snk": "soninke",
504
- "so": "somaali",
505
- "sog": "sogdi",
506
- "sq": "albaania",
507
- "sr": "serbia",
508
- "srn": "sranani",
509
- "srr": "sereri",
510
- "ss": "svaasi",
511
- "ssy": "saho",
512
- "st": "lõunasotho",
513
- "stq": "saterfriisi",
514
- "su": "sunda",
515
- "suk": "sukuma",
516
- "sus": "susu",
517
- "sux": "sumeri",
518
- "sv": "rootsi",
519
- "sw": "suahiili",
520
- "sw_CD": "Kongo suahiili",
521
- "swb": "komoori",
522
- "syc": "vanasüüria",
523
- "syr": "süüria",
524
- "szl": "sileesia",
525
- "ta": "tamili",
526
- "tcy": "tulu",
527
- "te": "telugu",
528
- "tem": "temne",
529
- "teo": "teso",
530
- "ter": "tereno",
531
- "tet": "tetumi",
532
- "tg": "tadžiki",
533
- "th": "tai",
534
- "ti": "tigrinja",
535
- "tig": "tigree",
536
- "tiv": "tivi",
537
- "tk": "türkmeeni",
538
- "tkl": "tokelau",
539
- "tkr": "tsahhi",
540
- "tl": "tagalogi",
541
- "tlh": "klingoni",
542
- "tli": "tlingiti",
543
- "tly": "talõši",
544
- "tmh": "tamašeki",
545
- "tn": "tsvana",
546
- "to": "tonga",
547
- "tog": "tšitonga",
548
- "tpi": "uusmelaneesia",
549
- "tr": "türgi",
550
- "tru": "turojo",
551
- "trv": "taroko",
552
- "ts": "tsonga",
553
- "tsd": "tsakoonia",
554
- "tsi": "tšimši",
555
- "tt": "tatari",
556
- "ttt": "lõunataadi",
557
- "tum": "tumbuka",
558
- "tvl": "tuvalu",
559
- "tw": "tvii",
560
- "twq": "taswaqi",
561
- "ty": "tahiti",
562
- "tyv": "tõva",
563
- "tzm": "tamasikti",
564
- "udm": "udmurdi",
565
- "ug": "uiguuri",
566
- "uga": "ugariti",
567
- "uk": "ukraina",
568
- "umb": "umbundu",
569
- "und": "määramata keel",
570
- "ur": "urdu",
571
- "uz": "usbeki",
572
- "vai": "vai",
573
- "ve": "venda",
574
- "vec": "veneti",
575
- "vep": "vepsa",
576
- "vi": "vietnami",
577
- "vls": "lääneflaami",
578
- "vmf": "Maini frangi",
579
- "vo": "volapüki",
580
- "vot": "vadja",
581
- "vro": "võru",
582
- "vun": "vundžo",
583
- "wa": "vallooni",
584
- "wae": "walseri",
585
- "wal": "volaita",
586
- "war": "varai",
587
- "was": "vašo",
588
- "wbp": "varlpiri",
589
- "wo": "volofi",
590
- "wuu": "uu",
591
- "xal": "kalmõki",
592
- "xh": "koosa",
593
- "xmf": "megreli",
594
- "xog": "soga",
595
- "yao": "jao",
596
- "yap": "japi",
597
- "yav": "yangbeni",
598
- "ybb": "jemba",
599
- "yi": "jidiši",
600
- "yo": "joruba",
601
- "yrl": "njengatu",
602
- "yue": "kantoni",
603
- "za": "tšuangi",
604
- "zap": "sapoteegi",
605
- "zbl": "Blissi sümbolid",
606
- "zea": "zeelandi",
607
- "zen": "zenaga",
608
- "zgh": "tamasikti (Maroko)",
609
- "zh": "hiina",
610
- "zh_Hans": "lihtsustatud hiina",
611
- "zh_Hant": "traditsiooniline hiina",
612
- "zu": "suulu",
613
- "zun": "sunji",
614
- "zxx": "mittekeeleline",
615
- "zza": "zaza"
616
- },
617
- "scripts": {
618
- "Adlm": "Adlm",
619
- "Afak": "afaka",
620
- "Aghb": "albaani",
621
- "Ahom": "ahomi",
622
- "Arab": "araabia",
623
- "Arab-alt-variant": "pärsia-araabia",
624
- "Armi": "vanaaramea",
625
- "Armn": "armeenia",
626
- "Avst": "avesta",
627
- "Bali": "bali",
628
- "Bamu": "bamumi",
629
- "Bass": "bassa",
630
- "Batk": "bataki",
631
- "Beng": "bengali",
632
- "Bhks": "Bhks",
633
- "Blis": "Blissi sümbolid",
634
- "Bopo": "bopomofo",
635
- "Brah": "braahmi",
636
- "Brai": "punktkiri",
637
- "Bugi": "bugi",
638
- "Buhd": "buhidi",
639
- "Cakm": "tšaakma",
640
- "Cans": "Kanada põlisrahvaste ühtlustatud silpkiri",
641
- "Cari": "kaaria",
642
- "Cham": "tšaami",
643
- "Cher": "tšerokii",
644
- "Cirt": "Cirthi",
645
- "Copt": "kopti",
646
- "Cprt": "Küprose silpkiri",
647
- "Cyrl": "kirillitsa",
648
- "Cyrs": "kürilliline kirikuslaavi",
649
- "Deva": "devanaagari",
650
- "Dogr": "Dogr",
651
- "Dsrt": "desereti",
652
- "Dupl": "Duployé kiirkiri",
653
- "Egyd": "egiptuse demootiline",
654
- "Egyh": "egiptuse hieraatiline",
655
- "Egyp": "egiptuse hieroglüüfkiri",
656
- "Elba": "Elbasani",
657
- "Elym": "Elym",
658
- "Ethi": "etioopia",
659
- "Geok": "hutsuri",
660
- "Geor": "gruusia",
661
- "Glag": "glagoolitsa",
662
- "Gong": "Gong",
663
- "Gonm": "Masarami gondi",
664
- "Goth": "gooti",
665
- "Gran": "grantha",
666
- "Grek": "kreeka",
667
- "Gujr": "gudžarati",
668
- "Guru": "gurmukhi",
669
- "Hanb": "hanbi",
670
- "Hang": "korea",
671
- "Hani": "hani",
672
- "Hano": "hanunoo",
673
- "Hans": "lihtsustatud",
674
- "Hans-alt-stand-alone": "lihtsustatud hani",
675
- "Hant": "traditsiooniline",
676
- "Hant-alt-stand-alone": "traditsiooniline hani",
677
- "Hatr": "Hatra",
678
- "Hebr": "heebrea",
679
- "Hira": "hiragana",
680
- "Hluw": "Anatoolia hieroglüüfkiri",
681
- "Hmng": "phahau-hmongi kiri",
682
- "Hmnp": "Hmnp",
683
- "Hrkt": "jaapani silpkirjad",
684
- "Hung": "vanaungari",
685
- "Inds": "Induse",
686
- "Ital": "vanaitali",
687
- "Jamo": "jamo",
688
- "Java": "jaava",
689
- "Jpan": "jaapani",
690
- "Jurc": "tšurtšeni",
691
- "Kali": "kaja-lii",
692
- "Kana": "katakana",
693
- "Khar": "kharoshthi",
694
- "Khmr": "khmeeri",
695
- "Khoj": "hodžki",
696
- "Knda": "kannada",
697
- "Kore": "korea segakiri",
698
- "Kpel": "kpelle",
699
- "Kthi": "kaithi",
700
- "Lana": "tai-thami",
701
- "Laoo": "lao",
702
- "Latf": "ladina fraktuurkiri",
703
- "Latg": "ladina gaeli",
704
- "Latn": "ladina",
705
- "Lepc": "leptša",
706
- "Limb": "limbu",
707
- "Lina": "lineaarkiri A",
708
- "Linb": "lineaarkiri B",
709
- "Lisu": "lisu",
710
- "Loma": "loma",
711
- "Lyci": "lüükia",
712
- "Lydi": "lüüdia",
713
- "Mahj": "mahaadžani",
714
- "Maka": "Maka",
715
- "Mand": "mandea",
716
- "Mani": "mani",
717
- "Marc": "Marc",
718
- "Maya": "maaja hieroglüüfkiri",
719
- "Medf": "Medf",
720
- "Mend": "mende",
721
- "Merc": "meroe kursiivkiri",
722
- "Mero": "meroe",
723
- "Mlym": "malajalami",
724
- "Modi": "modi",
725
- "Mong": "mongoli",
726
- "Moon": "Mooni",
727
- "Mroo": "mruu",
728
- "Mtei": "meitei",
729
- "Mult": "Multani",
730
- "Mymr": "birma",
731
- "Nand": "Nand",
732
- "Narb": "Põhja-Araabia",
733
- "Nbat": "Nabatea",
734
- "Newa": "nevari",
735
- "Nkgb": "nasi",
736
- "Nkoo": "nkoo",
737
- "Nshu": "nüšu",
738
- "Ogam": "ogam",
739
- "Olck": "santali",
740
- "Orkh": "Orhoni",
741
- "Orya": "oria",
742
- "Osge": "oseidži",
743
- "Osma": "osmani",
744
- "Palm": "Palmyra",
745
- "Pauc": "Pauc",
746
- "Perm": "vanapermi",
747
- "Phag": "phakpa",
748
- "Phli": "pahlavi raidkiri",
749
- "Phlp": "pahlavi psalmikiri",
750
- "Phlv": "pahlavi raamatukiri",
751
- "Phnx": "foiniikia",
752
- "Plrd": "Pollardi miao",
753
- "Prti": "partia raidkiri",
754
- "Qaag": "Qaag",
755
- "Rjng": "redžangi",
756
- "Rohg": "Rohg",
757
- "Roro": "rongorongo",
758
- "Runr": "ruunikiri",
759
- "Samr": "Samaaria",
760
- "Sara": "sarati",
761
- "Sarb": "Lõuna-Araabia",
762
- "Saur": "sauraštra",
763
- "Sgnw": "viipekiri",
764
- "Shaw": "Shaw’ kiri",
765
- "Shrd": "šaarada",
766
- "Sidd": "siddhami",
767
- "Sind": "hudavadi",
768
- "Sinh": "singali",
769
- "Sogd": "Sogd",
770
- "Sogo": "Sogo",
771
- "Sora": "sora",
772
- "Soyo": "sojombo",
773
- "Sund": "sunda",
774
- "Sylo": "siloti",
775
- "Syrc": "süüria",
776
- "Syre": "süüria estrangelo",
777
- "Syrj": "läänesüüria",
778
- "Syrn": "idasüüria",
779
- "Tagb": "tagbanva",
780
- "Takr": "taakri",
781
- "Tale": "tai-löö",
782
- "Talu": "uus tai-lõõ",
783
- "Taml": "tamili",
784
- "Tang": "tanguudi",
785
- "Tavt": "tai-vieti",
786
- "Telu": "telugu",
787
- "Teng": "Tengwari",
788
- "Tfng": "tifinagi",
789
- "Tglg": "tagalogi",
790
- "Thaa": "taana",
791
- "Thai": "tai",
792
- "Tibt": "tiibeti",
793
- "Tirh": "tirhuta",
794
- "Ugar": "ugariti",
795
- "Vaii": "vai",
796
- "Visp": "nähtava kõne",
797
- "Wara": "hoo",
798
- "Wcho": "vantšo",
799
- "Wole": "voleai",
800
- "Xpeo": "vanapärsia",
801
- "Xsux": "sumeri-akadi kiilkiri",
802
- "Yiii": "jii",
803
- "Zanb": "Dzanabadzari ruutkiri",
804
- "Zinh": "päritud",
805
- "Zmth": "matemaatiline tähistus",
806
- "Zsye": "emoji",
807
- "Zsym": "sümbolid",
808
- "Zxxx": "kirjakeeleta",
809
- "Zyyy": "üldine",
810
- "Zzzz": "määramata kiri"
811
- },
812
- "territories": {
813
- "142": "Aasia",
814
- "143": "Kesk-Aasia",
815
- "145": "Lääne-Aasia",
816
- "150": "Euroopa",
817
- "151": "Ida-Euroopa",
818
- "154": "Põhja-Euroopa",
819
- "155": "Lääne-Euroopa",
820
- "202": "Sahara-tagune Aafrika",
821
- "419": "Ladina-Ameerika",
822
- "001": "maailm",
823
- "002": "Aafrika",
824
- "003": "Põhja-Ameerika",
825
- "005": "Lõuna-Ameerika",
826
- "009": "Okeaania",
827
- "011": "Lääne-Aafrika",
828
- "013": "Kesk-Ameerika",
829
- "014": "Ida-Aafrika",
830
- "015": "Põhja-Aafrika",
831
- "017": "Kesk-Aafrika",
832
- "018": "Lõuna-Aafrika",
833
- "019": "Ameerika",
834
- "021": "Ameerika põhjaosa",
835
- "029": "Kariibi piirkond",
836
- "030": "Ida-Aasia",
837
- "034": "Lõuna-Aasia",
838
- "035": "Kagu-Aasia",
839
- "039": "Lõuna-Euroopa",
840
- "053": "Australaasia",
841
- "054": "Melaneesia",
842
- "057": "Mikroneesia (piirkond)",
843
- "061": "Polüneesia",
844
- "AC": "Ascensioni saar",
845
- "AD": "Andorra",
846
- "AE": "Araabia Ühendemiraadid",
847
- "AF": "Afganistan",
848
- "AG": "Antigua ja Barbuda",
849
- "AI": "Anguilla",
850
- "AL": "Albaania",
851
- "AM": "Armeenia",
852
- "AO": "Angola",
853
- "AQ": "Antarktika",
854
- "AR": "Argentina",
855
- "AS": "Ameerika Samoa",
856
- "AT": "Austria",
857
- "AU": "Austraalia",
858
- "AW": "Aruba",
859
- "AX": "Ahvenamaa",
860
- "AZ": "Aserbaidžaan",
861
- "BA": "Bosnia ja Hertsegoviina",
862
- "BB": "Barbados",
863
- "BD": "Bangladesh",
864
- "BE": "Belgia",
865
- "BF": "Burkina Faso",
866
- "BG": "Bulgaaria",
867
- "BH": "Bahrein",
868
- "BI": "Burundi",
869
- "BJ": "Benin",
870
- "BL": "Saint-Barthélemy",
871
- "BM": "Bermuda",
872
- "BN": "Brunei",
873
- "BO": "Boliivia",
874
- "BQ": "Hollandi Kariibi mere saared",
875
- "BR": "Brasiilia",
876
- "BS": "Bahama",
877
- "BT": "Bhutan",
878
- "BV": "Bouvet’ saar",
879
- "BW": "Botswana",
880
- "BY": "Valgevene",
881
- "BZ": "Belize",
882
- "CA": "Kanada",
883
- "CC": "Kookossaared",
884
- "CD": "Kongo DV",
885
- "CD-alt-variant": "Kongo-Kinshasa",
886
- "CF": "Kesk-Aafrika Vabariik",
887
- "CG": "Kongo Vabariik",
888
- "CG-alt-variant": "Kongo-Brazzaville",
889
- "CH": "Šveits",
890
- "CI": "Côte d’Ivoire",
891
- "CI-alt-variant": "Elevandiluurannik",
892
- "CK": "Cooki saared",
893
- "CL": "Tšiili",
894
- "CM": "Kamerun",
895
- "CN": "Hiina",
896
- "CO": "Colombia",
897
- "CP": "Clippertoni saar",
898
- "CR": "Costa Rica",
899
- "CU": "Kuuba",
900
- "CV": "Roheneemesaared",
901
- "CW": "Curaçao",
902
- "CX": "Jõulusaar",
903
- "CY": "Küpros",
904
- "CZ": "Tšehhi",
905
- "CZ-alt-variant": "Tšehhia",
906
- "DE": "Saksamaa",
907
- "DG": "Diego Garcia",
908
- "DJ": "Djibouti",
909
- "DK": "Taani",
910
- "DM": "Dominica",
911
- "DO": "Dominikaani Vabariik",
912
- "DZ": "Alžeeria",
913
- "EA": "Ceuta ja Melilla",
914
- "EC": "Ecuador",
915
- "EE": "Eesti",
916
- "EG": "Egiptus",
917
- "EH": "Lääne-Sahara",
918
- "ER": "Eritrea",
919
- "ES": "Hispaania",
920
- "ET": "Etioopia",
921
- "EU": "Euroopa Liit",
922
- "EZ": "euroala",
923
- "FI": "Soome",
924
- "FJ": "Fidži",
925
- "FK": "Falklandi saared",
926
- "FK-alt-variant": "Malviini saared",
927
- "FM": "Mikroneesia",
928
- "FO": "Fääri saared",
929
- "FR": "Prantsusmaa",
930
- "GA": "Gabon",
931
- "GB": "Suurbritannia",
932
- "GB-alt-short": "ÜK",
933
- "GD": "Grenada",
934
- "GE": "Gruusia",
935
- "GF": "Prantsuse Guajaana",
936
- "GG": "Guernsey",
937
- "GH": "Ghana",
938
- "GI": "Gibraltar",
939
- "GL": "Gröönimaa",
940
- "GM": "Gambia",
941
- "GN": "Guinea",
942
- "GP": "Guadeloupe",
943
- "GQ": "Ekvatoriaal-Guinea",
944
- "GR": "Kreeka",
945
- "GS": "Lõuna-Georgia ja Lõuna-Sandwichi saared",
946
- "GT": "Guatemala",
947
- "GU": "Guam",
948
- "GW": "Guinea-Bissau",
949
- "GY": "Guyana",
950
- "HK": "Hongkong, Hiina",
951
- "HK-alt-short": "Hongkong",
952
- "HM": "Heardi ja McDonaldi saared",
953
- "HN": "Honduras",
954
- "HR": "Horvaatia",
955
- "HT": "Haiti",
956
- "HU": "Ungari",
957
- "IC": "Kanaari saared",
958
- "ID": "Indoneesia",
959
- "IE": "Iirimaa",
960
- "IL": "Iisrael",
961
- "IM": "Mani saar",
962
- "IN": "India",
963
- "IO": "Briti India ookeani ala",
964
- "IQ": "Iraak",
965
- "IR": "Iraan",
966
- "IS": "Island",
967
- "IT": "Itaalia",
968
- "JE": "Jersey",
969
- "JM": "Jamaica",
970
- "JO": "Jordaania",
971
- "JP": "Jaapan",
972
- "KE": "Keenia",
973
- "KG": "Kõrgõzstan",
974
- "KH": "Kambodža",
975
- "KI": "Kiribati",
976
- "KM": "Komoorid",
977
- "KN": "Saint Kitts ja Nevis",
978
- "KP": "Põhja-Korea",
979
- "KR": "Lõuna-Korea",
980
- "KW": "Kuveit",
981
- "KY": "Kaimanisaared",
982
- "KZ": "Kasahstan",
983
- "LA": "Laos",
984
- "LB": "Liibanon",
985
- "LC": "Saint Lucia",
986
- "LI": "Liechtenstein",
987
- "LK": "Sri Lanka",
988
- "LR": "Libeeria",
989
- "LS": "Lesotho",
990
- "LT": "Leedu",
991
- "LU": "Luksemburg",
992
- "LV": "Läti",
993
- "LY": "Liibüa",
994
- "MA": "Maroko",
995
- "MC": "Monaco",
996
- "MD": "Moldova",
997
- "ME": "Montenegro",
998
- "MF": "Saint-Martin",
999
- "MG": "Madagaskar",
1000
- "MH": "Marshalli Saared",
1001
- "MK": "Põhja-Makedoonia",
1002
- "MK-alt-variant": "MK",
1003
- "ML": "Mali",
1004
- "MM": "Myanmar (Birma)",
1005
- "MN": "Mongoolia",
1006
- "MO": "Macau, Hiina",
1007
- "MO-alt-short": "Macau",
1008
- "MP": "Põhja-Mariaanid",
1009
- "MQ": "Martinique",
1010
- "MR": "Mauritaania",
1011
- "MS": "Montserrat",
1012
- "MT": "Malta",
1013
- "MU": "Mauritius",
1014
- "MV": "Maldiivid",
1015
- "MW": "Malawi",
1016
- "MX": "Mehhiko",
1017
- "MY": "Malaisia",
1018
- "MZ": "Mosambiik",
1019
- "NA": "Namiibia",
1020
- "NC": "Uus-Kaledoonia",
1021
- "NE": "Niger",
1022
- "NF": "Norfolk",
1023
- "NG": "Nigeeria",
1024
- "NI": "Nicaragua",
1025
- "NL": "Holland",
1026
- "NO": "Norra",
1027
- "NP": "Nepal",
1028
- "NR": "Nauru",
1029
- "NU": "Niue",
1030
- "NZ": "Uus-Meremaa",
1031
- "OM": "Omaan",
1032
- "PA": "Panama",
1033
- "PE": "Peruu",
1034
- "PF": "Prantsuse Polüneesia",
1035
- "PG": "Paapua Uus-Guinea",
1036
- "PH": "Filipiinid",
1037
- "PK": "Pakistan",
1038
- "PL": "Poola",
1039
- "PM": "Saint-Pierre ja Miquelon",
1040
- "PN": "Pitcairni saared",
1041
- "PR": "Puerto Rico",
1042
- "PS": "Palestiina alad",
1043
- "PS-alt-short": "Palestiina",
1044
- "PT": "Portugal",
1045
- "PW": "Belau",
1046
- "PY": "Paraguay",
1047
- "QA": "Katar",
1048
- "QO": "Okeaania hajasaared",
1049
- "RE": "Réunion",
1050
- "RO": "Rumeenia",
1051
- "RS": "Serbia",
1052
- "RU": "Venemaa",
1053
- "RW": "Rwanda",
1054
- "SA": "Saudi Araabia",
1055
- "SB": "Saalomoni Saared",
1056
- "SC": "Seišellid",
1057
- "SD": "Sudaan",
1058
- "SE": "Rootsi",
1059
- "SG": "Singapur",
1060
- "SH": "Saint Helena",
1061
- "SI": "Sloveenia",
1062
- "SJ": "Svalbard ja Jan Mayen",
1063
- "SK": "Slovakkia",
1064
- "SL": "Sierra Leone",
1065
- "SM": "San Marino",
1066
- "SN": "Senegal",
1067
- "SO": "Somaalia",
1068
- "SR": "Suriname",
1069
- "SS": "Lõuna-Sudaan",
1070
- "ST": "São Tomé ja Príncipe",
1071
- "SV": "El Salvador",
1072
- "SX": "Sint Maarten",
1073
- "SY": "Süüria",
1074
- "SZ": "Svaasimaa",
1075
- "SZ-alt-variant": "eSwatini",
1076
- "TA": "Tristan da Cunha",
1077
- "TC": "Turks ja Caicos",
1078
- "TD": "Tšaad",
1079
- "TF": "Prantsuse Lõunaalad",
1080
- "TG": "Togo",
1081
- "TH": "Tai",
1082
- "TJ": "Tadžikistan",
1083
- "TK": "Tokelau",
1084
- "TL": "Ida-Timor",
1085
- "TL-alt-variant": "Timor-Leste",
1086
- "TM": "Türkmenistan",
1087
- "TN": "Tuneesia",
1088
- "TO": "Tonga",
1089
- "TR": "Türgi",
1090
- "TT": "Trinidad ja Tobago",
1091
- "TV": "Tuvalu",
1092
- "TW": "Taiwan, Hiina",
1093
- "TZ": "Tansaania",
1094
- "UA": "Ukraina",
1095
- "UG": "Uganda",
1096
- "UM": "Ühendriikide hajasaared",
1097
- "UN": "Ühendatud Rahvaste Organisatsioon",
1098
- "UN-alt-short": "ÜRO",
1099
- "US": "Ameerika Ühendriigid",
1100
- "US-alt-short": "USA",
1101
- "UY": "Uruguay",
1102
- "UZ": "Usbekistan",
1103
- "VA": "Vatikan",
1104
- "VC": "Saint Vincent ja Grenadiinid",
1105
- "VE": "Venezuela",
1106
- "VG": "Briti Neitsisaared",
1107
- "VI": "USA Neitsisaared",
1108
- "VN": "Vietnam",
1109
- "VU": "Vanuatu",
1110
- "WF": "Wallis ja Futuna",
1111
- "WS": "Samoa",
1112
- "XA": "pseudo-aktsent",
1113
- "XB": "pseudo-Bidi",
1114
- "XK": "Kosovo",
1115
- "YE": "Jeemen",
1116
- "YT": "Mayotte",
1117
- "ZA": "Lõuna-Aafrika Vabariik",
1118
- "ZM": "Sambia",
1119
- "ZW": "Zimbabwe",
1120
- "ZZ": "Tundmatu piirkond"
1121
- },
1122
- "orientation": "left-to-right",
1123
- "ca-gregorian": {
1124
- "dateFormats": {
1125
- "full": "EEEE, d. MMMM y",
1126
- "long": "d. MMMM y",
1127
- "medium": "d. MMM y",
1128
- "short": "dd.MM.yy"
1129
- },
1130
- "timeFormats": {
1131
- "full": "HH:mm:ss zzzz",
1132
- "long": "HH:mm:ss z",
1133
- "medium": "HH:mm:ss",
1134
- "short": "HH:mm"
1135
- },
1136
- "dateTimeFormats": {
1137
- "full": "{1} {0}",
1138
- "long": "{1} {0}",
1139
- "medium": "{1} {0}",
1140
- "short": "{1} {0}",
1141
- "availableFormats": {
1142
- "Bh": "h B",
1143
- "Bhm": "h:mm B",
1144
- "Bhms": "h:mm:ss B",
1145
- "d": "d",
1146
- "E": "ccc",
1147
- "EBhm": "E h:mm B",
1148
- "EBhms": "E h:mm:ss B",
1149
- "Ed": "E, d",
1150
- "Ehm": "E h:mm a",
1151
- "EHm": "E HH:mm",
1152
- "Ehms": "E h:mm:ss a",
1153
- "EHms": "E HH:mm:ss",
1154
- "Gy": "y G",
1155
- "GyMMM": "MMM y G",
1156
- "GyMMMd": "d. MMM y G",
1157
- "GyMMMEd": "E, d. MMMM y G",
1158
- "h": "h a",
1159
- "H": "HH",
1160
- "hm": "h:mm a",
1161
- "Hm": "HH:mm",
1162
- "hms": "h:mm:ss a",
1163
- "Hms": "HH:mm:ss",
1164
- "hmsv": "h:mm:ss a v",
1165
- "Hmsv": "HH:mm:ss v",
1166
- "hmv": "h:mm a v",
1167
- "Hmv": "HH:mm v",
1168
- "M": "M",
1169
- "Md": "d.M",
1170
- "MEd": "E, d.M",
1171
- "MMM": "MMMM",
1172
- "MMMd": "d. MMM",
1173
- "MMMEd": "E, d. MMM",
1174
- "MMMMd": "d. MMMM",
1175
- "MMMMEd": "E, d. MMMM",
1176
- "mmss": "mm:ss",
1177
- "ms": "mm:ss",
1178
- "y": "y",
1179
- "yM": "M.y",
1180
- "yMd": "d.M.y",
1181
- "yMEd": "E, d.M.y",
1182
- "yMMM": "MMM y",
1183
- "yMMMd": "d. MMM y",
1184
- "yMMMEd": "E, d. MMMM y",
1185
- "yMMMM": "MMMM y",
1186
- "yQQQ": "QQQ y",
1187
- "yQQQQ": "QQQQ y",
1188
- "MMMMW": "MMMM (W. 'nädal')",
1189
- "yw": "w. 'nädal' (Y)"
1190
- },
1191
- "appendItems": {
1192
- "Day": "{0} ({2}: {1})",
1193
- "Day-Of-Week": "{0} {1}",
1194
- "Era": "{1} {0}",
1195
- "Hour": "{0} ({2}: {1})",
1196
- "Minute": "{0} ({2}: {1})",
1197
- "Month": "{0} ({2}: {1})",
1198
- "Quarter": "{0} ({2}: {1})",
1199
- "Second": "{0} ({2}: {1})",
1200
- "Timezone": "{0} {1}",
1201
- "Week": "{0} ({2}: {1})",
1202
- "Year": "{1} {0}"
1203
- },
1204
- "intervalFormats": {
1205
- "intervalFormatFallback": "{0} – {1}",
1206
- "Bh": {
1207
- "B": "h B – h B",
1208
- "h": "h–h B"
1209
- },
1210
- "Bhm": {
1211
- "B": "h:mm B – h:mm B",
1212
- "h": "h:mm–h:mm B",
1213
- "m": "h:mm–h:mm B"
1214
- },
1215
- "d": {
1216
- "d": "d–d"
1217
- },
1218
- "Gy": {
1219
- "G": "y G – y G",
1220
- "y": "y–y G"
1221
- },
1222
- "GyM": {
1223
- "G": "GGGGG y-MM – GGGGG y-MM",
1224
- "M": "GGGGG y-MM – y-MM",
1225
- "y": "GGGGG y-MM – y-MM"
1226
- },
1227
- "GyMd": {
1228
- "d": "GGGGG y-MM-dd – y-MM-dd",
1229
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1230
- "M": "GGGGG y-MM-dd – y-MM-dd",
1231
- "y": "GGGGG y-MM-dd – y-MM-dd"
1232
- },
1233
- "GyMEd": {
1234
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1235
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1236
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1237
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1238
- },
1239
- "GyMMM": {
1240
- "G": "MMM y G – MMM y G",
1241
- "M": "MMM–MMM y G",
1242
- "y": "MMM y – MMM y G"
1243
- },
1244
- "GyMMMd": {
1245
- "d": "d.–d. MMM y G",
1246
- "G": "d. MMM y G – d. MMM y G",
1247
- "M": "d. MMM – d. MMM y G",
1248
- "y": "d. MMM y – d. MMM y G"
1249
- },
1250
- "GyMMMEd": {
1251
- "d": "E, d. MMM – E, d. MMM y G",
1252
- "G": "E, d. MMM y G – E, d. MMM y G",
1253
- "M": "E, d. MMM – E, d. MMM y G",
1254
- "y": "E, d. MMM y – E, d. MMM y G"
1255
- },
1256
- "h": {
1257
- "a": "h a – h a",
1258
- "h": "h–h a"
1259
- },
1260
- "H": {
1261
- "H": "HH–HH"
1262
- },
1263
- "hm": {
1264
- "a": "h:mm a – h:mm a",
1265
- "h": "h:mm–h:mm a",
1266
- "m": "h:mm–h:mm a"
1267
- },
1268
- "Hm": {
1269
- "H": "HH:mm–HH:mm",
1270
- "m": "HH:mm–HH:mm"
1271
- },
1272
- "hmv": {
1273
- "a": "h:mm a – h:mm a v",
1274
- "h": "h:mm–h:mm a v",
1275
- "m": "h:mm–h:mm a v"
1276
- },
1277
- "Hmv": {
1278
- "H": "HH:mm–HH:mm v",
1279
- "m": "HH:mm–HH:mm v"
1280
- },
1281
- "hv": {
1282
- "a": "h a – h a v",
1283
- "h": "h–h a v"
1284
- },
1285
- "Hv": {
1286
- "H": "HH–HH v"
1287
- },
1288
- "M": {
1289
- "M": "MM–MM"
1290
- },
1291
- "Md": {
1292
- "d": "dd.MM–dd.MM",
1293
- "M": "dd.MM–dd.MM"
1294
- },
1295
- "MEd": {
1296
- "d": "E, dd.MM – E, dd.MM",
1297
- "M": "E, dd.MM – E, dd.MM"
1298
- },
1299
- "MMM": {
1300
- "M": "MMM–MMM"
1301
- },
1302
- "MMMd": {
1303
- "d": "d.–d. MMM",
1304
- "M": "d. MMM – d. MMM"
1305
- },
1306
- "MMMEd": {
1307
- "d": "E, d. MMM – E, d. MMM",
1308
- "M": "E, d. MMM – E, d. MMM"
1309
- },
1310
- "y": {
1311
- "y": "y–y"
1312
- },
1313
- "yM": {
1314
- "M": "MM.y–MM.y",
1315
- "y": "MM.y–MM.y"
1316
- },
1317
- "yMd": {
1318
- "d": "dd.MM.y–dd.MM.y",
1319
- "M": "dd.MM.y–dd.MM.y",
1320
- "y": "dd.MM.y–dd.MM.y"
1321
- },
1322
- "yMEd": {
1323
- "d": "E, dd.MM.y – E, dd.MM.y",
1324
- "M": "E, dd.MM.y – E, dd.MM.y",
1325
- "y": "E, dd.MM.y – E, dd.MM.y"
1326
- },
1327
- "yMMM": {
1328
- "M": "MMM–MMM y",
1329
- "y": "MMM y – MMM y"
1330
- },
1331
- "yMMMd": {
1332
- "d": "d.–d. MMM y",
1333
- "M": "d. MMM – d. MMM y",
1334
- "y": "d. MMM y – d. MMM y"
1335
- },
1336
- "yMMMEd": {
1337
- "d": "E, d. MMM – E, d. MMM y",
1338
- "M": "E, d. MMM – E, d. MMM y",
1339
- "y": "E, d. MMM y – E, d. MMM y"
1340
- },
1341
- "yMMMM": {
1342
- "M": "MMMM–MMMM y",
1343
- "y": "MMMM y – MMMM y"
1344
- }
1345
- }
1346
- },
1347
- "months": {
1348
- "format": {
1349
- "abbreviated": [
1350
- "jaan",
1351
- "veebr",
1352
- "märts",
1353
- "apr",
1354
- "mai",
1355
- "juuni",
1356
- "juuli",
1357
- "aug",
1358
- "sept",
1359
- "okt",
1360
- "nov",
1361
- "dets"
1362
- ],
1363
- "narrow": [
1364
- "J",
1365
- "V",
1366
- "M",
1367
- "A",
1368
- "M",
1369
- "J",
1370
- "J",
1371
- "A",
1372
- "S",
1373
- "O",
1374
- "N",
1375
- "D"
1376
- ],
1377
- "wide": [
1378
- "jaanuar",
1379
- "veebruar",
1380
- "märts",
1381
- "aprill",
1382
- "mai",
1383
- "juuni",
1384
- "juuli",
1385
- "august",
1386
- "september",
1387
- "oktoober",
1388
- "november",
1389
- "detsember"
1390
- ]
1391
- },
1392
- "stand-alone": {
1393
- "abbreviated": [
1394
- "jaan",
1395
- "veebr",
1396
- "märts",
1397
- "apr",
1398
- "mai",
1399
- "juuni",
1400
- "juuli",
1401
- "aug",
1402
- "sept",
1403
- "okt",
1404
- "nov",
1405
- "dets"
1406
- ],
1407
- "narrow": [
1408
- "J",
1409
- "V",
1410
- "M",
1411
- "A",
1412
- "M",
1413
- "J",
1414
- "J",
1415
- "A",
1416
- "S",
1417
- "O",
1418
- "N",
1419
- "D"
1420
- ],
1421
- "wide": [
1422
- "jaanuar",
1423
- "veebruar",
1424
- "märts",
1425
- "aprill",
1426
- "mai",
1427
- "juuni",
1428
- "juuli",
1429
- "august",
1430
- "september",
1431
- "oktoober",
1432
- "november",
1433
- "detsember"
1434
- ]
1435
- }
1436
- },
1437
- "days": {
1438
- "format": {
1439
- "abbreviated": [
1440
- "P",
1441
- "E",
1442
- "T",
1443
- "K",
1444
- "N",
1445
- "R",
1446
- "L"
1447
- ],
1448
- "narrow": [
1449
- "P",
1450
- "E",
1451
- "T",
1452
- "K",
1453
- "N",
1454
- "R",
1455
- "L"
1456
- ],
1457
- "short": [
1458
- "P",
1459
- "E",
1460
- "T",
1461
- "K",
1462
- "N",
1463
- "R",
1464
- "L"
1465
- ],
1466
- "wide": [
1467
- "pühapäev",
1468
- "esmaspäev",
1469
- "teisipäev",
1470
- "kolmapäev",
1471
- "neljapäev",
1472
- "reede",
1473
- "laupäev"
1474
- ]
1475
- },
1476
- "stand-alone": {
1477
- "abbreviated": [
1478
- "P",
1479
- "E",
1480
- "T",
1481
- "K",
1482
- "N",
1483
- "R",
1484
- "L"
1485
- ],
1486
- "narrow": [
1487
- "P",
1488
- "E",
1489
- "T",
1490
- "K",
1491
- "N",
1492
- "R",
1493
- "L"
1494
- ],
1495
- "short": [
1496
- "P",
1497
- "E",
1498
- "T",
1499
- "K",
1500
- "N",
1501
- "R",
1502
- "L"
1503
- ],
1504
- "wide": [
1505
- "pühapäev",
1506
- "esmaspäev",
1507
- "teisipäev",
1508
- "kolmapäev",
1509
- "neljapäev",
1510
- "reede",
1511
- "laupäev"
1512
- ]
1513
- }
1514
- },
1515
- "quarters": {
1516
- "format": {
1517
- "abbreviated": [
1518
- "K1",
1519
- "K2",
1520
- "K3",
1521
- "K4"
1522
- ],
1523
- "narrow": [
1524
- "1",
1525
- "2",
1526
- "3",
1527
- "4"
1528
- ],
1529
- "wide": [
1530
- "1. kvartal",
1531
- "2. kvartal",
1532
- "3. kvartal",
1533
- "4. kvartal"
1534
- ]
1535
- },
1536
- "stand-alone": {
1537
- "abbreviated": [
1538
- "K1",
1539
- "K2",
1540
- "K3",
1541
- "K4"
1542
- ],
1543
- "narrow": [
1544
- "1.",
1545
- "2.",
1546
- "3.",
1547
- "4."
1548
- ],
1549
- "wide": [
1550
- "1. kvartal",
1551
- "2. kvartal",
1552
- "3. kvartal",
1553
- "4. kvartal"
1554
- ]
1555
- }
1556
- },
1557
- "dayPeriods": {
1558
- "format": {
1559
- "abbreviated": [
1560
- "AM",
1561
- "PM"
1562
- ],
1563
- "narrow": [
1564
- "AM",
1565
- "PM"
1566
- ],
1567
- "wide": [
1568
- "AM",
1569
- "PM"
1570
- ]
1571
- },
1572
- "stand-alone": {
1573
- "abbreviated": [
1574
- "AM",
1575
- "PM"
1576
- ],
1577
- "narrow": [
1578
- "AM",
1579
- "PM"
1580
- ],
1581
- "wide": [
1582
- "AM",
1583
- "PM"
1584
- ]
1585
- }
1586
- },
1587
- "era-wide": {
1588
- "0": "enne Kristust",
1589
- "1": "pärast Kristust"
1590
- },
1591
- "era-abbreviated": {
1592
- "0": "eKr",
1593
- "1": "pKr"
1594
- },
1595
- "era-narrow": {
1596
- "0": "eKr",
1597
- "1": "pKr"
1598
- }
1599
- },
1600
- "ca-islamic": {
1601
- "dateFormats": {
1602
- "full": "EEEE, d. MMMM y G",
1603
- "long": "d. MMMM y G",
1604
- "medium": "dd.MM.y G",
1605
- "short": "dd.MM.y GGGGG"
1606
- },
1607
- "timeFormats": {
1608
- "full": "HH:mm:ss zzzz",
1609
- "long": "HH:mm:ss z",
1610
- "medium": "HH:mm:ss",
1611
- "short": "HH:mm"
1612
- },
1613
- "dateTimeFormats": {
1614
- "full": "{1}, 'kell' {0}",
1615
- "long": "{1}, 'kell' {0}",
1616
- "medium": "{1} {0}",
1617
- "short": "{1} {0}",
1618
- "availableFormats": {
1619
- "Bh": "h B",
1620
- "Bhm": "h:mm B",
1621
- "Bhms": "h:mm:ss B",
1622
- "d": "d",
1623
- "E": "ccc",
1624
- "EBhm": "E h:mm B",
1625
- "EBhms": "E h:mm:ss B",
1626
- "Ed": "E, d",
1627
- "Ehm": "E h:mm a",
1628
- "EHm": "E HH:mm",
1629
- "Ehms": "E h:mm:ss a",
1630
- "EHms": "E HH:mm:ss",
1631
- "Gy": "y G",
1632
- "GyMMM": "MMM y G",
1633
- "GyMMMd": "d. MMM y G",
1634
- "GyMMMEd": "E, d. MMMM y G",
1635
- "h": "h a",
1636
- "H": "HH",
1637
- "hm": "h:mm a",
1638
- "Hm": "HH:mm",
1639
- "hms": "h:mm.ss a",
1640
- "Hms": "H:mm.ss",
1641
- "M": "M",
1642
- "Md": "d.M",
1643
- "MEd": "E, d.M",
1644
- "MMM": "MMMM",
1645
- "MMMd": "d. MMM",
1646
- "MMMEd": "E, d. MMM",
1647
- "MMMMd": "d. MMMM",
1648
- "MMMMEd": "E, d. MMMM",
1649
- "mmss": "mm.ss",
1650
- "ms": "mm.ss",
1651
- "y": "y G",
1652
- "yyyy": "y G",
1653
- "yyyyM": "M.y G",
1654
- "yyyyMd": "d.M.y G",
1655
- "yyyyMEd": "E, d.M y G",
1656
- "yyyyMMM": "MMM y G",
1657
- "yyyyMMMd": "d. MMM y G",
1658
- "yyyyMMMEd": "E, d. MMMM y G",
1659
- "yyyyMMMM": "MMMM y G",
1660
- "yyyyQQQ": "QQQ y G",
1661
- "yyyyQQQQ": "QQQQ y G"
1662
- },
1663
- "appendItems": {
1664
- "Day": "{0} ({2}: {1})",
1665
- "Day-Of-Week": "{0} {1}",
1666
- "Era": "{1} {0}",
1667
- "Hour": "{0} ({2}: {1})",
1668
- "Minute": "{0} ({2}: {1})",
1669
- "Month": "{0} ({2}: {1})",
1670
- "Quarter": "{0} ({2}: {1})",
1671
- "Second": "{0} ({2}: {1})",
1672
- "Timezone": "{0} {1}",
1673
- "Week": "{0} ({2}: {1})",
1674
- "Year": "{1} {0}"
1675
- },
1676
- "intervalFormats": {
1677
- "intervalFormatFallback": "{0}–{1}",
1678
- "Bh": {
1679
- "B": "h B – h B",
1680
- "h": "h–h B"
1681
- },
1682
- "Bhm": {
1683
- "B": "h:mm B – h:mm B",
1684
- "h": "h:mm–h:mm B",
1685
- "m": "h:mm–h:mm B"
1686
- },
1687
- "d": {
1688
- "d": "d–d"
1689
- },
1690
- "Gy": {
1691
- "G": "G y – G y",
1692
- "y": "G y–y"
1693
- },
1694
- "GyM": {
1695
- "G": "GGGGG y-MM – GGGGG y-MM",
1696
- "M": "GGGGG y-MM – y-MM",
1697
- "y": "GGGGG y-MM – y-MM"
1698
- },
1699
- "GyMd": {
1700
- "d": "GGGGG y-MM-dd – y-MM-dd",
1701
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1702
- "M": "GGGGG y-MM-dd – y-MM-dd",
1703
- "y": "GGGGG y-MM-dd – y-MM-dd"
1704
- },
1705
- "GyMEd": {
1706
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1707
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1708
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1709
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1710
- },
1711
- "GyMMM": {
1712
- "G": "MMM y G – MMM y G",
1713
- "M": "MMM–MMM y G",
1714
- "y": "MMM y G – MMM y"
1715
- },
1716
- "GyMMMd": {
1717
- "d": "d.–d. MMM y G",
1718
- "G": "d. MMM y G – d. MMM y G",
1719
- "M": "d. MMM y G – d. MMM",
1720
- "y": "d. MMM y G – d. MMM y"
1721
- },
1722
- "GyMMMEd": {
1723
- "d": "E, d. MMM y G – E, d. MMM",
1724
- "G": "E, d. MMM y G – E, d. MMM y G",
1725
- "M": "E, d. MMM y G – E, d. MMM",
1726
- "y": "E, d. MMM y G – E, d. MMM y"
1727
- },
1728
- "h": {
1729
- "a": "h a – h a",
1730
- "h": "h–h a"
1731
- },
1732
- "H": {
1733
- "H": "HH–HH"
1734
- },
1735
- "hm": {
1736
- "a": "h:mm a – h:mm a",
1737
- "h": "h:mm–h:mm a",
1738
- "m": "h:mm–h:mm a"
1739
- },
1740
- "Hm": {
1741
- "H": "HH:mm–HH:mm",
1742
- "m": "HH:mm–HH:mm"
1743
- },
1744
- "hmv": {
1745
- "a": "h:mm a – h:mm a v",
1746
- "h": "h:mm–h:mm a v",
1747
- "m": "h:mm–h:mm a v"
1748
- },
1749
- "Hmv": {
1750
- "H": "HH:mm–HH:mm v",
1751
- "m": "HH:mm–HH:mm v"
1752
- },
1753
- "hv": {
1754
- "a": "h a – h a v",
1755
- "h": "h–h a v"
1756
- },
1757
- "Hv": {
1758
- "H": "HH–HH v"
1759
- },
1760
- "M": {
1761
- "M": "M–M"
1762
- },
1763
- "Md": {
1764
- "d": "dd.MM–dd.MM",
1765
- "M": "dd.MM–dd.MM"
1766
- },
1767
- "MEd": {
1768
- "d": "E, dd.MM – E, dd.MM",
1769
- "M": "E, dd.MM – E, dd.MM"
1770
- },
1771
- "MMM": {
1772
- "M": "MMM–MMM"
1773
- },
1774
- "MMMd": {
1775
- "d": "d.–d. MMM",
1776
- "M": "d. MMM – d. MMM"
1777
- },
1778
- "MMMEd": {
1779
- "d": "E, d. MMM – E, d. MMM",
1780
- "M": "E, d. MMM – E, d. MMM"
1781
- },
1782
- "y": {
1783
- "y": "y–y G"
1784
- },
1785
- "yM": {
1786
- "M": "MM.y–MM.y G",
1787
- "y": "MM.y–MM.y G"
1788
- },
1789
- "yMd": {
1790
- "d": "dd.MM.y–dd.MM.y G",
1791
- "M": "dd.MM.y–dd.MM.y G",
1792
- "y": "dd.MM.y–dd.MM.y G"
1793
- },
1794
- "yMEd": {
1795
- "d": "E, dd.MM.y – E, dd.MM.y G",
1796
- "M": "E, dd.MM.y – E, dd.MM.y G",
1797
- "y": "E, dd.MM.y – E, dd.MM.y G"
1798
- },
1799
- "yMMM": {
1800
- "M": "MMM–MMM y G",
1801
- "y": "MMM y – MMM y G"
1802
- },
1803
- "yMMMd": {
1804
- "d": "d.–d. MMM y G",
1805
- "M": "d. MMM – d. MMM y G",
1806
- "y": "d. MMM y – d. MMM y G"
1807
- },
1808
- "yMMMEd": {
1809
- "d": "E, d. MMM – E, d. MMM y G",
1810
- "M": "E, d. MMM – E, d. MMM y G",
1811
- "y": "E, d. MMM y – E, d. MMM y G"
1812
- },
1813
- "yMMMM": {
1814
- "M": "MMMM–MMMM y G",
1815
- "y": "MMMM y – MMMM y G"
1816
- }
1817
- }
1818
- },
1819
- "months": {
1820
- "format": {
1821
- "abbreviated": [
1822
- "Muh.",
1823
- "Saf.",
1824
- "Rab. I",
1825
- "Rab. II",
1826
- "Jum. I",
1827
- "Jum. II",
1828
- "Raj.",
1829
- "Sha.",
1830
- "Ram.",
1831
- "Shaw.",
1832
- "Dhuʻl-Q.",
1833
- "Dhuʻl-H."
1834
- ],
1835
- "narrow": [
1836
- "1",
1837
- "2",
1838
- "3",
1839
- "4",
1840
- "5",
1841
- "6",
1842
- "7",
1843
- "8",
1844
- "9",
1845
- "10",
1846
- "11",
1847
- "12"
1848
- ],
1849
- "wide": [
1850
- "Muharram",
1851
- "Safar",
1852
- "Rabiʻ I",
1853
- "Rabiʻ II",
1854
- "Jumada I",
1855
- "Jumada II",
1856
- "Rajab",
1857
- "Shaʻban",
1858
- "Ramadan",
1859
- "Shawwal",
1860
- "Dhuʻl-Qiʻdah",
1861
- "Dhuʻl-Hijjah"
1862
- ]
1863
- },
1864
- "stand-alone": {
1865
- "abbreviated": [
1866
- "Muh.",
1867
- "Saf.",
1868
- "Rab. I",
1869
- "Rab. II",
1870
- "Jum. I",
1871
- "Jum. II",
1872
- "Raj.",
1873
- "Sha.",
1874
- "Ram.",
1875
- "Shaw.",
1876
- "Dhuʻl-Q.",
1877
- "Dhuʻl-H."
1878
- ],
1879
- "narrow": [
1880
- "1",
1881
- "2",
1882
- "3",
1883
- "4",
1884
- "5",
1885
- "6",
1886
- "7",
1887
- "8",
1888
- "9",
1889
- "10",
1890
- "11",
1891
- "12"
1892
- ],
1893
- "wide": [
1894
- "Muharram",
1895
- "Safar",
1896
- "Rabiʻ I",
1897
- "Rabiʻ II",
1898
- "Jumada I",
1899
- "Jumada II",
1900
- "Rajab",
1901
- "Shaʻban",
1902
- "Ramadan",
1903
- "Shawwal",
1904
- "Dhuʻl-Qiʻdah",
1905
- "Dhuʻl-Hijjah"
1906
- ]
1907
- }
1908
- },
1909
- "days": {
1910
- "format": {
1911
- "abbreviated": [
1912
- "P",
1913
- "E",
1914
- "T",
1915
- "K",
1916
- "N",
1917
- "R",
1918
- "L"
1919
- ],
1920
- "narrow": [
1921
- "P",
1922
- "E",
1923
- "T",
1924
- "K",
1925
- "N",
1926
- "R",
1927
- "L"
1928
- ],
1929
- "short": [
1930
- "P",
1931
- "E",
1932
- "T",
1933
- "K",
1934
- "N",
1935
- "R",
1936
- "L"
1937
- ],
1938
- "wide": [
1939
- "pühapäev",
1940
- "esmaspäev",
1941
- "teisipäev",
1942
- "kolmapäev",
1943
- "neljapäev",
1944
- "reede",
1945
- "laupäev"
1946
- ]
1947
- },
1948
- "stand-alone": {
1949
- "abbreviated": [
1950
- "P",
1951
- "E",
1952
- "T",
1953
- "K",
1954
- "N",
1955
- "R",
1956
- "L"
1957
- ],
1958
- "narrow": [
1959
- "P",
1960
- "E",
1961
- "T",
1962
- "K",
1963
- "N",
1964
- "R",
1965
- "L"
1966
- ],
1967
- "short": [
1968
- "P",
1969
- "E",
1970
- "T",
1971
- "K",
1972
- "N",
1973
- "R",
1974
- "L"
1975
- ],
1976
- "wide": [
1977
- "pühapäev",
1978
- "esmaspäev",
1979
- "teisipäev",
1980
- "kolmapäev",
1981
- "neljapäev",
1982
- "reede",
1983
- "laupäev"
1984
- ]
1985
- }
1986
- },
1987
- "quarters": {
1988
- "format": {
1989
- "abbreviated": [
1990
- "K1",
1991
- "K2",
1992
- "K3",
1993
- "K4"
1994
- ],
1995
- "narrow": [
1996
- "1",
1997
- "2",
1998
- "3",
1999
- "4"
2000
- ],
2001
- "wide": [
2002
- "1. kvartal",
2003
- "2. kvartal",
2004
- "3. kvartal",
2005
- "4. kvartal"
2006
- ]
2007
- },
2008
- "stand-alone": {
2009
- "abbreviated": [
2010
- "K1",
2011
- "K2",
2012
- "K3",
2013
- "K4"
2014
- ],
2015
- "narrow": [
2016
- "1.",
2017
- "2.",
2018
- "3.",
2019
- "4."
2020
- ],
2021
- "wide": [
2022
- "1. kvartal",
2023
- "2. kvartal",
2024
- "3. kvartal",
2025
- "4. kvartal"
2026
- ]
2027
- }
2028
- },
2029
- "dayPeriods": {
2030
- "format": {
2031
- "abbreviated": [
2032
- "AM",
2033
- "PM"
2034
- ],
2035
- "narrow": [
2036
- "AM",
2037
- "PM"
2038
- ],
2039
- "wide": [
2040
- "AM",
2041
- "PM"
2042
- ]
2043
- },
2044
- "stand-alone": {
2045
- "abbreviated": [
2046
- "AM",
2047
- "PM"
2048
- ],
2049
- "narrow": [
2050
- "AM",
2051
- "PM"
2052
- ],
2053
- "wide": [
2054
- "AM",
2055
- "PM"
2056
- ]
2057
- }
2058
- },
2059
- "era-wide": {
2060
- "0": "AH"
2061
- },
2062
- "era-abbreviated": {
2063
- "0": "AH"
2064
- },
2065
- "era-narrow": {
2066
- "0": "AH"
2067
- }
2068
- },
2069
- "ca-japanese": {
2070
- "dateFormats": {
2071
- "full": "EEEE, d. MMMM y G",
2072
- "long": "d. MMMM y G",
2073
- "medium": "dd.MM.y G",
2074
- "short": "dd.MM.y GGGGG"
2075
- },
2076
- "timeFormats": {
2077
- "full": "HH:mm:ss zzzz",
2078
- "long": "HH:mm:ss z",
2079
- "medium": "HH:mm:ss",
2080
- "short": "HH:mm"
2081
- },
2082
- "dateTimeFormats": {
2083
- "full": "{1}, 'kell' {0}",
2084
- "long": "{1}, 'kell' {0}",
2085
- "medium": "{1} {0}",
2086
- "short": "{1} {0}",
2087
- "availableFormats": {
2088
- "Bh": "h B",
2089
- "Bhm": "h:mm B",
2090
- "Bhms": "h:mm:ss B",
2091
- "d": "d",
2092
- "E": "ccc",
2093
- "EBhm": "E h:mm B",
2094
- "EBhms": "E h:mm:ss B",
2095
- "Ed": "E, d",
2096
- "Ehm": "E h:mm a",
2097
- "EHm": "E HH:mm",
2098
- "Ehms": "E h:mm:ss a",
2099
- "EHms": "E HH:mm:ss",
2100
- "Gy": "y G",
2101
- "GyMMM": "MMM y G",
2102
- "GyMMMd": "d. MMM y G",
2103
- "GyMMMEd": "E, d. MMMM y G",
2104
- "h": "h a",
2105
- "H": "HH",
2106
- "hm": "h:mm a",
2107
- "Hm": "HH:mm",
2108
- "hms": "h:mm.ss a",
2109
- "Hms": "H:mm.ss",
2110
- "M": "M",
2111
- "Md": "d.M",
2112
- "MEd": "E, d.M",
2113
- "MMM": "MMMM",
2114
- "MMMd": "d. MMM",
2115
- "MMMEd": "E, d. MMM",
2116
- "MMMMd": "d. MMMM",
2117
- "MMMMEd": "E, d. MMMM",
2118
- "mmss": "mm.ss",
2119
- "ms": "mm.ss",
2120
- "y": "y G",
2121
- "yyyy": "y G",
2122
- "yyyyM": "M.y G",
2123
- "yyyyMd": "d.M.y G",
2124
- "yyyyMEd": "E, d.M y G",
2125
- "yyyyMMM": "MMM y G",
2126
- "yyyyMMMd": "d. MMM y G",
2127
- "yyyyMMMEd": "E, d. MMMM y G",
2128
- "yyyyMMMM": "MMMM y G",
2129
- "yyyyQQQ": "QQQ y G",
2130
- "yyyyQQQQ": "QQQQ y G"
2131
- },
2132
- "appendItems": {
2133
- "Day": "{0} ({2}: {1})",
2134
- "Day-Of-Week": "{0} {1}",
2135
- "Era": "{1} {0}",
2136
- "Hour": "{0} ({2}: {1})",
2137
- "Minute": "{0} ({2}: {1})",
2138
- "Month": "{0} ({2}: {1})",
2139
- "Quarter": "{0} ({2}: {1})",
2140
- "Second": "{0} ({2}: {1})",
2141
- "Timezone": "{0} {1}",
2142
- "Week": "{0} ({2}: {1})",
2143
- "Year": "{1} {0}"
2144
- },
2145
- "intervalFormats": {
2146
- "intervalFormatFallback": "{0}–{1}",
2147
- "Bh": {
2148
- "B": "h B – h B",
2149
- "h": "h–h B"
2150
- },
2151
- "Bhm": {
2152
- "B": "h:mm B – h:mm B",
2153
- "h": "h:mm–h:mm B",
2154
- "m": "h:mm–h:mm B"
2155
- },
2156
- "d": {
2157
- "d": "d–d"
2158
- },
2159
- "Gy": {
2160
- "G": "G y – G y",
2161
- "y": "G y–y"
2162
- },
2163
- "GyM": {
2164
- "G": "GGGGG y-MM – GGGGG y-MM",
2165
- "M": "GGGGG y-MM – y-MM",
2166
- "y": "GGGGG y-MM – y-MM"
2167
- },
2168
- "GyMd": {
2169
- "d": "GGGGG y-MM-dd – y-MM-dd",
2170
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2171
- "M": "GGGGG y-MM-dd – y-MM-dd",
2172
- "y": "GGGGG y-MM-dd – y-MM-dd"
2173
- },
2174
- "GyMEd": {
2175
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2176
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2177
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2178
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2179
- },
2180
- "GyMMM": {
2181
- "G": "MMM y G – MMM y G",
2182
- "M": "MMM–MMM y G",
2183
- "y": "MMM y G – MMM y"
2184
- },
2185
- "GyMMMd": {
2186
- "d": "d.–d. MMM y G",
2187
- "G": "d. MMM y G – d. MMM y G",
2188
- "M": "d. MMM y G – d. MMM",
2189
- "y": "d. MMM y G – d. MMM y"
2190
- },
2191
- "GyMMMEd": {
2192
- "d": "E, d. MMM y G – E, d. MMM",
2193
- "G": "E, d. MMM y G – E, d. MMM y G",
2194
- "M": "E, d. MMM y G – E, d. MMM",
2195
- "y": "E, d. MMM y G – E, d. MMM y"
2196
- },
2197
- "h": {
2198
- "a": "h a – h a",
2199
- "h": "h–h a"
2200
- },
2201
- "H": {
2202
- "H": "HH–HH"
2203
- },
2204
- "hm": {
2205
- "a": "h:mm a – h:mm a",
2206
- "h": "h:mm–h:mm a",
2207
- "m": "h:mm–h:mm a"
2208
- },
2209
- "Hm": {
2210
- "H": "HH:mm–HH:mm",
2211
- "m": "HH:mm–HH:mm"
2212
- },
2213
- "hmv": {
2214
- "a": "h:mm a – h:mm a v",
2215
- "h": "h:mm–h:mm a v",
2216
- "m": "h:mm–h:mm a v"
2217
- },
2218
- "Hmv": {
2219
- "H": "HH:mm–HH:mm v",
2220
- "m": "HH:mm–HH:mm v"
2221
- },
2222
- "hv": {
2223
- "a": "h a – h a v",
2224
- "h": "h–h a v"
2225
- },
2226
- "Hv": {
2227
- "H": "HH–HH v"
2228
- },
2229
- "M": {
2230
- "M": "M–M"
2231
- },
2232
- "Md": {
2233
- "d": "dd.MM–dd.MM",
2234
- "M": "dd.MM–dd.MM"
2235
- },
2236
- "MEd": {
2237
- "d": "E, dd.MM – E, dd.MM",
2238
- "M": "E, dd.MM – E, dd.MM"
2239
- },
2240
- "MMM": {
2241
- "M": "MMM–MMM"
2242
- },
2243
- "MMMd": {
2244
- "d": "d.–d. MMM",
2245
- "M": "d. MMM – d. MMM"
2246
- },
2247
- "MMMEd": {
2248
- "d": "E, d. MMM – E, d. MMM",
2249
- "M": "E, d. MMM – E, d. MMM"
2250
- },
2251
- "y": {
2252
- "y": "y–y G",
2253
- "G": "y G–y G"
2254
- },
2255
- "yM": {
2256
- "M": "MM.y–MM.y G",
2257
- "y": "MM.y–MM.y G",
2258
- "G": "MM.y G–MM.y G"
2259
- },
2260
- "yMd": {
2261
- "d": "dd.MM.y–dd.MM.y G",
2262
- "M": "dd.MM.y–dd.MM.y G",
2263
- "y": "dd.MM.y–dd.MM.y G",
2264
- "G": "dd.MM.y G–dd.MM.y G"
2265
- },
2266
- "yMEd": {
2267
- "d": "E, dd.MM.y – E, dd.MM.y G",
2268
- "M": "E, dd.MM.y – E, dd.MM.y G",
2269
- "y": "E, dd.MM.y – E, dd.MM.y G",
2270
- "G": "E, dd.MM.y G – E, dd.MM.y G"
2271
- },
2272
- "yMMM": {
2273
- "M": "MMM–MMM y G",
2274
- "y": "MMM y – MMM y G",
2275
- "G": "MMM y G – MMM y G"
2276
- },
2277
- "yMMMd": {
2278
- "d": "d.–d. MMM y G",
2279
- "M": "d. MMM – d. MMM y G",
2280
- "y": "d. MMM y – d. MMM y G",
2281
- "G": "d. MMM y G – d. MMM y G"
2282
- },
2283
- "yMMMEd": {
2284
- "d": "E, d. MMM – E, d. MMM y G",
2285
- "M": "E, d. MMM – E, d. MMM y G",
2286
- "y": "E, d. MMM y – E, d. MMM y G",
2287
- "G": "E, d. MMM y G – E, d. MMM y G"
2288
- },
2289
- "yMMMM": {
2290
- "M": "MMMM–MMMM y G",
2291
- "y": "MMMM y – MMMM y G",
2292
- "G": "MMMM y G – MMMM y G"
2293
- }
2294
- }
2295
- },
2296
- "months": {
2297
- "format": {
2298
- "abbreviated": [
2299
- "jaan",
2300
- "veebr",
2301
- "märts",
2302
- "apr",
2303
- "mai",
2304
- "juuni",
2305
- "juuli",
2306
- "aug",
2307
- "sept",
2308
- "okt",
2309
- "nov",
2310
- "dets"
2311
- ],
2312
- "narrow": [
2313
- "J",
2314
- "V",
2315
- "M",
2316
- "A",
2317
- "M",
2318
- "J",
2319
- "J",
2320
- "A",
2321
- "S",
2322
- "O",
2323
- "N",
2324
- "D"
2325
- ],
2326
- "wide": [
2327
- "jaanuar",
2328
- "veebruar",
2329
- "märts",
2330
- "aprill",
2331
- "mai",
2332
- "juuni",
2333
- "juuli",
2334
- "august",
2335
- "september",
2336
- "oktoober",
2337
- "november",
2338
- "detsember"
2339
- ]
2340
- },
2341
- "stand-alone": {
2342
- "abbreviated": [
2343
- "jaan",
2344
- "veebr",
2345
- "märts",
2346
- "apr",
2347
- "mai",
2348
- "juuni",
2349
- "juuli",
2350
- "aug",
2351
- "sept",
2352
- "okt",
2353
- "nov",
2354
- "dets"
2355
- ],
2356
- "narrow": [
2357
- "J",
2358
- "V",
2359
- "M",
2360
- "A",
2361
- "M",
2362
- "J",
2363
- "J",
2364
- "A",
2365
- "S",
2366
- "O",
2367
- "N",
2368
- "D"
2369
- ],
2370
- "wide": [
2371
- "jaanuar",
2372
- "veebruar",
2373
- "märts",
2374
- "aprill",
2375
- "mai",
2376
- "juuni",
2377
- "juuli",
2378
- "august",
2379
- "september",
2380
- "oktoober",
2381
- "november",
2382
- "detsember"
2383
- ]
2384
- }
2385
- },
2386
- "days": {
2387
- "format": {
2388
- "abbreviated": [
2389
- "P",
2390
- "E",
2391
- "T",
2392
- "K",
2393
- "N",
2394
- "R",
2395
- "L"
2396
- ],
2397
- "narrow": [
2398
- "P",
2399
- "E",
2400
- "T",
2401
- "K",
2402
- "N",
2403
- "R",
2404
- "L"
2405
- ],
2406
- "short": [
2407
- "P",
2408
- "E",
2409
- "T",
2410
- "K",
2411
- "N",
2412
- "R",
2413
- "L"
2414
- ],
2415
- "wide": [
2416
- "pühapäev",
2417
- "esmaspäev",
2418
- "teisipäev",
2419
- "kolmapäev",
2420
- "neljapäev",
2421
- "reede",
2422
- "laupäev"
2423
- ]
2424
- },
2425
- "stand-alone": {
2426
- "abbreviated": [
2427
- "P",
2428
- "E",
2429
- "T",
2430
- "K",
2431
- "N",
2432
- "R",
2433
- "L"
2434
- ],
2435
- "narrow": [
2436
- "P",
2437
- "E",
2438
- "T",
2439
- "K",
2440
- "N",
2441
- "R",
2442
- "L"
2443
- ],
2444
- "short": [
2445
- "P",
2446
- "E",
2447
- "T",
2448
- "K",
2449
- "N",
2450
- "R",
2451
- "L"
2452
- ],
2453
- "wide": [
2454
- "pühapäev",
2455
- "esmaspäev",
2456
- "teisipäev",
2457
- "kolmapäev",
2458
- "neljapäev",
2459
- "reede",
2460
- "laupäev"
2461
- ]
2462
- }
2463
- },
2464
- "quarters": {
2465
- "format": {
2466
- "abbreviated": [
2467
- "K1",
2468
- "K2",
2469
- "K3",
2470
- "K4"
2471
- ],
2472
- "narrow": [
2473
- "1",
2474
- "2",
2475
- "3",
2476
- "4"
2477
- ],
2478
- "wide": [
2479
- "1. kvartal",
2480
- "2. kvartal",
2481
- "3. kvartal",
2482
- "4. kvartal"
2483
- ]
2484
- },
2485
- "stand-alone": {
2486
- "abbreviated": [
2487
- "K1",
2488
- "K2",
2489
- "K3",
2490
- "K4"
2491
- ],
2492
- "narrow": [
2493
- "1.",
2494
- "2.",
2495
- "3.",
2496
- "4."
2497
- ],
2498
- "wide": [
2499
- "1. kvartal",
2500
- "2. kvartal",
2501
- "3. kvartal",
2502
- "4. kvartal"
2503
- ]
2504
- }
2505
- },
2506
- "dayPeriods": {
2507
- "format": {
2508
- "abbreviated": [
2509
- "AM",
2510
- "PM"
2511
- ],
2512
- "narrow": [
2513
- "AM",
2514
- "PM"
2515
- ],
2516
- "wide": [
2517
- "AM",
2518
- "PM"
2519
- ]
2520
- },
2521
- "stand-alone": {
2522
- "abbreviated": [
2523
- "AM",
2524
- "PM"
2525
- ],
2526
- "narrow": [
2527
- "AM",
2528
- "PM"
2529
- ],
2530
- "wide": [
2531
- "AM",
2532
- "PM"
2533
- ]
2534
- }
2535
- },
2536
- "era-wide": {
2537
- "232": "Meiji",
2538
- "233": "Taishō",
2539
- "234": "Shōwa",
2540
- "235": "Heisei",
2541
- "236": "Reiwa"
2542
- },
2543
- "era-abbreviated": {
2544
- "232": "Meiji",
2545
- "233": "Taishō",
2546
- "234": "Shōwa",
2547
- "235": "Heisei",
2548
- "236": "Reiwa"
2549
- },
2550
- "era-narrow": {
2551
- "232": "M",
2552
- "233": "T",
2553
- "234": "S",
2554
- "235": "H",
2555
- "236": "R"
2556
- }
2557
- },
2558
- "ca-persian": {
2559
- "dateFormats": {
2560
- "full": "EEEE, d. MMMM y G",
2561
- "long": "d. MMMM y G",
2562
- "medium": "dd.MM.y G",
2563
- "short": "dd.MM.y GGGGG"
2564
- },
2565
- "timeFormats": {
2566
- "full": "HH:mm:ss zzzz",
2567
- "long": "HH:mm:ss z",
2568
- "medium": "HH:mm:ss",
2569
- "short": "HH:mm"
2570
- },
2571
- "dateTimeFormats": {
2572
- "full": "{1}, 'kell' {0}",
2573
- "long": "{1}, 'kell' {0}",
2574
- "medium": "{1} {0}",
2575
- "short": "{1} {0}",
2576
- "availableFormats": {
2577
- "Bh": "h B",
2578
- "Bhm": "h:mm B",
2579
- "Bhms": "h:mm:ss B",
2580
- "d": "d",
2581
- "E": "ccc",
2582
- "EBhm": "E h:mm B",
2583
- "EBhms": "E h:mm:ss B",
2584
- "Ed": "E, d",
2585
- "Ehm": "E h:mm a",
2586
- "EHm": "E HH:mm",
2587
- "Ehms": "E h:mm:ss a",
2588
- "EHms": "E HH:mm:ss",
2589
- "Gy": "y G",
2590
- "GyMMM": "MMM y G",
2591
- "GyMMMd": "d. MMM y G",
2592
- "GyMMMEd": "E, d. MMMM y G",
2593
- "h": "h a",
2594
- "H": "HH",
2595
- "hm": "h:mm a",
2596
- "Hm": "HH:mm",
2597
- "hms": "h:mm.ss a",
2598
- "Hms": "H:mm.ss",
2599
- "M": "M",
2600
- "Md": "d.M",
2601
- "MEd": "E, d.M",
2602
- "MMM": "MMMM",
2603
- "MMMd": "d. MMM",
2604
- "MMMEd": "E, d. MMM",
2605
- "MMMMd": "d. MMMM",
2606
- "MMMMEd": "E, d. MMMM",
2607
- "mmss": "mm.ss",
2608
- "ms": "mm.ss",
2609
- "y": "y G",
2610
- "yyyy": "y G",
2611
- "yyyyM": "M.y G",
2612
- "yyyyMd": "d.M.y G",
2613
- "yyyyMEd": "E, d.M y G",
2614
- "yyyyMMM": "MMM y G",
2615
- "yyyyMMMd": "d. MMM y G",
2616
- "yyyyMMMEd": "E, d. MMMM y G",
2617
- "yyyyMMMM": "MMMM y G",
2618
- "yyyyQQQ": "QQQ y G",
2619
- "yyyyQQQQ": "QQQQ y G"
2620
- },
2621
- "appendItems": {
2622
- "Day": "{0} ({2}: {1})",
2623
- "Day-Of-Week": "{0} {1}",
2624
- "Era": "{1} {0}",
2625
- "Hour": "{0} ({2}: {1})",
2626
- "Minute": "{0} ({2}: {1})",
2627
- "Month": "{0} ({2}: {1})",
2628
- "Quarter": "{0} ({2}: {1})",
2629
- "Second": "{0} ({2}: {1})",
2630
- "Timezone": "{0} {1}",
2631
- "Week": "{0} ({2}: {1})",
2632
- "Year": "{1} {0}"
2633
- },
2634
- "intervalFormats": {
2635
- "intervalFormatFallback": "{0}–{1}",
2636
- "Bh": {
2637
- "B": "h B – h B",
2638
- "h": "h–h B"
2639
- },
2640
- "Bhm": {
2641
- "B": "h:mm B – h:mm B",
2642
- "h": "h:mm–h:mm B",
2643
- "m": "h:mm–h:mm B"
2644
- },
2645
- "d": {
2646
- "d": "d–d"
2647
- },
2648
- "Gy": {
2649
- "G": "G y – G y",
2650
- "y": "G y–y"
2651
- },
2652
- "GyM": {
2653
- "G": "GGGGG y-MM – GGGGG y-MM",
2654
- "M": "GGGGG y-MM – y-MM",
2655
- "y": "GGGGG y-MM – y-MM"
2656
- },
2657
- "GyMd": {
2658
- "d": "GGGGG y-MM-dd – y-MM-dd",
2659
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2660
- "M": "GGGGG y-MM-dd – y-MM-dd",
2661
- "y": "GGGGG y-MM-dd – y-MM-dd"
2662
- },
2663
- "GyMEd": {
2664
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2665
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2666
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2667
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2668
- },
2669
- "GyMMM": {
2670
- "G": "MMM y G – MMM y G",
2671
- "M": "MMM–MMM y G",
2672
- "y": "MMM y G – MMM y"
2673
- },
2674
- "GyMMMd": {
2675
- "d": "d.–d. MMM y G",
2676
- "G": "d. MMM y G – d. MMM y G",
2677
- "M": "d. MMM y G – d. MMM",
2678
- "y": "d. MMM y G – d. MMM y"
2679
- },
2680
- "GyMMMEd": {
2681
- "d": "E, d. MMM y G – E, d. MMM",
2682
- "G": "E, d. MMM y G – E, d. MMM y G",
2683
- "M": "E, d. MMM y G – E, d. MMM",
2684
- "y": "E, d. MMM y G – E, d. MMM y"
2685
- },
2686
- "h": {
2687
- "a": "h a – h a",
2688
- "h": "h–h a"
2689
- },
2690
- "H": {
2691
- "H": "HH–HH"
2692
- },
2693
- "hm": {
2694
- "a": "h:mm a – h:mm a",
2695
- "h": "h:mm–h:mm a",
2696
- "m": "h:mm–h:mm a"
2697
- },
2698
- "Hm": {
2699
- "H": "HH:mm–HH:mm",
2700
- "m": "HH:mm–HH:mm"
2701
- },
2702
- "hmv": {
2703
- "a": "h:mm a – h:mm a v",
2704
- "h": "h:mm–h:mm a v",
2705
- "m": "h:mm–h:mm a v"
2706
- },
2707
- "Hmv": {
2708
- "H": "HH:mm–HH:mm v",
2709
- "m": "HH:mm–HH:mm v"
2710
- },
2711
- "hv": {
2712
- "a": "h a – h a v",
2713
- "h": "h–h a v"
2714
- },
2715
- "Hv": {
2716
- "H": "HH–HH v"
2717
- },
2718
- "M": {
2719
- "M": "M–M"
2720
- },
2721
- "Md": {
2722
- "d": "dd.MM–dd.MM",
2723
- "M": "dd.MM–dd.MM"
2724
- },
2725
- "MEd": {
2726
- "d": "E, dd.MM – E, dd.MM",
2727
- "M": "E, dd.MM – E, dd.MM"
2728
- },
2729
- "MMM": {
2730
- "M": "MMM–MMM"
2731
- },
2732
- "MMMd": {
2733
- "d": "d.–d. MMM",
2734
- "M": "d. MMM – d. MMM"
2735
- },
2736
- "MMMEd": {
2737
- "d": "E, d. MMM – E, d. MMM",
2738
- "M": "E, d. MMM – E, d. MMM"
2739
- },
2740
- "y": {
2741
- "y": "y–y G"
2742
- },
2743
- "yM": {
2744
- "M": "MM.y–MM.y G",
2745
- "y": "MM.y–MM.y G"
2746
- },
2747
- "yMd": {
2748
- "d": "dd.MM.y–dd.MM.y G",
2749
- "M": "dd.MM.y–dd.MM.y G",
2750
- "y": "dd.MM.y–dd.MM.y G"
2751
- },
2752
- "yMEd": {
2753
- "d": "E, dd.MM.y – E, dd.MM.y G",
2754
- "M": "E, dd.MM.y – E, dd.MM.y G",
2755
- "y": "E, dd.MM.y – E, dd.MM.y G"
2756
- },
2757
- "yMMM": {
2758
- "M": "MMM–MMM y G",
2759
- "y": "MMM y – MMM y G"
2760
- },
2761
- "yMMMd": {
2762
- "d": "d.–d. MMM y G",
2763
- "M": "d. MMM – d. MMM y G",
2764
- "y": "d. MMM y – d. MMM y G"
2765
- },
2766
- "yMMMEd": {
2767
- "d": "E, d. MMM – E, d. MMM y G",
2768
- "M": "E, d. MMM – E, d. MMM y G",
2769
- "y": "E, d. MMM y – E, d. MMM y G"
2770
- },
2771
- "yMMMM": {
2772
- "M": "MMMM–MMMM y G",
2773
- "y": "MMMM y – MMMM y G"
2774
- }
2775
- }
2776
- },
2777
- "months": {
2778
- "format": {
2779
- "abbreviated": [
2780
- "Farvardin",
2781
- "Ordibehesht",
2782
- "Khordad",
2783
- "Tir",
2784
- "Mordad",
2785
- "Shahrivar",
2786
- "Mehr",
2787
- "Aban",
2788
- "Azar",
2789
- "Dey",
2790
- "Bahman",
2791
- "Esfand"
2792
- ],
2793
- "narrow": [
2794
- "1",
2795
- "2",
2796
- "3",
2797
- "4",
2798
- "5",
2799
- "6",
2800
- "7",
2801
- "8",
2802
- "9",
2803
- "10",
2804
- "11",
2805
- "12"
2806
- ],
2807
- "wide": [
2808
- "Farvardin",
2809
- "Ordibehesht",
2810
- "Khordad",
2811
- "Tir",
2812
- "Mordad",
2813
- "Shahrivar",
2814
- "Mehr",
2815
- "Aban",
2816
- "Azar",
2817
- "Dey",
2818
- "Bahman",
2819
- "Esfand"
2820
- ]
2821
- },
2822
- "stand-alone": {
2823
- "abbreviated": [
2824
- "Farvardin",
2825
- "Ordibehesht",
2826
- "Khordad",
2827
- "Tir",
2828
- "Mordad",
2829
- "Shahrivar",
2830
- "Mehr",
2831
- "Aban",
2832
- "Azar",
2833
- "Dey",
2834
- "Bahman",
2835
- "Esfand"
2836
- ],
2837
- "narrow": [
2838
- "1",
2839
- "2",
2840
- "3",
2841
- "4",
2842
- "5",
2843
- "6",
2844
- "7",
2845
- "8",
2846
- "9",
2847
- "10",
2848
- "11",
2849
- "12"
2850
- ],
2851
- "wide": [
2852
- "Farvardin",
2853
- "Ordibehesht",
2854
- "Khordad",
2855
- "Tir",
2856
- "Mordad",
2857
- "Shahrivar",
2858
- "Mehr",
2859
- "Aban",
2860
- "Azar",
2861
- "Dey",
2862
- "Bahman",
2863
- "Esfand"
2864
- ]
2865
- }
2866
- },
2867
- "days": {
2868
- "format": {
2869
- "abbreviated": [
2870
- "P",
2871
- "E",
2872
- "T",
2873
- "K",
2874
- "N",
2875
- "R",
2876
- "L"
2877
- ],
2878
- "narrow": [
2879
- "P",
2880
- "E",
2881
- "T",
2882
- "K",
2883
- "N",
2884
- "R",
2885
- "L"
2886
- ],
2887
- "short": [
2888
- "P",
2889
- "E",
2890
- "T",
2891
- "K",
2892
- "N",
2893
- "R",
2894
- "L"
2895
- ],
2896
- "wide": [
2897
- "pühapäev",
2898
- "esmaspäev",
2899
- "teisipäev",
2900
- "kolmapäev",
2901
- "neljapäev",
2902
- "reede",
2903
- "laupäev"
2904
- ]
2905
- },
2906
- "stand-alone": {
2907
- "abbreviated": [
2908
- "P",
2909
- "E",
2910
- "T",
2911
- "K",
2912
- "N",
2913
- "R",
2914
- "L"
2915
- ],
2916
- "narrow": [
2917
- "P",
2918
- "E",
2919
- "T",
2920
- "K",
2921
- "N",
2922
- "R",
2923
- "L"
2924
- ],
2925
- "short": [
2926
- "P",
2927
- "E",
2928
- "T",
2929
- "K",
2930
- "N",
2931
- "R",
2932
- "L"
2933
- ],
2934
- "wide": [
2935
- "pühapäev",
2936
- "esmaspäev",
2937
- "teisipäev",
2938
- "kolmapäev",
2939
- "neljapäev",
2940
- "reede",
2941
- "laupäev"
2942
- ]
2943
- }
2944
- },
2945
- "quarters": {
2946
- "format": {
2947
- "abbreviated": [
2948
- "K1",
2949
- "K2",
2950
- "K3",
2951
- "K4"
2952
- ],
2953
- "narrow": [
2954
- "1",
2955
- "2",
2956
- "3",
2957
- "4"
2958
- ],
2959
- "wide": [
2960
- "1. kvartal",
2961
- "2. kvartal",
2962
- "3. kvartal",
2963
- "4. kvartal"
2964
- ]
2965
- },
2966
- "stand-alone": {
2967
- "abbreviated": [
2968
- "K1",
2969
- "K2",
2970
- "K3",
2971
- "K4"
2972
- ],
2973
- "narrow": [
2974
- "1.",
2975
- "2.",
2976
- "3.",
2977
- "4."
2978
- ],
2979
- "wide": [
2980
- "1. kvartal",
2981
- "2. kvartal",
2982
- "3. kvartal",
2983
- "4. kvartal"
2984
- ]
2985
- }
2986
- },
2987
- "dayPeriods": {
2988
- "format": {
2989
- "abbreviated": [
2990
- "AM",
2991
- "PM"
2992
- ],
2993
- "narrow": [
2994
- "AM",
2995
- "PM"
2996
- ],
2997
- "wide": [
2998
- "AM",
2999
- "PM"
3000
- ]
3001
- },
3002
- "stand-alone": {
3003
- "abbreviated": [
3004
- "AM",
3005
- "PM"
3006
- ],
3007
- "narrow": [
3008
- "AM",
3009
- "PM"
3010
- ],
3011
- "wide": [
3012
- "AM",
3013
- "PM"
3014
- ]
3015
- }
3016
- },
3017
- "era-wide": {
3018
- "0": "AP"
3019
- },
3020
- "era-abbreviated": {
3021
- "0": "AP"
3022
- },
3023
- "era-narrow": {
3024
- "0": "AP"
3025
- }
3026
- },
3027
- "ca-buddhist": {
3028
- "dateFormats": {
3029
- "full": "EEEE, d. MMMM y G",
3030
- "long": "d. MMMM y G",
3031
- "medium": "dd.MM.y G",
3032
- "short": "dd.MM.y GGGGG"
3033
- },
3034
- "timeFormats": {
3035
- "full": "HH:mm:ss zzzz",
3036
- "long": "HH:mm:ss z",
3037
- "medium": "HH:mm:ss",
3038
- "short": "HH:mm"
3039
- },
3040
- "dateTimeFormats": {
3041
- "full": "{1}, 'kell' {0}",
3042
- "long": "{1}, 'kell' {0}",
3043
- "medium": "{1} {0}",
3044
- "short": "{1} {0}",
3045
- "availableFormats": {
3046
- "Bh": "h B",
3047
- "Bhm": "h:mm B",
3048
- "Bhms": "h:mm:ss B",
3049
- "d": "d",
3050
- "E": "ccc",
3051
- "EBhm": "E h:mm B",
3052
- "EBhms": "E h:mm:ss B",
3053
- "Ed": "E, d",
3054
- "Ehm": "E h:mm a",
3055
- "EHm": "E HH:mm",
3056
- "Ehms": "E h:mm:ss a",
3057
- "EHms": "E HH:mm:ss",
3058
- "Gy": "y G",
3059
- "GyMMM": "MMM y G",
3060
- "GyMMMd": "d. MMM y G",
3061
- "GyMMMEd": "E, d. MMMM y G",
3062
- "h": "h a",
3063
- "H": "HH",
3064
- "hm": "h:mm a",
3065
- "Hm": "HH:mm",
3066
- "hms": "h:mm.ss a",
3067
- "Hms": "H:mm.ss",
3068
- "M": "M",
3069
- "Md": "d.M",
3070
- "MEd": "E, d.M",
3071
- "MMM": "MMMM",
3072
- "MMMd": "d. MMM",
3073
- "MMMEd": "E, d. MMM",
3074
- "MMMMd": "d. MMMM",
3075
- "MMMMEd": "E, d. MMMM",
3076
- "mmss": "mm.ss",
3077
- "ms": "mm.ss",
3078
- "y": "y G",
3079
- "yyyy": "y G",
3080
- "yyyyM": "M.y G",
3081
- "yyyyMd": "d.M.y G",
3082
- "yyyyMEd": "E, d.M y G",
3083
- "yyyyMMM": "MMM y G",
3084
- "yyyyMMMd": "d. MMM y G",
3085
- "yyyyMMMEd": "E, d. MMMM y G",
3086
- "yyyyMMMM": "MMMM y G",
3087
- "yyyyQQQ": "QQQ y G",
3088
- "yyyyQQQQ": "QQQQ y G"
3089
- },
3090
- "appendItems": {
3091
- "Day": "{0} ({2}: {1})",
3092
- "Day-Of-Week": "{0} {1}",
3093
- "Era": "{1} {0}",
3094
- "Hour": "{0} ({2}: {1})",
3095
- "Minute": "{0} ({2}: {1})",
3096
- "Month": "{0} ({2}: {1})",
3097
- "Quarter": "{0} ({2}: {1})",
3098
- "Second": "{0} ({2}: {1})",
3099
- "Timezone": "{0} {1}",
3100
- "Week": "{0} ({2}: {1})",
3101
- "Year": "{1} {0}"
3102
- },
3103
- "intervalFormats": {
3104
- "intervalFormatFallback": "{0}–{1}",
3105
- "Bh": {
3106
- "B": "h B – h B",
3107
- "h": "h–h B"
3108
- },
3109
- "Bhm": {
3110
- "B": "h:mm B – h:mm B",
3111
- "h": "h:mm–h:mm B",
3112
- "m": "h:mm–h:mm B"
3113
- },
3114
- "d": {
3115
- "d": "d–d"
3116
- },
3117
- "Gy": {
3118
- "G": "G y – G y",
3119
- "y": "G y–y"
3120
- },
3121
- "GyM": {
3122
- "G": "GGGGG y-MM – GGGGG y-MM",
3123
- "M": "GGGGG y-MM – y-MM",
3124
- "y": "GGGGG y-MM – y-MM"
3125
- },
3126
- "GyMd": {
3127
- "d": "GGGGG y-MM-dd – y-MM-dd",
3128
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3129
- "M": "GGGGG y-MM-dd – y-MM-dd",
3130
- "y": "GGGGG y-MM-dd – y-MM-dd"
3131
- },
3132
- "GyMEd": {
3133
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3134
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3135
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3136
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3137
- },
3138
- "GyMMM": {
3139
- "G": "MMM y G – MMM y G",
3140
- "M": "MMM–MMM y G",
3141
- "y": "MMM y G – MMM y"
3142
- },
3143
- "GyMMMd": {
3144
- "d": "d.–d. MMM y G",
3145
- "G": "d. MMM y G – d. MMM y G",
3146
- "M": "d. MMM y G – d. MMM",
3147
- "y": "d. MMM y G – d. MMM y"
3148
- },
3149
- "GyMMMEd": {
3150
- "d": "E, d. MMM y G – E, d. MMM",
3151
- "G": "E, d. MMM y G – E, d. MMM y G",
3152
- "M": "E, d. MMM y G – E, d. MMM",
3153
- "y": "E, d. MMM y G – E, d. MMM y"
3154
- },
3155
- "h": {
3156
- "a": "h a – h a",
3157
- "h": "h–h a"
3158
- },
3159
- "H": {
3160
- "H": "HH–HH"
3161
- },
3162
- "hm": {
3163
- "a": "h:mm a – h:mm a",
3164
- "h": "h:mm–h:mm a",
3165
- "m": "h:mm–h:mm a"
3166
- },
3167
- "Hm": {
3168
- "H": "HH:mm–HH:mm",
3169
- "m": "HH:mm–HH:mm"
3170
- },
3171
- "hmv": {
3172
- "a": "h:mm a – h:mm a v",
3173
- "h": "h:mm–h:mm a v",
3174
- "m": "h:mm–h:mm a v"
3175
- },
3176
- "Hmv": {
3177
- "H": "HH:mm–HH:mm v",
3178
- "m": "HH:mm–HH:mm v"
3179
- },
3180
- "hv": {
3181
- "a": "h a – h a v",
3182
- "h": "h–h a v"
3183
- },
3184
- "Hv": {
3185
- "H": "HH–HH v"
3186
- },
3187
- "M": {
3188
- "M": "M–M"
3189
- },
3190
- "Md": {
3191
- "d": "dd.MM–dd.MM",
3192
- "M": "dd.MM–dd.MM"
3193
- },
3194
- "MEd": {
3195
- "d": "E, dd.MM – E, dd.MM",
3196
- "M": "E, dd.MM – E, dd.MM"
3197
- },
3198
- "MMM": {
3199
- "M": "MMM–MMM"
3200
- },
3201
- "MMMd": {
3202
- "d": "d.–d. MMM",
3203
- "M": "d. MMM – d. MMM"
3204
- },
3205
- "MMMEd": {
3206
- "d": "E, d. MMM – E, d. MMM",
3207
- "M": "E, d. MMM – E, d. MMM"
3208
- },
3209
- "y": {
3210
- "y": "y–y G"
3211
- },
3212
- "yM": {
3213
- "M": "MM.y–MM.y G",
3214
- "y": "MM.y–MM.y G"
3215
- },
3216
- "yMd": {
3217
- "d": "dd.MM.y–dd.MM.y G",
3218
- "M": "dd.MM.y–dd.MM.y G",
3219
- "y": "dd.MM.y–dd.MM.y G"
3220
- },
3221
- "yMEd": {
3222
- "d": "E, dd.MM.y – E, dd.MM.y G",
3223
- "M": "E, dd.MM.y – E, dd.MM.y G",
3224
- "y": "E, dd.MM.y – E, dd.MM.y G"
3225
- },
3226
- "yMMM": {
3227
- "M": "MMM–MMM y G",
3228
- "y": "MMM y – MMM y G"
3229
- },
3230
- "yMMMd": {
3231
- "d": "d.–d. MMM y G",
3232
- "M": "d. MMM – d. MMM y G",
3233
- "y": "d. MMM y – d. MMM y G"
3234
- },
3235
- "yMMMEd": {
3236
- "d": "E, d. MMM – E, d. MMM y G",
3237
- "M": "E, d. MMM – E, d. MMM y G",
3238
- "y": "E, d. MMM y – E, d. MMM y G"
3239
- },
3240
- "yMMMM": {
3241
- "M": "MMMM–MMMM y G",
3242
- "y": "MMMM y – MMMM y G"
3243
- }
3244
- }
3245
- },
3246
- "months": {
3247
- "format": {
3248
- "abbreviated": [
3249
- "jaan",
3250
- "veebr",
3251
- "märts",
3252
- "apr",
3253
- "mai",
3254
- "juuni",
3255
- "juuli",
3256
- "aug",
3257
- "sept",
3258
- "okt",
3259
- "nov",
3260
- "dets"
3261
- ],
3262
- "narrow": [
3263
- "J",
3264
- "V",
3265
- "M",
3266
- "A",
3267
- "M",
3268
- "J",
3269
- "J",
3270
- "A",
3271
- "S",
3272
- "O",
3273
- "N",
3274
- "D"
3275
- ],
3276
- "wide": [
3277
- "jaanuar",
3278
- "veebruar",
3279
- "märts",
3280
- "aprill",
3281
- "mai",
3282
- "juuni",
3283
- "juuli",
3284
- "august",
3285
- "september",
3286
- "oktoober",
3287
- "november",
3288
- "detsember"
3289
- ]
3290
- },
3291
- "stand-alone": {
3292
- "abbreviated": [
3293
- "jaan",
3294
- "veebr",
3295
- "märts",
3296
- "apr",
3297
- "mai",
3298
- "juuni",
3299
- "juuli",
3300
- "aug",
3301
- "sept",
3302
- "okt",
3303
- "nov",
3304
- "dets"
3305
- ],
3306
- "narrow": [
3307
- "J",
3308
- "V",
3309
- "M",
3310
- "A",
3311
- "M",
3312
- "J",
3313
- "J",
3314
- "A",
3315
- "S",
3316
- "O",
3317
- "N",
3318
- "D"
3319
- ],
3320
- "wide": [
3321
- "jaanuar",
3322
- "veebruar",
3323
- "märts",
3324
- "aprill",
3325
- "mai",
3326
- "juuni",
3327
- "juuli",
3328
- "august",
3329
- "september",
3330
- "oktoober",
3331
- "november",
3332
- "detsember"
3333
- ]
3334
- }
3335
- },
3336
- "days": {
3337
- "format": {
3338
- "abbreviated": [
3339
- "P",
3340
- "E",
3341
- "T",
3342
- "K",
3343
- "N",
3344
- "R",
3345
- "L"
3346
- ],
3347
- "narrow": [
3348
- "P",
3349
- "E",
3350
- "T",
3351
- "K",
3352
- "N",
3353
- "R",
3354
- "L"
3355
- ],
3356
- "short": [
3357
- "P",
3358
- "E",
3359
- "T",
3360
- "K",
3361
- "N",
3362
- "R",
3363
- "L"
3364
- ],
3365
- "wide": [
3366
- "pühapäev",
3367
- "esmaspäev",
3368
- "teisipäev",
3369
- "kolmapäev",
3370
- "neljapäev",
3371
- "reede",
3372
- "laupäev"
3373
- ]
3374
- },
3375
- "stand-alone": {
3376
- "abbreviated": [
3377
- "P",
3378
- "E",
3379
- "T",
3380
- "K",
3381
- "N",
3382
- "R",
3383
- "L"
3384
- ],
3385
- "narrow": [
3386
- "P",
3387
- "E",
3388
- "T",
3389
- "K",
3390
- "N",
3391
- "R",
3392
- "L"
3393
- ],
3394
- "short": [
3395
- "P",
3396
- "E",
3397
- "T",
3398
- "K",
3399
- "N",
3400
- "R",
3401
- "L"
3402
- ],
3403
- "wide": [
3404
- "pühapäev",
3405
- "esmaspäev",
3406
- "teisipäev",
3407
- "kolmapäev",
3408
- "neljapäev",
3409
- "reede",
3410
- "laupäev"
3411
- ]
3412
- }
3413
- },
3414
- "quarters": {
3415
- "format": {
3416
- "abbreviated": [
3417
- "K1",
3418
- "K2",
3419
- "K3",
3420
- "K4"
3421
- ],
3422
- "narrow": [
3423
- "1",
3424
- "2",
3425
- "3",
3426
- "4"
3427
- ],
3428
- "wide": [
3429
- "1. kvartal",
3430
- "2. kvartal",
3431
- "3. kvartal",
3432
- "4. kvartal"
3433
- ]
3434
- },
3435
- "stand-alone": {
3436
- "abbreviated": [
3437
- "K1",
3438
- "K2",
3439
- "K3",
3440
- "K4"
3441
- ],
3442
- "narrow": [
3443
- "1.",
3444
- "2.",
3445
- "3.",
3446
- "4."
3447
- ],
3448
- "wide": [
3449
- "1. kvartal",
3450
- "2. kvartal",
3451
- "3. kvartal",
3452
- "4. kvartal"
3453
- ]
3454
- }
3455
- },
3456
- "dayPeriods": {
3457
- "format": {
3458
- "abbreviated": [
3459
- "AM",
3460
- "PM"
3461
- ],
3462
- "narrow": [
3463
- "AM",
3464
- "PM"
3465
- ],
3466
- "wide": [
3467
- "AM",
3468
- "PM"
3469
- ]
3470
- },
3471
- "stand-alone": {
3472
- "abbreviated": [
3473
- "AM",
3474
- "PM"
3475
- ],
3476
- "narrow": [
3477
- "AM",
3478
- "PM"
3479
- ],
3480
- "wide": [
3481
- "AM",
3482
- "PM"
3483
- ]
3484
- }
3485
- },
3486
- "era-wide": {
3487
- "0": "BK"
3488
- },
3489
- "era-abbreviated": {
3490
- "0": "BK"
3491
- },
3492
- "era-narrow": {
3493
- "0": "BK"
3494
- }
3495
- },
3496
- "dateFields": {
3497
- "era": {
3498
- "displayName": "ajastu"
3499
- },
3500
- "year-wide": {
3501
- "displayName": "aasta",
3502
- "relative-type--1": "eelmine aasta",
3503
- "relative-type-0": "käesolev aasta",
3504
- "relative-type-1": "järgmine aasta",
3505
- "relativeTime-type-future": {
3506
- "relativeTimePattern-count-one": "{0} aasta pärast",
3507
- "relativeTimePattern-count-other": "{0} aasta pärast"
3508
- },
3509
- "relativeTime-type-past": {
3510
- "relativeTimePattern-count-one": "{0} aasta eest",
3511
- "relativeTimePattern-count-other": "{0} aasta eest"
3512
- }
3513
- },
3514
- "year-short": {
3515
- "displayName": "a",
3516
- "relative-type--1": "eelmine aasta",
3517
- "relative-type-0": "käesolev aasta",
3518
- "relative-type-1": "järgmine aasta",
3519
- "relativeTime-type-future": {
3520
- "relativeTimePattern-count-one": "{0} a pärast",
3521
- "relativeTimePattern-count-other": "{0} a pärast"
3522
- },
3523
- "relativeTime-type-past": {
3524
- "relativeTimePattern-count-one": "{0} a eest",
3525
- "relativeTimePattern-count-other": "{0} a eest"
3526
- }
3527
- },
3528
- "year-narrow": {
3529
- "displayName": "a",
3530
- "relative-type--1": "eelmine aasta",
3531
- "relative-type-0": "käesolev aasta",
3532
- "relative-type-1": "järgmine aasta",
3533
- "relativeTime-type-future": {
3534
- "relativeTimePattern-count-one": "{0} a pärast",
3535
- "relativeTimePattern-count-other": "{0} a pärast"
3536
- },
3537
- "relativeTime-type-past": {
3538
- "relativeTimePattern-count-one": "{0} a eest",
3539
- "relativeTimePattern-count-other": "{0} a eest"
3540
- }
3541
- },
3542
- "quarter-wide": {
3543
- "displayName": "kvartal",
3544
- "relative-type--1": "eelmine kvartal",
3545
- "relative-type-0": "käesolev kvartal",
3546
- "relative-type-1": "järgmine kvartal",
3547
- "relativeTime-type-future": {
3548
- "relativeTimePattern-count-one": "{0} kvartali pärast",
3549
- "relativeTimePattern-count-other": "{0} kvartali pärast"
3550
- },
3551
- "relativeTime-type-past": {
3552
- "relativeTimePattern-count-one": "{0} kvartali eest",
3553
- "relativeTimePattern-count-other": "{0} kvartali eest"
3554
- }
3555
- },
3556
- "quarter-short": {
3557
- "displayName": "kv",
3558
- "relative-type--1": "eelmine kv",
3559
- "relative-type-0": "käesolev kv",
3560
- "relative-type-1": "järgmine kv",
3561
- "relativeTime-type-future": {
3562
- "relativeTimePattern-count-one": "{0} kv pärast",
3563
- "relativeTimePattern-count-other": "{0} kv pärast"
3564
- },
3565
- "relativeTime-type-past": {
3566
- "relativeTimePattern-count-one": "{0} kv eest",
3567
- "relativeTimePattern-count-other": "{0} kv eest"
3568
- }
3569
- },
3570
- "quarter-narrow": {
3571
- "displayName": "kv",
3572
- "relative-type--1": "eelmine kv",
3573
- "relative-type-0": "käesolev kv",
3574
- "relative-type-1": "järgmine kv",
3575
- "relativeTime-type-future": {
3576
- "relativeTimePattern-count-one": "{0} kv pärast",
3577
- "relativeTimePattern-count-other": "{0} kv pärast"
3578
- },
3579
- "relativeTime-type-past": {
3580
- "relativeTimePattern-count-one": "{0} kv eest",
3581
- "relativeTimePattern-count-other": "{0} kv eest"
3582
- }
3583
- },
3584
- "month-wide": {
3585
- "displayName": "kuu",
3586
- "relative-type--1": "eelmine kuu",
3587
- "relative-type-0": "käesolev kuu",
3588
- "relative-type-1": "järgmine kuu",
3589
- "relativeTime-type-future": {
3590
- "relativeTimePattern-count-one": "{0} kuu pärast",
3591
- "relativeTimePattern-count-other": "{0} kuu pärast"
3592
- },
3593
- "relativeTime-type-past": {
3594
- "relativeTimePattern-count-one": "{0} kuu eest",
3595
- "relativeTimePattern-count-other": "{0} kuu eest"
3596
- }
3597
- },
3598
- "month-short": {
3599
- "displayName": "k",
3600
- "relative-type--1": "eelmine kuu",
3601
- "relative-type-0": "käesolev kuu",
3602
- "relative-type-1": "järgmine kuu",
3603
- "relativeTime-type-future": {
3604
- "relativeTimePattern-count-one": "{0} kuu pärast",
3605
- "relativeTimePattern-count-other": "{0} kuu pärast"
3606
- },
3607
- "relativeTime-type-past": {
3608
- "relativeTimePattern-count-one": "{0} kuu eest",
3609
- "relativeTimePattern-count-other": "{0} kuu eest"
3610
- }
3611
- },
3612
- "month-narrow": {
3613
- "displayName": "k",
3614
- "relative-type--1": "eelmine kuu",
3615
- "relative-type-0": "käesolev kuu",
3616
- "relative-type-1": "järgmine kuu",
3617
- "relativeTime-type-future": {
3618
- "relativeTimePattern-count-one": "{0} k pärast",
3619
- "relativeTimePattern-count-other": "{0} k pärast"
3620
- },
3621
- "relativeTime-type-past": {
3622
- "relativeTimePattern-count-one": "{0} k eest",
3623
- "relativeTimePattern-count-other": "{0} k eest"
3624
- }
3625
- },
3626
- "week-wide": {
3627
- "displayName": "nädal",
3628
- "relative-type--1": "eelmine nädal",
3629
- "relative-type-0": "käesolev nädal",
3630
- "relative-type-1": "järgmine nädal",
3631
- "relativeTime-type-future": {
3632
- "relativeTimePattern-count-one": "{0} nädala pärast",
3633
- "relativeTimePattern-count-other": "{0} nädala pärast"
3634
- },
3635
- "relativeTime-type-past": {
3636
- "relativeTimePattern-count-one": "{0} nädala eest",
3637
- "relativeTimePattern-count-other": "{0} nädala eest"
3638
- },
3639
- "relativePeriod": "{0} nädal"
3640
- },
3641
- "week-short": {
3642
- "displayName": "näd",
3643
- "relative-type--1": "eelmine nädal",
3644
- "relative-type-0": "käesolev nädal",
3645
- "relative-type-1": "järgmine nädal",
3646
- "relativeTime-type-future": {
3647
- "relativeTimePattern-count-one": "{0} näd pärast",
3648
- "relativeTimePattern-count-other": "{0} näd pärast"
3649
- },
3650
- "relativeTime-type-past": {
3651
- "relativeTimePattern-count-one": "{0} näd eest",
3652
- "relativeTimePattern-count-other": "{0} näd eest"
3653
- },
3654
- "relativePeriod": "{0} näd"
3655
- },
3656
- "week-narrow": {
3657
- "displayName": "näd",
3658
- "relative-type--1": "eelmine nädal",
3659
- "relative-type-0": "käesolev nädal",
3660
- "relative-type-1": "järgmine nädal",
3661
- "relativeTime-type-future": {
3662
- "relativeTimePattern-count-one": "{0} näd pärast",
3663
- "relativeTimePattern-count-other": "{0} näd pärast"
3664
- },
3665
- "relativeTime-type-past": {
3666
- "relativeTimePattern-count-one": "{0} näd eest",
3667
- "relativeTimePattern-count-other": "{0} näd eest"
3668
- },
3669
- "relativePeriod": "{0} nädal"
3670
- },
3671
- "day-wide": {
3672
- "displayName": "päev",
3673
- "relative-type--2": "üleeile",
3674
- "relative-type--1": "eile",
3675
- "relative-type-0": "täna",
3676
- "relative-type-1": "homme",
3677
- "relative-type-2": "ülehomme",
3678
- "relativeTime-type-future": {
3679
- "relativeTimePattern-count-one": "{0} päeva pärast",
3680
- "relativeTimePattern-count-other": "{0} päeva pärast"
3681
- },
3682
- "relativeTime-type-past": {
3683
- "relativeTimePattern-count-one": "{0} päeva eest",
3684
- "relativeTimePattern-count-other": "{0} päeva eest"
3685
- }
3686
- },
3687
- "day-short": {
3688
- "displayName": "p",
3689
- "relative-type--2": "üleeile",
3690
- "relative-type--1": "eile",
3691
- "relative-type-0": "täna",
3692
- "relative-type-1": "homme",
3693
- "relative-type-2": "ülehomme",
3694
- "relativeTime-type-future": {
3695
- "relativeTimePattern-count-one": "{0} p pärast",
3696
- "relativeTimePattern-count-other": "{0} p pärast"
3697
- },
3698
- "relativeTime-type-past": {
3699
- "relativeTimePattern-count-one": "{0} p eest",
3700
- "relativeTimePattern-count-other": "{0} p eest"
3701
- }
3702
- },
3703
- "day-narrow": {
3704
- "displayName": "p",
3705
- "relative-type--2": "üleeile",
3706
- "relative-type--1": "eile",
3707
- "relative-type-0": "täna",
3708
- "relative-type-1": "homme",
3709
- "relative-type-2": "ülehomme",
3710
- "relativeTime-type-future": {
3711
- "relativeTimePattern-count-one": "{0} p pärast",
3712
- "relativeTimePattern-count-other": "{0} p pärast"
3713
- },
3714
- "relativeTime-type-past": {
3715
- "relativeTimePattern-count-one": "{0} p eest",
3716
- "relativeTimePattern-count-other": "{0} p eest"
3717
- }
3718
- },
3719
- "weekday": {
3720
- "displayName": "nädalapäev"
3721
- },
3722
- "hour-wide": {
3723
- "displayName": "tund",
3724
- "relative-type-0": "praegusel tunnil",
3725
- "relativeTime-type-future": {
3726
- "relativeTimePattern-count-one": "{0} tunni pärast",
3727
- "relativeTimePattern-count-other": "{0} tunni pärast"
3728
- },
3729
- "relativeTime-type-past": {
3730
- "relativeTimePattern-count-one": "{0} tunni eest",
3731
- "relativeTimePattern-count-other": "{0} tunni eest"
3732
- }
3733
- },
3734
- "hour-short": {
3735
- "displayName": "t",
3736
- "relative-type-0": "praegusel tunnil",
3737
- "relativeTime-type-future": {
3738
- "relativeTimePattern-count-one": "{0} t pärast",
3739
- "relativeTimePattern-count-other": "{0} t pärast"
3740
- },
3741
- "relativeTime-type-past": {
3742
- "relativeTimePattern-count-one": "{0} t eest",
3743
- "relativeTimePattern-count-other": "{0} t eest"
3744
- }
3745
- },
3746
- "hour-narrow": {
3747
- "displayName": "t",
3748
- "relative-type-0": "praegusel tunnil",
3749
- "relativeTime-type-future": {
3750
- "relativeTimePattern-count-one": "{0} t pärast",
3751
- "relativeTimePattern-count-other": "{0} t pärast"
3752
- },
3753
- "relativeTime-type-past": {
3754
- "relativeTimePattern-count-one": "{0} t eest",
3755
- "relativeTimePattern-count-other": "{0} t eest"
3756
- }
3757
- },
3758
- "minute-wide": {
3759
- "displayName": "minut",
3760
- "relative-type-0": "praegusel minutil",
3761
- "relativeTime-type-future": {
3762
- "relativeTimePattern-count-one": "{0} minuti pärast",
3763
- "relativeTimePattern-count-other": "{0} minuti pärast"
3764
- },
3765
- "relativeTime-type-past": {
3766
- "relativeTimePattern-count-one": "{0} minuti eest",
3767
- "relativeTimePattern-count-other": "{0} minuti eest"
3768
- }
3769
- },
3770
- "minute-short": {
3771
- "displayName": "min",
3772
- "relative-type-0": "praegusel minutil",
3773
- "relativeTime-type-future": {
3774
- "relativeTimePattern-count-one": "{0} min pärast",
3775
- "relativeTimePattern-count-other": "{0} min pärast"
3776
- },
3777
- "relativeTime-type-past": {
3778
- "relativeTimePattern-count-one": "{0} min eest",
3779
- "relativeTimePattern-count-other": "{0} min eest"
3780
- }
3781
- },
3782
- "minute-narrow": {
3783
- "displayName": "min",
3784
- "relative-type-0": "praegusel minutil",
3785
- "relativeTime-type-future": {
3786
- "relativeTimePattern-count-one": "{0} min pärast",
3787
- "relativeTimePattern-count-other": "{0} min pärast"
3788
- },
3789
- "relativeTime-type-past": {
3790
- "relativeTimePattern-count-one": "{0} min eest",
3791
- "relativeTimePattern-count-other": "{0} min eest"
3792
- }
3793
- },
3794
- "second-wide": {
3795
- "displayName": "sekund",
3796
- "relative-type-0": "nüüd",
3797
- "relativeTime-type-future": {
3798
- "relativeTimePattern-count-one": "{0} sekundi pärast",
3799
- "relativeTimePattern-count-other": "{0} sekundi pärast"
3800
- },
3801
- "relativeTime-type-past": {
3802
- "relativeTimePattern-count-one": "{0} sekundi eest",
3803
- "relativeTimePattern-count-other": "{0} sekundi eest"
3804
- }
3805
- },
3806
- "second-short": {
3807
- "displayName": "sek",
3808
- "relative-type-0": "nüüd",
3809
- "relativeTime-type-future": {
3810
- "relativeTimePattern-count-one": "{0} sek pärast",
3811
- "relativeTimePattern-count-other": "{0} sek pärast"
3812
- },
3813
- "relativeTime-type-past": {
3814
- "relativeTimePattern-count-one": "{0} sek eest",
3815
- "relativeTimePattern-count-other": "{0} sek eest"
3816
- }
3817
- },
3818
- "second-narrow": {
3819
- "displayName": "s",
3820
- "relative-type-0": "nüüd",
3821
- "relativeTime-type-future": {
3822
- "relativeTimePattern-count-one": "{0} s pärast",
3823
- "relativeTimePattern-count-other": "{0} s pärast"
3824
- },
3825
- "relativeTime-type-past": {
3826
- "relativeTimePattern-count-one": "{0} s eest",
3827
- "relativeTimePattern-count-other": "{0} s eest"
3828
- }
3829
- },
3830
- "zone": {
3831
- "displayName": "ajavöönd"
3832
- }
3833
- },
3834
- "decimalFormat": {
3835
- "standard": "#,##0.###"
3836
- },
3837
- "decimalFormat-long": {
3838
- "1000-one": "0 tuhat",
3839
- "1000-other": "0 tuhat",
3840
- "10000-one": "00 tuhat",
3841
- "10000-other": "00 tuhat",
3842
- "100000-one": "000 tuhat",
3843
- "100000-other": "000 tuhat",
3844
- "1000000-one": "0 miljon",
3845
- "1000000-other": "0 miljonit",
3846
- "10000000-one": "00 miljonit",
3847
- "10000000-other": "00 miljonit",
3848
- "100000000-one": "000 miljonit",
3849
- "100000000-other": "000 miljonit",
3850
- "1000000000-one": "0 miljard",
3851
- "1000000000-other": "0 miljardit",
3852
- "10000000000-one": "00 miljardit",
3853
- "10000000000-other": "00 miljardit",
3854
- "100000000000-one": "000 miljardit",
3855
- "100000000000-other": "000 miljardit",
3856
- "1000000000000-one": "0 triljon",
3857
- "1000000000000-other": "0 triljonit",
3858
- "10000000000000-one": "00 triljonit",
3859
- "10000000000000-other": "00 triljonit",
3860
- "100000000000000-one": "000 triljonit",
3861
- "100000000000000-other": "000 triljonit"
3862
- },
3863
- "decimalFormat-short": {
3864
- "1000-one": "0 tuh",
3865
- "1000-other": "0 tuh",
3866
- "10000-one": "00 tuh",
3867
- "10000-other": "00 tuh",
3868
- "100000-one": "000 tuh",
3869
- "100000-other": "000 tuh",
3870
- "1000000-one": "0 mln",
3871
- "1000000-other": "0 mln",
3872
- "10000000-one": "00 mln",
3873
- "10000000-other": "00 mln",
3874
- "100000000-one": "000 mln",
3875
- "100000000-other": "000 mln",
3876
- "1000000000-one": "0 mld",
3877
- "1000000000-other": "0 mld",
3878
- "10000000000-one": "00 mld",
3879
- "10000000000-other": "00 mld",
3880
- "100000000000-one": "000 mld",
3881
- "100000000000-other": "000 mld",
3882
- "1000000000000-one": "0 trl",
3883
- "1000000000000-other": "0 trl",
3884
- "10000000000000-one": "00 trl",
3885
- "10000000000000-other": "00 trl",
3886
- "100000000000000-one": "000 trl",
3887
- "100000000000000-other": "000 trl"
3888
- },
3889
- "scientificFormat": {
3890
- "standard": "#E0"
3891
- },
3892
- "percentFormat": {
3893
- "standard": "#,##0%"
3894
- },
3895
- "currencyFormat": {
3896
- "standard": "#,##0.00 ¤",
3897
- "accounting": "#,##0.00 ¤;(#,##0.00 ¤)",
3898
- "currencySpacing": {
3899
- "beforeCurrency": {
3900
- "currencyMatch": "[:^S:]",
3901
- "surroundingMatch": "[:digit:]",
3902
- "insertBetween": " "
3903
- },
3904
- "afterCurrency": {
3905
- "currencyMatch": "[:^S:]",
3906
- "surroundingMatch": "[:digit:]",
3907
- "insertBetween": " "
3908
- }
3909
- },
3910
- "sap-standard": "#,##0.00 ¤",
3911
- "sap-accounting": "#,##0.00 ¤;(#,##0.00 ¤)"
3912
- },
3913
- "miscPattern": {
3914
- "approximately": "~ {0}",
3915
- "atLeast": "≥{0}",
3916
- "atMost": "≤ {0}",
3917
- "range": "{0}‒{1}"
3918
- },
3919
- "currencyFormat-short": {
3920
- "1000-one": "0 tuh ¤",
3921
- "1000-other": "0 tuh ¤",
3922
- "10000-one": "00 tuh ¤",
3923
- "10000-other": "00 tuh ¤",
3924
- "100000-one": "000 tuh ¤",
3925
- "100000-other": "000 tuh ¤",
3926
- "1000000-one": "0 mln ¤",
3927
- "1000000-other": "0 mln ¤",
3928
- "10000000-one": "00 mln ¤",
3929
- "10000000-other": "00 mln ¤",
3930
- "100000000-one": "000 mln ¤",
3931
- "100000000-other": "000 mln ¤",
3932
- "1000000000-one": "0 mld ¤",
3933
- "1000000000-other": "0 mld ¤",
3934
- "10000000000-one": "00 mld ¤",
3935
- "10000000000-other": "00 mld ¤",
3936
- "100000000000-one": "000 mld ¤",
3937
- "100000000000-other": "000 mld ¤",
3938
- "1000000000000-one": "0 trl ¤",
3939
- "1000000000000-other": "0 trl ¤",
3940
- "10000000000000-one": "00 trl ¤",
3941
- "10000000000000-other": "00 trl ¤",
3942
- "100000000000000-one": "000 trl ¤",
3943
- "100000000000000-other": "000 trl ¤"
3944
- },
3945
- "symbols-latn-decimal": ",",
3946
- "symbols-latn-group": " ",
3947
- "symbols-latn-list": ";",
3948
- "symbols-latn-percentSign": "%",
3949
- "symbols-latn-plusSign": "+",
3950
- "symbols-latn-minusSign": "−",
3951
- "symbols-latn-exponential": "×10^",
3952
- "symbols-latn-superscriptingExponent": "×",
3953
- "symbols-latn-perMille": "‰",
3954
- "symbols-latn-infinity": "∞",
3955
- "symbols-latn-nan": "NaN",
3956
- "symbols-latn-timeSeparator": ":",
3957
- "currencySymbols": {
3958
- "AUD": "AU$",
3959
- "BRL": "R$",
3960
- "CAD": "CA$",
3961
- "CNY": "CN¥",
3962
- "EEK": "kr",
3963
- "EUR": "€",
3964
- "GBP": "£",
3965
- "HKD": "HK$",
3966
- "ILS": "₪",
3967
- "INR": "₹",
3968
- "JPY": "¥",
3969
- "KRW": "₩",
3970
- "MXN": "MX$",
3971
- "NZD": "NZ$",
3972
- "THB": "฿",
3973
- "TWD": "NT$",
3974
- "USD": "$",
3975
- "VND": "₫",
3976
- "XAF": "FCFA",
3977
- "XCD": "EC$",
3978
- "XOF": "CFA",
3979
- "XPF": "CFPF",
3980
- "XXX": "¤"
3981
- },
3982
- "rtl": false,
3983
- "listPattern-standard-wide": {
3984
- "2": "{0} ja {1}",
3985
- "start": "{0}, {1}",
3986
- "middle": "{0}, {1}",
3987
- "end": "{0} ja {1}"
3988
- },
3989
- "listPattern-or-wide": {
3990
- "2": "{0} või {1}",
3991
- "start": "{0}, {1}",
3992
- "middle": "{0}, {1}",
3993
- "end": "{0} või {1}"
3994
- },
3995
- "listPattern-or-short": {
3996
- "2": "{0} või {1}",
3997
- "start": "{0}, {1}",
3998
- "middle": "{0}, {1}",
3999
- "end": "{0} või {1}"
4000
- },
4001
- "listPattern-standard-short": {
4002
- "2": "{0} ja {1}",
4003
- "start": "{0}, {1}",
4004
- "middle": "{0}, {1}",
4005
- "end": "{0} ja {1}"
4006
- },
4007
- "units": {
4008
- "short": {
4009
- "per": {
4010
- "compoundUnitPattern": "{0}/{1}"
4011
- },
4012
- "acceleration-g-force": {
4013
- "displayName": "Maa raskuskiirendus",
4014
- "unitPattern-count-one": "{0} G",
4015
- "unitPattern-count-other": "{0} G"
4016
- },
4017
- "acceleration-meter-per-second-squared": {
4018
- "displayName": "m/s²",
4019
- "unitPattern-count-one": "{0} m/s²",
4020
- "unitPattern-count-other": "{0} m/s²"
4021
- },
4022
- "angle-revolution": {
4023
- "displayName": "pööre",
4024
- "unitPattern-count-one": "{0} pööre",
4025
- "unitPattern-count-other": "{0} pööret"
4026
- },
4027
- "angle-radian": {
4028
- "displayName": "radiaanid",
4029
- "unitPattern-count-one": "{0} rad",
4030
- "unitPattern-count-other": "{0} rad"
4031
- },
4032
- "angle-degree": {
4033
- "displayName": "kraadid",
4034
- "unitPattern-count-one": "{0}°",
4035
- "unitPattern-count-other": "{0}°"
4036
- },
4037
- "angle-arc-minute": {
4038
- "displayName": "kaareminut",
4039
- "unitPattern-count-one": "{0}′",
4040
- "unitPattern-count-other": "{0}′"
4041
- },
4042
- "angle-arc-second": {
4043
- "displayName": "″",
4044
- "unitPattern-count-one": "{0}″",
4045
- "unitPattern-count-other": "{0}″"
4046
- },
4047
- "area-square-kilometer": {
4048
- "displayName": "km²",
4049
- "unitPattern-count-one": "{0} km²",
4050
- "unitPattern-count-other": "{0} km²",
4051
- "perUnitPattern": "{0}/km²"
4052
- },
4053
- "area-hectare": {
4054
- "displayName": "hektarid",
4055
- "unitPattern-count-one": "{0} ha",
4056
- "unitPattern-count-other": "{0} ha"
4057
- },
4058
- "area-square-meter": {
4059
- "displayName": "m²",
4060
- "unitPattern-count-one": "{0} m²",
4061
- "unitPattern-count-other": "{0} m²",
4062
- "perUnitPattern": "{0}/m²"
4063
- },
4064
- "area-square-centimeter": {
4065
- "displayName": "cm²",
4066
- "unitPattern-count-one": "{0} cm²",
4067
- "unitPattern-count-other": "{0} cm²",
4068
- "perUnitPattern": "{0}/cm²"
4069
- },
4070
- "area-square-mile": {
4071
- "displayName": "mi²",
4072
- "unitPattern-count-one": "{0} mi²",
4073
- "unitPattern-count-other": "{0} mi²",
4074
- "perUnitPattern": "{0}/mi²"
4075
- },
4076
- "area-acre": {
4077
- "displayName": "aakrid",
4078
- "unitPattern-count-one": "{0} ac",
4079
- "unitPattern-count-other": "{0} ac"
4080
- },
4081
- "area-square-yard": {
4082
- "displayName": "ruutjardid",
4083
- "unitPattern-count-one": "{0} yd²",
4084
- "unitPattern-count-other": "{0} yd²"
4085
- },
4086
- "area-square-foot": {
4087
- "displayName": "ruutjalad",
4088
- "unitPattern-count-one": "{0} ft²",
4089
- "unitPattern-count-other": "{0} ft²"
4090
- },
4091
- "area-square-inch": {
4092
- "displayName": "ruuttollid",
4093
- "unitPattern-count-one": "{0} in²",
4094
- "unitPattern-count-other": "{0} in²",
4095
- "perUnitPattern": "{0}/in²"
4096
- },
4097
- "area-dunam": {
4098
- "displayName": "dunamid",
4099
- "unitPattern-count-one": "{0} dunam",
4100
- "unitPattern-count-other": "{0} dunami"
4101
- },
4102
- "concentr-karat": {
4103
- "displayName": "karaat",
4104
- "unitPattern-count-one": "{0} ct",
4105
- "unitPattern-count-other": "{0} ct"
4106
- },
4107
- "concentr-milligram-per-deciliter": {
4108
- "displayName": "mg/dl",
4109
- "unitPattern-count-one": "{0} mg/dl",
4110
- "unitPattern-count-other": "{0} mg/dl"
4111
- },
4112
- "concentr-millimole-per-liter": {
4113
- "displayName": "mmol/l",
4114
- "unitPattern-count-one": "{0} mmol/l",
4115
- "unitPattern-count-other": "{0} mmol/l"
4116
- },
4117
- "concentr-part-per-million": {
4118
- "displayName": "osa/miljon",
4119
- "unitPattern-count-one": "{0} ppm",
4120
- "unitPattern-count-other": "{0} ppm"
4121
- },
4122
- "concentr-percent": {
4123
- "displayName": "%",
4124
- "unitPattern-count-one": "{0}%",
4125
- "unitPattern-count-other": "{0}%"
4126
- },
4127
- "concentr-permille": {
4128
- "displayName": "‰",
4129
- "unitPattern-count-one": "{0}‰",
4130
- "unitPattern-count-other": "{0}‰"
4131
- },
4132
- "concentr-permyriad": {
4133
- "displayName": "promüriaad",
4134
- "unitPattern-count-one": "{0}‱",
4135
- "unitPattern-count-other": "{0}‱"
4136
- },
4137
- "concentr-mole": {
4138
- "displayName": "mool",
4139
- "unitPattern-count-one": "{0} mol",
4140
- "unitPattern-count-other": "{0} mol"
4141
- },
4142
- "consumption-liter-per-kilometer": {
4143
- "displayName": "l/km",
4144
- "unitPattern-count-one": "{0} l/km",
4145
- "unitPattern-count-other": "{0} l/km"
4146
- },
4147
- "consumption-liter-per-100kilometers": {
4148
- "displayName": "l/100 km",
4149
- "unitPattern-count-one": "{0} l/100 km",
4150
- "unitPattern-count-other": "{0} l/100 km"
4151
- },
4152
- "consumption-mile-per-gallon": {
4153
- "displayName": "miil/gallon",
4154
- "unitPattern-count-one": "{0} mpg",
4155
- "unitPattern-count-other": "{0} mpg"
4156
- },
4157
- "consumption-mile-per-gallon-imperial": {
4158
- "displayName": "miil/gal imp.",
4159
- "unitPattern-count-one": "{0} mpg imp.",
4160
- "unitPattern-count-other": "{0} mpg imp."
4161
- },
4162
- "digital-petabyte": {
4163
- "displayName": "PB",
4164
- "unitPattern-count-one": "{0} PB",
4165
- "unitPattern-count-other": "{0} PB"
4166
- },
4167
- "digital-terabyte": {
4168
- "displayName": "TB",
4169
- "unitPattern-count-one": "{0} TB",
4170
- "unitPattern-count-other": "{0} TB"
4171
- },
4172
- "digital-terabit": {
4173
- "displayName": "Tb",
4174
- "unitPattern-count-one": "{0} Tb",
4175
- "unitPattern-count-other": "{0} Tb"
4176
- },
4177
- "digital-gigabyte": {
4178
- "displayName": "GB",
4179
- "unitPattern-count-one": "{0} GB",
4180
- "unitPattern-count-other": "{0} GB"
4181
- },
4182
- "digital-gigabit": {
4183
- "displayName": "Gb",
4184
- "unitPattern-count-one": "{0} Gb",
4185
- "unitPattern-count-other": "{0} Gb"
4186
- },
4187
- "digital-megabyte": {
4188
- "displayName": "MB",
4189
- "unitPattern-count-one": "{0} MB",
4190
- "unitPattern-count-other": "{0} MB"
4191
- },
4192
- "digital-megabit": {
4193
- "displayName": "Mb",
4194
- "unitPattern-count-one": "{0} Mb",
4195
- "unitPattern-count-other": "{0} Mb"
4196
- },
4197
- "digital-kilobyte": {
4198
- "displayName": "kB",
4199
- "unitPattern-count-one": "{0} kB",
4200
- "unitPattern-count-other": "{0} kB"
4201
- },
4202
- "digital-kilobit": {
4203
- "displayName": "kb",
4204
- "unitPattern-count-one": "{0} kb",
4205
- "unitPattern-count-other": "{0} kb"
4206
- },
4207
- "digital-byte": {
4208
- "displayName": "bait",
4209
- "unitPattern-count-one": "{0} bait",
4210
- "unitPattern-count-other": "{0} baiti"
4211
- },
4212
- "digital-bit": {
4213
- "displayName": "bitt",
4214
- "unitPattern-count-one": "{0} b",
4215
- "unitPattern-count-other": "{0} b"
4216
- },
4217
- "duration-century": {
4218
- "displayName": "saj",
4219
- "unitPattern-count-one": "{0} saj",
4220
- "unitPattern-count-other": "{0} saj"
4221
- },
4222
- "duration-year": {
4223
- "displayName": "aastad",
4224
- "unitPattern-count-one": "{0} a",
4225
- "unitPattern-count-other": "{0} a",
4226
- "perUnitPattern": "{0}/a"
4227
- },
4228
- "duration-month": {
4229
- "displayName": "kuud",
4230
- "unitPattern-count-one": "{0} kuu",
4231
- "unitPattern-count-other": "{0} kuud",
4232
- "perUnitPattern": "{0}/k"
4233
- },
4234
- "duration-week": {
4235
- "displayName": "näd",
4236
- "unitPattern-count-one": "{0} näd",
4237
- "unitPattern-count-other": "{0} näd",
4238
- "perUnitPattern": "{0}/näd"
4239
- },
4240
- "duration-day": {
4241
- "displayName": "päevad",
4242
- "unitPattern-count-one": "{0} päev",
4243
- "unitPattern-count-other": "{0} päeva",
4244
- "perUnitPattern": "{0}/ööp"
4245
- },
4246
- "duration-hour": {
4247
- "displayName": "t",
4248
- "unitPattern-count-one": "{0} t",
4249
- "unitPattern-count-other": "{0} t",
4250
- "perUnitPattern": "{0}/t"
4251
- },
4252
- "duration-minute": {
4253
- "displayName": "min",
4254
- "unitPattern-count-one": "{0} min",
4255
- "unitPattern-count-other": "{0} min",
4256
- "perUnitPattern": "{0}/min"
4257
- },
4258
- "duration-second": {
4259
- "displayName": "sek",
4260
- "unitPattern-count-one": "{0} sek",
4261
- "unitPattern-count-other": "{0} sek",
4262
- "perUnitPattern": "{0}/sek"
4263
- },
4264
- "duration-millisecond": {
4265
- "displayName": "ms",
4266
- "unitPattern-count-one": "{0} ms",
4267
- "unitPattern-count-other": "{0} ms"
4268
- },
4269
- "duration-microsecond": {
4270
- "displayName": "μs",
4271
- "unitPattern-count-one": "{0} μs",
4272
- "unitPattern-count-other": "{0} μs"
4273
- },
4274
- "duration-nanosecond": {
4275
- "displayName": "ns",
4276
- "unitPattern-count-one": "{0} ns",
4277
- "unitPattern-count-other": "{0} ns"
4278
- },
4279
- "electric-ampere": {
4280
- "displayName": "amprid",
4281
- "unitPattern-count-one": "{0} A",
4282
- "unitPattern-count-other": "{0} A"
4283
- },
4284
- "electric-milliampere": {
4285
- "displayName": "milliamprid",
4286
- "unitPattern-count-one": "{0} mA",
4287
- "unitPattern-count-other": "{0} mA"
4288
- },
4289
- "electric-ohm": {
4290
- "displayName": "oomid",
4291
- "unitPattern-count-one": "{0} Ω",
4292
- "unitPattern-count-other": "{0} Ω"
4293
- },
4294
- "electric-volt": {
4295
- "displayName": "voldid",
4296
- "unitPattern-count-one": "{0} V",
4297
- "unitPattern-count-other": "{0} V"
4298
- },
4299
- "energy-kilocalorie": {
4300
- "displayName": "kcal",
4301
- "unitPattern-count-one": "{0} kcal",
4302
- "unitPattern-count-other": "{0} kcal"
4303
- },
4304
- "energy-calorie": {
4305
- "displayName": "cal",
4306
- "unitPattern-count-one": "{0} cal",
4307
- "unitPattern-count-other": "{0} cal"
4308
- },
4309
- "energy-foodcalorie": {
4310
- "displayName": "Cal",
4311
- "unitPattern-count-one": "{0} Cal",
4312
- "unitPattern-count-other": "{0} Cal"
4313
- },
4314
- "energy-kilojoule": {
4315
- "displayName": "kJ",
4316
- "unitPattern-count-one": "{0} kJ",
4317
- "unitPattern-count-other": "{0} kJ"
4318
- },
4319
- "energy-joule": {
4320
- "displayName": "džaulid",
4321
- "unitPattern-count-one": "{0} J",
4322
- "unitPattern-count-other": "{0} J"
4323
- },
4324
- "energy-kilowatt-hour": {
4325
- "displayName": "kW-tund",
4326
- "unitPattern-count-one": "{0} kWh",
4327
- "unitPattern-count-other": "{0} kWh"
4328
- },
4329
- "energy-electronvolt": {
4330
- "displayName": "elektronvolt",
4331
- "unitPattern-count-one": "{0} eV",
4332
- "unitPattern-count-other": "{0} eV"
4333
- },
4334
- "energy-british-thermal-unit": {
4335
- "displayName": "Briti soojusühik",
4336
- "unitPattern-count-one": "{0} Btu",
4337
- "unitPattern-count-other": "{0} Btu"
4338
- },
4339
- "force-pound-force": {
4340
- "displayName": "jõunael",
4341
- "unitPattern-count-one": "{0} lbf",
4342
- "unitPattern-count-other": "{0} lbf"
4343
- },
4344
- "force-newton": {
4345
- "displayName": "njuuton",
4346
- "unitPattern-count-one": "{0} N",
4347
- "unitPattern-count-other": "{0} N"
4348
- },
4349
- "frequency-gigahertz": {
4350
- "displayName": "GHz",
4351
- "unitPattern-count-one": "{0} GHz",
4352
- "unitPattern-count-other": "{0} GHz"
4353
- },
4354
- "frequency-megahertz": {
4355
- "displayName": "MHz",
4356
- "unitPattern-count-one": "{0} MHz",
4357
- "unitPattern-count-other": "{0} MHz"
4358
- },
4359
- "frequency-kilohertz": {
4360
- "displayName": "kHz",
4361
- "unitPattern-count-one": "{0} kHz",
4362
- "unitPattern-count-other": "{0} kHz"
4363
- },
4364
- "frequency-hertz": {
4365
- "displayName": "Hz",
4366
- "unitPattern-count-one": "{0} Hz",
4367
- "unitPattern-count-other": "{0} Hz"
4368
- },
4369
- "length-kilometer": {
4370
- "displayName": "km",
4371
- "unitPattern-count-one": "{0} km",
4372
- "unitPattern-count-other": "{0} km",
4373
- "perUnitPattern": "{0}/km"
4374
- },
4375
- "length-meter": {
4376
- "displayName": "m",
4377
- "unitPattern-count-one": "{0} m",
4378
- "unitPattern-count-other": "{0} m",
4379
- "perUnitPattern": "{0}/m"
4380
- },
4381
- "length-decimeter": {
4382
- "displayName": "dm",
4383
- "unitPattern-count-one": "{0} dm",
4384
- "unitPattern-count-other": "{0} dm"
4385
- },
4386
- "length-centimeter": {
4387
- "displayName": "cm",
4388
- "unitPattern-count-one": "{0} cm",
4389
- "unitPattern-count-other": "{0} cm",
4390
- "perUnitPattern": "{0}/cm"
4391
- },
4392
- "length-millimeter": {
4393
- "displayName": "mm",
4394
- "unitPattern-count-one": "{0} mm",
4395
- "unitPattern-count-other": "{0} mm"
4396
- },
4397
- "length-micrometer": {
4398
- "displayName": "µm",
4399
- "unitPattern-count-one": "{0} µm",
4400
- "unitPattern-count-other": "{0} µm"
4401
- },
4402
- "length-nanometer": {
4403
- "displayName": "nm",
4404
- "unitPattern-count-one": "{0} nm",
4405
- "unitPattern-count-other": "{0} nm"
4406
- },
4407
- "length-picometer": {
4408
- "displayName": "pm",
4409
- "unitPattern-count-one": "{0} pm",
4410
- "unitPattern-count-other": "{0} pm"
4411
- },
4412
- "length-mile": {
4413
- "displayName": "mi",
4414
- "unitPattern-count-one": "{0} mi",
4415
- "unitPattern-count-other": "{0} mi"
4416
- },
4417
- "length-yard": {
4418
- "displayName": "jardid",
4419
- "unitPattern-count-one": "{0} yd",
4420
- "unitPattern-count-other": "{0} yd"
4421
- },
4422
- "length-foot": {
4423
- "displayName": "ft",
4424
- "unitPattern-count-one": "{0} ft",
4425
- "unitPattern-count-other": "{0} ft",
4426
- "perUnitPattern": "{0}/ft"
4427
- },
4428
- "length-inch": {
4429
- "displayName": "tollid",
4430
- "unitPattern-count-one": "{0} in",
4431
- "unitPattern-count-other": "{0} in",
4432
- "perUnitPattern": "{0}/in"
4433
- },
4434
- "length-parsec": {
4435
- "displayName": "parsekid",
4436
- "unitPattern-count-one": "{0} pc",
4437
- "unitPattern-count-other": "{0} pc"
4438
- },
4439
- "length-light-year": {
4440
- "displayName": "valgusaastad",
4441
- "unitPattern-count-one": "{0} valgusa.",
4442
- "unitPattern-count-other": "{0} valgusa."
4443
- },
4444
- "length-astronomical-unit": {
4445
- "displayName": "aü",
4446
- "unitPattern-count-one": "{0} aü",
4447
- "unitPattern-count-other": "{0} aü"
4448
- },
4449
- "length-furlong": {
4450
- "displayName": "furlongid",
4451
- "unitPattern-count-other": "{0} fur"
4452
- },
4453
- "length-fathom": {
4454
- "displayName": "süllad",
4455
- "unitPattern-count-one": "{0} fth",
4456
- "unitPattern-count-other": "{0} fth"
4457
- },
4458
- "length-nautical-mile": {
4459
- "displayName": "nmi",
4460
- "unitPattern-count-one": "{0} nmi",
4461
- "unitPattern-count-other": "{0} nmi"
4462
- },
4463
- "length-mile-scandinavian": {
4464
- "displayName": "smi",
4465
- "unitPattern-count-one": "{0} smi",
4466
- "unitPattern-count-other": "{0} smi"
4467
- },
4468
- "length-point": {
4469
- "displayName": "punktid",
4470
- "unitPattern-count-one": "{0} pt",
4471
- "unitPattern-count-other": "{0} pt"
4472
- },
4473
- "length-solar-radius": {
4474
- "displayName": "Päikese raadiused",
4475
- "unitPattern-count-one": "{0} R☉",
4476
- "unitPattern-count-other": "{0} R☉"
4477
- },
4478
- "light-lux": {
4479
- "displayName": "lx",
4480
- "unitPattern-count-one": "{0} lx",
4481
- "unitPattern-count-other": "{0} lx"
4482
- },
4483
- "light-solar-luminosity": {
4484
- "displayName": "Päikese heledus",
4485
- "unitPattern-count-one": "{0} L☉",
4486
- "unitPattern-count-other": "{0} L☉"
4487
- },
4488
- "mass-metric-ton": {
4489
- "displayName": "t",
4490
- "unitPattern-count-one": "{0} t",
4491
- "unitPattern-count-other": "{0} t"
4492
- },
4493
- "mass-kilogram": {
4494
- "displayName": "kg",
4495
- "unitPattern-count-one": "{0} kg",
4496
- "unitPattern-count-other": "{0} kg",
4497
- "perUnitPattern": "{0}/kg"
4498
- },
4499
- "mass-gram": {
4500
- "displayName": "grammid",
4501
- "unitPattern-count-one": "{0} g",
4502
- "unitPattern-count-other": "{0} g",
4503
- "perUnitPattern": "{0}/g"
4504
- },
4505
- "mass-milligram": {
4506
- "displayName": "mg",
4507
- "unitPattern-count-one": "{0} mg",
4508
- "unitPattern-count-other": "{0} mg"
4509
- },
4510
- "mass-microgram": {
4511
- "displayName": "µg",
4512
- "unitPattern-count-one": "{0} µg",
4513
- "unitPattern-count-other": "{0} µg"
4514
- },
4515
- "mass-ton": {
4516
- "displayName": "lüh t",
4517
- "unitPattern-count-one": "{0} lüh t",
4518
- "unitPattern-count-other": "{0} lüh t"
4519
- },
4520
- "mass-stone": {
4521
- "displayName": "kivid",
4522
- "unitPattern-count-other": "{0} st"
4523
- },
4524
- "mass-pound": {
4525
- "displayName": "naelad",
4526
- "unitPattern-count-one": "{0} lb",
4527
- "unitPattern-count-other": "{0} lb",
4528
- "perUnitPattern": "{0}/lb"
4529
- },
4530
- "mass-ounce": {
4531
- "displayName": "oz",
4532
- "unitPattern-count-one": "{0} oz",
4533
- "unitPattern-count-other": "{0} oz",
4534
- "perUnitPattern": "{0}/oz"
4535
- },
4536
- "mass-ounce-troy": {
4537
- "displayName": "oz t",
4538
- "unitPattern-count-one": "{0} oz t",
4539
- "unitPattern-count-other": "{0} oz t"
4540
- },
4541
- "mass-carat": {
4542
- "displayName": "ct",
4543
- "unitPattern-count-one": "{0} ct",
4544
- "unitPattern-count-other": "{0} ct"
4545
- },
4546
- "mass-dalton": {
4547
- "displayName": "daltonid",
4548
- "unitPattern-count-one": "{0} Da",
4549
- "unitPattern-count-other": "{0} Da"
4550
- },
4551
- "mass-earth-mass": {
4552
- "displayName": "Maa massid",
4553
- "unitPattern-count-one": "{0} M⊕",
4554
- "unitPattern-count-other": "{0} M⊕"
4555
- },
4556
- "mass-solar-mass": {
4557
- "displayName": "Päikese massid",
4558
- "unitPattern-count-one": "{0} M☉",
4559
- "unitPattern-count-other": "{0} M☉"
4560
- },
4561
- "power-gigawatt": {
4562
- "displayName": "GW",
4563
- "unitPattern-count-one": "{0} GW",
4564
- "unitPattern-count-other": "{0} GW"
4565
- },
4566
- "power-megawatt": {
4567
- "displayName": "MW",
4568
- "unitPattern-count-one": "{0} MW",
4569
- "unitPattern-count-other": "{0} MW"
4570
- },
4571
- "power-kilowatt": {
4572
- "displayName": "kW",
4573
- "unitPattern-count-one": "{0} kW",
4574
- "unitPattern-count-other": "{0} kW"
4575
- },
4576
- "power-watt": {
4577
- "displayName": "vatid",
4578
- "unitPattern-count-one": "{0} W",
4579
- "unitPattern-count-other": "{0} W"
4580
- },
4581
- "power-milliwatt": {
4582
- "displayName": "mW",
4583
- "unitPattern-count-one": "{0} mW",
4584
- "unitPattern-count-other": "{0} mW"
4585
- },
4586
- "power-horsepower": {
4587
- "displayName": "hj",
4588
- "unitPattern-count-one": "{0} hj",
4589
- "unitPattern-count-other": "{0} hj"
4590
- },
4591
- "pressure-hectopascal": {
4592
- "displayName": "hPa",
4593
- "unitPattern-count-one": "{0} hPa",
4594
- "unitPattern-count-other": "{0} hPa"
4595
- },
4596
- "pressure-millimeter-of-mercury": {
4597
- "displayName": "mm Hg",
4598
- "unitPattern-count-one": "{0} mm Hg",
4599
- "unitPattern-count-other": "{0} mm Hg"
4600
- },
4601
- "pressure-pound-per-square-inch": {
4602
- "displayName": "psi",
4603
- "unitPattern-count-one": "{0} psi",
4604
- "unitPattern-count-other": "{0} psi"
4605
- },
4606
- "pressure-inch-hg": {
4607
- "displayName": "in Hg",
4608
- "unitPattern-count-one": "{0} in Hg",
4609
- "unitPattern-count-other": "{0} in Hg"
4610
- },
4611
- "pressure-millibar": {
4612
- "displayName": "mbar",
4613
- "unitPattern-count-one": "{0} mbar",
4614
- "unitPattern-count-other": "{0} mbar"
4615
- },
4616
- "pressure-atmosphere": {
4617
- "displayName": "atm",
4618
- "unitPattern-count-one": "{0} atm",
4619
- "unitPattern-count-other": "{0} atm"
4620
- },
4621
- "pressure-kilopascal": {
4622
- "displayName": "kPa",
4623
- "unitPattern-count-one": "{0} kPa",
4624
- "unitPattern-count-other": "{0} kPa"
4625
- },
4626
- "pressure-megapascal": {
4627
- "displayName": "MPa",
4628
- "unitPattern-count-one": "{0} MPa",
4629
- "unitPattern-count-other": "{0} MPa"
4630
- },
4631
- "speed-kilometer-per-hour": {
4632
- "displayName": "km/h",
4633
- "unitPattern-count-one": "{0} km/h",
4634
- "unitPattern-count-other": "{0} km/h"
4635
- },
4636
- "speed-meter-per-second": {
4637
- "displayName": "m/s",
4638
- "unitPattern-count-one": "{0} m/s",
4639
- "unitPattern-count-other": "{0} m/s"
4640
- },
4641
- "speed-mile-per-hour": {
4642
- "displayName": "mi/h",
4643
- "unitPattern-count-one": "{0} mi/h",
4644
- "unitPattern-count-other": "{0} mi/h"
4645
- },
4646
- "speed-knot": {
4647
- "displayName": "kn",
4648
- "unitPattern-count-one": "{0} kn",
4649
- "unitPattern-count-other": "{0} kn"
4650
- },
4651
- "temperature-generic": {
4652
- "displayName": "°",
4653
- "unitPattern-count-one": "{0}°",
4654
- "unitPattern-count-other": "{0}°"
4655
- },
4656
- "temperature-celsius": {
4657
- "displayName": "°C",
4658
- "unitPattern-count-one": "{0} °C",
4659
- "unitPattern-count-other": "{0} °C"
4660
- },
4661
- "temperature-fahrenheit": {
4662
- "displayName": "°F",
4663
- "unitPattern-count-one": "{0} °F",
4664
- "unitPattern-count-other": "{0} °F"
4665
- },
4666
- "temperature-kelvin": {
4667
- "displayName": "K",
4668
- "unitPattern-count-one": "{0} K",
4669
- "unitPattern-count-other": "{0} K"
4670
- },
4671
- "torque-pound-foot": {
4672
- "displayName": "lbf⋅ft",
4673
- "unitPattern-count-one": "{0} lbf⋅ft",
4674
- "unitPattern-count-other": "{0} lbf⋅ft"
4675
- },
4676
- "torque-newton-meter": {
4677
- "displayName": "Nm",
4678
- "unitPattern-count-one": "{0} Nm",
4679
- "unitPattern-count-other": "{0} Nm"
4680
- },
4681
- "volume-cubic-kilometer": {
4682
- "displayName": "km³",
4683
- "unitPattern-count-one": "{0} km³",
4684
- "unitPattern-count-other": "{0} km³"
4685
- },
4686
- "volume-cubic-meter": {
4687
- "displayName": "m³",
4688
- "unitPattern-count-one": "{0} m³",
4689
- "unitPattern-count-other": "{0} m³",
4690
- "perUnitPattern": "{0}/m³"
4691
- },
4692
- "volume-cubic-centimeter": {
4693
- "displayName": "cm³",
4694
- "unitPattern-count-one": "{0} cm³",
4695
- "unitPattern-count-other": "{0} cm³",
4696
- "perUnitPattern": "{0}/cm³"
4697
- },
4698
- "volume-cubic-mile": {
4699
- "displayName": "kuupmiilid",
4700
- "unitPattern-count-one": "{0} mi³",
4701
- "unitPattern-count-other": "{0} mi³"
4702
- },
4703
- "volume-cubic-yard": {
4704
- "displayName": "kuupjardid",
4705
- "unitPattern-count-one": "{0} yd³",
4706
- "unitPattern-count-other": "{0} yd³"
4707
- },
4708
- "volume-cubic-foot": {
4709
- "displayName": "ft³",
4710
- "unitPattern-count-one": "{0} ft³",
4711
- "unitPattern-count-other": "{0} ft³"
4712
- },
4713
- "volume-cubic-inch": {
4714
- "displayName": "kuuptollid",
4715
- "unitPattern-count-one": "{0} in³",
4716
- "unitPattern-count-other": "{0} in³"
4717
- },
4718
- "volume-megaliter": {
4719
- "displayName": "Ml",
4720
- "unitPattern-count-one": "{0} Ml",
4721
- "unitPattern-count-other": "{0} Ml"
4722
- },
4723
- "volume-hectoliter": {
4724
- "displayName": "hl",
4725
- "unitPattern-count-one": "{0} hl",
4726
- "unitPattern-count-other": "{0} hl"
4727
- },
4728
- "volume-liter": {
4729
- "displayName": "liitrid",
4730
- "unitPattern-count-one": "{0} l",
4731
- "unitPattern-count-other": "{0} l",
4732
- "perUnitPattern": "{0}/l"
4733
- },
4734
- "volume-deciliter": {
4735
- "displayName": "dl",
4736
- "unitPattern-count-one": "{0} dl",
4737
- "unitPattern-count-other": "{0} dl"
4738
- },
4739
- "volume-centiliter": {
4740
- "displayName": "cl",
4741
- "unitPattern-count-one": "{0} cl",
4742
- "unitPattern-count-other": "{0} cl"
4743
- },
4744
- "volume-milliliter": {
4745
- "displayName": "ml",
4746
- "unitPattern-count-one": "{0} ml",
4747
- "unitPattern-count-other": "{0} ml"
4748
- },
4749
- "volume-pint-metric": {
4750
- "displayName": "mpt",
4751
- "unitPattern-count-one": "{0} mpt",
4752
- "unitPattern-count-other": "{0} mpt"
4753
- },
4754
- "volume-cup-metric": {
4755
- "displayName": "mcup",
4756
- "unitPattern-count-one": "{0} mc",
4757
- "unitPattern-count-other": "{0} mc"
4758
- },
4759
- "volume-acre-foot": {
4760
- "displayName": "aakerjalg",
4761
- "unitPattern-count-one": "{0} ac ft",
4762
- "unitPattern-count-other": "{0} ac ft"
4763
- },
4764
- "volume-bushel": {
4765
- "displayName": "buššelid",
4766
- "unitPattern-count-other": "{0} bu"
4767
- },
4768
- "volume-gallon": {
4769
- "displayName": "gal",
4770
- "unitPattern-count-one": "{0} gal",
4771
- "unitPattern-count-other": "{0} gal",
4772
- "perUnitPattern": "{0}/gal"
4773
- },
4774
- "volume-gallon-imperial": {
4775
- "displayName": "Imp. gal",
4776
- "unitPattern-count-one": "{0} gal Imp.",
4777
- "unitPattern-count-other": "{0} gal Imp.",
4778
- "perUnitPattern": "{0}/gal Imp."
4779
- },
4780
- "volume-quart": {
4781
- "displayName": "kvart",
4782
- "unitPattern-count-one": "{0} qt",
4783
- "unitPattern-count-other": "{0} qt"
4784
- },
4785
- "volume-pint": {
4786
- "displayName": "pindid",
4787
- "unitPattern-count-one": "{0} pt",
4788
- "unitPattern-count-other": "{0} pt"
4789
- },
4790
- "volume-cup": {
4791
- "displayName": "tass",
4792
- "unitPattern-count-one": "{0} c",
4793
- "unitPattern-count-other": "{0} c"
4794
- },
4795
- "volume-fluid-ounce": {
4796
- "displayName": "fl oz",
4797
- "unitPattern-count-one": "{0} fl oz",
4798
- "unitPattern-count-other": "{0} fl oz"
4799
- },
4800
- "volume-fluid-ounce-imperial": {
4801
- "displayName": "Imp. fl oz",
4802
- "unitPattern-count-one": "{0} fl oz Imp.",
4803
- "unitPattern-count-other": "{0} fl oz Imp."
4804
- },
4805
- "volume-tablespoon": {
4806
- "displayName": "spl",
4807
- "unitPattern-count-one": "{0} spl",
4808
- "unitPattern-count-other": "{0} spl"
4809
- },
4810
- "volume-teaspoon": {
4811
- "displayName": "tl",
4812
- "unitPattern-count-one": "{0} tl",
4813
- "unitPattern-count-other": "{0} tl"
4814
- },
4815
- "volume-barrel": {
4816
- "displayName": "barrel",
4817
- "unitPattern-count-one": "{0} bbl",
4818
- "unitPattern-count-other": "{0} bbl"
4819
- },
4820
- "coordinateUnit": {
4821
- "displayName": "ilmakaar",
4822
- "east": "{0} ip",
4823
- "north": "{0} pl",
4824
- "south": "{0} ll",
4825
- "west": "{0} lp"
4826
- }
4827
- }
4828
- },
4829
- "lenient-scope-number": {
4830
- "minusSign": "-‒⁻₋−➖﹣-",
4831
- "commaSign": ",،٫、︐︑﹐﹑,、",
4832
- "plusSign": "+⁺₊➕﬩﹢+"
4833
- },
4834
- "currencyFormat-sap-short": {
4835
- "1000-one": "0 tuh ¤",
4836
- "1000-other": "0 tuh ¤",
4837
- "10000-one": "00 tuh ¤",
4838
- "10000-other": "00 tuh ¤",
4839
- "100000-one": "000 tuh ¤",
4840
- "100000-other": "000 tuh ¤",
4841
- "1000000-one": "0 mln ¤",
4842
- "1000000-other": "0 mln ¤",
4843
- "10000000-one": "00 mln ¤",
4844
- "10000000-other": "00 mln ¤",
4845
- "100000000-one": "000 mln ¤",
4846
- "100000000-other": "000 mln ¤",
4847
- "1000000000-one": "0 mld ¤",
4848
- "1000000000-other": "0 mld ¤",
4849
- "10000000000-one": "00 mld ¤",
4850
- "10000000000-other": "00 mld ¤",
4851
- "100000000000-one": "000 mld ¤",
4852
- "100000000000-other": "000 mld ¤",
4853
- "1000000000000-one": "0 trl ¤",
4854
- "1000000000000-other": "0 trl ¤",
4855
- "10000000000000-one": "00 trl ¤",
4856
- "10000000000000-other": "00 trl ¤",
4857
- "100000000000000-one": "000 trl ¤",
4858
- "100000000000000-other": "000 trl ¤"
4859
- },
4860
- "currencyDigits": {
4861
- "ADP": 0,
4862
- "AFN": 0,
4863
- "ALL": 0,
4864
- "BHD": 3,
4865
- "BIF": 0,
4866
- "BYR": 0,
4867
- "CLF": 4,
4868
- "CLP": 0,
4869
- "DEFAULT": 2,
4870
- "DJF": 0,
4871
- "ESP": 0,
4872
- "GNF": 0,
4873
- "HUF": 0,
4874
- "IQD": 0,
4875
- "IRR": 0,
4876
- "ISK": 0,
4877
- "ITL": 0,
4878
- "JOD": 3,
4879
- "JPY": 0,
4880
- "KMF": 0,
4881
- "KPW": 0,
4882
- "KRW": 0,
4883
- "KWD": 3,
4884
- "LAK": 0,
4885
- "LBP": 0,
4886
- "LUF": 0,
4887
- "LYD": 3,
4888
- "MGA": 0,
4889
- "MGF": 0,
4890
- "MMK": 0,
4891
- "MRO": 0,
4892
- "OMR": 3,
4893
- "PYG": 0,
4894
- "RSD": 0,
4895
- "RWF": 0,
4896
- "SLL": 0,
4897
- "SOS": 0,
4898
- "STD": 0,
4899
- "SYP": 0,
4900
- "TMM": 0,
4901
- "TND": 3,
4902
- "TRL": 0,
4903
- "TWD": 0,
4904
- "UGX": 0,
4905
- "UYI": 0,
4906
- "UYW": 4,
4907
- "VND": 0,
4908
- "VUV": 0,
4909
- "XAF": 0,
4910
- "XOF": 0,
4911
- "XPF": 0,
4912
- "YER": 0,
4913
- "ZMK": 0,
4914
- "ZWD": 0
4915
- },
4916
- "plurals": {
4917
- "one": "i = 1 and v = 0"
4918
- },
4919
- "weekData-minDays": 4,
4920
- "weekData-firstDay": 1,
4921
- "weekData-weekendStart": 6,
4922
- "weekData-weekendEnd": 0,
4923
- "timeData": {
4924
- "_allowed": "H hB",
4925
- "_preferred": "H"
4926
- },
4927
- "eras-gregorian": {
4928
- "0": {
4929
- "_end": "0-12-31"
4930
- },
4931
- "1": {
4932
- "_start": "1-01-01"
4933
- }
4934
- },
4935
- "eras-islamic": {
4936
- "0": {
4937
- "_start": "622-7-15"
4938
- }
4939
- },
4940
- "eras-persian": {
4941
- "0": {
4942
- "_start": "622-01-01"
4943
- }
4944
- },
4945
- "eras-buddhist": {
4946
- "0": {
4947
- "_start": "-542-01-01"
4948
- }
4949
- },
4950
- "eras-japanese": {
4951
- "232": {
4952
- "_start": "1868-9-8"
4953
- },
4954
- "233": {
4955
- "_start": "1912-7-30"
4956
- },
4957
- "234": {
4958
- "_start": "1926-12-25"
4959
- },
4960
- "235": {
4961
- "_start": "1989-1-8"
4962
- },
4963
- "236": {
4964
- "_start": "2019-5-1"
4965
- }
4966
- }
4967
- }