@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,4950 +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": "abcaso",
6
- "ace": "accinese",
7
- "ach": "acioli",
8
- "ada": "adangme",
9
- "ady": "adyghe",
10
- "ae": "avestan",
11
- "aeb": "arabo tunisino",
12
- "af": "afrikaans",
13
- "afh": "afrihili",
14
- "agq": "aghem",
15
- "ain": "ainu",
16
- "ak": "akan",
17
- "akk": "accado",
18
- "akz": "alabama",
19
- "ale": "aleuto",
20
- "aln": "albanese ghego",
21
- "alt": "altai meridionale",
22
- "am": "amarico",
23
- "an": "aragonese",
24
- "ang": "inglese antico",
25
- "anp": "angika",
26
- "ar": "arabo",
27
- "ar_001": "arabo moderno standard",
28
- "arc": "aramaico",
29
- "arn": "mapudungun",
30
- "aro": "araona",
31
- "arp": "arapaho",
32
- "arq": "arabo algerino",
33
- "ars": "arabo najd",
34
- "arw": "aruaco",
35
- "ary": "arabo marocchino",
36
- "arz": "arabo egiziano",
37
- "as": "assamese",
38
- "asa": "asu",
39
- "ase": "lingua dei segni americana",
40
- "ast": "asturiano",
41
- "av": "avaro",
42
- "avk": "kotava",
43
- "awa": "awadhi",
44
- "ay": "aymara",
45
- "az": "azerbaigiano",
46
- "az_alt-short": "azero",
47
- "ba": "baschiro",
48
- "bal": "beluci",
49
- "ban": "balinese",
50
- "bar": "bavarese",
51
- "bas": "basa",
52
- "bax": "bamun",
53
- "bbc": "batak toba",
54
- "bbj": "ghomala",
55
- "be": "bielorusso",
56
- "bej": "begia",
57
- "bem": "wemba",
58
- "bew": "betawi",
59
- "bez": "bena",
60
- "bfd": "bafut",
61
- "bfq": "badaga",
62
- "bg": "bulgaro",
63
- "bgn": "beluci occidentale",
64
- "bho": "bhojpuri",
65
- "bi": "bislama",
66
- "bik": "bicol",
67
- "bin": "bini",
68
- "bjn": "banjar",
69
- "bkm": "kom",
70
- "bla": "siksika",
71
- "bm": "bambara",
72
- "bn": "bengalese",
73
- "bo": "tibetano",
74
- "bpy": "bishnupriya",
75
- "bqi": "bakhtiari",
76
- "br": "bretone",
77
- "bra": "braj",
78
- "brh": "brahui",
79
- "brx": "bodo",
80
- "bs": "bosniaco",
81
- "bss": "akoose",
82
- "bua": "buriat",
83
- "bug": "bugi",
84
- "bum": "bulu",
85
- "byn": "blin",
86
- "byv": "medumba",
87
- "ca": "catalano",
88
- "cad": "caddo",
89
- "car": "caribico",
90
- "cay": "cayuga",
91
- "cch": "atsam",
92
- "ccp": "chakma",
93
- "ce": "ceceno",
94
- "ceb": "cebuano",
95
- "cgg": "chiga",
96
- "ch": "chamorro",
97
- "chb": "chibcha",
98
- "chg": "ciagataico",
99
- "chk": "chuukese",
100
- "chm": "mari",
101
- "chn": "gergo chinook",
102
- "cho": "choctaw",
103
- "chp": "chipewyan",
104
- "chr": "cherokee",
105
- "chy": "cheyenne",
106
- "ckb": "curdo sorani",
107
- "co": "corso",
108
- "cop": "copto",
109
- "cps": "capiznon",
110
- "cr": "cree",
111
- "crh": "turco crimeo",
112
- "crs": "creolo delle Seychelles",
113
- "cs": "ceco",
114
- "csb": "kashubian",
115
- "cu": "slavo della Chiesa",
116
- "cv": "ciuvascio",
117
- "cy": "gallese",
118
- "da": "danese",
119
- "dak": "dakota",
120
- "dar": "dargwa",
121
- "dav": "taita",
122
- "de": "tedesco",
123
- "de_AT": "tedesco austriaco",
124
- "de_CH": "alto tedesco svizzero",
125
- "del": "delaware",
126
- "den": "slave",
127
- "dgr": "dogrib",
128
- "din": "dinca",
129
- "dje": "zarma",
130
- "doi": "dogri",
131
- "dsb": "basso sorabo",
132
- "dtp": "dusun centrale",
133
- "dua": "duala",
134
- "dum": "olandese medio",
135
- "dv": "divehi",
136
- "dyo": "jola-fony",
137
- "dyu": "diula",
138
- "dz": "dzongkha",
139
- "dzg": "dazaga",
140
- "ebu": "embu",
141
- "ee": "ewe",
142
- "efi": "efik",
143
- "egl": "emiliano",
144
- "egy": "egiziano antico",
145
- "eka": "ekajuka",
146
- "el": "greco",
147
- "elx": "elamitico",
148
- "en": "inglese",
149
- "en_AU": "inglese australiano",
150
- "en_CA": "inglese canadese",
151
- "en_GB": "inglese britannico",
152
- "en_GB-alt-short": "inglese (GB)",
153
- "en_US": "inglese americano",
154
- "en_US-alt-short": "inglese (USA)",
155
- "enm": "inglese medio",
156
- "eo": "esperanto",
157
- "es": "spagnolo",
158
- "es_419": "spagnolo latinoamericano",
159
- "es_ES": "spagnolo europeo",
160
- "es_MX": "spagnolo messicano",
161
- "esu": "yupik centrale",
162
- "et": "estone",
163
- "eu": "basco",
164
- "ewo": "ewondo",
165
- "ext": "estremegno",
166
- "fa": "persiano",
167
- "fan": "fang",
168
- "fat": "fanti",
169
- "ff": "fulah",
170
- "fi": "finlandese",
171
- "fil": "filippino",
172
- "fit": "finlandese del Tornedalen",
173
- "fj": "figiano",
174
- "fo": "faroese",
175
- "fon": "fon",
176
- "fr": "francese",
177
- "fr_CA": "francese canadese",
178
- "fr_CH": "francese svizzero",
179
- "frc": "francese cajun",
180
- "frm": "francese medio",
181
- "fro": "francese antico",
182
- "frp": "francoprovenzale",
183
- "frr": "frisone settentrionale",
184
- "frs": "frisone orientale",
185
- "fur": "friulano",
186
- "fy": "frisone occidentale",
187
- "ga": "irlandese",
188
- "gaa": "ga",
189
- "gag": "gagauzo",
190
- "gan": "gan",
191
- "gay": "gayo",
192
- "gba": "gbaya",
193
- "gbz": "dari zoroastriano",
194
- "gd": "gaelico scozzese",
195
- "gez": "geez",
196
- "gil": "gilbertese",
197
- "gl": "galiziano",
198
- "glk": "gilaki",
199
- "gmh": "tedesco medio alto",
200
- "gn": "guaraní",
201
- "goh": "tedesco antico alto",
202
- "gom": "konkani goano",
203
- "gon": "gondi",
204
- "gor": "gorontalo",
205
- "got": "gotico",
206
- "grb": "grebo",
207
- "grc": "greco antico",
208
- "gsw": "tedesco svizzero",
209
- "gu": "gujarati",
210
- "guc": "wayuu",
211
- "guz": "gusii",
212
- "gv": "mannese",
213
- "gwi": "gwichʼin",
214
- "ha": "hausa",
215
- "hai": "haida",
216
- "hak": "hakka",
217
- "haw": "hawaiano",
218
- "he": "ebraico",
219
- "hi": "hindi",
220
- "hif": "hindi figiano",
221
- "hil": "ilongo",
222
- "hit": "hittite",
223
- "hmn": "hmong",
224
- "ho": "hiri motu",
225
- "hr": "croato",
226
- "hsb": "alto sorabo",
227
- "hsn": "xiang",
228
- "ht": "haitiano",
229
- "hu": "ungherese",
230
- "hup": "hupa",
231
- "hy": "armeno",
232
- "hz": "herero",
233
- "ia": "interlingua",
234
- "iba": "iban",
235
- "ibb": "ibibio",
236
- "id": "indonesiano",
237
- "ie": "interlingue",
238
- "ig": "igbo",
239
- "ii": "sichuan yi",
240
- "ik": "inupiak",
241
- "ilo": "ilocano",
242
- "inh": "ingush",
243
- "io": "ido",
244
- "is": "islandese",
245
- "it": "italiano",
246
- "iu": "inuktitut",
247
- "izh": "ingrico",
248
- "ja": "giapponese",
249
- "jam": "creolo giamaicano",
250
- "jbo": "lojban",
251
- "jgo": "ngamambo",
252
- "jmc": "machame",
253
- "jpr": "giudeo persiano",
254
- "jrb": "giudeo arabo",
255
- "jut": "jutlandico",
256
- "jv": "giavanese",
257
- "ka": "georgiano",
258
- "kaa": "kara-kalpak",
259
- "kab": "cabilo",
260
- "kac": "kachin",
261
- "kaj": "kai",
262
- "kam": "kamba",
263
- "kaw": "kawi",
264
- "kbd": "cabardino",
265
- "kbl": "kanembu",
266
- "kcg": "tyap",
267
- "kde": "makonde",
268
- "kea": "capoverdiano",
269
- "kfo": "koro",
270
- "kg": "kongo",
271
- "kgp": "kaingang",
272
- "kha": "khasi",
273
- "kho": "khotanese",
274
- "khq": "koyra chiini",
275
- "khw": "khowar",
276
- "ki": "kikuyu",
277
- "kiu": "kirmanjki",
278
- "kj": "kuanyama",
279
- "kk": "kazako",
280
- "kkj": "kako",
281
- "kl": "groenlandese",
282
- "kln": "kalenjin",
283
- "km": "khmer",
284
- "kmb": "kimbundu",
285
- "kn": "kannada",
286
- "ko": "coreano",
287
- "koi": "permiaco",
288
- "kok": "konkani",
289
- "kos": "kosraean",
290
- "kpe": "kpelle",
291
- "kr": "kanuri",
292
- "krc": "karachay-Balkar",
293
- "krl": "careliano",
294
- "kru": "kurukh",
295
- "ks": "kashmiri",
296
- "ksb": "shambala",
297
- "ksf": "bafia",
298
- "ksh": "coloniese",
299
- "ku": "curdo",
300
- "kum": "kumyk",
301
- "kut": "kutenai",
302
- "kv": "komi",
303
- "kw": "cornico",
304
- "ky": "kirghiso",
305
- "la": "latino",
306
- "lad": "giudeo-spagnolo",
307
- "lag": "langi",
308
- "lah": "lahnda",
309
- "lam": "lamba",
310
- "lb": "lussemburghese",
311
- "lez": "lesgo",
312
- "lfn": "Lingua Franca Nova",
313
- "lg": "ganda",
314
- "li": "limburghese",
315
- "lij": "ligure",
316
- "liv": "livone",
317
- "lkt": "lakota",
318
- "lmo": "lombardo",
319
- "ln": "lingala",
320
- "lo": "lao",
321
- "lol": "lolo bantu",
322
- "lou": "creolo della Louisiana",
323
- "loz": "lozi",
324
- "lrc": "luri settentrionale",
325
- "lt": "lituano",
326
- "ltg": "letgallo",
327
- "lu": "luba-katanga",
328
- "lua": "luba-lulua",
329
- "lui": "luiseno",
330
- "lun": "lunda",
331
- "luo": "luo",
332
- "lus": "lushai",
333
- "luy": "luyia",
334
- "lv": "lettone",
335
- "lzh": "cinese classico",
336
- "lzz": "laz",
337
- "mad": "madurese",
338
- "maf": "mafa",
339
- "mag": "magahi",
340
- "mai": "maithili",
341
- "mak": "makasar",
342
- "man": "mandingo",
343
- "mas": "masai",
344
- "mde": "maba",
345
- "mdf": "moksha",
346
- "mdr": "mandar",
347
- "men": "mende",
348
- "mer": "meru",
349
- "mfe": "creolo mauriziano",
350
- "mg": "malgascio",
351
- "mga": "irlandese medio",
352
- "mgh": "makhuwa-meetto",
353
- "mgo": "meta’",
354
- "mh": "marshallese",
355
- "mi": "maori",
356
- "mic": "micmac",
357
- "min": "menangkabau",
358
- "mk": "macedone",
359
- "ml": "malayalam",
360
- "mn": "mongolo",
361
- "mnc": "manchu",
362
- "mni": "manipuri",
363
- "moh": "mohawk",
364
- "mos": "mossi",
365
- "mr": "marathi",
366
- "mrj": "mari occidentale",
367
- "ms": "malese",
368
- "mt": "maltese",
369
- "mua": "mundang",
370
- "mul": "multilingua",
371
- "mus": "creek",
372
- "mwl": "mirandese",
373
- "mwr": "marwari",
374
- "mwv": "mentawai",
375
- "my": "birmano",
376
- "mye": "myene",
377
- "myv": "erzya",
378
- "mzn": "mazandarani",
379
- "na": "nauru",
380
- "nan": "min nan",
381
- "nap": "napoletano",
382
- "naq": "nama",
383
- "nb": "norvegese bokmål",
384
- "nd": "ndebele del nord",
385
- "nds": "basso tedesco",
386
- "nds_NL": "basso tedesco olandese",
387
- "ne": "nepalese",
388
- "new": "newari",
389
- "ng": "ndonga",
390
- "nia": "nias",
391
- "niu": "niue",
392
- "njo": "ao",
393
- "nl": "olandese",
394
- "nl_BE": "fiammingo",
395
- "nmg": "kwasio",
396
- "nn": "norvegese nynorsk",
397
- "nnh": "ngiemboon",
398
- "no": "norvegese",
399
- "nog": "nogai",
400
- "non": "norse antico",
401
- "nov": "novial",
402
- "nqo": "n’ko",
403
- "nr": "ndebele del sud",
404
- "nso": "sotho del nord",
405
- "nus": "nuer",
406
- "nv": "navajo",
407
- "nwc": "newari classico",
408
- "ny": "nyanja",
409
- "nym": "nyamwezi",
410
- "nyn": "nyankole",
411
- "nyo": "nyoro",
412
- "nzi": "nzima",
413
- "oc": "occitano",
414
- "oj": "ojibwa",
415
- "om": "oromo",
416
- "or": "odia",
417
- "os": "ossetico",
418
- "osa": "osage",
419
- "ota": "turco ottomano",
420
- "pa": "punjabi",
421
- "pag": "pangasinan",
422
- "pal": "pahlavi",
423
- "pam": "pampanga",
424
- "pap": "papiamento",
425
- "pau": "palau",
426
- "pcd": "piccardo",
427
- "pcm": "pidgin nigeriano",
428
- "pdc": "tedesco della Pennsylvania",
429
- "peo": "persiano antico",
430
- "pfl": "tedesco palatino",
431
- "phn": "fenicio",
432
- "pi": "pali",
433
- "pl": "polacco",
434
- "pms": "piemontese",
435
- "pnt": "pontico",
436
- "pon": "ponape",
437
- "prg": "prussiano",
438
- "pro": "provenzale antico",
439
- "ps": "pashto",
440
- "pt": "portoghese",
441
- "pt_BR": "portoghese brasiliano",
442
- "pt_PT": "portoghese europeo",
443
- "qu": "quechua",
444
- "quc": "k’iche’",
445
- "qug": "quechua dell’altopiano del Chimborazo",
446
- "raj": "rajasthani",
447
- "rap": "rapanui",
448
- "rar": "rarotonga",
449
- "rgn": "romagnolo",
450
- "rif": "tarifit",
451
- "rm": "romancio",
452
- "rn": "rundi",
453
- "ro": "rumeno",
454
- "ro_MD": "moldavo",
455
- "rof": "rombo",
456
- "rom": "romani",
457
- "root": "root",
458
- "rtm": "rotumano",
459
- "ru": "russo",
460
- "rue": "ruteno",
461
- "rug": "roviana",
462
- "rup": "arumeno",
463
- "rw": "kinyarwanda",
464
- "rwk": "rwa",
465
- "sa": "sanscrito",
466
- "sad": "sandawe",
467
- "sah": "yakut",
468
- "sam": "aramaico samaritano",
469
- "saq": "samburu",
470
- "sas": "sasak",
471
- "sat": "santali",
472
- "saz": "saurashtra",
473
- "sba": "ngambay",
474
- "sbp": "sangu",
475
- "sc": "sardo",
476
- "scn": "siciliano",
477
- "sco": "scozzese",
478
- "sd": "sindhi",
479
- "sdc": "sassarese",
480
- "sdh": "curdo meridionale",
481
- "se": "sami del nord",
482
- "see": "seneca",
483
- "seh": "sena",
484
- "sei": "seri",
485
- "sel": "selkup",
486
- "ses": "koyraboro senni",
487
- "sg": "sango",
488
- "sga": "irlandese antico",
489
- "sgs": "samogitico",
490
- "sh": "serbo-croato",
491
- "shi": "tashelhit",
492
- "shn": "shan",
493
- "shu": "arabo ciadiano",
494
- "si": "singalese",
495
- "sid": "sidamo",
496
- "sk": "slovacco",
497
- "sl": "sloveno",
498
- "sli": "tedesco slesiano",
499
- "sly": "selayar",
500
- "sm": "samoano",
501
- "sma": "sami del sud",
502
- "smj": "sami di Lule",
503
- "smn": "sami di Inari",
504
- "sms": "sami skolt",
505
- "sn": "shona",
506
- "snk": "soninke",
507
- "so": "somalo",
508
- "sog": "sogdiano",
509
- "sq": "albanese",
510
- "sr": "serbo",
511
- "srn": "sranan tongo",
512
- "srr": "serer",
513
- "ss": "swati",
514
- "ssy": "saho",
515
- "st": "sotho del sud",
516
- "stq": "saterfriesisch",
517
- "su": "sundanese",
518
- "suk": "sukuma",
519
- "sus": "susu",
520
- "sux": "sumero",
521
- "sv": "svedese",
522
- "sw": "swahili",
523
- "sw_CD": "swahili del Congo",
524
- "swb": "comoriano",
525
- "syc": "siriaco classico",
526
- "syr": "siriaco",
527
- "szl": "slesiano",
528
- "ta": "tamil",
529
- "tcy": "tulu",
530
- "te": "telugu",
531
- "tem": "temne",
532
- "teo": "teso",
533
- "ter": "tereno",
534
- "tet": "tetum",
535
- "tg": "tagico",
536
- "th": "thai",
537
- "ti": "tigrino",
538
- "tig": "tigre",
539
- "tiv": "tiv",
540
- "tk": "turcomanno",
541
- "tkl": "tokelau",
542
- "tkr": "tsakhur",
543
- "tl": "tagalog",
544
- "tlh": "klingon",
545
- "tli": "tlingit",
546
- "tly": "taliscio",
547
- "tmh": "tamashek",
548
- "tn": "tswana",
549
- "to": "tongano",
550
- "tog": "nyasa del Tonga",
551
- "tpi": "tok pisin",
552
- "tr": "turco",
553
- "tru": "turoyo",
554
- "trv": "taroko",
555
- "ts": "tsonga",
556
- "tsd": "zaconico",
557
- "tsi": "tsimshian",
558
- "tt": "tataro",
559
- "ttt": "tat islamico",
560
- "tum": "tumbuka",
561
- "tvl": "tuvalu",
562
- "tw": "ci",
563
- "twq": "tasawaq",
564
- "ty": "taitiano",
565
- "tyv": "tuvinian",
566
- "tzm": "tamazight",
567
- "udm": "udmurt",
568
- "ug": "uiguro",
569
- "uga": "ugaritico",
570
- "uk": "ucraino",
571
- "umb": "mbundu",
572
- "und": "lingua imprecisata",
573
- "ur": "urdu",
574
- "uz": "uzbeco",
575
- "vai": "vai",
576
- "ve": "venda",
577
- "vec": "veneto",
578
- "vep": "vepso",
579
- "vi": "vietnamita",
580
- "vls": "fiammingo occidentale",
581
- "vo": "volapük",
582
- "vot": "voto",
583
- "vro": "võro",
584
- "vun": "vunjo",
585
- "wa": "vallone",
586
- "wae": "walser",
587
- "wal": "walamo",
588
- "war": "waray",
589
- "was": "washo",
590
- "wbp": "warlpiri",
591
- "wo": "wolof",
592
- "wuu": "wu",
593
- "xal": "kalmyk",
594
- "xh": "xhosa",
595
- "xmf": "mengrelio",
596
- "xog": "soga",
597
- "yao": "yao (bantu)",
598
- "yap": "yapese",
599
- "yav": "yangben",
600
- "ybb": "yemba",
601
- "yi": "yiddish",
602
- "yo": "yoruba",
603
- "yrl": "nheengatu",
604
- "yue": "cantonese",
605
- "za": "zhuang",
606
- "zap": "zapotec",
607
- "zbl": "blissymbol",
608
- "zea": "zelandese",
609
- "zen": "zenaga",
610
- "zgh": "tamazight del Marocco standard",
611
- "zh": "cinese",
612
- "zh_Hans": "cinese semplificato",
613
- "zh_Hant": "cinese tradizionale",
614
- "zu": "zulu",
615
- "zun": "zuni",
616
- "zxx": "nessun contenuto linguistico",
617
- "zza": "zaza"
618
- },
619
- "scripts": {
620
- "Adlm": "Adlm",
621
- "Afak": "afaka",
622
- "Aghb": "Aghb",
623
- "Ahom": "Ahom",
624
- "Arab": "arabo",
625
- "Arab-alt-variant": "arabo-persiano",
626
- "Armi": "aramaico imperiale",
627
- "Armn": "armeno",
628
- "Avst": "avestico",
629
- "Bali": "balinese",
630
- "Bamu": "bamum",
631
- "Bass": "Bassa Vah",
632
- "Batk": "batak",
633
- "Beng": "bengalese",
634
- "Bhks": "Bhks",
635
- "Blis": "simboli bliss",
636
- "Bopo": "bopomofo",
637
- "Brah": "brahmi",
638
- "Brai": "braille",
639
- "Bugi": "buginese",
640
- "Buhd": "buhid",
641
- "Cakm": "chakma",
642
- "Cans": "simboli aborigeni canadesi unificati",
643
- "Cari": "carian",
644
- "Cham": "cham",
645
- "Cher": "cherokee",
646
- "Cirt": "cirth",
647
- "Copt": "copto",
648
- "Cprt": "cipriota",
649
- "Cyrl": "cirillico",
650
- "Cyrs": "cirillico antica chiesa slavonica",
651
- "Deva": "devanagari",
652
- "Dogr": "Dogr",
653
- "Dsrt": "deseret",
654
- "Dupl": "stenografia duployan",
655
- "Egyd": "egiziano demotico",
656
- "Egyh": "ieratico egiziano",
657
- "Egyp": "geroglifici egiziani",
658
- "Elba": "Elba",
659
- "Elym": "Elym",
660
- "Ethi": "etiope",
661
- "Geok": "kutsuri",
662
- "Geor": "georgiano",
663
- "Glag": "glagolitico",
664
- "Gong": "Gong",
665
- "Gonm": "Gonm",
666
- "Goth": "gotico",
667
- "Gran": "grantha",
668
- "Grek": "greco",
669
- "Gujr": "gujarati",
670
- "Guru": "gurmukhi",
671
- "Hanb": "hanb",
672
- "Hang": "hangul",
673
- "Hani": "han",
674
- "Hano": "hanunoo",
675
- "Hans": "semplificato",
676
- "Hans-alt-stand-alone": "han semplificato",
677
- "Hant": "tradizionale",
678
- "Hant-alt-stand-alone": "han tradizionale",
679
- "Hatr": "Hatr",
680
- "Hebr": "ebraico",
681
- "Hira": "hiragana",
682
- "Hluw": "geroglifici anatolici",
683
- "Hmng": "pahawn hmong",
684
- "Hmnp": "Hmnp",
685
- "Hrkt": "katanaka o hiragana",
686
- "Hung": "antico ungherese",
687
- "Inds": "indu",
688
- "Ital": "italico antico",
689
- "Jamo": "jamo",
690
- "Java": "javanese",
691
- "Jpan": "giapponese",
692
- "Jurc": "jurchen",
693
- "Kali": "kayah li",
694
- "Kana": "katakana",
695
- "Khar": "kharoshthi",
696
- "Khmr": "khmer",
697
- "Khoj": "khojki",
698
- "Knda": "kannada",
699
- "Kore": "coreano",
700
- "Kpel": "Kpelle",
701
- "Kthi": "kaithi",
702
- "Lana": "lanna",
703
- "Laoo": "lao",
704
- "Latf": "variante fraktur del latino",
705
- "Latg": "variante gaelica del latino",
706
- "Latn": "latino",
707
- "Lepc": "lepcha",
708
- "Limb": "limbu",
709
- "Lina": "lineare A",
710
- "Linb": "lineare B",
711
- "Lisu": "lisu",
712
- "Loma": "loma",
713
- "Lyci": "lyci",
714
- "Lydi": "lydi",
715
- "Mahj": "Mahj",
716
- "Maka": "Maka",
717
- "Mand": "mandaico",
718
- "Mani": "manicheo",
719
- "Marc": "Marc",
720
- "Maya": "geroglifici maya",
721
- "Medf": "Medf",
722
- "Mend": "mende",
723
- "Merc": "corsivo meroitico",
724
- "Mero": "meroitico",
725
- "Mlym": "malayalam",
726
- "Modi": "Modi",
727
- "Mong": "mongolo",
728
- "Moon": "moon",
729
- "Mroo": "mro",
730
- "Mtei": "meetei mayek",
731
- "Mult": "Mult",
732
- "Mymr": "birmano",
733
- "Nand": "Nand",
734
- "Narb": "arabo settentrionale antico",
735
- "Nbat": "nabateo",
736
- "Newa": "Newa",
737
- "Nkgb": "geba naxi",
738
- "Nkoo": "n’ko",
739
- "Nshu": "nushu",
740
- "Ogam": "ogham",
741
- "Olck": "ol chiki",
742
- "Orkh": "orkhon",
743
- "Orya": "oriya",
744
- "Osge": "Osge",
745
- "Osma": "osmanya",
746
- "Palm": "palmireno",
747
- "Pauc": "Pauc",
748
- "Perm": "permico antico",
749
- "Phag": "phags-pa",
750
- "Phli": "pahlavi delle iscrizioni",
751
- "Phlp": "pahlavi psalter",
752
- "Phlv": "pahlavi book",
753
- "Phnx": "fenicio",
754
- "Plrd": "fonetica di pollard",
755
- "Prti": "partico delle iscrizioni",
756
- "Qaag": "Qaag",
757
- "Rjng": "rejang",
758
- "Rohg": "Rohg",
759
- "Roro": "rongorongo",
760
- "Runr": "runico",
761
- "Samr": "samaritano",
762
- "Sara": "sarati",
763
- "Sarb": "arabo meridionale antico",
764
- "Saur": "saurashtra",
765
- "Sgnw": "linguaggio dei segni",
766
- "Shaw": "shaviano",
767
- "Shrd": "sharada",
768
- "Sidd": "Sidd",
769
- "Sind": "khudawadi",
770
- "Sinh": "singalese",
771
- "Sogd": "Sogd",
772
- "Sogo": "Sogo",
773
- "Sora": "sora sompeng",
774
- "Soyo": "Soyo",
775
- "Sund": "sundanese",
776
- "Sylo": "syloti nagri",
777
- "Syrc": "siriano",
778
- "Syre": "siriaco estrangelo",
779
- "Syrj": "siriaco occidentale",
780
- "Syrn": "siriaco orientale",
781
- "Tagb": "tagbanwa",
782
- "Takr": "takri",
783
- "Tale": "tai le",
784
- "Talu": "tai lue",
785
- "Taml": "tamil",
786
- "Tang": "tangut",
787
- "Tavt": "tai viet",
788
- "Telu": "telugu",
789
- "Teng": "tengwar",
790
- "Tfng": "tifinagh",
791
- "Tglg": "tagalog",
792
- "Thaa": "thaana",
793
- "Thai": "thailandese",
794
- "Tibt": "tibetano",
795
- "Tirh": "tirhuta",
796
- "Ugar": "ugarita",
797
- "Vaii": "vaii",
798
- "Visp": "alfabeto visivo",
799
- "Wara": "varang kshiti",
800
- "Wcho": "Wcho",
801
- "Wole": "woleai",
802
- "Xpeo": "persiano antico",
803
- "Xsux": "sumero-accadiano cuneiforme",
804
- "Yiii": "yi",
805
- "Zanb": "Zanb",
806
- "Zinh": "ereditato",
807
- "Zmth": "notazione matematica",
808
- "Zsye": "emoji",
809
- "Zsym": "simboli",
810
- "Zxxx": "non scritto",
811
- "Zyyy": "comune",
812
- "Zzzz": "scrittura sconosciuta"
813
- },
814
- "territories": {
815
- "142": "Asia",
816
- "143": "Asia centrale",
817
- "145": "Asia occidentale",
818
- "150": "Europa",
819
- "151": "Europa orientale",
820
- "154": "Europa settentrionale",
821
- "155": "Europa occidentale",
822
- "202": "Africa subsahariana",
823
- "419": "America Latina",
824
- "001": "Mondo",
825
- "002": "Africa",
826
- "003": "Nord America",
827
- "005": "America del Sud",
828
- "009": "Oceania",
829
- "011": "Africa occidentale",
830
- "013": "America Centrale",
831
- "014": "Africa orientale",
832
- "015": "Nordafrica",
833
- "017": "Africa centrale",
834
- "018": "Africa del Sud",
835
- "019": "Americhe",
836
- "021": "America del Nord",
837
- "029": "Caraibi",
838
- "030": "Asia orientale",
839
- "034": "Asia del Sud",
840
- "035": "Sud-est asiatico",
841
- "039": "Europa meridionale",
842
- "053": "Australasia",
843
- "054": "Melanesia",
844
- "057": "Regione micronesiana",
845
- "061": "Polinesia",
846
- "AC": "Isola Ascensione",
847
- "AD": "Andorra",
848
- "AE": "Emirati Arabi Uniti",
849
- "AF": "Afghanistan",
850
- "AG": "Antigua e Barbuda",
851
- "AI": "Anguilla",
852
- "AL": "Albania",
853
- "AM": "Armenia",
854
- "AO": "Angola",
855
- "AQ": "Antartide",
856
- "AR": "Argentina",
857
- "AS": "Samoa americane",
858
- "AT": "Austria",
859
- "AU": "Australia",
860
- "AW": "Aruba",
861
- "AX": "Isole Åland",
862
- "AZ": "Azerbaigian",
863
- "BA": "Bosnia ed Erzegovina",
864
- "BB": "Barbados",
865
- "BD": "Bangladesh",
866
- "BE": "Belgio",
867
- "BF": "Burkina Faso",
868
- "BG": "Bulgaria",
869
- "BH": "Bahrein",
870
- "BI": "Burundi",
871
- "BJ": "Benin",
872
- "BL": "Saint-Barthélemy",
873
- "BM": "Bermuda",
874
- "BN": "Brunei",
875
- "BO": "Bolivia",
876
- "BQ": "Caraibi olandesi",
877
- "BR": "Brasile",
878
- "BS": "Bahamas",
879
- "BT": "Bhutan",
880
- "BV": "Isola Bouvet",
881
- "BW": "Botswana",
882
- "BY": "Bielorussia",
883
- "BZ": "Belize",
884
- "CA": "Canada",
885
- "CC": "Isole Cocos (Keeling)",
886
- "CD": "Congo - Kinshasa",
887
- "CD-alt-variant": "Congo (RDC)",
888
- "CF": "Repubblica Centrafricana",
889
- "CG": "Congo-Brazzaville",
890
- "CG-alt-variant": "Congo (Repubblica)",
891
- "CH": "Svizzera",
892
- "CI": "Costa d’Avorio",
893
- "CI-alt-variant": "Côte d’Ivoire",
894
- "CK": "Isole Cook",
895
- "CL": "Cile",
896
- "CM": "Camerun",
897
- "CN": "Cina",
898
- "CO": "Colombia",
899
- "CP": "Isola di Clipperton",
900
- "CR": "Costa Rica",
901
- "CU": "Cuba",
902
- "CV": "Capo Verde",
903
- "CW": "Curaçao",
904
- "CX": "Isola Christmas",
905
- "CY": "Cipro",
906
- "CZ": "Cechia",
907
- "CZ-alt-variant": "Repubblica Ceca",
908
- "DE": "Germania",
909
- "DG": "Diego Garcia",
910
- "DJ": "Gibuti",
911
- "DK": "Danimarca",
912
- "DM": "Dominica",
913
- "DO": "Repubblica Dominicana",
914
- "DZ": "Algeria",
915
- "EA": "Ceuta e Melilla",
916
- "EC": "Ecuador",
917
- "EE": "Estonia",
918
- "EG": "Egitto",
919
- "EH": "Sahara occidentale",
920
- "ER": "Eritrea",
921
- "ES": "Spagna",
922
- "ET": "Etiopia",
923
- "EU": "Unione Europea",
924
- "EZ": "Eurozona",
925
- "FI": "Finlandia",
926
- "FJ": "Figi",
927
- "FK": "Isole Falkland",
928
- "FK-alt-variant": "Isole Falkland (Isole Malvine)",
929
- "FM": "Micronesia",
930
- "FO": "Isole Fær Øer",
931
- "FR": "Francia",
932
- "GA": "Gabon",
933
- "GB": "Regno Unito",
934
- "GB-alt-short": "UK",
935
- "GD": "Grenada",
936
- "GE": "Georgia",
937
- "GF": "Guyana francese",
938
- "GG": "Guernsey",
939
- "GH": "Ghana",
940
- "GI": "Gibilterra",
941
- "GL": "Groenlandia",
942
- "GM": "Gambia",
943
- "GN": "Guinea",
944
- "GP": "Guadalupa",
945
- "GQ": "Guinea Equatoriale",
946
- "GR": "Grecia",
947
- "GS": "Georgia del Sud e Sandwich australi",
948
- "GT": "Guatemala",
949
- "GU": "Guam",
950
- "GW": "Guinea-Bissau",
951
- "GY": "Guyana",
952
- "HK": "Hong Kong, Cina",
953
- "HK-alt-short": "Hong Kong",
954
- "HM": "Isole Heard e McDonald",
955
- "HN": "Honduras",
956
- "HR": "Croazia",
957
- "HT": "Haiti",
958
- "HU": "Ungheria",
959
- "IC": "Isole Canarie",
960
- "ID": "Indonesia",
961
- "IE": "Irlanda",
962
- "IL": "Israele",
963
- "IM": "Isola di Man",
964
- "IN": "India",
965
- "IO": "Territorio britannico dell’Oceano Indiano",
966
- "IQ": "Iraq",
967
- "IR": "Iran",
968
- "IS": "Islanda",
969
- "IT": "Italia",
970
- "JE": "Jersey",
971
- "JM": "Giamaica",
972
- "JO": "Giordania",
973
- "JP": "Giappone",
974
- "KE": "Kenya",
975
- "KG": "Kirghizistan",
976
- "KH": "Cambogia",
977
- "KI": "Kiribati",
978
- "KM": "Comore",
979
- "KN": "Saint Kitts e Nevis",
980
- "KP": "Corea del Nord",
981
- "KR": "Corea del Sud",
982
- "KW": "Kuwait",
983
- "KY": "Isole Cayman",
984
- "KZ": "Kazakistan",
985
- "LA": "Laos",
986
- "LB": "Libano",
987
- "LC": "Saint Lucia",
988
- "LI": "Liechtenstein",
989
- "LK": "Sri Lanka",
990
- "LR": "Liberia",
991
- "LS": "Lesotho",
992
- "LT": "Lituania",
993
- "LU": "Lussemburgo",
994
- "LV": "Lettonia",
995
- "LY": "Libia",
996
- "MA": "Marocco",
997
- "MC": "Monaco",
998
- "MD": "Moldavia",
999
- "ME": "Montenegro",
1000
- "MF": "Saint Martin",
1001
- "MG": "Madagascar",
1002
- "MH": "Isole Marshall",
1003
- "MK": "Macedonia del Nord",
1004
- "MK-alt-variant": "MK",
1005
- "ML": "Mali",
1006
- "MM": "Myanmar (Birmania)",
1007
- "MN": "Mongolia",
1008
- "MO": "Macao, Cina",
1009
- "MO-alt-short": "Macao",
1010
- "MP": "Isole Marianne settentrionali",
1011
- "MQ": "Martinica",
1012
- "MR": "Mauritania",
1013
- "MS": "Montserrat",
1014
- "MT": "Malta",
1015
- "MU": "Mauritius",
1016
- "MV": "Maldive",
1017
- "MW": "Malawi",
1018
- "MX": "Messico",
1019
- "MY": "Malaysia",
1020
- "MZ": "Mozambico",
1021
- "NA": "Namibia",
1022
- "NC": "Nuova Caledonia",
1023
- "NE": "Niger",
1024
- "NF": "Isola Norfolk",
1025
- "NG": "Nigeria",
1026
- "NI": "Nicaragua",
1027
- "NL": "Paesi Bassi",
1028
- "NO": "Norvegia",
1029
- "NP": "Nepal",
1030
- "NR": "Nauru",
1031
- "NU": "Niue",
1032
- "NZ": "Nuova Zelanda",
1033
- "OM": "Oman",
1034
- "PA": "Panamá",
1035
- "PE": "Perù",
1036
- "PF": "Polinesia francese",
1037
- "PG": "Papua Nuova Guinea",
1038
- "PH": "Filippine",
1039
- "PK": "Pakistan",
1040
- "PL": "Polonia",
1041
- "PM": "Saint-Pierre e Miquelon",
1042
- "PN": "Isole Pitcairn",
1043
- "PR": "Portorico",
1044
- "PS": "Territori palestinesi",
1045
- "PS-alt-short": "Palestina",
1046
- "PT": "Portogallo",
1047
- "PW": "Palau",
1048
- "PY": "Paraguay",
1049
- "QA": "Qatar",
1050
- "QO": "Oceania lontana",
1051
- "RE": "Riunione",
1052
- "RO": "Romania",
1053
- "RS": "Serbia",
1054
- "RU": "Russia",
1055
- "RW": "Ruanda",
1056
- "SA": "Arabia Saudita",
1057
- "SB": "Isole Salomone",
1058
- "SC": "Seychelles",
1059
- "SD": "Sudan",
1060
- "SE": "Svezia",
1061
- "SG": "Singapore",
1062
- "SH": "Sant’Elena",
1063
- "SI": "Slovenia",
1064
- "SJ": "Svalbard e Jan Mayen",
1065
- "SK": "Slovacchia",
1066
- "SL": "Sierra Leone",
1067
- "SM": "San Marino",
1068
- "SN": "Senegal",
1069
- "SO": "Somalia",
1070
- "SR": "Suriname",
1071
- "SS": "Sud Sudan",
1072
- "ST": "São Tomé e Príncipe",
1073
- "SV": "El Salvador",
1074
- "SX": "Sint Maarten",
1075
- "SY": "Siria",
1076
- "SZ": "Swaziland",
1077
- "SZ-alt-variant": "Regno di eSwatini",
1078
- "TA": "Tristan da Cunha",
1079
- "TC": "Isole Turks e Caicos",
1080
- "TD": "Ciad",
1081
- "TF": "Terre australi francesi",
1082
- "TG": "Togo",
1083
- "TH": "Thailandia",
1084
- "TJ": "Tagikistan",
1085
- "TK": "Tokelau",
1086
- "TL": "Timor Est",
1087
- "TL-alt-variant": "TL",
1088
- "TM": "Turkmenistan",
1089
- "TN": "Tunisia",
1090
- "TO": "Tonga",
1091
- "TR": "Turchia",
1092
- "TT": "Trinidad e Tobago",
1093
- "TV": "Tuvalu",
1094
- "TW": "Taiwan, Cina",
1095
- "TZ": "Tanzania",
1096
- "UA": "Ucraina",
1097
- "UG": "Uganda",
1098
- "UM": "Altre isole americane del Pacifico",
1099
- "UN": "Nazioni Unite",
1100
- "UN-alt-short": "ONU",
1101
- "US": "Stati Uniti",
1102
- "US-alt-short": "USA",
1103
- "UY": "Uruguay",
1104
- "UZ": "Uzbekistan",
1105
- "VA": "Città del Vaticano",
1106
- "VC": "Saint Vincent e Grenadine",
1107
- "VE": "Venezuela",
1108
- "VG": "Isole Vergini Britanniche",
1109
- "VI": "Isole Vergini Americane",
1110
- "VN": "Vietnam",
1111
- "VU": "Vanuatu",
1112
- "WF": "Wallis e Futuna",
1113
- "WS": "Samoa",
1114
- "XA": "pseudo-accenti",
1115
- "XB": "pseudo-bidi",
1116
- "XK": "Kosovo",
1117
- "YE": "Yemen",
1118
- "YT": "Mayotte",
1119
- "ZA": "Sudafrica",
1120
- "ZM": "Zambia",
1121
- "ZW": "Zimbabwe",
1122
- "ZZ": "Regione sconosciuta"
1123
- },
1124
- "orientation": "left-to-right",
1125
- "ca-gregorian": {
1126
- "dateFormats": {
1127
- "full": "EEEE d MMMM y",
1128
- "long": "d MMMM y",
1129
- "medium": "d MMM y",
1130
- "short": "dd/MM/yy"
1131
- },
1132
- "timeFormats": {
1133
- "full": "HH:mm:ss zzzz",
1134
- "long": "HH:mm:ss z",
1135
- "medium": "HH:mm:ss",
1136
- "short": "HH:mm"
1137
- },
1138
- "dateTimeFormats": {
1139
- "full": "{1} {0}",
1140
- "long": "{1} {0}",
1141
- "medium": "{1}, {0}",
1142
- "short": "{1}, {0}",
1143
- "availableFormats": {
1144
- "Bh": "h B",
1145
- "Bhm": "h:mm B",
1146
- "Bhms": "h:mm:ss B",
1147
- "d": "d",
1148
- "E": "ccc",
1149
- "EBhm": "E h:mm B",
1150
- "EBhms": "E h:mm:ss B",
1151
- "Ed": "E d",
1152
- "Ehm": "E h:mm a",
1153
- "EHm": "E HH:mm",
1154
- "Ehms": "E h:mm:ss a",
1155
- "EHms": "E HH:mm:ss",
1156
- "Gy": "y G",
1157
- "GyMMM": "MMM y G",
1158
- "GyMMMd": "d MMM y G",
1159
- "GyMMMEd": "E d MMM y G",
1160
- "h": "h a",
1161
- "H": "HH",
1162
- "hm": "h:mm a",
1163
- "Hm": "HH:mm",
1164
- "hms": "h:mm:ss a",
1165
- "Hms": "HH:mm:ss",
1166
- "hmsv": "h:mm:ss a v",
1167
- "Hmsv": "HH:mm:ss v",
1168
- "hmv": "h:mm a v",
1169
- "Hmv": "HH:mm v",
1170
- "M": "L",
1171
- "Md": "d/M",
1172
- "MEd": "E d/M",
1173
- "MMM": "LLL",
1174
- "MMMd": "d MMM",
1175
- "MMMEd": "E d MMM",
1176
- "MMMMd": "d MMMM",
1177
- "ms": "mm:ss",
1178
- "y": "y",
1179
- "yM": "M/y",
1180
- "yMd": "d/M/y",
1181
- "yMEd": "E d/M/y",
1182
- "yMMM": "MMM y",
1183
- "yMMMd": "d MMM y",
1184
- "yMMMEd": "E d MMM y",
1185
- "yMMMM": "MMMM y",
1186
- "yQQQ": "QQQ y",
1187
- "yQQQQ": "QQQQ y",
1188
- "MMMMW": "'settimana' W 'di' MMMM",
1189
- "yw": "'settimana' w 'del' Y"
1190
- },
1191
- "appendItems": {
1192
- "Day": "{0} ({2}: {1})",
1193
- "Day-Of-Week": "{0} {1}",
1194
- "Era": "{1} {0}",
1195
- "Hour": "{0} ({2}: {1})",
1196
- "Minute": "{0} ({2}: {1})",
1197
- "Month": "{0} ({2}: {1})",
1198
- "Quarter": "{0} ({2}: {1})",
1199
- "Second": "{0} ({2}: {1})",
1200
- "Timezone": "{0} {1}",
1201
- "Week": "{0} ({2}: {1})",
1202
- "Year": "{1} {0}"
1203
- },
1204
- "intervalFormats": {
1205
- "intervalFormatFallback": "{0} - {1}",
1206
- "Bh": {
1207
- "B": "h B – h B",
1208
- "h": "h–h B"
1209
- },
1210
- "Bhm": {
1211
- "B": "h:mm B – h:mm B",
1212
- "h": "h:mm–h:mm B",
1213
- "m": "h:mm–h:mm B"
1214
- },
1215
- "d": {
1216
- "d": "d–d"
1217
- },
1218
- "Gy": {
1219
- "G": "y G – y G",
1220
- "y": "y – y G"
1221
- },
1222
- "GyM": {
1223
- "G": "M/y GGGGG – M/y GGGGG",
1224
- "M": "M/y – M/y GGGGG",
1225
- "y": "M/y – M/y GGGGG"
1226
- },
1227
- "GyMd": {
1228
- "d": "d/M/y – d/M/y GGGGG",
1229
- "G": "d/M/y GGGGG – d/M/y GGGGG",
1230
- "M": "d/M/y – d/M/y GGGGG",
1231
- "y": "d/M/y – d/M/y GGGGG"
1232
- },
1233
- "GyMEd": {
1234
- "d": "E d/M/y – E d/M/y GGGGG",
1235
- "G": "E d/M/y – E d/M/y GGGGG",
1236
- "M": "E d/M/y – E d/M/y GGGGG",
1237
- "y": "E d/M/y – E d/M/y GGGGG"
1238
- },
1239
- "GyMMM": {
1240
- "G": "MMM y G – MMM y G",
1241
- "M": "MMM – MMM y G",
1242
- "y": "MMM y – MMM y G"
1243
- },
1244
- "GyMMMd": {
1245
- "d": "G y MMM d–d",
1246
- "G": "d MMM y G – d MMM y G",
1247
- "M": "d MMM – d MMM y G",
1248
- "y": "d MMM y – d MMM y G"
1249
- },
1250
- "GyMMMEd": {
1251
- "d": "E d MMM – d E MMM y G",
1252
- "G": "E d MMM y G – E d MMM y G",
1253
- "M": "E d MMM – E d MMM y G",
1254
- "y": "E d MMM y – E d MMM y G"
1255
- },
1256
- "h": {
1257
- "a": "h a – h a",
1258
- "h": "h–h a"
1259
- },
1260
- "H": {
1261
- "H": "HH–HH"
1262
- },
1263
- "hm": {
1264
- "a": "h:mm a – h:mm a",
1265
- "h": "h:mm–h:mm a",
1266
- "m": "h:mm–h:mm a"
1267
- },
1268
- "Hm": {
1269
- "H": "HH:mm–HH:mm",
1270
- "m": "HH:mm–HH:mm"
1271
- },
1272
- "hmv": {
1273
- "a": "h:mm a – h:mm a v",
1274
- "h": "h:mm–h:mm a v",
1275
- "m": "h:mm–h:mm a v"
1276
- },
1277
- "Hmv": {
1278
- "H": "HH:mm–HH:mm v",
1279
- "m": "HH:mm–HH:mm v"
1280
- },
1281
- "hv": {
1282
- "a": "h a – h a v",
1283
- "h": "h–h a v"
1284
- },
1285
- "Hv": {
1286
- "H": "HH–HH v"
1287
- },
1288
- "M": {
1289
- "M": "M–M"
1290
- },
1291
- "Md": {
1292
- "d": "dd/MM – dd/MM",
1293
- "M": "dd/MM – dd/MM"
1294
- },
1295
- "MEd": {
1296
- "d": "E dd/MM – E dd/MM",
1297
- "M": "E dd/MM – E dd/MM"
1298
- },
1299
- "MMM": {
1300
- "M": "MMM–MMM"
1301
- },
1302
- "MMMd": {
1303
- "d": "dd–dd MMM",
1304
- "M": "dd MMM – dd MMM"
1305
- },
1306
- "MMMEd": {
1307
- "d": "E dd – E dd MMM",
1308
- "M": "E dd MMM – E dd MMM"
1309
- },
1310
- "y": {
1311
- "y": "y–y"
1312
- },
1313
- "yM": {
1314
- "M": "MM/y – MM/y",
1315
- "y": "MM/y – MM/y"
1316
- },
1317
- "yMd": {
1318
- "d": "dd/MM/y – dd/MM/y",
1319
- "M": "dd/MM/y – dd/MM/y",
1320
- "y": "dd/MM/y – dd/MM/y"
1321
- },
1322
- "yMEd": {
1323
- "d": "E dd/MM/y – E dd/MM/y",
1324
- "M": "E dd/MM/y – E dd/MM/y",
1325
- "y": "E dd/MM/y – E dd/MM/y"
1326
- },
1327
- "yMMM": {
1328
- "M": "MMM–MMM y",
1329
- "y": "MMM y – MMM y"
1330
- },
1331
- "yMMMd": {
1332
- "d": "dd–dd MMM y",
1333
- "M": "dd MMM – dd MMM y",
1334
- "y": "dd MMM y – dd MMM y"
1335
- },
1336
- "yMMMEd": {
1337
- "d": "E d – E d MMM y",
1338
- "M": "E d MMM – E d MMM y",
1339
- "y": "E d MMM y – E d MMM y"
1340
- },
1341
- "yMMMM": {
1342
- "M": "MMMM–MMMM y",
1343
- "y": "MMMM y – MMMM y"
1344
- }
1345
- }
1346
- },
1347
- "months": {
1348
- "format": {
1349
- "abbreviated": [
1350
- "gen",
1351
- "feb",
1352
- "mar",
1353
- "apr",
1354
- "mag",
1355
- "giu",
1356
- "lug",
1357
- "ago",
1358
- "set",
1359
- "ott",
1360
- "nov",
1361
- "dic"
1362
- ],
1363
- "narrow": [
1364
- "G",
1365
- "F",
1366
- "M",
1367
- "A",
1368
- "M",
1369
- "G",
1370
- "L",
1371
- "A",
1372
- "S",
1373
- "O",
1374
- "N",
1375
- "D"
1376
- ],
1377
- "wide": [
1378
- "gennaio",
1379
- "febbraio",
1380
- "marzo",
1381
- "aprile",
1382
- "maggio",
1383
- "giugno",
1384
- "luglio",
1385
- "agosto",
1386
- "settembre",
1387
- "ottobre",
1388
- "novembre",
1389
- "dicembre"
1390
- ]
1391
- },
1392
- "stand-alone": {
1393
- "abbreviated": [
1394
- "gen",
1395
- "feb",
1396
- "mar",
1397
- "apr",
1398
- "mag",
1399
- "giu",
1400
- "lug",
1401
- "ago",
1402
- "set",
1403
- "ott",
1404
- "nov",
1405
- "dic"
1406
- ],
1407
- "narrow": [
1408
- "G",
1409
- "F",
1410
- "M",
1411
- "A",
1412
- "M",
1413
- "G",
1414
- "L",
1415
- "A",
1416
- "S",
1417
- "O",
1418
- "N",
1419
- "D"
1420
- ],
1421
- "wide": [
1422
- "gennaio",
1423
- "febbraio",
1424
- "marzo",
1425
- "aprile",
1426
- "maggio",
1427
- "giugno",
1428
- "luglio",
1429
- "agosto",
1430
- "settembre",
1431
- "ottobre",
1432
- "novembre",
1433
- "dicembre"
1434
- ]
1435
- }
1436
- },
1437
- "days": {
1438
- "format": {
1439
- "abbreviated": [
1440
- "dom",
1441
- "lun",
1442
- "mar",
1443
- "mer",
1444
- "gio",
1445
- "ven",
1446
- "sab"
1447
- ],
1448
- "narrow": [
1449
- "D",
1450
- "L",
1451
- "M",
1452
- "M",
1453
- "G",
1454
- "V",
1455
- "S"
1456
- ],
1457
- "short": [
1458
- "dom",
1459
- "lun",
1460
- "mar",
1461
- "mer",
1462
- "gio",
1463
- "ven",
1464
- "sab"
1465
- ],
1466
- "wide": [
1467
- "domenica",
1468
- "lunedì",
1469
- "martedì",
1470
- "mercoledì",
1471
- "giovedì",
1472
- "venerdì",
1473
- "sabato"
1474
- ]
1475
- },
1476
- "stand-alone": {
1477
- "abbreviated": [
1478
- "dom",
1479
- "lun",
1480
- "mar",
1481
- "mer",
1482
- "gio",
1483
- "ven",
1484
- "sab"
1485
- ],
1486
- "narrow": [
1487
- "D",
1488
- "L",
1489
- "M",
1490
- "M",
1491
- "G",
1492
- "V",
1493
- "S"
1494
- ],
1495
- "short": [
1496
- "dom",
1497
- "lun",
1498
- "mar",
1499
- "mer",
1500
- "gio",
1501
- "ven",
1502
- "sab"
1503
- ],
1504
- "wide": [
1505
- "domenica",
1506
- "lunedì",
1507
- "martedì",
1508
- "mercoledì",
1509
- "giovedì",
1510
- "venerdì",
1511
- "sabato"
1512
- ]
1513
- }
1514
- },
1515
- "quarters": {
1516
- "format": {
1517
- "abbreviated": [
1518
- "T1",
1519
- "T2",
1520
- "T3",
1521
- "T4"
1522
- ],
1523
- "narrow": [
1524
- "1",
1525
- "2",
1526
- "3",
1527
- "4"
1528
- ],
1529
- "wide": [
1530
- "1º trimestre",
1531
- "2º trimestre",
1532
- "3º trimestre",
1533
- "4º trimestre"
1534
- ]
1535
- },
1536
- "stand-alone": {
1537
- "abbreviated": [
1538
- "T1",
1539
- "T2",
1540
- "T3",
1541
- "T4"
1542
- ],
1543
- "narrow": [
1544
- "1",
1545
- "2",
1546
- "3",
1547
- "4"
1548
- ],
1549
- "wide": [
1550
- "1º trimestre",
1551
- "2º trimestre",
1552
- "3º trimestre",
1553
- "4º trimestre"
1554
- ]
1555
- }
1556
- },
1557
- "dayPeriods": {
1558
- "format": {
1559
- "abbreviated": [
1560
- "AM",
1561
- "PM"
1562
- ],
1563
- "narrow": [
1564
- "m.",
1565
- "p."
1566
- ],
1567
- "wide": [
1568
- "AM",
1569
- "PM"
1570
- ]
1571
- },
1572
- "stand-alone": {
1573
- "abbreviated": [
1574
- "AM",
1575
- "PM"
1576
- ],
1577
- "narrow": [
1578
- "m.",
1579
- "p."
1580
- ],
1581
- "wide": [
1582
- "AM",
1583
- "PM"
1584
- ]
1585
- }
1586
- },
1587
- "era-wide": {
1588
- "0": "avanti Cristo",
1589
- "1": "dopo Cristo"
1590
- },
1591
- "era-abbreviated": {
1592
- "0": "a.C.",
1593
- "1": "d.C."
1594
- },
1595
- "era-narrow": {
1596
- "0": "aC",
1597
- "1": "dC"
1598
- }
1599
- },
1600
- "ca-islamic": {
1601
- "dateFormats": {
1602
- "full": "EEEE d MMMM y G",
1603
- "long": "dd MMMM y G",
1604
- "medium": "dd MMM y G",
1605
- "short": "dd/MM/yy GGGGG"
1606
- },
1607
- "timeFormats": {
1608
- "full": "HH:mm:ss zzzz",
1609
- "long": "HH:mm:ss z",
1610
- "medium": "HH:mm:ss",
1611
- "short": "HH:mm"
1612
- },
1613
- "dateTimeFormats": {
1614
- "full": "{1} 'alle' {0}",
1615
- "long": "{1} 'alle' {0}",
1616
- "medium": "{1}, {0}",
1617
- "short": "{1}, {0}",
1618
- "availableFormats": {
1619
- "Bh": "h B",
1620
- "Bhm": "h:mm B",
1621
- "Bhms": "h:mm:ss B",
1622
- "d": "d",
1623
- "E": "ccc",
1624
- "EBhm": "E h:mm B",
1625
- "EBhms": "E h:mm:ss B",
1626
- "Ed": "E d",
1627
- "Ehm": "E h:mm a",
1628
- "EHm": "E HH:mm",
1629
- "Ehms": "E h:mm:ss a",
1630
- "EHms": "E HH:mm:ss",
1631
- "Gy": "y G",
1632
- "GyMMM": "MMM y G",
1633
- "GyMMMd": "d MMM y G",
1634
- "GyMMMEd": "E d MMM y G",
1635
- "h": "hh a",
1636
- "H": "HH",
1637
- "hm": "hh:mm a",
1638
- "Hm": "HH:mm",
1639
- "hms": "hh:mm:ss a",
1640
- "Hms": "HH:mm:ss",
1641
- "M": "L",
1642
- "Md": "d/M",
1643
- "MEd": "E d/M",
1644
- "MMM": "LLL",
1645
- "MMMd": "d MMM",
1646
- "MMMEd": "E d MMM",
1647
- "MMMMd": "d MMMM",
1648
- "ms": "mm:ss",
1649
- "y": "y G",
1650
- "yyyy": "y G",
1651
- "yyyyM": "M/y GGGGG",
1652
- "yyyyMd": "d/M/y GGGGG",
1653
- "yyyyMEd": "E d/M/y GGGGG",
1654
- "yyyyMMM": "MMM y G",
1655
- "yyyyMMMd": "d MMM y G",
1656
- "yyyyMMMEd": "E d MMM y G",
1657
- "yyyyMMMM": "MMMM y G",
1658
- "yyyyQQQ": "QQQ y G",
1659
- "yyyyQQQQ": "QQQQ y G"
1660
- },
1661
- "appendItems": {
1662
- "Day": "{0} ({2}: {1})",
1663
- "Day-Of-Week": "{0} {1}",
1664
- "Era": "{1} {0}",
1665
- "Hour": "{0} ({2}: {1})",
1666
- "Minute": "{0} ({2}: {1})",
1667
- "Month": "{0} ({2}: {1})",
1668
- "Quarter": "{0} ({2}: {1})",
1669
- "Second": "{0} ({2}: {1})",
1670
- "Timezone": "{0} {1}",
1671
- "Week": "{0} ({2}: {1})",
1672
- "Year": "{1} {0}"
1673
- },
1674
- "intervalFormats": {
1675
- "intervalFormatFallback": "{0} - {1}",
1676
- "Bh": {
1677
- "B": "h B – h B",
1678
- "h": "h – h B"
1679
- },
1680
- "Bhm": {
1681
- "B": "h:mm B – h:mm B",
1682
- "h": "h:mm – h:mm B",
1683
- "m": "h:mm – h:mm B"
1684
- },
1685
- "d": {
1686
- "d": "d–d"
1687
- },
1688
- "Gy": {
1689
- "G": "G y – G y",
1690
- "y": "G y–y"
1691
- },
1692
- "GyM": {
1693
- "G": "GGGGG y-MM – GGGGG y-MM",
1694
- "M": "M/y – M/y GGGGG",
1695
- "y": "M/y – M/y GGGGG"
1696
- },
1697
- "GyMd": {
1698
- "d": "d/M/y – d/M/y GGGGG",
1699
- "G": "d/M/y GGGGG – d/M/y GGGGG",
1700
- "M": "d/M/y – d/M/y GGGGG",
1701
- "y": "d/M/y – d/M/y GGGGG"
1702
- },
1703
- "GyMEd": {
1704
- "d": "E, d/M/y – E, d/M/y GGGGG",
1705
- "G": "E, d/M/y – E, d/M/y GGGGG",
1706
- "M": "E, d/M/y – E, d/M/y GGGGG",
1707
- "y": "E d/M/y – E d/M/y GGGGG"
1708
- },
1709
- "GyMMM": {
1710
- "G": "MMM y G – MMM y G",
1711
- "M": "MMM – MMM y G",
1712
- "y": "MMM y – MMM y G"
1713
- },
1714
- "GyMMMd": {
1715
- "d": "d – d MMM y G",
1716
- "G": "d MMM y G – d MMM y G",
1717
- "M": "d MMM – d MMM y G",
1718
- "y": "d MMM y – d MMM y G"
1719
- },
1720
- "GyMMMEd": {
1721
- "d": "E d MMM – E d MMM y G",
1722
- "G": "E d MMM y G – E d MMM y G",
1723
- "M": "E d MMM – E d MMM y G",
1724
- "y": "E d MMM y – E d MMM y G"
1725
- },
1726
- "h": {
1727
- "a": "h a – h a",
1728
- "h": "h–h a"
1729
- },
1730
- "H": {
1731
- "H": "HH–HH"
1732
- },
1733
- "hm": {
1734
- "a": "h:mm a – h:mm a",
1735
- "h": "h:mm–h:mm a",
1736
- "m": "h:mm–h:mm a"
1737
- },
1738
- "Hm": {
1739
- "H": "HH:mm–HH:mm",
1740
- "m": "HH:mm–HH:mm"
1741
- },
1742
- "hmv": {
1743
- "a": "h:mm a – h:mm a v",
1744
- "h": "h:mm–h:mm a v",
1745
- "m": "h:mm–h:mm a v"
1746
- },
1747
- "Hmv": {
1748
- "H": "HH:mm–HH:mm v",
1749
- "m": "HH:mm–HH:mm v"
1750
- },
1751
- "hv": {
1752
- "a": "h a – h a v",
1753
- "h": "h–h a v"
1754
- },
1755
- "Hv": {
1756
- "H": "HH–HH v"
1757
- },
1758
- "M": {
1759
- "M": "M–M"
1760
- },
1761
- "Md": {
1762
- "d": "dd/MM – dd/MM",
1763
- "M": "dd/MM – dd/MM"
1764
- },
1765
- "MEd": {
1766
- "d": "E dd/MM – E dd/MM",
1767
- "M": "E dd/MM – E dd/MM"
1768
- },
1769
- "MMM": {
1770
- "M": "MMM–MMM"
1771
- },
1772
- "MMMd": {
1773
- "d": "dd–dd MMM",
1774
- "M": "dd MMM – dd MMM"
1775
- },
1776
- "MMMEd": {
1777
- "d": "E dd – E dd MMM",
1778
- "M": "E dd MMM – E dd MMM"
1779
- },
1780
- "y": {
1781
- "y": "y–y G"
1782
- },
1783
- "yM": {
1784
- "M": "MM/y – MM/y G",
1785
- "y": "MM/y – MM/y G"
1786
- },
1787
- "yMd": {
1788
- "d": "dd/MM/y – dd/MM/y G",
1789
- "M": "dd/MM/y – dd/MM/y G",
1790
- "y": "dd/MM/y – dd/MM/y G"
1791
- },
1792
- "yMEd": {
1793
- "d": "E dd/MM/y – E dd/MM/y G",
1794
- "M": "E dd/MM/y – E dd/MM/y G",
1795
- "y": "E dd/MM/y – E dd/MM/y G"
1796
- },
1797
- "yMMM": {
1798
- "M": "MMM–MMM y G",
1799
- "y": "MMM y – MMM y G"
1800
- },
1801
- "yMMMd": {
1802
- "d": "dd–dd MMM y G",
1803
- "M": "dd MMM – dd MMM y G",
1804
- "y": "dd MMM y – dd MMM y G"
1805
- },
1806
- "yMMMEd": {
1807
- "d": "E d – E d MMM y G",
1808
- "M": "E d MMM – E d MMM y G",
1809
- "y": "E d MMM y – E d MMM y G"
1810
- },
1811
- "yMMMM": {
1812
- "M": "MMMM–MMMM y G",
1813
- "y": "MMMM y – MMMM y G"
1814
- }
1815
- }
1816
- },
1817
- "months": {
1818
- "format": {
1819
- "abbreviated": [
1820
- "Muh.",
1821
- "Saf.",
1822
- "Rab. I",
1823
- "Rab. II",
1824
- "Jum. I",
1825
- "Jum. II",
1826
- "Raj.",
1827
- "Sha.",
1828
- "Ram.",
1829
- "Shaw.",
1830
- "Dhuʻl-Q.",
1831
- "Dhuʻl-H."
1832
- ],
1833
- "narrow": [
1834
- "1",
1835
- "2",
1836
- "3",
1837
- "4",
1838
- "5",
1839
- "6",
1840
- "7",
1841
- "8",
1842
- "9",
1843
- "10",
1844
- "11",
1845
- "12"
1846
- ],
1847
- "wide": [
1848
- "Muharram",
1849
- "Safar",
1850
- "Rabiʻ I",
1851
- "Rabiʻ II",
1852
- "Jumada I",
1853
- "Jumada II",
1854
- "Rajab",
1855
- "Shaʻban",
1856
- "Ramadan",
1857
- "Shawwal",
1858
- "Dhuʻl-Qiʻdah",
1859
- "Dhuʻl-Hijjah"
1860
- ]
1861
- },
1862
- "stand-alone": {
1863
- "abbreviated": [
1864
- "Muh.",
1865
- "Saf.",
1866
- "Rab. I",
1867
- "Rab. II",
1868
- "Jum. I",
1869
- "Jum. II",
1870
- "Raj.",
1871
- "Sha.",
1872
- "Ram.",
1873
- "Shaw.",
1874
- "Dhuʻl-Q.",
1875
- "Dhuʻl-H."
1876
- ],
1877
- "narrow": [
1878
- "1",
1879
- "2",
1880
- "3",
1881
- "4",
1882
- "5",
1883
- "6",
1884
- "7",
1885
- "8",
1886
- "9",
1887
- "10",
1888
- "11",
1889
- "12"
1890
- ],
1891
- "wide": [
1892
- "Muharram",
1893
- "Safar",
1894
- "Rabiʻ I",
1895
- "Rabiʻ II",
1896
- "Jumada I",
1897
- "Jumada II",
1898
- "Rajab",
1899
- "Shaʻban",
1900
- "Ramadan",
1901
- "Shawwal",
1902
- "Dhuʻl-Qiʻdah",
1903
- "Dhuʻl-Hijjah"
1904
- ]
1905
- }
1906
- },
1907
- "days": {
1908
- "format": {
1909
- "abbreviated": [
1910
- "dom",
1911
- "lun",
1912
- "mar",
1913
- "mer",
1914
- "gio",
1915
- "ven",
1916
- "sab"
1917
- ],
1918
- "narrow": [
1919
- "D",
1920
- "L",
1921
- "M",
1922
- "M",
1923
- "G",
1924
- "V",
1925
- "S"
1926
- ],
1927
- "short": [
1928
- "dom",
1929
- "lun",
1930
- "mar",
1931
- "mer",
1932
- "gio",
1933
- "ven",
1934
- "sab"
1935
- ],
1936
- "wide": [
1937
- "domenica",
1938
- "lunedì",
1939
- "martedì",
1940
- "mercoledì",
1941
- "giovedì",
1942
- "venerdì",
1943
- "sabato"
1944
- ]
1945
- },
1946
- "stand-alone": {
1947
- "abbreviated": [
1948
- "dom",
1949
- "lun",
1950
- "mar",
1951
- "mer",
1952
- "gio",
1953
- "ven",
1954
- "sab"
1955
- ],
1956
- "narrow": [
1957
- "D",
1958
- "L",
1959
- "M",
1960
- "M",
1961
- "G",
1962
- "V",
1963
- "S"
1964
- ],
1965
- "short": [
1966
- "dom",
1967
- "lun",
1968
- "mar",
1969
- "mer",
1970
- "gio",
1971
- "ven",
1972
- "sab"
1973
- ],
1974
- "wide": [
1975
- "domenica",
1976
- "lunedì",
1977
- "martedì",
1978
- "mercoledì",
1979
- "giovedì",
1980
- "venerdì",
1981
- "sabato"
1982
- ]
1983
- }
1984
- },
1985
- "quarters": {
1986
- "format": {
1987
- "abbreviated": [
1988
- "T1",
1989
- "T2",
1990
- "T3",
1991
- "T4"
1992
- ],
1993
- "narrow": [
1994
- "1",
1995
- "2",
1996
- "3",
1997
- "4"
1998
- ],
1999
- "wide": [
2000
- "1º trimestre",
2001
- "2º trimestre",
2002
- "3º trimestre",
2003
- "4º trimestre"
2004
- ]
2005
- },
2006
- "stand-alone": {
2007
- "abbreviated": [
2008
- "T1",
2009
- "T2",
2010
- "T3",
2011
- "T4"
2012
- ],
2013
- "narrow": [
2014
- "1",
2015
- "2",
2016
- "3",
2017
- "4"
2018
- ],
2019
- "wide": [
2020
- "1º trimestre",
2021
- "2º trimestre",
2022
- "3º trimestre",
2023
- "4º trimestre"
2024
- ]
2025
- }
2026
- },
2027
- "dayPeriods": {
2028
- "format": {
2029
- "abbreviated": [
2030
- "AM",
2031
- "PM"
2032
- ],
2033
- "narrow": [
2034
- "m.",
2035
- "p."
2036
- ],
2037
- "wide": [
2038
- "AM",
2039
- "PM"
2040
- ]
2041
- },
2042
- "stand-alone": {
2043
- "abbreviated": [
2044
- "AM",
2045
- "PM"
2046
- ],
2047
- "narrow": [
2048
- "m.",
2049
- "p."
2050
- ],
2051
- "wide": [
2052
- "AM",
2053
- "PM"
2054
- ]
2055
- }
2056
- },
2057
- "era-wide": {
2058
- "0": "AH"
2059
- },
2060
- "era-abbreviated": {
2061
- "0": "AH"
2062
- },
2063
- "era-narrow": {
2064
- "0": "AH"
2065
- }
2066
- },
2067
- "ca-japanese": {
2068
- "dateFormats": {
2069
- "full": "EEEE d MMMM y G",
2070
- "long": "dd MMMM y G",
2071
- "medium": "dd MMM y G",
2072
- "short": "dd/MM/yy GGGGG"
2073
- },
2074
- "timeFormats": {
2075
- "full": "HH:mm:ss zzzz",
2076
- "long": "HH:mm:ss z",
2077
- "medium": "HH:mm:ss",
2078
- "short": "HH:mm"
2079
- },
2080
- "dateTimeFormats": {
2081
- "full": "{1} 'alle' {0}",
2082
- "long": "{1} 'alle' {0}",
2083
- "medium": "{1}, {0}",
2084
- "short": "{1}, {0}",
2085
- "availableFormats": {
2086
- "Bh": "h B",
2087
- "Bhm": "h:mm B",
2088
- "Bhms": "h:mm:ss B",
2089
- "d": "d",
2090
- "E": "ccc",
2091
- "EBhm": "E h:mm B",
2092
- "EBhms": "E h:mm:ss B",
2093
- "Ed": "E d",
2094
- "Ehm": "E h:mm a",
2095
- "EHm": "E HH:mm",
2096
- "Ehms": "E h:mm:ss a",
2097
- "EHms": "E HH:mm:ss",
2098
- "Gy": "y G",
2099
- "GyMMM": "MMM y G",
2100
- "GyMMMd": "d MMM y G",
2101
- "GyMMMEd": "E d MMM y G",
2102
- "h": "hh a",
2103
- "H": "HH",
2104
- "hm": "hh:mm a",
2105
- "Hm": "HH:mm",
2106
- "hms": "hh:mm:ss a",
2107
- "Hms": "HH:mm:ss",
2108
- "M": "L",
2109
- "Md": "d/M",
2110
- "MEd": "E d/M",
2111
- "MMM": "LLL",
2112
- "MMMd": "d MMM",
2113
- "MMMEd": "E d MMM",
2114
- "MMMMd": "d MMMM",
2115
- "ms": "mm:ss",
2116
- "y": "y G",
2117
- "yyyy": "y G",
2118
- "yyyyM": "M/y GGGGG",
2119
- "yyyyMd": "d/M/y GGGGG",
2120
- "yyyyMEd": "E d/M/y GGGGG",
2121
- "yyyyMMM": "MMM y G",
2122
- "yyyyMMMd": "d MMM y G",
2123
- "yyyyMMMEd": "E d MMM y G",
2124
- "yyyyMMMM": "MMMM y G",
2125
- "yyyyQQQ": "QQQ y G",
2126
- "yyyyQQQQ": "QQQQ y G"
2127
- },
2128
- "appendItems": {
2129
- "Day": "{0} ({2}: {1})",
2130
- "Day-Of-Week": "{0} {1}",
2131
- "Era": "{1} {0}",
2132
- "Hour": "{0} ({2}: {1})",
2133
- "Minute": "{0} ({2}: {1})",
2134
- "Month": "{0} ({2}: {1})",
2135
- "Quarter": "{0} ({2}: {1})",
2136
- "Second": "{0} ({2}: {1})",
2137
- "Timezone": "{0} {1}",
2138
- "Week": "{0} ({2}: {1})",
2139
- "Year": "{1} {0}"
2140
- },
2141
- "intervalFormats": {
2142
- "intervalFormatFallback": "{0} - {1}",
2143
- "Bh": {
2144
- "B": "h B – h B",
2145
- "h": "h – h B"
2146
- },
2147
- "Bhm": {
2148
- "B": "h:mm B – h:mm B",
2149
- "h": "h:mm – h:mm B",
2150
- "m": "h:mm – h:mm B"
2151
- },
2152
- "d": {
2153
- "d": "d–d"
2154
- },
2155
- "Gy": {
2156
- "G": "G y – G y",
2157
- "y": "G y–y"
2158
- },
2159
- "GyM": {
2160
- "G": "GGGGG y-MM – GGGGG y-MM",
2161
- "M": "M/y – M/y GGGGG",
2162
- "y": "M/y – M/y GGGGG"
2163
- },
2164
- "GyMd": {
2165
- "d": "d/M/y – d/M/y GGGGG",
2166
- "G": "d/M/y GGGGG – d/M/y GGGGG",
2167
- "M": "d/M/y – d/M/y GGGGG",
2168
- "y": "d/M/y – d/M/y GGGGG"
2169
- },
2170
- "GyMEd": {
2171
- "d": "E, d/M/y – E, d/M/y GGGGG",
2172
- "G": "E, d/M/y – E, d/M/y GGGGG",
2173
- "M": "E, d/M/y – E, d/M/y GGGGG",
2174
- "y": "E d/M/y – E d/M/y GGGGG"
2175
- },
2176
- "GyMMM": {
2177
- "G": "MMM y G – MMM y G",
2178
- "M": "MMM – MMM y G",
2179
- "y": "MMM y – MMM y G"
2180
- },
2181
- "GyMMMd": {
2182
- "d": "d – d MMM y G",
2183
- "G": "d MMM y G – d MMM y G",
2184
- "M": "d MMM – d MMM y G",
2185
- "y": "d MMM y – d MMM y G"
2186
- },
2187
- "GyMMMEd": {
2188
- "d": "E d MMM – E d MMM y G",
2189
- "G": "E d MMM y G – E d MMM y G",
2190
- "M": "E d MMM – E d MMM y G",
2191
- "y": "E d MMM y – E d MMM y G"
2192
- },
2193
- "h": {
2194
- "a": "h a – h a",
2195
- "h": "h–h a"
2196
- },
2197
- "H": {
2198
- "H": "HH–HH"
2199
- },
2200
- "hm": {
2201
- "a": "h:mm a – h:mm a",
2202
- "h": "h:mm–h:mm a",
2203
- "m": "h:mm–h:mm a"
2204
- },
2205
- "Hm": {
2206
- "H": "HH:mm–HH:mm",
2207
- "m": "HH:mm–HH:mm"
2208
- },
2209
- "hmv": {
2210
- "a": "h:mm a – h:mm a v",
2211
- "h": "h:mm–h:mm a v",
2212
- "m": "h:mm–h:mm a v"
2213
- },
2214
- "Hmv": {
2215
- "H": "HH:mm–HH:mm v",
2216
- "m": "HH:mm–HH:mm v"
2217
- },
2218
- "hv": {
2219
- "a": "h a – h a v",
2220
- "h": "h–h a v"
2221
- },
2222
- "Hv": {
2223
- "H": "HH–HH v"
2224
- },
2225
- "M": {
2226
- "M": "M–M"
2227
- },
2228
- "Md": {
2229
- "d": "dd/MM – dd/MM",
2230
- "M": "dd/MM – dd/MM"
2231
- },
2232
- "MEd": {
2233
- "d": "E dd/MM – E dd/MM",
2234
- "M": "E dd/MM – E dd/MM"
2235
- },
2236
- "MMM": {
2237
- "M": "MMM–MMM"
2238
- },
2239
- "MMMd": {
2240
- "d": "dd–dd MMM",
2241
- "M": "dd MMM – dd MMM"
2242
- },
2243
- "MMMEd": {
2244
- "d": "E dd – E dd MMM",
2245
- "M": "E dd MMM – E dd MMM"
2246
- },
2247
- "y": {
2248
- "y": "y–y G",
2249
- "G": "y G–y G"
2250
- },
2251
- "yM": {
2252
- "M": "MM/y – MM/y G",
2253
- "y": "MM/y – MM/y G",
2254
- "G": "MM/y G – MM/y G"
2255
- },
2256
- "yMd": {
2257
- "d": "dd/MM/y – dd/MM/y G",
2258
- "M": "dd/MM/y – dd/MM/y G",
2259
- "y": "dd/MM/y – dd/MM/y G",
2260
- "G": "dd/MM/y G – dd/MM/y G"
2261
- },
2262
- "yMEd": {
2263
- "d": "E dd/MM/y – E dd/MM/y G",
2264
- "M": "E dd/MM/y – E dd/MM/y G",
2265
- "y": "E dd/MM/y – E dd/MM/y G",
2266
- "G": "E dd/MM/y G – E dd/MM/y G"
2267
- },
2268
- "yMMM": {
2269
- "M": "MMM–MMM y G",
2270
- "y": "MMM y – MMM y G",
2271
- "G": "MMM y G – MMM y G"
2272
- },
2273
- "yMMMd": {
2274
- "d": "dd–dd MMM y G",
2275
- "M": "dd MMM – dd MMM y G",
2276
- "y": "dd MMM y – dd MMM y G",
2277
- "G": "dd MMM y G – dd MMM y G"
2278
- },
2279
- "yMMMEd": {
2280
- "d": "E d – E d MMM y G",
2281
- "M": "E d MMM – E d MMM y G",
2282
- "y": "E d MMM y – E d MMM y G",
2283
- "G": "E d MMM y G – E d MMM y G"
2284
- },
2285
- "yMMMM": {
2286
- "M": "MMMM–MMMM y G",
2287
- "y": "MMMM y – MMMM y G",
2288
- "G": "MMMM y G – MMMM y G"
2289
- }
2290
- }
2291
- },
2292
- "months": {
2293
- "format": {
2294
- "abbreviated": [
2295
- "gen",
2296
- "feb",
2297
- "mar",
2298
- "apr",
2299
- "mag",
2300
- "giu",
2301
- "lug",
2302
- "ago",
2303
- "set",
2304
- "ott",
2305
- "nov",
2306
- "dic"
2307
- ],
2308
- "narrow": [
2309
- "G",
2310
- "F",
2311
- "M",
2312
- "A",
2313
- "M",
2314
- "G",
2315
- "L",
2316
- "A",
2317
- "S",
2318
- "O",
2319
- "N",
2320
- "D"
2321
- ],
2322
- "wide": [
2323
- "gennaio",
2324
- "febbraio",
2325
- "marzo",
2326
- "aprile",
2327
- "maggio",
2328
- "giugno",
2329
- "luglio",
2330
- "agosto",
2331
- "settembre",
2332
- "ottobre",
2333
- "novembre",
2334
- "dicembre"
2335
- ]
2336
- },
2337
- "stand-alone": {
2338
- "abbreviated": [
2339
- "gen",
2340
- "feb",
2341
- "mar",
2342
- "apr",
2343
- "mag",
2344
- "giu",
2345
- "lug",
2346
- "ago",
2347
- "set",
2348
- "ott",
2349
- "nov",
2350
- "dic"
2351
- ],
2352
- "narrow": [
2353
- "G",
2354
- "F",
2355
- "M",
2356
- "A",
2357
- "M",
2358
- "G",
2359
- "L",
2360
- "A",
2361
- "S",
2362
- "O",
2363
- "N",
2364
- "D"
2365
- ],
2366
- "wide": [
2367
- "gennaio",
2368
- "febbraio",
2369
- "marzo",
2370
- "aprile",
2371
- "maggio",
2372
- "giugno",
2373
- "luglio",
2374
- "agosto",
2375
- "settembre",
2376
- "ottobre",
2377
- "novembre",
2378
- "dicembre"
2379
- ]
2380
- }
2381
- },
2382
- "days": {
2383
- "format": {
2384
- "abbreviated": [
2385
- "dom",
2386
- "lun",
2387
- "mar",
2388
- "mer",
2389
- "gio",
2390
- "ven",
2391
- "sab"
2392
- ],
2393
- "narrow": [
2394
- "D",
2395
- "L",
2396
- "M",
2397
- "M",
2398
- "G",
2399
- "V",
2400
- "S"
2401
- ],
2402
- "short": [
2403
- "dom",
2404
- "lun",
2405
- "mar",
2406
- "mer",
2407
- "gio",
2408
- "ven",
2409
- "sab"
2410
- ],
2411
- "wide": [
2412
- "domenica",
2413
- "lunedì",
2414
- "martedì",
2415
- "mercoledì",
2416
- "giovedì",
2417
- "venerdì",
2418
- "sabato"
2419
- ]
2420
- },
2421
- "stand-alone": {
2422
- "abbreviated": [
2423
- "dom",
2424
- "lun",
2425
- "mar",
2426
- "mer",
2427
- "gio",
2428
- "ven",
2429
- "sab"
2430
- ],
2431
- "narrow": [
2432
- "D",
2433
- "L",
2434
- "M",
2435
- "M",
2436
- "G",
2437
- "V",
2438
- "S"
2439
- ],
2440
- "short": [
2441
- "dom",
2442
- "lun",
2443
- "mar",
2444
- "mer",
2445
- "gio",
2446
- "ven",
2447
- "sab"
2448
- ],
2449
- "wide": [
2450
- "domenica",
2451
- "lunedì",
2452
- "martedì",
2453
- "mercoledì",
2454
- "giovedì",
2455
- "venerdì",
2456
- "sabato"
2457
- ]
2458
- }
2459
- },
2460
- "quarters": {
2461
- "format": {
2462
- "abbreviated": [
2463
- "T1",
2464
- "T2",
2465
- "T3",
2466
- "T4"
2467
- ],
2468
- "narrow": [
2469
- "1",
2470
- "2",
2471
- "3",
2472
- "4"
2473
- ],
2474
- "wide": [
2475
- "1º trimestre",
2476
- "2º trimestre",
2477
- "3º trimestre",
2478
- "4º trimestre"
2479
- ]
2480
- },
2481
- "stand-alone": {
2482
- "abbreviated": [
2483
- "T1",
2484
- "T2",
2485
- "T3",
2486
- "T4"
2487
- ],
2488
- "narrow": [
2489
- "1",
2490
- "2",
2491
- "3",
2492
- "4"
2493
- ],
2494
- "wide": [
2495
- "1º trimestre",
2496
- "2º trimestre",
2497
- "3º trimestre",
2498
- "4º trimestre"
2499
- ]
2500
- }
2501
- },
2502
- "dayPeriods": {
2503
- "format": {
2504
- "abbreviated": [
2505
- "AM",
2506
- "PM"
2507
- ],
2508
- "narrow": [
2509
- "m.",
2510
- "p."
2511
- ],
2512
- "wide": [
2513
- "AM",
2514
- "PM"
2515
- ]
2516
- },
2517
- "stand-alone": {
2518
- "abbreviated": [
2519
- "AM",
2520
- "PM"
2521
- ],
2522
- "narrow": [
2523
- "m.",
2524
- "p."
2525
- ],
2526
- "wide": [
2527
- "AM",
2528
- "PM"
2529
- ]
2530
- }
2531
- },
2532
- "era-wide": {
2533
- "232": "Meiji",
2534
- "233": "Taishō",
2535
- "234": "Shōwa",
2536
- "235": "Heisei",
2537
- "236": "Reiwa"
2538
- },
2539
- "era-abbreviated": {
2540
- "232": "Meiji",
2541
- "233": "Taishō",
2542
- "234": "Shōwa",
2543
- "235": "Heisei",
2544
- "236": "Reiwa"
2545
- },
2546
- "era-narrow": {
2547
- "232": "M",
2548
- "233": "T",
2549
- "234": "S",
2550
- "235": "H",
2551
- "236": "R"
2552
- }
2553
- },
2554
- "ca-persian": {
2555
- "dateFormats": {
2556
- "full": "EEEE d MMMM y G",
2557
- "long": "dd MMMM y G",
2558
- "medium": "dd MMM y G",
2559
- "short": "dd/MM/yy GGGGG"
2560
- },
2561
- "timeFormats": {
2562
- "full": "HH:mm:ss zzzz",
2563
- "long": "HH:mm:ss z",
2564
- "medium": "HH:mm:ss",
2565
- "short": "HH:mm"
2566
- },
2567
- "dateTimeFormats": {
2568
- "full": "{1} 'alle' {0}",
2569
- "long": "{1} 'alle' {0}",
2570
- "medium": "{1}, {0}",
2571
- "short": "{1}, {0}",
2572
- "availableFormats": {
2573
- "Bh": "h B",
2574
- "Bhm": "h:mm B",
2575
- "Bhms": "h:mm:ss B",
2576
- "d": "d",
2577
- "E": "ccc",
2578
- "EBhm": "E h:mm B",
2579
- "EBhms": "E h:mm:ss B",
2580
- "Ed": "E d",
2581
- "Ehm": "E h:mm a",
2582
- "EHm": "E HH:mm",
2583
- "Ehms": "E h:mm:ss a",
2584
- "EHms": "E HH:mm:ss",
2585
- "Gy": "y G",
2586
- "GyMMM": "MMM y G",
2587
- "GyMMMd": "d MMM y G",
2588
- "GyMMMEd": "E d MMM y G",
2589
- "h": "hh a",
2590
- "H": "HH",
2591
- "hm": "hh:mm a",
2592
- "Hm": "HH:mm",
2593
- "hms": "hh:mm:ss a",
2594
- "Hms": "HH:mm:ss",
2595
- "M": "L",
2596
- "Md": "d/M",
2597
- "MEd": "E d/M",
2598
- "MMM": "LLL",
2599
- "MMMd": "d MMM",
2600
- "MMMEd": "E d MMM",
2601
- "MMMMd": "d MMMM",
2602
- "ms": "mm:ss",
2603
- "y": "y G",
2604
- "yyyy": "y G",
2605
- "yyyyM": "M/y GGGGG",
2606
- "yyyyMd": "d/M/y GGGGG",
2607
- "yyyyMEd": "E d/M/y GGGGG",
2608
- "yyyyMMM": "MMM y G",
2609
- "yyyyMMMd": "d MMM y G",
2610
- "yyyyMMMEd": "E d MMM y G",
2611
- "yyyyMMMM": "MMMM y G",
2612
- "yyyyQQQ": "QQQ y G",
2613
- "yyyyQQQQ": "QQQQ y G"
2614
- },
2615
- "appendItems": {
2616
- "Day": "{0} ({2}: {1})",
2617
- "Day-Of-Week": "{0} {1}",
2618
- "Era": "{1} {0}",
2619
- "Hour": "{0} ({2}: {1})",
2620
- "Minute": "{0} ({2}: {1})",
2621
- "Month": "{0} ({2}: {1})",
2622
- "Quarter": "{0} ({2}: {1})",
2623
- "Second": "{0} ({2}: {1})",
2624
- "Timezone": "{0} {1}",
2625
- "Week": "{0} ({2}: {1})",
2626
- "Year": "{1} {0}"
2627
- },
2628
- "intervalFormats": {
2629
- "intervalFormatFallback": "{0} - {1}",
2630
- "Bh": {
2631
- "B": "h B – h B",
2632
- "h": "h – h B"
2633
- },
2634
- "Bhm": {
2635
- "B": "h:mm B – h:mm B",
2636
- "h": "h:mm – h:mm B",
2637
- "m": "h:mm – h:mm B"
2638
- },
2639
- "d": {
2640
- "d": "d–d"
2641
- },
2642
- "Gy": {
2643
- "G": "G y – G y",
2644
- "y": "G y–y"
2645
- },
2646
- "GyM": {
2647
- "G": "GGGGG y-MM – GGGGG y-MM",
2648
- "M": "M/y – M/y GGGGG",
2649
- "y": "M/y – M/y GGGGG"
2650
- },
2651
- "GyMd": {
2652
- "d": "d/M/y – d/M/y GGGGG",
2653
- "G": "d/M/y GGGGG – d/M/y GGGGG",
2654
- "M": "d/M/y – d/M/y GGGGG",
2655
- "y": "d/M/y – d/M/y GGGGG"
2656
- },
2657
- "GyMEd": {
2658
- "d": "E, d/M/y – E, d/M/y GGGGG",
2659
- "G": "E, d/M/y – E, d/M/y GGGGG",
2660
- "M": "E, d/M/y – E, d/M/y GGGGG",
2661
- "y": "E d/M/y – E d/M/y GGGGG"
2662
- },
2663
- "GyMMM": {
2664
- "G": "MMM y G – MMM y G",
2665
- "M": "MMM – MMM y G",
2666
- "y": "MMM y – MMM y G"
2667
- },
2668
- "GyMMMd": {
2669
- "d": "d – d MMM y G",
2670
- "G": "d MMM y G – d MMM y G",
2671
- "M": "d MMM – d MMM y G",
2672
- "y": "d MMM y – d MMM y G"
2673
- },
2674
- "GyMMMEd": {
2675
- "d": "E d MMM – E d MMM y G",
2676
- "G": "E d MMM y G – E d MMM y G",
2677
- "M": "E d MMM – E d MMM y G",
2678
- "y": "E d MMM y – E d MMM y G"
2679
- },
2680
- "h": {
2681
- "a": "h a – h a",
2682
- "h": "h–h a"
2683
- },
2684
- "H": {
2685
- "H": "HH–HH"
2686
- },
2687
- "hm": {
2688
- "a": "h:mm a – h:mm a",
2689
- "h": "h:mm–h:mm a",
2690
- "m": "h:mm–h:mm a"
2691
- },
2692
- "Hm": {
2693
- "H": "HH:mm–HH:mm",
2694
- "m": "HH:mm–HH:mm"
2695
- },
2696
- "hmv": {
2697
- "a": "h:mm a – h:mm a v",
2698
- "h": "h:mm–h:mm a v",
2699
- "m": "h:mm–h:mm a v"
2700
- },
2701
- "Hmv": {
2702
- "H": "HH:mm–HH:mm v",
2703
- "m": "HH:mm–HH:mm v"
2704
- },
2705
- "hv": {
2706
- "a": "h a – h a v",
2707
- "h": "h–h a v"
2708
- },
2709
- "Hv": {
2710
- "H": "HH–HH v"
2711
- },
2712
- "M": {
2713
- "M": "M–M"
2714
- },
2715
- "Md": {
2716
- "d": "dd/MM – dd/MM",
2717
- "M": "dd/MM – dd/MM"
2718
- },
2719
- "MEd": {
2720
- "d": "E dd/MM – E dd/MM",
2721
- "M": "E dd/MM – E dd/MM"
2722
- },
2723
- "MMM": {
2724
- "M": "MMM–MMM"
2725
- },
2726
- "MMMd": {
2727
- "d": "dd–dd MMM",
2728
- "M": "dd MMM – dd MMM"
2729
- },
2730
- "MMMEd": {
2731
- "d": "E dd – E dd MMM",
2732
- "M": "E dd MMM – E dd MMM"
2733
- },
2734
- "y": {
2735
- "y": "y–y G"
2736
- },
2737
- "yM": {
2738
- "M": "MM/y – MM/y G",
2739
- "y": "MM/y – MM/y G"
2740
- },
2741
- "yMd": {
2742
- "d": "dd/MM/y – dd/MM/y G",
2743
- "M": "dd/MM/y – dd/MM/y G",
2744
- "y": "dd/MM/y – dd/MM/y G"
2745
- },
2746
- "yMEd": {
2747
- "d": "E dd/MM/y – E dd/MM/y G",
2748
- "M": "E dd/MM/y – E dd/MM/y G",
2749
- "y": "E dd/MM/y – E dd/MM/y G"
2750
- },
2751
- "yMMM": {
2752
- "M": "MMM–MMM y G",
2753
- "y": "MMM y – MMM y G"
2754
- },
2755
- "yMMMd": {
2756
- "d": "dd–dd MMM y G",
2757
- "M": "dd MMM – dd MMM y G",
2758
- "y": "dd MMM y – dd MMM y G"
2759
- },
2760
- "yMMMEd": {
2761
- "d": "E d – E d MMM y G",
2762
- "M": "E d MMM – E d MMM y G",
2763
- "y": "E d MMM y – E d MMM y G"
2764
- },
2765
- "yMMMM": {
2766
- "M": "MMMM–MMMM y G",
2767
- "y": "MMMM y – MMMM y G"
2768
- }
2769
- }
2770
- },
2771
- "months": {
2772
- "format": {
2773
- "abbreviated": [
2774
- "Farvardin",
2775
- "Ordibehesht",
2776
- "Khordad",
2777
- "Tir",
2778
- "Mordad",
2779
- "Shahrivar",
2780
- "Mehr",
2781
- "Aban",
2782
- "Azar",
2783
- "Dey",
2784
- "Bahman",
2785
- "Esfand"
2786
- ],
2787
- "narrow": [
2788
- "1",
2789
- "2",
2790
- "3",
2791
- "4",
2792
- "5",
2793
- "6",
2794
- "7",
2795
- "8",
2796
- "9",
2797
- "10",
2798
- "11",
2799
- "12"
2800
- ],
2801
- "wide": [
2802
- "Farvardin",
2803
- "Ordibehesht",
2804
- "Khordad",
2805
- "Tir",
2806
- "Mordad",
2807
- "Shahrivar",
2808
- "Mehr",
2809
- "Aban",
2810
- "Azar",
2811
- "Dey",
2812
- "Bahman",
2813
- "Esfand"
2814
- ]
2815
- },
2816
- "stand-alone": {
2817
- "abbreviated": [
2818
- "Farvardin",
2819
- "Ordibehesht",
2820
- "Khordad",
2821
- "Tir",
2822
- "Mordad",
2823
- "Shahrivar",
2824
- "Mehr",
2825
- "Aban",
2826
- "Azar",
2827
- "Dey",
2828
- "Bahman",
2829
- "Esfand"
2830
- ],
2831
- "narrow": [
2832
- "1",
2833
- "2",
2834
- "3",
2835
- "4",
2836
- "5",
2837
- "6",
2838
- "7",
2839
- "8",
2840
- "9",
2841
- "10",
2842
- "11",
2843
- "12"
2844
- ],
2845
- "wide": [
2846
- "Farvardin",
2847
- "Ordibehesht",
2848
- "Khordad",
2849
- "Tir",
2850
- "Mordad",
2851
- "Shahrivar",
2852
- "Mehr",
2853
- "Aban",
2854
- "Azar",
2855
- "Dey",
2856
- "Bahman",
2857
- "Esfand"
2858
- ]
2859
- }
2860
- },
2861
- "days": {
2862
- "format": {
2863
- "abbreviated": [
2864
- "dom",
2865
- "lun",
2866
- "mar",
2867
- "mer",
2868
- "gio",
2869
- "ven",
2870
- "sab"
2871
- ],
2872
- "narrow": [
2873
- "D",
2874
- "L",
2875
- "M",
2876
- "M",
2877
- "G",
2878
- "V",
2879
- "S"
2880
- ],
2881
- "short": [
2882
- "dom",
2883
- "lun",
2884
- "mar",
2885
- "mer",
2886
- "gio",
2887
- "ven",
2888
- "sab"
2889
- ],
2890
- "wide": [
2891
- "domenica",
2892
- "lunedì",
2893
- "martedì",
2894
- "mercoledì",
2895
- "giovedì",
2896
- "venerdì",
2897
- "sabato"
2898
- ]
2899
- },
2900
- "stand-alone": {
2901
- "abbreviated": [
2902
- "dom",
2903
- "lun",
2904
- "mar",
2905
- "mer",
2906
- "gio",
2907
- "ven",
2908
- "sab"
2909
- ],
2910
- "narrow": [
2911
- "D",
2912
- "L",
2913
- "M",
2914
- "M",
2915
- "G",
2916
- "V",
2917
- "S"
2918
- ],
2919
- "short": [
2920
- "dom",
2921
- "lun",
2922
- "mar",
2923
- "mer",
2924
- "gio",
2925
- "ven",
2926
- "sab"
2927
- ],
2928
- "wide": [
2929
- "domenica",
2930
- "lunedì",
2931
- "martedì",
2932
- "mercoledì",
2933
- "giovedì",
2934
- "venerdì",
2935
- "sabato"
2936
- ]
2937
- }
2938
- },
2939
- "quarters": {
2940
- "format": {
2941
- "abbreviated": [
2942
- "T1",
2943
- "T2",
2944
- "T3",
2945
- "T4"
2946
- ],
2947
- "narrow": [
2948
- "1",
2949
- "2",
2950
- "3",
2951
- "4"
2952
- ],
2953
- "wide": [
2954
- "1º trimestre",
2955
- "2º trimestre",
2956
- "3º trimestre",
2957
- "4º trimestre"
2958
- ]
2959
- },
2960
- "stand-alone": {
2961
- "abbreviated": [
2962
- "T1",
2963
- "T2",
2964
- "T3",
2965
- "T4"
2966
- ],
2967
- "narrow": [
2968
- "1",
2969
- "2",
2970
- "3",
2971
- "4"
2972
- ],
2973
- "wide": [
2974
- "1º trimestre",
2975
- "2º trimestre",
2976
- "3º trimestre",
2977
- "4º trimestre"
2978
- ]
2979
- }
2980
- },
2981
- "dayPeriods": {
2982
- "format": {
2983
- "abbreviated": [
2984
- "AM",
2985
- "PM"
2986
- ],
2987
- "narrow": [
2988
- "m.",
2989
- "p."
2990
- ],
2991
- "wide": [
2992
- "AM",
2993
- "PM"
2994
- ]
2995
- },
2996
- "stand-alone": {
2997
- "abbreviated": [
2998
- "AM",
2999
- "PM"
3000
- ],
3001
- "narrow": [
3002
- "m.",
3003
- "p."
3004
- ],
3005
- "wide": [
3006
- "AM",
3007
- "PM"
3008
- ]
3009
- }
3010
- },
3011
- "era-wide": {
3012
- "0": "AP"
3013
- },
3014
- "era-abbreviated": {
3015
- "0": "AP"
3016
- },
3017
- "era-narrow": {
3018
- "0": "AP"
3019
- }
3020
- },
3021
- "ca-buddhist": {
3022
- "dateFormats": {
3023
- "full": "EEEE d MMMM y G",
3024
- "long": "dd MMMM y G",
3025
- "medium": "dd MMM y G",
3026
- "short": "dd/MM/yy GGGGG"
3027
- },
3028
- "timeFormats": {
3029
- "full": "HH:mm:ss zzzz",
3030
- "long": "HH:mm:ss z",
3031
- "medium": "HH:mm:ss",
3032
- "short": "HH:mm"
3033
- },
3034
- "dateTimeFormats": {
3035
- "full": "{1} 'alle' {0}",
3036
- "long": "{1} 'alle' {0}",
3037
- "medium": "{1}, {0}",
3038
- "short": "{1}, {0}",
3039
- "availableFormats": {
3040
- "Bh": "h B",
3041
- "Bhm": "h:mm B",
3042
- "Bhms": "h:mm:ss B",
3043
- "d": "d",
3044
- "E": "ccc",
3045
- "EBhm": "E h:mm B",
3046
- "EBhms": "E h:mm:ss B",
3047
- "Ed": "E d",
3048
- "Ehm": "E h:mm a",
3049
- "EHm": "E HH:mm",
3050
- "Ehms": "E h:mm:ss a",
3051
- "EHms": "E HH:mm:ss",
3052
- "Gy": "y G",
3053
- "GyMMM": "MMM y G",
3054
- "GyMMMd": "d MMM y G",
3055
- "GyMMMEd": "E d MMM y G",
3056
- "h": "hh a",
3057
- "H": "HH",
3058
- "hm": "hh:mm a",
3059
- "Hm": "HH:mm",
3060
- "hms": "hh:mm:ss a",
3061
- "Hms": "HH:mm:ss",
3062
- "M": "L",
3063
- "Md": "d/M",
3064
- "MEd": "E d/M",
3065
- "MMM": "LLL",
3066
- "MMMd": "d MMM",
3067
- "MMMEd": "E d MMM",
3068
- "MMMMd": "d MMMM",
3069
- "ms": "mm:ss",
3070
- "y": "y G",
3071
- "yyyy": "y G",
3072
- "yyyyM": "M/y GGGGG",
3073
- "yyyyMd": "d/M/y GGGGG",
3074
- "yyyyMEd": "E d/M/y GGGGG",
3075
- "yyyyMMM": "MMM y G",
3076
- "yyyyMMMd": "d MMM y G",
3077
- "yyyyMMMEd": "E d MMM y G",
3078
- "yyyyMMMM": "MMMM y G",
3079
- "yyyyQQQ": "QQQ y G",
3080
- "yyyyQQQQ": "QQQQ y G"
3081
- },
3082
- "appendItems": {
3083
- "Day": "{0} ({2}: {1})",
3084
- "Day-Of-Week": "{0} {1}",
3085
- "Era": "{1} {0}",
3086
- "Hour": "{0} ({2}: {1})",
3087
- "Minute": "{0} ({2}: {1})",
3088
- "Month": "{0} ({2}: {1})",
3089
- "Quarter": "{0} ({2}: {1})",
3090
- "Second": "{0} ({2}: {1})",
3091
- "Timezone": "{0} {1}",
3092
- "Week": "{0} ({2}: {1})",
3093
- "Year": "{1} {0}"
3094
- },
3095
- "intervalFormats": {
3096
- "intervalFormatFallback": "{0} - {1}",
3097
- "Bh": {
3098
- "B": "h B – h B",
3099
- "h": "h – h B"
3100
- },
3101
- "Bhm": {
3102
- "B": "h:mm B – h:mm B",
3103
- "h": "h:mm – h:mm B",
3104
- "m": "h:mm – h:mm B"
3105
- },
3106
- "d": {
3107
- "d": "d–d"
3108
- },
3109
- "Gy": {
3110
- "G": "G y – G y",
3111
- "y": "G y–y"
3112
- },
3113
- "GyM": {
3114
- "G": "GGGGG y-MM – GGGGG y-MM",
3115
- "M": "M/y – M/y GGGGG",
3116
- "y": "M/y – M/y GGGGG"
3117
- },
3118
- "GyMd": {
3119
- "d": "d/M/y – d/M/y GGGGG",
3120
- "G": "d/M/y GGGGG – d/M/y GGGGG",
3121
- "M": "d/M/y – d/M/y GGGGG",
3122
- "y": "d/M/y – d/M/y GGGGG"
3123
- },
3124
- "GyMEd": {
3125
- "d": "E, d/M/y – E, d/M/y GGGGG",
3126
- "G": "E, d/M/y – E, d/M/y GGGGG",
3127
- "M": "E, d/M/y – E, d/M/y GGGGG",
3128
- "y": "E d/M/y – E d/M/y GGGGG"
3129
- },
3130
- "GyMMM": {
3131
- "G": "MMM y G – MMM y G",
3132
- "M": "MMM – MMM y G",
3133
- "y": "MMM y – MMM y G"
3134
- },
3135
- "GyMMMd": {
3136
- "d": "d – d MMM y G",
3137
- "G": "d MMM y G – d MMM y G",
3138
- "M": "d MMM – d MMM y G",
3139
- "y": "d MMM y – d MMM y G"
3140
- },
3141
- "GyMMMEd": {
3142
- "d": "E d MMM – E d MMM y G",
3143
- "G": "E d MMM y G – E d MMM y G",
3144
- "M": "E d MMM – E d MMM y G",
3145
- "y": "E d MMM y – E d MMM y G"
3146
- },
3147
- "h": {
3148
- "a": "h a – h a",
3149
- "h": "h–h a"
3150
- },
3151
- "H": {
3152
- "H": "HH–HH"
3153
- },
3154
- "hm": {
3155
- "a": "h:mm a – h:mm a",
3156
- "h": "h:mm–h:mm a",
3157
- "m": "h:mm–h:mm a"
3158
- },
3159
- "Hm": {
3160
- "H": "HH:mm–HH:mm",
3161
- "m": "HH:mm–HH:mm"
3162
- },
3163
- "hmv": {
3164
- "a": "h:mm a – h:mm a v",
3165
- "h": "h:mm–h:mm a v",
3166
- "m": "h:mm–h:mm a v"
3167
- },
3168
- "Hmv": {
3169
- "H": "HH:mm–HH:mm v",
3170
- "m": "HH:mm–HH:mm v"
3171
- },
3172
- "hv": {
3173
- "a": "h a – h a v",
3174
- "h": "h–h a v"
3175
- },
3176
- "Hv": {
3177
- "H": "HH–HH v"
3178
- },
3179
- "M": {
3180
- "M": "M–M"
3181
- },
3182
- "Md": {
3183
- "d": "dd/MM – dd/MM",
3184
- "M": "dd/MM – dd/MM"
3185
- },
3186
- "MEd": {
3187
- "d": "E dd/MM – E dd/MM",
3188
- "M": "E dd/MM – E dd/MM"
3189
- },
3190
- "MMM": {
3191
- "M": "MMM–MMM"
3192
- },
3193
- "MMMd": {
3194
- "d": "dd–dd MMM",
3195
- "M": "dd MMM – dd MMM"
3196
- },
3197
- "MMMEd": {
3198
- "d": "E dd – E dd MMM",
3199
- "M": "E dd MMM – E dd MMM"
3200
- },
3201
- "y": {
3202
- "y": "y–y G"
3203
- },
3204
- "yM": {
3205
- "M": "MM/y – MM/y G",
3206
- "y": "MM/y – MM/y G"
3207
- },
3208
- "yMd": {
3209
- "d": "dd/MM/y – dd/MM/y G",
3210
- "M": "dd/MM/y – dd/MM/y G",
3211
- "y": "dd/MM/y – dd/MM/y G"
3212
- },
3213
- "yMEd": {
3214
- "d": "E dd/MM/y – E dd/MM/y G",
3215
- "M": "E dd/MM/y – E dd/MM/y G",
3216
- "y": "E dd/MM/y – E dd/MM/y G"
3217
- },
3218
- "yMMM": {
3219
- "M": "MMM–MMM y G",
3220
- "y": "MMM y – MMM y G"
3221
- },
3222
- "yMMMd": {
3223
- "d": "dd–dd MMM y G",
3224
- "M": "dd MMM – dd MMM y G",
3225
- "y": "dd MMM y – dd MMM y G"
3226
- },
3227
- "yMMMEd": {
3228
- "d": "E d – E d MMM y G",
3229
- "M": "E d MMM – E d MMM y G",
3230
- "y": "E d MMM y – E d MMM y G"
3231
- },
3232
- "yMMMM": {
3233
- "M": "MMMM–MMMM y G",
3234
- "y": "MMMM y – MMMM y G"
3235
- }
3236
- }
3237
- },
3238
- "months": {
3239
- "format": {
3240
- "abbreviated": [
3241
- "gen",
3242
- "feb",
3243
- "mar",
3244
- "apr",
3245
- "mag",
3246
- "giu",
3247
- "lug",
3248
- "ago",
3249
- "set",
3250
- "ott",
3251
- "nov",
3252
- "dic"
3253
- ],
3254
- "narrow": [
3255
- "G",
3256
- "F",
3257
- "M",
3258
- "A",
3259
- "M",
3260
- "G",
3261
- "L",
3262
- "A",
3263
- "S",
3264
- "O",
3265
- "N",
3266
- "D"
3267
- ],
3268
- "wide": [
3269
- "gennaio",
3270
- "febbraio",
3271
- "marzo",
3272
- "aprile",
3273
- "maggio",
3274
- "giugno",
3275
- "luglio",
3276
- "agosto",
3277
- "settembre",
3278
- "ottobre",
3279
- "novembre",
3280
- "dicembre"
3281
- ]
3282
- },
3283
- "stand-alone": {
3284
- "abbreviated": [
3285
- "gen",
3286
- "feb",
3287
- "mar",
3288
- "apr",
3289
- "mag",
3290
- "giu",
3291
- "lug",
3292
- "ago",
3293
- "set",
3294
- "ott",
3295
- "nov",
3296
- "dic"
3297
- ],
3298
- "narrow": [
3299
- "G",
3300
- "F",
3301
- "M",
3302
- "A",
3303
- "M",
3304
- "G",
3305
- "L",
3306
- "A",
3307
- "S",
3308
- "O",
3309
- "N",
3310
- "D"
3311
- ],
3312
- "wide": [
3313
- "gennaio",
3314
- "febbraio",
3315
- "marzo",
3316
- "aprile",
3317
- "maggio",
3318
- "giugno",
3319
- "luglio",
3320
- "agosto",
3321
- "settembre",
3322
- "ottobre",
3323
- "novembre",
3324
- "dicembre"
3325
- ]
3326
- }
3327
- },
3328
- "days": {
3329
- "format": {
3330
- "abbreviated": [
3331
- "dom",
3332
- "lun",
3333
- "mar",
3334
- "mer",
3335
- "gio",
3336
- "ven",
3337
- "sab"
3338
- ],
3339
- "narrow": [
3340
- "D",
3341
- "L",
3342
- "M",
3343
- "M",
3344
- "G",
3345
- "V",
3346
- "S"
3347
- ],
3348
- "short": [
3349
- "dom",
3350
- "lun",
3351
- "mar",
3352
- "mer",
3353
- "gio",
3354
- "ven",
3355
- "sab"
3356
- ],
3357
- "wide": [
3358
- "domenica",
3359
- "lunedì",
3360
- "martedì",
3361
- "mercoledì",
3362
- "giovedì",
3363
- "venerdì",
3364
- "sabato"
3365
- ]
3366
- },
3367
- "stand-alone": {
3368
- "abbreviated": [
3369
- "dom",
3370
- "lun",
3371
- "mar",
3372
- "mer",
3373
- "gio",
3374
- "ven",
3375
- "sab"
3376
- ],
3377
- "narrow": [
3378
- "D",
3379
- "L",
3380
- "M",
3381
- "M",
3382
- "G",
3383
- "V",
3384
- "S"
3385
- ],
3386
- "short": [
3387
- "dom",
3388
- "lun",
3389
- "mar",
3390
- "mer",
3391
- "gio",
3392
- "ven",
3393
- "sab"
3394
- ],
3395
- "wide": [
3396
- "domenica",
3397
- "lunedì",
3398
- "martedì",
3399
- "mercoledì",
3400
- "giovedì",
3401
- "venerdì",
3402
- "sabato"
3403
- ]
3404
- }
3405
- },
3406
- "quarters": {
3407
- "format": {
3408
- "abbreviated": [
3409
- "T1",
3410
- "T2",
3411
- "T3",
3412
- "T4"
3413
- ],
3414
- "narrow": [
3415
- "1",
3416
- "2",
3417
- "3",
3418
- "4"
3419
- ],
3420
- "wide": [
3421
- "1º trimestre",
3422
- "2º trimestre",
3423
- "3º trimestre",
3424
- "4º trimestre"
3425
- ]
3426
- },
3427
- "stand-alone": {
3428
- "abbreviated": [
3429
- "T1",
3430
- "T2",
3431
- "T3",
3432
- "T4"
3433
- ],
3434
- "narrow": [
3435
- "1",
3436
- "2",
3437
- "3",
3438
- "4"
3439
- ],
3440
- "wide": [
3441
- "1º trimestre",
3442
- "2º trimestre",
3443
- "3º trimestre",
3444
- "4º trimestre"
3445
- ]
3446
- }
3447
- },
3448
- "dayPeriods": {
3449
- "format": {
3450
- "abbreviated": [
3451
- "AM",
3452
- "PM"
3453
- ],
3454
- "narrow": [
3455
- "m.",
3456
- "p."
3457
- ],
3458
- "wide": [
3459
- "AM",
3460
- "PM"
3461
- ]
3462
- },
3463
- "stand-alone": {
3464
- "abbreviated": [
3465
- "AM",
3466
- "PM"
3467
- ],
3468
- "narrow": [
3469
- "m.",
3470
- "p."
3471
- ],
3472
- "wide": [
3473
- "AM",
3474
- "PM"
3475
- ]
3476
- }
3477
- },
3478
- "era-wide": {
3479
- "0": "EB"
3480
- },
3481
- "era-abbreviated": {
3482
- "0": "EB"
3483
- },
3484
- "era-narrow": {
3485
- "0": "EB"
3486
- }
3487
- },
3488
- "dateFields": {
3489
- "era": {
3490
- "displayName": "era"
3491
- },
3492
- "year-wide": {
3493
- "displayName": "anno",
3494
- "relative-type--1": "anno scorso",
3495
- "relative-type-0": "quest’anno",
3496
- "relative-type-1": "anno prossimo",
3497
- "relativeTime-type-future": {
3498
- "relativeTimePattern-count-one": "tra {0} anno",
3499
- "relativeTimePattern-count-other": "tra {0} anni"
3500
- },
3501
- "relativeTime-type-past": {
3502
- "relativeTimePattern-count-one": "{0} anno fa",
3503
- "relativeTimePattern-count-other": "{0} anni fa"
3504
- }
3505
- },
3506
- "year-short": {
3507
- "displayName": "anno",
3508
- "relative-type--1": "anno scorso",
3509
- "relative-type-0": "quest’anno",
3510
- "relative-type-1": "anno prossimo",
3511
- "relativeTime-type-future": {
3512
- "relativeTimePattern-count-one": "tra {0} anno",
3513
- "relativeTimePattern-count-other": "tra {0} anni"
3514
- },
3515
- "relativeTime-type-past": {
3516
- "relativeTimePattern-count-one": "{0} anno fa",
3517
- "relativeTimePattern-count-other": "{0} anni fa"
3518
- }
3519
- },
3520
- "year-narrow": {
3521
- "displayName": "anno",
3522
- "relative-type--1": "anno scorso",
3523
- "relative-type-0": "quest’anno",
3524
- "relative-type-1": "anno prossimo",
3525
- "relativeTime-type-future": {
3526
- "relativeTimePattern-count-one": "tra {0} anno",
3527
- "relativeTimePattern-count-other": "tra {0} anni"
3528
- },
3529
- "relativeTime-type-past": {
3530
- "relativeTimePattern-count-one": "{0} anno fa",
3531
- "relativeTimePattern-count-other": "{0} anni fa"
3532
- }
3533
- },
3534
- "quarter-wide": {
3535
- "displayName": "trimestre",
3536
- "relative-type--1": "trimestre scorso",
3537
- "relative-type-0": "questo trimestre",
3538
- "relative-type-1": "trimestre prossimo",
3539
- "relativeTime-type-future": {
3540
- "relativeTimePattern-count-one": "tra {0} trimestre",
3541
- "relativeTimePattern-count-other": "tra {0} trimestri"
3542
- },
3543
- "relativeTime-type-past": {
3544
- "relativeTimePattern-count-one": "{0} trimestre fa",
3545
- "relativeTimePattern-count-other": "{0} trimestri fa"
3546
- }
3547
- },
3548
- "quarter-short": {
3549
- "displayName": "trim.",
3550
- "relative-type--1": "trim. scorso",
3551
- "relative-type-0": "questo trim.",
3552
- "relative-type-1": "trim. prossimo",
3553
- "relativeTime-type-future": {
3554
- "relativeTimePattern-count-one": "tra {0} trim.",
3555
- "relativeTimePattern-count-other": "tra {0} trim."
3556
- },
3557
- "relativeTime-type-past": {
3558
- "relativeTimePattern-count-one": "{0} trim. fa",
3559
- "relativeTimePattern-count-other": "{0} trim. fa"
3560
- }
3561
- },
3562
- "quarter-narrow": {
3563
- "displayName": "trim.",
3564
- "relative-type--1": "trim. scorso",
3565
- "relative-type-0": "questo trim.",
3566
- "relative-type-1": "trim. prossimo",
3567
- "relativeTime-type-future": {
3568
- "relativeTimePattern-count-one": "tra {0} trim.",
3569
- "relativeTimePattern-count-other": "tra {0} trim."
3570
- },
3571
- "relativeTime-type-past": {
3572
- "relativeTimePattern-count-one": "{0} trim. fa",
3573
- "relativeTimePattern-count-other": "{0} trim. fa"
3574
- }
3575
- },
3576
- "month-wide": {
3577
- "displayName": "mese",
3578
- "relative-type--1": "mese scorso",
3579
- "relative-type-0": "questo mese",
3580
- "relative-type-1": "mese prossimo",
3581
- "relativeTime-type-future": {
3582
- "relativeTimePattern-count-one": "tra {0} mese",
3583
- "relativeTimePattern-count-other": "tra {0} mesi"
3584
- },
3585
- "relativeTime-type-past": {
3586
- "relativeTimePattern-count-one": "{0} mese fa",
3587
- "relativeTimePattern-count-other": "{0} mesi fa"
3588
- }
3589
- },
3590
- "month-short": {
3591
- "displayName": "mese",
3592
- "relative-type--1": "mese scorso",
3593
- "relative-type-0": "questo mese",
3594
- "relative-type-1": "mese prossimo",
3595
- "relativeTime-type-future": {
3596
- "relativeTimePattern-count-one": "tra {0} mese",
3597
- "relativeTimePattern-count-other": "tra {0} mesi"
3598
- },
3599
- "relativeTime-type-past": {
3600
- "relativeTimePattern-count-one": "{0} mese fa",
3601
- "relativeTimePattern-count-other": "{0} mesi fa"
3602
- }
3603
- },
3604
- "month-narrow": {
3605
- "displayName": "mese",
3606
- "relative-type--1": "mese scorso",
3607
- "relative-type-0": "questo mese",
3608
- "relative-type-1": "mese prossimo",
3609
- "relativeTime-type-future": {
3610
- "relativeTimePattern-count-one": "tra {0} mese",
3611
- "relativeTimePattern-count-other": "tra {0} mesi"
3612
- },
3613
- "relativeTime-type-past": {
3614
- "relativeTimePattern-count-one": "{0} mese fa",
3615
- "relativeTimePattern-count-other": "{0} mesi fa"
3616
- }
3617
- },
3618
- "week-wide": {
3619
- "displayName": "settimana",
3620
- "relative-type--1": "settimana scorsa",
3621
- "relative-type-0": "questa settimana",
3622
- "relative-type-1": "settimana prossima",
3623
- "relativeTime-type-future": {
3624
- "relativeTimePattern-count-one": "tra {0} settimana",
3625
- "relativeTimePattern-count-other": "tra {0} settimane"
3626
- },
3627
- "relativeTime-type-past": {
3628
- "relativeTimePattern-count-one": "{0} settimana fa",
3629
- "relativeTimePattern-count-other": "{0} settimane fa"
3630
- },
3631
- "relativePeriod": "la settimana del {0}"
3632
- },
3633
- "week-short": {
3634
- "displayName": "sett.",
3635
- "relative-type--1": "settimana scorsa",
3636
- "relative-type-0": "questa settimana",
3637
- "relative-type-1": "settimana prossima",
3638
- "relativeTime-type-future": {
3639
- "relativeTimePattern-count-one": "tra {0} sett.",
3640
- "relativeTimePattern-count-other": "tra {0} sett."
3641
- },
3642
- "relativeTime-type-past": {
3643
- "relativeTimePattern-count-one": "{0} sett. fa",
3644
- "relativeTimePattern-count-other": "{0} sett. fa"
3645
- },
3646
- "relativePeriod": "la settimana del {0}"
3647
- },
3648
- "week-narrow": {
3649
- "displayName": "sett.",
3650
- "relative-type--1": "settimana scorsa",
3651
- "relative-type-0": "questa settimana",
3652
- "relative-type-1": "settimana prossima",
3653
- "relativeTime-type-future": {
3654
- "relativeTimePattern-count-one": "tra {0} sett.",
3655
- "relativeTimePattern-count-other": "tra {0} sett."
3656
- },
3657
- "relativeTime-type-past": {
3658
- "relativeTimePattern-count-one": "{0} sett. fa",
3659
- "relativeTimePattern-count-other": "{0} sett. fa"
3660
- },
3661
- "relativePeriod": "la settimana del {0}"
3662
- },
3663
- "day-wide": {
3664
- "displayName": "giorno",
3665
- "relative-type--2": "l’altro ieri",
3666
- "relative-type--1": "ieri",
3667
- "relative-type-0": "oggi",
3668
- "relative-type-1": "domani",
3669
- "relative-type-2": "dopodomani",
3670
- "relativeTime-type-future": {
3671
- "relativeTimePattern-count-one": "tra {0} giorno",
3672
- "relativeTimePattern-count-other": "tra {0} giorni"
3673
- },
3674
- "relativeTime-type-past": {
3675
- "relativeTimePattern-count-one": "{0} giorno fa",
3676
- "relativeTimePattern-count-other": "{0} giorni fa"
3677
- }
3678
- },
3679
- "day-short": {
3680
- "displayName": "g",
3681
- "relative-type--2": "l’altro ieri",
3682
- "relative-type--1": "ieri",
3683
- "relative-type-0": "oggi",
3684
- "relative-type-1": "domani",
3685
- "relative-type-2": "dopodomani",
3686
- "relativeTime-type-future": {
3687
- "relativeTimePattern-count-one": "tra {0} g",
3688
- "relativeTimePattern-count-other": "tra {0} gg"
3689
- },
3690
- "relativeTime-type-past": {
3691
- "relativeTimePattern-count-one": "{0} g fa",
3692
- "relativeTimePattern-count-other": "{0} gg fa"
3693
- }
3694
- },
3695
- "day-narrow": {
3696
- "displayName": "g",
3697
- "relative-type--2": "l’altro ieri",
3698
- "relative-type--1": "ieri",
3699
- "relative-type-0": "oggi",
3700
- "relative-type-1": "domani",
3701
- "relative-type-2": "dopodomani",
3702
- "relativeTime-type-future": {
3703
- "relativeTimePattern-count-one": "tra {0} g",
3704
- "relativeTimePattern-count-other": "tra {0} gg"
3705
- },
3706
- "relativeTime-type-past": {
3707
- "relativeTimePattern-count-one": "{0} g fa",
3708
- "relativeTimePattern-count-other": "{0} gg fa"
3709
- }
3710
- },
3711
- "weekday": {
3712
- "displayName": "giorno della settimana"
3713
- },
3714
- "hour-wide": {
3715
- "displayName": "ora",
3716
- "relative-type-0": "quest’ora",
3717
- "relativeTime-type-future": {
3718
- "relativeTimePattern-count-one": "tra {0} ora",
3719
- "relativeTimePattern-count-other": "tra {0} ore"
3720
- },
3721
- "relativeTime-type-past": {
3722
- "relativeTimePattern-count-one": "{0} ora fa",
3723
- "relativeTimePattern-count-other": "{0} ore fa"
3724
- }
3725
- },
3726
- "hour-short": {
3727
- "displayName": "h.",
3728
- "relative-type-0": "quest’ora",
3729
- "relativeTime-type-future": {
3730
- "relativeTimePattern-count-one": "tra {0} h",
3731
- "relativeTimePattern-count-other": "tra {0} h"
3732
- },
3733
- "relativeTime-type-past": {
3734
- "relativeTimePattern-count-one": "{0} h fa",
3735
- "relativeTimePattern-count-other": "{0} h fa"
3736
- }
3737
- },
3738
- "hour-narrow": {
3739
- "displayName": "h",
3740
- "relative-type-0": "quest’ora",
3741
- "relativeTime-type-future": {
3742
- "relativeTimePattern-count-one": "tra {0} h",
3743
- "relativeTimePattern-count-other": "tra {0} h"
3744
- },
3745
- "relativeTime-type-past": {
3746
- "relativeTimePattern-count-one": "{0} h fa",
3747
- "relativeTimePattern-count-other": "{0} h fa"
3748
- }
3749
- },
3750
- "minute-wide": {
3751
- "displayName": "minuto",
3752
- "relative-type-0": "questo minuto",
3753
- "relativeTime-type-future": {
3754
- "relativeTimePattern-count-one": "tra {0} minuto",
3755
- "relativeTimePattern-count-other": "tra {0} minuti"
3756
- },
3757
- "relativeTime-type-past": {
3758
- "relativeTimePattern-count-one": "{0} minuto fa",
3759
- "relativeTimePattern-count-other": "{0} minuti fa"
3760
- }
3761
- },
3762
- "minute-short": {
3763
- "displayName": "min",
3764
- "relative-type-0": "questo minuto",
3765
- "relativeTime-type-future": {
3766
- "relativeTimePattern-count-one": "tra {0} min",
3767
- "relativeTimePattern-count-other": "tra {0} min"
3768
- },
3769
- "relativeTime-type-past": {
3770
- "relativeTimePattern-count-one": "{0} min fa",
3771
- "relativeTimePattern-count-other": "{0} min fa"
3772
- }
3773
- },
3774
- "minute-narrow": {
3775
- "displayName": "min",
3776
- "relative-type-0": "questo minuto",
3777
- "relativeTime-type-future": {
3778
- "relativeTimePattern-count-one": "tra {0} min",
3779
- "relativeTimePattern-count-other": "tra {0} min"
3780
- },
3781
- "relativeTime-type-past": {
3782
- "relativeTimePattern-count-one": "{0} min fa",
3783
- "relativeTimePattern-count-other": "{0} min fa"
3784
- }
3785
- },
3786
- "second-wide": {
3787
- "displayName": "secondo",
3788
- "relative-type-0": "ora",
3789
- "relativeTime-type-future": {
3790
- "relativeTimePattern-count-one": "tra {0} secondo",
3791
- "relativeTimePattern-count-other": "tra {0} secondi"
3792
- },
3793
- "relativeTime-type-past": {
3794
- "relativeTimePattern-count-one": "{0} secondo fa",
3795
- "relativeTimePattern-count-other": "{0} secondi fa"
3796
- }
3797
- },
3798
- "second-short": {
3799
- "displayName": "s",
3800
- "relative-type-0": "ora",
3801
- "relativeTime-type-future": {
3802
- "relativeTimePattern-count-one": "tra {0} s",
3803
- "relativeTimePattern-count-other": "tra {0} sec."
3804
- },
3805
- "relativeTime-type-past": {
3806
- "relativeTimePattern-count-one": "{0} s fa",
3807
- "relativeTimePattern-count-other": "{0} sec. fa"
3808
- }
3809
- },
3810
- "second-narrow": {
3811
- "displayName": "s",
3812
- "relative-type-0": "ora",
3813
- "relativeTime-type-future": {
3814
- "relativeTimePattern-count-one": "tra {0} s",
3815
- "relativeTimePattern-count-other": "tra {0} s"
3816
- },
3817
- "relativeTime-type-past": {
3818
- "relativeTimePattern-count-one": "{0} s fa",
3819
- "relativeTimePattern-count-other": "{0} s fa"
3820
- }
3821
- },
3822
- "zone": {
3823
- "displayName": "fuso orario"
3824
- }
3825
- },
3826
- "decimalFormat": {
3827
- "standard": "#,##0.###"
3828
- },
3829
- "decimalFormat-long": {
3830
- "1000-one": "0 mille",
3831
- "1000-other": "0 mila",
3832
- "10000-one": "00 mila",
3833
- "10000-other": "00 mila",
3834
- "100000-one": "000 mila",
3835
- "100000-other": "000 mila",
3836
- "1000000-one": "0 milione",
3837
- "1000000-other": "0 milioni",
3838
- "10000000-one": "00 milioni",
3839
- "10000000-other": "00 milioni",
3840
- "100000000-one": "000 milioni",
3841
- "100000000-other": "000 milioni",
3842
- "1000000000-one": "0 miliardo",
3843
- "1000000000-other": "0 miliardi",
3844
- "10000000000-one": "00 miliardi",
3845
- "10000000000-other": "00 miliardi",
3846
- "100000000000-one": "000 miliardi",
3847
- "100000000000-other": "000 miliardi",
3848
- "1000000000000-one": "0 mille miliardi",
3849
- "1000000000000-other": "0 mila miliardi",
3850
- "10000000000000-one": "00 mila miliardi",
3851
- "10000000000000-other": "00 mila miliardi",
3852
- "100000000000000-one": "000 mila miliardi",
3853
- "100000000000000-other": "000 mila miliardi"
3854
- },
3855
- "decimalFormat-short": {
3856
- "1000-one": "0",
3857
- "1000-other": "0",
3858
- "10000-one": "0",
3859
- "10000-other": "0",
3860
- "100000-one": "0",
3861
- "100000-other": "0",
3862
- "1000000-one": "0 Mln",
3863
- "1000000-other": "0 Mln",
3864
- "10000000-one": "00 Mln",
3865
- "10000000-other": "00 Mln",
3866
- "100000000-one": "000 Mln",
3867
- "100000000-other": "000 Mln",
3868
- "1000000000-one": "0 Mrd",
3869
- "1000000000-other": "0 Mrd",
3870
- "10000000000-one": "00 Mrd",
3871
- "10000000000-other": "00 Mrd",
3872
- "100000000000-one": "000 Mrd",
3873
- "100000000000-other": "000 Mrd",
3874
- "1000000000000-one": "0 Bln",
3875
- "1000000000000-other": "0 Bln",
3876
- "10000000000000-one": "00 Bln",
3877
- "10000000000000-other": "00 Bln",
3878
- "100000000000000-one": "000 Bln",
3879
- "100000000000000-other": "000 Bln"
3880
- },
3881
- "scientificFormat": {
3882
- "standard": "#E0"
3883
- },
3884
- "percentFormat": {
3885
- "standard": "#,##0%"
3886
- },
3887
- "currencyFormat": {
3888
- "standard": "#,##0.00 ¤",
3889
- "accounting": "#,##0.00 ¤",
3890
- "currencySpacing": {
3891
- "beforeCurrency": {
3892
- "currencyMatch": "[:^S:]",
3893
- "surroundingMatch": "[:digit:]",
3894
- "insertBetween": " "
3895
- },
3896
- "afterCurrency": {
3897
- "currencyMatch": "[:^S:]",
3898
- "surroundingMatch": "[:digit:]",
3899
- "insertBetween": " "
3900
- }
3901
- },
3902
- "sap-standard": "#,##0.00 ¤",
3903
- "sap-accounting": "#,##0.00 ¤"
3904
- },
3905
- "miscPattern": {
3906
- "approximately": "~{0}",
3907
- "atLeast": "≥{0}",
3908
- "atMost": "≤{0}",
3909
- "range": "{0}-{1}"
3910
- },
3911
- "currencyFormat-short": {
3912
- "1000-one": "0",
3913
- "1000-other": "0",
3914
- "10000-one": "0",
3915
- "10000-other": "0",
3916
- "100000-one": "0",
3917
- "100000-other": "0",
3918
- "1000000-one": "0 Mio ¤",
3919
- "1000000-other": "0 Mio ¤",
3920
- "10000000-one": "00 Mio ¤",
3921
- "10000000-other": "00 Mio ¤",
3922
- "100000000-one": "000 Mio ¤",
3923
- "100000000-other": "000 Mio ¤",
3924
- "1000000000-one": "0 Mrd ¤",
3925
- "1000000000-other": "0 Mrd ¤",
3926
- "10000000000-one": "00 Mrd ¤",
3927
- "10000000000-other": "00 Mrd ¤",
3928
- "100000000000-one": "000 Mrd ¤",
3929
- "100000000000-other": "000 Mrd ¤",
3930
- "1000000000000-one": "0 Bln ¤",
3931
- "1000000000000-other": "0 Bln ¤",
3932
- "10000000000000-one": "00 Bln ¤",
3933
- "10000000000000-other": "00 Bln ¤",
3934
- "100000000000000-one": "000 Bln ¤",
3935
- "100000000000000-other": "000 Bln ¤"
3936
- },
3937
- "symbols-latn-decimal": ",",
3938
- "symbols-latn-group": ".",
3939
- "symbols-latn-list": ";",
3940
- "symbols-latn-percentSign": "%",
3941
- "symbols-latn-plusSign": "+",
3942
- "symbols-latn-minusSign": "-",
3943
- "symbols-latn-exponential": "E",
3944
- "symbols-latn-superscriptingExponent": "×",
3945
- "symbols-latn-perMille": "‰",
3946
- "symbols-latn-infinity": "∞",
3947
- "symbols-latn-nan": "NaN",
3948
- "symbols-latn-timeSeparator": ":",
3949
- "currencySymbols": {
3950
- "AUD": "A$",
3951
- "CAD": "CA$",
3952
- "CNY": "CN¥",
3953
- "EUR": "€",
3954
- "GBP": "£",
3955
- "ILS": "₪",
3956
- "INR": "₹",
3957
- "NZD": "NZ$",
3958
- "THB": "฿",
3959
- "VND": "₫",
3960
- "XAF": "FCFA",
3961
- "XCD": "EC$",
3962
- "XOF": "CFA",
3963
- "XPF": "CFPF",
3964
- "XXX": "¤"
3965
- },
3966
- "rtl": false,
3967
- "listPattern-standard-wide": {
3968
- "2": "{0} e {1}",
3969
- "start": "{0}, {1}",
3970
- "middle": "{0}, {1}",
3971
- "end": "{0} e {1}"
3972
- },
3973
- "listPattern-or-wide": {
3974
- "2": "{0} o {1}",
3975
- "start": "{0}, {1}",
3976
- "middle": "{0}, {1}",
3977
- "end": "{0} o {1}"
3978
- },
3979
- "listPattern-or-short": {
3980
- "2": "{0} o {1}",
3981
- "start": "{0}, {1}",
3982
- "middle": "{0}, {1}",
3983
- "end": "{0} o {1}"
3984
- },
3985
- "listPattern-standard-short": {
3986
- "2": "{0} e {1}",
3987
- "start": "{0}, {1}",
3988
- "middle": "{0}, {1}",
3989
- "end": "{0} e {1}"
3990
- },
3991
- "units": {
3992
- "short": {
3993
- "per": {
3994
- "compoundUnitPattern": "{0}/{1}"
3995
- },
3996
- "acceleration-g-force": {
3997
- "displayName": "forza g",
3998
- "unitPattern-count-one": "{0} G",
3999
- "unitPattern-count-other": "{0} G"
4000
- },
4001
- "acceleration-meter-per-second-squared": {
4002
- "displayName": "m/s²",
4003
- "unitPattern-count-one": "{0} m/s²",
4004
- "unitPattern-count-other": "{0} m/s²"
4005
- },
4006
- "angle-revolution": {
4007
- "displayName": "riv",
4008
- "unitPattern-count-one": "{0} riv",
4009
- "unitPattern-count-other": "{0} riv"
4010
- },
4011
- "angle-radian": {
4012
- "displayName": "rad",
4013
- "unitPattern-count-one": "{0} rad",
4014
- "unitPattern-count-other": "{0} rad"
4015
- },
4016
- "angle-degree": {
4017
- "displayName": "°",
4018
- "unitPattern-count-one": "{0}°",
4019
- "unitPattern-count-other": "{0}°"
4020
- },
4021
- "angle-arc-minute": {
4022
- "displayName": "′",
4023
- "unitPattern-count-one": "{0}′",
4024
- "unitPattern-count-other": "{0}′"
4025
- },
4026
- "angle-arc-second": {
4027
- "displayName": "″",
4028
- "unitPattern-count-one": "{0}″",
4029
- "unitPattern-count-other": "{0}″"
4030
- },
4031
- "area-square-kilometer": {
4032
- "displayName": "km²",
4033
- "unitPattern-count-one": "{0} km²",
4034
- "unitPattern-count-other": "{0} km²",
4035
- "perUnitPattern": "{0}/km²"
4036
- },
4037
- "area-hectare": {
4038
- "displayName": "ettari",
4039
- "unitPattern-count-one": "{0} ha",
4040
- "unitPattern-count-other": "{0} ha"
4041
- },
4042
- "area-square-meter": {
4043
- "displayName": "m²",
4044
- "unitPattern-count-one": "{0} m²",
4045
- "unitPattern-count-other": "{0} m²",
4046
- "perUnitPattern": "{0}/m²"
4047
- },
4048
- "area-square-centimeter": {
4049
- "displayName": "cm²",
4050
- "unitPattern-count-one": "{0} cm²",
4051
- "unitPattern-count-other": "{0} cm²",
4052
- "perUnitPattern": "{0}/cm²"
4053
- },
4054
- "area-square-mile": {
4055
- "displayName": "mi²",
4056
- "unitPattern-count-one": "{0} mi²",
4057
- "unitPattern-count-other": "{0} mi²",
4058
- "perUnitPattern": "{0}/mi²"
4059
- },
4060
- "area-acre": {
4061
- "displayName": "acri",
4062
- "unitPattern-count-one": "{0} ac",
4063
- "unitPattern-count-other": "{0} ac"
4064
- },
4065
- "area-square-yard": {
4066
- "displayName": "yd²",
4067
- "unitPattern-count-one": "{0} yd²",
4068
- "unitPattern-count-other": "{0} yd²"
4069
- },
4070
- "area-square-foot": {
4071
- "displayName": "piedi quadrati",
4072
- "unitPattern-count-one": "{0} ft²",
4073
- "unitPattern-count-other": "{0} ft²"
4074
- },
4075
- "area-square-inch": {
4076
- "displayName": "in²",
4077
- "unitPattern-count-one": "{0} in²",
4078
- "unitPattern-count-other": "{0} in²",
4079
- "perUnitPattern": "{0}/in²"
4080
- },
4081
- "area-dunam": {
4082
- "displayName": "dunum",
4083
- "unitPattern-count-one": "{0} dunum",
4084
- "unitPattern-count-other": "{0} dunum"
4085
- },
4086
- "concentr-karat": {
4087
- "displayName": "kt",
4088
- "unitPattern-count-one": "{0} kt",
4089
- "unitPattern-count-other": "{0} kt"
4090
- },
4091
- "concentr-milligram-per-deciliter": {
4092
- "displayName": "mg/dl",
4093
- "unitPattern-count-one": "{0} mg/dl",
4094
- "unitPattern-count-other": "{0} mg/dl"
4095
- },
4096
- "concentr-millimole-per-liter": {
4097
- "displayName": "mmol/l",
4098
- "unitPattern-count-one": "{0} mmol/l",
4099
- "unitPattern-count-other": "{0} mmol/l"
4100
- },
4101
- "concentr-part-per-million": {
4102
- "displayName": "ppm",
4103
- "unitPattern-count-one": "{0} ppm",
4104
- "unitPattern-count-other": "{0} ppm"
4105
- },
4106
- "concentr-percent": {
4107
- "displayName": "percento",
4108
- "unitPattern-count-one": "{0}%",
4109
- "unitPattern-count-other": "{0}%"
4110
- },
4111
- "concentr-permille": {
4112
- "displayName": "‰",
4113
- "unitPattern-count-one": "{0}‰",
4114
- "unitPattern-count-other": "{0}‰"
4115
- },
4116
- "concentr-permyriad": {
4117
- "displayName": "‱",
4118
- "unitPattern-count-one": "{0}‱",
4119
- "unitPattern-count-other": "{0}‱"
4120
- },
4121
- "concentr-mole": {
4122
- "displayName": "mol",
4123
- "unitPattern-count-one": "{0} mol",
4124
- "unitPattern-count-other": "{0} mol"
4125
- },
4126
- "consumption-liter-per-kilometer": {
4127
- "displayName": "L/km",
4128
- "unitPattern-count-one": "{0} L/km",
4129
- "unitPattern-count-other": "{0} L/km"
4130
- },
4131
- "consumption-liter-per-100kilometers": {
4132
- "displayName": "L/100km",
4133
- "unitPattern-count-one": "{0} L/100km",
4134
- "unitPattern-count-other": "{0} L/100km"
4135
- },
4136
- "consumption-mile-per-gallon": {
4137
- "displayName": "mpg",
4138
- "unitPattern-count-one": "{0} mpg",
4139
- "unitPattern-count-other": "{0} mpg"
4140
- },
4141
- "consumption-mile-per-gallon-imperial": {
4142
- "displayName": "mi/Imp gal",
4143
- "unitPattern-count-one": "{0} mi/Imp gal",
4144
- "unitPattern-count-other": "{0} mi/Imp gal"
4145
- },
4146
- "digital-petabyte": {
4147
- "displayName": "PByte",
4148
- "unitPattern-count-one": "{0} PB",
4149
- "unitPattern-count-other": "{0} PB"
4150
- },
4151
- "digital-terabyte": {
4152
- "displayName": "TB",
4153
- "unitPattern-count-one": "{0} TB",
4154
- "unitPattern-count-other": "{0} TB"
4155
- },
4156
- "digital-terabit": {
4157
- "displayName": "Tb",
4158
- "unitPattern-count-one": "{0} Tb",
4159
- "unitPattern-count-other": "{0} Tb"
4160
- },
4161
- "digital-gigabyte": {
4162
- "displayName": "GB",
4163
- "unitPattern-count-one": "{0} GB",
4164
- "unitPattern-count-other": "{0} GB"
4165
- },
4166
- "digital-gigabit": {
4167
- "displayName": "Gb",
4168
- "unitPattern-count-one": "{0} Gb",
4169
- "unitPattern-count-other": "{0} Gb"
4170
- },
4171
- "digital-megabyte": {
4172
- "displayName": "MB",
4173
- "unitPattern-count-one": "{0} MB",
4174
- "unitPattern-count-other": "{0} MB"
4175
- },
4176
- "digital-megabit": {
4177
- "displayName": "Mb",
4178
- "unitPattern-count-one": "{0} Mb",
4179
- "unitPattern-count-other": "{0} Mb"
4180
- },
4181
- "digital-kilobyte": {
4182
- "displayName": "kB",
4183
- "unitPattern-count-one": "{0} kB",
4184
- "unitPattern-count-other": "{0} kB"
4185
- },
4186
- "digital-kilobit": {
4187
- "displayName": "kb",
4188
- "unitPattern-count-one": "{0} kb",
4189
- "unitPattern-count-other": "{0} kb"
4190
- },
4191
- "digital-byte": {
4192
- "displayName": "byte",
4193
- "unitPattern-count-one": "{0} byte",
4194
- "unitPattern-count-other": "{0} byte"
4195
- },
4196
- "digital-bit": {
4197
- "displayName": "bit",
4198
- "unitPattern-count-one": "{0} bit",
4199
- "unitPattern-count-other": "{0} bit"
4200
- },
4201
- "duration-century": {
4202
- "displayName": "sec.",
4203
- "unitPattern-count-one": "{0} sec.",
4204
- "unitPattern-count-other": "{0} secc."
4205
- },
4206
- "duration-year": {
4207
- "displayName": "anni",
4208
- "unitPattern-count-one": "{0} anno",
4209
- "unitPattern-count-other": "{0} anni",
4210
- "perUnitPattern": "{0}/anno"
4211
- },
4212
- "duration-month": {
4213
- "displayName": "mesi",
4214
- "unitPattern-count-one": "{0} mese",
4215
- "unitPattern-count-other": "{0} mesi",
4216
- "perUnitPattern": "{0}/mese"
4217
- },
4218
- "duration-week": {
4219
- "displayName": "settimane",
4220
- "unitPattern-count-one": "{0} settimana",
4221
- "unitPattern-count-other": "{0} settimane",
4222
- "perUnitPattern": "{0}/settimana"
4223
- },
4224
- "duration-day": {
4225
- "displayName": "giorni",
4226
- "unitPattern-count-one": "{0} giorno",
4227
- "unitPattern-count-other": "{0} giorni",
4228
- "perUnitPattern": "{0}/giorno"
4229
- },
4230
- "duration-hour": {
4231
- "displayName": "h",
4232
- "unitPattern-count-one": "{0} h",
4233
- "unitPattern-count-other": "{0} h",
4234
- "perUnitPattern": "{0}/h"
4235
- },
4236
- "duration-minute": {
4237
- "displayName": "min",
4238
- "unitPattern-count-one": "{0} min",
4239
- "unitPattern-count-other": "{0} min",
4240
- "perUnitPattern": "{0}/min"
4241
- },
4242
- "duration-second": {
4243
- "displayName": "s",
4244
- "unitPattern-count-one": "{0} s",
4245
- "unitPattern-count-other": "{0} s",
4246
- "perUnitPattern": "{0}/s"
4247
- },
4248
- "duration-millisecond": {
4249
- "displayName": "ms",
4250
- "unitPattern-count-one": "{0} ms",
4251
- "unitPattern-count-other": "{0} ms"
4252
- },
4253
- "duration-microsecond": {
4254
- "displayName": "μs",
4255
- "unitPattern-count-one": "{0} μs",
4256
- "unitPattern-count-other": "{0} μs"
4257
- },
4258
- "duration-nanosecond": {
4259
- "displayName": "ns",
4260
- "unitPattern-count-one": "{0} ns",
4261
- "unitPattern-count-other": "{0} ns"
4262
- },
4263
- "electric-ampere": {
4264
- "displayName": "A",
4265
- "unitPattern-count-one": "{0} A",
4266
- "unitPattern-count-other": "{0} A"
4267
- },
4268
- "electric-milliampere": {
4269
- "displayName": "mA",
4270
- "unitPattern-count-one": "{0} mA",
4271
- "unitPattern-count-other": "{0} mA"
4272
- },
4273
- "electric-ohm": {
4274
- "displayName": "Ω",
4275
- "unitPattern-count-one": "{0} Ω",
4276
- "unitPattern-count-other": "{0} Ω"
4277
- },
4278
- "electric-volt": {
4279
- "displayName": "V",
4280
- "unitPattern-count-one": "{0} V",
4281
- "unitPattern-count-other": "{0} V"
4282
- },
4283
- "energy-kilocalorie": {
4284
- "displayName": "kcal",
4285
- "unitPattern-count-one": "{0} kcal",
4286
- "unitPattern-count-other": "{0} kcal"
4287
- },
4288
- "energy-calorie": {
4289
- "displayName": "cal",
4290
- "unitPattern-count-one": "{0} cal",
4291
- "unitPattern-count-other": "{0} cal"
4292
- },
4293
- "energy-foodcalorie": {
4294
- "displayName": "Cal",
4295
- "unitPattern-count-one": "{0} Cal",
4296
- "unitPattern-count-other": "{0} Cal"
4297
- },
4298
- "energy-kilojoule": {
4299
- "displayName": "kJ",
4300
- "unitPattern-count-one": "{0} kJ",
4301
- "unitPattern-count-other": "{0} kJ"
4302
- },
4303
- "energy-joule": {
4304
- "displayName": "J",
4305
- "unitPattern-count-one": "{0} J",
4306
- "unitPattern-count-other": "{0} J"
4307
- },
4308
- "energy-kilowatt-hour": {
4309
- "displayName": "kWh",
4310
- "unitPattern-count-one": "{0} kWh",
4311
- "unitPattern-count-other": "{0} kWh"
4312
- },
4313
- "energy-electronvolt": {
4314
- "displayName": "eV",
4315
- "unitPattern-count-one": "{0} eV",
4316
- "unitPattern-count-other": "{0} eV"
4317
- },
4318
- "energy-british-thermal-unit": {
4319
- "displayName": "BTU",
4320
- "unitPattern-count-one": "{0} BTU",
4321
- "unitPattern-count-other": "{0} BTU"
4322
- },
4323
- "force-pound-force": {
4324
- "displayName": "lbf",
4325
- "unitPattern-count-one": "{0} lbf",
4326
- "unitPattern-count-other": "{0} lbf"
4327
- },
4328
- "force-newton": {
4329
- "displayName": "N",
4330
- "unitPattern-count-one": "{0} N",
4331
- "unitPattern-count-other": "{0} N"
4332
- },
4333
- "frequency-gigahertz": {
4334
- "displayName": "GHz",
4335
- "unitPattern-count-one": "{0} GHz",
4336
- "unitPattern-count-other": "{0} GHz"
4337
- },
4338
- "frequency-megahertz": {
4339
- "displayName": "MHz",
4340
- "unitPattern-count-one": "{0} MHz",
4341
- "unitPattern-count-other": "{0} MHz"
4342
- },
4343
- "frequency-kilohertz": {
4344
- "displayName": "kHz",
4345
- "unitPattern-count-one": "{0} kHz",
4346
- "unitPattern-count-other": "{0} kHz"
4347
- },
4348
- "frequency-hertz": {
4349
- "displayName": "Hz",
4350
- "unitPattern-count-one": "{0} Hz",
4351
- "unitPattern-count-other": "{0} Hz"
4352
- },
4353
- "length-kilometer": {
4354
- "displayName": "km",
4355
- "unitPattern-count-one": "{0} km",
4356
- "unitPattern-count-other": "{0} km",
4357
- "perUnitPattern": "{0}/km"
4358
- },
4359
- "length-meter": {
4360
- "displayName": "m",
4361
- "unitPattern-count-one": "{0} m",
4362
- "unitPattern-count-other": "{0} m",
4363
- "perUnitPattern": "{0}/m"
4364
- },
4365
- "length-decimeter": {
4366
- "displayName": "dm",
4367
- "unitPattern-count-one": "{0} dm",
4368
- "unitPattern-count-other": "{0} dm"
4369
- },
4370
- "length-centimeter": {
4371
- "displayName": "cm",
4372
- "unitPattern-count-one": "{0} cm",
4373
- "unitPattern-count-other": "{0} cm",
4374
- "perUnitPattern": "{0}/cm"
4375
- },
4376
- "length-millimeter": {
4377
- "displayName": "mm",
4378
- "unitPattern-count-one": "{0} mm",
4379
- "unitPattern-count-other": "{0} mm"
4380
- },
4381
- "length-micrometer": {
4382
- "displayName": "µm",
4383
- "unitPattern-count-one": "{0} µm",
4384
- "unitPattern-count-other": "{0} µm"
4385
- },
4386
- "length-nanometer": {
4387
- "displayName": "nm",
4388
- "unitPattern-count-one": "{0} nm",
4389
- "unitPattern-count-other": "{0} nm"
4390
- },
4391
- "length-picometer": {
4392
- "displayName": "pm",
4393
- "unitPattern-count-one": "{0} pm",
4394
- "unitPattern-count-other": "{0} pm"
4395
- },
4396
- "length-mile": {
4397
- "displayName": "miglia",
4398
- "unitPattern-count-one": "{0} mi",
4399
- "unitPattern-count-other": "{0} mi"
4400
- },
4401
- "length-yard": {
4402
- "displayName": "iarde",
4403
- "unitPattern-count-one": "{0} yd",
4404
- "unitPattern-count-other": "{0} yd"
4405
- },
4406
- "length-foot": {
4407
- "displayName": "ft",
4408
- "unitPattern-count-one": "{0} ft",
4409
- "unitPattern-count-other": "{0} ft",
4410
- "perUnitPattern": "{0}/ft"
4411
- },
4412
- "length-inch": {
4413
- "displayName": "in",
4414
- "unitPattern-count-one": "{0} in",
4415
- "unitPattern-count-other": "{0} in",
4416
- "perUnitPattern": "{0}/in"
4417
- },
4418
- "length-parsec": {
4419
- "displayName": "pc",
4420
- "unitPattern-count-one": "{0} pc",
4421
- "unitPattern-count-other": "{0} pc"
4422
- },
4423
- "length-light-year": {
4424
- "displayName": "al",
4425
- "unitPattern-count-one": "{0} al",
4426
- "unitPattern-count-other": "{0} al"
4427
- },
4428
- "length-astronomical-unit": {
4429
- "displayName": "au",
4430
- "unitPattern-count-one": "{0} au",
4431
- "unitPattern-count-other": "{0} au"
4432
- },
4433
- "length-furlong": {
4434
- "displayName": "fur",
4435
- "unitPattern-count-other": "{0} fur"
4436
- },
4437
- "length-fathom": {
4438
- "displayName": "fm",
4439
- "unitPattern-count-other": "{0} fth"
4440
- },
4441
- "length-nautical-mile": {
4442
- "displayName": "nmi",
4443
- "unitPattern-count-one": "{0} nmi",
4444
- "unitPattern-count-other": "{0} nmi"
4445
- },
4446
- "length-mile-scandinavian": {
4447
- "displayName": "smi",
4448
- "unitPattern-count-one": "{0} smi",
4449
- "unitPattern-count-other": "{0} smi"
4450
- },
4451
- "length-point": {
4452
- "displayName": "pt",
4453
- "unitPattern-count-one": "{0} pt",
4454
- "unitPattern-count-other": "{0} pt"
4455
- },
4456
- "length-solar-radius": {
4457
- "displayName": "R☉",
4458
- "unitPattern-count-one": "{0} R☉",
4459
- "unitPattern-count-other": "{0} R☉"
4460
- },
4461
- "light-lux": {
4462
- "displayName": "lx",
4463
- "unitPattern-count-one": "{0} lx",
4464
- "unitPattern-count-other": "{0} lx"
4465
- },
4466
- "light-solar-luminosity": {
4467
- "displayName": "L☉",
4468
- "unitPattern-count-one": "{0} L☉",
4469
- "unitPattern-count-other": "{0} L☉"
4470
- },
4471
- "mass-metric-ton": {
4472
- "displayName": "t",
4473
- "unitPattern-count-one": "{0} t",
4474
- "unitPattern-count-other": "{0} t"
4475
- },
4476
- "mass-kilogram": {
4477
- "displayName": "kg",
4478
- "unitPattern-count-one": "{0} kg",
4479
- "unitPattern-count-other": "{0} kg",
4480
- "perUnitPattern": "{0}/kg"
4481
- },
4482
- "mass-gram": {
4483
- "displayName": "grammi",
4484
- "unitPattern-count-one": "{0} g",
4485
- "unitPattern-count-other": "{0} g",
4486
- "perUnitPattern": "{0}/g"
4487
- },
4488
- "mass-milligram": {
4489
- "displayName": "mg",
4490
- "unitPattern-count-one": "{0} mg",
4491
- "unitPattern-count-other": "{0} mg"
4492
- },
4493
- "mass-microgram": {
4494
- "displayName": "µg",
4495
- "unitPattern-count-one": "{0} µg",
4496
- "unitPattern-count-other": "{0} µg"
4497
- },
4498
- "mass-ton": {
4499
- "displayName": "tn",
4500
- "unitPattern-count-one": "{0} tn",
4501
- "unitPattern-count-other": "{0} tn"
4502
- },
4503
- "mass-stone": {
4504
- "displayName": "st",
4505
- "unitPattern-count-other": "{0} st"
4506
- },
4507
- "mass-pound": {
4508
- "displayName": "lb",
4509
- "unitPattern-count-one": "{0} lb",
4510
- "unitPattern-count-other": "{0} lb",
4511
- "perUnitPattern": "{0}/lb"
4512
- },
4513
- "mass-ounce": {
4514
- "displayName": "oz",
4515
- "unitPattern-count-one": "{0} oz",
4516
- "unitPattern-count-other": "{0} oz",
4517
- "perUnitPattern": "{0}/oz"
4518
- },
4519
- "mass-ounce-troy": {
4520
- "displayName": "ozt",
4521
- "unitPattern-count-one": "{0} ozt",
4522
- "unitPattern-count-other": "{0} ozt"
4523
- },
4524
- "mass-carat": {
4525
- "displayName": "carati",
4526
- "unitPattern-count-one": "{0} kt",
4527
- "unitPattern-count-other": "{0} kt"
4528
- },
4529
- "mass-dalton": {
4530
- "displayName": "Da",
4531
- "unitPattern-count-one": "{0} Da",
4532
- "unitPattern-count-other": "{0} Da"
4533
- },
4534
- "mass-earth-mass": {
4535
- "displayName": "M⊕",
4536
- "unitPattern-count-one": "{0} M⊕",
4537
- "unitPattern-count-other": "{0} M⊕"
4538
- },
4539
- "mass-solar-mass": {
4540
- "displayName": "M☉",
4541
- "unitPattern-count-one": "{0} M☉",
4542
- "unitPattern-count-other": "{0} M☉"
4543
- },
4544
- "power-gigawatt": {
4545
- "displayName": "GW",
4546
- "unitPattern-count-one": "{0} GW",
4547
- "unitPattern-count-other": "{0} GW"
4548
- },
4549
- "power-megawatt": {
4550
- "displayName": "MW",
4551
- "unitPattern-count-one": "{0} MW",
4552
- "unitPattern-count-other": "{0} MW"
4553
- },
4554
- "power-kilowatt": {
4555
- "displayName": "kW",
4556
- "unitPattern-count-one": "{0} kW",
4557
- "unitPattern-count-other": "{0} kW"
4558
- },
4559
- "power-watt": {
4560
- "displayName": "W",
4561
- "unitPattern-count-one": "{0} W",
4562
- "unitPattern-count-other": "{0} W"
4563
- },
4564
- "power-milliwatt": {
4565
- "displayName": "mW",
4566
- "unitPattern-count-one": "{0} mW",
4567
- "unitPattern-count-other": "{0} mW"
4568
- },
4569
- "power-horsepower": {
4570
- "displayName": "hp",
4571
- "unitPattern-count-one": "{0} hp",
4572
- "unitPattern-count-other": "{0} hp"
4573
- },
4574
- "pressure-hectopascal": {
4575
- "displayName": "hPa",
4576
- "unitPattern-count-one": "{0} hPa",
4577
- "unitPattern-count-other": "{0} hPa"
4578
- },
4579
- "pressure-millimeter-of-mercury": {
4580
- "displayName": "mm Hg",
4581
- "unitPattern-count-one": "{0} mm Hg",
4582
- "unitPattern-count-other": "{0} mm Hg"
4583
- },
4584
- "pressure-pound-per-square-inch": {
4585
- "displayName": "psi",
4586
- "unitPattern-count-one": "{0} psi",
4587
- "unitPattern-count-other": "{0} psi"
4588
- },
4589
- "pressure-inch-hg": {
4590
- "displayName": "inHg",
4591
- "unitPattern-count-one": "{0} inHg",
4592
- "unitPattern-count-other": "{0} inHg"
4593
- },
4594
- "pressure-millibar": {
4595
- "displayName": "mbar",
4596
- "unitPattern-count-one": "{0} mbar",
4597
- "unitPattern-count-other": "{0} mbar"
4598
- },
4599
- "pressure-atmosphere": {
4600
- "displayName": "atm",
4601
- "unitPattern-count-one": "{0} atm",
4602
- "unitPattern-count-other": "{0} atm"
4603
- },
4604
- "pressure-kilopascal": {
4605
- "displayName": "kPa",
4606
- "unitPattern-count-one": "{0} kPa",
4607
- "unitPattern-count-other": "{0} kPa"
4608
- },
4609
- "pressure-megapascal": {
4610
- "displayName": "MPa",
4611
- "unitPattern-count-one": "{0} MPa",
4612
- "unitPattern-count-other": "{0} MPa"
4613
- },
4614
- "speed-kilometer-per-hour": {
4615
- "displayName": "km/h",
4616
- "unitPattern-count-one": "{0} km/h",
4617
- "unitPattern-count-other": "{0} km/h"
4618
- },
4619
- "speed-meter-per-second": {
4620
- "displayName": "m/s",
4621
- "unitPattern-count-one": "{0} m/s",
4622
- "unitPattern-count-other": "{0} m/s"
4623
- },
4624
- "speed-mile-per-hour": {
4625
- "displayName": "mi/h",
4626
- "unitPattern-count-one": "{0} mi/h",
4627
- "unitPattern-count-other": "{0} mi/h"
4628
- },
4629
- "speed-knot": {
4630
- "displayName": "kn",
4631
- "unitPattern-count-one": "{0} kn",
4632
- "unitPattern-count-other": "{0} kn"
4633
- },
4634
- "temperature-generic": {
4635
- "displayName": "°",
4636
- "unitPattern-count-one": "{0}°",
4637
- "unitPattern-count-other": "{0}°"
4638
- },
4639
- "temperature-celsius": {
4640
- "displayName": "°C",
4641
- "unitPattern-count-one": "{0} °C",
4642
- "unitPattern-count-other": "{0} °C"
4643
- },
4644
- "temperature-fahrenheit": {
4645
- "displayName": "°F",
4646
- "unitPattern-count-one": "{0} °F",
4647
- "unitPattern-count-other": "{0} °F"
4648
- },
4649
- "temperature-kelvin": {
4650
- "displayName": "K",
4651
- "unitPattern-count-one": "{0} K",
4652
- "unitPattern-count-other": "{0} K"
4653
- },
4654
- "torque-pound-foot": {
4655
- "displayName": "lb-ft",
4656
- "unitPattern-count-one": "{0} lb-ft",
4657
- "unitPattern-count-other": "{0} lb-ft"
4658
- },
4659
- "torque-newton-meter": {
4660
- "displayName": "Nm",
4661
- "unitPattern-count-one": "{0} Nm",
4662
- "unitPattern-count-other": "{0} Nm"
4663
- },
4664
- "volume-cubic-kilometer": {
4665
- "displayName": "km³",
4666
- "unitPattern-count-one": "{0} km³",
4667
- "unitPattern-count-other": "{0} km³"
4668
- },
4669
- "volume-cubic-meter": {
4670
- "displayName": "m³",
4671
- "unitPattern-count-one": "{0} m³",
4672
- "unitPattern-count-other": "{0} m³",
4673
- "perUnitPattern": "{0}/m³"
4674
- },
4675
- "volume-cubic-centimeter": {
4676
- "displayName": "cm³",
4677
- "unitPattern-count-one": "{0} cm³",
4678
- "unitPattern-count-other": "{0} cm³",
4679
- "perUnitPattern": "{0}/cm³"
4680
- },
4681
- "volume-cubic-mile": {
4682
- "displayName": "mi³",
4683
- "unitPattern-count-one": "{0} mi³",
4684
- "unitPattern-count-other": "{0} mi³"
4685
- },
4686
- "volume-cubic-yard": {
4687
- "displayName": "yd³",
4688
- "unitPattern-count-one": "{0} yd³",
4689
- "unitPattern-count-other": "{0} yd³"
4690
- },
4691
- "volume-cubic-foot": {
4692
- "displayName": "ft³",
4693
- "unitPattern-count-one": "{0} ft³",
4694
- "unitPattern-count-other": "{0} ft³"
4695
- },
4696
- "volume-cubic-inch": {
4697
- "displayName": "in³",
4698
- "unitPattern-count-one": "{0} in³",
4699
- "unitPattern-count-other": "{0} in³"
4700
- },
4701
- "volume-megaliter": {
4702
- "displayName": "Ml",
4703
- "unitPattern-count-one": "{0} Ml",
4704
- "unitPattern-count-other": "{0} Ml"
4705
- },
4706
- "volume-hectoliter": {
4707
- "displayName": "hl",
4708
- "unitPattern-count-one": "{0} hl",
4709
- "unitPattern-count-other": "{0} hl"
4710
- },
4711
- "volume-liter": {
4712
- "displayName": "l",
4713
- "unitPattern-count-one": "{0} l",
4714
- "unitPattern-count-other": "{0} l",
4715
- "perUnitPattern": "{0}/l"
4716
- },
4717
- "volume-deciliter": {
4718
- "displayName": "dl",
4719
- "unitPattern-count-one": "{0} dl",
4720
- "unitPattern-count-other": "{0} dl"
4721
- },
4722
- "volume-centiliter": {
4723
- "displayName": "cl",
4724
- "unitPattern-count-one": "{0} cl",
4725
- "unitPattern-count-other": "{0} cl"
4726
- },
4727
- "volume-milliliter": {
4728
- "displayName": "ml",
4729
- "unitPattern-count-one": "{0} ml",
4730
- "unitPattern-count-other": "{0} ml"
4731
- },
4732
- "volume-pint-metric": {
4733
- "displayName": "mpt",
4734
- "unitPattern-count-one": "{0} mpt",
4735
- "unitPattern-count-other": "{0} mpt"
4736
- },
4737
- "volume-cup-metric": {
4738
- "displayName": "mcup",
4739
- "unitPattern-count-one": "{0} mc",
4740
- "unitPattern-count-other": "{0} mc"
4741
- },
4742
- "volume-acre-foot": {
4743
- "displayName": "ac ft",
4744
- "unitPattern-count-one": "{0} ac ft",
4745
- "unitPattern-count-other": "{0} ac ft"
4746
- },
4747
- "volume-bushel": {
4748
- "displayName": "staia",
4749
- "unitPattern-count-other": "{0} bu"
4750
- },
4751
- "volume-gallon": {
4752
- "displayName": "gal",
4753
- "unitPattern-count-one": "{0} gal",
4754
- "unitPattern-count-other": "{0} gal",
4755
- "perUnitPattern": "{0}/gal"
4756
- },
4757
- "volume-gallon-imperial": {
4758
- "displayName": "Gal imp.",
4759
- "unitPattern-count-one": "{0} gal imp.",
4760
- "unitPattern-count-other": "{0} gal imp.",
4761
- "perUnitPattern": "{0}/gal imp."
4762
- },
4763
- "volume-quart": {
4764
- "displayName": "qt",
4765
- "unitPattern-count-one": "{0} qt",
4766
- "unitPattern-count-other": "{0} qt"
4767
- },
4768
- "volume-pint": {
4769
- "displayName": "pt",
4770
- "unitPattern-count-one": "{0} pt",
4771
- "unitPattern-count-other": "{0} pt"
4772
- },
4773
- "volume-cup": {
4774
- "displayName": "c",
4775
- "unitPattern-count-one": "{0} c",
4776
- "unitPattern-count-other": "{0} c"
4777
- },
4778
- "volume-fluid-ounce": {
4779
- "displayName": "fl oz",
4780
- "unitPattern-count-one": "{0} fl oz",
4781
- "unitPattern-count-other": "{0} fl oz"
4782
- },
4783
- "volume-fluid-ounce-imperial": {
4784
- "displayName": "fl oz imp.",
4785
- "unitPattern-count-one": "{0} fl oz imp.",
4786
- "unitPattern-count-other": "{0} fl oz imp."
4787
- },
4788
- "volume-tablespoon": {
4789
- "displayName": "tbsp",
4790
- "unitPattern-count-one": "{0} tbsp",
4791
- "unitPattern-count-other": "{0} tbsp"
4792
- },
4793
- "volume-teaspoon": {
4794
- "displayName": "tsp",
4795
- "unitPattern-count-one": "{0} tsp",
4796
- "unitPattern-count-other": "{0} tsp"
4797
- },
4798
- "volume-barrel": {
4799
- "displayName": "barrel",
4800
- "unitPattern-count-one": "{0} barrel",
4801
- "unitPattern-count-other": "{0} barrel"
4802
- },
4803
- "coordinateUnit": {
4804
- "displayName": "punto",
4805
- "east": "{0}E",
4806
- "north": "{0}N",
4807
- "south": "{0}S",
4808
- "west": "{0}O"
4809
- }
4810
- }
4811
- },
4812
- "lenient-scope-number": {
4813
- "minusSign": "-‒⁻₋−➖﹣-",
4814
- "commaSign": ",،٫、︐︑﹐﹑,、",
4815
- "plusSign": "+⁺₊➕﬩﹢+"
4816
- },
4817
- "currencyFormat-sap-short": {
4818
- "1000-one": "0",
4819
- "1000-other": "0",
4820
- "10000-one": "0",
4821
- "10000-other": "0",
4822
- "100000-one": "0",
4823
- "100000-other": "0",
4824
- "1000000-one": "0 Mio ¤",
4825
- "1000000-other": "0 Mio ¤",
4826
- "10000000-one": "00 Mio ¤",
4827
- "10000000-other": "00 Mio ¤",
4828
- "100000000-one": "000 Mio ¤",
4829
- "100000000-other": "000 Mio ¤",
4830
- "1000000000-one": "0 Mrd ¤",
4831
- "1000000000-other": "0 Mrd ¤",
4832
- "10000000000-one": "00 Mrd ¤",
4833
- "10000000000-other": "00 Mrd ¤",
4834
- "100000000000-one": "000 Mrd ¤",
4835
- "100000000000-other": "000 Mrd ¤",
4836
- "1000000000000-one": "0 Bln ¤",
4837
- "1000000000000-other": "0 Bln ¤",
4838
- "10000000000000-one": "00 Bln ¤",
4839
- "10000000000000-other": "00 Bln ¤",
4840
- "100000000000000-one": "000 Bln ¤",
4841
- "100000000000000-other": "000 Bln ¤"
4842
- },
4843
- "currencyDigits": {
4844
- "ADP": 0,
4845
- "AFN": 0,
4846
- "ALL": 0,
4847
- "BHD": 3,
4848
- "BIF": 0,
4849
- "BYR": 0,
4850
- "CLF": 4,
4851
- "CLP": 0,
4852
- "DEFAULT": 2,
4853
- "DJF": 0,
4854
- "ESP": 0,
4855
- "GNF": 0,
4856
- "HUF": 0,
4857
- "IQD": 0,
4858
- "IRR": 0,
4859
- "ISK": 0,
4860
- "ITL": 0,
4861
- "JOD": 3,
4862
- "JPY": 0,
4863
- "KMF": 0,
4864
- "KPW": 0,
4865
- "KRW": 0,
4866
- "KWD": 3,
4867
- "LAK": 0,
4868
- "LBP": 0,
4869
- "LUF": 0,
4870
- "LYD": 3,
4871
- "MGA": 0,
4872
- "MGF": 0,
4873
- "MMK": 0,
4874
- "MRO": 0,
4875
- "OMR": 3,
4876
- "PYG": 0,
4877
- "RSD": 0,
4878
- "RWF": 0,
4879
- "SLL": 0,
4880
- "SOS": 0,
4881
- "STD": 0,
4882
- "SYP": 0,
4883
- "TMM": 0,
4884
- "TND": 3,
4885
- "TRL": 0,
4886
- "TWD": 0,
4887
- "UGX": 0,
4888
- "UYI": 0,
4889
- "UYW": 4,
4890
- "VND": 0,
4891
- "VUV": 0,
4892
- "XAF": 0,
4893
- "XOF": 0,
4894
- "XPF": 0,
4895
- "YER": 0,
4896
- "ZMK": 0,
4897
- "ZWD": 0
4898
- },
4899
- "plurals": {
4900
- "one": "i = 1 and v = 0"
4901
- },
4902
- "weekData-minDays": 4,
4903
- "weekData-firstDay": 1,
4904
- "weekData-weekendStart": 6,
4905
- "weekData-weekendEnd": 0,
4906
- "timeData": {
4907
- "_allowed": "H hB",
4908
- "_preferred": "H"
4909
- },
4910
- "eras-gregorian": {
4911
- "0": {
4912
- "_end": "0-12-31"
4913
- },
4914
- "1": {
4915
- "_start": "1-01-01"
4916
- }
4917
- },
4918
- "eras-islamic": {
4919
- "0": {
4920
- "_start": "622-7-15"
4921
- }
4922
- },
4923
- "eras-persian": {
4924
- "0": {
4925
- "_start": "622-01-01"
4926
- }
4927
- },
4928
- "eras-buddhist": {
4929
- "0": {
4930
- "_start": "-542-01-01"
4931
- }
4932
- },
4933
- "eras-japanese": {
4934
- "232": {
4935
- "_start": "1868-9-8"
4936
- },
4937
- "233": {
4938
- "_start": "1912-7-30"
4939
- },
4940
- "234": {
4941
- "_start": "1926-12-25"
4942
- },
4943
- "235": {
4944
- "_start": "1989-1-8"
4945
- },
4946
- "236": {
4947
- "_start": "2019-5-1"
4948
- }
4949
- }
4950
- }