@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,4973 +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": "abkhaze",
6
- "ace": "aceh",
7
- "ach": "acoli",
8
- "ada": "adangme",
9
- "ady": "adygué",
10
- "ae": "avestique",
11
- "aeb": "arabe tunisien",
12
- "af": "afrikaans",
13
- "afh": "afrihili",
14
- "agq": "aghem",
15
- "ain": "aïnou",
16
- "ak": "akan",
17
- "akk": "akkadien",
18
- "akz": "alabama",
19
- "ale": "aléoute",
20
- "aln": "guègue",
21
- "alt": "altaï du Sud",
22
- "am": "amharique",
23
- "an": "aragonais",
24
- "ang": "vieil anglais",
25
- "anp": "angika",
26
- "ar": "arabe",
27
- "ar_001": "arabe standard moderne",
28
- "arc": "araméen",
29
- "arn": "mapuche",
30
- "aro": "araona",
31
- "arp": "arapaho",
32
- "arq": "arabe algérien",
33
- "ars": "arabe najdi",
34
- "arw": "arawak",
35
- "ary": "arabe marocain",
36
- "arz": "arabe égyptien",
37
- "as": "assamais",
38
- "asa": "assou",
39
- "ase": "langue des signes américaine",
40
- "ast": "asturien",
41
- "av": "avar",
42
- "avk": "kotava",
43
- "awa": "awadhi",
44
- "ay": "aymara",
45
- "az": "azerbaïdjanais",
46
- "az_alt-short": "azéri",
47
- "ba": "bachkir",
48
- "bal": "baloutchi",
49
- "ban": "balinais",
50
- "bar": "bavarois",
51
- "bas": "bassa",
52
- "bax": "bamoun",
53
- "bbc": "batak toba",
54
- "bbj": "ghomala",
55
- "be": "biélorusse",
56
- "bej": "bedja",
57
- "bem": "bemba",
58
- "bew": "betawi",
59
- "bez": "bena",
60
- "bfd": "bafut",
61
- "bfq": "badaga",
62
- "bg": "bulgare",
63
- "bgn": "baloutchi occidental",
64
- "bho": "bhodjpouri",
65
- "bi": "bichelamar",
66
- "bik": "bicol",
67
- "bin": "bini",
68
- "bjn": "banjar",
69
- "bkm": "kom",
70
- "bla": "siksika",
71
- "bm": "bambara",
72
- "bn": "bengali",
73
- "bo": "tibétain",
74
- "bpy": "bishnupriya",
75
- "bqi": "bakhtiari",
76
- "br": "breton",
77
- "bra": "braj",
78
- "brh": "brahoui",
79
- "brx": "bodo",
80
- "bs": "bosniaque",
81
- "bss": "akoose",
82
- "bua": "bouriate",
83
- "bug": "bugi",
84
- "bum": "boulou",
85
- "byn": "bilen",
86
- "byv": "medumba",
87
- "ca": "catalan",
88
- "cad": "caddo",
89
- "car": "caribe",
90
- "cay": "cayuga",
91
- "cch": "atsam",
92
- "ccp": "changma kodha",
93
- "ce": "tchétchène",
94
- "ceb": "cebuano",
95
- "cgg": "kiga",
96
- "ch": "chamorro",
97
- "chb": "chibcha",
98
- "chg": "tchagatay",
99
- "chk": "chuuk",
100
- "chm": "mari",
101
- "chn": "chinook",
102
- "cho": "choctaw",
103
- "chp": "chipewyan",
104
- "chr": "cherokee",
105
- "chy": "cheyenne",
106
- "ckb": "kurde central",
107
- "co": "corse",
108
- "cop": "copte",
109
- "cps": "capiznon",
110
- "cr": "cri",
111
- "crh": "turc de Crimée",
112
- "crs": "créole seychellois",
113
- "cs": "tchèque",
114
- "csb": "kachoube",
115
- "cu": "slavon d’église",
116
- "cv": "tchouvache",
117
- "cy": "gallois",
118
- "da": "danois",
119
- "dak": "dakota",
120
- "dar": "dargwa",
121
- "dav": "taita",
122
- "de": "allemand",
123
- "de_AT": "allemand autrichien",
124
- "de_CH": "allemand suisse",
125
- "del": "delaware",
126
- "den": "slave",
127
- "dgr": "tlicho",
128
- "din": "dinka",
129
- "dje": "zarma",
130
- "doi": "dogri",
131
- "dsb": "bas-sorabe",
132
- "dtp": "dusun central",
133
- "dua": "douala",
134
- "dum": "moyen néerlandais",
135
- "dv": "maldivien",
136
- "dyo": "diola-fogny",
137
- "dyu": "dioula",
138
- "dz": "dzongkha",
139
- "dzg": "dazaga",
140
- "ebu": "embou",
141
- "ee": "éwé",
142
- "efi": "éfik",
143
- "egl": "émilien",
144
- "egy": "égyptien ancien",
145
- "eka": "ékadjouk",
146
- "el": "grec",
147
- "elx": "élamite",
148
- "en": "anglais",
149
- "en_AU": "anglais australien",
150
- "en_CA": "anglais canadien",
151
- "en_GB": "anglais britannique",
152
- "en_GB-alt-short": "anglais (R.-U.)",
153
- "en_US": "anglais américain",
154
- "en_US-alt-short": "anglais (É.-U.)",
155
- "enm": "moyen anglais",
156
- "eo": "espéranto",
157
- "es": "espagnol",
158
- "es_419": "espagnol d’Amérique latine",
159
- "es_ES": "espagnol d’Espagne",
160
- "es_MX": "espagnol du Mexique",
161
- "esu": "yupik central",
162
- "et": "estonien",
163
- "eu": "basque",
164
- "ewo": "ewondo",
165
- "ext": "estrémègne",
166
- "fa": "persan",
167
- "fan": "fang",
168
- "fat": "fanti",
169
- "ff": "peul",
170
- "fi": "finnois",
171
- "fil": "filipino",
172
- "fit": "finnois tornédalien",
173
- "fj": "fidjien",
174
- "fo": "féroïen",
175
- "fon": "fon",
176
- "fr": "français",
177
- "fr_CA": "français canadien",
178
- "fr_CH": "français suisse",
179
- "frc": "cajun",
180
- "frm": "moyen français",
181
- "fro": "ancien français",
182
- "frp": "francoprovençal",
183
- "frr": "frison du Nord",
184
- "frs": "frison oriental",
185
- "fur": "frioulan",
186
- "fy": "frison occidental",
187
- "ga": "irlandais",
188
- "gaa": "ga",
189
- "gag": "gagaouze",
190
- "gan": "gan",
191
- "gay": "gayo",
192
- "gba": "gbaya",
193
- "gbz": "dari zoroastrien",
194
- "gd": "gaélique écossais",
195
- "gez": "guèze",
196
- "gil": "gilbertin",
197
- "gl": "galicien",
198
- "glk": "gilaki",
199
- "gmh": "moyen haut-allemand",
200
- "gn": "guarani",
201
- "goh": "vieux haut-allemand",
202
- "gom": "konkani de Goa",
203
- "gon": "gondi",
204
- "gor": "gorontalo",
205
- "got": "gotique",
206
- "grb": "grebo",
207
- "grc": "grec ancien",
208
- "gsw": "suisse allemand",
209
- "gu": "gujarati",
210
- "guc": "wayuu",
211
- "gur": "gurenne",
212
- "guz": "gusii",
213
- "gv": "mannois",
214
- "gwi": "gwichʼin",
215
- "ha": "haoussa",
216
- "hai": "haida",
217
- "hak": "hakka",
218
- "haw": "hawaïen",
219
- "he": "hébreu",
220
- "hi": "hindi",
221
- "hif": "hindi fidjien",
222
- "hil": "hiligaynon",
223
- "hit": "hittite",
224
- "hmn": "hmong",
225
- "ho": "hiri motu",
226
- "hr": "croate",
227
- "hsb": "haut-sorabe",
228
- "hsn": "xiang",
229
- "ht": "créole haïtien",
230
- "hu": "hongrois",
231
- "hup": "hupa",
232
- "hy": "arménien",
233
- "hz": "héréro",
234
- "ia": "interlingua",
235
- "iba": "iban",
236
- "ibb": "ibibio",
237
- "id": "indonésien",
238
- "ie": "interlingue",
239
- "ig": "igbo",
240
- "ii": "yi de Sichuan",
241
- "ik": "inupiaq",
242
- "ilo": "ilocano",
243
- "inh": "ingouche",
244
- "io": "ido",
245
- "is": "islandais",
246
- "it": "italien",
247
- "iu": "inuktitut",
248
- "izh": "ingrien",
249
- "ja": "japonais",
250
- "jam": "créole jamaïcain",
251
- "jbo": "lojban",
252
- "jgo": "ngomba",
253
- "jmc": "matchamé",
254
- "jpr": "judéo-persan",
255
- "jrb": "judéo-arabe",
256
- "jut": "jute",
257
- "jv": "javanais",
258
- "ka": "géorgien",
259
- "kaa": "karakalpak",
260
- "kab": "kabyle",
261
- "kac": "kachin",
262
- "kaj": "jju",
263
- "kam": "kamba",
264
- "kaw": "kawi",
265
- "kbd": "kabarde",
266
- "kbl": "kanembou",
267
- "kcg": "tyap",
268
- "kde": "makondé",
269
- "kea": "capverdien",
270
- "ken": "kenyang",
271
- "kfo": "koro",
272
- "kg": "kongo",
273
- "kgp": "caingangue",
274
- "kha": "khasi",
275
- "kho": "khotanais",
276
- "khq": "koyra chiini",
277
- "khw": "khowar",
278
- "ki": "kikuyu",
279
- "kiu": "kirmanjki",
280
- "kj": "kuanyama",
281
- "kk": "kazakh",
282
- "kkj": "kako",
283
- "kl": "kalaallisut",
284
- "kln": "kalendjin",
285
- "km": "khmer",
286
- "kmb": "kimboundou",
287
- "kn": "kannada",
288
- "ko": "coréen",
289
- "koi": "komi-permiak",
290
- "kok": "konkani",
291
- "kos": "kosraéen",
292
- "kpe": "kpellé",
293
- "kr": "kanouri",
294
- "krc": "karatchaï balkar",
295
- "kri": "krio",
296
- "krj": "kinaray-a",
297
- "krl": "carélien",
298
- "kru": "kouroukh",
299
- "ks": "kashmiri",
300
- "ksb": "chambala",
301
- "ksf": "bafia",
302
- "ksh": "kölsch",
303
- "ku": "kurde",
304
- "kum": "koumyk",
305
- "kut": "kutenai",
306
- "kv": "komi",
307
- "kw": "cornique",
308
- "ky": "kirghize",
309
- "la": "latin",
310
- "lad": "ladino",
311
- "lag": "langi",
312
- "lah": "lahnda",
313
- "lam": "lamba",
314
- "lb": "luxembourgeois",
315
- "lez": "lezghien",
316
- "lfn": "lingua franca nova",
317
- "lg": "ganda",
318
- "li": "limbourgeois",
319
- "lij": "ligure",
320
- "liv": "live",
321
- "lkt": "lakota",
322
- "lmo": "lombard",
323
- "ln": "lingala",
324
- "lo": "lao",
325
- "lol": "mongo",
326
- "lou": "créole louisianais",
327
- "loz": "lozi",
328
- "lrc": "lori du Nord",
329
- "lt": "lituanien",
330
- "ltg": "latgalien",
331
- "lu": "luba-katanga",
332
- "lua": "luba-kasaï (ciluba)",
333
- "lui": "luiseño",
334
- "lun": "lunda",
335
- "luo": "luo",
336
- "lus": "lushaï",
337
- "luy": "luyia",
338
- "lv": "letton",
339
- "lzh": "chinois classique",
340
- "lzz": "laze",
341
- "mad": "madurais",
342
- "maf": "mafa",
343
- "mag": "magahi",
344
- "mai": "maïthili",
345
- "mak": "makassar",
346
- "man": "mandingue",
347
- "mas": "maasaï",
348
- "mde": "maba",
349
- "mdf": "mokcha",
350
- "mdr": "mandar",
351
- "men": "mendé",
352
- "mer": "meru",
353
- "mfe": "créole mauricien",
354
- "mg": "malgache",
355
- "mga": "moyen irlandais",
356
- "mgh": "makhuwa-meetto",
357
- "mgo": "meta’",
358
- "mh": "marshallais",
359
- "mi": "maori",
360
- "mic": "micmac",
361
- "min": "minangkabau",
362
- "mk": "macédonien",
363
- "ml": "malayalam",
364
- "mn": "mongol",
365
- "mnc": "mandchou",
366
- "mni": "manipuri",
367
- "moh": "mohawk",
368
- "mos": "moré",
369
- "mr": "marathe",
370
- "mrj": "mari occidental",
371
- "ms": "malais",
372
- "mt": "maltais",
373
- "mua": "moundang",
374
- "mul": "multilingue",
375
- "mus": "creek",
376
- "mwl": "mirandais",
377
- "mwr": "marwari",
378
- "mwv": "mentawai",
379
- "my": "birman",
380
- "mye": "myènè",
381
- "myv": "erzya",
382
- "mzn": "mazandérani",
383
- "na": "nauruan",
384
- "nan": "minnan",
385
- "nap": "napolitain",
386
- "naq": "nama",
387
- "nb": "norvégien bokmål",
388
- "nd": "ndébélé du Nord",
389
- "nds": "bas allemand",
390
- "nds_NL": "bas saxon",
391
- "ne": "népalais",
392
- "new": "newari",
393
- "ng": "ndonga",
394
- "nia": "niha",
395
- "niu": "niuéen",
396
- "njo": "ao naga",
397
- "nl": "néerlandais",
398
- "nl_BE": "flamand",
399
- "nmg": "kwasio",
400
- "nn": "norvégien nynorsk",
401
- "nnh": "ngiemboon",
402
- "no": "norvégien",
403
- "nog": "nogaï",
404
- "non": "vieux norrois",
405
- "nov": "novial",
406
- "nqo": "n’ko",
407
- "nr": "ndébélé du Sud",
408
- "nso": "sotho du Nord",
409
- "nus": "nuer",
410
- "nv": "navajo",
411
- "nwc": "newari classique",
412
- "ny": "chewa",
413
- "nym": "nyamwezi",
414
- "nyn": "nkole",
415
- "nyo": "nyoro",
416
- "nzi": "nzema",
417
- "oc": "occitan",
418
- "oj": "ojibwa",
419
- "om": "oromo",
420
- "or": "odia",
421
- "os": "ossète",
422
- "osa": "osage",
423
- "ota": "turc ottoman",
424
- "pa": "pendjabi",
425
- "pag": "pangasinan",
426
- "pal": "pahlavi",
427
- "pam": "pampangan",
428
- "pap": "papiamento",
429
- "pau": "palauan",
430
- "pcd": "picard",
431
- "pcm": "pidgin nigérian",
432
- "pdc": "allemand de Pennsylvanie",
433
- "pdt": "bas allemand mennonite",
434
- "peo": "vieux perse",
435
- "pfl": "palatin",
436
- "phn": "phénicien",
437
- "pi": "pali",
438
- "pl": "polonais",
439
- "pms": "piémontais",
440
- "pnt": "pontique",
441
- "pon": "pohnpei",
442
- "prg": "prussien",
443
- "pro": "ancien occitan",
444
- "ps": "pachto",
445
- "ps_alt-variant": "pashto",
446
- "pt": "portugais",
447
- "pt_BR": "portugais brésilien",
448
- "pt_PT": "portugais européen",
449
- "qu": "quechua",
450
- "quc": "k’iche’",
451
- "qug": "quichua du Haut-Chimborazo",
452
- "raj": "rajasthani",
453
- "rap": "rapanui",
454
- "rar": "rarotonga",
455
- "rgn": "romagnol",
456
- "rif": "rifain",
457
- "rm": "romanche",
458
- "rn": "roundi",
459
- "ro": "roumain",
460
- "ro_MD": "moldave",
461
- "rof": "rombo",
462
- "rom": "romani",
463
- "root": "racine",
464
- "rtm": "rotuman",
465
- "ru": "russe",
466
- "rue": "ruthène",
467
- "rug": "roviana",
468
- "rup": "aroumain",
469
- "rw": "kinyarwanda",
470
- "rwk": "rwa",
471
- "sa": "sanskrit",
472
- "sad": "sandawe",
473
- "sah": "iakoute",
474
- "sam": "araméen samaritain",
475
- "saq": "samburu",
476
- "sas": "sasak",
477
- "sat": "santali",
478
- "saz": "saurashtra",
479
- "sba": "ngambay",
480
- "sbp": "sangu",
481
- "sc": "sarde",
482
- "scn": "sicilien",
483
- "sco": "écossais",
484
- "sd": "sindhi",
485
- "sdc": "sarde sassarais",
486
- "sdh": "kurde méridional",
487
- "se": "same du Nord",
488
- "see": "seneca",
489
- "seh": "cisena",
490
- "sei": "seri",
491
- "sel": "selkoupe",
492
- "ses": "koyraboro senni",
493
- "sg": "sango",
494
- "sga": "vieil irlandais",
495
- "sgs": "samogitien",
496
- "sh": "serbo-croate",
497
- "shi": "chleuh",
498
- "shn": "shan",
499
- "shu": "arabe tchadien",
500
- "si": "cingalais",
501
- "sid": "sidamo",
502
- "sk": "slovaque",
503
- "sl": "slovène",
504
- "sli": "bas-silésien",
505
- "sly": "selayar",
506
- "sm": "samoan",
507
- "sma": "same du Sud",
508
- "smj": "same de Lule",
509
- "smn": "sami d’Inari",
510
- "sms": "same skolt",
511
- "sn": "shona",
512
- "snk": "soninké",
513
- "so": "somali",
514
- "sog": "sogdien",
515
- "sq": "albanais",
516
- "sr": "serbe",
517
- "srn": "sranan tongo",
518
- "srr": "sérère",
519
- "ss": "swati",
520
- "ssy": "saho",
521
- "st": "sotho du Sud",
522
- "stq": "saterlandais",
523
- "su": "soundanais",
524
- "suk": "soukouma",
525
- "sus": "soussou",
526
- "sux": "sumérien",
527
- "sv": "suédois",
528
- "sw": "swahili",
529
- "sw_CD": "swahili congolais",
530
- "swb": "comorien",
531
- "syc": "syriaque classique",
532
- "syr": "syriaque",
533
- "szl": "silésien",
534
- "ta": "tamoul",
535
- "tcy": "toulou",
536
- "te": "télougou",
537
- "tem": "timné",
538
- "teo": "teso",
539
- "ter": "tereno",
540
- "tet": "tétoum",
541
- "tg": "tadjik",
542
- "th": "thaï",
543
- "ti": "tigrigna",
544
- "tig": "tigré",
545
- "tiv": "tiv",
546
- "tk": "turkmène",
547
- "tkl": "tokelau",
548
- "tkr": "tsakhour",
549
- "tl": "tagalog",
550
- "tlh": "klingon",
551
- "tli": "tlingit",
552
- "tly": "talysh",
553
- "tmh": "tamacheq",
554
- "tn": "tswana",
555
- "to": "tongien",
556
- "tog": "tonga nyasa",
557
- "tpi": "tok pisin",
558
- "tr": "turc",
559
- "tru": "turoyo",
560
- "trv": "taroko",
561
- "ts": "tsonga",
562
- "tsd": "tsakonien",
563
- "tsi": "tsimshian",
564
- "tt": "tatar",
565
- "ttt": "tati caucasien",
566
- "tum": "tumbuka",
567
- "tvl": "tuvalu",
568
- "tw": "twi",
569
- "twq": "tasawaq",
570
- "ty": "tahitien",
571
- "tyv": "touvain",
572
- "tzm": "tamazight",
573
- "udm": "oudmourte",
574
- "ug": "ouïghour",
575
- "ug_alt-variant": "ouïghour",
576
- "uga": "ougaritique",
577
- "uk": "ukrainien",
578
- "umb": "umbundu",
579
- "und": "langue indéterminée",
580
- "ur": "ourdou",
581
- "uz": "ouzbek",
582
- "vai": "vaï",
583
- "ve": "venda",
584
- "vec": "vénitien",
585
- "vep": "vepse",
586
- "vi": "vietnamien",
587
- "vls": "flamand occidental",
588
- "vmf": "franconien du Main",
589
- "vo": "volapük",
590
- "vot": "vote",
591
- "vro": "võro",
592
- "vun": "vunjo",
593
- "wa": "wallon",
594
- "wae": "walser",
595
- "wal": "walamo",
596
- "war": "waray",
597
- "was": "washo",
598
- "wbp": "warlpiri",
599
- "wo": "wolof",
600
- "wuu": "wu",
601
- "xal": "kalmouk",
602
- "xh": "xhosa",
603
- "xmf": "mingrélien",
604
- "xog": "soga",
605
- "yao": "yao",
606
- "yap": "yapois",
607
- "yav": "yangben",
608
- "ybb": "yemba",
609
- "yi": "yiddish",
610
- "yo": "yoruba",
611
- "yrl": "nheengatou",
612
- "yue": "cantonais",
613
- "za": "zhuang",
614
- "zap": "zapotèque",
615
- "zbl": "symboles Bliss",
616
- "zea": "zélandais",
617
- "zen": "zenaga",
618
- "zgh": "amazighe standard marocain",
619
- "zh": "chinois",
620
- "zh_Hans": "chinois simplifié",
621
- "zh_Hant": "chinois traditionnel",
622
- "zu": "zoulou",
623
- "zun": "zuñi",
624
- "zxx": "sans contenu linguistique",
625
- "zza": "zazaki"
626
- },
627
- "scripts": {
628
- "Adlm": "Adlm",
629
- "Aghb": "Aghb",
630
- "Ahom": "Ahom",
631
- "Arab": "arabe",
632
- "Arab-alt-variant": "arabo-persan",
633
- "Armi": "araméen impérial",
634
- "Armn": "arménien",
635
- "Avst": "avestique",
636
- "Bali": "balinais",
637
- "Bamu": "Bamu",
638
- "Bass": "Bass",
639
- "Batk": "batak",
640
- "Beng": "bengali",
641
- "Bhks": "Bhks",
642
- "Blis": "symboles Bliss",
643
- "Bopo": "bopomofo",
644
- "Brah": "brâhmî",
645
- "Brai": "braille",
646
- "Bugi": "bouguis",
647
- "Buhd": "bouhide",
648
- "Cakm": "chakma",
649
- "Cans": "syllabaire autochtone canadien unifié",
650
- "Cari": "carien",
651
- "Cham": "cham",
652
- "Cher": "cherokee",
653
- "Cirt": "cirth",
654
- "Copt": "copte",
655
- "Cprt": "syllabaire chypriote",
656
- "Cyrl": "cyrillique",
657
- "Cyrs": "cyrillique (variante slavonne)",
658
- "Deva": "devanagari",
659
- "Dogr": "Dogr",
660
- "Dsrt": "déséret",
661
- "Dupl": "Dupl",
662
- "Egyd": "démotique égyptien",
663
- "Egyh": "hiératique égyptien",
664
- "Egyp": "hiéroglyphes égyptiens",
665
- "Elba": "Elba",
666
- "Elym": "élymaïque",
667
- "Ethi": "éthiopique",
668
- "Geok": "géorgien khoutsouri",
669
- "Geor": "géorgien",
670
- "Glag": "glagolitique",
671
- "Gong": "Gong",
672
- "Gonm": "Gonm",
673
- "Goth": "gotique",
674
- "Gran": "Gran",
675
- "Grek": "grec",
676
- "Gujr": "gujarati",
677
- "Guru": "gourmoukhî",
678
- "Hanb": "hanb",
679
- "Hang": "hangûl",
680
- "Hani": "sinogrammes",
681
- "Hano": "hanounóo",
682
- "Hans": "idéogrammes han simplifiés",
683
- "Hans-alt-stand-alone": "caractères chinois simplifiés",
684
- "Hant": "idéogrammes han traditionnels",
685
- "Hant-alt-stand-alone": "caractères chinois traditionnels",
686
- "Hatr": "Hatr",
687
- "Hebr": "hébreu",
688
- "Hira": "hiragana",
689
- "Hluw": "Hluw",
690
- "Hmng": "pahawh hmong",
691
- "Hmnp": "nyiakeng puachue hmong",
692
- "Hrkt": "syllabaires japonais",
693
- "Hung": "ancien hongrois",
694
- "Inds": "indus",
695
- "Ital": "ancien italique",
696
- "Jamo": "jamo",
697
- "Java": "javanais",
698
- "Jpan": "japonais",
699
- "Kali": "kayah li",
700
- "Kana": "katakana",
701
- "Khar": "kharochthî",
702
- "Khmr": "khmer",
703
- "Khoj": "Khoj",
704
- "Knda": "kannara",
705
- "Kore": "coréen",
706
- "Kthi": "kaithî",
707
- "Lana": "lanna",
708
- "Laoo": "lao",
709
- "Latf": "latin (variante brisée)",
710
- "Latg": "latin (variante gaélique)",
711
- "Latn": "latin",
712
- "Lepc": "lepcha",
713
- "Limb": "limbou",
714
- "Lina": "linéaire A",
715
- "Linb": "linéaire B",
716
- "Lisu": "Lisu",
717
- "Lyci": "lycien",
718
- "Lydi": "lydien",
719
- "Mahj": "Mahj",
720
- "Maka": "Maka",
721
- "Mand": "mandéen",
722
- "Mani": "manichéen",
723
- "Marc": "Marc",
724
- "Maya": "hiéroglyphes mayas",
725
- "Medf": "Medf",
726
- "Mend": "Mend",
727
- "Merc": "Merc",
728
- "Mero": "méroïtique",
729
- "Mlym": "malayalam",
730
- "Modi": "Modi",
731
- "Mong": "mongol",
732
- "Moon": "moon",
733
- "Mroo": "Mroo",
734
- "Mtei": "meitei mayek",
735
- "Mult": "Mult",
736
- "Mymr": "birman",
737
- "Nand": "nandinagari",
738
- "Narb": "Narb",
739
- "Nbat": "Nbat",
740
- "Newa": "Newa",
741
- "Nkoo": "n’ko",
742
- "Nshu": "Nshu",
743
- "Ogam": "ogam",
744
- "Olck": "ol tchiki",
745
- "Orkh": "orkhon",
746
- "Orya": "odia",
747
- "Osge": "Osge",
748
- "Osma": "osmanais",
749
- "Palm": "Palm",
750
- "Pauc": "Pauc",
751
- "Perm": "ancien permien",
752
- "Phag": "phags pa",
753
- "Phli": "pehlevi des inscriptions",
754
- "Phlp": "pehlevi des psautiers",
755
- "Phlv": "pehlevi des livres",
756
- "Phnx": "phénicien",
757
- "Plrd": "phonétique de Pollard",
758
- "Prti": "parthe des inscriptions",
759
- "Qaag": "Qaag",
760
- "Rjng": "rejang",
761
- "Rohg": "Rohg",
762
- "Roro": "rongorongo",
763
- "Runr": "runique",
764
- "Samr": "samaritain",
765
- "Sara": "sarati",
766
- "Sarb": "Sarb",
767
- "Saur": "saurashtra",
768
- "Sgnw": "écriture des signes",
769
- "Shaw": "shavien",
770
- "Shrd": "Shrd",
771
- "Sidd": "Sidd",
772
- "Sind": "Sind",
773
- "Sinh": "cingalais",
774
- "Sogd": "Sogd",
775
- "Sogo": "Sogo",
776
- "Sora": "Sora",
777
- "Soyo": "Soyo",
778
- "Sund": "sundanais",
779
- "Sylo": "sylotî nâgrî",
780
- "Syrc": "syriaque",
781
- "Syre": "syriaque estranghélo",
782
- "Syrj": "syriaque occidental",
783
- "Syrn": "syriaque oriental",
784
- "Tagb": "tagbanoua",
785
- "Takr": "Takr",
786
- "Tale": "taï-le",
787
- "Talu": "nouveau taï-lue",
788
- "Taml": "tamoul",
789
- "Tang": "Tang",
790
- "Tavt": "taï viêt",
791
- "Telu": "télougou",
792
- "Teng": "tengwar",
793
- "Tfng": "tifinagh",
794
- "Tglg": "tagal",
795
- "Thaa": "thâna",
796
- "Thai": "thaï",
797
- "Tibt": "tibétain",
798
- "Tirh": "Tirh",
799
- "Ugar": "ougaritique",
800
- "Vaii": "vaï",
801
- "Visp": "parole visible",
802
- "Wara": "Wara",
803
- "Wcho": "wantcho",
804
- "Xpeo": "cunéiforme persépolitain",
805
- "Xsux": "cunéiforme suméro-akkadien",
806
- "Yiii": "yi",
807
- "Zanb": "Zanb",
808
- "Zinh": "hérité",
809
- "Zmth": "notation mathématique",
810
- "Zsye": "zsye",
811
- "Zsym": "symboles",
812
- "Zxxx": "non écrit",
813
- "Zyyy": "commun",
814
- "Zzzz": "écriture inconnue"
815
- },
816
- "territories": {
817
- "142": "Asie",
818
- "143": "Asie centrale",
819
- "145": "Asie occidentale",
820
- "150": "Europe",
821
- "151": "Europe orientale",
822
- "154": "Europe septentrionale",
823
- "155": "Europe occidentale",
824
- "202": "Afrique subsaharienne",
825
- "419": "Amérique latine",
826
- "001": "Monde",
827
- "002": "Afrique",
828
- "003": "Amérique du Nord",
829
- "005": "Amérique du Sud",
830
- "009": "Océanie",
831
- "011": "Afrique occidentale",
832
- "013": "Amérique centrale",
833
- "014": "Afrique orientale",
834
- "015": "Afrique septentrionale",
835
- "017": "Afrique centrale",
836
- "018": "Afrique australe",
837
- "019": "Amériques",
838
- "021": "Amérique septentrionale",
839
- "029": "Caraïbes",
840
- "030": "Asie orientale",
841
- "034": "Asie du Sud",
842
- "035": "Asie du Sud-Est",
843
- "039": "Europe méridionale",
844
- "053": "Australasie",
845
- "054": "Mélanésie",
846
- "057": "région micronésienne",
847
- "061": "Polynésie",
848
- "AC": "île de l’Ascension",
849
- "AD": "Andorre",
850
- "AE": "Émirats arabes unis",
851
- "AF": "Afghanistan",
852
- "AG": "Antigua-et-Barbuda",
853
- "AI": "Anguilla",
854
- "AL": "Albanie",
855
- "AM": "Arménie",
856
- "AO": "Angola",
857
- "AQ": "Antarctique",
858
- "AR": "Argentine",
859
- "AS": "Samoa américaines",
860
- "AT": "Autriche",
861
- "AU": "Australie",
862
- "AW": "Aruba",
863
- "AX": "îles d’Åland",
864
- "AZ": "Azerbaïdjan",
865
- "BA": "Bosnie-Herzégovine",
866
- "BB": "Barbade",
867
- "BD": "Bangladesh",
868
- "BE": "Belgique",
869
- "BF": "Burkina Faso",
870
- "BG": "Bulgarie",
871
- "BH": "Bahreïn",
872
- "BI": "Burundi",
873
- "BJ": "Bénin",
874
- "BL": "Saint-Barthélemy",
875
- "BM": "Bermudes",
876
- "BN": "Brunei",
877
- "BO": "Bolivie",
878
- "BQ": "Pays-Bas caribéens",
879
- "BR": "Brésil",
880
- "BS": "Bahamas",
881
- "BT": "Bhoutan",
882
- "BV": "île Bouvet",
883
- "BW": "Botswana",
884
- "BY": "Bélarus",
885
- "BZ": "Belize",
886
- "CA": "Canada",
887
- "CC": "îles Cocos (Keeling)",
888
- "CD": "Congo-Kinshasa",
889
- "CD-alt-variant": "Congo (RDC)",
890
- "CF": "République centrafricaine",
891
- "CG": "Congo-Brazzaville",
892
- "CG-alt-variant": "République du Congo",
893
- "CH": "Suisse",
894
- "CI": "Côte d’Ivoire",
895
- "CI-alt-variant": "République de Côte d’Ivoire",
896
- "CK": "îles Cook",
897
- "CL": "Chili",
898
- "CM": "Cameroun",
899
- "CN": "Chine",
900
- "CO": "Colombie",
901
- "CP": "Île Clipperton",
902
- "CR": "Costa Rica",
903
- "CU": "Cuba",
904
- "CV": "Cap-Vert",
905
- "CW": "Curaçao",
906
- "CX": "île Christmas",
907
- "CY": "Chypre",
908
- "CZ": "Tchéquie",
909
- "CZ-alt-variant": "République tchèque",
910
- "DE": "Allemagne",
911
- "DG": "Diego Garcia",
912
- "DJ": "Djibouti",
913
- "DK": "Danemark",
914
- "DM": "Dominique",
915
- "DO": "République dominicaine",
916
- "DZ": "Algérie",
917
- "EA": "Ceuta et Melilla",
918
- "EC": "Équateur",
919
- "EE": "Estonie",
920
- "EG": "Égypte",
921
- "EH": "Sahara occidental",
922
- "ER": "Érythrée",
923
- "ES": "Espagne",
924
- "ET": "Éthiopie",
925
- "EU": "Union européenne",
926
- "EZ": "zone euro",
927
- "FI": "Finlande",
928
- "FJ": "Fidji",
929
- "FK": "îles Malouines",
930
- "FK-alt-variant": "îles Falkland (Malouines)",
931
- "FM": "Micronésie",
932
- "FO": "îles Féroé",
933
- "FR": "France",
934
- "GA": "Gabon",
935
- "GB": "Royaume-Uni",
936
- "GB-alt-short": "R.-U.",
937
- "GD": "Grenade",
938
- "GE": "Géorgie",
939
- "GF": "Guyane française",
940
- "GG": "Guernesey",
941
- "GH": "Ghana",
942
- "GI": "Gibraltar",
943
- "GL": "Groenland",
944
- "GM": "Gambie",
945
- "GN": "Guinée",
946
- "GP": "Guadeloupe",
947
- "GQ": "Guinée équatoriale",
948
- "GR": "Grèce",
949
- "GS": "Géorgie du Sud et îles Sandwich du Sud",
950
- "GT": "Guatemala",
951
- "GU": "Guam",
952
- "GW": "Guinée-Bissau",
953
- "GY": "Guyana",
954
- "HK": "Hong Kong, Chine",
955
- "HK-alt-short": "Hong Kong",
956
- "HM": "îles Heard et McDonald",
957
- "HN": "Honduras",
958
- "HR": "Croatie",
959
- "HT": "Haïti",
960
- "HU": "Hongrie",
961
- "IC": "îles Canaries",
962
- "ID": "Indonésie",
963
- "IE": "Irlande",
964
- "IL": "Israël",
965
- "IM": "île de Man",
966
- "IN": "Inde",
967
- "IO": "territoire britannique de l’océan Indien",
968
- "IQ": "Irak",
969
- "IR": "Iran",
970
- "IS": "Islande",
971
- "IT": "Italie",
972
- "JE": "Jersey",
973
- "JM": "Jamaïque",
974
- "JO": "Jordanie",
975
- "JP": "Japon",
976
- "KE": "Kenya",
977
- "KG": "Kirghizistan",
978
- "KH": "Cambodge",
979
- "KI": "Kiribati",
980
- "KM": "Comores",
981
- "KN": "Saint-Christophe-et-Niévès",
982
- "KP": "Corée du Nord",
983
- "KR": "Corée du Sud",
984
- "KW": "Koweït",
985
- "KY": "Îles Caïmans",
986
- "KZ": "Kazakhstan",
987
- "LA": "Laos",
988
- "LB": "Liban",
989
- "LC": "Sainte-Lucie",
990
- "LI": "Liechtenstein",
991
- "LK": "Sri Lanka",
992
- "LR": "Libéria",
993
- "LS": "Lesotho",
994
- "LT": "Lituanie",
995
- "LU": "Luxembourg",
996
- "LV": "Lettonie",
997
- "LY": "Libye",
998
- "MA": "Maroc",
999
- "MC": "Monaco",
1000
- "MD": "Moldavie",
1001
- "ME": "Monténégro",
1002
- "MF": "Saint-Martin (France)",
1003
- "MG": "Madagascar",
1004
- "MH": "Îles Marshall",
1005
- "MK": "Macédoine du Nord",
1006
- "MK-alt-variant": "MK",
1007
- "ML": "Mali",
1008
- "MM": "Myanmar",
1009
- "MN": "Mongolie",
1010
- "MO": "Macao, Chine",
1011
- "MO-alt-short": "Macao",
1012
- "MP": "Mariannes du Nord",
1013
- "MQ": "Martinique",
1014
- "MR": "Mauritanie",
1015
- "MS": "Montserrat",
1016
- "MT": "Malte",
1017
- "MU": "Maurice",
1018
- "MV": "Maldives",
1019
- "MW": "Malawi",
1020
- "MX": "Mexique",
1021
- "MY": "Malaisie",
1022
- "MZ": "Mozambique",
1023
- "NA": "Namibie",
1024
- "NC": "Nouvelle-Calédonie",
1025
- "NE": "Niger",
1026
- "NF": "île Norfolk",
1027
- "NG": "Nigéria",
1028
- "NI": "Nicaragua",
1029
- "NL": "Pays-Bas",
1030
- "NO": "Norvège",
1031
- "NP": "Népal",
1032
- "NR": "Nauru",
1033
- "NU": "Niue",
1034
- "NZ": "Nouvelle-Zélande",
1035
- "OM": "Oman",
1036
- "PA": "Panama",
1037
- "PE": "Pérou",
1038
- "PF": "Polynésie française",
1039
- "PG": "Papouasie-Nouvelle-Guinée",
1040
- "PH": "Philippines",
1041
- "PK": "Pakistan",
1042
- "PL": "Pologne",
1043
- "PM": "Saint-Pierre-et-Miquelon",
1044
- "PN": "îles Pitcairn",
1045
- "PR": "Porto Rico",
1046
- "PS": "Territoires palestiniens",
1047
- "PS-alt-short": "Palestine",
1048
- "PT": "Portugal",
1049
- "PW": "Palaos",
1050
- "PY": "Paraguay",
1051
- "QA": "Qatar",
1052
- "QO": "Océanie lointaine",
1053
- "RE": "la Réunion",
1054
- "RO": "Roumanie",
1055
- "RS": "Serbie",
1056
- "RU": "Russie",
1057
- "RW": "Rwanda",
1058
- "SA": "Arabie saoudite",
1059
- "SB": "Îles Salomon",
1060
- "SC": "Seychelles",
1061
- "SD": "Soudan",
1062
- "SE": "Suède",
1063
- "SG": "Singapour",
1064
- "SH": "Sainte-Hélène",
1065
- "SI": "Slovénie",
1066
- "SJ": "Svalbard et Jan Mayen",
1067
- "SK": "Slovaquie",
1068
- "SL": "Sierra Leone",
1069
- "SM": "Saint-Marin",
1070
- "SN": "Sénégal",
1071
- "SO": "Somalie",
1072
- "SR": "Suriname",
1073
- "SS": "Soudan du Sud",
1074
- "ST": "Sao Tomé-et-Principe",
1075
- "SV": "Salvador",
1076
- "SX": "Saint-Martin (Pays-Bas)",
1077
- "SY": "Syrie",
1078
- "SZ": "Eswatini",
1079
- "SZ-alt-variant": "Swaziland",
1080
- "TA": "Tristan da Cunha",
1081
- "TC": "Îles Turques-et-Caïques",
1082
- "TD": "Tchad",
1083
- "TF": "Terres australes françaises",
1084
- "TG": "Togo",
1085
- "TH": "Thaïlande",
1086
- "TJ": "Tadjikistan",
1087
- "TK": "Tokelau",
1088
- "TL": "Timor-Leste",
1089
- "TL-alt-variant": "Timor oriental",
1090
- "TM": "Turkménistan",
1091
- "TN": "Tunisie",
1092
- "TO": "Tonga",
1093
- "TR": "Turquie",
1094
- "TT": "Trinité-et-Tobago",
1095
- "TV": "Tuvalu",
1096
- "TW": "Taïwan, Chine",
1097
- "TZ": "Tanzanie",
1098
- "UA": "Ukraine",
1099
- "UG": "Ouganda",
1100
- "UM": "îles mineures éloignées des États-Unis",
1101
- "UN": "Nations Unies",
1102
- "UN-alt-short": "NU",
1103
- "US": "États-Unis",
1104
- "US-alt-short": "É.-U.",
1105
- "UY": "Uruguay",
1106
- "UZ": "Ouzbékistan",
1107
- "VA": "Cité du Vatican",
1108
- "VC": "Saint-Vincent-et-les Grenadines",
1109
- "VE": "Venezuela",
1110
- "VG": "îles Vierges britanniques",
1111
- "VI": "îles Vierges américaines",
1112
- "VN": "Vietnam",
1113
- "VU": "Vanuatu",
1114
- "WF": "Wallis-et-Futuna",
1115
- "WS": "Samoa",
1116
- "XA": "pseudo-accents",
1117
- "XB": "pseudo-bidi",
1118
- "XK": "Kosovo",
1119
- "YE": "Yémen",
1120
- "YT": "Mayotte",
1121
- "ZA": "Afrique du Sud",
1122
- "ZM": "Zambie",
1123
- "ZW": "Zimbabwe",
1124
- "ZZ": "région indéterminée"
1125
- },
1126
- "orientation": "left-to-right",
1127
- "ca-gregorian": {
1128
- "dateFormats": {
1129
- "full": "EEEE d MMMM y",
1130
- "long": "d MMMM y",
1131
- "medium": "d MMM y",
1132
- "short": "yy-MM-dd"
1133
- },
1134
- "timeFormats": {
1135
- "full": "HH 'h' mm 'min' ss 's' zzzz",
1136
- "long": "HH 'h' mm 'min' ss 's' z",
1137
- "medium": "HH 'h' mm 'min' ss 's'",
1138
- "short": "HH 'h' mm"
1139
- },
1140
- "dateTimeFormats": {
1141
- "full": "{1} 'à' {0}",
1142
- "long": "{1} 'à' {0}",
1143
- "medium": "{1} {0}",
1144
- "short": "{1} {0}",
1145
- "availableFormats": {
1146
- "Bh": "h 'h' B",
1147
- "Bhm": "h 'h' mm B",
1148
- "Bhms": "h 'h' mm 'min' ss 's' B",
1149
- "d": "d",
1150
- "E": "E",
1151
- "EBhm": "E h 'h' mm B",
1152
- "EBhms": "E h 'h' mm 'min' ss 's' B",
1153
- "Ed": "E d",
1154
- "Ehm": "E h 'h' mm a",
1155
- "EHm": "E HH 'h' mm",
1156
- "Ehms": "E h 'h' mm 'min' ss 's' a",
1157
- "EHms": "E HH 'h' mm 'min' ss 's'",
1158
- "Gy": "y G",
1159
- "GyMMM": "MMM y G",
1160
- "GyMMMd": "d MMM y G",
1161
- "GyMMMEd": "E d MMM y G",
1162
- "h": "h 'h' a",
1163
- "H": "HH 'h'",
1164
- "hm": "h 'h' mm a",
1165
- "Hm": "HH 'h' mm",
1166
- "hms": "h 'h' mm 'min' ss 's' a",
1167
- "Hms": "HH 'h' mm 'min' ss 's'",
1168
- "hmsv": "h 'h' mm 'min' ss 's' a v",
1169
- "Hmsv": "HH 'h' mm 'min' ss 's' v",
1170
- "hmv": "h 'h' mm a v",
1171
- "Hmv": "HH 'h' mm v",
1172
- "M": "L",
1173
- "Md": "M-d",
1174
- "MEd": "E M-d",
1175
- "MMd": "MM-d",
1176
- "MMdd": "MM-dd",
1177
- "MMM": "LLL",
1178
- "MMMd": "d MMM",
1179
- "MMMEd": "E d MMM",
1180
- "MMMMd": "d MMMM",
1181
- "ms": "mm 'min' ss 's'",
1182
- "y": "y",
1183
- "yM": "y-MM",
1184
- "yMd": "y-MM-dd",
1185
- "yMEd": "E y-MM-dd",
1186
- "yMM": "y-MM",
1187
- "yMMM": "MMM y",
1188
- "yMMMd": "d MMM y",
1189
- "yMMMEd": "E d MMM y",
1190
- "yMMMM": "MMMM y",
1191
- "yQQQ": "QQQ y",
1192
- "yQQQQ": "QQQQ y",
1193
- "MMMMW": "'semaine' W (MMMM)",
1194
- "yw": "'semaine' w 'de' Y"
1195
- },
1196
- "appendItems": {
1197
- "Day": "{0} ({2}: {1})",
1198
- "Day-Of-Week": "{0} {1}",
1199
- "Era": "{1} {0}",
1200
- "Hour": "{0} ({2}: {1})",
1201
- "Minute": "{0} ({2}: {1})",
1202
- "Month": "{0} ({2}: {1})",
1203
- "Quarter": "{0} ({2}: {1})",
1204
- "Second": "{0} ({2}: {1})",
1205
- "Timezone": "{0} {1}",
1206
- "Week": "{0} ({2}: {1})",
1207
- "Year": "{1} {0}"
1208
- },
1209
- "intervalFormats": {
1210
- "intervalFormatFallback": "{0} – {1}",
1211
- "Bh": {
1212
- "B": "h 'h' B – h 'h' B",
1213
- "h": "h – h 'h' B"
1214
- },
1215
- "Bhm": {
1216
- "B": "h 'h' mm B – h 'h' mm B",
1217
- "h": "h 'h' mm – h 'h' mm B",
1218
- "m": "h 'h' mm – h 'h' mm B"
1219
- },
1220
- "d": {
1221
- "d": "d – d"
1222
- },
1223
- "Gy": {
1224
- "G": "y G – y G",
1225
- "y": "y–y G"
1226
- },
1227
- "GyM": {
1228
- "G": "y-MM GGGGG – y-MM GGGGG",
1229
- "M": "y-MM – y-MM GGGGG",
1230
- "y": "y-MM – y-MM GGGGG"
1231
- },
1232
- "GyMd": {
1233
- "d": "y-MM-dd – y-MM-dd GGGGG",
1234
- "G": "y-MM-dd GGGGG – y-MM-dd GGGGG",
1235
- "M": "y-MM-dd – y-MM-dd GGGGG",
1236
- "y": "y-MM-dd – y-MM-dd GGGGG"
1237
- },
1238
- "GyMEd": {
1239
- "d": "E y-MM-dd – E y-MM-dd GGGGG",
1240
- "G": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
1241
- "M": "E y-MM-dd – E y-MM-dd GGGGG",
1242
- "y": "E y-MM-dd – E y-MM-dd GGGGG"
1243
- },
1244
- "GyMMM": {
1245
- "G": "MMM y G – MMM y G",
1246
- "M": "MMM y – MMM y G",
1247
- "y": "MMM y – MMM y G"
1248
- },
1249
- "GyMMMd": {
1250
- "d": "d–d MMM y G",
1251
- "G": "d MMM y G – d MMM y G",
1252
- "M": "d MMM – d MMM y G",
1253
- "y": "d MMM y – d MMM y G"
1254
- },
1255
- "GyMMMEd": {
1256
- "d": "E d MMM – E d MMM y G",
1257
- "G": "E d MMM y G – E d MMM y G",
1258
- "M": "E d MMM – E d MMM y G",
1259
- "y": "E d MMM y – E d MMM y G"
1260
- },
1261
- "h": {
1262
- "a": "h 'h' a – h 'h' a",
1263
- "h": "h 'h' – h 'h' a"
1264
- },
1265
- "H": {
1266
- "H": "H 'h' – H 'h'"
1267
- },
1268
- "hm": {
1269
- "a": "h 'h' mm a – h 'h' mm a",
1270
- "h": "h 'h' mm – h 'h' mm a",
1271
- "m": "h 'h' mm – h 'h' mm a"
1272
- },
1273
- "Hm": {
1274
- "H": "H 'h' mm – H 'h' mm",
1275
- "m": "H 'h' mm – H 'h' mm"
1276
- },
1277
- "hmv": {
1278
- "a": "h 'h' mm a – h 'h' mm a v",
1279
- "h": "h 'h' mm – h 'h' mm a v",
1280
- "m": "h 'h' mm – h 'h' mm a v"
1281
- },
1282
- "Hmv": {
1283
- "H": "H 'h' mm – H 'h' mm v",
1284
- "m": "H 'h' mm – H 'h' mm v"
1285
- },
1286
- "hv": {
1287
- "a": "h 'h' a – h 'h' a v",
1288
- "h": "h 'h' – h 'h' a v"
1289
- },
1290
- "Hv": {
1291
- "H": "H 'h' – H 'h' v"
1292
- },
1293
- "M": {
1294
- "M": "M – M"
1295
- },
1296
- "Md": {
1297
- "d": "MM-dd – MM-dd",
1298
- "M": "MM-dd – MM-dd"
1299
- },
1300
- "MEd": {
1301
- "d": "E MM-dd – E MM-dd",
1302
- "M": "E MM-dd – E MM-dd"
1303
- },
1304
- "MMM": {
1305
- "M": "MMM – MMM"
1306
- },
1307
- "MMMd": {
1308
- "d": "d – d MMM",
1309
- "M": "d MMM – d MMM"
1310
- },
1311
- "MMMEd": {
1312
- "d": "E d – E d MMM",
1313
- "M": "E d MMM – E d MMM"
1314
- },
1315
- "y": {
1316
- "y": "y – y"
1317
- },
1318
- "yM": {
1319
- "M": "y-MM – y-MM",
1320
- "y": "y-MM – y-MM"
1321
- },
1322
- "yMd": {
1323
- "d": "y-MM-dd – y-MM-dd",
1324
- "M": "y-MM-dd – y-MM-dd",
1325
- "y": "y-MM-dd – y-MM-dd"
1326
- },
1327
- "yMEd": {
1328
- "d": "E y-MM-dd – E y-MM-dd",
1329
- "M": "E y-MM-dd – E y-MM-dd",
1330
- "y": "E y-MM-dd – E y-MM-dd"
1331
- },
1332
- "yMMM": {
1333
- "M": "MMM – MMM y",
1334
- "y": "MMM y – MMM y"
1335
- },
1336
- "yMMMd": {
1337
- "d": "d–d MMM y",
1338
- "M": "d MMM – d MMM y",
1339
- "y": "d MMM y – d MMM y"
1340
- },
1341
- "yMMMEd": {
1342
- "d": "E d – E d MMM y",
1343
- "M": "E d MMM – E d MMM y",
1344
- "y": "E d MMM y – E d MMM y"
1345
- },
1346
- "yMMMM": {
1347
- "M": "MMMM – MMMM y",
1348
- "y": "MMMM y – MMMM y"
1349
- }
1350
- }
1351
- },
1352
- "months": {
1353
- "format": {
1354
- "abbreviated": [
1355
- "janv.",
1356
- "févr.",
1357
- "mars",
1358
- "avr.",
1359
- "mai",
1360
- "juin",
1361
- "juill.",
1362
- "août",
1363
- "sept.",
1364
- "oct.",
1365
- "nov.",
1366
- "déc."
1367
- ],
1368
- "narrow": [
1369
- "J",
1370
- "F",
1371
- "M",
1372
- "A",
1373
- "M",
1374
- "J",
1375
- "J",
1376
- "A",
1377
- "S",
1378
- "O",
1379
- "N",
1380
- "D"
1381
- ],
1382
- "wide": [
1383
- "janvier",
1384
- "février",
1385
- "mars",
1386
- "avril",
1387
- "mai",
1388
- "juin",
1389
- "juillet",
1390
- "août",
1391
- "septembre",
1392
- "octobre",
1393
- "novembre",
1394
- "décembre"
1395
- ]
1396
- },
1397
- "stand-alone": {
1398
- "abbreviated": [
1399
- "janv.",
1400
- "févr.",
1401
- "mars",
1402
- "avr.",
1403
- "mai",
1404
- "juin",
1405
- "juill.",
1406
- "août",
1407
- "sept.",
1408
- "oct.",
1409
- "nov.",
1410
- "déc."
1411
- ],
1412
- "narrow": [
1413
- "J",
1414
- "F",
1415
- "M",
1416
- "A",
1417
- "M",
1418
- "J",
1419
- "J",
1420
- "A",
1421
- "S",
1422
- "O",
1423
- "N",
1424
- "D"
1425
- ],
1426
- "wide": [
1427
- "janvier",
1428
- "février",
1429
- "mars",
1430
- "avril",
1431
- "mai",
1432
- "juin",
1433
- "juillet",
1434
- "août",
1435
- "septembre",
1436
- "octobre",
1437
- "novembre",
1438
- "décembre"
1439
- ]
1440
- }
1441
- },
1442
- "days": {
1443
- "format": {
1444
- "abbreviated": [
1445
- "dim.",
1446
- "lun.",
1447
- "mar.",
1448
- "mer.",
1449
- "jeu.",
1450
- "ven.",
1451
- "sam."
1452
- ],
1453
- "narrow": [
1454
- "D",
1455
- "L",
1456
- "M",
1457
- "M",
1458
- "J",
1459
- "V",
1460
- "S"
1461
- ],
1462
- "short": [
1463
- "di",
1464
- "lu",
1465
- "ma",
1466
- "me",
1467
- "je",
1468
- "ve",
1469
- "sa"
1470
- ],
1471
- "wide": [
1472
- "dimanche",
1473
- "lundi",
1474
- "mardi",
1475
- "mercredi",
1476
- "jeudi",
1477
- "vendredi",
1478
- "samedi"
1479
- ]
1480
- },
1481
- "stand-alone": {
1482
- "abbreviated": [
1483
- "dim.",
1484
- "lun.",
1485
- "mar.",
1486
- "mer.",
1487
- "jeu.",
1488
- "ven.",
1489
- "sam."
1490
- ],
1491
- "narrow": [
1492
- "D",
1493
- "L",
1494
- "M",
1495
- "M",
1496
- "J",
1497
- "V",
1498
- "S"
1499
- ],
1500
- "short": [
1501
- "di",
1502
- "lu",
1503
- "ma",
1504
- "me",
1505
- "je",
1506
- "ve",
1507
- "sa"
1508
- ],
1509
- "wide": [
1510
- "dimanche",
1511
- "lundi",
1512
- "mardi",
1513
- "mercredi",
1514
- "jeudi",
1515
- "vendredi",
1516
- "samedi"
1517
- ]
1518
- }
1519
- },
1520
- "quarters": {
1521
- "format": {
1522
- "abbreviated": [
1523
- "T1",
1524
- "T2",
1525
- "T3",
1526
- "T4"
1527
- ],
1528
- "narrow": [
1529
- "1",
1530
- "2",
1531
- "3",
1532
- "4"
1533
- ],
1534
- "wide": [
1535
- "1er trimestre",
1536
- "2e trimestre",
1537
- "3e trimestre",
1538
- "4e trimestre"
1539
- ]
1540
- },
1541
- "stand-alone": {
1542
- "abbreviated": [
1543
- "T1",
1544
- "T2",
1545
- "T3",
1546
- "T4"
1547
- ],
1548
- "narrow": [
1549
- "1",
1550
- "2",
1551
- "3",
1552
- "4"
1553
- ],
1554
- "wide": [
1555
- "1er trimestre",
1556
- "2e trimestre",
1557
- "3e trimestre",
1558
- "4e trimestre"
1559
- ]
1560
- }
1561
- },
1562
- "dayPeriods": {
1563
- "format": {
1564
- "abbreviated": [
1565
- "a.m.",
1566
- "p.m."
1567
- ],
1568
- "narrow": [
1569
- "a",
1570
- "p"
1571
- ],
1572
- "wide": [
1573
- "a.m.",
1574
- "p.m."
1575
- ]
1576
- },
1577
- "stand-alone": {
1578
- "abbreviated": [
1579
- "a.m.",
1580
- "p.m."
1581
- ],
1582
- "narrow": [
1583
- "a.m.",
1584
- "p.m."
1585
- ],
1586
- "wide": [
1587
- "a.m.",
1588
- "p.m."
1589
- ]
1590
- }
1591
- },
1592
- "era-wide": {
1593
- "0": "avant Jésus-Christ",
1594
- "1": "après Jésus-Christ"
1595
- },
1596
- "era-abbreviated": {
1597
- "0": "av. J.-C.",
1598
- "1": "ap. J.-C."
1599
- },
1600
- "era-narrow": {
1601
- "0": "av. J.-C.",
1602
- "1": "ap. J.-C."
1603
- }
1604
- },
1605
- "ca-islamic": {
1606
- "dateFormats": {
1607
- "full": "EEEE d MMMM y G",
1608
- "long": "d MMMM y G",
1609
- "medium": "d MMM y G",
1610
- "short": "y-MM-dd GGGGG"
1611
- },
1612
- "timeFormats": {
1613
- "full": "HH 'h' mm 'min' ss 's' zzzz",
1614
- "long": "HH 'h' mm 'min' ss 's' z",
1615
- "medium": "HH 'h' mm 'min' ss 's'",
1616
- "short": "HH 'h' mm"
1617
- },
1618
- "dateTimeFormats": {
1619
- "full": "{1} 'à' {0}",
1620
- "long": "{1} 'à' {0}",
1621
- "medium": "{1} {0}",
1622
- "short": "{1} {0}",
1623
- "availableFormats": {
1624
- "Bh": "h 'h' B",
1625
- "Bhm": "h 'h' mm B",
1626
- "Bhms": "h 'h' mm 'min' ss 's' B",
1627
- "d": "d",
1628
- "E": "ccc",
1629
- "EBhm": "E h 'h' mm B",
1630
- "EBhms": "E h 'h' mm 'min' ss 's' B",
1631
- "Ed": "E d",
1632
- "Ehm": "E h 'h' mm a",
1633
- "EHm": "E HH 'h' mm",
1634
- "Ehms": "E h 'h' mm 'min' ss 's' a",
1635
- "EHms": "E HH 'h' mm 'min' ss 's'",
1636
- "Gy": "y G",
1637
- "GyMMM": "MMM y G",
1638
- "GyMMMd": "d MMM y G",
1639
- "GyMMMEd": "E d MMM y G",
1640
- "h": "h 'h' a",
1641
- "H": "HH 'h'",
1642
- "hm": "h 'h' mm a",
1643
- "Hm": "HH 'h' mm",
1644
- "hms": "h 'h' mm 'min' ss 's' a",
1645
- "Hms": "HH 'h' mm 'min' ss 's'",
1646
- "M": "L",
1647
- "Md": "MM-dd",
1648
- "MEd": "E d MMM",
1649
- "MMd": "MM-d",
1650
- "MMdd": "MM-dd",
1651
- "MMM": "LLL",
1652
- "MMMd": "d MMM",
1653
- "MMMEd": "E d MMM",
1654
- "MMMMd": "d MMMM",
1655
- "ms": "mm 'min' ss 's'",
1656
- "y": "y G",
1657
- "yyyy": "y G",
1658
- "yyyyM": "y-MM GGGGG",
1659
- "yyyyMd": "y-MM-dd GGGGG",
1660
- "yyyyMEd": "E y-MM-dd GGGGG",
1661
- "yyyyMM": "y-MM G",
1662
- "yyyyMMM": "MMM y G",
1663
- "yyyyMMMd": "d MMM y G",
1664
- "yyyyMMMEd": "E d MMM y G",
1665
- "yyyyMMMM": "MMMM y G",
1666
- "yyyyQQQ": "QQQ y G",
1667
- "yyyyQQQQ": "QQQQ y G"
1668
- },
1669
- "appendItems": {
1670
- "Day": "{0} ({2}: {1})",
1671
- "Day-Of-Week": "{0} {1}",
1672
- "Era": "{1} {0}",
1673
- "Hour": "{0} ({2}: {1})",
1674
- "Minute": "{0} ({2}: {1})",
1675
- "Month": "{0} ({2}: {1})",
1676
- "Quarter": "{0} ({2}: {1})",
1677
- "Second": "{0} ({2}: {1})",
1678
- "Timezone": "{0} {1}",
1679
- "Week": "{0} ({2}: {1})",
1680
- "Year": "{1} {0}"
1681
- },
1682
- "intervalFormats": {
1683
- "intervalFormatFallback": "{0} – {1}",
1684
- "Bh": {
1685
- "B": "h 'h' B – h 'h' B",
1686
- "h": "h – h 'h' B"
1687
- },
1688
- "Bhm": {
1689
- "B": "h 'h' mm B – h 'h' mm B",
1690
- "h": "h 'h' mm – h 'h' mm B",
1691
- "m": "h 'h' mm – h 'h' mm B"
1692
- },
1693
- "d": {
1694
- "d": "d – d"
1695
- },
1696
- "Gy": {
1697
- "G": "y G – y G",
1698
- "y": "y–y G"
1699
- },
1700
- "GyM": {
1701
- "G": "y-MM GGGGG – y-MM GGGGG",
1702
- "M": "y-MM – y-MM GGGGG",
1703
- "y": "y-MM – y-MM GGGGG"
1704
- },
1705
- "GyMd": {
1706
- "d": "y-MM-dd – y-MM-dd GGGGG",
1707
- "G": "y-MM-dd GGGGG – y-MM-dd GGGGG",
1708
- "M": "y-MM-dd – y-MM-dd GGGGG",
1709
- "y": "y-MM-dd – y-MM-dd GGGGG"
1710
- },
1711
- "GyMEd": {
1712
- "d": "E y-MM-dd – E y-MM-dd GGGGG",
1713
- "G": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
1714
- "M": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
1715
- "y": "E y-MM-dd – E y-MM-dd GGGGG"
1716
- },
1717
- "GyMMM": {
1718
- "G": "MMM y G – MMM y G",
1719
- "M": "MMM y – MMM y G",
1720
- "y": "MMM y – MMM y G"
1721
- },
1722
- "GyMMMd": {
1723
- "d": "d–d MMM y G",
1724
- "G": "d MMM y G – d MMM y G",
1725
- "M": "d MMM – d MMM y G",
1726
- "y": "d MMM y – d MMM y G"
1727
- },
1728
- "GyMMMEd": {
1729
- "d": "E d MMM – E d MMM y G",
1730
- "G": "E d MMM y G – E d MMM y G",
1731
- "M": "E d MMM – E d MMM y G",
1732
- "y": "E d MMM y – E d MMM y G"
1733
- },
1734
- "h": {
1735
- "a": "h a – h a",
1736
- "h": "h – h a"
1737
- },
1738
- "H": {
1739
- "H": "HH – HH"
1740
- },
1741
- "hm": {
1742
- "a": "h:mm a – h:mm a",
1743
- "h": "h:mm – h:mm a",
1744
- "m": "h:mm – h:mm a"
1745
- },
1746
- "Hm": {
1747
- "H": "HH:mm – HH:mm",
1748
- "m": "HH:mm – HH:mm"
1749
- },
1750
- "hmv": {
1751
- "a": "h:mm a – h:mm a v",
1752
- "h": "h:mm – h:mm a v",
1753
- "m": "h:mm – h:mm a v"
1754
- },
1755
- "Hmv": {
1756
- "H": "HH:mm – HH:mm v",
1757
- "m": "HH:mm – HH:mm v"
1758
- },
1759
- "hv": {
1760
- "a": "h a – h a v",
1761
- "h": "h – h a v"
1762
- },
1763
- "Hv": {
1764
- "H": "HH – HH v"
1765
- },
1766
- "M": {
1767
- "M": "M – M"
1768
- },
1769
- "Md": {
1770
- "d": "MM-dd – MM-dd",
1771
- "M": "MM-dd – MM-dd"
1772
- },
1773
- "MEd": {
1774
- "d": "E MM-dd – E MM-dd",
1775
- "M": "E MM-dd – E MM-dd"
1776
- },
1777
- "MMM": {
1778
- "M": "MMM–MMM"
1779
- },
1780
- "MMMd": {
1781
- "d": "d–d MMM",
1782
- "M": "d MMM – d MMM"
1783
- },
1784
- "MMMEd": {
1785
- "d": "E d – E d MMM",
1786
- "M": "E d MMM – E d MMM"
1787
- },
1788
- "y": {
1789
- "y": "y – y G"
1790
- },
1791
- "yM": {
1792
- "M": "y-MM – y-MM G",
1793
- "y": "y-MM – y-MM G"
1794
- },
1795
- "yMd": {
1796
- "d": "y-MM-dd – y-MM-dd G",
1797
- "M": "y-MM-dd – y-MM-dd G",
1798
- "y": "y-MM-dd – y-MM-dd G"
1799
- },
1800
- "yMEd": {
1801
- "d": "E y-MM-dd – E y-MM-dd G",
1802
- "M": "E y-MM-dd – E y-MM-dd G",
1803
- "y": "E y-MM-dd – E y-MM-dd G"
1804
- },
1805
- "yMMM": {
1806
- "M": "MMM–MMM y G",
1807
- "y": "MMM y – MMM y G"
1808
- },
1809
- "yMMMd": {
1810
- "d": "d–d MMM y G",
1811
- "M": "d MMM – d MMM y G",
1812
- "y": "d MMM y – d MMM y G"
1813
- },
1814
- "yMMMEd": {
1815
- "d": "E d – E d MMM y G",
1816
- "M": "E d MMM – E d MMM y G",
1817
- "y": "E d MMM y – E d MMM y G"
1818
- },
1819
- "yMMMM": {
1820
- "M": "MMMM – MMMM y G",
1821
- "y": "MMMM y – MMMM y G"
1822
- }
1823
- }
1824
- },
1825
- "months": {
1826
- "format": {
1827
- "abbreviated": [
1828
- "mouh.",
1829
- "saf.",
1830
- "rab. aw.",
1831
- "rab. th.",
1832
- "joum. oul.",
1833
- "joum. tha.",
1834
- "raj.",
1835
- "chaa.",
1836
- "ram.",
1837
- "chaw.",
1838
- "dhou. q.",
1839
- "dhou. h."
1840
- ],
1841
- "narrow": [
1842
- "1",
1843
- "2",
1844
- "3",
1845
- "4",
1846
- "5",
1847
- "6",
1848
- "7",
1849
- "8",
1850
- "9",
1851
- "10",
1852
- "11",
1853
- "12"
1854
- ],
1855
- "wide": [
1856
- "mouharram",
1857
- "safar",
1858
- "rabia al awal",
1859
- "rabia ath-thani",
1860
- "joumada al oula",
1861
- "joumada ath-thania",
1862
- "rajab",
1863
- "chaabane",
1864
- "ramadan",
1865
- "chawwal",
1866
- "dhou al qi`da",
1867
- "dhou al-hijja"
1868
- ]
1869
- },
1870
- "stand-alone": {
1871
- "abbreviated": [
1872
- "mouh.",
1873
- "saf.",
1874
- "rab. aw.",
1875
- "rab. th.",
1876
- "joum. ou.",
1877
- "joum. th.",
1878
- "raj.",
1879
- "chaa.",
1880
- "ram.",
1881
- "chaw.",
1882
- "dhou. qi.",
1883
- "dhou. hi."
1884
- ],
1885
- "narrow": [
1886
- "1",
1887
- "2",
1888
- "3",
1889
- "4",
1890
- "5",
1891
- "6",
1892
- "7",
1893
- "8",
1894
- "9",
1895
- "10",
1896
- "11",
1897
- "12"
1898
- ],
1899
- "wide": [
1900
- "mouharram",
1901
- "safar",
1902
- "rabia al awal",
1903
- "rabia ath-thani",
1904
- "joumada al oula",
1905
- "joumada ath-thania",
1906
- "rajab",
1907
- "chaabane",
1908
- "ramadan",
1909
- "chawwal",
1910
- "dhou al qi`da",
1911
- "dhou al-hijja"
1912
- ]
1913
- }
1914
- },
1915
- "days": {
1916
- "format": {
1917
- "abbreviated": [
1918
- "dim.",
1919
- "lun.",
1920
- "mar.",
1921
- "mer.",
1922
- "jeu.",
1923
- "ven.",
1924
- "sam."
1925
- ],
1926
- "narrow": [
1927
- "D",
1928
- "L",
1929
- "M",
1930
- "M",
1931
- "J",
1932
- "V",
1933
- "S"
1934
- ],
1935
- "short": [
1936
- "di",
1937
- "lu",
1938
- "ma",
1939
- "me",
1940
- "je",
1941
- "ve",
1942
- "sa"
1943
- ],
1944
- "wide": [
1945
- "dimanche",
1946
- "lundi",
1947
- "mardi",
1948
- "mercredi",
1949
- "jeudi",
1950
- "vendredi",
1951
- "samedi"
1952
- ]
1953
- },
1954
- "stand-alone": {
1955
- "abbreviated": [
1956
- "dim.",
1957
- "lun.",
1958
- "mar.",
1959
- "mer.",
1960
- "jeu.",
1961
- "ven.",
1962
- "sam."
1963
- ],
1964
- "narrow": [
1965
- "D",
1966
- "L",
1967
- "M",
1968
- "M",
1969
- "J",
1970
- "V",
1971
- "S"
1972
- ],
1973
- "short": [
1974
- "di",
1975
- "lu",
1976
- "ma",
1977
- "me",
1978
- "je",
1979
- "ve",
1980
- "sa"
1981
- ],
1982
- "wide": [
1983
- "dimanche",
1984
- "lundi",
1985
- "mardi",
1986
- "mercredi",
1987
- "jeudi",
1988
- "vendredi",
1989
- "samedi"
1990
- ]
1991
- }
1992
- },
1993
- "quarters": {
1994
- "format": {
1995
- "abbreviated": [
1996
- "T1",
1997
- "T2",
1998
- "T3",
1999
- "T4"
2000
- ],
2001
- "narrow": [
2002
- "1",
2003
- "2",
2004
- "3",
2005
- "4"
2006
- ],
2007
- "wide": [
2008
- "1er trimestre",
2009
- "2e trimestre",
2010
- "3e trimestre",
2011
- "4e trimestre"
2012
- ]
2013
- },
2014
- "stand-alone": {
2015
- "abbreviated": [
2016
- "T1",
2017
- "T2",
2018
- "T3",
2019
- "T4"
2020
- ],
2021
- "narrow": [
2022
- "1",
2023
- "2",
2024
- "3",
2025
- "4"
2026
- ],
2027
- "wide": [
2028
- "1er trimestre",
2029
- "2e trimestre",
2030
- "3e trimestre",
2031
- "4e trimestre"
2032
- ]
2033
- }
2034
- },
2035
- "dayPeriods": {
2036
- "format": {
2037
- "abbreviated": [
2038
- "a.m.",
2039
- "p.m."
2040
- ],
2041
- "narrow": [
2042
- "a",
2043
- "p"
2044
- ],
2045
- "wide": [
2046
- "a.m.",
2047
- "p.m."
2048
- ]
2049
- },
2050
- "stand-alone": {
2051
- "abbreviated": [
2052
- "a.m.",
2053
- "p.m."
2054
- ],
2055
- "narrow": [
2056
- "a.m.",
2057
- "p.m."
2058
- ],
2059
- "wide": [
2060
- "a.m.",
2061
- "p.m."
2062
- ]
2063
- }
2064
- },
2065
- "era-wide": {
2066
- "0": "Anno Hegirae"
2067
- },
2068
- "era-abbreviated": {
2069
- "0": "AH"
2070
- },
2071
- "era-narrow": {
2072
- "0": "AH"
2073
- }
2074
- },
2075
- "ca-japanese": {
2076
- "dateFormats": {
2077
- "full": "EEEE d MMMM y G",
2078
- "long": "d MMMM y G",
2079
- "medium": "d MMM y G",
2080
- "short": "dd/MM/y GGGGG"
2081
- },
2082
- "timeFormats": {
2083
- "full": "HH 'h' mm 'min' ss 's' zzzz",
2084
- "long": "HH 'h' mm 'min' ss 's' z",
2085
- "medium": "HH 'h' mm 'min' ss 's'",
2086
- "short": "HH 'h' mm"
2087
- },
2088
- "dateTimeFormats": {
2089
- "full": "{1} {0}",
2090
- "long": "{1} {0}",
2091
- "medium": "{1} {0}",
2092
- "short": "{1} {0}",
2093
- "availableFormats": {
2094
- "Bh": "h 'h' B",
2095
- "Bhm": "h 'h' mm B",
2096
- "Bhms": "h 'h' mm 'min' ss 's' B",
2097
- "d": "d",
2098
- "E": "ccc",
2099
- "EBhm": "E h 'h' mm B",
2100
- "EBhms": "E h 'h' mm 'min' ss 's' B",
2101
- "Ed": "E d",
2102
- "Ehm": "E h 'h' mm a",
2103
- "EHm": "E HH 'h' mm",
2104
- "Ehms": "E h 'h' mm 'min' ss 's' a",
2105
- "EHms": "E HH 'h' mm 'min' ss 's'",
2106
- "Gy": "y G",
2107
- "GyMMM": "MMM y G",
2108
- "GyMMMd": "d MMM y G",
2109
- "GyMMMEd": "E d MMM y G",
2110
- "h": "h 'h' a",
2111
- "H": "HH 'h'",
2112
- "hm": "h 'h' mm a",
2113
- "Hm": "HH 'h' mm",
2114
- "hms": "h 'h' mm 'min' ss 's' a",
2115
- "Hms": "HH 'h' mm 'min' ss 's'",
2116
- "M": "L",
2117
- "Md": "d/M",
2118
- "MEd": "E d/M",
2119
- "MMd": "MM-d",
2120
- "MMdd": "MM-dd",
2121
- "MMM": "LLL",
2122
- "MMMd": "d MMM",
2123
- "MMMEd": "E d MMM",
2124
- "MMMMd": "d MMMM",
2125
- "ms": "mm 'min' ss 's'",
2126
- "y": "y G",
2127
- "yyyy": "y G",
2128
- "yyyyM": "M/y GGGGG",
2129
- "yyyyMd": "d/M/y GGGGG",
2130
- "yyyyMEd": "E d/M/y GGGGG",
2131
- "yyyyMM": "y-MM G",
2132
- "yyyyMMM": "MMM y G",
2133
- "yyyyMMMd": "d MMM y G",
2134
- "yyyyMMMEd": "E d MMM y G",
2135
- "yyyyMMMM": "MMMM y G",
2136
- "yyyyQQQ": "QQQ y G",
2137
- "yyyyQQQQ": "QQQQ y G"
2138
- },
2139
- "appendItems": {
2140
- "Day": "{0} ({2}: {1})",
2141
- "Day-Of-Week": "{0} {1}",
2142
- "Era": "{1} {0}",
2143
- "Hour": "{0} ({2}: {1})",
2144
- "Minute": "{0} ({2}: {1})",
2145
- "Month": "{0} ({2}: {1})",
2146
- "Quarter": "{0} ({2}: {1})",
2147
- "Second": "{0} ({2}: {1})",
2148
- "Timezone": "{0} {1}",
2149
- "Week": "{0} ({2}: {1})",
2150
- "Year": "{1} {0}"
2151
- },
2152
- "intervalFormats": {
2153
- "intervalFormatFallback": "{0} – {1}",
2154
- "Bh": {
2155
- "B": "h 'h' B – h 'h' B",
2156
- "h": "h – h 'h' B"
2157
- },
2158
- "Bhm": {
2159
- "B": "h 'h' mm B – h 'h' mm B",
2160
- "h": "h 'h' mm – h 'h' mm B",
2161
- "m": "h 'h' mm – h 'h' mm B"
2162
- },
2163
- "d": {
2164
- "d": "d – d"
2165
- },
2166
- "Gy": {
2167
- "G": "y G – y G",
2168
- "y": "y–y G"
2169
- },
2170
- "GyM": {
2171
- "G": "y-MM GGGGG – y-MM GGGGG",
2172
- "M": "y-MM – y-MM GGGGG",
2173
- "y": "y-MM – y-MM GGGGG"
2174
- },
2175
- "GyMd": {
2176
- "d": "y-MM-dd – y-MM-dd GGGGG",
2177
- "G": "y-MM-dd GGGGG – y-MM-dd GGGGG",
2178
- "M": "y-MM-dd – y-MM-dd GGGGG",
2179
- "y": "y-MM-dd – y-MM-dd GGGGG"
2180
- },
2181
- "GyMEd": {
2182
- "d": "E y-MM-dd – E y-MM-dd GGGGG",
2183
- "G": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
2184
- "M": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
2185
- "y": "E y-MM-dd – E y-MM-dd GGGGG"
2186
- },
2187
- "GyMMM": {
2188
- "G": "MMM y G – MMM y G",
2189
- "M": "MMM y – MMM y G",
2190
- "y": "MMM y – MMM y G"
2191
- },
2192
- "GyMMMd": {
2193
- "d": "d–d MMM y G",
2194
- "G": "d MMM y G – d MMM y G",
2195
- "M": "d MMM – d MMM y G",
2196
- "y": "d MMM y – d MMM y G"
2197
- },
2198
- "GyMMMEd": {
2199
- "d": "E d MMM – E d MMM y G",
2200
- "G": "E d MMM y G – E d MMM y G",
2201
- "M": "E d MMM – E d MMM y G",
2202
- "y": "E d MMM y – E d MMM y G"
2203
- },
2204
- "h": {
2205
- "a": "h a – h a",
2206
- "h": "h – h a"
2207
- },
2208
- "H": {
2209
- "H": "HH – HH"
2210
- },
2211
- "hm": {
2212
- "a": "h:mm a – h:mm a",
2213
- "h": "h:mm – h:mm a",
2214
- "m": "h:mm – h:mm a"
2215
- },
2216
- "Hm": {
2217
- "H": "HH:mm – HH:mm",
2218
- "m": "HH:mm – HH:mm"
2219
- },
2220
- "hmv": {
2221
- "a": "h:mm a – h:mm a v",
2222
- "h": "h:mm – h:mm a v",
2223
- "m": "h:mm – h:mm a v"
2224
- },
2225
- "Hmv": {
2226
- "H": "HH:mm – HH:mm v",
2227
- "m": "HH:mm – HH:mm v"
2228
- },
2229
- "hv": {
2230
- "a": "h a – h a v",
2231
- "h": "h – h a v"
2232
- },
2233
- "Hv": {
2234
- "H": "HH – HH v"
2235
- },
2236
- "M": {
2237
- "M": "M – M"
2238
- },
2239
- "Md": {
2240
- "d": "MM-dd – MM-dd",
2241
- "M": "MM-dd – MM-dd"
2242
- },
2243
- "MEd": {
2244
- "d": "E MM-dd – E MM-dd",
2245
- "M": "E MM-dd – E MM-dd"
2246
- },
2247
- "MMM": {
2248
- "M": "MMM–MMM"
2249
- },
2250
- "MMMd": {
2251
- "d": "d–d MMM",
2252
- "M": "d MMM – d MMM"
2253
- },
2254
- "MMMEd": {
2255
- "d": "E d – E d MMM",
2256
- "M": "E d MMM – E d MMM"
2257
- },
2258
- "y": {
2259
- "y": "y – y G",
2260
- "G": "y G – y G"
2261
- },
2262
- "yM": {
2263
- "M": "y-MM – y-MM G",
2264
- "y": "y-MM – y-MM G",
2265
- "G": "y-MM G – y-MM G"
2266
- },
2267
- "yMd": {
2268
- "d": "y-MM-dd – y-MM-dd G",
2269
- "M": "y-MM-dd – y-MM-dd G",
2270
- "y": "y-MM-dd – y-MM-dd G",
2271
- "G": "y-MM-dd G – y-MM-dd G"
2272
- },
2273
- "yMEd": {
2274
- "d": "E y-MM-dd – E y-MM-dd G",
2275
- "M": "E y-MM-dd – E y-MM-dd G",
2276
- "y": "E y-MM-dd – E y-MM-dd G",
2277
- "G": "E y-MM-dd G – E y-MM-dd G"
2278
- },
2279
- "yMMM": {
2280
- "M": "MMM–MMM y G",
2281
- "y": "MMM y – MMM y G",
2282
- "G": "MMM y G – MMM y G"
2283
- },
2284
- "yMMMd": {
2285
- "d": "d–d MMM y G",
2286
- "M": "d MMM – d MMM y G",
2287
- "y": "d MMM y – d MMM y G",
2288
- "G": "d MMM y G – d MMM y G"
2289
- },
2290
- "yMMMEd": {
2291
- "d": "E d – E d MMM y G",
2292
- "M": "E d MMM – E d MMM y G",
2293
- "y": "E d MMM y – E d MMM y G",
2294
- "G": "E d MMM y G – E d MMM y G"
2295
- },
2296
- "yMMMM": {
2297
- "M": "MMMM – MMMM y G",
2298
- "y": "MMMM y – MMMM y G",
2299
- "G": "MMMM y G – MMMM y G"
2300
- }
2301
- }
2302
- },
2303
- "months": {
2304
- "format": {
2305
- "abbreviated": [
2306
- "janv.",
2307
- "févr.",
2308
- "mars",
2309
- "avr.",
2310
- "mai",
2311
- "juin",
2312
- "juill.",
2313
- "août",
2314
- "sept.",
2315
- "oct.",
2316
- "nov.",
2317
- "déc."
2318
- ],
2319
- "narrow": [
2320
- "J",
2321
- "F",
2322
- "M",
2323
- "A",
2324
- "M",
2325
- "J",
2326
- "J",
2327
- "A",
2328
- "S",
2329
- "O",
2330
- "N",
2331
- "D"
2332
- ],
2333
- "wide": [
2334
- "janvier",
2335
- "février",
2336
- "mars",
2337
- "avril",
2338
- "mai",
2339
- "juin",
2340
- "juillet",
2341
- "août",
2342
- "septembre",
2343
- "octobre",
2344
- "novembre",
2345
- "décembre"
2346
- ]
2347
- },
2348
- "stand-alone": {
2349
- "abbreviated": [
2350
- "janv.",
2351
- "févr.",
2352
- "mars",
2353
- "avr.",
2354
- "mai",
2355
- "juin",
2356
- "juill.",
2357
- "août",
2358
- "sept.",
2359
- "oct.",
2360
- "nov.",
2361
- "déc."
2362
- ],
2363
- "narrow": [
2364
- "J",
2365
- "F",
2366
- "M",
2367
- "A",
2368
- "M",
2369
- "J",
2370
- "J",
2371
- "A",
2372
- "S",
2373
- "O",
2374
- "N",
2375
- "D"
2376
- ],
2377
- "wide": [
2378
- "janvier",
2379
- "février",
2380
- "mars",
2381
- "avril",
2382
- "mai",
2383
- "juin",
2384
- "juillet",
2385
- "août",
2386
- "septembre",
2387
- "octobre",
2388
- "novembre",
2389
- "décembre"
2390
- ]
2391
- }
2392
- },
2393
- "days": {
2394
- "format": {
2395
- "abbreviated": [
2396
- "dim.",
2397
- "lun.",
2398
- "mar.",
2399
- "mer.",
2400
- "jeu.",
2401
- "ven.",
2402
- "sam."
2403
- ],
2404
- "narrow": [
2405
- "D",
2406
- "L",
2407
- "M",
2408
- "M",
2409
- "J",
2410
- "V",
2411
- "S"
2412
- ],
2413
- "short": [
2414
- "di",
2415
- "lu",
2416
- "ma",
2417
- "me",
2418
- "je",
2419
- "ve",
2420
- "sa"
2421
- ],
2422
- "wide": [
2423
- "dimanche",
2424
- "lundi",
2425
- "mardi",
2426
- "mercredi",
2427
- "jeudi",
2428
- "vendredi",
2429
- "samedi"
2430
- ]
2431
- },
2432
- "stand-alone": {
2433
- "abbreviated": [
2434
- "dim.",
2435
- "lun.",
2436
- "mar.",
2437
- "mer.",
2438
- "jeu.",
2439
- "ven.",
2440
- "sam."
2441
- ],
2442
- "narrow": [
2443
- "D",
2444
- "L",
2445
- "M",
2446
- "M",
2447
- "J",
2448
- "V",
2449
- "S"
2450
- ],
2451
- "short": [
2452
- "di",
2453
- "lu",
2454
- "ma",
2455
- "me",
2456
- "je",
2457
- "ve",
2458
- "sa"
2459
- ],
2460
- "wide": [
2461
- "dimanche",
2462
- "lundi",
2463
- "mardi",
2464
- "mercredi",
2465
- "jeudi",
2466
- "vendredi",
2467
- "samedi"
2468
- ]
2469
- }
2470
- },
2471
- "quarters": {
2472
- "format": {
2473
- "abbreviated": [
2474
- "T1",
2475
- "T2",
2476
- "T3",
2477
- "T4"
2478
- ],
2479
- "narrow": [
2480
- "1",
2481
- "2",
2482
- "3",
2483
- "4"
2484
- ],
2485
- "wide": [
2486
- "1er trimestre",
2487
- "2e trimestre",
2488
- "3e trimestre",
2489
- "4e trimestre"
2490
- ]
2491
- },
2492
- "stand-alone": {
2493
- "abbreviated": [
2494
- "T1",
2495
- "T2",
2496
- "T3",
2497
- "T4"
2498
- ],
2499
- "narrow": [
2500
- "1",
2501
- "2",
2502
- "3",
2503
- "4"
2504
- ],
2505
- "wide": [
2506
- "1er trimestre",
2507
- "2e trimestre",
2508
- "3e trimestre",
2509
- "4e trimestre"
2510
- ]
2511
- }
2512
- },
2513
- "dayPeriods": {
2514
- "format": {
2515
- "abbreviated": [
2516
- "a.m.",
2517
- "p.m."
2518
- ],
2519
- "narrow": [
2520
- "a",
2521
- "p"
2522
- ],
2523
- "wide": [
2524
- "a.m.",
2525
- "p.m."
2526
- ]
2527
- },
2528
- "stand-alone": {
2529
- "abbreviated": [
2530
- "a.m.",
2531
- "p.m."
2532
- ],
2533
- "narrow": [
2534
- "a.m.",
2535
- "p.m."
2536
- ],
2537
- "wide": [
2538
- "a.m.",
2539
- "p.m."
2540
- ]
2541
- }
2542
- },
2543
- "era-wide": {
2544
- "232": "Meiji",
2545
- "233": "Taishō",
2546
- "234": "Shōwa",
2547
- "235": "Heisei",
2548
- "236": "Reiwa"
2549
- },
2550
- "era-abbreviated": {
2551
- "232": "Meiji",
2552
- "233": "Taishō",
2553
- "234": "Shōwa",
2554
- "235": "Heisei",
2555
- "236": "Reiwa"
2556
- },
2557
- "era-narrow": {
2558
- "232": "M",
2559
- "233": "T",
2560
- "234": "S",
2561
- "235": "H",
2562
- "236": "R"
2563
- }
2564
- },
2565
- "ca-persian": {
2566
- "dateFormats": {
2567
- "full": "EEEE d MMMM y G",
2568
- "long": "d MMMM y G",
2569
- "medium": "d MMM y G",
2570
- "short": "yy-MM-dd GGGGG"
2571
- },
2572
- "timeFormats": {
2573
- "full": "HH 'h' mm 'min' ss 's' zzzz",
2574
- "long": "HH 'h' mm 'min' ss 's' z",
2575
- "medium": "HH 'h' mm 'min' ss 's'",
2576
- "short": "HH 'h' mm"
2577
- },
2578
- "dateTimeFormats": {
2579
- "full": "{1} 'à' {0}",
2580
- "long": "{1} 'à' {0}",
2581
- "medium": "{1} {0}",
2582
- "short": "{1} {0}",
2583
- "availableFormats": {
2584
- "Bh": "h 'h' B",
2585
- "Bhm": "h 'h' mm B",
2586
- "Bhms": "h 'h' mm 'min' ss 's' B",
2587
- "d": "d",
2588
- "E": "ccc",
2589
- "EBhm": "E h 'h' mm B",
2590
- "EBhms": "E h 'h' mm 'min' ss 's' B",
2591
- "Ed": "E d",
2592
- "Ehm": "E h 'h' mm a",
2593
- "EHm": "E HH 'h' mm",
2594
- "Ehms": "E h 'h' mm 'min' ss 's' a",
2595
- "EHms": "E HH 'h' mm 'min' ss 's'",
2596
- "Gy": "y G",
2597
- "GyMMM": "MMM y G",
2598
- "GyMMMd": "d MMM y G",
2599
- "GyMMMEd": "E d MMM y G",
2600
- "h": "h 'h' a",
2601
- "H": "HH 'h'",
2602
- "hm": "h 'h' mm a",
2603
- "Hm": "HH 'h' mm",
2604
- "hms": "h 'h' mm 'min' ss 's' a",
2605
- "Hms": "HH 'h' mm 'min' ss 's'",
2606
- "M": "L",
2607
- "Md": "M-d",
2608
- "MEd": "E M-d",
2609
- "MMd": "MM-d",
2610
- "MMdd": "MM-dd",
2611
- "MMM": "LLL",
2612
- "MMMd": "d MMM",
2613
- "MMMEd": "E d MMM",
2614
- "MMMMd": "d MMMM",
2615
- "ms": "mm 'min' ss 's'",
2616
- "y": "y G",
2617
- "yyyy": "y G",
2618
- "yyyyM": "y-MM G",
2619
- "yyyyMd": "y-MM-dd G",
2620
- "yyyyMEd": "E y-MM-dd G",
2621
- "yyyyMM": "y-MM G",
2622
- "yyyyMMM": "MMM y G",
2623
- "yyyyMMMd": "d MMM y G",
2624
- "yyyyMMMEd": "E d MMM y G",
2625
- "yyyyMMMM": "MMMM y G",
2626
- "yyyyQQQ": "QQQ y G",
2627
- "yyyyQQQQ": "QQQQ y G"
2628
- },
2629
- "appendItems": {
2630
- "Day": "{0} ({2}: {1})",
2631
- "Day-Of-Week": "{0} {1}",
2632
- "Era": "{1} {0}",
2633
- "Hour": "{0} ({2}: {1})",
2634
- "Minute": "{0} ({2}: {1})",
2635
- "Month": "{0} ({2}: {1})",
2636
- "Quarter": "{0} ({2}: {1})",
2637
- "Second": "{0} ({2}: {1})",
2638
- "Timezone": "{0} {1}",
2639
- "Week": "{0} ({2}: {1})",
2640
- "Year": "{1} {0}"
2641
- },
2642
- "intervalFormats": {
2643
- "intervalFormatFallback": "{0} – {1}",
2644
- "Bh": {
2645
- "B": "h 'h' B – h 'h' B",
2646
- "h": "h – h 'h' B"
2647
- },
2648
- "Bhm": {
2649
- "B": "h 'h' mm B – h 'h' mm B",
2650
- "h": "h 'h' mm – h 'h' mm B",
2651
- "m": "h 'h' mm – h 'h' mm B"
2652
- },
2653
- "d": {
2654
- "d": "d – d"
2655
- },
2656
- "Gy": {
2657
- "G": "y G – y G",
2658
- "y": "y–y G"
2659
- },
2660
- "GyM": {
2661
- "G": "y-MM GGGGG – y-MM GGGGG",
2662
- "M": "y-MM – y-MM GGGGG",
2663
- "y": "y-MM – y-MM GGGGG"
2664
- },
2665
- "GyMd": {
2666
- "d": "y-MM-dd – y-MM-dd GGGGG",
2667
- "G": "y-MM-dd GGGGG – y-MM-dd GGGGG",
2668
- "M": "y-MM-dd – y-MM-dd GGGGG",
2669
- "y": "y-MM-dd – y-MM-dd GGGGG"
2670
- },
2671
- "GyMEd": {
2672
- "d": "E y-MM-dd – E y-MM-dd GGGGG",
2673
- "G": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
2674
- "M": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
2675
- "y": "E y-MM-dd – E y-MM-dd GGGGG"
2676
- },
2677
- "GyMMM": {
2678
- "G": "MMM y G – MMM y G",
2679
- "M": "MMM y – MMM y G",
2680
- "y": "MMM y – MMM y G"
2681
- },
2682
- "GyMMMd": {
2683
- "d": "d–d MMM y G",
2684
- "G": "d MMM y G – d MMM y G",
2685
- "M": "d MMM – d MMM y G",
2686
- "y": "d MMM y – d MMM y G"
2687
- },
2688
- "GyMMMEd": {
2689
- "d": "E d MMM – E d MMM y G",
2690
- "G": "E d MMM y G – E d MMM y G",
2691
- "M": "E d MMM – E d MMM y G",
2692
- "y": "E d MMM y – E d MMM y G"
2693
- },
2694
- "h": {
2695
- "a": "h a – h a",
2696
- "h": "h – h a"
2697
- },
2698
- "H": {
2699
- "H": "HH – HH"
2700
- },
2701
- "hm": {
2702
- "a": "h:mm a – h:mm a",
2703
- "h": "h:mm – h:mm a",
2704
- "m": "h:mm – h:mm a"
2705
- },
2706
- "Hm": {
2707
- "H": "HH:mm – HH:mm",
2708
- "m": "HH:mm – HH:mm"
2709
- },
2710
- "hmv": {
2711
- "a": "h:mm a – h:mm a v",
2712
- "h": "h:mm – h:mm a v",
2713
- "m": "h:mm – h:mm a v"
2714
- },
2715
- "Hmv": {
2716
- "H": "HH:mm – HH:mm v",
2717
- "m": "HH:mm – HH:mm v"
2718
- },
2719
- "hv": {
2720
- "a": "h a – h a v",
2721
- "h": "h – h a v"
2722
- },
2723
- "Hv": {
2724
- "H": "HH – HH v"
2725
- },
2726
- "M": {
2727
- "M": "M – M"
2728
- },
2729
- "Md": {
2730
- "d": "MM-dd – MM-dd",
2731
- "M": "MM-dd – MM-dd"
2732
- },
2733
- "MEd": {
2734
- "d": "E MM-dd – E MM-dd",
2735
- "M": "E MM-dd – E MM-dd"
2736
- },
2737
- "MMM": {
2738
- "M": "MMM–MMM"
2739
- },
2740
- "MMMd": {
2741
- "d": "d–d MMM",
2742
- "M": "d MMM – d MMM"
2743
- },
2744
- "MMMEd": {
2745
- "d": "E d – E d MMM",
2746
- "M": "E d MMM – E d MMM"
2747
- },
2748
- "y": {
2749
- "y": "y – y G"
2750
- },
2751
- "yM": {
2752
- "M": "y-MM – y-MM G",
2753
- "y": "y-MM – y-MM G"
2754
- },
2755
- "yMd": {
2756
- "d": "y-MM-dd – y-MM-dd G",
2757
- "M": "y-MM-dd – y-MM-dd G",
2758
- "y": "y-MM-dd – y-MM-dd G"
2759
- },
2760
- "yMEd": {
2761
- "d": "E y-MM-dd – E y-MM-dd G",
2762
- "M": "E y-MM-dd – E y-MM-dd G",
2763
- "y": "E y-MM-dd – E y-MM-dd G"
2764
- },
2765
- "yMMM": {
2766
- "M": "MMM–MMM y G",
2767
- "y": "MMM y – MMM y G"
2768
- },
2769
- "yMMMd": {
2770
- "d": "d–d MMM y G",
2771
- "M": "d MMM – d MMM y G",
2772
- "y": "d MMM y – d MMM y G"
2773
- },
2774
- "yMMMEd": {
2775
- "d": "E d – E d MMM y G",
2776
- "M": "E d MMM – E d MMM y G",
2777
- "y": "E d MMM y – E d MMM y G"
2778
- },
2779
- "yMMMM": {
2780
- "M": "MMMM – MMMM y G",
2781
- "y": "MMMM y – MMMM y G"
2782
- }
2783
- }
2784
- },
2785
- "months": {
2786
- "format": {
2787
- "abbreviated": [
2788
- "Far.",
2789
- "Ord.",
2790
- "Kho.",
2791
- "Tir",
2792
- "Mor.",
2793
- "Šah.",
2794
- "Mehr",
2795
- "Âbâ.",
2796
- "Âzar",
2797
- "Dey",
2798
- "Bah.",
2799
- "Esf."
2800
- ],
2801
- "narrow": [
2802
- "1",
2803
- "2",
2804
- "3",
2805
- "4",
2806
- "5",
2807
- "6",
2808
- "7",
2809
- "8",
2810
- "9",
2811
- "10",
2812
- "11",
2813
- "12"
2814
- ],
2815
- "wide": [
2816
- "Farvardin",
2817
- "Ordibehešt",
2818
- "Khordâd",
2819
- "Tir",
2820
- "Mordâd",
2821
- "Šahrivar",
2822
- "Mehr",
2823
- "Âbân",
2824
- "Âzar",
2825
- "Dey",
2826
- "Bahman",
2827
- "Esfand"
2828
- ]
2829
- },
2830
- "stand-alone": {
2831
- "abbreviated": [
2832
- "Far.",
2833
- "Ord.",
2834
- "Kho.",
2835
- "Tir",
2836
- "Mor.",
2837
- "Šah.",
2838
- "Mehr",
2839
- "Âbâ.",
2840
- "Âzar",
2841
- "Dey",
2842
- "Bah.",
2843
- "Esf."
2844
- ],
2845
- "narrow": [
2846
- "1",
2847
- "2",
2848
- "3",
2849
- "4",
2850
- "5",
2851
- "6",
2852
- "7",
2853
- "8",
2854
- "9",
2855
- "10",
2856
- "11",
2857
- "12"
2858
- ],
2859
- "wide": [
2860
- "Farvardin",
2861
- "Ordibehešt",
2862
- "Khordâd",
2863
- "Tir",
2864
- "Mordâd",
2865
- "Šahrivar",
2866
- "Mehr",
2867
- "Âbân",
2868
- "Âzar",
2869
- "Dey",
2870
- "Bahman",
2871
- "Esfand"
2872
- ]
2873
- }
2874
- },
2875
- "days": {
2876
- "format": {
2877
- "abbreviated": [
2878
- "dim.",
2879
- "lun.",
2880
- "mar.",
2881
- "mer.",
2882
- "jeu.",
2883
- "ven.",
2884
- "sam."
2885
- ],
2886
- "narrow": [
2887
- "D",
2888
- "L",
2889
- "M",
2890
- "M",
2891
- "J",
2892
- "V",
2893
- "S"
2894
- ],
2895
- "short": [
2896
- "di",
2897
- "lu",
2898
- "ma",
2899
- "me",
2900
- "je",
2901
- "ve",
2902
- "sa"
2903
- ],
2904
- "wide": [
2905
- "dimanche",
2906
- "lundi",
2907
- "mardi",
2908
- "mercredi",
2909
- "jeudi",
2910
- "vendredi",
2911
- "samedi"
2912
- ]
2913
- },
2914
- "stand-alone": {
2915
- "abbreviated": [
2916
- "dim.",
2917
- "lun.",
2918
- "mar.",
2919
- "mer.",
2920
- "jeu.",
2921
- "ven.",
2922
- "sam."
2923
- ],
2924
- "narrow": [
2925
- "D",
2926
- "L",
2927
- "M",
2928
- "M",
2929
- "J",
2930
- "V",
2931
- "S"
2932
- ],
2933
- "short": [
2934
- "di",
2935
- "lu",
2936
- "ma",
2937
- "me",
2938
- "je",
2939
- "ve",
2940
- "sa"
2941
- ],
2942
- "wide": [
2943
- "dimanche",
2944
- "lundi",
2945
- "mardi",
2946
- "mercredi",
2947
- "jeudi",
2948
- "vendredi",
2949
- "samedi"
2950
- ]
2951
- }
2952
- },
2953
- "quarters": {
2954
- "format": {
2955
- "abbreviated": [
2956
- "T1",
2957
- "T2",
2958
- "T3",
2959
- "T4"
2960
- ],
2961
- "narrow": [
2962
- "1",
2963
- "2",
2964
- "3",
2965
- "4"
2966
- ],
2967
- "wide": [
2968
- "1er trimestre",
2969
- "2e trimestre",
2970
- "3e trimestre",
2971
- "4e trimestre"
2972
- ]
2973
- },
2974
- "stand-alone": {
2975
- "abbreviated": [
2976
- "T1",
2977
- "T2",
2978
- "T3",
2979
- "T4"
2980
- ],
2981
- "narrow": [
2982
- "1",
2983
- "2",
2984
- "3",
2985
- "4"
2986
- ],
2987
- "wide": [
2988
- "1er trimestre",
2989
- "2e trimestre",
2990
- "3e trimestre",
2991
- "4e trimestre"
2992
- ]
2993
- }
2994
- },
2995
- "dayPeriods": {
2996
- "format": {
2997
- "abbreviated": [
2998
- "a.m.",
2999
- "p.m."
3000
- ],
3001
- "narrow": [
3002
- "a",
3003
- "p"
3004
- ],
3005
- "wide": [
3006
- "a.m.",
3007
- "p.m."
3008
- ]
3009
- },
3010
- "stand-alone": {
3011
- "abbreviated": [
3012
- "a.m.",
3013
- "p.m."
3014
- ],
3015
- "narrow": [
3016
- "a.m.",
3017
- "p.m."
3018
- ],
3019
- "wide": [
3020
- "a.m.",
3021
- "p.m."
3022
- ]
3023
- }
3024
- },
3025
- "era-wide": {
3026
- "0": "AP"
3027
- },
3028
- "era-abbreviated": {
3029
- "0": "AP"
3030
- },
3031
- "era-narrow": {
3032
- "0": "AP"
3033
- }
3034
- },
3035
- "ca-buddhist": {
3036
- "dateFormats": {
3037
- "full": "EEEE d MMMM y G",
3038
- "long": "d MMMM y G",
3039
- "medium": "d MMM y G",
3040
- "short": "dd/MM/y GGGGG"
3041
- },
3042
- "timeFormats": {
3043
- "full": "HH 'h' mm 'min' ss 's' zzzz",
3044
- "long": "HH 'h' mm 'min' ss 's' z",
3045
- "medium": "HH 'h' mm 'min' ss 's'",
3046
- "short": "HH 'h' mm"
3047
- },
3048
- "dateTimeFormats": {
3049
- "full": "{1} 'à' {0}",
3050
- "long": "{1} 'à' {0}",
3051
- "medium": "{1} {0}",
3052
- "short": "{1} {0}",
3053
- "availableFormats": {
3054
- "Bh": "h 'h' B",
3055
- "Bhm": "h 'h' mm B",
3056
- "Bhms": "h 'h' mm 'min' ss 's' B",
3057
- "d": "d",
3058
- "E": "ccc",
3059
- "EBhm": "E h 'h' mm B",
3060
- "EBhms": "E h 'h' mm 'min' ss 's' B",
3061
- "Ed": "E d",
3062
- "Ehm": "E h 'h' mm a",
3063
- "EHm": "E HH 'h' mm",
3064
- "Ehms": "E h 'h' mm 'min' ss 's' a",
3065
- "EHms": "E HH 'h' mm 'min' ss 's'",
3066
- "Gy": "y G",
3067
- "GyMMM": "MMM y G",
3068
- "GyMMMd": "d MMM y G",
3069
- "GyMMMEd": "E d MMM y G",
3070
- "h": "h 'h' a",
3071
- "H": "HH 'h'",
3072
- "hm": "h 'h' mm a",
3073
- "Hm": "HH 'h' mm",
3074
- "hms": "h 'h' mm 'min' ss 's' a",
3075
- "Hms": "HH 'h' mm 'min' ss 's'",
3076
- "M": "L",
3077
- "Md": "d/M",
3078
- "MEd": "E d/M",
3079
- "MMd": "MM-d",
3080
- "MMdd": "MM-dd",
3081
- "MMM": "LLL",
3082
- "MMMd": "d MMM",
3083
- "MMMEd": "E d MMM",
3084
- "MMMMd": "d MMMM",
3085
- "ms": "mm 'min' ss 's'",
3086
- "y": "y G",
3087
- "yyyy": "y G",
3088
- "yyyyM": "y-MM G",
3089
- "yyyyMd": "y-MM-dd G",
3090
- "yyyyMEd": "E y-MM-dd G",
3091
- "yyyyMM": "y-MM G",
3092
- "yyyyMMM": "MMM y G",
3093
- "yyyyMMMd": "d MMM y G",
3094
- "yyyyMMMEd": "E d MMM y G",
3095
- "yyyyMMMM": "MMMM y G",
3096
- "yyyyQQQ": "QQQ y G",
3097
- "yyyyQQQQ": "QQQQ y G"
3098
- },
3099
- "appendItems": {
3100
- "Day": "{0} ({2}: {1})",
3101
- "Day-Of-Week": "{0} {1}",
3102
- "Era": "{1} {0}",
3103
- "Hour": "{0} ({2}: {1})",
3104
- "Minute": "{0} ({2}: {1})",
3105
- "Month": "{0} ({2}: {1})",
3106
- "Quarter": "{0} ({2}: {1})",
3107
- "Second": "{0} ({2}: {1})",
3108
- "Timezone": "{0} {1}",
3109
- "Week": "{0} ({2}: {1})",
3110
- "Year": "{1} {0}"
3111
- },
3112
- "intervalFormats": {
3113
- "intervalFormatFallback": "{0} – {1}",
3114
- "Bh": {
3115
- "B": "h 'h' B – h 'h' B",
3116
- "h": "h – h 'h' B"
3117
- },
3118
- "Bhm": {
3119
- "B": "h 'h' mm B – h 'h' mm B",
3120
- "h": "h 'h' mm – h 'h' mm B",
3121
- "m": "h 'h' mm – h 'h' mm B"
3122
- },
3123
- "d": {
3124
- "d": "d – d"
3125
- },
3126
- "Gy": {
3127
- "G": "y G – y G",
3128
- "y": "y–y G"
3129
- },
3130
- "GyM": {
3131
- "G": "y-MM GGGGG – y-MM GGGGG",
3132
- "M": "y-MM – y-MM GGGGG",
3133
- "y": "y-MM – y-MM GGGGG"
3134
- },
3135
- "GyMd": {
3136
- "d": "y-MM-dd – y-MM-dd GGGGG",
3137
- "G": "y-MM-dd GGGGG – y-MM-dd GGGGG",
3138
- "M": "y-MM-dd – y-MM-dd GGGGG",
3139
- "y": "y-MM-dd – y-MM-dd GGGGG"
3140
- },
3141
- "GyMEd": {
3142
- "d": "E y-MM-dd – E y-MM-dd GGGGG",
3143
- "G": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
3144
- "M": "E y-MM-dd GGGGG – E y-MM-dd GGGGG",
3145
- "y": "E y-MM-dd – E y-MM-dd GGGGG"
3146
- },
3147
- "GyMMM": {
3148
- "G": "MMM y G – MMM y G",
3149
- "M": "MMM y – MMM y G",
3150
- "y": "MMM y – MMM y G"
3151
- },
3152
- "GyMMMd": {
3153
- "d": "d–d MMM y G",
3154
- "G": "d MMM y G – d MMM y G",
3155
- "M": "d MMM – d MMM y G",
3156
- "y": "d MMM y – d MMM y G"
3157
- },
3158
- "GyMMMEd": {
3159
- "d": "E d MMM – E d MMM y G",
3160
- "G": "E d MMM y G – E d MMM y G",
3161
- "M": "E d MMM – E d MMM y G",
3162
- "y": "E d MMM y – E d MMM y G"
3163
- },
3164
- "h": {
3165
- "a": "h a – h a",
3166
- "h": "h – h a"
3167
- },
3168
- "H": {
3169
- "H": "HH – HH"
3170
- },
3171
- "hm": {
3172
- "a": "h:mm a – h:mm a",
3173
- "h": "h:mm – h:mm a",
3174
- "m": "h:mm – h:mm a"
3175
- },
3176
- "Hm": {
3177
- "H": "HH:mm – HH:mm",
3178
- "m": "HH:mm – HH:mm"
3179
- },
3180
- "hmv": {
3181
- "a": "h:mm a – h:mm a v",
3182
- "h": "h:mm – h:mm a v",
3183
- "m": "h:mm – h:mm a v"
3184
- },
3185
- "Hmv": {
3186
- "H": "HH:mm – HH:mm v",
3187
- "m": "HH:mm – HH:mm v"
3188
- },
3189
- "hv": {
3190
- "a": "h a – h a v",
3191
- "h": "h – h a v"
3192
- },
3193
- "Hv": {
3194
- "H": "HH – HH v"
3195
- },
3196
- "M": {
3197
- "M": "M – M"
3198
- },
3199
- "Md": {
3200
- "d": "MM-dd – MM-dd",
3201
- "M": "MM-dd – MM-dd"
3202
- },
3203
- "MEd": {
3204
- "d": "E MM-dd – E MM-dd",
3205
- "M": "E MM-dd – E MM-dd"
3206
- },
3207
- "MMM": {
3208
- "M": "MMM–MMM"
3209
- },
3210
- "MMMd": {
3211
- "d": "d–d MMM",
3212
- "M": "d MMM – d MMM"
3213
- },
3214
- "MMMEd": {
3215
- "d": "E d – E d MMM",
3216
- "M": "E d MMM – E d MMM"
3217
- },
3218
- "y": {
3219
- "y": "y – y G"
3220
- },
3221
- "yM": {
3222
- "M": "y-MM – y-MM G",
3223
- "y": "y-MM – y-MM G"
3224
- },
3225
- "yMd": {
3226
- "d": "y-MM-dd – y-MM-dd G",
3227
- "M": "y-MM-dd – y-MM-dd G",
3228
- "y": "y-MM-dd – y-MM-dd G"
3229
- },
3230
- "yMEd": {
3231
- "d": "E y-MM-dd – E y-MM-dd G",
3232
- "M": "E y-MM-dd – E y-MM-dd G",
3233
- "y": "E y-MM-dd – E y-MM-dd G"
3234
- },
3235
- "yMMM": {
3236
- "M": "MMM–MMM y G",
3237
- "y": "MMM y – MMM y G"
3238
- },
3239
- "yMMMd": {
3240
- "d": "d–d MMM y G",
3241
- "M": "d MMM – d MMM y G",
3242
- "y": "d MMM y – d MMM y G"
3243
- },
3244
- "yMMMEd": {
3245
- "d": "E d – E d MMM y G",
3246
- "M": "E d MMM – E d MMM y G",
3247
- "y": "E d MMM y – E d MMM y G"
3248
- },
3249
- "yMMMM": {
3250
- "M": "MMMM – MMMM y G",
3251
- "y": "MMMM y – MMMM y G"
3252
- }
3253
- }
3254
- },
3255
- "months": {
3256
- "format": {
3257
- "abbreviated": [
3258
- "janv.",
3259
- "févr.",
3260
- "mars",
3261
- "avr.",
3262
- "mai",
3263
- "juin",
3264
- "juill.",
3265
- "août",
3266
- "sept.",
3267
- "oct.",
3268
- "nov.",
3269
- "déc."
3270
- ],
3271
- "narrow": [
3272
- "J",
3273
- "F",
3274
- "M",
3275
- "A",
3276
- "M",
3277
- "J",
3278
- "J",
3279
- "A",
3280
- "S",
3281
- "O",
3282
- "N",
3283
- "D"
3284
- ],
3285
- "wide": [
3286
- "janvier",
3287
- "février",
3288
- "mars",
3289
- "avril",
3290
- "mai",
3291
- "juin",
3292
- "juillet",
3293
- "août",
3294
- "septembre",
3295
- "octobre",
3296
- "novembre",
3297
- "décembre"
3298
- ]
3299
- },
3300
- "stand-alone": {
3301
- "abbreviated": [
3302
- "janv.",
3303
- "févr.",
3304
- "mars",
3305
- "avr.",
3306
- "mai",
3307
- "juin",
3308
- "juill.",
3309
- "août",
3310
- "sept.",
3311
- "oct.",
3312
- "nov.",
3313
- "déc."
3314
- ],
3315
- "narrow": [
3316
- "J",
3317
- "F",
3318
- "M",
3319
- "A",
3320
- "M",
3321
- "J",
3322
- "J",
3323
- "A",
3324
- "S",
3325
- "O",
3326
- "N",
3327
- "D"
3328
- ],
3329
- "wide": [
3330
- "janvier",
3331
- "février",
3332
- "mars",
3333
- "avril",
3334
- "mai",
3335
- "juin",
3336
- "juillet",
3337
- "août",
3338
- "septembre",
3339
- "octobre",
3340
- "novembre",
3341
- "décembre"
3342
- ]
3343
- }
3344
- },
3345
- "days": {
3346
- "format": {
3347
- "abbreviated": [
3348
- "dim.",
3349
- "lun.",
3350
- "mar.",
3351
- "mer.",
3352
- "jeu.",
3353
- "ven.",
3354
- "sam."
3355
- ],
3356
- "narrow": [
3357
- "D",
3358
- "L",
3359
- "M",
3360
- "M",
3361
- "J",
3362
- "V",
3363
- "S"
3364
- ],
3365
- "short": [
3366
- "di",
3367
- "lu",
3368
- "ma",
3369
- "me",
3370
- "je",
3371
- "ve",
3372
- "sa"
3373
- ],
3374
- "wide": [
3375
- "dimanche",
3376
- "lundi",
3377
- "mardi",
3378
- "mercredi",
3379
- "jeudi",
3380
- "vendredi",
3381
- "samedi"
3382
- ]
3383
- },
3384
- "stand-alone": {
3385
- "abbreviated": [
3386
- "dim.",
3387
- "lun.",
3388
- "mar.",
3389
- "mer.",
3390
- "jeu.",
3391
- "ven.",
3392
- "sam."
3393
- ],
3394
- "narrow": [
3395
- "D",
3396
- "L",
3397
- "M",
3398
- "M",
3399
- "J",
3400
- "V",
3401
- "S"
3402
- ],
3403
- "short": [
3404
- "di",
3405
- "lu",
3406
- "ma",
3407
- "me",
3408
- "je",
3409
- "ve",
3410
- "sa"
3411
- ],
3412
- "wide": [
3413
- "dimanche",
3414
- "lundi",
3415
- "mardi",
3416
- "mercredi",
3417
- "jeudi",
3418
- "vendredi",
3419
- "samedi"
3420
- ]
3421
- }
3422
- },
3423
- "quarters": {
3424
- "format": {
3425
- "abbreviated": [
3426
- "T1",
3427
- "T2",
3428
- "T3",
3429
- "T4"
3430
- ],
3431
- "narrow": [
3432
- "1",
3433
- "2",
3434
- "3",
3435
- "4"
3436
- ],
3437
- "wide": [
3438
- "1er trimestre",
3439
- "2e trimestre",
3440
- "3e trimestre",
3441
- "4e trimestre"
3442
- ]
3443
- },
3444
- "stand-alone": {
3445
- "abbreviated": [
3446
- "T1",
3447
- "T2",
3448
- "T3",
3449
- "T4"
3450
- ],
3451
- "narrow": [
3452
- "1",
3453
- "2",
3454
- "3",
3455
- "4"
3456
- ],
3457
- "wide": [
3458
- "1er trimestre",
3459
- "2e trimestre",
3460
- "3e trimestre",
3461
- "4e trimestre"
3462
- ]
3463
- }
3464
- },
3465
- "dayPeriods": {
3466
- "format": {
3467
- "abbreviated": [
3468
- "a.m.",
3469
- "p.m."
3470
- ],
3471
- "narrow": [
3472
- "a",
3473
- "p"
3474
- ],
3475
- "wide": [
3476
- "a.m.",
3477
- "p.m."
3478
- ]
3479
- },
3480
- "stand-alone": {
3481
- "abbreviated": [
3482
- "a.m.",
3483
- "p.m."
3484
- ],
3485
- "narrow": [
3486
- "a.m.",
3487
- "p.m."
3488
- ],
3489
- "wide": [
3490
- "a.m.",
3491
- "p.m."
3492
- ]
3493
- }
3494
- },
3495
- "era-wide": {
3496
- "0": "ère bouddhique"
3497
- },
3498
- "era-abbreviated": {
3499
- "0": "E. B."
3500
- },
3501
- "era-narrow": {
3502
- "0": "EB"
3503
- }
3504
- },
3505
- "dateFields": {
3506
- "era": {
3507
- "displayName": "ère"
3508
- },
3509
- "year-wide": {
3510
- "displayName": "année",
3511
- "relative-type--1": "l’année dernière",
3512
- "relative-type-0": "cette année",
3513
- "relative-type-1": "l’année prochaine",
3514
- "relativeTime-type-future": {
3515
- "relativeTimePattern-count-one": "Dans {0} an",
3516
- "relativeTimePattern-count-other": "Dans {0} ans"
3517
- },
3518
- "relativeTime-type-past": {
3519
- "relativeTimePattern-count-one": "Il y a {0} an",
3520
- "relativeTimePattern-count-other": "Il y a {0} ans"
3521
- }
3522
- },
3523
- "year-short": {
3524
- "displayName": "a",
3525
- "relative-type--1": "l’année dernière",
3526
- "relative-type-0": "cette année",
3527
- "relative-type-1": "l’année prochaine",
3528
- "relativeTime-type-future": {
3529
- "relativeTimePattern-count-one": "dans {0} a",
3530
- "relativeTimePattern-count-other": "dans {0} a"
3531
- },
3532
- "relativeTime-type-past": {
3533
- "relativeTimePattern-count-one": "il y a {0} a",
3534
- "relativeTimePattern-count-other": "il y a {0} a"
3535
- }
3536
- },
3537
- "year-narrow": {
3538
- "displayName": "a",
3539
- "relative-type--1": "l’année dernière",
3540
- "relative-type-0": "cette année",
3541
- "relative-type-1": "l’année prochaine",
3542
- "relativeTime-type-future": {
3543
- "relativeTimePattern-count-one": "+{0} a",
3544
- "relativeTimePattern-count-other": "+{0} a"
3545
- },
3546
- "relativeTime-type-past": {
3547
- "relativeTimePattern-count-one": "-{0} a",
3548
- "relativeTimePattern-count-other": "-{0} a"
3549
- }
3550
- },
3551
- "quarter-wide": {
3552
- "displayName": "trimestre",
3553
- "relative-type--1": "le trimestre dernier",
3554
- "relative-type-0": "ce trimestre-ci",
3555
- "relative-type-1": "le trimestre prochain",
3556
- "relativeTime-type-future": {
3557
- "relativeTimePattern-count-one": "dans {0} trimestre",
3558
- "relativeTimePattern-count-other": "dans {0} trimestres"
3559
- },
3560
- "relativeTime-type-past": {
3561
- "relativeTimePattern-count-one": "il y a {0} trimestre",
3562
- "relativeTimePattern-count-other": "il y a {0} trimestres"
3563
- }
3564
- },
3565
- "quarter-short": {
3566
- "displayName": "trim.",
3567
- "relative-type--1": "trim. dernier",
3568
- "relative-type-0": "ce trimestre-ci",
3569
- "relative-type-1": "trim. prochain",
3570
- "relativeTime-type-future": {
3571
- "relativeTimePattern-count-one": "dans {0} trim.",
3572
- "relativeTimePattern-count-other": "dans {0} trim."
3573
- },
3574
- "relativeTime-type-past": {
3575
- "relativeTimePattern-count-one": "il y a {0} trim.",
3576
- "relativeTimePattern-count-other": "il y a {0} trim."
3577
- }
3578
- },
3579
- "quarter-narrow": {
3580
- "displayName": "trim.",
3581
- "relative-type--1": "trim. dernier",
3582
- "relative-type-0": "ce trimestre-ci",
3583
- "relative-type-1": "trim.prochain",
3584
- "relativeTime-type-future": {
3585
- "relativeTimePattern-count-one": "+{0} trim.",
3586
- "relativeTimePattern-count-other": "+{0} trim."
3587
- },
3588
- "relativeTime-type-past": {
3589
- "relativeTimePattern-count-one": "-{0} trim.",
3590
- "relativeTimePattern-count-other": "-{0} trim."
3591
- }
3592
- },
3593
- "month-wide": {
3594
- "displayName": "mois",
3595
- "relative-type--1": "le mois dernier",
3596
- "relative-type-0": "ce mois-ci",
3597
- "relative-type-1": "le mois prochain",
3598
- "relativeTime-type-future": {
3599
- "relativeTimePattern-count-one": "dans {0} mois",
3600
- "relativeTimePattern-count-other": "dans {0} mois"
3601
- },
3602
- "relativeTime-type-past": {
3603
- "relativeTimePattern-count-one": "il y a {0} mois",
3604
- "relativeTimePattern-count-other": "il y a {0} mois"
3605
- }
3606
- },
3607
- "month-short": {
3608
- "displayName": "m.",
3609
- "relative-type--1": "le mois dernier",
3610
- "relative-type-0": "ce mois-ci",
3611
- "relative-type-1": "le mois prochain",
3612
- "relativeTime-type-future": {
3613
- "relativeTimePattern-count-one": "dans {0} m.",
3614
- "relativeTimePattern-count-other": "dans {0} m."
3615
- },
3616
- "relativeTime-type-past": {
3617
- "relativeTimePattern-count-one": "il y a {0} m.",
3618
- "relativeTimePattern-count-other": "il y a {0} m."
3619
- }
3620
- },
3621
- "month-narrow": {
3622
- "displayName": "m.",
3623
- "relative-type--1": "le mois dernier",
3624
- "relative-type-0": "ce mois-ci",
3625
- "relative-type-1": "le mois prochain",
3626
- "relativeTime-type-future": {
3627
- "relativeTimePattern-count-one": "+{0} m.",
3628
- "relativeTimePattern-count-other": "+{0} m."
3629
- },
3630
- "relativeTime-type-past": {
3631
- "relativeTimePattern-count-one": "-{0} m.",
3632
- "relativeTimePattern-count-other": "-{0} m."
3633
- }
3634
- },
3635
- "week-wide": {
3636
- "displayName": "semaine",
3637
- "relative-type--1": "la semaine dernière",
3638
- "relative-type-0": "cette semaine",
3639
- "relative-type-1": "la semaine prochaine",
3640
- "relativeTime-type-future": {
3641
- "relativeTimePattern-count-one": "dans {0} semaine",
3642
- "relativeTimePattern-count-other": "dans {0} semaines"
3643
- },
3644
- "relativeTime-type-past": {
3645
- "relativeTimePattern-count-one": "il y a {0} semaine",
3646
- "relativeTimePattern-count-other": "il y a {0} semaines"
3647
- },
3648
- "relativePeriod": "la semaine du {0}"
3649
- },
3650
- "week-short": {
3651
- "displayName": "sem.",
3652
- "relative-type--1": "la semaine dernière",
3653
- "relative-type-0": "cette semaine",
3654
- "relative-type-1": "la semaine prochaine",
3655
- "relativeTime-type-future": {
3656
- "relativeTimePattern-count-one": "dans {0} sem.",
3657
- "relativeTimePattern-count-other": "dans {0} sem."
3658
- },
3659
- "relativeTime-type-past": {
3660
- "relativeTimePattern-count-one": "il y a {0} sem.",
3661
- "relativeTimePattern-count-other": "il y a {0} sem."
3662
- },
3663
- "relativePeriod": "sem. du {0}"
3664
- },
3665
- "week-narrow": {
3666
- "displayName": "sem.",
3667
- "relative-type--1": "la semaine dernière",
3668
- "relative-type-0": "cette semaine",
3669
- "relative-type-1": "la semaine prochaine",
3670
- "relativeTime-type-future": {
3671
- "relativeTimePattern-count-one": "+{0} sem.",
3672
- "relativeTimePattern-count-other": "+{0} sem."
3673
- },
3674
- "relativeTime-type-past": {
3675
- "relativeTimePattern-count-one": "-{0} sem.",
3676
- "relativeTimePattern-count-other": "-{0} sem."
3677
- },
3678
- "relativePeriod": "sem. du {0}"
3679
- },
3680
- "day-wide": {
3681
- "displayName": "jour",
3682
- "relative-type--2": "avant-hier",
3683
- "relative-type--1": "hier",
3684
- "relative-type-0": "aujourd’hui",
3685
- "relative-type-1": "demain",
3686
- "relative-type-2": "après-demain",
3687
- "relativeTime-type-future": {
3688
- "relativeTimePattern-count-one": "dans {0} jour",
3689
- "relativeTimePattern-count-other": "dans {0} jours"
3690
- },
3691
- "relativeTime-type-past": {
3692
- "relativeTimePattern-count-one": "il y a {0} jour",
3693
- "relativeTimePattern-count-other": "il y a {0} jours"
3694
- }
3695
- },
3696
- "day-short": {
3697
- "displayName": "j",
3698
- "relative-type--2": "avant-hier",
3699
- "relative-type--1": "hier",
3700
- "relative-type-0": "aujourd’hui",
3701
- "relative-type-1": "demain",
3702
- "relative-type-2": "après-demain",
3703
- "relativeTime-type-future": {
3704
- "relativeTimePattern-count-one": "dans {0} j",
3705
- "relativeTimePattern-count-other": "dans {0} j"
3706
- },
3707
- "relativeTime-type-past": {
3708
- "relativeTimePattern-count-one": "il y a {0} j",
3709
- "relativeTimePattern-count-other": "il y a {0} j"
3710
- }
3711
- },
3712
- "day-narrow": {
3713
- "displayName": "j",
3714
- "relative-type--2": "avant-hier",
3715
- "relative-type--1": "hier",
3716
- "relative-type-0": "aujourd’hui",
3717
- "relative-type-1": "demain",
3718
- "relative-type-2": "après-demain",
3719
- "relativeTime-type-future": {
3720
- "relativeTimePattern-count-one": "+{0} j",
3721
- "relativeTimePattern-count-other": "+{0} j"
3722
- },
3723
- "relativeTime-type-past": {
3724
- "relativeTimePattern-count-one": "-{0} j",
3725
- "relativeTimePattern-count-other": "-{0} j"
3726
- }
3727
- },
3728
- "weekday": {
3729
- "displayName": "jour de la semaine"
3730
- },
3731
- "hour-wide": {
3732
- "displayName": "heure",
3733
- "relative-type-0": "cette heure-ci",
3734
- "relativeTime-type-future": {
3735
- "relativeTimePattern-count-one": "dans {0} heure",
3736
- "relativeTimePattern-count-other": "dans {0} heures"
3737
- },
3738
- "relativeTime-type-past": {
3739
- "relativeTimePattern-count-one": "il y a {0} heure",
3740
- "relativeTimePattern-count-other": "il y a {0} heures"
3741
- }
3742
- },
3743
- "hour-short": {
3744
- "displayName": "h",
3745
- "relative-type-0": "cette heure-ci",
3746
- "relativeTime-type-future": {
3747
- "relativeTimePattern-count-one": "dans {0} h",
3748
- "relativeTimePattern-count-other": "dans {0} h"
3749
- },
3750
- "relativeTime-type-past": {
3751
- "relativeTimePattern-count-one": "il y a {0} h",
3752
- "relativeTimePattern-count-other": "il y a {0} h"
3753
- }
3754
- },
3755
- "hour-narrow": {
3756
- "displayName": "h",
3757
- "relative-type-0": "cette heure-ci",
3758
- "relativeTime-type-future": {
3759
- "relativeTimePattern-count-one": "+{0} h",
3760
- "relativeTimePattern-count-other": "+{0} h"
3761
- },
3762
- "relativeTime-type-past": {
3763
- "relativeTimePattern-count-one": "-{0} h",
3764
- "relativeTimePattern-count-other": "-{0} h"
3765
- }
3766
- },
3767
- "minute-wide": {
3768
- "displayName": "minute",
3769
- "relative-type-0": "cette minute-ci",
3770
- "relativeTime-type-future": {
3771
- "relativeTimePattern-count-one": "dans {0} minute",
3772
- "relativeTimePattern-count-other": "dans {0} minutes"
3773
- },
3774
- "relativeTime-type-past": {
3775
- "relativeTimePattern-count-one": "il y a {0} minute",
3776
- "relativeTimePattern-count-other": "il y a {0} minutes"
3777
- }
3778
- },
3779
- "minute-short": {
3780
- "displayName": "min",
3781
- "relative-type-0": "cette minute-ci",
3782
- "relativeTime-type-future": {
3783
- "relativeTimePattern-count-one": "dans {0} min",
3784
- "relativeTimePattern-count-other": "dans {0} min"
3785
- },
3786
- "relativeTime-type-past": {
3787
- "relativeTimePattern-count-one": "il y a {0} min",
3788
- "relativeTimePattern-count-other": "il y a {0} min"
3789
- }
3790
- },
3791
- "minute-narrow": {
3792
- "displayName": "min",
3793
- "relative-type-0": "cette minute-ci",
3794
- "relativeTime-type-future": {
3795
- "relativeTimePattern-count-one": "+{0} min",
3796
- "relativeTimePattern-count-other": "+{0} min"
3797
- },
3798
- "relativeTime-type-past": {
3799
- "relativeTimePattern-count-one": "-{0} min",
3800
- "relativeTimePattern-count-other": "-{0} min"
3801
- }
3802
- },
3803
- "second-wide": {
3804
- "displayName": "seconde",
3805
- "relative-type-0": "maintenant",
3806
- "relativeTime-type-future": {
3807
- "relativeTimePattern-count-one": "dans {0} seconde",
3808
- "relativeTimePattern-count-other": "dans {0} secondes"
3809
- },
3810
- "relativeTime-type-past": {
3811
- "relativeTimePattern-count-one": "il y a {0} seconde",
3812
- "relativeTimePattern-count-other": "il y a {0} secondes"
3813
- }
3814
- },
3815
- "second-short": {
3816
- "displayName": "s",
3817
- "relative-type-0": "maintenant",
3818
- "relativeTime-type-future": {
3819
- "relativeTimePattern-count-one": "dans {0} s",
3820
- "relativeTimePattern-count-other": "dans {0} s"
3821
- },
3822
- "relativeTime-type-past": {
3823
- "relativeTimePattern-count-one": "il y a {0} s",
3824
- "relativeTimePattern-count-other": "il y a {0} s"
3825
- }
3826
- },
3827
- "second-narrow": {
3828
- "displayName": "s",
3829
- "relative-type-0": "maintenant",
3830
- "relativeTime-type-future": {
3831
- "relativeTimePattern-count-one": "+ {0} s",
3832
- "relativeTimePattern-count-other": "+{0} s"
3833
- },
3834
- "relativeTime-type-past": {
3835
- "relativeTimePattern-count-one": "-{0} s",
3836
- "relativeTimePattern-count-other": "-{0} s"
3837
- }
3838
- },
3839
- "zone": {
3840
- "displayName": "fuseau horaire"
3841
- }
3842
- },
3843
- "decimalFormat": {
3844
- "standard": "#,##0.###"
3845
- },
3846
- "decimalFormat-long": {
3847
- "1000-one": "0 mille",
3848
- "1000-other": "0 mille",
3849
- "10000-one": "00 mille",
3850
- "10000-other": "00 mille",
3851
- "100000-one": "000 mille",
3852
- "100000-other": "000 mille",
3853
- "1000000-one": "0 million",
3854
- "1000000-other": "0 millions",
3855
- "10000000-one": "00 million",
3856
- "10000000-other": "00 millions",
3857
- "100000000-one": "000 million",
3858
- "100000000-other": "000 millions",
3859
- "1000000000-one": "0 milliard",
3860
- "1000000000-other": "0 milliards",
3861
- "10000000000-one": "00 milliard",
3862
- "10000000000-other": "00 milliards",
3863
- "100000000000-one": "000 milliard",
3864
- "100000000000-other": "000 milliards",
3865
- "1000000000000-one": "0 billion",
3866
- "1000000000000-other": "0 billions",
3867
- "10000000000000-one": "00 billion",
3868
- "10000000000000-other": "00 billions",
3869
- "100000000000000-one": "000 billion",
3870
- "100000000000000-other": "000 billions"
3871
- },
3872
- "decimalFormat-short": {
3873
- "1000-one": "0 k",
3874
- "1000-other": "0 k",
3875
- "10000-one": "00 k",
3876
- "10000-other": "00 k",
3877
- "100000-one": "000 k",
3878
- "100000-other": "000 k",
3879
- "1000000-one": "0 M",
3880
- "1000000-other": "0 M",
3881
- "10000000-one": "00 M",
3882
- "10000000-other": "00 M",
3883
- "100000000-one": "000 M",
3884
- "100000000-other": "000 M",
3885
- "1000000000-one": "0 G",
3886
- "1000000000-other": "0 G",
3887
- "10000000000-one": "00 G",
3888
- "10000000000-other": "00 G",
3889
- "100000000000-one": "000 G",
3890
- "100000000000-other": "000 G",
3891
- "1000000000000-one": "0 T",
3892
- "1000000000000-other": "0 T",
3893
- "10000000000000-one": "00 T",
3894
- "10000000000000-other": "00 T",
3895
- "100000000000000-one": "000 T",
3896
- "100000000000000-other": "000 T"
3897
- },
3898
- "scientificFormat": {
3899
- "standard": "#E0"
3900
- },
3901
- "percentFormat": {
3902
- "standard": "#,##0 %"
3903
- },
3904
- "currencyFormat": {
3905
- "standard": "#,##0.00 ¤",
3906
- "accounting": "#,##0.00 ¤;(#,##0.00 ¤)",
3907
- "currencySpacing": {
3908
- "beforeCurrency": {
3909
- "currencyMatch": "[:^S:]",
3910
- "surroundingMatch": "[:digit:]",
3911
- "insertBetween": " "
3912
- },
3913
- "afterCurrency": {
3914
- "currencyMatch": "[:^S:]",
3915
- "surroundingMatch": "[:digit:]",
3916
- "insertBetween": " "
3917
- }
3918
- },
3919
- "sap-standard": "#,##0.00 ¤",
3920
- "sap-accounting": "#,##0.00 ¤;(#,##0.00 ¤)"
3921
- },
3922
- "miscPattern": {
3923
- "approximately": "≈{0}",
3924
- "atLeast": "≥{0}",
3925
- "atMost": "≤{0}",
3926
- "range": "{0}–{1}"
3927
- },
3928
- "currencyFormat-short": {
3929
- "1000-one": "0 k¤",
3930
- "1000-other": "0 k¤",
3931
- "10000-one": "00 k¤",
3932
- "10000-other": "00 k¤",
3933
- "100000-one": "000 k¤",
3934
- "100000-other": "000 k¤",
3935
- "1000000-one": "0 M¤",
3936
- "1000000-other": "0 M¤",
3937
- "10000000-one": "00 M¤",
3938
- "10000000-other": "00 M¤",
3939
- "100000000-one": "000 M¤",
3940
- "100000000-other": "000 M¤",
3941
- "1000000000-one": "0 G¤",
3942
- "1000000000-other": "0 G¤",
3943
- "10000000000-one": "00 G¤",
3944
- "10000000000-other": "00 G¤",
3945
- "100000000000-one": "000 G¤",
3946
- "100000000000-other": "000 G¤",
3947
- "1000000000000-one": "0 T¤",
3948
- "1000000000000-other": "0 T¤",
3949
- "10000000000000-one": "00 T¤",
3950
- "10000000000000-other": "00 T¤",
3951
- "100000000000000-one": "000 T¤",
3952
- "100000000000000-other": "000 T¤"
3953
- },
3954
- "symbols-latn-decimal": ",",
3955
- "symbols-latn-group": " ",
3956
- "symbols-latn-list": ";",
3957
- "symbols-latn-percentSign": "%",
3958
- "symbols-latn-plusSign": "+",
3959
- "symbols-latn-minusSign": "-",
3960
- "symbols-latn-exponential": "E",
3961
- "symbols-latn-superscriptingExponent": "×",
3962
- "symbols-latn-perMille": "‰",
3963
- "symbols-latn-infinity": "∞",
3964
- "symbols-latn-nan": "NaN",
3965
- "symbols-latn-timeSeparator": ":",
3966
- "currencySymbols": {
3967
- "AUD": "$ AU",
3968
- "BEF": "FB",
3969
- "BRL": "R$",
3970
- "CAD": "$",
3971
- "CNY": "CN¥",
3972
- "CYP": "£CY",
3973
- "EUR": "€",
3974
- "FRF": "F",
3975
- "GBP": "£",
3976
- "HKD": "$ HK",
3977
- "IEP": "£IE",
3978
- "ILP": "£IL",
3979
- "ITL": "₤IT",
3980
- "JPY": "¥",
3981
- "MTP": "£MT",
3982
- "NZD": "$ NZ",
3983
- "RHD": "$RH",
3984
- "SGD": "$ SG",
3985
- "USD": "$ US",
3986
- "XXX": "¤"
3987
- },
3988
- "rtl": false,
3989
- "listPattern-standard-wide": {
3990
- "2": "{0} et {1}",
3991
- "start": "{0}, {1}",
3992
- "middle": "{0}, {1}",
3993
- "end": "{0} et {1}"
3994
- },
3995
- "listPattern-or-wide": {
3996
- "2": "{0} ou {1}",
3997
- "start": "{0}, {1}",
3998
- "middle": "{0}, {1}",
3999
- "end": "{0} ou {1}"
4000
- },
4001
- "listPattern-or-short": {
4002
- "2": "{0} ou {1}",
4003
- "start": "{0}, {1}",
4004
- "middle": "{0}, {1}",
4005
- "end": "{0} ou {1}"
4006
- },
4007
- "listPattern-standard-short": {
4008
- "2": "{0} et {1}",
4009
- "start": "{0}, {1}",
4010
- "middle": "{0}, {1}",
4011
- "end": "{0} et {1}"
4012
- },
4013
- "units": {
4014
- "short": {
4015
- "per": {
4016
- "compoundUnitPattern": "{0}/{1}"
4017
- },
4018
- "acceleration-g-force": {
4019
- "displayName": "G",
4020
- "unitPattern-count-one": "{0} G",
4021
- "unitPattern-count-other": "{0} G"
4022
- },
4023
- "acceleration-meter-per-second-squared": {
4024
- "displayName": "m/s²",
4025
- "unitPattern-count-one": "{0} m/s²",
4026
- "unitPattern-count-other": "{0} m/s²"
4027
- },
4028
- "angle-revolution": {
4029
- "displayName": "tr",
4030
- "unitPattern-count-one": "{0} tr",
4031
- "unitPattern-count-other": "{0} tr"
4032
- },
4033
- "angle-radian": {
4034
- "displayName": "rad",
4035
- "unitPattern-count-one": "{0} rad",
4036
- "unitPattern-count-other": "{0} rad"
4037
- },
4038
- "angle-degree": {
4039
- "displayName": "°",
4040
- "unitPattern-count-one": "{0}°",
4041
- "unitPattern-count-other": "{0}°"
4042
- },
4043
- "angle-arc-minute": {
4044
- "displayName": "′",
4045
- "unitPattern-count-one": "{0}′",
4046
- "unitPattern-count-other": "{0}′"
4047
- },
4048
- "angle-arc-second": {
4049
- "displayName": "″",
4050
- "unitPattern-count-one": "{0}″",
4051
- "unitPattern-count-other": "{0}″"
4052
- },
4053
- "area-square-kilometer": {
4054
- "displayName": "km²",
4055
- "unitPattern-count-one": "{0} km²",
4056
- "unitPattern-count-other": "{0} km²",
4057
- "perUnitPattern": "{0}/km²"
4058
- },
4059
- "area-hectare": {
4060
- "displayName": "ha",
4061
- "unitPattern-count-one": "{0} ha",
4062
- "unitPattern-count-other": "{0} ha"
4063
- },
4064
- "area-square-meter": {
4065
- "displayName": "m²",
4066
- "unitPattern-count-one": "{0} m²",
4067
- "unitPattern-count-other": "{0} m²",
4068
- "perUnitPattern": "{0}/m²"
4069
- },
4070
- "area-square-centimeter": {
4071
- "displayName": "cm²",
4072
- "unitPattern-count-one": "{0} cm²",
4073
- "unitPattern-count-other": "{0} cm²",
4074
- "perUnitPattern": "{0}/cm²"
4075
- },
4076
- "area-square-mile": {
4077
- "displayName": "mi²",
4078
- "unitPattern-count-one": "{0} mi²",
4079
- "unitPattern-count-other": "{0} mi²",
4080
- "perUnitPattern": "{0}/mi²"
4081
- },
4082
- "area-acre": {
4083
- "displayName": "ac",
4084
- "unitPattern-count-one": "{0} ac",
4085
- "unitPattern-count-other": "{0} ac"
4086
- },
4087
- "area-square-yard": {
4088
- "displayName": "vg²",
4089
- "unitPattern-count-one": "{0} vg²",
4090
- "unitPattern-count-other": "{0} vg²"
4091
- },
4092
- "area-square-foot": {
4093
- "displayName": "pi²",
4094
- "unitPattern-count-one": "{0} pi²",
4095
- "unitPattern-count-other": "{0} pi²"
4096
- },
4097
- "area-square-inch": {
4098
- "displayName": "po²",
4099
- "unitPattern-count-one": "{0} po²",
4100
- "unitPattern-count-other": "{0} po²",
4101
- "perUnitPattern": "{0}/po²"
4102
- },
4103
- "area-dunam": {
4104
- "displayName": "dounam",
4105
- "unitPattern-count-one": "{0} dounam",
4106
- "unitPattern-count-other": "{0} dounam"
4107
- },
4108
- "concentr-karat": {
4109
- "displayName": "carats",
4110
- "unitPattern-count-one": "{0} ct",
4111
- "unitPattern-count-other": "{0} ct"
4112
- },
4113
- "concentr-milligram-per-deciliter": {
4114
- "displayName": "mg/dl",
4115
- "unitPattern-count-one": "{0} mg/dl",
4116
- "unitPattern-count-other": "{0} mg/dl"
4117
- },
4118
- "concentr-millimole-per-liter": {
4119
- "displayName": "mmol/l",
4120
- "unitPattern-count-one": "{0} mmol/l",
4121
- "unitPattern-count-other": "{0} mmol/l"
4122
- },
4123
- "concentr-part-per-million": {
4124
- "displayName": "ppm",
4125
- "unitPattern-count-one": "{0} ppm",
4126
- "unitPattern-count-other": "{0} ppm"
4127
- },
4128
- "concentr-percent": {
4129
- "displayName": "%",
4130
- "unitPattern-count-one": "{0} %",
4131
- "unitPattern-count-other": "{0} %"
4132
- },
4133
- "concentr-permille": {
4134
- "displayName": "‰",
4135
- "unitPattern-count-one": "{0} ‰",
4136
- "unitPattern-count-other": "{0} ‰"
4137
- },
4138
- "concentr-permyriad": {
4139
- "displayName": "‱",
4140
- "unitPattern-count-one": "{0} ‱",
4141
- "unitPattern-count-other": "{0} ‱"
4142
- },
4143
- "concentr-mole": {
4144
- "displayName": "mol",
4145
- "unitPattern-count-one": "{0} mol",
4146
- "unitPattern-count-other": "{0} mol"
4147
- },
4148
- "consumption-liter-per-kilometer": {
4149
- "displayName": "L/km",
4150
- "unitPattern-count-one": "{0} L/km",
4151
- "unitPattern-count-other": "{0} L/km"
4152
- },
4153
- "consumption-liter-per-100kilometers": {
4154
- "displayName": "L/100 km",
4155
- "unitPattern-count-one": "{0} L/100 km",
4156
- "unitPattern-count-other": "{0} L/100 km"
4157
- },
4158
- "consumption-mile-per-gallon": {
4159
- "displayName": "mi/gal",
4160
- "unitPattern-count-one": "{0} mi/gal",
4161
- "unitPattern-count-other": "{0} mi/gal"
4162
- },
4163
- "consumption-mile-per-gallon-imperial": {
4164
- "displayName": "mi/gal Imp",
4165
- "unitPattern-count-one": "{0} mi/gal Imp",
4166
- "unitPattern-count-other": "{0} mi/gal Imp"
4167
- },
4168
- "digital-petabyte": {
4169
- "displayName": "Po",
4170
- "unitPattern-count-one": "{0} Po",
4171
- "unitPattern-count-other": "{0} Po"
4172
- },
4173
- "digital-terabyte": {
4174
- "displayName": "To",
4175
- "unitPattern-count-one": "{0} To",
4176
- "unitPattern-count-other": "{0} To"
4177
- },
4178
- "digital-terabit": {
4179
- "displayName": "Tb",
4180
- "unitPattern-count-one": "{0} Tb",
4181
- "unitPattern-count-other": "{0} Tb"
4182
- },
4183
- "digital-gigabyte": {
4184
- "displayName": "Go",
4185
- "unitPattern-count-one": "{0} Go",
4186
- "unitPattern-count-other": "{0} Go"
4187
- },
4188
- "digital-gigabit": {
4189
- "displayName": "Gb",
4190
- "unitPattern-count-one": "{0} Gb",
4191
- "unitPattern-count-other": "{0} Gb"
4192
- },
4193
- "digital-megabyte": {
4194
- "displayName": "Mo",
4195
- "unitPattern-count-one": "{0} Mo",
4196
- "unitPattern-count-other": "{0} Mo"
4197
- },
4198
- "digital-megabit": {
4199
- "displayName": "Mb",
4200
- "unitPattern-count-one": "{0} Mb",
4201
- "unitPattern-count-other": "{0} Mb"
4202
- },
4203
- "digital-kilobyte": {
4204
- "displayName": "ko",
4205
- "unitPattern-count-one": "{0} ko",
4206
- "unitPattern-count-other": "{0} ko"
4207
- },
4208
- "digital-kilobit": {
4209
- "displayName": "kb",
4210
- "unitPattern-count-one": "{0} kb",
4211
- "unitPattern-count-other": "{0} kb"
4212
- },
4213
- "digital-byte": {
4214
- "displayName": "octet",
4215
- "unitPattern-count-one": "{0} octet",
4216
- "unitPattern-count-other": "{0} octet"
4217
- },
4218
- "digital-bit": {
4219
- "displayName": "bit",
4220
- "unitPattern-count-one": "{0} bit",
4221
- "unitPattern-count-other": "{0} bit"
4222
- },
4223
- "duration-century": {
4224
- "displayName": "si",
4225
- "unitPattern-count-one": "{0} siècle",
4226
- "unitPattern-count-other": "{0} siècles"
4227
- },
4228
- "duration-year": {
4229
- "displayName": "ans",
4230
- "unitPattern-count-one": "{0} an",
4231
- "unitPattern-count-other": "{0} ans",
4232
- "perUnitPattern": "{0}/an"
4233
- },
4234
- "duration-month": {
4235
- "displayName": "m.",
4236
- "unitPattern-count-one": "{0} m.",
4237
- "unitPattern-count-other": "{0} m.",
4238
- "perUnitPattern": "{0}/m."
4239
- },
4240
- "duration-week": {
4241
- "displayName": "sem.",
4242
- "unitPattern-count-one": "{0} sem.",
4243
- "unitPattern-count-other": "{0} sem.",
4244
- "perUnitPattern": "{0}/sem."
4245
- },
4246
- "duration-day": {
4247
- "displayName": "j",
4248
- "unitPattern-count-one": "{0} j",
4249
- "unitPattern-count-other": "{0} j",
4250
- "perUnitPattern": "{0}/j"
4251
- },
4252
- "duration-hour": {
4253
- "displayName": "h",
4254
- "unitPattern-count-one": "{0} h",
4255
- "unitPattern-count-other": "{0} h",
4256
- "perUnitPattern": "{0}/h"
4257
- },
4258
- "duration-minute": {
4259
- "displayName": "min",
4260
- "unitPattern-count-one": "{0} min",
4261
- "unitPattern-count-other": "{0} min",
4262
- "perUnitPattern": "{0}/min"
4263
- },
4264
- "duration-second": {
4265
- "displayName": "s",
4266
- "unitPattern-count-one": "{0} s",
4267
- "unitPattern-count-other": "{0} s",
4268
- "perUnitPattern": "{0}/s"
4269
- },
4270
- "duration-millisecond": {
4271
- "displayName": "ms",
4272
- "unitPattern-count-one": "{0} ms",
4273
- "unitPattern-count-other": "{0} ms"
4274
- },
4275
- "duration-microsecond": {
4276
- "displayName": "μs",
4277
- "unitPattern-count-one": "{0} μs",
4278
- "unitPattern-count-other": "{0} μs"
4279
- },
4280
- "duration-nanosecond": {
4281
- "displayName": "ns",
4282
- "unitPattern-count-one": "{0} ns",
4283
- "unitPattern-count-other": "{0} ns"
4284
- },
4285
- "electric-ampere": {
4286
- "displayName": "A",
4287
- "unitPattern-count-one": "{0} A",
4288
- "unitPattern-count-other": "{0} A"
4289
- },
4290
- "electric-milliampere": {
4291
- "displayName": "mA",
4292
- "unitPattern-count-one": "{0} mA",
4293
- "unitPattern-count-other": "{0} mA"
4294
- },
4295
- "electric-ohm": {
4296
- "displayName": "Ω",
4297
- "unitPattern-count-one": "{0} Ω",
4298
- "unitPattern-count-other": "{0} Ω"
4299
- },
4300
- "electric-volt": {
4301
- "displayName": "V",
4302
- "unitPattern-count-one": "{0} V",
4303
- "unitPattern-count-other": "{0} V"
4304
- },
4305
- "energy-kilocalorie": {
4306
- "displayName": "kcal",
4307
- "unitPattern-count-one": "{0} kcal",
4308
- "unitPattern-count-other": "{0} kcal"
4309
- },
4310
- "energy-calorie": {
4311
- "displayName": "cal",
4312
- "unitPattern-count-one": "{0} cal",
4313
- "unitPattern-count-other": "{0} cal"
4314
- },
4315
- "energy-foodcalorie": {
4316
- "displayName": "kcal",
4317
- "unitPattern-count-one": "{0} kcal",
4318
- "unitPattern-count-other": "{0} kcal"
4319
- },
4320
- "energy-kilojoule": {
4321
- "displayName": "kJ",
4322
- "unitPattern-count-one": "{0} kJ",
4323
- "unitPattern-count-other": "{0} kJ"
4324
- },
4325
- "energy-joule": {
4326
- "displayName": "J",
4327
- "unitPattern-count-one": "{0} J",
4328
- "unitPattern-count-other": "{0} J"
4329
- },
4330
- "energy-kilowatt-hour": {
4331
- "displayName": "kWh",
4332
- "unitPattern-count-one": "{0} kWh",
4333
- "unitPattern-count-other": "{0} kWh"
4334
- },
4335
- "energy-electronvolt": {
4336
- "displayName": "eV",
4337
- "unitPattern-count-one": "{0} eV",
4338
- "unitPattern-count-other": "{0} eV"
4339
- },
4340
- "energy-british-thermal-unit": {
4341
- "displayName": "BTU",
4342
- "unitPattern-count-one": "{0} BTU",
4343
- "unitPattern-count-other": "{0} BTU"
4344
- },
4345
- "force-pound-force": {
4346
- "displayName": "lbf",
4347
- "unitPattern-count-one": "{0} lbf",
4348
- "unitPattern-count-other": "{0} lbf"
4349
- },
4350
- "force-newton": {
4351
- "displayName": "N",
4352
- "unitPattern-count-one": "{0} N",
4353
- "unitPattern-count-other": "{0} N"
4354
- },
4355
- "frequency-gigahertz": {
4356
- "displayName": "GHz",
4357
- "unitPattern-count-one": "{0} GHz",
4358
- "unitPattern-count-other": "{0} GHz"
4359
- },
4360
- "frequency-megahertz": {
4361
- "displayName": "MHz",
4362
- "unitPattern-count-one": "{0} MHz",
4363
- "unitPattern-count-other": "{0} MHz"
4364
- },
4365
- "frequency-kilohertz": {
4366
- "displayName": "kHz",
4367
- "unitPattern-count-one": "{0} kHz",
4368
- "unitPattern-count-other": "{0} kHz"
4369
- },
4370
- "frequency-hertz": {
4371
- "displayName": "Hz",
4372
- "unitPattern-count-one": "{0} Hz",
4373
- "unitPattern-count-other": "{0} Hz"
4374
- },
4375
- "length-kilometer": {
4376
- "displayName": "km",
4377
- "unitPattern-count-one": "{0} km",
4378
- "unitPattern-count-other": "{0} km",
4379
- "perUnitPattern": "{0}/km"
4380
- },
4381
- "length-meter": {
4382
- "displayName": "m",
4383
- "unitPattern-count-one": "{0} m",
4384
- "unitPattern-count-other": "{0} m",
4385
- "perUnitPattern": "{0}/m"
4386
- },
4387
- "length-decimeter": {
4388
- "displayName": "dm",
4389
- "unitPattern-count-one": "{0} dm",
4390
- "unitPattern-count-other": "{0} dm"
4391
- },
4392
- "length-centimeter": {
4393
- "displayName": "cm",
4394
- "unitPattern-count-one": "{0} cm",
4395
- "unitPattern-count-other": "{0} cm",
4396
- "perUnitPattern": "{0}/cm"
4397
- },
4398
- "length-millimeter": {
4399
- "displayName": "mm",
4400
- "unitPattern-count-one": "{0} mm",
4401
- "unitPattern-count-other": "{0} mm"
4402
- },
4403
- "length-micrometer": {
4404
- "displayName": "µm",
4405
- "unitPattern-count-one": "{0} µm",
4406
- "unitPattern-count-other": "{0} µm"
4407
- },
4408
- "length-nanometer": {
4409
- "displayName": "nm",
4410
- "unitPattern-count-one": "{0} nm",
4411
- "unitPattern-count-other": "{0} nm"
4412
- },
4413
- "length-picometer": {
4414
- "displayName": "pm",
4415
- "unitPattern-count-one": "{0} pm",
4416
- "unitPattern-count-other": "{0} pm"
4417
- },
4418
- "length-mile": {
4419
- "displayName": "mi",
4420
- "unitPattern-count-one": "{0} mi",
4421
- "unitPattern-count-other": "{0} mi"
4422
- },
4423
- "length-yard": {
4424
- "displayName": "vg",
4425
- "unitPattern-count-one": "{0} vg",
4426
- "unitPattern-count-other": "{0} vg"
4427
- },
4428
- "length-foot": {
4429
- "displayName": "pi",
4430
- "unitPattern-count-one": "{0} pi",
4431
- "unitPattern-count-other": "{0} pi",
4432
- "perUnitPattern": "{0}/pi"
4433
- },
4434
- "length-inch": {
4435
- "displayName": "po",
4436
- "unitPattern-count-one": "{0} po",
4437
- "unitPattern-count-other": "{0} po",
4438
- "perUnitPattern": "{0}/po"
4439
- },
4440
- "length-parsec": {
4441
- "displayName": "pc",
4442
- "unitPattern-count-one": "{0} pc",
4443
- "unitPattern-count-other": "{0} pc"
4444
- },
4445
- "length-light-year": {
4446
- "displayName": "al",
4447
- "unitPattern-count-one": "{0} al",
4448
- "unitPattern-count-other": "{0} al"
4449
- },
4450
- "length-astronomical-unit": {
4451
- "displayName": "ua",
4452
- "unitPattern-count-one": "{0} ua",
4453
- "unitPattern-count-other": "{0} ua"
4454
- },
4455
- "length-furlong": {
4456
- "displayName": "fur",
4457
- "unitPattern-count-other": "{0} fur"
4458
- },
4459
- "length-fathom": {
4460
- "displayName": "fm",
4461
- "unitPattern-count-one": "{0} fth",
4462
- "unitPattern-count-other": "{0} fth"
4463
- },
4464
- "length-nautical-mile": {
4465
- "displayName": "NM",
4466
- "unitPattern-count-one": "{0} NM",
4467
- "unitPattern-count-other": "{0} NM"
4468
- },
4469
- "length-mile-scandinavian": {
4470
- "displayName": "smi",
4471
- "unitPattern-count-one": "{0} smi",
4472
- "unitPattern-count-other": "{0} smi"
4473
- },
4474
- "length-point": {
4475
- "displayName": "points",
4476
- "unitPattern-count-one": "{0} pt",
4477
- "unitPattern-count-other": "{0} pt"
4478
- },
4479
- "length-solar-radius": {
4480
- "displayName": "R☉",
4481
- "unitPattern-count-one": "{0} R☉",
4482
- "unitPattern-count-other": "{0} R☉"
4483
- },
4484
- "light-lux": {
4485
- "displayName": "lx",
4486
- "unitPattern-count-one": "{0} lx",
4487
- "unitPattern-count-other": "{0} lx"
4488
- },
4489
- "light-solar-luminosity": {
4490
- "displayName": "L☉",
4491
- "unitPattern-count-one": "{0} L☉",
4492
- "unitPattern-count-other": "{0} L☉"
4493
- },
4494
- "mass-metric-ton": {
4495
- "displayName": "t",
4496
- "unitPattern-count-one": "{0} t",
4497
- "unitPattern-count-other": "{0} t"
4498
- },
4499
- "mass-kilogram": {
4500
- "displayName": "kg",
4501
- "unitPattern-count-one": "{0} kg",
4502
- "unitPattern-count-other": "{0} kg",
4503
- "perUnitPattern": "{0}/kg"
4504
- },
4505
- "mass-gram": {
4506
- "displayName": "g",
4507
- "unitPattern-count-one": "{0} g",
4508
- "unitPattern-count-other": "{0} g",
4509
- "perUnitPattern": "{0}/g"
4510
- },
4511
- "mass-milligram": {
4512
- "displayName": "mg",
4513
- "unitPattern-count-one": "{0} mg",
4514
- "unitPattern-count-other": "{0} mg"
4515
- },
4516
- "mass-microgram": {
4517
- "displayName": "µg",
4518
- "unitPattern-count-one": "{0} µg",
4519
- "unitPattern-count-other": "{0} µg"
4520
- },
4521
- "mass-ton": {
4522
- "displayName": "tc",
4523
- "unitPattern-count-one": "{0} tc",
4524
- "unitPattern-count-other": "{0} tc"
4525
- },
4526
- "mass-stone": {
4527
- "displayName": "st",
4528
- "unitPattern-count-other": "{0} st"
4529
- },
4530
- "mass-pound": {
4531
- "displayName": "lb",
4532
- "unitPattern-count-one": "{0} lb",
4533
- "unitPattern-count-other": "{0} lb",
4534
- "perUnitPattern": "{0}/lb"
4535
- },
4536
- "mass-ounce": {
4537
- "displayName": "oz",
4538
- "unitPattern-count-one": "{0} oz",
4539
- "unitPattern-count-other": "{0} oz",
4540
- "perUnitPattern": "{0}/oz"
4541
- },
4542
- "mass-ounce-troy": {
4543
- "displayName": "oz t",
4544
- "unitPattern-count-one": "{0} oz t",
4545
- "unitPattern-count-other": "{0} oz t"
4546
- },
4547
- "mass-carat": {
4548
- "displayName": "ct",
4549
- "unitPattern-count-one": "{0} ct",
4550
- "unitPattern-count-other": "{0} ct"
4551
- },
4552
- "mass-dalton": {
4553
- "displayName": "Da",
4554
- "unitPattern-count-one": "{0} Da",
4555
- "unitPattern-count-other": "{0} Da"
4556
- },
4557
- "mass-earth-mass": {
4558
- "displayName": "M⊕",
4559
- "unitPattern-count-one": "{0} M⊕",
4560
- "unitPattern-count-other": "{0} M⊕"
4561
- },
4562
- "mass-solar-mass": {
4563
- "displayName": "M☉",
4564
- "unitPattern-count-one": "{0} M☉",
4565
- "unitPattern-count-other": "{0} M☉"
4566
- },
4567
- "power-gigawatt": {
4568
- "displayName": "GW",
4569
- "unitPattern-count-one": "{0} GW",
4570
- "unitPattern-count-other": "{0} GW"
4571
- },
4572
- "power-megawatt": {
4573
- "displayName": "MW",
4574
- "unitPattern-count-one": "{0} MW",
4575
- "unitPattern-count-other": "{0} MW"
4576
- },
4577
- "power-kilowatt": {
4578
- "displayName": "kW",
4579
- "unitPattern-count-one": "{0} kW",
4580
- "unitPattern-count-other": "{0} kW"
4581
- },
4582
- "power-watt": {
4583
- "displayName": "W",
4584
- "unitPattern-count-one": "{0} W",
4585
- "unitPattern-count-other": "{0} W"
4586
- },
4587
- "power-milliwatt": {
4588
- "displayName": "mW",
4589
- "unitPattern-count-one": "{0} mW",
4590
- "unitPattern-count-other": "{0} mW"
4591
- },
4592
- "power-horsepower": {
4593
- "displayName": "ch",
4594
- "unitPattern-count-one": "{0} ch",
4595
- "unitPattern-count-other": "{0} ch"
4596
- },
4597
- "pressure-hectopascal": {
4598
- "displayName": "hPa",
4599
- "unitPattern-count-one": "{0} hPa",
4600
- "unitPattern-count-other": "{0} hPa"
4601
- },
4602
- "pressure-millimeter-of-mercury": {
4603
- "displayName": "mm Hg",
4604
- "unitPattern-count-one": "{0} mm Hg",
4605
- "unitPattern-count-other": "{0} mm Hg"
4606
- },
4607
- "pressure-pound-per-square-inch": {
4608
- "displayName": "psi",
4609
- "unitPattern-count-one": "{0} psi",
4610
- "unitPattern-count-other": "{0} psi"
4611
- },
4612
- "pressure-inch-hg": {
4613
- "displayName": "po Hg",
4614
- "unitPattern-count-one": "{0} po Hg",
4615
- "unitPattern-count-other": "{0} po Hg"
4616
- },
4617
- "pressure-millibar": {
4618
- "displayName": "mbar",
4619
- "unitPattern-count-one": "{0} mbar",
4620
- "unitPattern-count-other": "{0} mbar"
4621
- },
4622
- "pressure-atmosphere": {
4623
- "displayName": "atm",
4624
- "unitPattern-count-one": "{0} atm",
4625
- "unitPattern-count-other": "{0} atm"
4626
- },
4627
- "pressure-kilopascal": {
4628
- "displayName": "kPa",
4629
- "unitPattern-count-one": "{0} kPa",
4630
- "unitPattern-count-other": "{0} kPa"
4631
- },
4632
- "pressure-megapascal": {
4633
- "displayName": "MPa",
4634
- "unitPattern-count-one": "{0} MPa",
4635
- "unitPattern-count-other": "{0} MPa"
4636
- },
4637
- "speed-kilometer-per-hour": {
4638
- "displayName": "km/h",
4639
- "unitPattern-count-one": "{0} km/h",
4640
- "unitPattern-count-other": "{0} km/h"
4641
- },
4642
- "speed-meter-per-second": {
4643
- "displayName": "m/s",
4644
- "unitPattern-count-one": "{0} m/s",
4645
- "unitPattern-count-other": "{0} m/s"
4646
- },
4647
- "speed-mile-per-hour": {
4648
- "displayName": "mi/h",
4649
- "unitPattern-count-one": "{0} mi/h",
4650
- "unitPattern-count-other": "{0} mi/h"
4651
- },
4652
- "speed-knot": {
4653
- "displayName": "nd",
4654
- "unitPattern-count-one": "{0} nd",
4655
- "unitPattern-count-other": "{0} nd"
4656
- },
4657
- "temperature-generic": {
4658
- "displayName": "°",
4659
- "unitPattern-count-one": "{0}°",
4660
- "unitPattern-count-other": "{0}°"
4661
- },
4662
- "temperature-celsius": {
4663
- "displayName": "°C",
4664
- "unitPattern-count-one": "{0} °C",
4665
- "unitPattern-count-other": "{0} °C"
4666
- },
4667
- "temperature-fahrenheit": {
4668
- "displayName": "°F",
4669
- "unitPattern-count-one": "{0} °F",
4670
- "unitPattern-count-other": "{0} °F"
4671
- },
4672
- "temperature-kelvin": {
4673
- "displayName": "K",
4674
- "unitPattern-count-one": "{0} K",
4675
- "unitPattern-count-other": "{0} K"
4676
- },
4677
- "torque-pound-foot": {
4678
- "displayName": "lb-pi",
4679
- "unitPattern-count-one": "{0} lb-pi",
4680
- "unitPattern-count-other": "{0} lb-pi"
4681
- },
4682
- "torque-newton-meter": {
4683
- "displayName": "N⋅m",
4684
- "unitPattern-count-one": "{0} N⋅m",
4685
- "unitPattern-count-other": "{0} N⋅m"
4686
- },
4687
- "volume-cubic-kilometer": {
4688
- "displayName": "km³",
4689
- "unitPattern-count-one": "{0} km³",
4690
- "unitPattern-count-other": "{0} km³"
4691
- },
4692
- "volume-cubic-meter": {
4693
- "displayName": "m³",
4694
- "unitPattern-count-one": "{0} m³",
4695
- "unitPattern-count-other": "{0} m³",
4696
- "perUnitPattern": "{0}/m³"
4697
- },
4698
- "volume-cubic-centimeter": {
4699
- "displayName": "cm³",
4700
- "unitPattern-count-one": "{0} cm³",
4701
- "unitPattern-count-other": "{0} cm³",
4702
- "perUnitPattern": "{0}/cm³"
4703
- },
4704
- "volume-cubic-mile": {
4705
- "displayName": "mi³",
4706
- "unitPattern-count-one": "{0} mi³",
4707
- "unitPattern-count-other": "{0} mi³"
4708
- },
4709
- "volume-cubic-yard": {
4710
- "displayName": "vg³",
4711
- "unitPattern-count-one": "{0} vg³",
4712
- "unitPattern-count-other": "{0} vg³"
4713
- },
4714
- "volume-cubic-foot": {
4715
- "displayName": "pi³",
4716
- "unitPattern-count-one": "{0} pi³",
4717
- "unitPattern-count-other": "{0} pi³"
4718
- },
4719
- "volume-cubic-inch": {
4720
- "displayName": "po³",
4721
- "unitPattern-count-one": "{0} po³",
4722
- "unitPattern-count-other": "{0} po³"
4723
- },
4724
- "volume-megaliter": {
4725
- "displayName": "ML",
4726
- "unitPattern-count-one": "{0} ML",
4727
- "unitPattern-count-other": "{0} ML"
4728
- },
4729
- "volume-hectoliter": {
4730
- "displayName": "hL",
4731
- "unitPattern-count-one": "{0} hL",
4732
- "unitPattern-count-other": "{0} hL"
4733
- },
4734
- "volume-liter": {
4735
- "displayName": "L",
4736
- "unitPattern-count-one": "{0} L",
4737
- "unitPattern-count-other": "{0} L",
4738
- "perUnitPattern": "{0}/L"
4739
- },
4740
- "volume-deciliter": {
4741
- "displayName": "dL",
4742
- "unitPattern-count-one": "{0} dL",
4743
- "unitPattern-count-other": "{0} dL"
4744
- },
4745
- "volume-centiliter": {
4746
- "displayName": "cL",
4747
- "unitPattern-count-one": "{0} cL",
4748
- "unitPattern-count-other": "{0} cL"
4749
- },
4750
- "volume-milliliter": {
4751
- "displayName": "mL",
4752
- "unitPattern-count-one": "{0} mL",
4753
- "unitPattern-count-other": "{0} mL"
4754
- },
4755
- "volume-pint-metric": {
4756
- "displayName": "mpt",
4757
- "unitPattern-count-one": "{0} mpt",
4758
- "unitPattern-count-other": "{0} mpt"
4759
- },
4760
- "volume-cup-metric": {
4761
- "displayName": "tm",
4762
- "unitPattern-count-one": "{0} tm",
4763
- "unitPattern-count-other": "{0} tm"
4764
- },
4765
- "volume-acre-foot": {
4766
- "displayName": "ac pi",
4767
- "unitPattern-count-one": "{0} ac pi",
4768
- "unitPattern-count-other": "{0} ac pi"
4769
- },
4770
- "volume-bushel": {
4771
- "displayName": "bu",
4772
- "unitPattern-count-other": "{0} bu"
4773
- },
4774
- "volume-gallon": {
4775
- "displayName": "gal",
4776
- "unitPattern-count-one": "{0} gal",
4777
- "unitPattern-count-other": "{0} gal",
4778
- "perUnitPattern": "{0}/gal"
4779
- },
4780
- "volume-gallon-imperial": {
4781
- "displayName": "gal Imp",
4782
- "unitPattern-count-one": "{0} gal Imp",
4783
- "unitPattern-count-other": "{0} gal Imp",
4784
- "perUnitPattern": "{0}/gal Imp"
4785
- },
4786
- "volume-quart": {
4787
- "displayName": "pte",
4788
- "unitPattern-count-one": "{0} pte",
4789
- "unitPattern-count-other": "{0} pte"
4790
- },
4791
- "volume-pint": {
4792
- "displayName": "chop",
4793
- "unitPattern-count-one": "{0} chop",
4794
- "unitPattern-count-other": "{0} chop"
4795
- },
4796
- "volume-cup": {
4797
- "displayName": "tasses",
4798
- "unitPattern-count-one": "{0} tasse",
4799
- "unitPattern-count-other": "{0} tasses"
4800
- },
4801
- "volume-fluid-ounce": {
4802
- "displayName": "oz liq.",
4803
- "unitPattern-count-one": "{0} oz liq.",
4804
- "unitPattern-count-other": "{0} oz liq."
4805
- },
4806
- "volume-fluid-ounce-imperial": {
4807
- "displayName": "oz liq imp.",
4808
- "unitPattern-count-one": "{0} oz liq imp.",
4809
- "unitPattern-count-other": "{0} oz liq imp."
4810
- },
4811
- "volume-tablespoon": {
4812
- "displayName": "c. à s.",
4813
- "unitPattern-count-one": "{0} c. à s.",
4814
- "unitPattern-count-other": "{0} c. à s."
4815
- },
4816
- "volume-teaspoon": {
4817
- "displayName": "c. à t.",
4818
- "unitPattern-count-one": "{0} c. à t.",
4819
- "unitPattern-count-other": "{0} c. à t."
4820
- },
4821
- "volume-barrel": {
4822
- "displayName": "bbl",
4823
- "unitPattern-count-one": "{0} bbl",
4824
- "unitPattern-count-other": "{0} bbl"
4825
- },
4826
- "coordinateUnit": {
4827
- "displayName": "direction",
4828
- "east": "{0} E",
4829
- "north": "{0} N",
4830
- "south": "{0} S",
4831
- "west": "{0} O"
4832
- }
4833
- }
4834
- },
4835
- "lenient-scope-number": {
4836
- "minusSign": "-‒⁻₋−➖﹣-",
4837
- "commaSign": ",،٫、︐︑﹐﹑,、",
4838
- "plusSign": "+⁺₊➕﬩﹢+"
4839
- },
4840
- "currencyFormat-sap-short": {
4841
- "1000-one": "0 k¤",
4842
- "1000-other": "0 k¤",
4843
- "10000-one": "00 k¤",
4844
- "10000-other": "00 k¤",
4845
- "100000-one": "000 k¤",
4846
- "100000-other": "000 k¤",
4847
- "1000000-one": "0 M¤",
4848
- "1000000-other": "0 M¤",
4849
- "10000000-one": "00 M¤",
4850
- "10000000-other": "00 M¤",
4851
- "100000000-one": "000 M¤",
4852
- "100000000-other": "000 M¤",
4853
- "1000000000-one": "0 G¤",
4854
- "1000000000-other": "0 G¤",
4855
- "10000000000-one": "00 G¤",
4856
- "10000000000-other": "00 G¤",
4857
- "100000000000-one": "000 G¤",
4858
- "100000000000-other": "000 G¤",
4859
- "1000000000000-one": "0 T¤",
4860
- "1000000000000-other": "0 T¤",
4861
- "10000000000000-one": "00 T¤",
4862
- "10000000000000-other": "00 T¤",
4863
- "100000000000000-one": "000 T¤",
4864
- "100000000000000-other": "000 T¤"
4865
- },
4866
- "currencyDigits": {
4867
- "ADP": 0,
4868
- "AFN": 0,
4869
- "ALL": 0,
4870
- "BHD": 3,
4871
- "BIF": 0,
4872
- "BYR": 0,
4873
- "CLF": 4,
4874
- "CLP": 0,
4875
- "DEFAULT": 2,
4876
- "DJF": 0,
4877
- "ESP": 0,
4878
- "GNF": 0,
4879
- "HUF": 0,
4880
- "IQD": 0,
4881
- "IRR": 0,
4882
- "ISK": 0,
4883
- "ITL": 0,
4884
- "JOD": 3,
4885
- "JPY": 0,
4886
- "KMF": 0,
4887
- "KPW": 0,
4888
- "KRW": 0,
4889
- "KWD": 3,
4890
- "LAK": 0,
4891
- "LBP": 0,
4892
- "LUF": 0,
4893
- "LYD": 3,
4894
- "MGA": 0,
4895
- "MGF": 0,
4896
- "MMK": 0,
4897
- "MRO": 0,
4898
- "OMR": 3,
4899
- "PYG": 0,
4900
- "RSD": 0,
4901
- "RWF": 0,
4902
- "SLL": 0,
4903
- "SOS": 0,
4904
- "STD": 0,
4905
- "SYP": 0,
4906
- "TMM": 0,
4907
- "TND": 3,
4908
- "TRL": 0,
4909
- "TWD": 0,
4910
- "UGX": 0,
4911
- "UYI": 0,
4912
- "UYW": 4,
4913
- "VND": 0,
4914
- "VUV": 0,
4915
- "XAF": 0,
4916
- "XOF": 0,
4917
- "XPF": 0,
4918
- "YER": 0,
4919
- "ZMK": 0,
4920
- "ZWD": 0
4921
- },
4922
- "plurals": {
4923
- "one": "i = 0,1"
4924
- },
4925
- "weekData-minDays": 1,
4926
- "weekData-firstDay": 0,
4927
- "weekData-weekendStart": 6,
4928
- "weekData-weekendEnd": 0,
4929
- "timeData": {
4930
- "_allowed": "h hb H hB",
4931
- "_preferred": "h"
4932
- },
4933
- "eras-gregorian": {
4934
- "0": {
4935
- "_end": "0-12-31"
4936
- },
4937
- "1": {
4938
- "_start": "1-01-01"
4939
- }
4940
- },
4941
- "eras-islamic": {
4942
- "0": {
4943
- "_start": "622-7-15"
4944
- }
4945
- },
4946
- "eras-persian": {
4947
- "0": {
4948
- "_start": "622-01-01"
4949
- }
4950
- },
4951
- "eras-buddhist": {
4952
- "0": {
4953
- "_start": "-542-01-01"
4954
- }
4955
- },
4956
- "eras-japanese": {
4957
- "232": {
4958
- "_start": "1868-9-8"
4959
- },
4960
- "233": {
4961
- "_start": "1912-7-30"
4962
- },
4963
- "234": {
4964
- "_start": "1926-12-25"
4965
- },
4966
- "235": {
4967
- "_start": "1989-1-8"
4968
- },
4969
- "236": {
4970
- "_start": "2019-5-1"
4971
- }
4972
- }
4973
- }