@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,4940 +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": "africanês",
12
- "afh": "afrihili",
13
- "agq": "aghem",
14
- "ain": "ainu",
15
- "ak": "akan",
16
- "akk": "acadiano",
17
- "ale": "aleúte",
18
- "alt": "altai do sul",
19
- "am": "amárico",
20
- "an": "aragonês",
21
- "ang": "inglês antigo",
22
- "anp": "angika",
23
- "ar": "árabe",
24
- "ar_001": "árabe moderno padrão",
25
- "arc": "aramaico",
26
- "arn": "mapuche",
27
- "arp": "arapaho",
28
- "ars": "árabe do Négede",
29
- "arw": "arauaqui",
30
- "as": "assamês",
31
- "asa": "asu",
32
- "ast": "asturiano",
33
- "av": "avaric",
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": "bamun",
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": "bengalês",
60
- "bo": "tibetano",
61
- "br": "bretão",
62
- "bra": "braj",
63
- "brx": "bodo",
64
- "bs": "bósnio",
65
- "bss": "akoose",
66
- "bua": "buriat",
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": "chuquês",
84
- "chm": "mari",
85
- "chn": "jargão chinook",
86
- "cho": "choctaw",
87
- "chp": "chipewyan",
88
- "chr": "cherokee",
89
- "chy": "cheyenne",
90
- "ckb": "sorani curdo",
91
- "co": "córsico",
92
- "cop": "copta",
93
- "cr": "cree",
94
- "crh": "turco da Crimeia",
95
- "crs": "francês crioulo seselwa",
96
- "cs": "checo",
97
- "csb": "kashubian",
98
- "cu": "eslavo eclesiástico",
99
- "cv": "chuvash",
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 austríaco",
107
- "de_CH": "alto alemão suíço",
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": "ewe",
124
- "efi": "efik",
125
- "egy": "egípcio clássico",
126
- "eka": "ekajuk",
127
- "el": "grego",
128
- "elx": "elamite",
129
- "en": "inglês",
130
- "en_AU": "inglês australiano",
131
- "en_CA": "inglês canadiano",
132
- "en_GB": "inglês britânico",
133
- "en_GB-alt-short": "inglês (RU)",
134
- "en_US": "inglês americano",
135
- "en_US-alt-short": "inglês (EUA)",
136
- "enm": "inglês médio",
137
- "eo": "esperanto",
138
- "es": "espanhol",
139
- "es_419": "espanhol latino-americano",
140
- "es_ES": "espanhol europeu",
141
- "es_MX": "espanhol mexicano",
142
- "et": "estónio",
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": "fon",
154
- "fr": "francês",
155
- "fr_CA": "francês canadiano",
156
- "fr_CH": "francês suíço",
157
- "frc": "francês cajun",
158
- "frm": "francês médio",
159
- "fro": "francês antigo",
160
- "frr": "frísio setentrional",
161
- "frs": "frísio oriental",
162
- "fur": "friulano",
163
- "fy": "frísico 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": "geʼez",
172
- "gil": "gilbertês",
173
- "gl": "galego",
174
- "gmh": "alto alemão médio",
175
- "gn": "guarani",
176
- "goh": "alemão alto antigo",
177
- "gon": "gondi",
178
- "gor": "gorontalo",
179
- "got": "gótico",
180
- "grb": "grebo",
181
- "grc": "grego clássico",
182
- "gsw": "alemão suíço",
183
- "gu": "guzerate",
184
- "guz": "gusii",
185
- "gv": "manx",
186
- "gwi": "gwichʼin",
187
- "ha": "haúça",
188
- "hai": "haida",
189
- "hak": "hacá",
190
- "haw": "havaiano",
191
- "he": "hebraico",
192
- "hi": "hindi",
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": "cabardiano",
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": "gronelandê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": "carachaio-bálcaro",
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": "lezghiano",
278
- "lg": "ganda",
279
- "li": "limburguês",
280
- "lkt": "lacota",
281
- "ln": "lingala",
282
- "lo": "laosiano",
283
- "lol": "mongo",
284
- "lou": "crioulo de Louisiana",
285
- "loz": "lozi",
286
- "lrc": "luri do norte",
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": "makassarês",
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": "mohawk",
323
- "mos": "mossi",
324
- "mr": "marata",
325
- "ms": "malaio",
326
- "mt": "maltês",
327
- "mua": "mundang",
328
- "mul": "vários 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": "norueguês bokmål",
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": "neerlandês",
350
- "nl_BE": "flamengo",
351
- "nmg": "kwasio",
352
- "nn": "norueguês nynorsk",
353
- "nnh": "ngiemboon",
354
- "no": "norueguês",
355
- "nog": "nogai",
356
- "non": "nórdico antigo",
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": "occitano",
369
- "oj": "ojibwa",
370
- "om": "oromo",
371
- "or": "oriya",
372
- "os": "ossético",
373
- "osa": "osage",
374
- "ota": "turco otomano",
375
- "pa": "panjabi",
376
- "pag": "língua pangasinesa",
377
- "pal": "pálavi",
378
- "pam": "pampango",
379
- "pap": "papiamento",
380
- "pau": "palauano",
381
- "pcm": "pidgin nigeriano",
382
- "peo": "persa antigo",
383
- "phn": "fenício",
384
- "pi": "páli",
385
- "pl": "polaco",
386
- "pon": "língua pohnpeica",
387
- "prg": "prussiano",
388
- "pro": "provençal antigo",
389
- "ps": "pastó",
390
- "ps_alt-variant": "pushto",
391
- "pt": "português",
392
- "pt_BR": "português do Brasil",
393
- "pt_PT": "português europeu",
394
- "qu": "quíchua",
395
- "quc": "quiché",
396
- "raj": "rajastanês",
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": "root",
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 do norte",
425
- "see": "seneca",
426
- "seh": "sena",
427
- "sel": "selkup",
428
- "ses": "koyraboro senni",
429
- "sg": "sango",
430
- "sga": "irlandês antigo",
431
- "sh": "servo-croata",
432
- "shi": "tachelhit",
433
- "shn": "shan",
434
- "shu": "árabe do Chade",
435
- "si": "cingalês",
436
- "sid": "sidamo",
437
- "sk": "eslovaco",
438
- "sl": "esloveno",
439
- "sm": "samoano",
440
- "sma": "sami do sul",
441
- "smj": "sami de Lule",
442
- "smn": "inari sami",
443
- "sms": "sami de Skolt",
444
- "sn": "shona",
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": "telugu",
467
- "tem": "temne",
468
- "teo": "teso",
469
- "ter": "tereno",
470
- "tet": "tétum",
471
- "tg": "tajique",
472
- "th": "tailandês",
473
- "ti": "tigrínia",
474
- "tig": "tigré",
475
- "tiv": "tiv",
476
- "tk": "turcomano",
477
- "tkl": "toquelauano",
478
- "tl": "tagalo",
479
- "tlh": "klingon",
480
- "tli": "tlinguite",
481
- "tmh": "tamaxeque",
482
- "tn": "tswana",
483
- "to": "tonga",
484
- "tog": "tonganês de Nyasa",
485
- "tpi": "tok pisin",
486
- "tr": "turco",
487
- "trv": "taroko",
488
- "ts": "tsonga",
489
- "tsi": "tsimshiano",
490
- "tt": "tatar",
491
- "tum": "tumbuka",
492
- "tvl": "tuvaluano",
493
- "tw": "twi",
494
- "twq": "tasawaq",
495
- "ty": "taitiano",
496
- "tyv": "tuviniano",
497
- "tzm": "tamazight 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": "usbeque",
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": "uólofe",
519
- "wuu": "wu",
520
- "xal": "kalmyk",
521
- "xh": "xosa",
522
- "xog": "soga",
523
- "yao": "yao",
524
- "yap": "yapese",
525
- "yav": "yangben",
526
- "ybb": "yemba",
527
- "yi": "iídiche",
528
- "yo": "ioruba",
529
- "yue": "cantonês",
530
- "za": "zhuang",
531
- "zap": "zapoteco",
532
- "zbl": "símbolos blis",
533
- "zen": "zenaga",
534
- "zgh": "tamazight marroquino padrão",
535
- "zh": "chinês",
536
- "zh_Hans": "chinês simplificado",
537
- "zh_Hant": "chinês tradicional",
538
- "zu": "zulu",
539
- "zun": "zuni",
540
- "zxx": "sem conteúdo linguístico",
541
- "zza": "zaza"
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": "bengalês",
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": "egípcio demótico",
579
- "Egyh": "egípcio hierático",
580
- "Egyp": "hieróglifos egípcios",
581
- "Elba": "Elba",
582
- "Elym": "Elym",
583
- "Ethi": "etíope",
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": "han com bopomofo",
595
- "Hang": "hangul",
596
- "Hani": "han",
597
- "Hano": "hanunoo",
598
- "Hans": "simplificado",
599
- "Hans-alt-stand-alone": "han simplificado",
600
- "Hant": "tradicional",
601
- "Hant-alt-stand-alone": "han tradicional",
602
- "Hatr": "Hatr",
603
- "Hebr": "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": "indus",
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": "odia",
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": "siloti 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": "telugu",
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": "símbolos",
728
- "Zxxx": "não escrito",
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 do Norte",
739
- "155": "Europa Ocidental",
740
- "202": "África subsariana",
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": "Oceânia",
747
- "011": "África Ocidental",
748
- "013": "América Central",
749
- "014": "África Oriental",
750
- "015": "Norte de África",
751
- "017": "África Central",
752
- "018": "África Austral",
753
- "019": "Américas",
754
- "021": "América Setentrional",
755
- "029": "Caraíbas",
756
- "030": "Ásia Oriental",
757
- "034": "Ásia do Sul",
758
- "035": "Sudeste Asiático",
759
- "039": "Europa do Sul",
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": "Alanda",
780
- "AZ": "Azerbaijão",
781
- "BA": "Bósnia e Herzegovina",
782
- "BB": "Barbados",
783
- "BD": "Bangladeche",
784
- "BE": "Bélgica",
785
- "BF": "Burquina Faso",
786
- "BG": "Bulgária",
787
- "BH": "Barém",
788
- "BI": "Burundi",
789
- "BJ": "Benim",
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": "Baamas",
797
- "BT": "Butão",
798
- "BV": "Ilha Bouvet",
799
- "BW": "Botsuana",
800
- "BY": "Bielorrússia",
801
- "BZ": "Belize",
802
- "CA": "Canadá",
803
- "CC": "Ilhas dos Cocos (Keeling)",
804
- "CD": "Congo-Kinshasa",
805
- "CD-alt-variant": "República Democrática do Congo",
806
- "CF": "República Centro-Africana",
807
- "CG": "Congo-Brazzaville",
808
- "CG-alt-variant": "República do Congo",
809
- "CH": "Suíça",
810
- "CI": "Côte d’Ivoire (Costa do Marfim)",
811
- "CI-alt-variant": "Costa do Marfim",
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çau",
822
- "CX": "Ilha do Natal",
823
- "CY": "Chipre",
824
- "CZ": "Chéquia",
825
- "CZ-alt-variant": "República Checa",
826
- "DE": "Alemanha",
827
- "DG": "Diego Garcia",
828
- "DJ": "Jibuti",
829
- "DK": "Dinamarca",
830
- "DM": "Domínica",
831
- "DO": "República Dominicana",
832
- "DZ": "Argélia",
833
- "EA": "Ceuta e Melilha",
834
- "EC": "Equador",
835
- "EE": "Estónia",
836
- "EG": "Egito",
837
- "EH": "Sara Ocidental",
838
- "ER": "Eritreia",
839
- "ES": "Espanha",
840
- "ET": "Etiópia",
841
- "EU": "União Europeia",
842
- "EZ": "Zona Euro",
843
- "FI": "Finlândia",
844
- "FJ": "Fiji",
845
- "FK": "Ilhas Malvinas (Falkland)",
846
- "FK-alt-variant": "Ilhas Falkland (Malvinas)",
847
- "FM": "Micronésia",
848
- "FO": "Ilhas Faroé",
849
- "FR": "França",
850
- "GA": "Gabão",
851
- "GB": "Reino Unido",
852
- "GB-alt-short": "GB",
853
- "GD": "Granada",
854
- "GE": "Geórgia",
855
- "GF": "Guiana Francesa",
856
- "GG": "Guernesey",
857
- "GH": "Gana",
858
- "GI": "Gibraltar",
859
- "GL": "Gronelâ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": "Guame",
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ão",
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": "Quiribáti",
896
- "KM": "Comores",
897
- "KN": "São Cristóvão e Neves",
898
- "KP": "Coreia do Norte",
899
- "KR": "Coreia do Sul",
900
- "KW": "Koweit",
901
- "KY": "Ilhas Caimão",
902
- "KZ": "Cazaquistão",
903
- "LA": "Laos",
904
- "LB": "Líbano",
905
- "LC": "Santa Lúcia",
906
- "LI": "Listenstaine",
907
- "LK": "Sri Lanca",
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": "Moldávia",
917
- "ME": "Montenegro",
918
- "MF": "São Martinho",
919
- "MG": "Madagáscar",
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": "Monserrate",
932
- "MT": "Malta",
933
- "MU": "Maurícia",
934
- "MV": "Maldivas",
935
- "MW": "Maláui",
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": "Niuê",
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 palestinianos",
963
- "PS-alt-short": "Palestina",
964
- "PT": "Portugal",
965
- "PW": "Palau",
966
- "PY": "Paraguai",
967
- "QA": "Catar",
968
- "QO": "Oceânia Insular",
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": "São Marinho",
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": "Salvador",
992
- "SX": "São Martinho (Sint Maarten)",
993
- "SY": "Síria",
994
- "SZ": "Essuatíni",
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": "Tajiquistão",
1003
- "TK": "Toquelau",
1004
- "TL": "Timor-Leste",
1005
- "TL-alt-variant": "República Democrática de Timor-Leste",
1006
- "TM": "Turquemenistão",
1007
- "TN": "Tunísia",
1008
- "TO": "Tonga",
1009
- "TR": "Turquia",
1010
- "TT": "Trindade e Tobago",
1011
- "TV": "Tuvalu",
1012
- "TW": "Taiwan, China",
1013
- "TZ": "Tanzânia",
1014
- "UA": "Ucrânia",
1015
- "UG": "Uganda",
1016
- "UM": "Ilhas Menores Afastadas 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": "Usbequistã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 dos EUA",
1028
- "VN": "Vietname",
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": "Maiote",
1037
- "ZA": "África do Sul",
1038
- "ZM": "Zâmbia",
1039
- "ZW": "Zimbabué",
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": "dd/MM/y",
1048
- "short": "dd/MM/yy"
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} 'às' {0}",
1058
- "long": "{1} 'às' {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": "dd/MM",
1090
- "MEd": "E, dd/MM",
1091
- "MMdd": "dd/MM",
1092
- "MMM": "LLL",
1093
- "MMMd": "d/MM",
1094
- "MMMEd": "E, d/MM",
1095
- "MMMMd": "d 'de' MMMM",
1096
- "MMMMEd": "ccc, 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": "MM/y",
1104
- "yMMMd": "d/MM/y",
1105
- "yMMMEd": "E, d/MM/y",
1106
- "yMMMEEEEd": "EEEE, d/MM/y",
1107
- "yMMMM": "MMMM 'de' y",
1108
- "yMMMMd": "d 'de' MMMM 'de' y",
1109
- "yMMMMEd": "ccc, d 'de' MMMM 'de' y",
1110
- "yQQQ": "QQQQ 'de' y",
1111
- "yQQQQ": "QQQQ 'de' y",
1112
- "MMMMW": "W.'ª' 'semana' 'de' MMMM",
1113
- "yw": "w.'ª' 'semana' 'de' Y"
1114
- },
1115
- "appendItems": {
1116
- "Day": "{0} ({2}: {1})",
1117
- "Day-Of-Week": "{0} {1}",
1118
- "Era": "{1} {0}",
1119
- "Hour": "{0} ({2}: {1})",
1120
- "Minute": "{0} ({2}: {1})",
1121
- "Month": "{0} ({2}: {1})",
1122
- "Quarter": "{0} ({2}: {1})",
1123
- "Second": "{0} ({2}: {1})",
1124
- "Timezone": "{0} {1}",
1125
- "Week": "{0} ({2}: {1})",
1126
- "Year": "{1} {0}"
1127
- },
1128
- "intervalFormats": {
1129
- "intervalFormatFallback": "{0} - {1}",
1130
- "Bh": {
1131
- "B": "h B – h B",
1132
- "h": "h – h B"
1133
- },
1134
- "Bhm": {
1135
- "B": "h:mm B – h:mm B",
1136
- "h": "h:mm – h:mm B",
1137
- "m": "h:mm – h:mm B"
1138
- },
1139
- "d": {
1140
- "d": "d–d"
1141
- },
1142
- "Gy": {
1143
- "G": "G y – G y",
1144
- "y": "G y – y"
1145
- },
1146
- "GyM": {
1147
- "G": "GGGGG MM/y – GGGGG MM/y",
1148
- "M": "GGGGG MM/y – MM/y",
1149
- "y": "GGGGG MM/y – MM/y"
1150
- },
1151
- "GyMd": {
1152
- "d": "GGGGG dd/MM/y – dd/MM/y",
1153
- "G": "GGGGG dd/MM/y – GGGGG dd/MM/y",
1154
- "M": "GGGGG dd/MM/y – dd/MM/y",
1155
- "y": "GGGGG dd/MM/y – dd/MM/y"
1156
- },
1157
- "GyMEd": {
1158
- "d": "GGGGG E dd/MM/y – dd/MM/y",
1159
- "G": "GGGGG E dd/MM/y – GGGGG E dd/MM/y",
1160
- "M": "GGGGG E dd/MM/y – E dd/MM/y",
1161
- "y": "GGGGG E dd/MM/y – E dd/MM/y"
1162
- },
1163
- "GyMMM": {
1164
- "G": "G MMM y – G MMM y",
1165
- "M": "G MMM y – MMM",
1166
- "y": "G MMM y – MMM y"
1167
- },
1168
- "GyMMMd": {
1169
- "d": "G d – d 'de' MMM y",
1170
- "G": "G d 'de' MMM y – G d 'de' MMM y",
1171
- "M": "G d 'de' MMM y – d 'de' MMM",
1172
- "y": "G d 'de' MMM y – d 'de' MMM y"
1173
- },
1174
- "GyMMMEd": {
1175
- "d": "G E, d 'de' MMM y – E, d 'de' MMM",
1176
- "G": "G E, d 'de' MMM y – G E, d 'de' MMM y",
1177
- "M": "G E, d 'de' MMM y – E, d 'de' MMM",
1178
- "y": "G E, d 'de' MMM y – E, d 'de' MMM y"
1179
- },
1180
- "h": {
1181
- "a": "h a – h a",
1182
- "h": "h–h a"
1183
- },
1184
- "H": {
1185
- "H": "HH–HH"
1186
- },
1187
- "hm": {
1188
- "a": "h:mm a – h:mm a",
1189
- "h": "h:mm – h:mm a",
1190
- "m": "h:mm – h:mm a"
1191
- },
1192
- "Hm": {
1193
- "H": "HH:mm – HH:mm",
1194
- "m": "HH:mm – HH:mm"
1195
- },
1196
- "hmv": {
1197
- "a": "h:mm a – h:mm a v",
1198
- "h": "h:mm – h:mm a v",
1199
- "m": "h:mm – h:mm a v"
1200
- },
1201
- "Hmv": {
1202
- "H": "HH:mm – HH:mm v",
1203
- "m": "HH:mm – HH:mm v"
1204
- },
1205
- "hv": {
1206
- "a": "h a – h a v",
1207
- "h": "h–h a v"
1208
- },
1209
- "Hv": {
1210
- "H": "HH – HH v"
1211
- },
1212
- "M": {
1213
- "M": "M–M"
1214
- },
1215
- "Md": {
1216
- "d": "dd/MM – dd/MM",
1217
- "M": "dd/MM – dd/MM"
1218
- },
1219
- "MEd": {
1220
- "d": "ccc, dd/MM – ccc, dd/MM",
1221
- "M": "ccc, dd/MM – ccc, dd/MM"
1222
- },
1223
- "MMM": {
1224
- "M": "MMM–MMM"
1225
- },
1226
- "MMMd": {
1227
- "d": "d–d 'de' MMM",
1228
- "M": "d 'de' MMM – d 'de' MMM"
1229
- },
1230
- "MMMEd": {
1231
- "d": "ccc, dd/MM – ccc, dd/MM",
1232
- "M": "ccc, dd/MM – ccc, dd/MM"
1233
- },
1234
- "MMMMEd": {
1235
- "d": "ccc, d 'de' MMMM – ccc, d 'de' MMMM",
1236
- "M": "ccc, d 'de' MMMM – ccc, d 'de' MMMM"
1237
- },
1238
- "y": {
1239
- "y": "y–y"
1240
- },
1241
- "yM": {
1242
- "M": "MM/y – MM/y",
1243
- "y": "MM/y – MM/y"
1244
- },
1245
- "yMd": {
1246
- "d": "dd/MM/y – dd/MM/y",
1247
- "M": "dd/MM/y – dd/MM/y",
1248
- "y": "dd/MM/y – dd/MM/y"
1249
- },
1250
- "yMEd": {
1251
- "d": "ccc, dd/MM/y – ccc, dd/MM/y",
1252
- "M": "ccc, dd/MM/y – ccc, dd/MM/y",
1253
- "y": "ccc, dd/MM/y – ccc, dd/MM/y"
1254
- },
1255
- "yMMM": {
1256
- "M": "MMM–MMM 'de' y",
1257
- "y": "MMM 'de' y – MMM 'de' y"
1258
- },
1259
- "yMMMd": {
1260
- "d": "d–d 'de' MMM 'de' y",
1261
- "M": "d 'de' MMM – d 'de' MMM 'de' y",
1262
- "y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y"
1263
- },
1264
- "yMMMEd": {
1265
- "d": "E, dd/MM – E, dd/MM/y",
1266
- "M": "E, d 'de' MMM – E, d 'de' MMM 'de' y",
1267
- "y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y"
1268
- },
1269
- "yMMMM": {
1270
- "M": "MMMM – MMMM 'de' y",
1271
- "y": "MMMM 'de' y – MMMM 'de' y"
1272
- },
1273
- "yMMMMEd": {
1274
- "d": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y",
1275
- "M": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y",
1276
- "y": "E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y"
1277
- }
1278
- }
1279
- },
1280
- "months": {
1281
- "format": {
1282
- "abbreviated": [
1283
- "jan",
1284
- "fev",
1285
- "mar",
1286
- "abr",
1287
- "mai",
1288
- "jun",
1289
- "jul",
1290
- "ago",
1291
- "set",
1292
- "out",
1293
- "nov",
1294
- "dez"
1295
- ],
1296
- "narrow": [
1297
- "J",
1298
- "F",
1299
- "M",
1300
- "A",
1301
- "M",
1302
- "J",
1303
- "J",
1304
- "A",
1305
- "S",
1306
- "O",
1307
- "N",
1308
- "D"
1309
- ],
1310
- "wide": [
1311
- "janeiro",
1312
- "fevereiro",
1313
- "março",
1314
- "abril",
1315
- "maio",
1316
- "junho",
1317
- "julho",
1318
- "agosto",
1319
- "setembro",
1320
- "outubro",
1321
- "novembro",
1322
- "dezembro"
1323
- ]
1324
- },
1325
- "stand-alone": {
1326
- "abbreviated": [
1327
- "jan",
1328
- "fev",
1329
- "mar",
1330
- "abr",
1331
- "mai",
1332
- "jun",
1333
- "jul",
1334
- "ago",
1335
- "set",
1336
- "out",
1337
- "nov",
1338
- "dez"
1339
- ],
1340
- "narrow": [
1341
- "J",
1342
- "F",
1343
- "M",
1344
- "A",
1345
- "M",
1346
- "J",
1347
- "J",
1348
- "A",
1349
- "S",
1350
- "O",
1351
- "N",
1352
- "D"
1353
- ],
1354
- "wide": [
1355
- "janeiro",
1356
- "fevereiro",
1357
- "março",
1358
- "abril",
1359
- "maio",
1360
- "junho",
1361
- "julho",
1362
- "agosto",
1363
- "setembro",
1364
- "outubro",
1365
- "novembro",
1366
- "dezembro"
1367
- ]
1368
- }
1369
- },
1370
- "days": {
1371
- "format": {
1372
- "abbreviated": [
1373
- "domingo",
1374
- "segunda",
1375
- "terça",
1376
- "quarta",
1377
- "quinta",
1378
- "sexta",
1379
- "sábado"
1380
- ],
1381
- "narrow": [
1382
- "D",
1383
- "S",
1384
- "T",
1385
- "Q",
1386
- "Q",
1387
- "S",
1388
- "S"
1389
- ],
1390
- "short": [
1391
- "dom",
1392
- "seg",
1393
- "ter",
1394
- "qua",
1395
- "qui",
1396
- "sex",
1397
- "sáb"
1398
- ],
1399
- "wide": [
1400
- "domingo",
1401
- "segunda-feira",
1402
- "terça-feira",
1403
- "quarta-feira",
1404
- "quinta-feira",
1405
- "sexta-feira",
1406
- "sábado"
1407
- ]
1408
- },
1409
- "stand-alone": {
1410
- "abbreviated": [
1411
- "domingo",
1412
- "segunda",
1413
- "terça",
1414
- "quarta",
1415
- "quinta",
1416
- "sexta",
1417
- "sábado"
1418
- ],
1419
- "narrow": [
1420
- "D",
1421
- "S",
1422
- "T",
1423
- "Q",
1424
- "Q",
1425
- "S",
1426
- "S"
1427
- ],
1428
- "short": [
1429
- "dom",
1430
- "seg",
1431
- "ter",
1432
- "qua",
1433
- "qui",
1434
- "sex",
1435
- "sáb"
1436
- ],
1437
- "wide": [
1438
- "domingo",
1439
- "segunda-feira",
1440
- "terça-feira",
1441
- "quarta-feira",
1442
- "quinta-feira",
1443
- "sexta-feira",
1444
- "sábado"
1445
- ]
1446
- }
1447
- },
1448
- "quarters": {
1449
- "format": {
1450
- "abbreviated": [
1451
- "T1",
1452
- "T2",
1453
- "T3",
1454
- "T4"
1455
- ],
1456
- "narrow": [
1457
- "1",
1458
- "2",
1459
- "3",
1460
- "4"
1461
- ],
1462
- "wide": [
1463
- "1.º trimestre",
1464
- "2.º trimestre",
1465
- "3.º trimestre",
1466
- "4.º trimestre"
1467
- ]
1468
- },
1469
- "stand-alone": {
1470
- "abbreviated": [
1471
- "T1",
1472
- "T2",
1473
- "T3",
1474
- "T4"
1475
- ],
1476
- "narrow": [
1477
- "1",
1478
- "2",
1479
- "3",
1480
- "4"
1481
- ],
1482
- "wide": [
1483
- "1.º trimestre",
1484
- "2.º trimestre",
1485
- "3.º trimestre",
1486
- "4.º trimestre"
1487
- ]
1488
- }
1489
- },
1490
- "dayPeriods": {
1491
- "format": {
1492
- "abbreviated": [
1493
- "a.m.",
1494
- "p.m."
1495
- ],
1496
- "narrow": [
1497
- "a.m.",
1498
- "p.m."
1499
- ],
1500
- "wide": [
1501
- "da manhã",
1502
- "da tarde"
1503
- ]
1504
- },
1505
- "stand-alone": {
1506
- "abbreviated": [
1507
- "a.m.",
1508
- "p.m."
1509
- ],
1510
- "narrow": [
1511
- "a.m.",
1512
- "p.m."
1513
- ],
1514
- "wide": [
1515
- "manhã",
1516
- "tarde"
1517
- ]
1518
- }
1519
- },
1520
- "era-wide": {
1521
- "0": "antes de Cristo",
1522
- "1": "depois de Cristo"
1523
- },
1524
- "era-abbreviated": {
1525
- "0": "a.C.",
1526
- "1": "d.C."
1527
- },
1528
- "era-narrow": {
1529
- "0": "a.C.",
1530
- "1": "d.C."
1531
- }
1532
- },
1533
- "ca-islamic": {
1534
- "dateFormats": {
1535
- "full": "EEEE, d 'de' MMMM 'de' y G",
1536
- "long": "d 'de' MMMM 'de' y G",
1537
- "medium": "d MMM y G",
1538
- "short": "d/M/y G"
1539
- },
1540
- "timeFormats": {
1541
- "full": "HH:mm:ss zzzz",
1542
- "long": "HH:mm:ss z",
1543
- "medium": "HH:mm:ss",
1544
- "short": "HH:mm"
1545
- },
1546
- "dateTimeFormats": {
1547
- "full": "{1} 'às' {0}",
1548
- "long": "{1} 'às' {0}",
1549
- "medium": "{1}, {0}",
1550
- "short": "{1}, {0}",
1551
- "availableFormats": {
1552
- "Bh": "h B",
1553
- "Bhm": "h:mm B",
1554
- "Bhms": "h:mm:ss B",
1555
- "d": "d",
1556
- "E": "ccc",
1557
- "EBhm": "E h:mm B",
1558
- "EBhms": "E h:mm:ss B",
1559
- "Ed": "E, d",
1560
- "Ehm": "E h:mm a",
1561
- "EHm": "E HH:mm",
1562
- "Ehms": "E h:mm:ss a",
1563
- "EHms": "E HH:mm:ss",
1564
- "Gy": "y G",
1565
- "GyMMM": "MMM 'de' y G",
1566
- "GyMMMd": "d 'de' MMM 'de' y G",
1567
- "GyMMMEd": "E, d 'de' MMM 'de' y G",
1568
- "h": "h a",
1569
- "H": "HH",
1570
- "hm": "h:mm a",
1571
- "Hm": "HH:mm",
1572
- "hms": "h:mm:ss a",
1573
- "Hms": "HH:mm:ss",
1574
- "M": "L",
1575
- "Md": "d/M",
1576
- "MEd": "E, dd/MM",
1577
- "MMM": "LLL",
1578
- "MMMd": "d 'de' MMM",
1579
- "MMMEd": "E, d 'de' MMM",
1580
- "MMMMd": "d 'de' MMMM",
1581
- "MMMMEd": "E, d 'de' MMMM",
1582
- "ms": "mm:ss",
1583
- "y": "y G",
1584
- "yyyy": "y G",
1585
- "yyyyM": "MM/y GGGGG",
1586
- "yyyyMd": "dd/MM/y GGGGG",
1587
- "yyyyMEd": "E, dd/MM/y GGGGG",
1588
- "yyyyMMM": "MM/y G",
1589
- "yyyyMMMd": "d/MM/y G",
1590
- "yyyyMMMEd": "E, d/MM/y G",
1591
- "yyyyMMMEEEEd": "EEEE, d/MM/y",
1592
- "yyyyMMMM": "MMMM 'de' y G",
1593
- "yyyyMMMMd": "d 'de' MMMM 'de' y G",
1594
- "yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
1595
- "yyyyQQQ": "QQQQ 'de' y G",
1596
- "yyyyQQQQ": "QQQQ 'de' y G"
1597
- },
1598
- "appendItems": {
1599
- "Day": "{0} ({2}: {1})",
1600
- "Day-Of-Week": "{0} {1}",
1601
- "Era": "{1} {0}",
1602
- "Hour": "{0} ({2}: {1})",
1603
- "Minute": "{0} ({2}: {1})",
1604
- "Month": "{0} ({2}: {1})",
1605
- "Quarter": "{0} ({2}: {1})",
1606
- "Second": "{0} ({2}: {1})",
1607
- "Timezone": "{0} {1}",
1608
- "Week": "{0} ({2}: {1})",
1609
- "Year": "{1} {0}"
1610
- },
1611
- "intervalFormats": {
1612
- "intervalFormatFallback": "{0} - {1}",
1613
- "Bh": {
1614
- "B": "h B – h B",
1615
- "h": "h–h B"
1616
- },
1617
- "Bhm": {
1618
- "B": "h:mm B – h:mm B",
1619
- "h": "h:mm–h:mm B",
1620
- "m": "h:mm–h:mm B"
1621
- },
1622
- "d": {
1623
- "d": "d–d"
1624
- },
1625
- "Gy": {
1626
- "G": "G y – G y",
1627
- "y": "G y–y"
1628
- },
1629
- "GyM": {
1630
- "G": "GGGGG y-MM – GGGGG y-MM",
1631
- "M": "GGGGG y-MM – y-MM",
1632
- "y": "GGGGG y-MM – y-MM"
1633
- },
1634
- "GyMd": {
1635
- "d": "GGGGG y-MM-dd – y-MM-dd",
1636
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1637
- "M": "GGGGG y-MM-dd – y-MM-dd",
1638
- "y": "GGGGG y-MM-dd – y-MM-dd"
1639
- },
1640
- "GyMEd": {
1641
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1642
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1643
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1644
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1645
- },
1646
- "GyMMM": {
1647
- "G": "G y MMM – G y MMM",
1648
- "M": "G y MMM–MMM",
1649
- "y": "G y MMM – y MMM"
1650
- },
1651
- "GyMMMd": {
1652
- "d": "G y MMM d–d",
1653
- "G": "G y MMM d – G y MMM d",
1654
- "M": "G y MMM d – MMM d",
1655
- "y": "G y MMM d – y MMM d"
1656
- },
1657
- "GyMMMEd": {
1658
- "d": "G y MMM d, E – MMM d, E",
1659
- "G": "G y MMM d, E – G y MMM d, E",
1660
- "M": "G y MMM d, E – MMM d, E",
1661
- "y": "G y MMM d, E – y MMM d, E"
1662
- },
1663
- "h": {
1664
- "a": "h a – h a",
1665
- "h": "h–h a"
1666
- },
1667
- "H": {
1668
- "H": "HH'h' - HH'h'"
1669
- },
1670
- "hm": {
1671
- "a": "h:mm a – h:mm a",
1672
- "h": "h:mm – h:mm a",
1673
- "m": "h:mm–h:mm a"
1674
- },
1675
- "Hm": {
1676
- "H": "HH:mm–HH:mm",
1677
- "m": "HH:mm–HH:mm"
1678
- },
1679
- "hmv": {
1680
- "a": "h:mm a – h:mm a v",
1681
- "h": "h:mm–h:mm a v",
1682
- "m": "h:mm–h:mm a v"
1683
- },
1684
- "Hmv": {
1685
- "H": "HH:mm–HH:mm v",
1686
- "m": "HH:mm–HH:mm v"
1687
- },
1688
- "hv": {
1689
- "a": "h a – h a v",
1690
- "h": "h – h a v"
1691
- },
1692
- "Hv": {
1693
- "H": "HH – HH v"
1694
- },
1695
- "M": {
1696
- "M": "MM–MM"
1697
- },
1698
- "Md": {
1699
- "d": "dd/MM – dd/MM",
1700
- "M": "dd/MM – dd/MM"
1701
- },
1702
- "MEd": {
1703
- "d": "E, dd/MM – E, dd/MM",
1704
- "M": "E, dd/MM – E, dd/MM"
1705
- },
1706
- "MMM": {
1707
- "M": "MMM–MMM"
1708
- },
1709
- "MMMd": {
1710
- "d": "d–d 'de' MMM",
1711
- "M": "d 'de' MMM – d 'de' MMM"
1712
- },
1713
- "MMMEd": {
1714
- "d": "ccc, dd/MM – ccc, dd/MM",
1715
- "M": "E, d 'de' MMM – E, d 'de' MMM"
1716
- },
1717
- "MMMMEd": {
1718
- "d": "ccc, d 'de' MMMM – ccc, d 'de' MMMM",
1719
- "M": "ccc, d 'de' MMMM – ccc, d 'de' MMMM"
1720
- },
1721
- "y": {
1722
- "y": "y–y G"
1723
- },
1724
- "yM": {
1725
- "M": "MM/y – MM/y G",
1726
- "y": "MM/y – MM/y G"
1727
- },
1728
- "yMd": {
1729
- "d": "dd/MM/y – dd/MM/y G",
1730
- "M": "dd/MM/y – dd/MM/y G",
1731
- "y": "dd/MM/y – dd/MM/y G"
1732
- },
1733
- "yMEd": {
1734
- "d": "E, dd/MM/y – E, dd/MM/y G",
1735
- "M": "E, dd/MM/y – E, dd/MM/y G",
1736
- "y": "E, dd/MM/y – E, dd/MM/y G"
1737
- },
1738
- "yMMM": {
1739
- "M": "MMM–MMM 'de' y G",
1740
- "y": "MMM 'de' y – MMM 'de' y G"
1741
- },
1742
- "yMMMd": {
1743
- "d": "d–d 'de' MMM 'de' y",
1744
- "M": "d 'de' MMM – d 'de' MMM 'de' y G",
1745
- "y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
1746
- },
1747
- "yMMMEd": {
1748
- "d": "E, dd/MM – E, dd/MM/y G",
1749
- "M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
1750
- "y": "E, dd/MM/y – E, dd/MM/y G"
1751
- },
1752
- "yMMMM": {
1753
- "M": "MMMM – MMMM 'de' y G",
1754
- "y": "MMMM 'de' y – MMMM 'de' y G"
1755
- },
1756
- "yMMMMEd": {
1757
- "d": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
1758
- "M": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
1759
- "y": "E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y G"
1760
- }
1761
- }
1762
- },
1763
- "months": {
1764
- "format": {
1765
- "abbreviated": [
1766
- "Muh.",
1767
- "Saf.",
1768
- "Rab. I",
1769
- "Rab. II",
1770
- "Jum. I",
1771
- "Jum. II",
1772
- "Raj.",
1773
- "Sha.",
1774
- "Ram.",
1775
- "Shaw.",
1776
- "Dhuʻl-Q.",
1777
- "Dhuʻl-H."
1778
- ],
1779
- "narrow": [
1780
- "1",
1781
- "2",
1782
- "3",
1783
- "4",
1784
- "5",
1785
- "6",
1786
- "7",
1787
- "8",
1788
- "9",
1789
- "10",
1790
- "11",
1791
- "12"
1792
- ],
1793
- "wide": [
1794
- "Muharram",
1795
- "Safar",
1796
- "Rabiʻ I",
1797
- "Rabiʻ II",
1798
- "Jumada I",
1799
- "Jumada II",
1800
- "Rajab",
1801
- "Shaʻban",
1802
- "Ramadan",
1803
- "Shawwal",
1804
- "Dhuʻl-Qiʻdah",
1805
- "Dhuʻl-Hijjah"
1806
- ]
1807
- },
1808
- "stand-alone": {
1809
- "abbreviated": [
1810
- "Muh.",
1811
- "Saf.",
1812
- "Rab. I",
1813
- "Rab. II",
1814
- "Jum. I",
1815
- "Jum. II",
1816
- "Raj.",
1817
- "Sha.",
1818
- "Ram.",
1819
- "Shaw.",
1820
- "Dhuʻl-Q.",
1821
- "Dhuʻl-H."
1822
- ],
1823
- "narrow": [
1824
- "1",
1825
- "2",
1826
- "3",
1827
- "4",
1828
- "5",
1829
- "6",
1830
- "7",
1831
- "8",
1832
- "9",
1833
- "10",
1834
- "11",
1835
- "12"
1836
- ],
1837
- "wide": [
1838
- "Muharram",
1839
- "Safar",
1840
- "Rabiʻ I",
1841
- "Rabiʻ II",
1842
- "Jumada I",
1843
- "Jumada II",
1844
- "Rajab",
1845
- "Shaʻban",
1846
- "Ramadan",
1847
- "Shawwal",
1848
- "Dhuʻl-Qiʻdah",
1849
- "Dhuʻl-Hijjah"
1850
- ]
1851
- }
1852
- },
1853
- "days": {
1854
- "format": {
1855
- "abbreviated": [
1856
- "domingo",
1857
- "segunda",
1858
- "terça",
1859
- "quarta",
1860
- "quinta",
1861
- "sexta",
1862
- "sábado"
1863
- ],
1864
- "narrow": [
1865
- "D",
1866
- "S",
1867
- "T",
1868
- "Q",
1869
- "Q",
1870
- "S",
1871
- "S"
1872
- ],
1873
- "short": [
1874
- "dom",
1875
- "seg",
1876
- "ter",
1877
- "qua",
1878
- "qui",
1879
- "sex",
1880
- "sáb"
1881
- ],
1882
- "wide": [
1883
- "domingo",
1884
- "segunda-feira",
1885
- "terça-feira",
1886
- "quarta-feira",
1887
- "quinta-feira",
1888
- "sexta-feira",
1889
- "sábado"
1890
- ]
1891
- },
1892
- "stand-alone": {
1893
- "abbreviated": [
1894
- "domingo",
1895
- "segunda",
1896
- "terça",
1897
- "quarta",
1898
- "quinta",
1899
- "sexta",
1900
- "sábado"
1901
- ],
1902
- "narrow": [
1903
- "D",
1904
- "S",
1905
- "T",
1906
- "Q",
1907
- "Q",
1908
- "S",
1909
- "S"
1910
- ],
1911
- "short": [
1912
- "dom",
1913
- "seg",
1914
- "ter",
1915
- "qua",
1916
- "qui",
1917
- "sex",
1918
- "sáb"
1919
- ],
1920
- "wide": [
1921
- "domingo",
1922
- "segunda-feira",
1923
- "terça-feira",
1924
- "quarta-feira",
1925
- "quinta-feira",
1926
- "sexta-feira",
1927
- "sábado"
1928
- ]
1929
- }
1930
- },
1931
- "quarters": {
1932
- "format": {
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
- "stand-alone": {
1953
- "abbreviated": [
1954
- "T1",
1955
- "T2",
1956
- "T3",
1957
- "T4"
1958
- ],
1959
- "narrow": [
1960
- "1",
1961
- "2",
1962
- "3",
1963
- "4"
1964
- ],
1965
- "wide": [
1966
- "1.º trimestre",
1967
- "2.º trimestre",
1968
- "3.º trimestre",
1969
- "4.º trimestre"
1970
- ]
1971
- }
1972
- },
1973
- "dayPeriods": {
1974
- "format": {
1975
- "abbreviated": [
1976
- "a.m.",
1977
- "p.m."
1978
- ],
1979
- "narrow": [
1980
- "a.m.",
1981
- "p.m."
1982
- ],
1983
- "wide": [
1984
- "da manhã",
1985
- "da tarde"
1986
- ]
1987
- },
1988
- "stand-alone": {
1989
- "abbreviated": [
1990
- "a.m.",
1991
- "p.m."
1992
- ],
1993
- "narrow": [
1994
- "a.m.",
1995
- "p.m."
1996
- ],
1997
- "wide": [
1998
- "manhã",
1999
- "tarde"
2000
- ]
2001
- }
2002
- },
2003
- "era-wide": {
2004
- "0": "AH"
2005
- },
2006
- "era-abbreviated": {
2007
- "0": "AH"
2008
- },
2009
- "era-narrow": {
2010
- "0": "AH"
2011
- }
2012
- },
2013
- "ca-japanese": {
2014
- "dateFormats": {
2015
- "full": "EEEE, d 'de' MMMM 'de' y G",
2016
- "long": "d 'de' MMMM 'de' y G",
2017
- "medium": "dd/MM/y G",
2018
- "short": "d/M/y G"
2019
- },
2020
- "timeFormats": {
2021
- "full": "HH:mm:ss zzzz",
2022
- "long": "HH:mm:ss z",
2023
- "medium": "HH:mm:ss",
2024
- "short": "HH:mm"
2025
- },
2026
- "dateTimeFormats": {
2027
- "full": "{1} 'às' {0}",
2028
- "long": "{1} 'às' {0}",
2029
- "medium": "{1}, {0}",
2030
- "short": "{1}, {0}",
2031
- "availableFormats": {
2032
- "Bh": "h B",
2033
- "Bhm": "h:mm B",
2034
- "Bhms": "h:mm:ss B",
2035
- "d": "d",
2036
- "E": "ccc",
2037
- "EBhm": "E h:mm B",
2038
- "EBhms": "E h:mm:ss B",
2039
- "Ed": "E, d",
2040
- "Ehm": "E h:mm a",
2041
- "EHm": "E HH:mm",
2042
- "Ehms": "E h:mm:ss a",
2043
- "EHms": "E HH:mm:ss",
2044
- "Gy": "y G",
2045
- "GyMMM": "MMM 'de' y G",
2046
- "GyMMMd": "d 'de' MMM 'de' y G",
2047
- "GyMMMEd": "E, d 'de' MMM 'de' y G",
2048
- "h": "h a",
2049
- "H": "HH",
2050
- "hm": "h:mm a",
2051
- "Hm": "HH:mm",
2052
- "hms": "h:mm:ss a",
2053
- "Hms": "HH:mm:ss",
2054
- "M": "L",
2055
- "Md": "d/M",
2056
- "MEd": "E, dd/MM",
2057
- "MMM": "LLL",
2058
- "MMMd": "d 'de' MMM",
2059
- "MMMEd": "E, d 'de' MMM",
2060
- "MMMMd": "d 'de' MMMM",
2061
- "MMMMEd": "E, d 'de' MMMM",
2062
- "ms": "mm:ss",
2063
- "y": "y G",
2064
- "yyyy": "y G",
2065
- "yyyyM": "MM/y GGGGG",
2066
- "yyyyMd": "dd/MM/y GGGGG",
2067
- "yyyyMEd": "E, dd/MM/y GGGGG",
2068
- "yyyyMMM": "MM/y G",
2069
- "yyyyMMMd": "d/MM/y G",
2070
- "yyyyMMMEd": "E, d/MM/y G",
2071
- "yyyyMMMEEEEd": "EEEE, d/MM/y",
2072
- "yyyyMMMM": "MMMM 'de' y G",
2073
- "yyyyMMMMd": "d 'de' MMMM 'de' y G",
2074
- "yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
2075
- "yyyyQQQ": "QQQQ 'de' y G",
2076
- "yyyyQQQQ": "QQQQ 'de' y G"
2077
- },
2078
- "appendItems": {
2079
- "Day": "{0} ({2}: {1})",
2080
- "Day-Of-Week": "{0} {1}",
2081
- "Era": "{1} {0}",
2082
- "Hour": "{0} ({2}: {1})",
2083
- "Minute": "{0} ({2}: {1})",
2084
- "Month": "{0} ({2}: {1})",
2085
- "Quarter": "{0} ({2}: {1})",
2086
- "Second": "{0} ({2}: {1})",
2087
- "Timezone": "{0} {1}",
2088
- "Week": "{0} ({2}: {1})",
2089
- "Year": "{1} {0}"
2090
- },
2091
- "intervalFormats": {
2092
- "intervalFormatFallback": "{0} - {1}",
2093
- "Bh": {
2094
- "B": "h B – h B",
2095
- "h": "h–h B"
2096
- },
2097
- "Bhm": {
2098
- "B": "h:mm B – h:mm B",
2099
- "h": "h:mm–h:mm B",
2100
- "m": "h:mm–h:mm B"
2101
- },
2102
- "d": {
2103
- "d": "d–d"
2104
- },
2105
- "Gy": {
2106
- "G": "G y – G y",
2107
- "y": "G y–y"
2108
- },
2109
- "GyM": {
2110
- "G": "GGGGG y-MM – GGGGG y-MM",
2111
- "M": "GGGGG y-MM – y-MM",
2112
- "y": "GGGGG y-MM – y-MM"
2113
- },
2114
- "GyMd": {
2115
- "d": "GGGGG y-MM-dd – y-MM-dd",
2116
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2117
- "M": "GGGGG y-MM-dd – y-MM-dd",
2118
- "y": "GGGGG y-MM-dd – y-MM-dd"
2119
- },
2120
- "GyMEd": {
2121
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2122
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2123
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2124
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2125
- },
2126
- "GyMMM": {
2127
- "G": "G y MMM – G y MMM",
2128
- "M": "G y MMM–MMM",
2129
- "y": "G y MMM – y MMM"
2130
- },
2131
- "GyMMMd": {
2132
- "d": "G y MMM d–d",
2133
- "G": "G y MMM d – G y MMM d",
2134
- "M": "G y MMM d – MMM d",
2135
- "y": "G y MMM d – y MMM d"
2136
- },
2137
- "GyMMMEd": {
2138
- "d": "G y MMM d, E – MMM d, E",
2139
- "G": "G y MMM d, E – G y MMM d, E",
2140
- "M": "G y MMM d, E – MMM d, E",
2141
- "y": "G y MMM d, E – y MMM d, E"
2142
- },
2143
- "h": {
2144
- "a": "h a – h a",
2145
- "h": "h–h a"
2146
- },
2147
- "H": {
2148
- "H": "HH'h' - HH'h'"
2149
- },
2150
- "hm": {
2151
- "a": "h:mm a – h:mm a",
2152
- "h": "h:mm – h:mm a",
2153
- "m": "h:mm–h:mm a"
2154
- },
2155
- "Hm": {
2156
- "H": "HH:mm–HH:mm",
2157
- "m": "HH:mm–HH:mm"
2158
- },
2159
- "hmv": {
2160
- "a": "h:mm a – h:mm a v",
2161
- "h": "h:mm–h:mm a v",
2162
- "m": "h:mm–h:mm a v"
2163
- },
2164
- "Hmv": {
2165
- "H": "HH:mm–HH:mm v",
2166
- "m": "HH:mm–HH:mm v"
2167
- },
2168
- "hv": {
2169
- "a": "h a – h a v",
2170
- "h": "h – h a v"
2171
- },
2172
- "Hv": {
2173
- "H": "HH – HH v"
2174
- },
2175
- "M": {
2176
- "M": "MM–MM"
2177
- },
2178
- "Md": {
2179
- "d": "dd/MM – dd/MM",
2180
- "M": "dd/MM – dd/MM"
2181
- },
2182
- "MEd": {
2183
- "d": "E, dd/MM – E, dd/MM",
2184
- "M": "E, dd/MM – E, dd/MM"
2185
- },
2186
- "MMM": {
2187
- "M": "MMM–MMM"
2188
- },
2189
- "MMMd": {
2190
- "d": "d–d 'de' MMM",
2191
- "M": "d 'de' MMM – d 'de' MMM"
2192
- },
2193
- "MMMEd": {
2194
- "d": "ccc, dd/MM – ccc, dd/MM",
2195
- "M": "E, d 'de' MMM – E, d 'de' MMM"
2196
- },
2197
- "MMMMEd": {
2198
- "d": "ccc, d 'de' MMMM – ccc, d 'de' MMMM",
2199
- "M": "ccc, d 'de' MMMM – ccc, d 'de' MMMM"
2200
- },
2201
- "y": {
2202
- "y": "y–y G",
2203
- "G": "y G–y G"
2204
- },
2205
- "yM": {
2206
- "M": "MM/y – MM/y G",
2207
- "y": "MM/y – MM/y G",
2208
- "G": "MM/y G – MM/y G"
2209
- },
2210
- "yMd": {
2211
- "d": "dd/MM/y – dd/MM/y G",
2212
- "M": "dd/MM/y – dd/MM/y G",
2213
- "y": "dd/MM/y – dd/MM/y G",
2214
- "G": "dd/MM/y G – dd/MM/y G"
2215
- },
2216
- "yMEd": {
2217
- "d": "E, dd/MM/y – E, dd/MM/y G",
2218
- "M": "E, dd/MM/y – E, dd/MM/y G",
2219
- "y": "E, dd/MM/y – E, dd/MM/y G",
2220
- "G": "E, dd/MM/y G – E, dd/MM/y G"
2221
- },
2222
- "yMMM": {
2223
- "M": "MMM–MMM 'de' y G",
2224
- "y": "MMM 'de' y – MMM 'de' y G",
2225
- "G": "MMM 'de' y G – MMM 'de' y G"
2226
- },
2227
- "yMMMd": {
2228
- "d": "d–d 'de' MMM 'de' y",
2229
- "M": "d 'de' MMM – d 'de' MMM 'de' y G",
2230
- "y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G",
2231
- "G": "d 'de' MMM 'de' y G – d 'de' MMM 'de' y G"
2232
- },
2233
- "yMMMEd": {
2234
- "d": "E, dd/MM – E, dd/MM/y G",
2235
- "M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
2236
- "y": "E, dd/MM/y – E, dd/MM/y G",
2237
- "G": "E, dd/MM/y G – E, dd/MM/y G"
2238
- },
2239
- "yMMMM": {
2240
- "M": "MMMM – MMMM 'de' y G",
2241
- "y": "MMMM 'de' y – MMMM 'de' y G",
2242
- "G": "MMMM 'de' y G – MMMM 'de' y G"
2243
- },
2244
- "yMMMMEd": {
2245
- "d": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
2246
- "M": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
2247
- "y": "E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y G",
2248
- "G": "E, d 'de' MMMM 'de' y G – E, d 'de' MMMM 'de' y G"
2249
- }
2250
- }
2251
- },
2252
- "months": {
2253
- "format": {
2254
- "abbreviated": [
2255
- "jan",
2256
- "fev",
2257
- "mar",
2258
- "abr",
2259
- "mai",
2260
- "jun",
2261
- "jul",
2262
- "ago",
2263
- "set",
2264
- "out",
2265
- "nov",
2266
- "dez"
2267
- ],
2268
- "narrow": [
2269
- "J",
2270
- "F",
2271
- "M",
2272
- "A",
2273
- "M",
2274
- "J",
2275
- "J",
2276
- "A",
2277
- "S",
2278
- "O",
2279
- "N",
2280
- "D"
2281
- ],
2282
- "wide": [
2283
- "janeiro",
2284
- "fevereiro",
2285
- "março",
2286
- "abril",
2287
- "maio",
2288
- "junho",
2289
- "julho",
2290
- "agosto",
2291
- "setembro",
2292
- "outubro",
2293
- "novembro",
2294
- "dezembro"
2295
- ]
2296
- },
2297
- "stand-alone": {
2298
- "abbreviated": [
2299
- "jan",
2300
- "fev",
2301
- "mar",
2302
- "abr",
2303
- "mai",
2304
- "jun",
2305
- "jul",
2306
- "ago",
2307
- "set",
2308
- "out",
2309
- "nov",
2310
- "dez"
2311
- ],
2312
- "narrow": [
2313
- "J",
2314
- "F",
2315
- "M",
2316
- "A",
2317
- "M",
2318
- "J",
2319
- "J",
2320
- "A",
2321
- "S",
2322
- "O",
2323
- "N",
2324
- "D"
2325
- ],
2326
- "wide": [
2327
- "janeiro",
2328
- "fevereiro",
2329
- "março",
2330
- "abril",
2331
- "maio",
2332
- "junho",
2333
- "julho",
2334
- "agosto",
2335
- "setembro",
2336
- "outubro",
2337
- "novembro",
2338
- "dezembro"
2339
- ]
2340
- }
2341
- },
2342
- "days": {
2343
- "format": {
2344
- "abbreviated": [
2345
- "domingo",
2346
- "segunda",
2347
- "terça",
2348
- "quarta",
2349
- "quinta",
2350
- "sexta",
2351
- "sábado"
2352
- ],
2353
- "narrow": [
2354
- "D",
2355
- "S",
2356
- "T",
2357
- "Q",
2358
- "Q",
2359
- "S",
2360
- "S"
2361
- ],
2362
- "short": [
2363
- "dom",
2364
- "seg",
2365
- "ter",
2366
- "qua",
2367
- "qui",
2368
- "sex",
2369
- "sáb"
2370
- ],
2371
- "wide": [
2372
- "domingo",
2373
- "segunda-feira",
2374
- "terça-feira",
2375
- "quarta-feira",
2376
- "quinta-feira",
2377
- "sexta-feira",
2378
- "sábado"
2379
- ]
2380
- },
2381
- "stand-alone": {
2382
- "abbreviated": [
2383
- "domingo",
2384
- "segunda",
2385
- "terça",
2386
- "quarta",
2387
- "quinta",
2388
- "sexta",
2389
- "sábado"
2390
- ],
2391
- "narrow": [
2392
- "D",
2393
- "S",
2394
- "T",
2395
- "Q",
2396
- "Q",
2397
- "S",
2398
- "S"
2399
- ],
2400
- "short": [
2401
- "dom",
2402
- "seg",
2403
- "ter",
2404
- "qua",
2405
- "qui",
2406
- "sex",
2407
- "sáb"
2408
- ],
2409
- "wide": [
2410
- "domingo",
2411
- "segunda-feira",
2412
- "terça-feira",
2413
- "quarta-feira",
2414
- "quinta-feira",
2415
- "sexta-feira",
2416
- "sábado"
2417
- ]
2418
- }
2419
- },
2420
- "quarters": {
2421
- "format": {
2422
- "abbreviated": [
2423
- "T1",
2424
- "T2",
2425
- "T3",
2426
- "T4"
2427
- ],
2428
- "narrow": [
2429
- "1",
2430
- "2",
2431
- "3",
2432
- "4"
2433
- ],
2434
- "wide": [
2435
- "1.º trimestre",
2436
- "2.º trimestre",
2437
- "3.º trimestre",
2438
- "4.º trimestre"
2439
- ]
2440
- },
2441
- "stand-alone": {
2442
- "abbreviated": [
2443
- "T1",
2444
- "T2",
2445
- "T3",
2446
- "T4"
2447
- ],
2448
- "narrow": [
2449
- "1",
2450
- "2",
2451
- "3",
2452
- "4"
2453
- ],
2454
- "wide": [
2455
- "1.º trimestre",
2456
- "2.º trimestre",
2457
- "3.º trimestre",
2458
- "4.º trimestre"
2459
- ]
2460
- }
2461
- },
2462
- "dayPeriods": {
2463
- "format": {
2464
- "abbreviated": [
2465
- "a.m.",
2466
- "p.m."
2467
- ],
2468
- "narrow": [
2469
- "a.m.",
2470
- "p.m."
2471
- ],
2472
- "wide": [
2473
- "da manhã",
2474
- "da tarde"
2475
- ]
2476
- },
2477
- "stand-alone": {
2478
- "abbreviated": [
2479
- "a.m.",
2480
- "p.m."
2481
- ],
2482
- "narrow": [
2483
- "a.m.",
2484
- "p.m."
2485
- ],
2486
- "wide": [
2487
- "manhã",
2488
- "tarde"
2489
- ]
2490
- }
2491
- },
2492
- "era-wide": {
2493
- "232": "Meiji",
2494
- "233": "Taishō",
2495
- "234": "Shōwa",
2496
- "235": "Heisei",
2497
- "236": "Reiwa"
2498
- },
2499
- "era-abbreviated": {
2500
- "232": "Meiji",
2501
- "233": "Taishō",
2502
- "234": "Shōwa",
2503
- "235": "Heisei",
2504
- "236": "Reiwa"
2505
- },
2506
- "era-narrow": {
2507
- "232": "M",
2508
- "233": "T",
2509
- "234": "S",
2510
- "235": "H",
2511
- "236": "R"
2512
- }
2513
- },
2514
- "ca-persian": {
2515
- "dateFormats": {
2516
- "full": "EEEE, d 'de' MMMM 'de' y G",
2517
- "long": "d 'de' MMMM 'de' y G",
2518
- "medium": "d MMM y G",
2519
- "short": "d/M/y G"
2520
- },
2521
- "timeFormats": {
2522
- "full": "HH:mm:ss zzzz",
2523
- "long": "HH:mm:ss z",
2524
- "medium": "HH:mm:ss",
2525
- "short": "HH:mm"
2526
- },
2527
- "dateTimeFormats": {
2528
- "full": "{1} 'às' {0}",
2529
- "long": "{1} 'às' {0}",
2530
- "medium": "{1}, {0}",
2531
- "short": "{1}, {0}",
2532
- "availableFormats": {
2533
- "Bh": "h B",
2534
- "Bhm": "h:mm B",
2535
- "Bhms": "h:mm:ss B",
2536
- "d": "d",
2537
- "E": "ccc",
2538
- "EBhm": "E h:mm B",
2539
- "EBhms": "E h:mm:ss B",
2540
- "Ed": "E, d",
2541
- "Ehm": "E h:mm a",
2542
- "EHm": "E HH:mm",
2543
- "Ehms": "E h:mm:ss a",
2544
- "EHms": "E HH:mm:ss",
2545
- "Gy": "y G",
2546
- "GyMMM": "MMM 'de' y G",
2547
- "GyMMMd": "d 'de' MMM 'de' y G",
2548
- "GyMMMEd": "E, d 'de' MMM 'de' y G",
2549
- "h": "h a",
2550
- "H": "HH",
2551
- "hm": "h:mm a",
2552
- "Hm": "HH:mm",
2553
- "hms": "h:mm:ss a",
2554
- "Hms": "HH:mm:ss",
2555
- "M": "L",
2556
- "Md": "d/M",
2557
- "MEd": "E, dd/MM",
2558
- "MMM": "LLL",
2559
- "MMMd": "d 'de' MMM",
2560
- "MMMEd": "E, d 'de' MMM",
2561
- "MMMMd": "d 'de' MMMM",
2562
- "MMMMEd": "E, d 'de' MMMM",
2563
- "ms": "mm:ss",
2564
- "y": "y G",
2565
- "yyyy": "y G",
2566
- "yyyyM": "MM/y GGGGG",
2567
- "yyyyMd": "dd/MM/y GGGGG",
2568
- "yyyyMEd": "E, dd/MM/y GGGGG",
2569
- "yyyyMMM": "MM/y G",
2570
- "yyyyMMMd": "d/MM/y G",
2571
- "yyyyMMMEd": "E, d/MM/y G",
2572
- "yyyyMMMEEEEd": "EEEE, d/MM/y",
2573
- "yyyyMMMM": "MMMM 'de' y G",
2574
- "yyyyMMMMd": "d 'de' MMMM 'de' y G",
2575
- "yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
2576
- "yyyyQQQ": "QQQQ 'de' y G",
2577
- "yyyyQQQQ": "QQQQ 'de' y G"
2578
- },
2579
- "appendItems": {
2580
- "Day": "{0} ({2}: {1})",
2581
- "Day-Of-Week": "{0} {1}",
2582
- "Era": "{1} {0}",
2583
- "Hour": "{0} ({2}: {1})",
2584
- "Minute": "{0} ({2}: {1})",
2585
- "Month": "{0} ({2}: {1})",
2586
- "Quarter": "{0} ({2}: {1})",
2587
- "Second": "{0} ({2}: {1})",
2588
- "Timezone": "{0} {1}",
2589
- "Week": "{0} ({2}: {1})",
2590
- "Year": "{1} {0}"
2591
- },
2592
- "intervalFormats": {
2593
- "intervalFormatFallback": "{0} - {1}",
2594
- "Bh": {
2595
- "B": "h B – h B",
2596
- "h": "h–h B"
2597
- },
2598
- "Bhm": {
2599
- "B": "h:mm B – h:mm B",
2600
- "h": "h:mm–h:mm B",
2601
- "m": "h:mm–h:mm B"
2602
- },
2603
- "d": {
2604
- "d": "d–d"
2605
- },
2606
- "Gy": {
2607
- "G": "G y – G y",
2608
- "y": "G y–y"
2609
- },
2610
- "GyM": {
2611
- "G": "GGGGG y-MM – GGGGG y-MM",
2612
- "M": "GGGGG y-MM – y-MM",
2613
- "y": "GGGGG y-MM – y-MM"
2614
- },
2615
- "GyMd": {
2616
- "d": "GGGGG y-MM-dd – y-MM-dd",
2617
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2618
- "M": "GGGGG y-MM-dd – y-MM-dd",
2619
- "y": "GGGGG y-MM-dd – y-MM-dd"
2620
- },
2621
- "GyMEd": {
2622
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2623
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2624
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2625
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2626
- },
2627
- "GyMMM": {
2628
- "G": "G y MMM – G y MMM",
2629
- "M": "G y MMM–MMM",
2630
- "y": "G y MMM – y MMM"
2631
- },
2632
- "GyMMMd": {
2633
- "d": "G y MMM d–d",
2634
- "G": "G y MMM d – G y MMM d",
2635
- "M": "G y MMM d – MMM d",
2636
- "y": "G y MMM d – y MMM d"
2637
- },
2638
- "GyMMMEd": {
2639
- "d": "G y MMM d, E – MMM d, E",
2640
- "G": "G y MMM d, E – G y MMM d, E",
2641
- "M": "G y MMM d, E – MMM d, E",
2642
- "y": "G y MMM d, E – y MMM d, E"
2643
- },
2644
- "h": {
2645
- "a": "h a – h a",
2646
- "h": "h–h a"
2647
- },
2648
- "H": {
2649
- "H": "HH'h' - HH'h'"
2650
- },
2651
- "hm": {
2652
- "a": "h:mm a – h:mm a",
2653
- "h": "h:mm – h:mm a",
2654
- "m": "h:mm–h:mm a"
2655
- },
2656
- "Hm": {
2657
- "H": "HH:mm–HH:mm",
2658
- "m": "HH:mm–HH:mm"
2659
- },
2660
- "hmv": {
2661
- "a": "h:mm a – h:mm a v",
2662
- "h": "h:mm–h:mm a v",
2663
- "m": "h:mm–h:mm a v"
2664
- },
2665
- "Hmv": {
2666
- "H": "HH:mm–HH:mm v",
2667
- "m": "HH:mm–HH:mm v"
2668
- },
2669
- "hv": {
2670
- "a": "h a – h a v",
2671
- "h": "h – h a v"
2672
- },
2673
- "Hv": {
2674
- "H": "HH – HH v"
2675
- },
2676
- "M": {
2677
- "M": "MM–MM"
2678
- },
2679
- "Md": {
2680
- "d": "dd/MM – dd/MM",
2681
- "M": "dd/MM – dd/MM"
2682
- },
2683
- "MEd": {
2684
- "d": "E, dd/MM – E, dd/MM",
2685
- "M": "E, dd/MM – E, dd/MM"
2686
- },
2687
- "MMM": {
2688
- "M": "MMM–MMM"
2689
- },
2690
- "MMMd": {
2691
- "d": "d–d 'de' MMM",
2692
- "M": "d 'de' MMM – d 'de' MMM"
2693
- },
2694
- "MMMEd": {
2695
- "d": "ccc, dd/MM – ccc, dd/MM",
2696
- "M": "E, d 'de' MMM – E, d 'de' MMM"
2697
- },
2698
- "MMMMEd": {
2699
- "d": "ccc, d 'de' MMMM – ccc, d 'de' MMMM",
2700
- "M": "ccc, d 'de' MMMM – ccc, d 'de' MMMM"
2701
- },
2702
- "y": {
2703
- "y": "y–y G"
2704
- },
2705
- "yM": {
2706
- "M": "MM/y – MM/y G",
2707
- "y": "MM/y – MM/y G"
2708
- },
2709
- "yMd": {
2710
- "d": "dd/MM/y – dd/MM/y G",
2711
- "M": "dd/MM/y – dd/MM/y G",
2712
- "y": "dd/MM/y – dd/MM/y G"
2713
- },
2714
- "yMEd": {
2715
- "d": "E, dd/MM/y – E, dd/MM/y G",
2716
- "M": "E, dd/MM/y – E, dd/MM/y G",
2717
- "y": "E, dd/MM/y – E, dd/MM/y G"
2718
- },
2719
- "yMMM": {
2720
- "M": "MMM–MMM 'de' y G",
2721
- "y": "MMM 'de' y – MMM 'de' y G"
2722
- },
2723
- "yMMMd": {
2724
- "d": "d–d 'de' MMM 'de' y",
2725
- "M": "d 'de' MMM – d 'de' MMM 'de' y G",
2726
- "y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
2727
- },
2728
- "yMMMEd": {
2729
- "d": "E, dd/MM – E, dd/MM/y G",
2730
- "M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
2731
- "y": "E, dd/MM/y – E, dd/MM/y G"
2732
- },
2733
- "yMMMM": {
2734
- "M": "MMMM – MMMM 'de' y G",
2735
- "y": "MMMM 'de' y – MMMM 'de' y G"
2736
- },
2737
- "yMMMMEd": {
2738
- "d": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
2739
- "M": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
2740
- "y": "E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y G"
2741
- }
2742
- }
2743
- },
2744
- "months": {
2745
- "format": {
2746
- "abbreviated": [
2747
- "Farvardin",
2748
- "Ordibehesht",
2749
- "Khordad",
2750
- "Tir",
2751
- "Mordad",
2752
- "Shahrivar",
2753
- "Mehr",
2754
- "Aban",
2755
- "Azar",
2756
- "Dey",
2757
- "Bahman",
2758
- "Esfand"
2759
- ],
2760
- "narrow": [
2761
- "1",
2762
- "2",
2763
- "3",
2764
- "4",
2765
- "5",
2766
- "6",
2767
- "7",
2768
- "8",
2769
- "9",
2770
- "10",
2771
- "11",
2772
- "12"
2773
- ],
2774
- "wide": [
2775
- "Farvardin",
2776
- "Ordibehesht",
2777
- "Khordad",
2778
- "Tir",
2779
- "Mordad",
2780
- "Shahrivar",
2781
- "Mehr",
2782
- "Aban",
2783
- "Azar",
2784
- "Dey",
2785
- "Bahman",
2786
- "Esfand"
2787
- ]
2788
- },
2789
- "stand-alone": {
2790
- "abbreviated": [
2791
- "Farvardin",
2792
- "Ordibehesht",
2793
- "Khordad",
2794
- "Tir",
2795
- "Mordad",
2796
- "Shahrivar",
2797
- "Mehr",
2798
- "Aban",
2799
- "Azar",
2800
- "Dey",
2801
- "Bahman",
2802
- "Esfand"
2803
- ],
2804
- "narrow": [
2805
- "1",
2806
- "2",
2807
- "3",
2808
- "4",
2809
- "5",
2810
- "6",
2811
- "7",
2812
- "8",
2813
- "9",
2814
- "10",
2815
- "11",
2816
- "12"
2817
- ],
2818
- "wide": [
2819
- "Farvardin",
2820
- "Ordibehesht",
2821
- "Khordad",
2822
- "Tir",
2823
- "Mordad",
2824
- "Shahrivar",
2825
- "Mehr",
2826
- "Aban",
2827
- "Azar",
2828
- "Dey",
2829
- "Bahman",
2830
- "Esfand"
2831
- ]
2832
- }
2833
- },
2834
- "days": {
2835
- "format": {
2836
- "abbreviated": [
2837
- "domingo",
2838
- "segunda",
2839
- "terça",
2840
- "quarta",
2841
- "quinta",
2842
- "sexta",
2843
- "sábado"
2844
- ],
2845
- "narrow": [
2846
- "D",
2847
- "S",
2848
- "T",
2849
- "Q",
2850
- "Q",
2851
- "S",
2852
- "S"
2853
- ],
2854
- "short": [
2855
- "dom",
2856
- "seg",
2857
- "ter",
2858
- "qua",
2859
- "qui",
2860
- "sex",
2861
- "sáb"
2862
- ],
2863
- "wide": [
2864
- "domingo",
2865
- "segunda-feira",
2866
- "terça-feira",
2867
- "quarta-feira",
2868
- "quinta-feira",
2869
- "sexta-feira",
2870
- "sábado"
2871
- ]
2872
- },
2873
- "stand-alone": {
2874
- "abbreviated": [
2875
- "domingo",
2876
- "segunda",
2877
- "terça",
2878
- "quarta",
2879
- "quinta",
2880
- "sexta",
2881
- "sábado"
2882
- ],
2883
- "narrow": [
2884
- "D",
2885
- "S",
2886
- "T",
2887
- "Q",
2888
- "Q",
2889
- "S",
2890
- "S"
2891
- ],
2892
- "short": [
2893
- "dom",
2894
- "seg",
2895
- "ter",
2896
- "qua",
2897
- "qui",
2898
- "sex",
2899
- "sáb"
2900
- ],
2901
- "wide": [
2902
- "domingo",
2903
- "segunda-feira",
2904
- "terça-feira",
2905
- "quarta-feira",
2906
- "quinta-feira",
2907
- "sexta-feira",
2908
- "sábado"
2909
- ]
2910
- }
2911
- },
2912
- "quarters": {
2913
- "format": {
2914
- "abbreviated": [
2915
- "T1",
2916
- "T2",
2917
- "T3",
2918
- "T4"
2919
- ],
2920
- "narrow": [
2921
- "1",
2922
- "2",
2923
- "3",
2924
- "4"
2925
- ],
2926
- "wide": [
2927
- "1.º trimestre",
2928
- "2.º trimestre",
2929
- "3.º trimestre",
2930
- "4.º trimestre"
2931
- ]
2932
- },
2933
- "stand-alone": {
2934
- "abbreviated": [
2935
- "T1",
2936
- "T2",
2937
- "T3",
2938
- "T4"
2939
- ],
2940
- "narrow": [
2941
- "1",
2942
- "2",
2943
- "3",
2944
- "4"
2945
- ],
2946
- "wide": [
2947
- "1.º trimestre",
2948
- "2.º trimestre",
2949
- "3.º trimestre",
2950
- "4.º trimestre"
2951
- ]
2952
- }
2953
- },
2954
- "dayPeriods": {
2955
- "format": {
2956
- "abbreviated": [
2957
- "a.m.",
2958
- "p.m."
2959
- ],
2960
- "narrow": [
2961
- "a.m.",
2962
- "p.m."
2963
- ],
2964
- "wide": [
2965
- "da manhã",
2966
- "da tarde"
2967
- ]
2968
- },
2969
- "stand-alone": {
2970
- "abbreviated": [
2971
- "a.m.",
2972
- "p.m."
2973
- ],
2974
- "narrow": [
2975
- "a.m.",
2976
- "p.m."
2977
- ],
2978
- "wide": [
2979
- "manhã",
2980
- "tarde"
2981
- ]
2982
- }
2983
- },
2984
- "era-wide": {
2985
- "0": "AP"
2986
- },
2987
- "era-abbreviated": {
2988
- "0": "AP"
2989
- },
2990
- "era-narrow": {
2991
- "0": "AP"
2992
- }
2993
- },
2994
- "ca-buddhist": {
2995
- "dateFormats": {
2996
- "full": "EEEE, d 'de' MMMM 'de' y G",
2997
- "long": "d 'de' MMMM 'de' y G",
2998
- "medium": "d MMM y G",
2999
- "short": "d/M/y G"
3000
- },
3001
- "timeFormats": {
3002
- "full": "HH:mm:ss zzzz",
3003
- "long": "HH:mm:ss z",
3004
- "medium": "HH:mm:ss",
3005
- "short": "HH:mm"
3006
- },
3007
- "dateTimeFormats": {
3008
- "full": "{1} 'às' {0}",
3009
- "long": "{1} 'às' {0}",
3010
- "medium": "{1}, {0}",
3011
- "short": "{1}, {0}",
3012
- "availableFormats": {
3013
- "Bh": "h B",
3014
- "Bhm": "h:mm B",
3015
- "Bhms": "h:mm:ss B",
3016
- "d": "d",
3017
- "E": "ccc",
3018
- "EBhm": "E h:mm B",
3019
- "EBhms": "E h:mm:ss B",
3020
- "Ed": "E, d",
3021
- "Ehm": "E h:mm a",
3022
- "EHm": "E HH:mm",
3023
- "Ehms": "E h:mm:ss a",
3024
- "EHms": "E HH:mm:ss",
3025
- "Gy": "y G",
3026
- "GyMMM": "MMM 'de' y G",
3027
- "GyMMMd": "d 'de' MMM 'de' y G",
3028
- "GyMMMEd": "E, d 'de' MMM 'de' y G",
3029
- "h": "h a",
3030
- "H": "HH",
3031
- "hm": "h:mm a",
3032
- "Hm": "HH:mm",
3033
- "hms": "h:mm:ss a",
3034
- "Hms": "HH:mm:ss",
3035
- "M": "L",
3036
- "Md": "d/M",
3037
- "MEd": "E, dd/MM",
3038
- "MMM": "LLL",
3039
- "MMMd": "d 'de' MMM",
3040
- "MMMEd": "E, d 'de' MMM",
3041
- "MMMMd": "d 'de' MMMM",
3042
- "MMMMEd": "E, d 'de' MMMM",
3043
- "ms": "mm:ss",
3044
- "y": "y G",
3045
- "yyyy": "y G",
3046
- "yyyyM": "MM/y GGGGG",
3047
- "yyyyMd": "dd/MM/y GGGGG",
3048
- "yyyyMEd": "E, dd/MM/y GGGGG",
3049
- "yyyyMMM": "MM/y G",
3050
- "yyyyMMMd": "d/MM/y G",
3051
- "yyyyMMMEd": "E, d/MM/y G",
3052
- "yyyyMMMEEEEd": "EEEE, d/MM/y",
3053
- "yyyyMMMM": "MMMM 'de' y G",
3054
- "yyyyMMMMd": "d 'de' MMMM 'de' y G",
3055
- "yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
3056
- "yyyyQQQ": "QQQQ 'de' y G",
3057
- "yyyyQQQQ": "QQQQ 'de' y G"
3058
- },
3059
- "appendItems": {
3060
- "Day": "{0} ({2}: {1})",
3061
- "Day-Of-Week": "{0} {1}",
3062
- "Era": "{1} {0}",
3063
- "Hour": "{0} ({2}: {1})",
3064
- "Minute": "{0} ({2}: {1})",
3065
- "Month": "{0} ({2}: {1})",
3066
- "Quarter": "{0} ({2}: {1})",
3067
- "Second": "{0} ({2}: {1})",
3068
- "Timezone": "{0} {1}",
3069
- "Week": "{0} ({2}: {1})",
3070
- "Year": "{1} {0}"
3071
- },
3072
- "intervalFormats": {
3073
- "intervalFormatFallback": "{0} - {1}",
3074
- "Bh": {
3075
- "B": "h B – h B",
3076
- "h": "h–h B"
3077
- },
3078
- "Bhm": {
3079
- "B": "h:mm B – h:mm B",
3080
- "h": "h:mm–h:mm B",
3081
- "m": "h:mm–h:mm B"
3082
- },
3083
- "d": {
3084
- "d": "d–d"
3085
- },
3086
- "Gy": {
3087
- "G": "G y – G y",
3088
- "y": "G y–y"
3089
- },
3090
- "GyM": {
3091
- "G": "GGGGG y-MM – GGGGG y-MM",
3092
- "M": "GGGGG y-MM – y-MM",
3093
- "y": "GGGGG y-MM – y-MM"
3094
- },
3095
- "GyMd": {
3096
- "d": "GGGGG y-MM-dd – y-MM-dd",
3097
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3098
- "M": "GGGGG y-MM-dd – y-MM-dd",
3099
- "y": "GGGGG y-MM-dd – y-MM-dd"
3100
- },
3101
- "GyMEd": {
3102
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3103
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3104
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3105
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3106
- },
3107
- "GyMMM": {
3108
- "G": "G y MMM – G y MMM",
3109
- "M": "G y MMM–MMM",
3110
- "y": "G y MMM – y MMM"
3111
- },
3112
- "GyMMMd": {
3113
- "d": "G y MMM d–d",
3114
- "G": "G y MMM d – G y MMM d",
3115
- "M": "G y MMM d – MMM d",
3116
- "y": "G y MMM d – y MMM d"
3117
- },
3118
- "GyMMMEd": {
3119
- "d": "G y MMM d, E – MMM d, E",
3120
- "G": "G y MMM d, E – G y MMM d, E",
3121
- "M": "G y MMM d, E – MMM d, E",
3122
- "y": "G y MMM d, E – y MMM d, E"
3123
- },
3124
- "h": {
3125
- "a": "h a – h a",
3126
- "h": "h–h a"
3127
- },
3128
- "H": {
3129
- "H": "HH'h' - HH'h'"
3130
- },
3131
- "hm": {
3132
- "a": "h:mm a – h:mm a",
3133
- "h": "h:mm – h:mm a",
3134
- "m": "h:mm–h:mm a"
3135
- },
3136
- "Hm": {
3137
- "H": "HH:mm–HH:mm",
3138
- "m": "HH:mm–HH:mm"
3139
- },
3140
- "hmv": {
3141
- "a": "h:mm a – h:mm a v",
3142
- "h": "h:mm–h:mm a v",
3143
- "m": "h:mm–h:mm a v"
3144
- },
3145
- "Hmv": {
3146
- "H": "HH:mm–HH:mm v",
3147
- "m": "HH:mm–HH:mm v"
3148
- },
3149
- "hv": {
3150
- "a": "h a – h a v",
3151
- "h": "h – h a v"
3152
- },
3153
- "Hv": {
3154
- "H": "HH – HH v"
3155
- },
3156
- "M": {
3157
- "M": "MM–MM"
3158
- },
3159
- "Md": {
3160
- "d": "dd/MM – dd/MM",
3161
- "M": "dd/MM – dd/MM"
3162
- },
3163
- "MEd": {
3164
- "d": "E, dd/MM – E, dd/MM",
3165
- "M": "E, dd/MM – E, dd/MM"
3166
- },
3167
- "MMM": {
3168
- "M": "MMM–MMM"
3169
- },
3170
- "MMMd": {
3171
- "d": "d–d 'de' MMM",
3172
- "M": "d 'de' MMM – d 'de' MMM"
3173
- },
3174
- "MMMEd": {
3175
- "d": "ccc, dd/MM – ccc, dd/MM",
3176
- "M": "E, d 'de' MMM – E, d 'de' MMM"
3177
- },
3178
- "MMMMEd": {
3179
- "d": "ccc, d 'de' MMMM – ccc, d 'de' MMMM",
3180
- "M": "ccc, d 'de' MMMM – ccc, d 'de' MMMM"
3181
- },
3182
- "y": {
3183
- "y": "y–y G"
3184
- },
3185
- "yM": {
3186
- "M": "MM/y – MM/y G",
3187
- "y": "MM/y – MM/y G"
3188
- },
3189
- "yMd": {
3190
- "d": "dd/MM/y – dd/MM/y G",
3191
- "M": "dd/MM/y – dd/MM/y G",
3192
- "y": "dd/MM/y – dd/MM/y G"
3193
- },
3194
- "yMEd": {
3195
- "d": "E, dd/MM/y – E, dd/MM/y G",
3196
- "M": "E, dd/MM/y – E, dd/MM/y G",
3197
- "y": "E, dd/MM/y – E, dd/MM/y G"
3198
- },
3199
- "yMMM": {
3200
- "M": "MMM–MMM 'de' y G",
3201
- "y": "MMM 'de' y – MMM 'de' y G"
3202
- },
3203
- "yMMMd": {
3204
- "d": "d–d 'de' MMM 'de' y",
3205
- "M": "d 'de' MMM – d 'de' MMM 'de' y G",
3206
- "y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
3207
- },
3208
- "yMMMEd": {
3209
- "d": "E, dd/MM – E, dd/MM/y G",
3210
- "M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
3211
- "y": "E, dd/MM/y – E, dd/MM/y G"
3212
- },
3213
- "yMMMM": {
3214
- "M": "MMMM – MMMM 'de' y G",
3215
- "y": "MMMM 'de' y – MMMM 'de' y G"
3216
- },
3217
- "yMMMMEd": {
3218
- "d": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
3219
- "M": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y G",
3220
- "y": "E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y G"
3221
- }
3222
- }
3223
- },
3224
- "months": {
3225
- "format": {
3226
- "abbreviated": [
3227
- "jan",
3228
- "fev",
3229
- "mar",
3230
- "abr",
3231
- "mai",
3232
- "jun",
3233
- "jul",
3234
- "ago",
3235
- "set",
3236
- "out",
3237
- "nov",
3238
- "dez"
3239
- ],
3240
- "narrow": [
3241
- "J",
3242
- "F",
3243
- "M",
3244
- "A",
3245
- "M",
3246
- "J",
3247
- "J",
3248
- "A",
3249
- "S",
3250
- "O",
3251
- "N",
3252
- "D"
3253
- ],
3254
- "wide": [
3255
- "janeiro",
3256
- "fevereiro",
3257
- "março",
3258
- "abril",
3259
- "maio",
3260
- "junho",
3261
- "julho",
3262
- "agosto",
3263
- "setembro",
3264
- "outubro",
3265
- "novembro",
3266
- "dezembro"
3267
- ]
3268
- },
3269
- "stand-alone": {
3270
- "abbreviated": [
3271
- "jan",
3272
- "fev",
3273
- "mar",
3274
- "abr",
3275
- "mai",
3276
- "jun",
3277
- "jul",
3278
- "ago",
3279
- "set",
3280
- "out",
3281
- "nov",
3282
- "dez"
3283
- ],
3284
- "narrow": [
3285
- "J",
3286
- "F",
3287
- "M",
3288
- "A",
3289
- "M",
3290
- "J",
3291
- "J",
3292
- "A",
3293
- "S",
3294
- "O",
3295
- "N",
3296
- "D"
3297
- ],
3298
- "wide": [
3299
- "janeiro",
3300
- "fevereiro",
3301
- "março",
3302
- "abril",
3303
- "maio",
3304
- "junho",
3305
- "julho",
3306
- "agosto",
3307
- "setembro",
3308
- "outubro",
3309
- "novembro",
3310
- "dezembro"
3311
- ]
3312
- }
3313
- },
3314
- "days": {
3315
- "format": {
3316
- "abbreviated": [
3317
- "domingo",
3318
- "segunda",
3319
- "terça",
3320
- "quarta",
3321
- "quinta",
3322
- "sexta",
3323
- "sábado"
3324
- ],
3325
- "narrow": [
3326
- "D",
3327
- "S",
3328
- "T",
3329
- "Q",
3330
- "Q",
3331
- "S",
3332
- "S"
3333
- ],
3334
- "short": [
3335
- "dom",
3336
- "seg",
3337
- "ter",
3338
- "qua",
3339
- "qui",
3340
- "sex",
3341
- "sáb"
3342
- ],
3343
- "wide": [
3344
- "domingo",
3345
- "segunda-feira",
3346
- "terça-feira",
3347
- "quarta-feira",
3348
- "quinta-feira",
3349
- "sexta-feira",
3350
- "sábado"
3351
- ]
3352
- },
3353
- "stand-alone": {
3354
- "abbreviated": [
3355
- "domingo",
3356
- "segunda",
3357
- "terça",
3358
- "quarta",
3359
- "quinta",
3360
- "sexta",
3361
- "sábado"
3362
- ],
3363
- "narrow": [
3364
- "D",
3365
- "S",
3366
- "T",
3367
- "Q",
3368
- "Q",
3369
- "S",
3370
- "S"
3371
- ],
3372
- "short": [
3373
- "dom",
3374
- "seg",
3375
- "ter",
3376
- "qua",
3377
- "qui",
3378
- "sex",
3379
- "sáb"
3380
- ],
3381
- "wide": [
3382
- "domingo",
3383
- "segunda-feira",
3384
- "terça-feira",
3385
- "quarta-feira",
3386
- "quinta-feira",
3387
- "sexta-feira",
3388
- "sábado"
3389
- ]
3390
- }
3391
- },
3392
- "quarters": {
3393
- "format": {
3394
- "abbreviated": [
3395
- "T1",
3396
- "T2",
3397
- "T3",
3398
- "T4"
3399
- ],
3400
- "narrow": [
3401
- "1",
3402
- "2",
3403
- "3",
3404
- "4"
3405
- ],
3406
- "wide": [
3407
- "1.º trimestre",
3408
- "2.º trimestre",
3409
- "3.º trimestre",
3410
- "4.º trimestre"
3411
- ]
3412
- },
3413
- "stand-alone": {
3414
- "abbreviated": [
3415
- "T1",
3416
- "T2",
3417
- "T3",
3418
- "T4"
3419
- ],
3420
- "narrow": [
3421
- "1",
3422
- "2",
3423
- "3",
3424
- "4"
3425
- ],
3426
- "wide": [
3427
- "1.º trimestre",
3428
- "2.º trimestre",
3429
- "3.º trimestre",
3430
- "4.º trimestre"
3431
- ]
3432
- }
3433
- },
3434
- "dayPeriods": {
3435
- "format": {
3436
- "abbreviated": [
3437
- "a.m.",
3438
- "p.m."
3439
- ],
3440
- "narrow": [
3441
- "a.m.",
3442
- "p.m."
3443
- ],
3444
- "wide": [
3445
- "da manhã",
3446
- "da tarde"
3447
- ]
3448
- },
3449
- "stand-alone": {
3450
- "abbreviated": [
3451
- "a.m.",
3452
- "p.m."
3453
- ],
3454
- "narrow": [
3455
- "a.m.",
3456
- "p.m."
3457
- ],
3458
- "wide": [
3459
- "manhã",
3460
- "tarde"
3461
- ]
3462
- }
3463
- },
3464
- "era-wide": {
3465
- "0": "BE"
3466
- },
3467
- "era-abbreviated": {
3468
- "0": "BE"
3469
- },
3470
- "era-narrow": {
3471
- "0": "BE"
3472
- }
3473
- },
3474
- "dateFields": {
3475
- "era": {
3476
- "displayName": "era"
3477
- },
3478
- "year-wide": {
3479
- "displayName": "ano",
3480
- "relative-type--1": "ano passado",
3481
- "relative-type-0": "este ano",
3482
- "relative-type-1": "próximo ano",
3483
- "relativeTime-type-future": {
3484
- "relativeTimePattern-count-one": "dentro de {0} ano",
3485
- "relativeTimePattern-count-other": "dentro de {0} anos"
3486
- },
3487
- "relativeTime-type-past": {
3488
- "relativeTimePattern-count-one": "há {0} ano",
3489
- "relativeTimePattern-count-other": "há {0} anos"
3490
- }
3491
- },
3492
- "year-short": {
3493
- "displayName": "ano",
3494
- "relative-type--1": "ano passado",
3495
- "relative-type-0": "este ano",
3496
- "relative-type-1": "próximo ano",
3497
- "relativeTime-type-future": {
3498
- "relativeTimePattern-count-one": "dentro de {0} ano",
3499
- "relativeTimePattern-count-other": "dentro de {0} anos"
3500
- },
3501
- "relativeTime-type-past": {
3502
- "relativeTimePattern-count-one": "há {0} ano",
3503
- "relativeTimePattern-count-other": "há {0} anos"
3504
- }
3505
- },
3506
- "year-narrow": {
3507
- "displayName": "ano",
3508
- "relative-type--1": "ano passado",
3509
- "relative-type-0": "este ano",
3510
- "relative-type-1": "próximo ano",
3511
- "relativeTime-type-future": {
3512
- "relativeTimePattern-count-one": "+{0} ano",
3513
- "relativeTimePattern-count-other": "+{0} anos"
3514
- },
3515
- "relativeTime-type-past": {
3516
- "relativeTimePattern-count-one": "-{0} ano",
3517
- "relativeTimePattern-count-other": "-{0} anos"
3518
- }
3519
- },
3520
- "quarter-wide": {
3521
- "displayName": "trimestre",
3522
- "relative-type--1": "trimestre passado",
3523
- "relative-type-0": "este trimestre",
3524
- "relative-type-1": "próximo trimestre",
3525
- "relativeTime-type-future": {
3526
- "relativeTimePattern-count-one": "dentro de {0} trimestre",
3527
- "relativeTimePattern-count-other": "dentro de {0} trimestres"
3528
- },
3529
- "relativeTime-type-past": {
3530
- "relativeTimePattern-count-one": "há {0} trimestre",
3531
- "relativeTimePattern-count-other": "há {0} trimestres"
3532
- }
3533
- },
3534
- "quarter-short": {
3535
- "displayName": "trim.",
3536
- "relative-type--1": "trim. passado",
3537
- "relative-type-0": "este trim.",
3538
- "relative-type-1": "próximo trim.",
3539
- "relativeTime-type-future": {
3540
- "relativeTimePattern-count-one": "dentro de {0} trim.",
3541
- "relativeTimePattern-count-other": "dentro de {0} trim."
3542
- },
3543
- "relativeTime-type-past": {
3544
- "relativeTimePattern-count-one": "há {0} trim.",
3545
- "relativeTimePattern-count-other": "há {0} trim."
3546
- }
3547
- },
3548
- "quarter-narrow": {
3549
- "displayName": "trim.",
3550
- "relative-type--1": "trim. passado",
3551
- "relative-type-0": "este trim.",
3552
- "relative-type-1": "próximo trim.",
3553
- "relativeTime-type-future": {
3554
- "relativeTimePattern-count-one": "+{0} trim.",
3555
- "relativeTimePattern-count-other": "+{0} trim."
3556
- },
3557
- "relativeTime-type-past": {
3558
- "relativeTimePattern-count-one": "-{0} trim.",
3559
- "relativeTimePattern-count-other": "-{0} trim."
3560
- }
3561
- },
3562
- "month-wide": {
3563
- "displayName": "mês",
3564
- "relative-type--1": "mês passado",
3565
- "relative-type-0": "este mês",
3566
- "relative-type-1": "próximo mês",
3567
- "relativeTime-type-future": {
3568
- "relativeTimePattern-count-one": "dentro de {0} mês",
3569
- "relativeTimePattern-count-other": "dentro de {0} meses"
3570
- },
3571
- "relativeTime-type-past": {
3572
- "relativeTimePattern-count-one": "há {0} mês",
3573
- "relativeTimePattern-count-other": "há {0} meses"
3574
- }
3575
- },
3576
- "month-short": {
3577
- "displayName": "mês",
3578
- "relative-type--1": "mês passado",
3579
- "relative-type-0": "este mês",
3580
- "relative-type-1": "próximo mês",
3581
- "relativeTime-type-future": {
3582
- "relativeTimePattern-count-one": "dentro de {0} mês",
3583
- "relativeTimePattern-count-other": "dentro de {0} meses"
3584
- },
3585
- "relativeTime-type-past": {
3586
- "relativeTimePattern-count-one": "há {0} mês",
3587
- "relativeTimePattern-count-other": "há {0} meses"
3588
- }
3589
- },
3590
- "month-narrow": {
3591
- "displayName": "mês",
3592
- "relative-type--1": "mês passado",
3593
- "relative-type-0": "este mês",
3594
- "relative-type-1": "próximo mês",
3595
- "relativeTime-type-future": {
3596
- "relativeTimePattern-count-one": "+{0} mês",
3597
- "relativeTimePattern-count-other": "+{0} meses"
3598
- },
3599
- "relativeTime-type-past": {
3600
- "relativeTimePattern-count-one": "-{0} mês",
3601
- "relativeTimePattern-count-other": "-{0} meses"
3602
- }
3603
- },
3604
- "week-wide": {
3605
- "displayName": "semana",
3606
- "relative-type--1": "semana passada",
3607
- "relative-type-0": "esta semana",
3608
- "relative-type-1": "próxima semana",
3609
- "relativeTime-type-future": {
3610
- "relativeTimePattern-count-one": "dentro de {0} semana",
3611
- "relativeTimePattern-count-other": "dentro de {0} semanas"
3612
- },
3613
- "relativeTime-type-past": {
3614
- "relativeTimePattern-count-one": "há {0} semana",
3615
- "relativeTimePattern-count-other": "há {0} semanas"
3616
- },
3617
- "relativePeriod": "a semana de {0}"
3618
- },
3619
- "week-short": {
3620
- "displayName": "sem.",
3621
- "relative-type--1": "semana passada",
3622
- "relative-type-0": "esta semana",
3623
- "relative-type-1": "próxima semana",
3624
- "relativeTime-type-future": {
3625
- "relativeTimePattern-count-one": "dentro de {0} sem.",
3626
- "relativeTimePattern-count-other": "dentro de {0} sem."
3627
- },
3628
- "relativeTime-type-past": {
3629
- "relativeTimePattern-count-one": "há {0} sem.",
3630
- "relativeTimePattern-count-other": "há {0} sem."
3631
- },
3632
- "relativePeriod": "a sem. de {0}"
3633
- },
3634
- "week-narrow": {
3635
- "displayName": "sem.",
3636
- "relative-type--1": "semana passada",
3637
- "relative-type-0": "esta semana",
3638
- "relative-type-1": "próxima semana",
3639
- "relativeTime-type-future": {
3640
- "relativeTimePattern-count-one": "+{0} sem.",
3641
- "relativeTimePattern-count-other": "+{0} sem."
3642
- },
3643
- "relativeTime-type-past": {
3644
- "relativeTimePattern-count-one": "-{0} sem.",
3645
- "relativeTimePattern-count-other": "-{0} sem."
3646
- },
3647
- "relativePeriod": "a semana de {0}"
3648
- },
3649
- "day-wide": {
3650
- "displayName": "dia",
3651
- "relative-type--2": "anteontem",
3652
- "relative-type--1": "ontem",
3653
- "relative-type-0": "hoje",
3654
- "relative-type-1": "amanhã",
3655
- "relative-type-2": "depois de amanhã",
3656
- "relativeTime-type-future": {
3657
- "relativeTimePattern-count-one": "dentro de {0} dia",
3658
- "relativeTimePattern-count-other": "dentro de {0} dias"
3659
- },
3660
- "relativeTime-type-past": {
3661
- "relativeTimePattern-count-one": "há {0} dia",
3662
- "relativeTimePattern-count-other": "há {0} dias"
3663
- }
3664
- },
3665
- "day-short": {
3666
- "displayName": "dia",
3667
- "relative-type--2": "anteontem",
3668
- "relative-type--1": "ontem",
3669
- "relative-type-0": "hoje",
3670
- "relative-type-1": "amanhã",
3671
- "relative-type-2": "depois de amanhã",
3672
- "relativeTime-type-future": {
3673
- "relativeTimePattern-count-one": "dentro de {0} dia",
3674
- "relativeTimePattern-count-other": "dentro de {0} dias"
3675
- },
3676
- "relativeTime-type-past": {
3677
- "relativeTimePattern-count-one": "há {0} dia",
3678
- "relativeTimePattern-count-other": "há {0} dias"
3679
- }
3680
- },
3681
- "day-narrow": {
3682
- "displayName": "dia",
3683
- "relative-type--2": "anteontem",
3684
- "relative-type--1": "ontem",
3685
- "relative-type-0": "hoje",
3686
- "relative-type-1": "amanhã",
3687
- "relative-type-2": "depois de amanhã",
3688
- "relativeTime-type-future": {
3689
- "relativeTimePattern-count-one": "+{0} dia",
3690
- "relativeTimePattern-count-other": "+{0} dias"
3691
- },
3692
- "relativeTime-type-past": {
3693
- "relativeTimePattern-count-one": "há {0} dias",
3694
- "relativeTimePattern-count-other": "há {0} dias"
3695
- }
3696
- },
3697
- "weekday": {
3698
- "displayName": "dia da semana"
3699
- },
3700
- "hour-wide": {
3701
- "displayName": "hora",
3702
- "relative-type-0": "esta hora",
3703
- "relativeTime-type-future": {
3704
- "relativeTimePattern-count-one": "dentro de {0} hora",
3705
- "relativeTimePattern-count-other": "dentro de {0} horas"
3706
- },
3707
- "relativeTime-type-past": {
3708
- "relativeTimePattern-count-one": "há {0} hora",
3709
- "relativeTimePattern-count-other": "há {0} horas"
3710
- }
3711
- },
3712
- "hour-short": {
3713
- "displayName": "h",
3714
- "relative-type-0": "esta hora",
3715
- "relativeTime-type-future": {
3716
- "relativeTimePattern-count-one": "dentro de {0} h",
3717
- "relativeTimePattern-count-other": "dentro de {0} h"
3718
- },
3719
- "relativeTime-type-past": {
3720
- "relativeTimePattern-count-one": "há {0} h",
3721
- "relativeTimePattern-count-other": "há {0} h"
3722
- }
3723
- },
3724
- "hour-narrow": {
3725
- "displayName": "h",
3726
- "relative-type-0": "esta hora",
3727
- "relativeTime-type-future": {
3728
- "relativeTimePattern-count-one": "+{0} h",
3729
- "relativeTimePattern-count-other": "+{0} h"
3730
- },
3731
- "relativeTime-type-past": {
3732
- "relativeTimePattern-count-one": "-{0} h",
3733
- "relativeTimePattern-count-other": "-{0} h"
3734
- }
3735
- },
3736
- "minute-wide": {
3737
- "displayName": "minuto",
3738
- "relative-type-0": "este minuto",
3739
- "relativeTime-type-future": {
3740
- "relativeTimePattern-count-one": "dentro de {0} minuto",
3741
- "relativeTimePattern-count-other": "dentro de {0} minutos"
3742
- },
3743
- "relativeTime-type-past": {
3744
- "relativeTimePattern-count-one": "há {0} minuto",
3745
- "relativeTimePattern-count-other": "há {0} minutos"
3746
- }
3747
- },
3748
- "minute-short": {
3749
- "displayName": "min",
3750
- "relative-type-0": "este minuto",
3751
- "relativeTime-type-future": {
3752
- "relativeTimePattern-count-one": "dentro de {0} min",
3753
- "relativeTimePattern-count-other": "dentro de {0} min"
3754
- },
3755
- "relativeTime-type-past": {
3756
- "relativeTimePattern-count-one": "há {0} min",
3757
- "relativeTimePattern-count-other": "há {0} min"
3758
- }
3759
- },
3760
- "minute-narrow": {
3761
- "displayName": "min",
3762
- "relative-type-0": "este minuto",
3763
- "relativeTime-type-future": {
3764
- "relativeTimePattern-count-one": "+{0} min",
3765
- "relativeTimePattern-count-other": "+{0} min"
3766
- },
3767
- "relativeTime-type-past": {
3768
- "relativeTimePattern-count-one": "-{0} min",
3769
- "relativeTimePattern-count-other": "-{0} min"
3770
- }
3771
- },
3772
- "second-wide": {
3773
- "displayName": "segundo",
3774
- "relative-type-0": "agora",
3775
- "relativeTime-type-future": {
3776
- "relativeTimePattern-count-one": "dentro de {0} segundo",
3777
- "relativeTimePattern-count-other": "dentro de {0} segundos"
3778
- },
3779
- "relativeTime-type-past": {
3780
- "relativeTimePattern-count-one": "há {0} segundo",
3781
- "relativeTimePattern-count-other": "há {0} segundos"
3782
- }
3783
- },
3784
- "second-short": {
3785
- "displayName": "s",
3786
- "relative-type-0": "agora",
3787
- "relativeTime-type-future": {
3788
- "relativeTimePattern-count-one": "dentro de {0} s",
3789
- "relativeTimePattern-count-other": "dentro de {0} s"
3790
- },
3791
- "relativeTime-type-past": {
3792
- "relativeTimePattern-count-one": "há {0} s",
3793
- "relativeTimePattern-count-other": "há {0} s"
3794
- }
3795
- },
3796
- "second-narrow": {
3797
- "displayName": "s",
3798
- "relative-type-0": "agora",
3799
- "relativeTime-type-future": {
3800
- "relativeTimePattern-count-one": "+{0} s",
3801
- "relativeTimePattern-count-other": "+{0} s"
3802
- },
3803
- "relativeTime-type-past": {
3804
- "relativeTimePattern-count-one": "-{0} s",
3805
- "relativeTimePattern-count-other": "-{0} s"
3806
- }
3807
- },
3808
- "zone": {
3809
- "displayName": "fuso horário"
3810
- }
3811
- },
3812
- "decimalFormat": {
3813
- "standard": "#,##0.###"
3814
- },
3815
- "decimalFormat-long": {
3816
- "1000-one": "0 mil",
3817
- "1000-other": "0 mil",
3818
- "10000-one": "00 mil",
3819
- "10000-other": "00 mil",
3820
- "100000-one": "000 mil",
3821
- "100000-other": "000 mil",
3822
- "1000000-one": "0 milhão",
3823
- "1000000-other": "0 milhões",
3824
- "10000000-one": "00 milhões",
3825
- "10000000-other": "00 milhões",
3826
- "100000000-one": "000 milhões",
3827
- "100000000-other": "000 milhões",
3828
- "1000000000-one": "0 mil milhões",
3829
- "1000000000-other": "0 mil milhões",
3830
- "10000000000-one": "00 mil milhões",
3831
- "10000000000-other": "00 mil milhões",
3832
- "100000000000-one": "000 mil milhões",
3833
- "100000000000-other": "000 mil milhões",
3834
- "1000000000000-one": "0 bilião",
3835
- "1000000000000-other": "0 biliões",
3836
- "10000000000000-one": "00 biliões",
3837
- "10000000000000-other": "00 biliões",
3838
- "100000000000000-one": "000 biliões",
3839
- "100000000000000-other": "000 biliões"
3840
- },
3841
- "decimalFormat-short": {
3842
- "1000-one": "0 mil",
3843
- "1000-other": "0 mil",
3844
- "10000-one": "00 mil",
3845
- "10000-other": "00 mil",
3846
- "100000-one": "000 mil",
3847
- "100000-other": "000 mil",
3848
- "1000000-one": "0 M",
3849
- "1000000-other": "0 M",
3850
- "10000000-one": "00 M",
3851
- "10000000-other": "00 M",
3852
- "100000000-one": "000 M",
3853
- "100000000-other": "000 M",
3854
- "1000000000-one": "0 mM",
3855
- "1000000000-other": "0 mM",
3856
- "10000000000-one": "00 mM",
3857
- "10000000000-other": "00 mM",
3858
- "100000000000-one": "000 mM",
3859
- "100000000000-other": "000 mM",
3860
- "1000000000000-one": "0 Bi",
3861
- "1000000000000-other": "0 Bi",
3862
- "10000000000000-one": "00 Bi",
3863
- "10000000000000-other": "00 Bi",
3864
- "100000000000000-one": "000 Bi",
3865
- "100000000000000-other": "000 Bi"
3866
- },
3867
- "scientificFormat": {
3868
- "standard": "#E0"
3869
- },
3870
- "percentFormat": {
3871
- "standard": "#,##0%"
3872
- },
3873
- "currencyFormat": {
3874
- "standard": "#,##0.00 ¤",
3875
- "accounting": "#,##0.00 ¤;(#,##0.00 ¤)",
3876
- "currencySpacing": {
3877
- "beforeCurrency": {
3878
- "currencyMatch": "[:^S:]",
3879
- "surroundingMatch": "[:digit:]",
3880
- "insertBetween": " "
3881
- },
3882
- "afterCurrency": {
3883
- "currencyMatch": "[:^S:]",
3884
- "surroundingMatch": "[:digit:]",
3885
- "insertBetween": " "
3886
- }
3887
- },
3888
- "sap-standard": "#,##0.00 ¤",
3889
- "sap-accounting": "#,##0.00 ¤;(#,##0.00 ¤)"
3890
- },
3891
- "miscPattern": {
3892
- "approximately": "~{0}",
3893
- "atLeast": "+{0}",
3894
- "atMost": "≤{0}",
3895
- "range": "{0} - {1}"
3896
- },
3897
- "currencyFormat-short": {
3898
- "1000-one": "0 mil ¤",
3899
- "1000-other": "0 mil ¤",
3900
- "10000-one": "00 mil ¤",
3901
- "10000-other": "00 mil ¤",
3902
- "100000-one": "000 mil ¤",
3903
- "100000-other": "000 mil ¤",
3904
- "1000000-one": "0 M ¤",
3905
- "1000000-other": "0 M ¤",
3906
- "10000000-one": "00 M ¤",
3907
- "10000000-other": "00 M ¤",
3908
- "100000000-one": "000 M ¤",
3909
- "100000000-other": "000 M ¤",
3910
- "1000000000-one": "0 mM ¤",
3911
- "1000000000-other": "0 mM ¤",
3912
- "10000000000-one": "00 mM ¤",
3913
- "10000000000-other": "00 mM ¤",
3914
- "100000000000-one": "000 mM ¤",
3915
- "100000000000-other": "000 mM ¤",
3916
- "1000000000000-one": "0 B ¤",
3917
- "1000000000000-other": "0 B ¤",
3918
- "10000000000000-one": "00 B ¤",
3919
- "10000000000000-other": "00 B ¤",
3920
- "100000000000000-one": "000 B ¤",
3921
- "100000000000000-other": "000 B ¤"
3922
- },
3923
- "symbols-latn-decimal": ",",
3924
- "symbols-latn-group": " ",
3925
- "symbols-latn-list": ";",
3926
- "symbols-latn-percentSign": "%",
3927
- "symbols-latn-plusSign": "+",
3928
- "symbols-latn-minusSign": "-",
3929
- "symbols-latn-exponential": "E",
3930
- "symbols-latn-superscriptingExponent": "×",
3931
- "symbols-latn-perMille": "‰",
3932
- "symbols-latn-infinity": "∞",
3933
- "symbols-latn-nan": "NaN",
3934
- "symbols-latn-timeSeparator": ":",
3935
- "currencySymbols": {
3936
- "AUD": "AU$",
3937
- "BRL": "R$",
3938
- "CAD": "CA$",
3939
- "CNY": "CN¥",
3940
- "EUR": "€",
3941
- "GBP": "£",
3942
- "HKD": "HK$",
3943
- "ILS": "₪",
3944
- "INR": "₹",
3945
- "JPY": "JP¥",
3946
- "KRW": "₩",
3947
- "MXN": "MX$",
3948
- "NZD": "NZ$",
3949
- "PTE": "​",
3950
- "THB": "฿",
3951
- "TWD": "NT$",
3952
- "USD": "US$",
3953
- "VND": "₫",
3954
- "XAF": "FCFA",
3955
- "XCD": "EC$",
3956
- "XOF": "CFA",
3957
- "XPF": "CFPF",
3958
- "XXX": "¤"
3959
- },
3960
- "rtl": false,
3961
- "listPattern-standard-wide": {
3962
- "2": "{0} e {1}",
3963
- "start": "{0}, {1}",
3964
- "middle": "{0}, {1}",
3965
- "end": "{0} e {1}"
3966
- },
3967
- "listPattern-or-wide": {
3968
- "2": "{0} ou {1}",
3969
- "start": "{0}, {1}",
3970
- "middle": "{0}, {1}",
3971
- "end": "{0} ou {1}"
3972
- },
3973
- "listPattern-or-short": {
3974
- "2": "{0} ou {1}",
3975
- "start": "{0}, {1}",
3976
- "middle": "{0}, {1}",
3977
- "end": "{0} ou {1}"
3978
- },
3979
- "listPattern-standard-short": {
3980
- "2": "{0} e {1}",
3981
- "start": "{0}, {1}",
3982
- "middle": "{0}, {1}",
3983
- "end": "{0} e {1}"
3984
- },
3985
- "units": {
3986
- "short": {
3987
- "per": {
3988
- "compoundUnitPattern": "{0}/{1}"
3989
- },
3990
- "acceleration-g-force": {
3991
- "displayName": "força G",
3992
- "unitPattern-count-one": "{0} G",
3993
- "unitPattern-count-other": "{0} G"
3994
- },
3995
- "acceleration-meter-per-second-squared": {
3996
- "displayName": "m/s²",
3997
- "unitPattern-count-one": "{0} m/s²",
3998
- "unitPattern-count-other": "{0} m/s²"
3999
- },
4000
- "angle-revolution": {
4001
- "displayName": "rev",
4002
- "unitPattern-count-other": "{0} rev"
4003
- },
4004
- "angle-radian": {
4005
- "displayName": "radianos",
4006
- "unitPattern-count-one": "{0} rad",
4007
- "unitPattern-count-other": "{0} rad"
4008
- },
4009
- "angle-degree": {
4010
- "displayName": "graus",
4011
- "unitPattern-count-one": "{0}°",
4012
- "unitPattern-count-other": "{0}°"
4013
- },
4014
- "angle-arc-minute": {
4015
- "displayName": "minutos de arco",
4016
- "unitPattern-count-one": "{0} arcmin",
4017
- "unitPattern-count-other": "{0} arcmins"
4018
- },
4019
- "angle-arc-second": {
4020
- "displayName": "segundos de arco",
4021
- "unitPattern-count-one": "{0} arcseg",
4022
- "unitPattern-count-other": "{0} arcsegs"
4023
- },
4024
- "area-square-kilometer": {
4025
- "displayName": "km²",
4026
- "unitPattern-count-one": "{0} km²",
4027
- "unitPattern-count-other": "{0} km²",
4028
- "perUnitPattern": "{0}/km²"
4029
- },
4030
- "area-hectare": {
4031
- "displayName": "hectares",
4032
- "unitPattern-count-one": "{0} ha",
4033
- "unitPattern-count-other": "{0} ha"
4034
- },
4035
- "area-square-meter": {
4036
- "displayName": "m²",
4037
- "unitPattern-count-one": "{0} m²",
4038
- "unitPattern-count-other": "{0} m²",
4039
- "perUnitPattern": "{0}/m²"
4040
- },
4041
- "area-square-centimeter": {
4042
- "displayName": "cm²",
4043
- "unitPattern-count-one": "{0} cm²",
4044
- "unitPattern-count-other": "{0} cm²",
4045
- "perUnitPattern": "{0}/cm²"
4046
- },
4047
- "area-square-mile": {
4048
- "displayName": "mi²",
4049
- "unitPattern-count-one": "{0} mi²",
4050
- "unitPattern-count-other": "{0} mi²",
4051
- "perUnitPattern": "{0}/mi²"
4052
- },
4053
- "area-acre": {
4054
- "displayName": "acres",
4055
- "unitPattern-count-one": "{0} acre",
4056
- "unitPattern-count-other": "{0} acres"
4057
- },
4058
- "area-square-yard": {
4059
- "displayName": "yd²",
4060
- "unitPattern-count-one": "{0} yd²",
4061
- "unitPattern-count-other": "{0} yd²"
4062
- },
4063
- "area-square-foot": {
4064
- "displayName": "pés quadrados",
4065
- "unitPattern-count-one": "{0} ft²",
4066
- "unitPattern-count-other": "{0} ft²"
4067
- },
4068
- "area-square-inch": {
4069
- "displayName": "in²",
4070
- "unitPattern-count-one": "{0} in²",
4071
- "unitPattern-count-other": "{0} in²",
4072
- "perUnitPattern": "{0}/in²"
4073
- },
4074
- "area-dunam": {
4075
- "displayName": "dunams",
4076
- "unitPattern-count-one": "{0} dunam",
4077
- "unitPattern-count-other": "{0} dunams"
4078
- },
4079
- "concentr-karat": {
4080
- "displayName": "quilates",
4081
- "unitPattern-count-one": "{0} kt",
4082
- "unitPattern-count-other": "{0} kt"
4083
- },
4084
- "concentr-milligram-per-deciliter": {
4085
- "displayName": "mg/dl",
4086
- "unitPattern-count-one": "{0} mg/dl",
4087
- "unitPattern-count-other": "{0} mg/dl"
4088
- },
4089
- "concentr-millimole-per-liter": {
4090
- "displayName": "milimole/litro",
4091
- "unitPattern-count-one": "{0} mmol/l",
4092
- "unitPattern-count-other": "{0} mmol/l"
4093
- },
4094
- "concentr-part-per-million": {
4095
- "displayName": "partes/milhão",
4096
- "unitPattern-count-other": "{0} ppm"
4097
- },
4098
- "concentr-percent": {
4099
- "displayName": "por cento",
4100
- "unitPattern-count-one": "{0}%",
4101
- "unitPattern-count-other": "{0}%"
4102
- },
4103
- "concentr-permille": {
4104
- "displayName": "por mil",
4105
- "unitPattern-count-one": "{0}‰",
4106
- "unitPattern-count-other": "{0}‰"
4107
- },
4108
- "concentr-permyriad": {
4109
- "displayName": "ponto base",
4110
- "unitPattern-count-one": "{0}‱",
4111
- "unitPattern-count-other": "{0}‱"
4112
- },
4113
- "concentr-mole": {
4114
- "displayName": "mol",
4115
- "unitPattern-count-one": "{0} mol",
4116
- "unitPattern-count-other": "{0} mol"
4117
- },
4118
- "consumption-liter-per-kilometer": {
4119
- "displayName": "litros/km",
4120
- "unitPattern-count-one": "{0} l/km",
4121
- "unitPattern-count-other": "{0} l/km"
4122
- },
4123
- "consumption-liter-per-100kilometers": {
4124
- "displayName": "l/100km",
4125
- "unitPattern-count-one": "{0} l/100km",
4126
- "unitPattern-count-other": "{0} l/100km"
4127
- },
4128
- "consumption-mile-per-gallon": {
4129
- "displayName": "milhas/galão",
4130
- "unitPattern-count-one": "{0} mpg",
4131
- "unitPattern-count-other": "{0} mpg"
4132
- },
4133
- "consumption-mile-per-gallon-imperial": {
4134
- "displayName": "milhas/gal imp.",
4135
- "unitPattern-count-one": "{0} mpg imp.",
4136
- "unitPattern-count-other": "{0} mpg imp."
4137
- },
4138
- "digital-petabyte": {
4139
- "displayName": "PByte",
4140
- "unitPattern-count-one": "{0} PB",
4141
- "unitPattern-count-other": "{0} PB"
4142
- },
4143
- "digital-terabyte": {
4144
- "displayName": "TByte",
4145
- "unitPattern-count-one": "{0} TB",
4146
- "unitPattern-count-other": "{0} TB"
4147
- },
4148
- "digital-terabit": {
4149
- "displayName": "Tbit",
4150
- "unitPattern-count-one": "{0} Tb",
4151
- "unitPattern-count-other": "{0} Tb"
4152
- },
4153
- "digital-gigabyte": {
4154
- "displayName": "GByte",
4155
- "unitPattern-count-one": "{0} GB",
4156
- "unitPattern-count-other": "{0} GB"
4157
- },
4158
- "digital-gigabit": {
4159
- "displayName": "Gbit",
4160
- "unitPattern-count-one": "{0} Gb",
4161
- "unitPattern-count-other": "{0} Gb"
4162
- },
4163
- "digital-megabyte": {
4164
- "displayName": "MByte",
4165
- "unitPattern-count-one": "{0} MB",
4166
- "unitPattern-count-other": "{0} MB"
4167
- },
4168
- "digital-megabit": {
4169
- "displayName": "Mbit",
4170
- "unitPattern-count-one": "{0} Mb",
4171
- "unitPattern-count-other": "{0} Mb"
4172
- },
4173
- "digital-kilobyte": {
4174
- "displayName": "kByte",
4175
- "unitPattern-count-one": "{0} kB",
4176
- "unitPattern-count-other": "{0} kB"
4177
- },
4178
- "digital-kilobit": {
4179
- "displayName": "kbit",
4180
- "unitPattern-count-one": "{0} kb",
4181
- "unitPattern-count-other": "{0} kb"
4182
- },
4183
- "digital-byte": {
4184
- "displayName": "byte",
4185
- "unitPattern-count-one": "{0} byte",
4186
- "unitPattern-count-other": "{0} byte"
4187
- },
4188
- "digital-bit": {
4189
- "displayName": "bit",
4190
- "unitPattern-count-one": "{0} bit",
4191
- "unitPattern-count-other": "{0} bit"
4192
- },
4193
- "duration-century": {
4194
- "displayName": "séc.",
4195
- "unitPattern-count-one": "{0} séc.",
4196
- "unitPattern-count-other": "{0} sécs."
4197
- },
4198
- "duration-year": {
4199
- "displayName": "anos",
4200
- "unitPattern-count-one": "{0} ano",
4201
- "unitPattern-count-other": "{0} anos",
4202
- "perUnitPattern": "{0}/ano"
4203
- },
4204
- "duration-month": {
4205
- "displayName": "meses",
4206
- "unitPattern-count-one": "{0} mês",
4207
- "unitPattern-count-other": "{0} meses",
4208
- "perUnitPattern": "{0}/mês"
4209
- },
4210
- "duration-week": {
4211
- "displayName": "semanas",
4212
- "unitPattern-count-one": "{0} sem.",
4213
- "unitPattern-count-other": "{0} sem.",
4214
- "perUnitPattern": "{0}/sem."
4215
- },
4216
- "duration-day": {
4217
- "displayName": "dias",
4218
- "unitPattern-count-one": "{0} dia",
4219
- "unitPattern-count-other": "{0} dias",
4220
- "perUnitPattern": "{0}/dia"
4221
- },
4222
- "duration-hour": {
4223
- "displayName": "horas",
4224
- "unitPattern-count-one": "{0} h",
4225
- "unitPattern-count-other": "{0} h",
4226
- "perUnitPattern": "{0}/h"
4227
- },
4228
- "duration-minute": {
4229
- "displayName": "minutos",
4230
- "unitPattern-count-one": "{0} min",
4231
- "unitPattern-count-other": "{0} min",
4232
- "perUnitPattern": "{0}/min"
4233
- },
4234
- "duration-second": {
4235
- "displayName": "s",
4236
- "unitPattern-count-one": "{0} s",
4237
- "unitPattern-count-other": "{0} s",
4238
- "perUnitPattern": "{0}/s"
4239
- },
4240
- "duration-millisecond": {
4241
- "displayName": "milissegundos",
4242
- "unitPattern-count-one": "{0} ms",
4243
- "unitPattern-count-other": "{0} ms"
4244
- },
4245
- "duration-microsecond": {
4246
- "displayName": "μs",
4247
- "unitPattern-count-one": "{0} μs",
4248
- "unitPattern-count-other": "{0} μs"
4249
- },
4250
- "duration-nanosecond": {
4251
- "displayName": "ns",
4252
- "unitPattern-count-one": "{0} ns",
4253
- "unitPattern-count-other": "{0} ns"
4254
- },
4255
- "electric-ampere": {
4256
- "displayName": "amps",
4257
- "unitPattern-count-one": "{0} A",
4258
- "unitPattern-count-other": "{0} A"
4259
- },
4260
- "electric-milliampere": {
4261
- "displayName": "miliamps",
4262
- "unitPattern-count-one": "{0} mA",
4263
- "unitPattern-count-other": "{0} mA"
4264
- },
4265
- "electric-ohm": {
4266
- "displayName": "ohms",
4267
- "unitPattern-count-one": "{0} Ω",
4268
- "unitPattern-count-other": "{0} Ω"
4269
- },
4270
- "electric-volt": {
4271
- "displayName": "volts",
4272
- "unitPattern-count-one": "{0} V",
4273
- "unitPattern-count-other": "{0} V"
4274
- },
4275
- "energy-kilocalorie": {
4276
- "displayName": "kcal",
4277
- "unitPattern-count-one": "{0} kcal",
4278
- "unitPattern-count-other": "{0} kcal"
4279
- },
4280
- "energy-calorie": {
4281
- "displayName": "cal",
4282
- "unitPattern-count-one": "{0} cal",
4283
- "unitPattern-count-other": "{0} cal"
4284
- },
4285
- "energy-foodcalorie": {
4286
- "displayName": "kcal",
4287
- "unitPattern-count-one": "{0} kcal",
4288
- "unitPattern-count-other": "{0} kcal"
4289
- },
4290
- "energy-kilojoule": {
4291
- "displayName": "quilojoule",
4292
- "unitPattern-count-one": "{0} kJ",
4293
- "unitPattern-count-other": "{0} kJ"
4294
- },
4295
- "energy-joule": {
4296
- "displayName": "joules",
4297
- "unitPattern-count-one": "{0} J",
4298
- "unitPattern-count-other": "{0} J"
4299
- },
4300
- "energy-kilowatt-hour": {
4301
- "displayName": "kW-hora",
4302
- "unitPattern-count-one": "{0} kWh",
4303
- "unitPattern-count-other": "{0} kWh"
4304
- },
4305
- "energy-electronvolt": {
4306
- "displayName": "eletrão-volt",
4307
- "unitPattern-count-one": "{0} eV",
4308
- "unitPattern-count-other": "{0} eV"
4309
- },
4310
- "energy-british-thermal-unit": {
4311
- "displayName": "BTU",
4312
- "unitPattern-count-one": "{0} Btu",
4313
- "unitPattern-count-other": "{0} Btu"
4314
- },
4315
- "force-pound-force": {
4316
- "displayName": "libra-força",
4317
- "unitPattern-count-one": "{0} lbf",
4318
- "unitPattern-count-other": "{0} lbf"
4319
- },
4320
- "force-newton": {
4321
- "displayName": "newton",
4322
- "unitPattern-count-one": "{0} N",
4323
- "unitPattern-count-other": "{0} N"
4324
- },
4325
- "frequency-gigahertz": {
4326
- "displayName": "GHz",
4327
- "unitPattern-count-one": "{0} GHz",
4328
- "unitPattern-count-other": "{0} GHz"
4329
- },
4330
- "frequency-megahertz": {
4331
- "displayName": "MHz",
4332
- "unitPattern-count-one": "{0} MHz",
4333
- "unitPattern-count-other": "{0} MHz"
4334
- },
4335
- "frequency-kilohertz": {
4336
- "displayName": "kHz",
4337
- "unitPattern-count-one": "{0} kHz",
4338
- "unitPattern-count-other": "{0} kHz"
4339
- },
4340
- "frequency-hertz": {
4341
- "displayName": "Hz",
4342
- "unitPattern-count-one": "{0} Hz",
4343
- "unitPattern-count-other": "{0} Hz"
4344
- },
4345
- "length-kilometer": {
4346
- "displayName": "km",
4347
- "unitPattern-count-one": "{0} km",
4348
- "unitPattern-count-other": "{0} km",
4349
- "perUnitPattern": "{0}/km"
4350
- },
4351
- "length-meter": {
4352
- "displayName": "metros",
4353
- "unitPattern-count-one": "{0} m",
4354
- "unitPattern-count-other": "{0} m",
4355
- "perUnitPattern": "{0}/m"
4356
- },
4357
- "length-decimeter": {
4358
- "displayName": "dm",
4359
- "unitPattern-count-one": "{0} dm",
4360
- "unitPattern-count-other": "{0} dm"
4361
- },
4362
- "length-centimeter": {
4363
- "displayName": "cm",
4364
- "unitPattern-count-one": "{0} cm",
4365
- "unitPattern-count-other": "{0} cm",
4366
- "perUnitPattern": "{0}/cm"
4367
- },
4368
- "length-millimeter": {
4369
- "displayName": "mm",
4370
- "unitPattern-count-one": "{0} mm",
4371
- "unitPattern-count-other": "{0} mm"
4372
- },
4373
- "length-micrometer": {
4374
- "displayName": "µm",
4375
- "unitPattern-count-one": "{0} µm",
4376
- "unitPattern-count-other": "{0} µm"
4377
- },
4378
- "length-nanometer": {
4379
- "displayName": "nm",
4380
- "unitPattern-count-one": "{0} nm",
4381
- "unitPattern-count-other": "{0} nm"
4382
- },
4383
- "length-picometer": {
4384
- "displayName": "pm",
4385
- "unitPattern-count-one": "{0} pm",
4386
- "unitPattern-count-other": "{0} pm"
4387
- },
4388
- "length-mile": {
4389
- "displayName": "milhas",
4390
- "unitPattern-count-one": "{0} milha",
4391
- "unitPattern-count-other": "{0} milhas"
4392
- },
4393
- "length-yard": {
4394
- "displayName": "jardas",
4395
- "unitPattern-count-one": "{0} yd",
4396
- "unitPattern-count-other": "{0} yd"
4397
- },
4398
- "length-foot": {
4399
- "displayName": "pés",
4400
- "unitPattern-count-one": "{0} pé",
4401
- "unitPattern-count-other": "{0} pés",
4402
- "perUnitPattern": "{0}/pé"
4403
- },
4404
- "length-inch": {
4405
- "displayName": "polegadas",
4406
- "unitPattern-count-one": "{0} pol.",
4407
- "unitPattern-count-other": "{0} pol.",
4408
- "perUnitPattern": "{0}/pol."
4409
- },
4410
- "length-parsec": {
4411
- "displayName": "pc",
4412
- "unitPattern-count-one": "{0} pc",
4413
- "unitPattern-count-other": "{0} pc"
4414
- },
4415
- "length-light-year": {
4416
- "displayName": "anos-luz",
4417
- "unitPattern-count-one": "{0} ano-luz",
4418
- "unitPattern-count-other": "{0} anos-luz"
4419
- },
4420
- "length-astronomical-unit": {
4421
- "displayName": "ua",
4422
- "unitPattern-count-one": "{0} ua",
4423
- "unitPattern-count-other": "{0} ua"
4424
- },
4425
- "length-furlong": {
4426
- "displayName": "furlongs",
4427
- "unitPattern-count-other": "{0} fur"
4428
- },
4429
- "length-fathom": {
4430
- "displayName": "braças",
4431
- "unitPattern-count-one": "{0} bça.",
4432
- "unitPattern-count-other": "{0} bça."
4433
- },
4434
- "length-nautical-mile": {
4435
- "displayName": "nmi",
4436
- "unitPattern-count-one": "{0} nmi",
4437
- "unitPattern-count-other": "{0} nmi"
4438
- },
4439
- "length-mile-scandinavian": {
4440
- "displayName": "smi",
4441
- "unitPattern-count-other": "{0} smi"
4442
- },
4443
- "length-point": {
4444
- "displayName": "pontos",
4445
- "unitPattern-count-other": "{0} pt"
4446
- },
4447
- "length-solar-radius": {
4448
- "displayName": "raios solares",
4449
- "unitPattern-count-one": "{0} R☉",
4450
- "unitPattern-count-other": "{0} R☉"
4451
- },
4452
- "light-lux": {
4453
- "displayName": "lux",
4454
- "unitPattern-count-one": "{0} lx",
4455
- "unitPattern-count-other": "{0} lx"
4456
- },
4457
- "light-solar-luminosity": {
4458
- "displayName": "luminosidades solares",
4459
- "unitPattern-count-one": "{0} L☉",
4460
- "unitPattern-count-other": "{0} L☉"
4461
- },
4462
- "mass-metric-ton": {
4463
- "displayName": "t",
4464
- "unitPattern-count-one": "{0} t",
4465
- "unitPattern-count-other": "{0} t"
4466
- },
4467
- "mass-kilogram": {
4468
- "displayName": "kg",
4469
- "unitPattern-count-one": "{0} kg",
4470
- "unitPattern-count-other": "{0} kg",
4471
- "perUnitPattern": "{0}/kg"
4472
- },
4473
- "mass-gram": {
4474
- "displayName": "gramas",
4475
- "unitPattern-count-one": "{0} g",
4476
- "unitPattern-count-other": "{0} g",
4477
- "perUnitPattern": "{0}/g"
4478
- },
4479
- "mass-milligram": {
4480
- "displayName": "mg",
4481
- "unitPattern-count-one": "{0} mg",
4482
- "unitPattern-count-other": "{0} mg"
4483
- },
4484
- "mass-microgram": {
4485
- "displayName": "µg",
4486
- "unitPattern-count-one": "{0} µg",
4487
- "unitPattern-count-other": "{0} µg"
4488
- },
4489
- "mass-ton": {
4490
- "displayName": "toneladas",
4491
- "unitPattern-count-one": "{0} ton",
4492
- "unitPattern-count-other": "{0} ton"
4493
- },
4494
- "mass-stone": {
4495
- "displayName": "stones",
4496
- "unitPattern-count-other": "{0} st"
4497
- },
4498
- "mass-pound": {
4499
- "displayName": "libras",
4500
- "unitPattern-count-one": "{0} lb",
4501
- "unitPattern-count-other": "{0} lb",
4502
- "perUnitPattern": "{0}/lb"
4503
- },
4504
- "mass-ounce": {
4505
- "displayName": "oz",
4506
- "unitPattern-count-one": "{0} oz",
4507
- "unitPattern-count-other": "{0} oz",
4508
- "perUnitPattern": "{0}/oz"
4509
- },
4510
- "mass-ounce-troy": {
4511
- "displayName": "oz troy",
4512
- "unitPattern-count-one": "{0} oz t",
4513
- "unitPattern-count-other": "{0} oz t"
4514
- },
4515
- "mass-carat": {
4516
- "displayName": "quilates",
4517
- "unitPattern-count-one": "{0} ct",
4518
- "unitPattern-count-other": "{0} ct"
4519
- },
4520
- "mass-dalton": {
4521
- "displayName": "daltons",
4522
- "unitPattern-count-one": "{0} Da",
4523
- "unitPattern-count-other": "{0} Da"
4524
- },
4525
- "mass-earth-mass": {
4526
- "displayName": "Massas da Terra",
4527
- "unitPattern-count-one": "{0} M⊕",
4528
- "unitPattern-count-other": "{0} M⊕"
4529
- },
4530
- "mass-solar-mass": {
4531
- "displayName": "massas solares",
4532
- "unitPattern-count-one": "{0} M☉",
4533
- "unitPattern-count-other": "{0} M☉"
4534
- },
4535
- "power-gigawatt": {
4536
- "displayName": "GW",
4537
- "unitPattern-count-one": "{0} GW",
4538
- "unitPattern-count-other": "{0} GW"
4539
- },
4540
- "power-megawatt": {
4541
- "displayName": "MW",
4542
- "unitPattern-count-one": "{0} MW",
4543
- "unitPattern-count-other": "{0} MW"
4544
- },
4545
- "power-kilowatt": {
4546
- "displayName": "kW",
4547
- "unitPattern-count-one": "{0} kW",
4548
- "unitPattern-count-other": "{0} kW"
4549
- },
4550
- "power-watt": {
4551
- "displayName": "watts",
4552
- "unitPattern-count-one": "{0} W",
4553
- "unitPattern-count-other": "{0} W"
4554
- },
4555
- "power-milliwatt": {
4556
- "displayName": "mW",
4557
- "unitPattern-count-one": "{0} mW",
4558
- "unitPattern-count-other": "{0} mW"
4559
- },
4560
- "power-horsepower": {
4561
- "displayName": "cv",
4562
- "unitPattern-count-one": "{0} cv",
4563
- "unitPattern-count-other": "{0} cv"
4564
- },
4565
- "pressure-hectopascal": {
4566
- "displayName": "hPa",
4567
- "unitPattern-count-one": "{0} hPa",
4568
- "unitPattern-count-other": "{0} hPa"
4569
- },
4570
- "pressure-millimeter-of-mercury": {
4571
- "displayName": "mm Hg",
4572
- "unitPattern-count-one": "{0} mm Hg",
4573
- "unitPattern-count-other": "{0} mm Hg"
4574
- },
4575
- "pressure-pound-per-square-inch": {
4576
- "displayName": "psi",
4577
- "unitPattern-count-one": "{0} psi",
4578
- "unitPattern-count-other": "{0} psi"
4579
- },
4580
- "pressure-inch-hg": {
4581
- "displayName": "in Hg",
4582
- "unitPattern-count-one": "{0} inHg",
4583
- "unitPattern-count-other": "{0} inHg"
4584
- },
4585
- "pressure-millibar": {
4586
- "displayName": "mbar",
4587
- "unitPattern-count-one": "{0} mb",
4588
- "unitPattern-count-other": "{0} mb"
4589
- },
4590
- "pressure-atmosphere": {
4591
- "displayName": "atm",
4592
- "unitPattern-count-one": "{0} atm",
4593
- "unitPattern-count-other": "{0} atm"
4594
- },
4595
- "pressure-kilopascal": {
4596
- "displayName": "kPa",
4597
- "unitPattern-count-one": "{0} kPa",
4598
- "unitPattern-count-other": "{0} kPa"
4599
- },
4600
- "pressure-megapascal": {
4601
- "displayName": "MPa",
4602
- "unitPattern-count-one": "{0} MPa",
4603
- "unitPattern-count-other": "{0} MPa"
4604
- },
4605
- "speed-kilometer-per-hour": {
4606
- "displayName": "km/h",
4607
- "unitPattern-count-one": "{0} km/h",
4608
- "unitPattern-count-other": "{0} km/h"
4609
- },
4610
- "speed-meter-per-second": {
4611
- "displayName": "m/s",
4612
- "unitPattern-count-one": "{0} m/s",
4613
- "unitPattern-count-other": "{0} m/s"
4614
- },
4615
- "speed-mile-per-hour": {
4616
- "displayName": "mi/h",
4617
- "unitPattern-count-one": "{0} mi/h",
4618
- "unitPattern-count-other": "{0} mi/h"
4619
- },
4620
- "speed-knot": {
4621
- "displayName": "nó",
4622
- "unitPattern-count-one": "{0} nó",
4623
- "unitPattern-count-other": "{0} nós"
4624
- },
4625
- "temperature-generic": {
4626
- "displayName": "°",
4627
- "unitPattern-count-other": "{0}°"
4628
- },
4629
- "temperature-celsius": {
4630
- "displayName": "graus Celsius",
4631
- "unitPattern-count-one": "{0} °C",
4632
- "unitPattern-count-other": "{0} °C"
4633
- },
4634
- "temperature-fahrenheit": {
4635
- "displayName": "graus Fahrenheit",
4636
- "unitPattern-count-one": "{0} °F",
4637
- "unitPattern-count-other": "{0} °F"
4638
- },
4639
- "temperature-kelvin": {
4640
- "displayName": "K",
4641
- "unitPattern-count-one": "{0} K",
4642
- "unitPattern-count-other": "{0} K"
4643
- },
4644
- "torque-pound-foot": {
4645
- "displayName": "lbf⋅ft",
4646
- "unitPattern-count-one": "{0} lbf⋅ft",
4647
- "unitPattern-count-other": "{0} lbf⋅ft"
4648
- },
4649
- "torque-newton-meter": {
4650
- "displayName": "N⋅m",
4651
- "unitPattern-count-one": "{0} N⋅m",
4652
- "unitPattern-count-other": "{0} N⋅m"
4653
- },
4654
- "volume-cubic-kilometer": {
4655
- "displayName": "km³",
4656
- "unitPattern-count-one": "{0} km³",
4657
- "unitPattern-count-other": "{0} km³"
4658
- },
4659
- "volume-cubic-meter": {
4660
- "displayName": "m³",
4661
- "unitPattern-count-one": "{0} m³",
4662
- "unitPattern-count-other": "{0} m³",
4663
- "perUnitPattern": "{0}/m³"
4664
- },
4665
- "volume-cubic-centimeter": {
4666
- "displayName": "cm³",
4667
- "unitPattern-count-one": "{0} cm³",
4668
- "unitPattern-count-other": "{0} cm³",
4669
- "perUnitPattern": "{0}/cm³"
4670
- },
4671
- "volume-cubic-mile": {
4672
- "displayName": "mi³",
4673
- "unitPattern-count-one": "{0} mi³",
4674
- "unitPattern-count-other": "{0} mi³"
4675
- },
4676
- "volume-cubic-yard": {
4677
- "displayName": "yd³",
4678
- "unitPattern-count-one": "{0} yd³",
4679
- "unitPattern-count-other": "{0} yd³"
4680
- },
4681
- "volume-cubic-foot": {
4682
- "displayName": "ft³",
4683
- "unitPattern-count-one": "{0} ft³",
4684
- "unitPattern-count-other": "{0} ft³"
4685
- },
4686
- "volume-cubic-inch": {
4687
- "displayName": "in³",
4688
- "unitPattern-count-one": "{0} in³",
4689
- "unitPattern-count-other": "{0} in³"
4690
- },
4691
- "volume-megaliter": {
4692
- "displayName": "ML",
4693
- "unitPattern-count-one": "{0} ML",
4694
- "unitPattern-count-other": "{0} ML"
4695
- },
4696
- "volume-hectoliter": {
4697
- "displayName": "hl",
4698
- "unitPattern-count-one": "{0} hl",
4699
- "unitPattern-count-other": "{0} hl"
4700
- },
4701
- "volume-liter": {
4702
- "displayName": "litros",
4703
- "unitPattern-count-one": "{0} l",
4704
- "unitPattern-count-other": "{0} l",
4705
- "perUnitPattern": "{0}/l"
4706
- },
4707
- "volume-deciliter": {
4708
- "displayName": "dl",
4709
- "unitPattern-count-one": "{0} dl",
4710
- "unitPattern-count-other": "{0} dl"
4711
- },
4712
- "volume-centiliter": {
4713
- "displayName": "cl",
4714
- "unitPattern-count-one": "{0} cl",
4715
- "unitPattern-count-other": "{0} cl"
4716
- },
4717
- "volume-milliliter": {
4718
- "displayName": "ml",
4719
- "unitPattern-count-one": "{0} ml",
4720
- "unitPattern-count-other": "{0} ml"
4721
- },
4722
- "volume-pint-metric": {
4723
- "displayName": "ptm",
4724
- "unitPattern-count-one": "{0} ptm",
4725
- "unitPattern-count-other": "{0} ptm"
4726
- },
4727
- "volume-cup-metric": {
4728
- "displayName": "chám",
4729
- "unitPattern-count-one": "{0} chám",
4730
- "unitPattern-count-other": "{0} chám"
4731
- },
4732
- "volume-acre-foot": {
4733
- "displayName": "ac ft",
4734
- "unitPattern-count-one": "{0} ac ft",
4735
- "unitPattern-count-other": "{0} ac ft"
4736
- },
4737
- "volume-bushel": {
4738
- "displayName": "bu",
4739
- "unitPattern-count-other": "{0} bu"
4740
- },
4741
- "volume-gallon": {
4742
- "displayName": "gal",
4743
- "unitPattern-count-one": "{0} gal",
4744
- "unitPattern-count-other": "{0} gal",
4745
- "perUnitPattern": "{0}/gal"
4746
- },
4747
- "volume-gallon-imperial": {
4748
- "displayName": "gal imp.",
4749
- "unitPattern-count-one": "{0} gal imp.",
4750
- "unitPattern-count-other": "{0} gal imp.",
4751
- "perUnitPattern": "{0}/gal imp."
4752
- },
4753
- "volume-quart": {
4754
- "displayName": "qts",
4755
- "unitPattern-count-one": "{0} qt",
4756
- "unitPattern-count-other": "{0} qt"
4757
- },
4758
- "volume-pint": {
4759
- "displayName": "pints",
4760
- "unitPattern-count-one": "{0} pt",
4761
- "unitPattern-count-other": "{0} pt"
4762
- },
4763
- "volume-cup": {
4764
- "displayName": "chávenas",
4765
- "unitPattern-count-one": "{0} cháv.",
4766
- "unitPattern-count-other": "{0} cháv."
4767
- },
4768
- "volume-fluid-ounce": {
4769
- "displayName": "fl oz",
4770
- "unitPattern-count-one": "{0} fl oz",
4771
- "unitPattern-count-other": "{0} fl oz"
4772
- },
4773
- "volume-fluid-ounce-imperial": {
4774
- "displayName": "onças fluidas imp.",
4775
- "unitPattern-count-one": "{0} onça fluida imp.",
4776
- "unitPattern-count-other": "{0} onças fluidas imp."
4777
- },
4778
- "volume-tablespoon": {
4779
- "displayName": "cs",
4780
- "unitPattern-count-one": "{0} cs",
4781
- "unitPattern-count-other": "{0} cs"
4782
- },
4783
- "volume-teaspoon": {
4784
- "displayName": "cc",
4785
- "unitPattern-count-one": "{0} cc",
4786
- "unitPattern-count-other": "{0} cc"
4787
- },
4788
- "volume-barrel": {
4789
- "displayName": "barril",
4790
- "unitPattern-count-one": "{0} bbl",
4791
- "unitPattern-count-other": "{0} bbl"
4792
- },
4793
- "coordinateUnit": {
4794
- "displayName": "direção",
4795
- "east": "{0} E",
4796
- "north": "{0} N",
4797
- "south": "{0} S",
4798
- "west": "{0} O"
4799
- }
4800
- }
4801
- },
4802
- "lenient-scope-number": {
4803
- "minusSign": "-‒⁻₋−➖﹣-",
4804
- "commaSign": ",،٫、︐︑﹐﹑,、",
4805
- "plusSign": "+⁺₊➕﬩﹢+"
4806
- },
4807
- "currencyFormat-sap-short": {
4808
- "1000-one": "0 mil ¤",
4809
- "1000-other": "0 mil ¤",
4810
- "10000-one": "00 mil ¤",
4811
- "10000-other": "00 mil ¤",
4812
- "100000-one": "000 mil ¤",
4813
- "100000-other": "000 mil ¤",
4814
- "1000000-one": "0 M ¤",
4815
- "1000000-other": "0 M ¤",
4816
- "10000000-one": "00 M ¤",
4817
- "10000000-other": "00 M ¤",
4818
- "100000000-one": "000 M ¤",
4819
- "100000000-other": "000 M ¤",
4820
- "1000000000-one": "0 mM ¤",
4821
- "1000000000-other": "0 mM ¤",
4822
- "10000000000-one": "00 mM ¤",
4823
- "10000000000-other": "00 mM ¤",
4824
- "100000000000-one": "000 mM ¤",
4825
- "100000000000-other": "000 mM ¤",
4826
- "1000000000000-one": "0 B ¤",
4827
- "1000000000000-other": "0 B ¤",
4828
- "10000000000000-one": "00 B ¤",
4829
- "10000000000000-other": "00 B ¤",
4830
- "100000000000000-one": "000 B ¤",
4831
- "100000000000000-other": "000 B ¤"
4832
- },
4833
- "currencyDigits": {
4834
- "ADP": 0,
4835
- "AFN": 0,
4836
- "ALL": 0,
4837
- "BHD": 3,
4838
- "BIF": 0,
4839
- "BYR": 0,
4840
- "CLF": 4,
4841
- "CLP": 0,
4842
- "DEFAULT": 2,
4843
- "DJF": 0,
4844
- "ESP": 0,
4845
- "GNF": 0,
4846
- "HUF": 0,
4847
- "IQD": 0,
4848
- "IRR": 0,
4849
- "ISK": 0,
4850
- "ITL": 0,
4851
- "JOD": 3,
4852
- "JPY": 0,
4853
- "KMF": 0,
4854
- "KPW": 0,
4855
- "KRW": 0,
4856
- "KWD": 3,
4857
- "LAK": 0,
4858
- "LBP": 0,
4859
- "LUF": 0,
4860
- "LYD": 3,
4861
- "MGA": 0,
4862
- "MGF": 0,
4863
- "MMK": 0,
4864
- "MRO": 0,
4865
- "OMR": 3,
4866
- "PYG": 0,
4867
- "RSD": 0,
4868
- "RWF": 0,
4869
- "SLL": 0,
4870
- "SOS": 0,
4871
- "STD": 0,
4872
- "SYP": 0,
4873
- "TMM": 0,
4874
- "TND": 3,
4875
- "TRL": 0,
4876
- "TWD": 0,
4877
- "UGX": 0,
4878
- "UYI": 0,
4879
- "UYW": 4,
4880
- "VND": 0,
4881
- "VUV": 0,
4882
- "XAF": 0,
4883
- "XOF": 0,
4884
- "XPF": 0,
4885
- "YER": 0,
4886
- "ZMK": 0,
4887
- "ZWD": 0
4888
- },
4889
- "plurals": {
4890
- "one": "i = 0..1"
4891
- },
4892
- "weekData-minDays": 4,
4893
- "weekData-firstDay": 0,
4894
- "weekData-weekendStart": 6,
4895
- "weekData-weekendEnd": 0,
4896
- "timeData": {
4897
- "_allowed": "H hB",
4898
- "_preferred": "H"
4899
- },
4900
- "eras-gregorian": {
4901
- "0": {
4902
- "_end": "0-12-31"
4903
- },
4904
- "1": {
4905
- "_start": "1-01-01"
4906
- }
4907
- },
4908
- "eras-islamic": {
4909
- "0": {
4910
- "_start": "622-7-15"
4911
- }
4912
- },
4913
- "eras-persian": {
4914
- "0": {
4915
- "_start": "622-01-01"
4916
- }
4917
- },
4918
- "eras-buddhist": {
4919
- "0": {
4920
- "_start": "-542-01-01"
4921
- }
4922
- },
4923
- "eras-japanese": {
4924
- "232": {
4925
- "_start": "1868-9-8"
4926
- },
4927
- "233": {
4928
- "_start": "1912-7-30"
4929
- },
4930
- "234": {
4931
- "_start": "1926-12-25"
4932
- },
4933
- "235": {
4934
- "_start": "1989-1-8"
4935
- },
4936
- "236": {
4937
- "_start": "2019-5-1"
4938
- }
4939
- }
4940
- }