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