@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,4970 +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": "Bangla",
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": "Bangla",
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": "Odia",
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, MMMM d, y",
1145
- "long": "MMMM d, y",
1146
- "medium": "MMM d, y",
1147
- "short": "M/d/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": "d E",
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": "MMM d, y G",
1176
- "GyMMMEd": "E, MMM d, 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": "M/d",
1189
- "MEd": "E, M/d",
1190
- "MMM": "LLL",
1191
- "MMMd": "MMM d",
1192
- "MMMEd": "E, MMM d",
1193
- "MMMMd": "MMMM d",
1194
- "ms": "mm:ss",
1195
- "y": "y",
1196
- "yM": "M/y",
1197
- "yMd": "M/d/y",
1198
- "yMEd": "E, M/d/y",
1199
- "yMMM": "MMM y",
1200
- "yMMMd": "MMM d, y",
1201
- "yMMMEd": "E, MMM d, y",
1202
- "yMMMM": "MMMM y",
1203
- "yQQQ": "QQQ y",
1204
- "yQQQQ": "QQQQ y",
1205
- "MMMMW": "'week' W 'of' MMMM",
1206
- "yw": "'week' w 'of' Y"
1207
- },
1208
- "appendItems": {
1209
- "Day": "{0} ({2}: {1})",
1210
- "Day-Of-Week": "{0} {1}",
1211
- "Era": "{0} {1}",
1212
- "Hour": "{0} ({2}: {1})",
1213
- "Minute": "{0} ({2}: {1})",
1214
- "Month": "{0} ({2}: {1})",
1215
- "Quarter": "{0} ({2}: {1})",
1216
- "Second": "{0} ({2}: {1})",
1217
- "Timezone": "{0} {1}",
1218
- "Week": "{0} ({2}: {1})",
1219
- "Year": "{0} {1}"
1220
- },
1221
- "intervalFormats": {
1222
- "intervalFormatFallback": "{0} – {1}",
1223
- "Bh": {
1224
- "B": "h B – h B",
1225
- "h": "h – h B"
1226
- },
1227
- "Bhm": {
1228
- "B": "h:mm B – h:mm B",
1229
- "h": "h:mm – h:mm B",
1230
- "m": "h:mm – h:mm B"
1231
- },
1232
- "d": {
1233
- "d": "d – d"
1234
- },
1235
- "Gy": {
1236
- "G": "y G – y G",
1237
- "y": "y – y G"
1238
- },
1239
- "GyM": {
1240
- "G": "M/y GGGGG – M/y GGGGG",
1241
- "M": "M/y – M/y GGGGG",
1242
- "y": "M/y – M/y GGGGG"
1243
- },
1244
- "GyMd": {
1245
- "d": "M/d/y – M/d/y GGGGG",
1246
- "G": "M/d/y GGGGG – M/d/y GGGGG",
1247
- "M": "M/d/y – M/d/y GGGGG",
1248
- "y": "M/d/y – M/d/y GGGGG"
1249
- },
1250
- "GyMEd": {
1251
- "d": "E, M/d/y – E, M/d/y GGGGG",
1252
- "G": "E, M/d/y GGGGG – E, M/d/y GGGGG",
1253
- "M": "E, M/d/y – E, M/d/y GGGGG",
1254
- "y": "E, M/d/y – E, M/d/y GGGGG"
1255
- },
1256
- "GyMMM": {
1257
- "G": "MMM y G – MMM y G",
1258
- "M": "MMM – MMM y G",
1259
- "y": "MMM y – MMM y G"
1260
- },
1261
- "GyMMMd": {
1262
- "d": "MMM d – d, y G",
1263
- "G": "MMM d, y G – MMM d, y G",
1264
- "M": "MMM d – MMM d, y G",
1265
- "y": "MMM d, y – MMM d, y G"
1266
- },
1267
- "GyMMMEd": {
1268
- "d": "E, MMM d – E, MMM d, y G",
1269
- "G": "E, MMM d, y G – E, MMM d, y G",
1270
- "M": "E, MMM d – E, MMM d, y G",
1271
- "y": "E, MMM d, y – E, MMM d, y G"
1272
- },
1273
- "h": {
1274
- "a": "h a – h a",
1275
- "h": "h – h a"
1276
- },
1277
- "H": {
1278
- "H": "HH – HH"
1279
- },
1280
- "hm": {
1281
- "a": "h:mm a – h:mm a",
1282
- "h": "h:mm – h:mm a",
1283
- "m": "h:mm – h:mm a"
1284
- },
1285
- "Hm": {
1286
- "H": "HH:mm – HH:mm",
1287
- "m": "HH:mm – HH:mm"
1288
- },
1289
- "hmv": {
1290
- "a": "h:mm a – h:mm a v",
1291
- "h": "h:mm – h:mm a v",
1292
- "m": "h:mm – h:mm a v"
1293
- },
1294
- "Hmv": {
1295
- "H": "HH:mm – HH:mm v",
1296
- "m": "HH:mm – HH:mm v"
1297
- },
1298
- "hv": {
1299
- "a": "h a – h a v",
1300
- "h": "h – h a v"
1301
- },
1302
- "Hv": {
1303
- "H": "HH – HH v"
1304
- },
1305
- "M": {
1306
- "M": "M – M"
1307
- },
1308
- "Md": {
1309
- "d": "M/d – M/d",
1310
- "M": "M/d – M/d"
1311
- },
1312
- "MEd": {
1313
- "d": "E, M/d – E, M/d",
1314
- "M": "E, M/d – E, M/d"
1315
- },
1316
- "MMM": {
1317
- "M": "MMM – MMM"
1318
- },
1319
- "MMMd": {
1320
- "d": "MMM d – d",
1321
- "M": "MMM d – MMM d"
1322
- },
1323
- "MMMEd": {
1324
- "d": "E, MMM d – E, MMM d",
1325
- "M": "E, MMM d – E, MMM d"
1326
- },
1327
- "y": {
1328
- "y": "y – y"
1329
- },
1330
- "yM": {
1331
- "M": "M/y – M/y",
1332
- "y": "M/y – M/y"
1333
- },
1334
- "yMd": {
1335
- "d": "M/d/y – M/d/y",
1336
- "M": "M/d/y – M/d/y",
1337
- "y": "M/d/y – M/d/y"
1338
- },
1339
- "yMEd": {
1340
- "d": "E, M/d/y – E, M/d/y",
1341
- "M": "E, M/d/y – E, M/d/y",
1342
- "y": "E, M/d/y – E, M/d/y"
1343
- },
1344
- "yMMM": {
1345
- "M": "MMM – MMM y",
1346
- "y": "MMM y – MMM y"
1347
- },
1348
- "yMMMd": {
1349
- "d": "MMM d – d, y",
1350
- "M": "MMM d – MMM d, y",
1351
- "y": "MMM d, y – MMM d, y"
1352
- },
1353
- "yMMMEd": {
1354
- "d": "E, MMM d – E, MMM d, y",
1355
- "M": "E, MMM d – E, MMM d, y",
1356
- "y": "E, MMM d, y – E, MMM d, y"
1357
- },
1358
- "yMMMM": {
1359
- "M": "MMMM – MMMM y",
1360
- "y": "MMMM y – MMMM y"
1361
- }
1362
- }
1363
- },
1364
- "months": {
1365
- "format": {
1366
- "abbreviated": [
1367
- "Jan",
1368
- "Feb",
1369
- "Mar",
1370
- "Apr",
1371
- "May",
1372
- "Jun",
1373
- "Jul",
1374
- "Aug",
1375
- "Sep",
1376
- "Oct",
1377
- "Nov",
1378
- "Dec"
1379
- ],
1380
- "narrow": [
1381
- "J",
1382
- "F",
1383
- "M",
1384
- "A",
1385
- "M",
1386
- "J",
1387
- "J",
1388
- "A",
1389
- "S",
1390
- "O",
1391
- "N",
1392
- "D"
1393
- ],
1394
- "wide": [
1395
- "January",
1396
- "February",
1397
- "March",
1398
- "April",
1399
- "May",
1400
- "June",
1401
- "July",
1402
- "August",
1403
- "September",
1404
- "October",
1405
- "November",
1406
- "December"
1407
- ]
1408
- },
1409
- "stand-alone": {
1410
- "abbreviated": [
1411
- "Jan",
1412
- "Feb",
1413
- "Mar",
1414
- "Apr",
1415
- "May",
1416
- "Jun",
1417
- "Jul",
1418
- "Aug",
1419
- "Sep",
1420
- "Oct",
1421
- "Nov",
1422
- "Dec"
1423
- ],
1424
- "narrow": [
1425
- "J",
1426
- "F",
1427
- "M",
1428
- "A",
1429
- "M",
1430
- "J",
1431
- "J",
1432
- "A",
1433
- "S",
1434
- "O",
1435
- "N",
1436
- "D"
1437
- ],
1438
- "wide": [
1439
- "January",
1440
- "February",
1441
- "March",
1442
- "April",
1443
- "May",
1444
- "June",
1445
- "July",
1446
- "August",
1447
- "September",
1448
- "October",
1449
- "November",
1450
- "December"
1451
- ]
1452
- }
1453
- },
1454
- "days": {
1455
- "format": {
1456
- "abbreviated": [
1457
- "Sun",
1458
- "Mon",
1459
- "Tue",
1460
- "Wed",
1461
- "Thu",
1462
- "Fri",
1463
- "Sat"
1464
- ],
1465
- "narrow": [
1466
- "S",
1467
- "M",
1468
- "T",
1469
- "W",
1470
- "T",
1471
- "F",
1472
- "S"
1473
- ],
1474
- "short": [
1475
- "Su",
1476
- "Mo",
1477
- "Tu",
1478
- "We",
1479
- "Th",
1480
- "Fr",
1481
- "Sa"
1482
- ],
1483
- "wide": [
1484
- "Sunday",
1485
- "Monday",
1486
- "Tuesday",
1487
- "Wednesday",
1488
- "Thursday",
1489
- "Friday",
1490
- "Saturday"
1491
- ]
1492
- },
1493
- "stand-alone": {
1494
- "abbreviated": [
1495
- "Sun",
1496
- "Mon",
1497
- "Tue",
1498
- "Wed",
1499
- "Thu",
1500
- "Fri",
1501
- "Sat"
1502
- ],
1503
- "narrow": [
1504
- "S",
1505
- "M",
1506
- "T",
1507
- "W",
1508
- "T",
1509
- "F",
1510
- "S"
1511
- ],
1512
- "short": [
1513
- "Su",
1514
- "Mo",
1515
- "Tu",
1516
- "We",
1517
- "Th",
1518
- "Fr",
1519
- "Sa"
1520
- ],
1521
- "wide": [
1522
- "Sunday",
1523
- "Monday",
1524
- "Tuesday",
1525
- "Wednesday",
1526
- "Thursday",
1527
- "Friday",
1528
- "Saturday"
1529
- ]
1530
- }
1531
- },
1532
- "quarters": {
1533
- "format": {
1534
- "abbreviated": [
1535
- "Q1",
1536
- "Q2",
1537
- "Q3",
1538
- "Q4"
1539
- ],
1540
- "narrow": [
1541
- "1",
1542
- "2",
1543
- "3",
1544
- "4"
1545
- ],
1546
- "wide": [
1547
- "1st quarter",
1548
- "2nd quarter",
1549
- "3rd quarter",
1550
- "4th quarter"
1551
- ]
1552
- },
1553
- "stand-alone": {
1554
- "abbreviated": [
1555
- "Q1",
1556
- "Q2",
1557
- "Q3",
1558
- "Q4"
1559
- ],
1560
- "narrow": [
1561
- "1",
1562
- "2",
1563
- "3",
1564
- "4"
1565
- ],
1566
- "wide": [
1567
- "1st quarter",
1568
- "2nd quarter",
1569
- "3rd quarter",
1570
- "4th quarter"
1571
- ]
1572
- }
1573
- },
1574
- "dayPeriods": {
1575
- "format": {
1576
- "abbreviated": [
1577
- "AM",
1578
- "PM"
1579
- ],
1580
- "narrow": [
1581
- "a",
1582
- "p"
1583
- ],
1584
- "wide": [
1585
- "AM",
1586
- "PM"
1587
- ]
1588
- },
1589
- "stand-alone": {
1590
- "abbreviated": [
1591
- "AM",
1592
- "PM"
1593
- ],
1594
- "narrow": [
1595
- "AM",
1596
- "PM"
1597
- ],
1598
- "wide": [
1599
- "AM",
1600
- "PM"
1601
- ]
1602
- }
1603
- },
1604
- "era-wide": {
1605
- "0": "Before Christ",
1606
- "1": "Anno Domini"
1607
- },
1608
- "era-abbreviated": {
1609
- "0": "BC",
1610
- "1": "AD"
1611
- },
1612
- "era-narrow": {
1613
- "0": "B",
1614
- "1": "A"
1615
- }
1616
- },
1617
- "ca-islamic": {
1618
- "dateFormats": {
1619
- "full": "EEEE, MMMM d, y G",
1620
- "long": "MMMM d, y G",
1621
- "medium": "MMM d, y G",
1622
- "short": "M/d/y GGGGG"
1623
- },
1624
- "timeFormats": {
1625
- "full": "h:mm:ss a zzzz",
1626
- "long": "h:mm:ss a z",
1627
- "medium": "h:mm:ss a",
1628
- "short": "h:mm a"
1629
- },
1630
- "dateTimeFormats": {
1631
- "full": "{1} 'at' {0}",
1632
- "long": "{1} 'at' {0}",
1633
- "medium": "{1}, {0}",
1634
- "short": "{1}, {0}",
1635
- "availableFormats": {
1636
- "Bh": "h B",
1637
- "Bhm": "h:mm B",
1638
- "Bhms": "h:mm:ss B",
1639
- "d": "d",
1640
- "E": "ccc",
1641
- "EBhm": "E h:mm B",
1642
- "EBhms": "E h:mm:ss B",
1643
- "Ed": "d E",
1644
- "Ehm": "E h:mm a",
1645
- "EHm": "E HH:mm",
1646
- "Ehms": "E h:mm:ss a",
1647
- "EHms": "E HH:mm:ss",
1648
- "Gy": "y G",
1649
- "GyMMM": "MMM y G",
1650
- "GyMMMd": "MMM d, y G",
1651
- "GyMMMEd": "E, MMM d, y G",
1652
- "h": "h a",
1653
- "H": "HH",
1654
- "hm": "h:mm a",
1655
- "Hm": "HH:mm",
1656
- "hms": "h:mm:ss a",
1657
- "Hms": "HH:mm:ss",
1658
- "M": "L",
1659
- "Md": "M/d",
1660
- "MEd": "E, M/d",
1661
- "MMM": "LLL",
1662
- "MMMd": "MMM d",
1663
- "MMMEd": "E, MMM d",
1664
- "MMMMd": "MMMM d",
1665
- "ms": "mm:ss",
1666
- "y": "y G",
1667
- "yyyy": "y G",
1668
- "yyyyM": "M/y GGGGG",
1669
- "yyyyMd": "M/d/y GGGGG",
1670
- "yyyyMEd": "E, M/d/y GGGGG",
1671
- "yyyyMMM": "MMM y G",
1672
- "yyyyMMMd": "MMM d, y G",
1673
- "yyyyMMMEd": "E, MMM d, y G",
1674
- "yyyyMMMM": "MMMM y G",
1675
- "yyyyQQQ": "QQQ y G",
1676
- "yyyyQQQQ": "QQQQ y G"
1677
- },
1678
- "appendItems": {
1679
- "Day": "{0} ({2}: {1})",
1680
- "Day-Of-Week": "{0} {1}",
1681
- "Era": "{0} {1}",
1682
- "Hour": "{0} ({2}: {1})",
1683
- "Minute": "{0} ({2}: {1})",
1684
- "Month": "{0} ({2}: {1})",
1685
- "Quarter": "{0} ({2}: {1})",
1686
- "Second": "{0} ({2}: {1})",
1687
- "Timezone": "{0} {1}",
1688
- "Week": "{0} ({2}: {1})",
1689
- "Year": "{0} {1}"
1690
- },
1691
- "intervalFormats": {
1692
- "intervalFormatFallback": "{0} – {1}",
1693
- "Bh": {
1694
- "B": "h B – h B",
1695
- "h": "h – h B"
1696
- },
1697
- "Bhm": {
1698
- "B": "h:mm B – h:mm B",
1699
- "h": "h:mm – h:mm B",
1700
- "m": "h:mm – h:mm B"
1701
- },
1702
- "d": {
1703
- "d": "d – d"
1704
- },
1705
- "Gy": {
1706
- "G": "y G – y G",
1707
- "y": "y – y G"
1708
- },
1709
- "GyM": {
1710
- "G": "M/y GGGGG – M/y GGGGG",
1711
- "M": "M/y – M/y GGGGG",
1712
- "y": "M/y – M/y GGGGG"
1713
- },
1714
- "GyMd": {
1715
- "d": "M/d/y – M/d/y GGGGG",
1716
- "G": "M/d/y GGGGG – M/d/y GGGGG",
1717
- "M": "M/d/y – M/d/y GGGGG",
1718
- "y": "M/d/y – M/d/y GGGGG"
1719
- },
1720
- "GyMEd": {
1721
- "d": "E, M/d/y – E, M/d/y GGGGG",
1722
- "G": "E, M/d/y GGGGG – E, M/d/y GGGGG",
1723
- "M": "E, M/d/y – E, M/d/y GGGGG",
1724
- "y": "E, M/d/y – E, M/d/y GGGGG"
1725
- },
1726
- "GyMMM": {
1727
- "G": "MMM y G – MMM y G",
1728
- "M": "MMM – MMM y G",
1729
- "y": "MMM y – MMM y G"
1730
- },
1731
- "GyMMMd": {
1732
- "d": "MMM d – d, y G",
1733
- "G": "MMM d, y G – MMM d, y G",
1734
- "M": "MMM d – MMM d, y G",
1735
- "y": "MMM d, y – MMM d, y G"
1736
- },
1737
- "GyMMMEd": {
1738
- "d": "E, MMM d – E, MMM d, y G",
1739
- "G": "E, MMM d, y G – E, MMM d, y G",
1740
- "M": "E, MMM d – E, MMM d, y G",
1741
- "y": "E, MMM d, y – E, MMM d, y G"
1742
- },
1743
- "h": {
1744
- "a": "h a – h a",
1745
- "h": "h – h a"
1746
- },
1747
- "H": {
1748
- "H": "HH – HH"
1749
- },
1750
- "hm": {
1751
- "a": "h:mm a – h:mm a",
1752
- "h": "h:mm – h:mm a",
1753
- "m": "h:mm – h:mm a"
1754
- },
1755
- "Hm": {
1756
- "H": "HH:mm – HH:mm",
1757
- "m": "HH:mm – HH:mm"
1758
- },
1759
- "hmv": {
1760
- "a": "h:mm a – h:mm a v",
1761
- "h": "h:mm – h:mm a v",
1762
- "m": "h:mm – h:mm a v"
1763
- },
1764
- "Hmv": {
1765
- "H": "HH:mm – HH:mm v",
1766
- "m": "HH:mm – HH:mm v"
1767
- },
1768
- "hv": {
1769
- "a": "h a – h a v",
1770
- "h": "h – h a v"
1771
- },
1772
- "Hv": {
1773
- "H": "HH – HH v"
1774
- },
1775
- "M": {
1776
- "M": "M – M"
1777
- },
1778
- "Md": {
1779
- "d": "M/d – M/d",
1780
- "M": "M/d – M/d"
1781
- },
1782
- "MEd": {
1783
- "d": "E, M/d – E, M/d",
1784
- "M": "E, M/d – E, M/d"
1785
- },
1786
- "MMM": {
1787
- "M": "MMM – MMM"
1788
- },
1789
- "MMMd": {
1790
- "d": "MMM d – d",
1791
- "M": "MMM d – MMM d"
1792
- },
1793
- "MMMEd": {
1794
- "d": "E, MMM d – E, MMM d",
1795
- "M": "E, MMM d – E, MMM d"
1796
- },
1797
- "y": {
1798
- "y": "y – y G"
1799
- },
1800
- "yM": {
1801
- "M": "M/y – M/y GGGGG",
1802
- "y": "M/y – M/y GGGGG"
1803
- },
1804
- "yMd": {
1805
- "d": "M/d/y – M/d/y GGGGG",
1806
- "M": "M/d/y – M/d/y GGGGG",
1807
- "y": "M/d/y – M/d/y GGGGG"
1808
- },
1809
- "yMEd": {
1810
- "d": "E, M/d/y – E, M/d/y GGGGG",
1811
- "M": "E, M/d/y – E, M/d/y GGGGG",
1812
- "y": "E, M/d/y – E, M/d/y GGGGG"
1813
- },
1814
- "yMMM": {
1815
- "M": "MMM – MMM y G",
1816
- "y": "MMM y – MMM y G"
1817
- },
1818
- "yMMMd": {
1819
- "d": "MMM d – d, y G",
1820
- "M": "MMM d – MMM d, y G",
1821
- "y": "MMM d, y – MMM d, y G"
1822
- },
1823
- "yMMMEd": {
1824
- "d": "E, MMM d – E, MMM d, y G",
1825
- "M": "E, MMM d – E, MMM d, y G",
1826
- "y": "E, MMM d, y – E, MMM d, y G"
1827
- },
1828
- "yMMMM": {
1829
- "M": "MMMM – MMMM y G",
1830
- "y": "MMMM y – MMMM y G"
1831
- }
1832
- }
1833
- },
1834
- "months": {
1835
- "format": {
1836
- "abbreviated": [
1837
- "Muh.",
1838
- "Saf.",
1839
- "Rab. I",
1840
- "Rab. II",
1841
- "Jum. I",
1842
- "Jum. II",
1843
- "Raj.",
1844
- "Sha.",
1845
- "Ram.",
1846
- "Shaw.",
1847
- "Dhuʻl-Q.",
1848
- "Dhuʻl-H."
1849
- ],
1850
- "narrow": [
1851
- "1",
1852
- "2",
1853
- "3",
1854
- "4",
1855
- "5",
1856
- "6",
1857
- "7",
1858
- "8",
1859
- "9",
1860
- "10",
1861
- "11",
1862
- "12"
1863
- ],
1864
- "wide": [
1865
- "Muharram",
1866
- "Safar",
1867
- "Rabiʻ I",
1868
- "Rabiʻ II",
1869
- "Jumada I",
1870
- "Jumada II",
1871
- "Rajab",
1872
- "Shaʻban",
1873
- "Ramadan",
1874
- "Shawwal",
1875
- "Dhuʻl-Qiʻdah",
1876
- "Dhuʻl-Hijjah"
1877
- ]
1878
- },
1879
- "stand-alone": {
1880
- "abbreviated": [
1881
- "Muh.",
1882
- "Saf.",
1883
- "Rab. I",
1884
- "Rab. II",
1885
- "Jum. I",
1886
- "Jum. II",
1887
- "Raj.",
1888
- "Sha.",
1889
- "Ram.",
1890
- "Shaw.",
1891
- "Dhuʻl-Q.",
1892
- "Dhuʻl-H."
1893
- ],
1894
- "narrow": [
1895
- "1",
1896
- "2",
1897
- "3",
1898
- "4",
1899
- "5",
1900
- "6",
1901
- "7",
1902
- "8",
1903
- "9",
1904
- "10",
1905
- "11",
1906
- "12"
1907
- ],
1908
- "wide": [
1909
- "Muharram",
1910
- "Safar",
1911
- "Rabiʻ I",
1912
- "Rabiʻ II",
1913
- "Jumada I",
1914
- "Jumada II",
1915
- "Rajab",
1916
- "Shaʻban",
1917
- "Ramadan",
1918
- "Shawwal",
1919
- "Dhuʻl-Qiʻdah",
1920
- "Dhuʻl-Hijjah"
1921
- ]
1922
- }
1923
- },
1924
- "days": {
1925
- "format": {
1926
- "abbreviated": [
1927
- "Sun",
1928
- "Mon",
1929
- "Tue",
1930
- "Wed",
1931
- "Thu",
1932
- "Fri",
1933
- "Sat"
1934
- ],
1935
- "narrow": [
1936
- "S",
1937
- "M",
1938
- "T",
1939
- "W",
1940
- "T",
1941
- "F",
1942
- "S"
1943
- ],
1944
- "short": [
1945
- "Su",
1946
- "Mo",
1947
- "Tu",
1948
- "We",
1949
- "Th",
1950
- "Fr",
1951
- "Sa"
1952
- ],
1953
- "wide": [
1954
- "Sunday",
1955
- "Monday",
1956
- "Tuesday",
1957
- "Wednesday",
1958
- "Thursday",
1959
- "Friday",
1960
- "Saturday"
1961
- ]
1962
- },
1963
- "stand-alone": {
1964
- "abbreviated": [
1965
- "Sun",
1966
- "Mon",
1967
- "Tue",
1968
- "Wed",
1969
- "Thu",
1970
- "Fri",
1971
- "Sat"
1972
- ],
1973
- "narrow": [
1974
- "S",
1975
- "M",
1976
- "T",
1977
- "W",
1978
- "T",
1979
- "F",
1980
- "S"
1981
- ],
1982
- "short": [
1983
- "Su",
1984
- "Mo",
1985
- "Tu",
1986
- "We",
1987
- "Th",
1988
- "Fr",
1989
- "Sa"
1990
- ],
1991
- "wide": [
1992
- "Sunday",
1993
- "Monday",
1994
- "Tuesday",
1995
- "Wednesday",
1996
- "Thursday",
1997
- "Friday",
1998
- "Saturday"
1999
- ]
2000
- }
2001
- },
2002
- "quarters": {
2003
- "format": {
2004
- "abbreviated": [
2005
- "Q1",
2006
- "Q2",
2007
- "Q3",
2008
- "Q4"
2009
- ],
2010
- "narrow": [
2011
- "1",
2012
- "2",
2013
- "3",
2014
- "4"
2015
- ],
2016
- "wide": [
2017
- "1st quarter",
2018
- "2nd quarter",
2019
- "3rd quarter",
2020
- "4th quarter"
2021
- ]
2022
- },
2023
- "stand-alone": {
2024
- "abbreviated": [
2025
- "Q1",
2026
- "Q2",
2027
- "Q3",
2028
- "Q4"
2029
- ],
2030
- "narrow": [
2031
- "1",
2032
- "2",
2033
- "3",
2034
- "4"
2035
- ],
2036
- "wide": [
2037
- "1st quarter",
2038
- "2nd quarter",
2039
- "3rd quarter",
2040
- "4th quarter"
2041
- ]
2042
- }
2043
- },
2044
- "dayPeriods": {
2045
- "format": {
2046
- "abbreviated": [
2047
- "AM",
2048
- "PM"
2049
- ],
2050
- "narrow": [
2051
- "a",
2052
- "p"
2053
- ],
2054
- "wide": [
2055
- "AM",
2056
- "PM"
2057
- ]
2058
- },
2059
- "stand-alone": {
2060
- "abbreviated": [
2061
- "AM",
2062
- "PM"
2063
- ],
2064
- "narrow": [
2065
- "AM",
2066
- "PM"
2067
- ],
2068
- "wide": [
2069
- "AM",
2070
- "PM"
2071
- ]
2072
- }
2073
- },
2074
- "era-wide": {
2075
- "0": "AH"
2076
- },
2077
- "era-abbreviated": {
2078
- "0": "AH"
2079
- },
2080
- "era-narrow": {
2081
- "0": "AH"
2082
- }
2083
- },
2084
- "ca-japanese": {
2085
- "dateFormats": {
2086
- "full": "EEEE, MMMM d, y G",
2087
- "long": "MMMM d, y G",
2088
- "medium": "MMM d, y G",
2089
- "short": "M/d/y GGGGG"
2090
- },
2091
- "timeFormats": {
2092
- "full": "h:mm:ss a zzzz",
2093
- "long": "h:mm:ss a z",
2094
- "medium": "h:mm:ss a",
2095
- "short": "h:mm a"
2096
- },
2097
- "dateTimeFormats": {
2098
- "full": "{1} 'at' {0}",
2099
- "long": "{1} 'at' {0}",
2100
- "medium": "{1}, {0}",
2101
- "short": "{1}, {0}",
2102
- "availableFormats": {
2103
- "Bh": "h B",
2104
- "Bhm": "h:mm B",
2105
- "Bhms": "h:mm:ss B",
2106
- "d": "d",
2107
- "E": "ccc",
2108
- "EBhm": "E h:mm B",
2109
- "EBhms": "E h:mm:ss B",
2110
- "Ed": "d E",
2111
- "Ehm": "E h:mm a",
2112
- "EHm": "E HH:mm",
2113
- "Ehms": "E h:mm:ss a",
2114
- "EHms": "E HH:mm:ss",
2115
- "Gy": "y G",
2116
- "GyMMM": "MMM y G",
2117
- "GyMMMd": "MMM d, y G",
2118
- "GyMMMEd": "E, MMM d, y G",
2119
- "h": "h a",
2120
- "H": "HH",
2121
- "hm": "h:mm a",
2122
- "Hm": "HH:mm",
2123
- "hms": "h:mm:ss a",
2124
- "Hms": "HH:mm:ss",
2125
- "M": "L",
2126
- "Md": "M/d",
2127
- "MEd": "E, M/d",
2128
- "MMM": "LLL",
2129
- "MMMd": "MMM d",
2130
- "MMMEd": "E, MMM d",
2131
- "MMMMd": "MMMM d",
2132
- "ms": "mm:ss",
2133
- "y": "y G",
2134
- "yyyy": "y G",
2135
- "yyyyM": "M/y GGGGG",
2136
- "yyyyMd": "M/d/y GGGGG",
2137
- "yyyyMEd": "E, M/d/y GGGGG",
2138
- "yyyyMMM": "MMM y G",
2139
- "yyyyMMMd": "MMM d, y G",
2140
- "yyyyMMMEd": "E, MMM d, y G",
2141
- "yyyyMMMM": "MMMM y G",
2142
- "yyyyQQQ": "QQQ y G",
2143
- "yyyyQQQQ": "QQQQ y G"
2144
- },
2145
- "appendItems": {
2146
- "Day": "{0} ({2}: {1})",
2147
- "Day-Of-Week": "{0} {1}",
2148
- "Era": "{0} {1}",
2149
- "Hour": "{0} ({2}: {1})",
2150
- "Minute": "{0} ({2}: {1})",
2151
- "Month": "{0} ({2}: {1})",
2152
- "Quarter": "{0} ({2}: {1})",
2153
- "Second": "{0} ({2}: {1})",
2154
- "Timezone": "{0} {1}",
2155
- "Week": "{0} ({2}: {1})",
2156
- "Year": "{0} {1}"
2157
- },
2158
- "intervalFormats": {
2159
- "intervalFormatFallback": "{0} – {1}",
2160
- "Bh": {
2161
- "B": "h B – h B",
2162
- "h": "h – h B"
2163
- },
2164
- "Bhm": {
2165
- "B": "h:mm B – h:mm B",
2166
- "h": "h:mm – h:mm B",
2167
- "m": "h:mm – h:mm B"
2168
- },
2169
- "d": {
2170
- "d": "d – d"
2171
- },
2172
- "Gy": {
2173
- "G": "y G – y G",
2174
- "y": "y – y G"
2175
- },
2176
- "GyM": {
2177
- "G": "M/y GGGGG – M/y GGGGG",
2178
- "M": "M/y – M/y GGGGG",
2179
- "y": "M/y – M/y GGGGG"
2180
- },
2181
- "GyMd": {
2182
- "d": "M/d/y – M/d/y GGGGG",
2183
- "G": "M/d/y GGGGG – M/d/y GGGGG",
2184
- "M": "M/d/y – M/d/y GGGGG",
2185
- "y": "M/d/y – M/d/y GGGGG"
2186
- },
2187
- "GyMEd": {
2188
- "d": "E, M/d/y – E, M/d/y GGGGG",
2189
- "G": "E, M/d/y GGGGG – E, M/d/y GGGGG",
2190
- "M": "E, M/d/y – E, M/d/y GGGGG",
2191
- "y": "E, M/d/y – E, M/d/y GGGGG"
2192
- },
2193
- "GyMMM": {
2194
- "G": "MMM y G – MMM y G",
2195
- "M": "MMM – MMM y G",
2196
- "y": "MMM y – MMM y G"
2197
- },
2198
- "GyMMMd": {
2199
- "d": "MMM d – d, y G",
2200
- "G": "MMM d, y G – MMM d, y G",
2201
- "M": "MMM d – MMM d, y G",
2202
- "y": "MMM d, y – MMM d, y G"
2203
- },
2204
- "GyMMMEd": {
2205
- "d": "E, MMM d – E, MMM d, y G",
2206
- "G": "E, MMM d, y G – E, MMM d, y G",
2207
- "M": "E, MMM d – E, MMM d, y G",
2208
- "y": "E, MMM d, y – E, MMM d, y G"
2209
- },
2210
- "h": {
2211
- "a": "h a – h a",
2212
- "h": "h – h a"
2213
- },
2214
- "H": {
2215
- "H": "HH – HH"
2216
- },
2217
- "hm": {
2218
- "a": "h:mm a – h:mm a",
2219
- "h": "h:mm – h:mm a",
2220
- "m": "h:mm – h:mm a"
2221
- },
2222
- "Hm": {
2223
- "H": "HH:mm – HH:mm",
2224
- "m": "HH:mm – HH:mm"
2225
- },
2226
- "hmv": {
2227
- "a": "h:mm a – h:mm a v",
2228
- "h": "h:mm – h:mm a v",
2229
- "m": "h:mm – h:mm a v"
2230
- },
2231
- "Hmv": {
2232
- "H": "HH:mm – HH:mm v",
2233
- "m": "HH:mm – HH:mm v"
2234
- },
2235
- "hv": {
2236
- "a": "h a – h a v",
2237
- "h": "h – h a v"
2238
- },
2239
- "Hv": {
2240
- "H": "HH – HH v"
2241
- },
2242
- "M": {
2243
- "M": "M – M"
2244
- },
2245
- "Md": {
2246
- "d": "M/d – M/d",
2247
- "M": "M/d – M/d"
2248
- },
2249
- "MEd": {
2250
- "d": "E, M/d – E, M/d",
2251
- "M": "E, M/d – E, M/d"
2252
- },
2253
- "MMM": {
2254
- "M": "MMM – MMM"
2255
- },
2256
- "MMMd": {
2257
- "d": "MMM d – d",
2258
- "M": "MMM d – MMM d"
2259
- },
2260
- "MMMEd": {
2261
- "d": "E, MMM d – E, MMM d",
2262
- "M": "E, MMM d – E, MMM d"
2263
- },
2264
- "y": {
2265
- "y": "y – y G",
2266
- "G": "y G – y G"
2267
- },
2268
- "yM": {
2269
- "M": "M/y – M/y GGGGG",
2270
- "y": "M/y – M/y GGGGG",
2271
- "G": "M/y GGGGG – M/y GGGGG"
2272
- },
2273
- "yMd": {
2274
- "d": "M/d/y – M/d/y GGGGG",
2275
- "M": "M/d/y – M/d/y GGGGG",
2276
- "y": "M/d/y – M/d/y GGGGG",
2277
- "G": "M/d/y GGGGG – M/d/y GGGGG"
2278
- },
2279
- "yMEd": {
2280
- "d": "E, M/d/y – E, M/d/y GGGGG",
2281
- "M": "E, M/d/y – E, M/d/y GGGGG",
2282
- "y": "E, M/d/y – E, M/d/y GGGGG",
2283
- "G": "E, M/d/y GGGGG – E, M/d/y GGGGG"
2284
- },
2285
- "yMMM": {
2286
- "M": "MMM – MMM y G",
2287
- "y": "MMM y – MMM y G",
2288
- "G": "MMM y G – MMM y G"
2289
- },
2290
- "yMMMd": {
2291
- "d": "MMM d – d, y G",
2292
- "M": "MMM d – MMM d, y G",
2293
- "y": "MMM d, y – MMM d, y G",
2294
- "G": "MMM d, y G – MMM d, y G"
2295
- },
2296
- "yMMMEd": {
2297
- "d": "E, MMM d – E, MMM d, y G",
2298
- "M": "E, MMM d – E, MMM d, y G",
2299
- "y": "E, MMM d, y – E, MMM d, y G",
2300
- "G": "E, MMM d, y G – E, MMM d, y G"
2301
- },
2302
- "yMMMM": {
2303
- "M": "MMMM – MMMM y G",
2304
- "y": "MMMM y – MMMM y G",
2305
- "G": "MMMM y G – MMMM y G"
2306
- }
2307
- }
2308
- },
2309
- "months": {
2310
- "format": {
2311
- "abbreviated": [
2312
- "Jan",
2313
- "Feb",
2314
- "Mar",
2315
- "Apr",
2316
- "May",
2317
- "Jun",
2318
- "Jul",
2319
- "Aug",
2320
- "Sep",
2321
- "Oct",
2322
- "Nov",
2323
- "Dec"
2324
- ],
2325
- "narrow": [
2326
- "J",
2327
- "F",
2328
- "M",
2329
- "A",
2330
- "M",
2331
- "J",
2332
- "J",
2333
- "A",
2334
- "S",
2335
- "O",
2336
- "N",
2337
- "D"
2338
- ],
2339
- "wide": [
2340
- "January",
2341
- "February",
2342
- "March",
2343
- "April",
2344
- "May",
2345
- "June",
2346
- "July",
2347
- "August",
2348
- "September",
2349
- "October",
2350
- "November",
2351
- "December"
2352
- ]
2353
- },
2354
- "stand-alone": {
2355
- "abbreviated": [
2356
- "Jan",
2357
- "Feb",
2358
- "Mar",
2359
- "Apr",
2360
- "May",
2361
- "Jun",
2362
- "Jul",
2363
- "Aug",
2364
- "Sep",
2365
- "Oct",
2366
- "Nov",
2367
- "Dec"
2368
- ],
2369
- "narrow": [
2370
- "J",
2371
- "F",
2372
- "M",
2373
- "A",
2374
- "M",
2375
- "J",
2376
- "J",
2377
- "A",
2378
- "S",
2379
- "O",
2380
- "N",
2381
- "D"
2382
- ],
2383
- "wide": [
2384
- "January",
2385
- "February",
2386
- "March",
2387
- "April",
2388
- "May",
2389
- "June",
2390
- "July",
2391
- "August",
2392
- "September",
2393
- "October",
2394
- "November",
2395
- "December"
2396
- ]
2397
- }
2398
- },
2399
- "days": {
2400
- "format": {
2401
- "abbreviated": [
2402
- "Sun",
2403
- "Mon",
2404
- "Tue",
2405
- "Wed",
2406
- "Thu",
2407
- "Fri",
2408
- "Sat"
2409
- ],
2410
- "narrow": [
2411
- "S",
2412
- "M",
2413
- "T",
2414
- "W",
2415
- "T",
2416
- "F",
2417
- "S"
2418
- ],
2419
- "short": [
2420
- "Su",
2421
- "Mo",
2422
- "Tu",
2423
- "We",
2424
- "Th",
2425
- "Fr",
2426
- "Sa"
2427
- ],
2428
- "wide": [
2429
- "Sunday",
2430
- "Monday",
2431
- "Tuesday",
2432
- "Wednesday",
2433
- "Thursday",
2434
- "Friday",
2435
- "Saturday"
2436
- ]
2437
- },
2438
- "stand-alone": {
2439
- "abbreviated": [
2440
- "Sun",
2441
- "Mon",
2442
- "Tue",
2443
- "Wed",
2444
- "Thu",
2445
- "Fri",
2446
- "Sat"
2447
- ],
2448
- "narrow": [
2449
- "S",
2450
- "M",
2451
- "T",
2452
- "W",
2453
- "T",
2454
- "F",
2455
- "S"
2456
- ],
2457
- "short": [
2458
- "Su",
2459
- "Mo",
2460
- "Tu",
2461
- "We",
2462
- "Th",
2463
- "Fr",
2464
- "Sa"
2465
- ],
2466
- "wide": [
2467
- "Sunday",
2468
- "Monday",
2469
- "Tuesday",
2470
- "Wednesday",
2471
- "Thursday",
2472
- "Friday",
2473
- "Saturday"
2474
- ]
2475
- }
2476
- },
2477
- "quarters": {
2478
- "format": {
2479
- "abbreviated": [
2480
- "Q1",
2481
- "Q2",
2482
- "Q3",
2483
- "Q4"
2484
- ],
2485
- "narrow": [
2486
- "1",
2487
- "2",
2488
- "3",
2489
- "4"
2490
- ],
2491
- "wide": [
2492
- "1st quarter",
2493
- "2nd quarter",
2494
- "3rd quarter",
2495
- "4th quarter"
2496
- ]
2497
- },
2498
- "stand-alone": {
2499
- "abbreviated": [
2500
- "Q1",
2501
- "Q2",
2502
- "Q3",
2503
- "Q4"
2504
- ],
2505
- "narrow": [
2506
- "1",
2507
- "2",
2508
- "3",
2509
- "4"
2510
- ],
2511
- "wide": [
2512
- "1st quarter",
2513
- "2nd quarter",
2514
- "3rd quarter",
2515
- "4th quarter"
2516
- ]
2517
- }
2518
- },
2519
- "dayPeriods": {
2520
- "format": {
2521
- "abbreviated": [
2522
- "AM",
2523
- "PM"
2524
- ],
2525
- "narrow": [
2526
- "a",
2527
- "p"
2528
- ],
2529
- "wide": [
2530
- "AM",
2531
- "PM"
2532
- ]
2533
- },
2534
- "stand-alone": {
2535
- "abbreviated": [
2536
- "AM",
2537
- "PM"
2538
- ],
2539
- "narrow": [
2540
- "AM",
2541
- "PM"
2542
- ],
2543
- "wide": [
2544
- "AM",
2545
- "PM"
2546
- ]
2547
- }
2548
- },
2549
- "era-wide": {
2550
- "232": "Meiji",
2551
- "233": "Taishō",
2552
- "234": "Shōwa",
2553
- "235": "Heisei",
2554
- "236": "Reiwa"
2555
- },
2556
- "era-abbreviated": {
2557
- "232": "Meiji",
2558
- "233": "Taishō",
2559
- "234": "Shōwa",
2560
- "235": "Heisei",
2561
- "236": "Reiwa"
2562
- },
2563
- "era-narrow": {
2564
- "232": "M",
2565
- "233": "T",
2566
- "234": "S",
2567
- "235": "H",
2568
- "236": "R"
2569
- }
2570
- },
2571
- "ca-persian": {
2572
- "dateFormats": {
2573
- "full": "EEEE, MMMM d, y G",
2574
- "long": "MMMM d, y G",
2575
- "medium": "MMM d, y G",
2576
- "short": "M/d/y GGGGG"
2577
- },
2578
- "timeFormats": {
2579
- "full": "h:mm:ss a zzzz",
2580
- "long": "h:mm:ss a z",
2581
- "medium": "h:mm:ss a",
2582
- "short": "h:mm a"
2583
- },
2584
- "dateTimeFormats": {
2585
- "full": "{1} 'at' {0}",
2586
- "long": "{1} 'at' {0}",
2587
- "medium": "{1}, {0}",
2588
- "short": "{1}, {0}",
2589
- "availableFormats": {
2590
- "Bh": "h B",
2591
- "Bhm": "h:mm B",
2592
- "Bhms": "h:mm:ss B",
2593
- "d": "d",
2594
- "E": "ccc",
2595
- "EBhm": "E h:mm B",
2596
- "EBhms": "E h:mm:ss B",
2597
- "Ed": "d E",
2598
- "Ehm": "E h:mm a",
2599
- "EHm": "E HH:mm",
2600
- "Ehms": "E h:mm:ss a",
2601
- "EHms": "E HH:mm:ss",
2602
- "Gy": "y G",
2603
- "GyMMM": "MMM y G",
2604
- "GyMMMd": "MMM d, y G",
2605
- "GyMMMEd": "E, MMM d, y G",
2606
- "h": "h a",
2607
- "H": "HH",
2608
- "hm": "h:mm a",
2609
- "Hm": "HH:mm",
2610
- "hms": "h:mm:ss a",
2611
- "Hms": "HH:mm:ss",
2612
- "M": "L",
2613
- "Md": "M/d",
2614
- "MEd": "E, M/d",
2615
- "MMM": "LLL",
2616
- "MMMd": "MMM d",
2617
- "MMMEd": "E, MMM d",
2618
- "MMMMd": "MMMM d",
2619
- "ms": "mm:ss",
2620
- "y": "y G",
2621
- "yyyy": "y G",
2622
- "yyyyM": "M/y GGGGG",
2623
- "yyyyMd": "M/d/y GGGGG",
2624
- "yyyyMEd": "E, M/d/y GGGGG",
2625
- "yyyyMMM": "MMM y G",
2626
- "yyyyMMMd": "MMM d, y G",
2627
- "yyyyMMMEd": "E, MMM d, y G",
2628
- "yyyyMMMM": "MMMM y G",
2629
- "yyyyQQQ": "QQQ y G",
2630
- "yyyyQQQQ": "QQQQ y G"
2631
- },
2632
- "appendItems": {
2633
- "Day": "{0} ({2}: {1})",
2634
- "Day-Of-Week": "{0} {1}",
2635
- "Era": "{0} {1}",
2636
- "Hour": "{0} ({2}: {1})",
2637
- "Minute": "{0} ({2}: {1})",
2638
- "Month": "{0} ({2}: {1})",
2639
- "Quarter": "{0} ({2}: {1})",
2640
- "Second": "{0} ({2}: {1})",
2641
- "Timezone": "{0} {1}",
2642
- "Week": "{0} ({2}: {1})",
2643
- "Year": "{0} {1}"
2644
- },
2645
- "intervalFormats": {
2646
- "intervalFormatFallback": "{0} – {1}",
2647
- "Bh": {
2648
- "B": "h B – h B",
2649
- "h": "h – h B"
2650
- },
2651
- "Bhm": {
2652
- "B": "h:mm B – h:mm B",
2653
- "h": "h:mm – h:mm B",
2654
- "m": "h:mm – h:mm B"
2655
- },
2656
- "d": {
2657
- "d": "d – d"
2658
- },
2659
- "Gy": {
2660
- "G": "y G – y G",
2661
- "y": "y – y G"
2662
- },
2663
- "GyM": {
2664
- "G": "M/y GGGGG – M/y GGGGG",
2665
- "M": "M/y – M/y GGGGG",
2666
- "y": "M/y – M/y GGGGG"
2667
- },
2668
- "GyMd": {
2669
- "d": "M/d/y – M/d/y GGGGG",
2670
- "G": "M/d/y GGGGG – M/d/y GGGGG",
2671
- "M": "M/d/y – M/d/y GGGGG",
2672
- "y": "M/d/y – M/d/y GGGGG"
2673
- },
2674
- "GyMEd": {
2675
- "d": "E, M/d/y – E, M/d/y GGGGG",
2676
- "G": "E, M/d/y GGGGG – E, M/d/y GGGGG",
2677
- "M": "E, M/d/y – E, M/d/y GGGGG",
2678
- "y": "E, M/d/y – E, M/d/y GGGGG"
2679
- },
2680
- "GyMMM": {
2681
- "G": "MMM y G – MMM y G",
2682
- "M": "MMM – MMM y G",
2683
- "y": "MMM y – MMM y G"
2684
- },
2685
- "GyMMMd": {
2686
- "d": "MMM d – d, y G",
2687
- "G": "MMM d, y G – MMM d, y G",
2688
- "M": "MMM d – MMM d, y G",
2689
- "y": "MMM d, y – MMM d, y G"
2690
- },
2691
- "GyMMMEd": {
2692
- "d": "E, MMM d – E, MMM d, y G",
2693
- "G": "E, MMM d, y G – E, MMM d, y G",
2694
- "M": "E, MMM d – E, MMM d, y G",
2695
- "y": "E, MMM d, y – E, MMM d, y G"
2696
- },
2697
- "h": {
2698
- "a": "h a – h a",
2699
- "h": "h – h a"
2700
- },
2701
- "H": {
2702
- "H": "HH – HH"
2703
- },
2704
- "hm": {
2705
- "a": "h:mm a – h:mm a",
2706
- "h": "h:mm – h:mm a",
2707
- "m": "h:mm – h:mm a"
2708
- },
2709
- "Hm": {
2710
- "H": "HH:mm – HH:mm",
2711
- "m": "HH:mm – HH:mm"
2712
- },
2713
- "hmv": {
2714
- "a": "h:mm a – h:mm a v",
2715
- "h": "h:mm – h:mm a v",
2716
- "m": "h:mm – h:mm a v"
2717
- },
2718
- "Hmv": {
2719
- "H": "HH:mm – HH:mm v",
2720
- "m": "HH:mm – HH:mm v"
2721
- },
2722
- "hv": {
2723
- "a": "h a – h a v",
2724
- "h": "h – h a v"
2725
- },
2726
- "Hv": {
2727
- "H": "HH – HH v"
2728
- },
2729
- "M": {
2730
- "M": "M – M"
2731
- },
2732
- "Md": {
2733
- "d": "M/d – M/d",
2734
- "M": "M/d – M/d"
2735
- },
2736
- "MEd": {
2737
- "d": "E, M/d – E, M/d",
2738
- "M": "E, M/d – E, M/d"
2739
- },
2740
- "MMM": {
2741
- "M": "MMM – MMM"
2742
- },
2743
- "MMMd": {
2744
- "d": "MMM d – d",
2745
- "M": "MMM d – MMM d"
2746
- },
2747
- "MMMEd": {
2748
- "d": "E, MMM d – E, MMM d",
2749
- "M": "E, MMM d – E, MMM d"
2750
- },
2751
- "y": {
2752
- "y": "y – y G"
2753
- },
2754
- "yM": {
2755
- "M": "M/y – M/y GGGGG",
2756
- "y": "M/y – M/y GGGGG"
2757
- },
2758
- "yMd": {
2759
- "d": "M/d/y – M/d/y GGGGG",
2760
- "M": "M/d/y – M/d/y GGGGG",
2761
- "y": "M/d/y – M/d/y GGGGG"
2762
- },
2763
- "yMEd": {
2764
- "d": "E, M/d/y – E, M/d/y GGGGG",
2765
- "M": "E, M/d/y – E, M/d/y GGGGG",
2766
- "y": "E, M/d/y – E, M/d/y GGGGG"
2767
- },
2768
- "yMMM": {
2769
- "M": "MMM – MMM y G",
2770
- "y": "MMM y – MMM y G"
2771
- },
2772
- "yMMMd": {
2773
- "d": "MMM d – d, y G",
2774
- "M": "MMM d – MMM d, y G",
2775
- "y": "MMM d, y – MMM d, y G"
2776
- },
2777
- "yMMMEd": {
2778
- "d": "E, MMM d – E, MMM d, y G",
2779
- "M": "E, MMM d – E, MMM d, y G",
2780
- "y": "E, MMM d, y – E, MMM d, y G"
2781
- },
2782
- "yMMMM": {
2783
- "M": "MMMM – MMMM y G",
2784
- "y": "MMMM y – MMMM y G"
2785
- }
2786
- }
2787
- },
2788
- "months": {
2789
- "format": {
2790
- "abbreviated": [
2791
- "Farvardin",
2792
- "Ordibehesht",
2793
- "Khordad",
2794
- "Tir",
2795
- "Mordad",
2796
- "Shahrivar",
2797
- "Mehr",
2798
- "Aban",
2799
- "Azar",
2800
- "Dey",
2801
- "Bahman",
2802
- "Esfand"
2803
- ],
2804
- "narrow": [
2805
- "1",
2806
- "2",
2807
- "3",
2808
- "4",
2809
- "5",
2810
- "6",
2811
- "7",
2812
- "8",
2813
- "9",
2814
- "10",
2815
- "11",
2816
- "12"
2817
- ],
2818
- "wide": [
2819
- "Farvardin",
2820
- "Ordibehesht",
2821
- "Khordad",
2822
- "Tir",
2823
- "Mordad",
2824
- "Shahrivar",
2825
- "Mehr",
2826
- "Aban",
2827
- "Azar",
2828
- "Dey",
2829
- "Bahman",
2830
- "Esfand"
2831
- ]
2832
- },
2833
- "stand-alone": {
2834
- "abbreviated": [
2835
- "Farvardin",
2836
- "Ordibehesht",
2837
- "Khordad",
2838
- "Tir",
2839
- "Mordad",
2840
- "Shahrivar",
2841
- "Mehr",
2842
- "Aban",
2843
- "Azar",
2844
- "Dey",
2845
- "Bahman",
2846
- "Esfand"
2847
- ],
2848
- "narrow": [
2849
- "1",
2850
- "2",
2851
- "3",
2852
- "4",
2853
- "5",
2854
- "6",
2855
- "7",
2856
- "8",
2857
- "9",
2858
- "10",
2859
- "11",
2860
- "12"
2861
- ],
2862
- "wide": [
2863
- "Farvardin",
2864
- "Ordibehesht",
2865
- "Khordad",
2866
- "Tir",
2867
- "Mordad",
2868
- "Shahrivar",
2869
- "Mehr",
2870
- "Aban",
2871
- "Azar",
2872
- "Dey",
2873
- "Bahman",
2874
- "Esfand"
2875
- ]
2876
- }
2877
- },
2878
- "days": {
2879
- "format": {
2880
- "abbreviated": [
2881
- "Sun",
2882
- "Mon",
2883
- "Tue",
2884
- "Wed",
2885
- "Thu",
2886
- "Fri",
2887
- "Sat"
2888
- ],
2889
- "narrow": [
2890
- "S",
2891
- "M",
2892
- "T",
2893
- "W",
2894
- "T",
2895
- "F",
2896
- "S"
2897
- ],
2898
- "short": [
2899
- "Su",
2900
- "Mo",
2901
- "Tu",
2902
- "We",
2903
- "Th",
2904
- "Fr",
2905
- "Sa"
2906
- ],
2907
- "wide": [
2908
- "Sunday",
2909
- "Monday",
2910
- "Tuesday",
2911
- "Wednesday",
2912
- "Thursday",
2913
- "Friday",
2914
- "Saturday"
2915
- ]
2916
- },
2917
- "stand-alone": {
2918
- "abbreviated": [
2919
- "Sun",
2920
- "Mon",
2921
- "Tue",
2922
- "Wed",
2923
- "Thu",
2924
- "Fri",
2925
- "Sat"
2926
- ],
2927
- "narrow": [
2928
- "S",
2929
- "M",
2930
- "T",
2931
- "W",
2932
- "T",
2933
- "F",
2934
- "S"
2935
- ],
2936
- "short": [
2937
- "Su",
2938
- "Mo",
2939
- "Tu",
2940
- "We",
2941
- "Th",
2942
- "Fr",
2943
- "Sa"
2944
- ],
2945
- "wide": [
2946
- "Sunday",
2947
- "Monday",
2948
- "Tuesday",
2949
- "Wednesday",
2950
- "Thursday",
2951
- "Friday",
2952
- "Saturday"
2953
- ]
2954
- }
2955
- },
2956
- "quarters": {
2957
- "format": {
2958
- "abbreviated": [
2959
- "Q1",
2960
- "Q2",
2961
- "Q3",
2962
- "Q4"
2963
- ],
2964
- "narrow": [
2965
- "1",
2966
- "2",
2967
- "3",
2968
- "4"
2969
- ],
2970
- "wide": [
2971
- "1st quarter",
2972
- "2nd quarter",
2973
- "3rd quarter",
2974
- "4th quarter"
2975
- ]
2976
- },
2977
- "stand-alone": {
2978
- "abbreviated": [
2979
- "Q1",
2980
- "Q2",
2981
- "Q3",
2982
- "Q4"
2983
- ],
2984
- "narrow": [
2985
- "1",
2986
- "2",
2987
- "3",
2988
- "4"
2989
- ],
2990
- "wide": [
2991
- "1st quarter",
2992
- "2nd quarter",
2993
- "3rd quarter",
2994
- "4th quarter"
2995
- ]
2996
- }
2997
- },
2998
- "dayPeriods": {
2999
- "format": {
3000
- "abbreviated": [
3001
- "AM",
3002
- "PM"
3003
- ],
3004
- "narrow": [
3005
- "a",
3006
- "p"
3007
- ],
3008
- "wide": [
3009
- "AM",
3010
- "PM"
3011
- ]
3012
- },
3013
- "stand-alone": {
3014
- "abbreviated": [
3015
- "AM",
3016
- "PM"
3017
- ],
3018
- "narrow": [
3019
- "AM",
3020
- "PM"
3021
- ],
3022
- "wide": [
3023
- "AM",
3024
- "PM"
3025
- ]
3026
- }
3027
- },
3028
- "era-wide": {
3029
- "0": "AP"
3030
- },
3031
- "era-abbreviated": {
3032
- "0": "AP"
3033
- },
3034
- "era-narrow": {
3035
- "0": "AP"
3036
- }
3037
- },
3038
- "ca-buddhist": {
3039
- "dateFormats": {
3040
- "full": "EEEE, MMMM d, y G",
3041
- "long": "MMMM d, y G",
3042
- "medium": "MMM d, y G",
3043
- "short": "M/d/y GGGGG"
3044
- },
3045
- "timeFormats": {
3046
- "full": "h:mm:ss a zzzz",
3047
- "long": "h:mm:ss a z",
3048
- "medium": "h:mm:ss a",
3049
- "short": "h:mm a"
3050
- },
3051
- "dateTimeFormats": {
3052
- "full": "{1} 'at' {0}",
3053
- "long": "{1} 'at' {0}",
3054
- "medium": "{1}, {0}",
3055
- "short": "{1}, {0}",
3056
- "availableFormats": {
3057
- "Bh": "h B",
3058
- "Bhm": "h:mm B",
3059
- "Bhms": "h:mm:ss B",
3060
- "d": "d",
3061
- "E": "ccc",
3062
- "EBhm": "E h:mm B",
3063
- "EBhms": "E h:mm:ss B",
3064
- "Ed": "d E",
3065
- "Ehm": "E h:mm a",
3066
- "EHm": "E HH:mm",
3067
- "Ehms": "E h:mm:ss a",
3068
- "EHms": "E HH:mm:ss",
3069
- "Gy": "y G",
3070
- "GyMMM": "MMM y G",
3071
- "GyMMMd": "MMM d, y G",
3072
- "GyMMMEd": "E, MMM d, y G",
3073
- "h": "h a",
3074
- "H": "HH",
3075
- "hm": "h:mm a",
3076
- "Hm": "HH:mm",
3077
- "hms": "h:mm:ss a",
3078
- "Hms": "HH:mm:ss",
3079
- "M": "L",
3080
- "Md": "M/d",
3081
- "MEd": "E, M/d",
3082
- "MMM": "LLL",
3083
- "MMMd": "MMM d",
3084
- "MMMEd": "E, MMM d",
3085
- "MMMMd": "MMMM d",
3086
- "ms": "mm:ss",
3087
- "y": "y G",
3088
- "yyyy": "y G",
3089
- "yyyyM": "M/y GGGGG",
3090
- "yyyyMd": "M/d/y GGGGG",
3091
- "yyyyMEd": "E, M/d/y GGGGG",
3092
- "yyyyMMM": "MMM y G",
3093
- "yyyyMMMd": "MMM d, y G",
3094
- "yyyyMMMEd": "E, MMM d, y G",
3095
- "yyyyMMMM": "MMMM y G",
3096
- "yyyyQQQ": "QQQ y G",
3097
- "yyyyQQQQ": "QQQQ y G"
3098
- },
3099
- "appendItems": {
3100
- "Day": "{0} ({2}: {1})",
3101
- "Day-Of-Week": "{0} {1}",
3102
- "Era": "{0} {1}",
3103
- "Hour": "{0} ({2}: {1})",
3104
- "Minute": "{0} ({2}: {1})",
3105
- "Month": "{0} ({2}: {1})",
3106
- "Quarter": "{0} ({2}: {1})",
3107
- "Second": "{0} ({2}: {1})",
3108
- "Timezone": "{0} {1}",
3109
- "Week": "{0} ({2}: {1})",
3110
- "Year": "{0} {1}"
3111
- },
3112
- "intervalFormats": {
3113
- "intervalFormatFallback": "{0} – {1}",
3114
- "Bh": {
3115
- "B": "h B – h B",
3116
- "h": "h – h B"
3117
- },
3118
- "Bhm": {
3119
- "B": "h:mm B – h:mm B",
3120
- "h": "h:mm – h:mm B",
3121
- "m": "h:mm – h:mm B"
3122
- },
3123
- "d": {
3124
- "d": "d – d"
3125
- },
3126
- "Gy": {
3127
- "G": "y G – y G",
3128
- "y": "y – y G"
3129
- },
3130
- "GyM": {
3131
- "G": "M/y GGGGG – M/y GGGGG",
3132
- "M": "M/y – M/y GGGGG",
3133
- "y": "M/y – M/y GGGGG"
3134
- },
3135
- "GyMd": {
3136
- "d": "M/d/y – M/d/y GGGGG",
3137
- "G": "M/d/y GGGGG – M/d/y GGGGG",
3138
- "M": "M/d/y – M/d/y GGGGG",
3139
- "y": "M/d/y – M/d/y GGGGG"
3140
- },
3141
- "GyMEd": {
3142
- "d": "E, M/d/y – E, M/d/y GGGGG",
3143
- "G": "E, M/d/y GGGGG – E, M/d/y GGGGG",
3144
- "M": "E, M/d/y – E, M/d/y GGGGG",
3145
- "y": "E, M/d/y – E, M/d/y GGGGG"
3146
- },
3147
- "GyMMM": {
3148
- "G": "MMM y G – MMM y G",
3149
- "M": "MMM – MMM y G",
3150
- "y": "MMM y – MMM y G"
3151
- },
3152
- "GyMMMd": {
3153
- "d": "MMM d – d, y G",
3154
- "G": "MMM d, y G – MMM d, y G",
3155
- "M": "MMM d – MMM d, y G",
3156
- "y": "MMM d, y – MMM d, y G"
3157
- },
3158
- "GyMMMEd": {
3159
- "d": "E, MMM d – E, MMM d, y G",
3160
- "G": "E, MMM d, y G – E, MMM d, y G",
3161
- "M": "E, MMM d – E, MMM d, y G",
3162
- "y": "E, MMM d, y – E, MMM d, y G"
3163
- },
3164
- "h": {
3165
- "a": "h a – h a",
3166
- "h": "h – h a"
3167
- },
3168
- "H": {
3169
- "H": "HH – HH"
3170
- },
3171
- "hm": {
3172
- "a": "h:mm a – h:mm a",
3173
- "h": "h:mm – h:mm a",
3174
- "m": "h:mm – h:mm a"
3175
- },
3176
- "Hm": {
3177
- "H": "HH:mm – HH:mm",
3178
- "m": "HH:mm – HH:mm"
3179
- },
3180
- "hmv": {
3181
- "a": "h:mm a – h:mm a v",
3182
- "h": "h:mm – h:mm a v",
3183
- "m": "h:mm – h:mm a v"
3184
- },
3185
- "Hmv": {
3186
- "H": "HH:mm – HH:mm v",
3187
- "m": "HH:mm – HH:mm v"
3188
- },
3189
- "hv": {
3190
- "a": "h a – h a v",
3191
- "h": "h – h a v"
3192
- },
3193
- "Hv": {
3194
- "H": "HH – HH v"
3195
- },
3196
- "M": {
3197
- "M": "M – M"
3198
- },
3199
- "Md": {
3200
- "d": "M/d – M/d",
3201
- "M": "M/d – M/d"
3202
- },
3203
- "MEd": {
3204
- "d": "E, M/d – E, M/d",
3205
- "M": "E, M/d – E, M/d"
3206
- },
3207
- "MMM": {
3208
- "M": "MMM – MMM"
3209
- },
3210
- "MMMd": {
3211
- "d": "MMM d – d",
3212
- "M": "MMM d – MMM d"
3213
- },
3214
- "MMMEd": {
3215
- "d": "E, MMM d – E, MMM d",
3216
- "M": "E, MMM d – E, MMM d"
3217
- },
3218
- "y": {
3219
- "y": "y – y G"
3220
- },
3221
- "yM": {
3222
- "M": "M/y – M/y GGGGG",
3223
- "y": "M/y – M/y GGGGG"
3224
- },
3225
- "yMd": {
3226
- "d": "M/d/y – M/d/y GGGGG",
3227
- "M": "M/d/y – M/d/y GGGGG",
3228
- "y": "M/d/y – M/d/y GGGGG"
3229
- },
3230
- "yMEd": {
3231
- "d": "E, M/d/y – E, M/d/y GGGGG",
3232
- "M": "E, M/d/y – E, M/d/y GGGGG",
3233
- "y": "E, M/d/y – E, M/d/y GGGGG"
3234
- },
3235
- "yMMM": {
3236
- "M": "MMM – MMM y G",
3237
- "y": "MMM y – MMM y G"
3238
- },
3239
- "yMMMd": {
3240
- "d": "MMM d – d, y G",
3241
- "M": "MMM d – MMM d, y G",
3242
- "y": "MMM d, y – MMM d, y G"
3243
- },
3244
- "yMMMEd": {
3245
- "d": "E, MMM d – E, MMM d, y G",
3246
- "M": "E, MMM d – E, MMM d, y G",
3247
- "y": "E, MMM d, y – E, MMM d, y G"
3248
- },
3249
- "yMMMM": {
3250
- "M": "MMMM – MMMM y G",
3251
- "y": "MMMM y – MMMM y G"
3252
- }
3253
- }
3254
- },
3255
- "months": {
3256
- "format": {
3257
- "abbreviated": [
3258
- "Jan",
3259
- "Feb",
3260
- "Mar",
3261
- "Apr",
3262
- "May",
3263
- "Jun",
3264
- "Jul",
3265
- "Aug",
3266
- "Sep",
3267
- "Oct",
3268
- "Nov",
3269
- "Dec"
3270
- ],
3271
- "narrow": [
3272
- "J",
3273
- "F",
3274
- "M",
3275
- "A",
3276
- "M",
3277
- "J",
3278
- "J",
3279
- "A",
3280
- "S",
3281
- "O",
3282
- "N",
3283
- "D"
3284
- ],
3285
- "wide": [
3286
- "January",
3287
- "February",
3288
- "March",
3289
- "April",
3290
- "May",
3291
- "June",
3292
- "July",
3293
- "August",
3294
- "September",
3295
- "October",
3296
- "November",
3297
- "December"
3298
- ]
3299
- },
3300
- "stand-alone": {
3301
- "abbreviated": [
3302
- "Jan",
3303
- "Feb",
3304
- "Mar",
3305
- "Apr",
3306
- "May",
3307
- "Jun",
3308
- "Jul",
3309
- "Aug",
3310
- "Sep",
3311
- "Oct",
3312
- "Nov",
3313
- "Dec"
3314
- ],
3315
- "narrow": [
3316
- "J",
3317
- "F",
3318
- "M",
3319
- "A",
3320
- "M",
3321
- "J",
3322
- "J",
3323
- "A",
3324
- "S",
3325
- "O",
3326
- "N",
3327
- "D"
3328
- ],
3329
- "wide": [
3330
- "January",
3331
- "February",
3332
- "March",
3333
- "April",
3334
- "May",
3335
- "June",
3336
- "July",
3337
- "August",
3338
- "September",
3339
- "October",
3340
- "November",
3341
- "December"
3342
- ]
3343
- }
3344
- },
3345
- "days": {
3346
- "format": {
3347
- "abbreviated": [
3348
- "Sun",
3349
- "Mon",
3350
- "Tue",
3351
- "Wed",
3352
- "Thu",
3353
- "Fri",
3354
- "Sat"
3355
- ],
3356
- "narrow": [
3357
- "S",
3358
- "M",
3359
- "T",
3360
- "W",
3361
- "T",
3362
- "F",
3363
- "S"
3364
- ],
3365
- "short": [
3366
- "Su",
3367
- "Mo",
3368
- "Tu",
3369
- "We",
3370
- "Th",
3371
- "Fr",
3372
- "Sa"
3373
- ],
3374
- "wide": [
3375
- "Sunday",
3376
- "Monday",
3377
- "Tuesday",
3378
- "Wednesday",
3379
- "Thursday",
3380
- "Friday",
3381
- "Saturday"
3382
- ]
3383
- },
3384
- "stand-alone": {
3385
- "abbreviated": [
3386
- "Sun",
3387
- "Mon",
3388
- "Tue",
3389
- "Wed",
3390
- "Thu",
3391
- "Fri",
3392
- "Sat"
3393
- ],
3394
- "narrow": [
3395
- "S",
3396
- "M",
3397
- "T",
3398
- "W",
3399
- "T",
3400
- "F",
3401
- "S"
3402
- ],
3403
- "short": [
3404
- "Su",
3405
- "Mo",
3406
- "Tu",
3407
- "We",
3408
- "Th",
3409
- "Fr",
3410
- "Sa"
3411
- ],
3412
- "wide": [
3413
- "Sunday",
3414
- "Monday",
3415
- "Tuesday",
3416
- "Wednesday",
3417
- "Thursday",
3418
- "Friday",
3419
- "Saturday"
3420
- ]
3421
- }
3422
- },
3423
- "quarters": {
3424
- "format": {
3425
- "abbreviated": [
3426
- "Q1",
3427
- "Q2",
3428
- "Q3",
3429
- "Q4"
3430
- ],
3431
- "narrow": [
3432
- "1",
3433
- "2",
3434
- "3",
3435
- "4"
3436
- ],
3437
- "wide": [
3438
- "1st quarter",
3439
- "2nd quarter",
3440
- "3rd quarter",
3441
- "4th quarter"
3442
- ]
3443
- },
3444
- "stand-alone": {
3445
- "abbreviated": [
3446
- "Q1",
3447
- "Q2",
3448
- "Q3",
3449
- "Q4"
3450
- ],
3451
- "narrow": [
3452
- "1",
3453
- "2",
3454
- "3",
3455
- "4"
3456
- ],
3457
- "wide": [
3458
- "1st quarter",
3459
- "2nd quarter",
3460
- "3rd quarter",
3461
- "4th quarter"
3462
- ]
3463
- }
3464
- },
3465
- "dayPeriods": {
3466
- "format": {
3467
- "abbreviated": [
3468
- "AM",
3469
- "PM"
3470
- ],
3471
- "narrow": [
3472
- "a",
3473
- "p"
3474
- ],
3475
- "wide": [
3476
- "AM",
3477
- "PM"
3478
- ]
3479
- },
3480
- "stand-alone": {
3481
- "abbreviated": [
3482
- "AM",
3483
- "PM"
3484
- ],
3485
- "narrow": [
3486
- "AM",
3487
- "PM"
3488
- ],
3489
- "wide": [
3490
- "AM",
3491
- "PM"
3492
- ]
3493
- }
3494
- },
3495
- "era-wide": {
3496
- "0": "BE"
3497
- },
3498
- "era-abbreviated": {
3499
- "0": "BE"
3500
- },
3501
- "era-narrow": {
3502
- "0": "BE"
3503
- }
3504
- },
3505
- "dateFields": {
3506
- "era": {
3507
- "displayName": "era"
3508
- },
3509
- "year-wide": {
3510
- "displayName": "year",
3511
- "relative-type--1": "last year",
3512
- "relative-type-0": "this year",
3513
- "relative-type-1": "next year",
3514
- "relativeTime-type-future": {
3515
- "relativeTimePattern-count-one": "in {0} year",
3516
- "relativeTimePattern-count-other": "in {0} years"
3517
- },
3518
- "relativeTime-type-past": {
3519
- "relativeTimePattern-count-one": "{0} year ago",
3520
- "relativeTimePattern-count-other": "{0} years ago"
3521
- }
3522
- },
3523
- "year-short": {
3524
- "displayName": "yr.",
3525
- "relative-type--1": "last yr.",
3526
- "relative-type-0": "this yr.",
3527
- "relative-type-1": "next yr.",
3528
- "relativeTime-type-future": {
3529
- "relativeTimePattern-count-one": "in {0} yr.",
3530
- "relativeTimePattern-count-other": "in {0} yr."
3531
- },
3532
- "relativeTime-type-past": {
3533
- "relativeTimePattern-count-one": "{0} yr. ago",
3534
- "relativeTimePattern-count-other": "{0} yr. ago"
3535
- }
3536
- },
3537
- "year-narrow": {
3538
- "displayName": "yr.",
3539
- "relative-type--1": "last yr.",
3540
- "relative-type-0": "this yr.",
3541
- "relative-type-1": "next yr.",
3542
- "relativeTime-type-future": {
3543
- "relativeTimePattern-count-one": "in {0} yr.",
3544
- "relativeTimePattern-count-other": "in {0} yr."
3545
- },
3546
- "relativeTime-type-past": {
3547
- "relativeTimePattern-count-one": "{0} yr. ago",
3548
- "relativeTimePattern-count-other": "{0} yr. ago"
3549
- }
3550
- },
3551
- "quarter-wide": {
3552
- "displayName": "quarter",
3553
- "relative-type--1": "last quarter",
3554
- "relative-type-0": "this quarter",
3555
- "relative-type-1": "next quarter",
3556
- "relativeTime-type-future": {
3557
- "relativeTimePattern-count-one": "in {0} quarter",
3558
- "relativeTimePattern-count-other": "in {0} quarters"
3559
- },
3560
- "relativeTime-type-past": {
3561
- "relativeTimePattern-count-one": "{0} quarter ago",
3562
- "relativeTimePattern-count-other": "{0} quarters ago"
3563
- }
3564
- },
3565
- "quarter-short": {
3566
- "displayName": "qtr.",
3567
- "relative-type--1": "last qtr.",
3568
- "relative-type-0": "this qtr.",
3569
- "relative-type-1": "next qtr.",
3570
- "relativeTime-type-future": {
3571
- "relativeTimePattern-count-one": "in {0} qtr.",
3572
- "relativeTimePattern-count-other": "in {0} qtrs."
3573
- },
3574
- "relativeTime-type-past": {
3575
- "relativeTimePattern-count-one": "{0} qtr. ago",
3576
- "relativeTimePattern-count-other": "{0} qtrs. ago"
3577
- }
3578
- },
3579
- "quarter-narrow": {
3580
- "displayName": "qtr.",
3581
- "relative-type--1": "last qtr.",
3582
- "relative-type-0": "this qtr.",
3583
- "relative-type-1": "next qtr.",
3584
- "relativeTime-type-future": {
3585
- "relativeTimePattern-count-one": "in {0} qtr.",
3586
- "relativeTimePattern-count-other": "in {0} qtrs."
3587
- },
3588
- "relativeTime-type-past": {
3589
- "relativeTimePattern-count-one": "{0} qtr. ago",
3590
- "relativeTimePattern-count-other": "{0} qtrs. ago"
3591
- }
3592
- },
3593
- "month-wide": {
3594
- "displayName": "month",
3595
- "relative-type--1": "last month",
3596
- "relative-type-0": "this month",
3597
- "relative-type-1": "next month",
3598
- "relativeTime-type-future": {
3599
- "relativeTimePattern-count-one": "in {0} month",
3600
- "relativeTimePattern-count-other": "in {0} months"
3601
- },
3602
- "relativeTime-type-past": {
3603
- "relativeTimePattern-count-one": "{0} month ago",
3604
- "relativeTimePattern-count-other": "{0} months ago"
3605
- }
3606
- },
3607
- "month-short": {
3608
- "displayName": "mo.",
3609
- "relative-type--1": "last mo.",
3610
- "relative-type-0": "this mo.",
3611
- "relative-type-1": "next mo.",
3612
- "relativeTime-type-future": {
3613
- "relativeTimePattern-count-one": "in {0} mo.",
3614
- "relativeTimePattern-count-other": "in {0} mo."
3615
- },
3616
- "relativeTime-type-past": {
3617
- "relativeTimePattern-count-one": "{0} mo. ago",
3618
- "relativeTimePattern-count-other": "{0} mo. ago"
3619
- }
3620
- },
3621
- "month-narrow": {
3622
- "displayName": "mo.",
3623
- "relative-type--1": "last mo.",
3624
- "relative-type-0": "this mo.",
3625
- "relative-type-1": "next mo.",
3626
- "relativeTime-type-future": {
3627
- "relativeTimePattern-count-one": "in {0} mo.",
3628
- "relativeTimePattern-count-other": "in {0} mo."
3629
- },
3630
- "relativeTime-type-past": {
3631
- "relativeTimePattern-count-one": "{0} mo. ago",
3632
- "relativeTimePattern-count-other": "{0} mo. ago"
3633
- }
3634
- },
3635
- "week-wide": {
3636
- "displayName": "week",
3637
- "relative-type--1": "last week",
3638
- "relative-type-0": "this week",
3639
- "relative-type-1": "next week",
3640
- "relativeTime-type-future": {
3641
- "relativeTimePattern-count-one": "in {0} week",
3642
- "relativeTimePattern-count-other": "in {0} weeks"
3643
- },
3644
- "relativeTime-type-past": {
3645
- "relativeTimePattern-count-one": "{0} week ago",
3646
- "relativeTimePattern-count-other": "{0} weeks ago"
3647
- },
3648
- "relativePeriod": "the week of {0}"
3649
- },
3650
- "week-short": {
3651
- "displayName": "wk.",
3652
- "relative-type--1": "last wk.",
3653
- "relative-type-0": "this wk.",
3654
- "relative-type-1": "next wk.",
3655
- "relativeTime-type-future": {
3656
- "relativeTimePattern-count-one": "in {0} wk.",
3657
- "relativeTimePattern-count-other": "in {0} wk."
3658
- },
3659
- "relativeTime-type-past": {
3660
- "relativeTimePattern-count-one": "{0} wk. ago",
3661
- "relativeTimePattern-count-other": "{0} wk. ago"
3662
- },
3663
- "relativePeriod": "the week of {0}"
3664
- },
3665
- "week-narrow": {
3666
- "displayName": "wk.",
3667
- "relative-type--1": "last wk.",
3668
- "relative-type-0": "this wk.",
3669
- "relative-type-1": "next wk.",
3670
- "relativeTime-type-future": {
3671
- "relativeTimePattern-count-one": "in {0} wk.",
3672
- "relativeTimePattern-count-other": "in {0} wk."
3673
- },
3674
- "relativeTime-type-past": {
3675
- "relativeTimePattern-count-one": "{0} wk. ago",
3676
- "relativeTimePattern-count-other": "{0} wk. ago"
3677
- },
3678
- "relativePeriod": "the week of {0}"
3679
- },
3680
- "day-wide": {
3681
- "displayName": "day",
3682
- "relative-type--1": "yesterday",
3683
- "relative-type-0": "today",
3684
- "relative-type-1": "tomorrow",
3685
- "relativeTime-type-future": {
3686
- "relativeTimePattern-count-one": "in {0} day",
3687
- "relativeTimePattern-count-other": "in {0} days"
3688
- },
3689
- "relativeTime-type-past": {
3690
- "relativeTimePattern-count-one": "{0} day ago",
3691
- "relativeTimePattern-count-other": "{0} days ago"
3692
- }
3693
- },
3694
- "day-short": {
3695
- "displayName": "day",
3696
- "relative-type--1": "yesterday",
3697
- "relative-type-0": "today",
3698
- "relative-type-1": "tomorrow",
3699
- "relativeTime-type-future": {
3700
- "relativeTimePattern-count-one": "in {0} day",
3701
- "relativeTimePattern-count-other": "in {0} days"
3702
- },
3703
- "relativeTime-type-past": {
3704
- "relativeTimePattern-count-one": "{0} day ago",
3705
- "relativeTimePattern-count-other": "{0} days ago"
3706
- }
3707
- },
3708
- "day-narrow": {
3709
- "displayName": "day",
3710
- "relative-type--1": "yesterday",
3711
- "relative-type-0": "today",
3712
- "relative-type-1": "tomorrow",
3713
- "relativeTime-type-future": {
3714
- "relativeTimePattern-count-one": "in {0} day",
3715
- "relativeTimePattern-count-other": "in {0} days"
3716
- },
3717
- "relativeTime-type-past": {
3718
- "relativeTimePattern-count-one": "{0} day ago",
3719
- "relativeTimePattern-count-other": "{0} days ago"
3720
- }
3721
- },
3722
- "weekday": {
3723
- "displayName": "day of the week"
3724
- },
3725
- "hour-wide": {
3726
- "displayName": "hour",
3727
- "relative-type-0": "this hour",
3728
- "relativeTime-type-future": {
3729
- "relativeTimePattern-count-one": "in {0} hour",
3730
- "relativeTimePattern-count-other": "in {0} hours"
3731
- },
3732
- "relativeTime-type-past": {
3733
- "relativeTimePattern-count-one": "{0} hour ago",
3734
- "relativeTimePattern-count-other": "{0} hours ago"
3735
- }
3736
- },
3737
- "hour-short": {
3738
- "displayName": "hr.",
3739
- "relative-type-0": "this hour",
3740
- "relativeTime-type-future": {
3741
- "relativeTimePattern-count-one": "in {0} hr.",
3742
- "relativeTimePattern-count-other": "in {0} hr."
3743
- },
3744
- "relativeTime-type-past": {
3745
- "relativeTimePattern-count-one": "{0} hr. ago",
3746
- "relativeTimePattern-count-other": "{0} hr. ago"
3747
- }
3748
- },
3749
- "hour-narrow": {
3750
- "displayName": "hr.",
3751
- "relative-type-0": "this hour",
3752
- "relativeTime-type-future": {
3753
- "relativeTimePattern-count-one": "in {0} hr.",
3754
- "relativeTimePattern-count-other": "in {0} hr."
3755
- },
3756
- "relativeTime-type-past": {
3757
- "relativeTimePattern-count-one": "{0} hr. ago",
3758
- "relativeTimePattern-count-other": "{0} hr. ago"
3759
- }
3760
- },
3761
- "minute-wide": {
3762
- "displayName": "minute",
3763
- "relative-type-0": "this minute",
3764
- "relativeTime-type-future": {
3765
- "relativeTimePattern-count-one": "in {0} minute",
3766
- "relativeTimePattern-count-other": "in {0} minutes"
3767
- },
3768
- "relativeTime-type-past": {
3769
- "relativeTimePattern-count-one": "{0} minute ago",
3770
- "relativeTimePattern-count-other": "{0} minutes ago"
3771
- }
3772
- },
3773
- "minute-short": {
3774
- "displayName": "min.",
3775
- "relative-type-0": "this minute",
3776
- "relativeTime-type-future": {
3777
- "relativeTimePattern-count-one": "in {0} min.",
3778
- "relativeTimePattern-count-other": "in {0} min."
3779
- },
3780
- "relativeTime-type-past": {
3781
- "relativeTimePattern-count-one": "{0} min. ago",
3782
- "relativeTimePattern-count-other": "{0} min. ago"
3783
- }
3784
- },
3785
- "minute-narrow": {
3786
- "displayName": "min.",
3787
- "relative-type-0": "this minute",
3788
- "relativeTime-type-future": {
3789
- "relativeTimePattern-count-one": "in {0} min.",
3790
- "relativeTimePattern-count-other": "in {0} min."
3791
- },
3792
- "relativeTime-type-past": {
3793
- "relativeTimePattern-count-one": "{0} min. ago",
3794
- "relativeTimePattern-count-other": "{0} min. ago"
3795
- }
3796
- },
3797
- "second-wide": {
3798
- "displayName": "second",
3799
- "relative-type-0": "now",
3800
- "relativeTime-type-future": {
3801
- "relativeTimePattern-count-one": "in {0} second",
3802
- "relativeTimePattern-count-other": "in {0} seconds"
3803
- },
3804
- "relativeTime-type-past": {
3805
- "relativeTimePattern-count-one": "{0} second ago",
3806
- "relativeTimePattern-count-other": "{0} seconds ago"
3807
- }
3808
- },
3809
- "second-short": {
3810
- "displayName": "sec.",
3811
- "relative-type-0": "now",
3812
- "relativeTime-type-future": {
3813
- "relativeTimePattern-count-one": "in {0} sec.",
3814
- "relativeTimePattern-count-other": "in {0} sec."
3815
- },
3816
- "relativeTime-type-past": {
3817
- "relativeTimePattern-count-one": "{0} sec. ago",
3818
- "relativeTimePattern-count-other": "{0} sec. ago"
3819
- }
3820
- },
3821
- "second-narrow": {
3822
- "displayName": "sec.",
3823
- "relative-type-0": "now",
3824
- "relativeTime-type-future": {
3825
- "relativeTimePattern-count-one": "in {0} sec.",
3826
- "relativeTimePattern-count-other": "in {0} sec."
3827
- },
3828
- "relativeTime-type-past": {
3829
- "relativeTimePattern-count-one": "{0} sec. ago",
3830
- "relativeTimePattern-count-other": "{0} sec. ago"
3831
- }
3832
- },
3833
- "zone": {
3834
- "displayName": "time zone"
3835
- }
3836
- },
3837
- "decimalFormat": {
3838
- "standard": "#,##0.###"
3839
- },
3840
- "decimalFormat-long": {
3841
- "1000-one": "0 thousand",
3842
- "1000-other": "0 thousand",
3843
- "10000-one": "00 thousand",
3844
- "10000-other": "00 thousand",
3845
- "100000-one": "000 thousand",
3846
- "100000-other": "000 thousand",
3847
- "1000000-one": "0 million",
3848
- "1000000-other": "0 million",
3849
- "10000000-one": "00 million",
3850
- "10000000-other": "00 million",
3851
- "100000000-one": "000 million",
3852
- "100000000-other": "000 million",
3853
- "1000000000-one": "0 billion",
3854
- "1000000000-other": "0 billion",
3855
- "10000000000-one": "00 billion",
3856
- "10000000000-other": "00 billion",
3857
- "100000000000-one": "000 billion",
3858
- "100000000000-other": "000 billion",
3859
- "1000000000000-one": "0 trillion",
3860
- "1000000000000-other": "0 trillion",
3861
- "10000000000000-one": "00 trillion",
3862
- "10000000000000-other": "00 trillion",
3863
- "100000000000000-one": "000 trillion",
3864
- "100000000000000-other": "000 trillion"
3865
- },
3866
- "decimalFormat-short": {
3867
- "1000-one": "0K",
3868
- "1000-other": "0K",
3869
- "10000-one": "00K",
3870
- "10000-other": "00K",
3871
- "100000-one": "000K",
3872
- "100000-other": "000K",
3873
- "1000000-one": "0M",
3874
- "1000000-other": "0M",
3875
- "10000000-one": "00M",
3876
- "10000000-other": "00M",
3877
- "100000000-one": "000M",
3878
- "100000000-other": "000M",
3879
- "1000000000-one": "0B",
3880
- "1000000000-other": "0B",
3881
- "10000000000-one": "00B",
3882
- "10000000000-other": "00B",
3883
- "100000000000-one": "000B",
3884
- "100000000000-other": "000B",
3885
- "1000000000000-one": "0T",
3886
- "1000000000000-other": "0T",
3887
- "10000000000000-one": "00T",
3888
- "10000000000000-other": "00T",
3889
- "100000000000000-one": "000T",
3890
- "100000000000000-other": "000T"
3891
- },
3892
- "scientificFormat": {
3893
- "standard": "#E0"
3894
- },
3895
- "percentFormat": {
3896
- "standard": "#,##0%"
3897
- },
3898
- "currencyFormat": {
3899
- "standard": "¤#,##0.00",
3900
- "accounting": "¤#,##0.00;(¤#,##0.00)",
3901
- "currencySpacing": {
3902
- "beforeCurrency": {
3903
- "currencyMatch": "[:^S:]",
3904
- "surroundingMatch": "[:digit:]",
3905
- "insertBetween": " "
3906
- },
3907
- "afterCurrency": {
3908
- "currencyMatch": "[:^S:]",
3909
- "surroundingMatch": "[:digit:]",
3910
- "insertBetween": " "
3911
- }
3912
- },
3913
- "sap-standard": "#,##0.00¤",
3914
- "sap-accounting": "#,##0.00¤;(#,##0.00¤)"
3915
- },
3916
- "miscPattern": {
3917
- "approximately": "~{0}",
3918
- "atLeast": "{0}+",
3919
- "atMost": "≤{0}",
3920
- "range": "{0}–{1}"
3921
- },
3922
- "currencyFormat-short": {
3923
- "1000-one": "¤0K",
3924
- "1000-other": "¤0K",
3925
- "10000-one": "¤00K",
3926
- "10000-other": "¤00K",
3927
- "100000-one": "¤000K",
3928
- "100000-other": "¤000K",
3929
- "1000000-one": "¤0M",
3930
- "1000000-other": "¤0M",
3931
- "10000000-one": "¤00M",
3932
- "10000000-other": "¤00M",
3933
- "100000000-one": "¤000M",
3934
- "100000000-other": "¤000M",
3935
- "1000000000-one": "¤0B",
3936
- "1000000000-other": "¤0B",
3937
- "10000000000-one": "¤00B",
3938
- "10000000000-other": "¤00B",
3939
- "100000000000-one": "¤000B",
3940
- "100000000000-other": "¤000B",
3941
- "1000000000000-one": "¤0T",
3942
- "1000000000000-other": "¤0T",
3943
- "10000000000000-one": "¤00T",
3944
- "10000000000000-other": "¤00T",
3945
- "100000000000000-one": "¤000T",
3946
- "100000000000000-other": "¤000T"
3947
- },
3948
- "symbols-latn-decimal": ".",
3949
- "symbols-latn-group": ",",
3950
- "symbols-latn-list": ";",
3951
- "symbols-latn-percentSign": "%",
3952
- "symbols-latn-plusSign": "+",
3953
- "symbols-latn-minusSign": "-",
3954
- "symbols-latn-exponential": "E",
3955
- "symbols-latn-superscriptingExponent": "×",
3956
- "symbols-latn-perMille": "‰",
3957
- "symbols-latn-infinity": "∞",
3958
- "symbols-latn-nan": "NaN",
3959
- "symbols-latn-timeSeparator": ":",
3960
- "currencySymbols": {
3961
- "AUD": "A$",
3962
- "BRL": "R$",
3963
- "CAD": "CA$",
3964
- "CNY": "CN¥",
3965
- "EUR": "€",
3966
- "GBP": "£",
3967
- "HKD": "HK$",
3968
- "ILS": "₪",
3969
- "INR": "₹",
3970
- "JPY": "¥",
3971
- "KRW": "₩",
3972
- "MXN": "MX$",
3973
- "NZD": "NZ$",
3974
- "TWD": "NT$",
3975
- "USD": "$",
3976
- "VND": "₫",
3977
- "XAF": "FCFA",
3978
- "XCD": "EC$",
3979
- "XOF": "CFA",
3980
- "XPF": "CFPF",
3981
- "XXX": "¤"
3982
- },
3983
- "rtl": false,
3984
- "listPattern-standard-wide": {
3985
- "2": "{0} and {1}",
3986
- "start": "{0}, {1}",
3987
- "middle": "{0}, {1}",
3988
- "end": "{0}, and {1}"
3989
- },
3990
- "listPattern-or-wide": {
3991
- "2": "{0} or {1}",
3992
- "start": "{0}, {1}",
3993
- "middle": "{0}, {1}",
3994
- "end": "{0}, or {1}"
3995
- },
3996
- "listPattern-or-short": {
3997
- "2": "{0} or {1}",
3998
- "start": "{0}, {1}",
3999
- "middle": "{0}, {1}",
4000
- "end": "{0}, or {1}"
4001
- },
4002
- "listPattern-standard-short": {
4003
- "2": "{0} & {1}",
4004
- "start": "{0}, {1}",
4005
- "middle": "{0}, {1}",
4006
- "end": "{0}, & {1}"
4007
- },
4008
- "units": {
4009
- "short": {
4010
- "per": {
4011
- "compoundUnitPattern": "{0}/{1}"
4012
- },
4013
- "acceleration-g-force": {
4014
- "displayName": "g-force",
4015
- "unitPattern-count-one": "{0} G",
4016
- "unitPattern-count-other": "{0} G"
4017
- },
4018
- "acceleration-meter-per-second-squared": {
4019
- "displayName": "meters/sec²",
4020
- "unitPattern-count-one": "{0} m/s²",
4021
- "unitPattern-count-other": "{0} m/s²"
4022
- },
4023
- "angle-revolution": {
4024
- "displayName": "rev",
4025
- "unitPattern-count-one": "{0} rev",
4026
- "unitPattern-count-other": "{0} rev"
4027
- },
4028
- "angle-radian": {
4029
- "displayName": "radians",
4030
- "unitPattern-count-one": "{0} rad",
4031
- "unitPattern-count-other": "{0} rad"
4032
- },
4033
- "angle-degree": {
4034
- "displayName": "degrees",
4035
- "unitPattern-count-one": "{0} deg",
4036
- "unitPattern-count-other": "{0} deg"
4037
- },
4038
- "angle-arc-minute": {
4039
- "displayName": "arcmins",
4040
- "unitPattern-count-one": "{0} arcmin",
4041
- "unitPattern-count-other": "{0} arcmins"
4042
- },
4043
- "angle-arc-second": {
4044
- "displayName": "arcsecs",
4045
- "unitPattern-count-one": "{0} arcsec",
4046
- "unitPattern-count-other": "{0} arcsecs"
4047
- },
4048
- "area-square-kilometer": {
4049
- "displayName": "km²",
4050
- "unitPattern-count-one": "{0} km²",
4051
- "unitPattern-count-other": "{0} km²",
4052
- "perUnitPattern": "{0}/km²"
4053
- },
4054
- "area-hectare": {
4055
- "displayName": "hectares",
4056
- "unitPattern-count-one": "{0} ha",
4057
- "unitPattern-count-other": "{0} ha"
4058
- },
4059
- "area-square-meter": {
4060
- "displayName": "meters²",
4061
- "unitPattern-count-one": "{0} m²",
4062
- "unitPattern-count-other": "{0} m²",
4063
- "perUnitPattern": "{0}/m²"
4064
- },
4065
- "area-square-centimeter": {
4066
- "displayName": "cm²",
4067
- "unitPattern-count-one": "{0} cm²",
4068
- "unitPattern-count-other": "{0} cm²",
4069
- "perUnitPattern": "{0}/cm²"
4070
- },
4071
- "area-square-mile": {
4072
- "displayName": "sq miles",
4073
- "unitPattern-count-one": "{0} sq mi",
4074
- "unitPattern-count-other": "{0} sq mi",
4075
- "perUnitPattern": "{0}/mi²"
4076
- },
4077
- "area-acre": {
4078
- "displayName": "acres",
4079
- "unitPattern-count-one": "{0} ac",
4080
- "unitPattern-count-other": "{0} ac"
4081
- },
4082
- "area-square-yard": {
4083
- "displayName": "yards²",
4084
- "unitPattern-count-one": "{0} yd²",
4085
- "unitPattern-count-other": "{0} yd²"
4086
- },
4087
- "area-square-foot": {
4088
- "displayName": "sq feet",
4089
- "unitPattern-count-one": "{0} sq ft",
4090
- "unitPattern-count-other": "{0} sq ft"
4091
- },
4092
- "area-square-inch": {
4093
- "displayName": "inches²",
4094
- "unitPattern-count-one": "{0} in²",
4095
- "unitPattern-count-other": "{0} in²",
4096
- "perUnitPattern": "{0}/in²"
4097
- },
4098
- "area-dunam": {
4099
- "displayName": "dunams",
4100
- "unitPattern-count-one": "{0} dunam",
4101
- "unitPattern-count-other": "{0} dunam"
4102
- },
4103
- "concentr-karat": {
4104
- "displayName": "karats",
4105
- "unitPattern-count-one": "{0} kt",
4106
- "unitPattern-count-other": "{0} kt"
4107
- },
4108
- "concentr-milligram-per-deciliter": {
4109
- "displayName": "mg/dL",
4110
- "unitPattern-count-one": "{0} mg/dL",
4111
- "unitPattern-count-other": "{0} mg/dL"
4112
- },
4113
- "concentr-millimole-per-liter": {
4114
- "displayName": "millimol/liter",
4115
- "unitPattern-count-one": "{0} mmol/L",
4116
- "unitPattern-count-other": "{0} mmol/L"
4117
- },
4118
- "concentr-part-per-million": {
4119
- "displayName": "parts/million",
4120
- "unitPattern-count-one": "{0} ppm",
4121
- "unitPattern-count-other": "{0} ppm"
4122
- },
4123
- "concentr-percent": {
4124
- "displayName": "percent",
4125
- "unitPattern-count-one": "{0}%",
4126
- "unitPattern-count-other": "{0}%"
4127
- },
4128
- "concentr-permille": {
4129
- "displayName": "permille",
4130
- "unitPattern-count-one": "{0}‰",
4131
- "unitPattern-count-other": "{0}‰"
4132
- },
4133
- "concentr-permyriad": {
4134
- "displayName": "permyriad",
4135
- "unitPattern-count-one": "{0}‱",
4136
- "unitPattern-count-other": "{0}‱"
4137
- },
4138
- "concentr-mole": {
4139
- "displayName": "mole",
4140
- "unitPattern-count-one": "{0} mol",
4141
- "unitPattern-count-other": "{0} mol"
4142
- },
4143
- "consumption-liter-per-kilometer": {
4144
- "displayName": "liters/km",
4145
- "unitPattern-count-one": "{0} L/km",
4146
- "unitPattern-count-other": "{0} L/km"
4147
- },
4148
- "consumption-liter-per-100kilometers": {
4149
- "displayName": "L/100 km",
4150
- "unitPattern-count-one": "{0} L/100 km",
4151
- "unitPattern-count-other": "{0} L/100 km"
4152
- },
4153
- "consumption-mile-per-gallon": {
4154
- "displayName": "miles/gal",
4155
- "unitPattern-count-one": "{0} mpg",
4156
- "unitPattern-count-other": "{0} mpg"
4157
- },
4158
- "consumption-mile-per-gallon-imperial": {
4159
- "displayName": "miles/gal Imp.",
4160
- "unitPattern-count-one": "{0} mpg Imp.",
4161
- "unitPattern-count-other": "{0} mpg Imp."
4162
- },
4163
- "digital-petabyte": {
4164
- "displayName": "PByte",
4165
- "unitPattern-count-one": "{0} PB",
4166
- "unitPattern-count-other": "{0} PB"
4167
- },
4168
- "digital-terabyte": {
4169
- "displayName": "TByte",
4170
- "unitPattern-count-one": "{0} TB",
4171
- "unitPattern-count-other": "{0} TB"
4172
- },
4173
- "digital-terabit": {
4174
- "displayName": "Tbit",
4175
- "unitPattern-count-one": "{0} Tb",
4176
- "unitPattern-count-other": "{0} Tb"
4177
- },
4178
- "digital-gigabyte": {
4179
- "displayName": "GByte",
4180
- "unitPattern-count-one": "{0} GB",
4181
- "unitPattern-count-other": "{0} GB"
4182
- },
4183
- "digital-gigabit": {
4184
- "displayName": "Gbit",
4185
- "unitPattern-count-one": "{0} Gb",
4186
- "unitPattern-count-other": "{0} Gb"
4187
- },
4188
- "digital-megabyte": {
4189
- "displayName": "MByte",
4190
- "unitPattern-count-one": "{0} MB",
4191
- "unitPattern-count-other": "{0} MB"
4192
- },
4193
- "digital-megabit": {
4194
- "displayName": "Mbit",
4195
- "unitPattern-count-one": "{0} Mb",
4196
- "unitPattern-count-other": "{0} Mb"
4197
- },
4198
- "digital-kilobyte": {
4199
- "displayName": "kByte",
4200
- "unitPattern-count-one": "{0} kB",
4201
- "unitPattern-count-other": "{0} kB"
4202
- },
4203
- "digital-kilobit": {
4204
- "displayName": "kbit",
4205
- "unitPattern-count-one": "{0} kb",
4206
- "unitPattern-count-other": "{0} kb"
4207
- },
4208
- "digital-byte": {
4209
- "displayName": "byte",
4210
- "unitPattern-count-one": "{0} byte",
4211
- "unitPattern-count-other": "{0} byte"
4212
- },
4213
- "digital-bit": {
4214
- "displayName": "bit",
4215
- "unitPattern-count-one": "{0} bit",
4216
- "unitPattern-count-other": "{0} bit"
4217
- },
4218
- "duration-century": {
4219
- "displayName": "c",
4220
- "unitPattern-count-one": "{0} c",
4221
- "unitPattern-count-other": "{0} c"
4222
- },
4223
- "duration-year": {
4224
- "displayName": "years",
4225
- "unitPattern-count-one": "{0} yr",
4226
- "unitPattern-count-other": "{0} yrs",
4227
- "perUnitPattern": "{0}/y"
4228
- },
4229
- "duration-month": {
4230
- "displayName": "months",
4231
- "unitPattern-count-one": "{0} mth",
4232
- "unitPattern-count-other": "{0} mths",
4233
- "perUnitPattern": "{0}/m"
4234
- },
4235
- "duration-week": {
4236
- "displayName": "weeks",
4237
- "unitPattern-count-one": "{0} wk",
4238
- "unitPattern-count-other": "{0} wks",
4239
- "perUnitPattern": "{0}/w"
4240
- },
4241
- "duration-day": {
4242
- "displayName": "days",
4243
- "unitPattern-count-one": "{0} day",
4244
- "unitPattern-count-other": "{0} days",
4245
- "perUnitPattern": "{0}/d"
4246
- },
4247
- "duration-hour": {
4248
- "displayName": "hours",
4249
- "unitPattern-count-one": "{0} hr",
4250
- "unitPattern-count-other": "{0} hr",
4251
- "perUnitPattern": "{0}/h"
4252
- },
4253
- "duration-minute": {
4254
- "displayName": "mins",
4255
- "unitPattern-count-one": "{0} min",
4256
- "unitPattern-count-other": "{0} min",
4257
- "perUnitPattern": "{0}/min"
4258
- },
4259
- "duration-second": {
4260
- "displayName": "secs",
4261
- "unitPattern-count-one": "{0} sec",
4262
- "unitPattern-count-other": "{0} sec",
4263
- "perUnitPattern": "{0}/s"
4264
- },
4265
- "duration-millisecond": {
4266
- "displayName": "millisecs",
4267
- "unitPattern-count-one": "{0} ms",
4268
- "unitPattern-count-other": "{0} ms"
4269
- },
4270
- "duration-microsecond": {
4271
- "displayName": "μsecs",
4272
- "unitPattern-count-one": "{0} μs",
4273
- "unitPattern-count-other": "{0} μs"
4274
- },
4275
- "duration-nanosecond": {
4276
- "displayName": "nanosecs",
4277
- "unitPattern-count-one": "{0} ns",
4278
- "unitPattern-count-other": "{0} ns"
4279
- },
4280
- "electric-ampere": {
4281
- "displayName": "amps",
4282
- "unitPattern-count-one": "{0} A",
4283
- "unitPattern-count-other": "{0} A"
4284
- },
4285
- "electric-milliampere": {
4286
- "displayName": "milliamps",
4287
- "unitPattern-count-one": "{0} mA",
4288
- "unitPattern-count-other": "{0} mA"
4289
- },
4290
- "electric-ohm": {
4291
- "displayName": "ohms",
4292
- "unitPattern-count-one": "{0} Ω",
4293
- "unitPattern-count-other": "{0} Ω"
4294
- },
4295
- "electric-volt": {
4296
- "displayName": "volts",
4297
- "unitPattern-count-one": "{0} V",
4298
- "unitPattern-count-other": "{0} V"
4299
- },
4300
- "energy-kilocalorie": {
4301
- "displayName": "kcal",
4302
- "unitPattern-count-one": "{0} kcal",
4303
- "unitPattern-count-other": "{0} kcal"
4304
- },
4305
- "energy-calorie": {
4306
- "displayName": "cal",
4307
- "unitPattern-count-one": "{0} cal",
4308
- "unitPattern-count-other": "{0} cal"
4309
- },
4310
- "energy-foodcalorie": {
4311
- "displayName": "Cal",
4312
- "unitPattern-count-one": "{0} Cal",
4313
- "unitPattern-count-other": "{0} Cal"
4314
- },
4315
- "energy-kilojoule": {
4316
- "displayName": "kilojoule",
4317
- "unitPattern-count-one": "{0} kJ",
4318
- "unitPattern-count-other": "{0} kJ"
4319
- },
4320
- "energy-joule": {
4321
- "displayName": "joules",
4322
- "unitPattern-count-one": "{0} J",
4323
- "unitPattern-count-other": "{0} J"
4324
- },
4325
- "energy-kilowatt-hour": {
4326
- "displayName": "kW-hour",
4327
- "unitPattern-count-one": "{0} kWh",
4328
- "unitPattern-count-other": "{0} kWh"
4329
- },
4330
- "energy-electronvolt": {
4331
- "displayName": "electronvolt",
4332
- "unitPattern-count-one": "{0} eV",
4333
- "unitPattern-count-other": "{0} eV"
4334
- },
4335
- "energy-british-thermal-unit": {
4336
- "displayName": "BTU",
4337
- "unitPattern-count-one": "{0} Btu",
4338
- "unitPattern-count-other": "{0} Btu"
4339
- },
4340
- "force-pound-force": {
4341
- "displayName": "pound-force",
4342
- "unitPattern-count-one": "{0} lbf",
4343
- "unitPattern-count-other": "{0} lbf"
4344
- },
4345
- "force-newton": {
4346
- "displayName": "newton",
4347
- "unitPattern-count-one": "{0} N",
4348
- "unitPattern-count-other": "{0} N"
4349
- },
4350
- "frequency-gigahertz": {
4351
- "displayName": "GHz",
4352
- "unitPattern-count-one": "{0} GHz",
4353
- "unitPattern-count-other": "{0} GHz"
4354
- },
4355
- "frequency-megahertz": {
4356
- "displayName": "MHz",
4357
- "unitPattern-count-one": "{0} MHz",
4358
- "unitPattern-count-other": "{0} MHz"
4359
- },
4360
- "frequency-kilohertz": {
4361
- "displayName": "kHz",
4362
- "unitPattern-count-one": "{0} kHz",
4363
- "unitPattern-count-other": "{0} kHz"
4364
- },
4365
- "frequency-hertz": {
4366
- "displayName": "Hz",
4367
- "unitPattern-count-one": "{0} Hz",
4368
- "unitPattern-count-other": "{0} Hz"
4369
- },
4370
- "length-kilometer": {
4371
- "displayName": "km",
4372
- "unitPattern-count-one": "{0} km",
4373
- "unitPattern-count-other": "{0} km",
4374
- "perUnitPattern": "{0}/km"
4375
- },
4376
- "length-meter": {
4377
- "displayName": "m",
4378
- "unitPattern-count-one": "{0} m",
4379
- "unitPattern-count-other": "{0} m",
4380
- "perUnitPattern": "{0}/m"
4381
- },
4382
- "length-decimeter": {
4383
- "displayName": "dm",
4384
- "unitPattern-count-one": "{0} dm",
4385
- "unitPattern-count-other": "{0} dm"
4386
- },
4387
- "length-centimeter": {
4388
- "displayName": "cm",
4389
- "unitPattern-count-one": "{0} cm",
4390
- "unitPattern-count-other": "{0} cm",
4391
- "perUnitPattern": "{0}/cm"
4392
- },
4393
- "length-millimeter": {
4394
- "displayName": "mm",
4395
- "unitPattern-count-one": "{0} mm",
4396
- "unitPattern-count-other": "{0} mm"
4397
- },
4398
- "length-micrometer": {
4399
- "displayName": "µmeters",
4400
- "unitPattern-count-one": "{0} µm",
4401
- "unitPattern-count-other": "{0} µm"
4402
- },
4403
- "length-nanometer": {
4404
- "displayName": "nm",
4405
- "unitPattern-count-one": "{0} nm",
4406
- "unitPattern-count-other": "{0} nm"
4407
- },
4408
- "length-picometer": {
4409
- "displayName": "pm",
4410
- "unitPattern-count-one": "{0} pm",
4411
- "unitPattern-count-other": "{0} pm"
4412
- },
4413
- "length-mile": {
4414
- "displayName": "miles",
4415
- "unitPattern-count-one": "{0} mi",
4416
- "unitPattern-count-other": "{0} mi"
4417
- },
4418
- "length-yard": {
4419
- "displayName": "yards",
4420
- "unitPattern-count-one": "{0} yd",
4421
- "unitPattern-count-other": "{0} yd"
4422
- },
4423
- "length-foot": {
4424
- "displayName": "feet",
4425
- "unitPattern-count-one": "{0} ft",
4426
- "unitPattern-count-other": "{0} ft",
4427
- "perUnitPattern": "{0}/ft"
4428
- },
4429
- "length-inch": {
4430
- "displayName": "inches",
4431
- "unitPattern-count-one": "{0} in",
4432
- "unitPattern-count-other": "{0} in",
4433
- "perUnitPattern": "{0}/in"
4434
- },
4435
- "length-parsec": {
4436
- "displayName": "parsecs",
4437
- "unitPattern-count-one": "{0} pc",
4438
- "unitPattern-count-other": "{0} pc"
4439
- },
4440
- "length-light-year": {
4441
- "displayName": "light yrs",
4442
- "unitPattern-count-one": "{0} ly",
4443
- "unitPattern-count-other": "{0} ly"
4444
- },
4445
- "length-astronomical-unit": {
4446
- "displayName": "au",
4447
- "unitPattern-count-one": "{0} au",
4448
- "unitPattern-count-other": "{0} au"
4449
- },
4450
- "length-furlong": {
4451
- "displayName": "furlongs",
4452
- "unitPattern-count-one": "{0} fur",
4453
- "unitPattern-count-other": "{0} fur"
4454
- },
4455
- "length-fathom": {
4456
- "displayName": "fathoms",
4457
- "unitPattern-count-one": "{0} fth",
4458
- "unitPattern-count-other": "{0} fth"
4459
- },
4460
- "length-nautical-mile": {
4461
- "displayName": "nmi",
4462
- "unitPattern-count-one": "{0} nmi",
4463
- "unitPattern-count-other": "{0} nmi"
4464
- },
4465
- "length-mile-scandinavian": {
4466
- "displayName": "smi",
4467
- "unitPattern-count-one": "{0} smi",
4468
- "unitPattern-count-other": "{0} smi"
4469
- },
4470
- "length-point": {
4471
- "displayName": "points",
4472
- "unitPattern-count-one": "{0} pt",
4473
- "unitPattern-count-other": "{0} pt"
4474
- },
4475
- "length-solar-radius": {
4476
- "displayName": "solar radii",
4477
- "unitPattern-count-one": "{0} R☉",
4478
- "unitPattern-count-other": "{0} R☉"
4479
- },
4480
- "light-lux": {
4481
- "displayName": "lux",
4482
- "unitPattern-count-one": "{0} lx",
4483
- "unitPattern-count-other": "{0} lx"
4484
- },
4485
- "light-solar-luminosity": {
4486
- "displayName": "solar luminosities",
4487
- "unitPattern-count-one": "{0} L☉",
4488
- "unitPattern-count-other": "{0} L☉"
4489
- },
4490
- "mass-metric-ton": {
4491
- "displayName": "t",
4492
- "unitPattern-count-one": "{0} t",
4493
- "unitPattern-count-other": "{0} t"
4494
- },
4495
- "mass-kilogram": {
4496
- "displayName": "kg",
4497
- "unitPattern-count-one": "{0} kg",
4498
- "unitPattern-count-other": "{0} kg",
4499
- "perUnitPattern": "{0}/kg"
4500
- },
4501
- "mass-gram": {
4502
- "displayName": "grams",
4503
- "unitPattern-count-one": "{0} g",
4504
- "unitPattern-count-other": "{0} g",
4505
- "perUnitPattern": "{0}/g"
4506
- },
4507
- "mass-milligram": {
4508
- "displayName": "mg",
4509
- "unitPattern-count-one": "{0} mg",
4510
- "unitPattern-count-other": "{0} mg"
4511
- },
4512
- "mass-microgram": {
4513
- "displayName": "µg",
4514
- "unitPattern-count-one": "{0} µg",
4515
- "unitPattern-count-other": "{0} µg"
4516
- },
4517
- "mass-ton": {
4518
- "displayName": "tons",
4519
- "unitPattern-count-one": "{0} tn",
4520
- "unitPattern-count-other": "{0} tn"
4521
- },
4522
- "mass-stone": {
4523
- "displayName": "stones",
4524
- "unitPattern-count-one": "{0} st",
4525
- "unitPattern-count-other": "{0} st"
4526
- },
4527
- "mass-pound": {
4528
- "displayName": "pounds",
4529
- "unitPattern-count-one": "{0} lb",
4530
- "unitPattern-count-other": "{0} lb",
4531
- "perUnitPattern": "{0}/lb"
4532
- },
4533
- "mass-ounce": {
4534
- "displayName": "oz",
4535
- "unitPattern-count-one": "{0} oz",
4536
- "unitPattern-count-other": "{0} oz",
4537
- "perUnitPattern": "{0}/oz"
4538
- },
4539
- "mass-ounce-troy": {
4540
- "displayName": "oz troy",
4541
- "unitPattern-count-one": "{0} oz t",
4542
- "unitPattern-count-other": "{0} oz t"
4543
- },
4544
- "mass-carat": {
4545
- "displayName": "carats",
4546
- "unitPattern-count-one": "{0} CD",
4547
- "unitPattern-count-other": "{0} CD"
4548
- },
4549
- "mass-dalton": {
4550
- "displayName": "daltons",
4551
- "unitPattern-count-one": "{0} Da",
4552
- "unitPattern-count-other": "{0} Da"
4553
- },
4554
- "mass-earth-mass": {
4555
- "displayName": "Earth masses",
4556
- "unitPattern-count-one": "{0} M⊕",
4557
- "unitPattern-count-other": "{0} M⊕"
4558
- },
4559
- "mass-solar-mass": {
4560
- "displayName": "solar masses",
4561
- "unitPattern-count-one": "{0} M☉",
4562
- "unitPattern-count-other": "{0} M☉"
4563
- },
4564
- "power-gigawatt": {
4565
- "displayName": "GW",
4566
- "unitPattern-count-one": "{0} GW",
4567
- "unitPattern-count-other": "{0} GW"
4568
- },
4569
- "power-megawatt": {
4570
- "displayName": "MW",
4571
- "unitPattern-count-one": "{0} MW",
4572
- "unitPattern-count-other": "{0} MW"
4573
- },
4574
- "power-kilowatt": {
4575
- "displayName": "kW",
4576
- "unitPattern-count-one": "{0} kW",
4577
- "unitPattern-count-other": "{0} kW"
4578
- },
4579
- "power-watt": {
4580
- "displayName": "watts",
4581
- "unitPattern-count-one": "{0} W",
4582
- "unitPattern-count-other": "{0} W"
4583
- },
4584
- "power-milliwatt": {
4585
- "displayName": "mW",
4586
- "unitPattern-count-one": "{0} mW",
4587
- "unitPattern-count-other": "{0} mW"
4588
- },
4589
- "power-horsepower": {
4590
- "displayName": "hp",
4591
- "unitPattern-count-one": "{0} hp",
4592
- "unitPattern-count-other": "{0} hp"
4593
- },
4594
- "pressure-hectopascal": {
4595
- "displayName": "hPa",
4596
- "unitPattern-count-one": "{0} hPa",
4597
- "unitPattern-count-other": "{0} hPa"
4598
- },
4599
- "pressure-millimeter-of-mercury": {
4600
- "displayName": "mmHg",
4601
- "unitPattern-count-one": "{0} mmHg",
4602
- "unitPattern-count-other": "{0} mmHg"
4603
- },
4604
- "pressure-pound-per-square-inch": {
4605
- "displayName": "psi",
4606
- "unitPattern-count-one": "{0} psi",
4607
- "unitPattern-count-other": "{0} psi"
4608
- },
4609
- "pressure-inch-hg": {
4610
- "displayName": "inHg",
4611
- "unitPattern-count-one": "{0} inHg",
4612
- "unitPattern-count-other": "{0} inHg"
4613
- },
4614
- "pressure-millibar": {
4615
- "displayName": "mbar",
4616
- "unitPattern-count-one": "{0} mbar",
4617
- "unitPattern-count-other": "{0} mbar"
4618
- },
4619
- "pressure-atmosphere": {
4620
- "displayName": "atm",
4621
- "unitPattern-count-one": "{0} atm",
4622
- "unitPattern-count-other": "{0} atm"
4623
- },
4624
- "pressure-kilopascal": {
4625
- "displayName": "kPa",
4626
- "unitPattern-count-one": "{0} kPa",
4627
- "unitPattern-count-other": "{0} kPa"
4628
- },
4629
- "pressure-megapascal": {
4630
- "displayName": "MPa",
4631
- "unitPattern-count-one": "{0} MPa",
4632
- "unitPattern-count-other": "{0} MPa"
4633
- },
4634
- "speed-kilometer-per-hour": {
4635
- "displayName": "km/hour",
4636
- "unitPattern-count-one": "{0} km/h",
4637
- "unitPattern-count-other": "{0} km/h"
4638
- },
4639
- "speed-meter-per-second": {
4640
- "displayName": "meters/sec",
4641
- "unitPattern-count-one": "{0} m/s",
4642
- "unitPattern-count-other": "{0} m/s"
4643
- },
4644
- "speed-mile-per-hour": {
4645
- "displayName": "miles/hour",
4646
- "unitPattern-count-one": "{0} mph",
4647
- "unitPattern-count-other": "{0} mph"
4648
- },
4649
- "speed-knot": {
4650
- "displayName": "kn",
4651
- "unitPattern-count-one": "{0} kn",
4652
- "unitPattern-count-other": "{0} kn"
4653
- },
4654
- "temperature-generic": {
4655
- "displayName": "°",
4656
- "unitPattern-count-other": "{0}°"
4657
- },
4658
- "temperature-celsius": {
4659
- "displayName": "deg. C",
4660
- "unitPattern-count-one": "{0}°C",
4661
- "unitPattern-count-other": "{0}°C"
4662
- },
4663
- "temperature-fahrenheit": {
4664
- "displayName": "deg. F",
4665
- "unitPattern-count-one": "{0}°F",
4666
- "unitPattern-count-other": "{0}°F"
4667
- },
4668
- "temperature-kelvin": {
4669
- "displayName": "K",
4670
- "unitPattern-count-one": "{0} K",
4671
- "unitPattern-count-other": "{0} K"
4672
- },
4673
- "torque-pound-foot": {
4674
- "displayName": "lbf⋅ft",
4675
- "unitPattern-count-one": "{0} lbf⋅ft",
4676
- "unitPattern-count-other": "{0} lbf⋅ft"
4677
- },
4678
- "torque-newton-meter": {
4679
- "displayName": "N⋅m",
4680
- "unitPattern-count-one": "{0} N⋅m",
4681
- "unitPattern-count-other": "{0} N⋅m"
4682
- },
4683
- "volume-cubic-kilometer": {
4684
- "displayName": "km³",
4685
- "unitPattern-count-one": "{0} km³",
4686
- "unitPattern-count-other": "{0} km³"
4687
- },
4688
- "volume-cubic-meter": {
4689
- "displayName": "m³",
4690
- "unitPattern-count-one": "{0} m³",
4691
- "unitPattern-count-other": "{0} m³",
4692
- "perUnitPattern": "{0}/m³"
4693
- },
4694
- "volume-cubic-centimeter": {
4695
- "displayName": "cm³",
4696
- "unitPattern-count-one": "{0} cm³",
4697
- "unitPattern-count-other": "{0} cm³",
4698
- "perUnitPattern": "{0}/cm³"
4699
- },
4700
- "volume-cubic-mile": {
4701
- "displayName": "mi³",
4702
- "unitPattern-count-one": "{0} mi³",
4703
- "unitPattern-count-other": "{0} mi³"
4704
- },
4705
- "volume-cubic-yard": {
4706
- "displayName": "yards³",
4707
- "unitPattern-count-one": "{0} yd³",
4708
- "unitPattern-count-other": "{0} yd³"
4709
- },
4710
- "volume-cubic-foot": {
4711
- "displayName": "feet³",
4712
- "unitPattern-count-one": "{0} ft³",
4713
- "unitPattern-count-other": "{0} ft³"
4714
- },
4715
- "volume-cubic-inch": {
4716
- "displayName": "inches³",
4717
- "unitPattern-count-one": "{0} in³",
4718
- "unitPattern-count-other": "{0} in³"
4719
- },
4720
- "volume-megaliter": {
4721
- "displayName": "ML",
4722
- "unitPattern-count-one": "{0} ML",
4723
- "unitPattern-count-other": "{0} ML"
4724
- },
4725
- "volume-hectoliter": {
4726
- "displayName": "hL",
4727
- "unitPattern-count-one": "{0} hL",
4728
- "unitPattern-count-other": "{0} hL"
4729
- },
4730
- "volume-liter": {
4731
- "displayName": "liters",
4732
- "unitPattern-count-one": "{0} L",
4733
- "unitPattern-count-other": "{0} L",
4734
- "perUnitPattern": "{0}/L"
4735
- },
4736
- "volume-deciliter": {
4737
- "displayName": "dL",
4738
- "unitPattern-count-one": "{0} dL",
4739
- "unitPattern-count-other": "{0} dL"
4740
- },
4741
- "volume-centiliter": {
4742
- "displayName": "cL",
4743
- "unitPattern-count-one": "{0} cL",
4744
- "unitPattern-count-other": "{0} cL"
4745
- },
4746
- "volume-milliliter": {
4747
- "displayName": "mL",
4748
- "unitPattern-count-one": "{0} mL",
4749
- "unitPattern-count-other": "{0} mL"
4750
- },
4751
- "volume-pint-metric": {
4752
- "displayName": "mpt",
4753
- "unitPattern-count-one": "{0} mpt",
4754
- "unitPattern-count-other": "{0} mpt"
4755
- },
4756
- "volume-cup-metric": {
4757
- "displayName": "mcup",
4758
- "unitPattern-count-one": "{0} mc",
4759
- "unitPattern-count-other": "{0} mc"
4760
- },
4761
- "volume-acre-foot": {
4762
- "displayName": "acre ft",
4763
- "unitPattern-count-one": "{0} ac ft",
4764
- "unitPattern-count-other": "{0} ac ft"
4765
- },
4766
- "volume-bushel": {
4767
- "displayName": "bushels",
4768
- "unitPattern-count-one": "{0} bu",
4769
- "unitPattern-count-other": "{0} bu"
4770
- },
4771
- "volume-gallon": {
4772
- "displayName": "gal",
4773
- "unitPattern-count-one": "{0} gal",
4774
- "unitPattern-count-other": "{0} gal",
4775
- "perUnitPattern": "{0}/gal US"
4776
- },
4777
- "volume-gallon-imperial": {
4778
- "displayName": "Imp. gal",
4779
- "unitPattern-count-one": "{0} gal Imp.",
4780
- "unitPattern-count-other": "{0} gal Imp.",
4781
- "perUnitPattern": "{0}/gal Imp."
4782
- },
4783
- "volume-quart": {
4784
- "displayName": "qts",
4785
- "unitPattern-count-one": "{0} qt",
4786
- "unitPattern-count-other": "{0} qt"
4787
- },
4788
- "volume-pint": {
4789
- "displayName": "pints",
4790
- "unitPattern-count-one": "{0} pt",
4791
- "unitPattern-count-other": "{0} pt"
4792
- },
4793
- "volume-cup": {
4794
- "displayName": "cups",
4795
- "unitPattern-count-one": "{0} c",
4796
- "unitPattern-count-other": "{0} c"
4797
- },
4798
- "volume-fluid-ounce": {
4799
- "displayName": "fl oz",
4800
- "unitPattern-count-one": "{0} fl oz",
4801
- "unitPattern-count-other": "{0} fl oz"
4802
- },
4803
- "volume-fluid-ounce-imperial": {
4804
- "displayName": "Imp. fl oz",
4805
- "unitPattern-count-one": "{0} fl oz Imp.",
4806
- "unitPattern-count-other": "{0} fl oz Imp."
4807
- },
4808
- "volume-tablespoon": {
4809
- "displayName": "tbsp",
4810
- "unitPattern-count-one": "{0} tbsp",
4811
- "unitPattern-count-other": "{0} tbsp"
4812
- },
4813
- "volume-teaspoon": {
4814
- "displayName": "tsp",
4815
- "unitPattern-count-one": "{0} tsp",
4816
- "unitPattern-count-other": "{0} tsp"
4817
- },
4818
- "volume-barrel": {
4819
- "displayName": "barrel",
4820
- "unitPattern-count-one": "{0} bbl",
4821
- "unitPattern-count-other": "{0} bbl"
4822
- },
4823
- "coordinateUnit": {
4824
- "displayName": "direction",
4825
- "east": "{0} E",
4826
- "north": "{0} N",
4827
- "south": "{0} S",
4828
- "west": "{0} W"
4829
- }
4830
- }
4831
- },
4832
- "lenient-scope-number": {
4833
- "minusSign": "-‐‒–⁻₋−➖﹣-",
4834
- "commaSign": ",،٫、︐︑﹐﹑,、",
4835
- "plusSign": "+⁺₊➕﬩﹢+"
4836
- },
4837
- "currencyFormat-sap-short": {
4838
- "1000-one": "0K ¤",
4839
- "1000-other": "0K ¤",
4840
- "10000-one": "00K ¤",
4841
- "10000-other": "00K ¤",
4842
- "100000-one": "000K ¤",
4843
- "100000-other": "000K ¤",
4844
- "1000000-one": "0M ¤",
4845
- "1000000-other": "0M ¤",
4846
- "10000000-one": "00M ¤",
4847
- "10000000-other": "00M ¤",
4848
- "100000000-one": "000M ¤",
4849
- "100000000-other": "000M ¤",
4850
- "1000000000-one": "0B ¤",
4851
- "1000000000-other": "0B ¤",
4852
- "10000000000-one": "00B ¤",
4853
- "10000000000-other": "00B ¤",
4854
- "100000000000-one": "000B ¤",
4855
- "100000000000-other": "000B ¤",
4856
- "1000000000000-one": "0T ¤",
4857
- "1000000000000-other": "0T ¤",
4858
- "10000000000000-one": "00T ¤",
4859
- "10000000000000-other": "00T ¤",
4860
- "100000000000000-one": "000T ¤",
4861
- "100000000000000-other": "000T ¤"
4862
- },
4863
- "currencyDigits": {
4864
- "ADP": 0,
4865
- "AFN": 0,
4866
- "ALL": 0,
4867
- "BHD": 3,
4868
- "BIF": 0,
4869
- "BYR": 0,
4870
- "CLF": 4,
4871
- "CLP": 0,
4872
- "DEFAULT": 2,
4873
- "DJF": 0,
4874
- "ESP": 0,
4875
- "GNF": 0,
4876
- "HUF": 0,
4877
- "IQD": 0,
4878
- "IRR": 0,
4879
- "ISK": 0,
4880
- "ITL": 0,
4881
- "JOD": 3,
4882
- "JPY": 0,
4883
- "KMF": 0,
4884
- "KPW": 0,
4885
- "KRW": 0,
4886
- "KWD": 3,
4887
- "LAK": 0,
4888
- "LBP": 0,
4889
- "LUF": 0,
4890
- "LYD": 3,
4891
- "MGA": 0,
4892
- "MGF": 0,
4893
- "MMK": 0,
4894
- "MRO": 0,
4895
- "OMR": 3,
4896
- "PYG": 0,
4897
- "RSD": 0,
4898
- "RWF": 0,
4899
- "SLL": 0,
4900
- "SOS": 0,
4901
- "STD": 0,
4902
- "SYP": 0,
4903
- "TMM": 0,
4904
- "TND": 3,
4905
- "TRL": 0,
4906
- "TWD": 0,
4907
- "UGX": 0,
4908
- "UYI": 0,
4909
- "UYW": 4,
4910
- "VND": 0,
4911
- "VUV": 0,
4912
- "XAF": 0,
4913
- "XOF": 0,
4914
- "XPF": 0,
4915
- "YER": 0,
4916
- "ZMK": 0,
4917
- "ZWD": 0
4918
- },
4919
- "plurals": {
4920
- "one": "i = 1 and v = 0"
4921
- },
4922
- "weekData-minDays": 1,
4923
- "weekData-firstDay": 0,
4924
- "weekData-weekendStart": 6,
4925
- "weekData-weekendEnd": 0,
4926
- "timeData": {
4927
- "_allowed": "h hb H hB",
4928
- "_preferred": "h"
4929
- },
4930
- "eras-gregorian": {
4931
- "0": {
4932
- "_end": "0-12-31"
4933
- },
4934
- "1": {
4935
- "_start": "1-01-01"
4936
- }
4937
- },
4938
- "eras-islamic": {
4939
- "0": {
4940
- "_start": "622-7-15"
4941
- }
4942
- },
4943
- "eras-persian": {
4944
- "0": {
4945
- "_start": "622-01-01"
4946
- }
4947
- },
4948
- "eras-buddhist": {
4949
- "0": {
4950
- "_start": "-542-01-01"
4951
- }
4952
- },
4953
- "eras-japanese": {
4954
- "232": {
4955
- "_start": "1868-9-8"
4956
- },
4957
- "233": {
4958
- "_start": "1912-7-30"
4959
- },
4960
- "234": {
4961
- "_start": "1926-12-25"
4962
- },
4963
- "235": {
4964
- "_start": "1989-1-8"
4965
- },
4966
- "236": {
4967
- "_start": "2019-5-1"
4968
- }
4969
- }
4970
- }