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