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