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