@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,4632 +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": "阿法尔语",
5
- "ab": "阿布哈西亚语",
6
- "ace": "亚齐语",
7
- "ach": "阿乔利语",
8
- "ada": "阿当梅语",
9
- "ady": "阿迪格语",
10
- "ae": "阿维斯塔语",
11
- "af": "南非荷兰语",
12
- "afh": "阿弗里希利语",
13
- "agq": "亚罕语",
14
- "ain": "阿伊努语",
15
- "ak": "阿肯语",
16
- "akk": "阿卡德语",
17
- "ale": "阿留申语",
18
- "alt": "南阿尔泰语",
19
- "am": "阿姆哈拉语",
20
- "an": "阿拉贡语",
21
- "ang": "古英语",
22
- "anp": "昂加语",
23
- "ar": "阿拉伯语",
24
- "ar_001": "现代标准阿拉伯语",
25
- "arc": "阿拉米语",
26
- "arn": "马普切语",
27
- "arp": "阿拉帕霍语",
28
- "ars": "纳吉迪阿拉伯语",
29
- "arw": "阿拉瓦克语",
30
- "as": "阿萨姆语",
31
- "asa": "帕雷语",
32
- "ast": "阿斯图里亚斯语",
33
- "av": "阿瓦尔语",
34
- "awa": "阿瓦德语",
35
- "ay": "艾马拉语",
36
- "az": "阿塞拜疆语",
37
- "az_alt-short": "阿塞语",
38
- "az_Arab": "南阿塞拜疆语",
39
- "ba": "巴什基尔语",
40
- "bal": "俾路支语",
41
- "ban": "巴厘语",
42
- "bas": "巴萨语",
43
- "bax": "巴姆穆语",
44
- "bbj": "戈马拉语",
45
- "be": "白俄罗斯语",
46
- "bej": "贝沙语",
47
- "bem": "本巴语",
48
- "bez": "贝纳语",
49
- "bfd": "巴非特语",
50
- "bg": "保加利亚语",
51
- "bgn": "西俾路支语",
52
- "bho": "博杰普尔语",
53
- "bi": "比斯拉马语",
54
- "bik": "比科尔语",
55
- "bin": "比尼语",
56
- "bkm": "科姆语",
57
- "bla": "西克西卡语",
58
- "bm": "班巴拉语",
59
- "bn": "孟加拉语",
60
- "bo": "藏语",
61
- "br": "布列塔尼语",
62
- "bra": "布拉杰语",
63
- "brx": "博多语",
64
- "bs": "波斯尼亚语",
65
- "bss": "阿库色语",
66
- "bua": "布里亚特语",
67
- "bug": "布吉语",
68
- "bum": "布鲁语",
69
- "byn": "比林语",
70
- "byv": "梅敦巴语",
71
- "ca": "加泰罗尼亚语",
72
- "cad": "卡多语",
73
- "car": "加勒比语",
74
- "cay": "卡尤加语",
75
- "cch": "阿灿语",
76
- "ccp": "查克玛语",
77
- "ce": "车臣语",
78
- "ceb": "宿务语",
79
- "cgg": "奇加语",
80
- "ch": "查莫罗语",
81
- "chb": "奇布查语",
82
- "chg": "察合台语",
83
- "chk": "楚克语",
84
- "chm": "马里语",
85
- "chn": "奇努克混合语",
86
- "cho": "乔克托语",
87
- "chp": "奇佩维安语",
88
- "chr": "切罗基语",
89
- "chy": "夏延语",
90
- "ckb": "中库尔德语",
91
- "co": "科西嘉语",
92
- "cop": "科普特语",
93
- "cr": "克里族语",
94
- "crh": "克里米亚土耳其语",
95
- "crs": "塞舌尔克里奥尔语",
96
- "cs": "捷克语",
97
- "csb": "卡舒比语",
98
- "cu": "教会斯拉夫语",
99
- "cv": "楚瓦什语",
100
- "cy": "威尔士语",
101
- "da": "丹麦语",
102
- "dak": "达科他语",
103
- "dar": "达尔格瓦语",
104
- "dav": "台塔语",
105
- "de": "德语",
106
- "de_AT": "奥地利德语",
107
- "de_CH": "瑞士高地德语",
108
- "del": "特拉华语",
109
- "den": "史拉维语",
110
- "dgr": "多格里布语",
111
- "din": "丁卡语",
112
- "dje": "哲尔马语",
113
- "doi": "多格拉语",
114
- "dsb": "下索布语",
115
- "dua": "都阿拉语",
116
- "dum": "中古荷兰语",
117
- "dv": "迪维希语",
118
- "dyo": "朱拉语",
119
- "dyu": "迪尤拉语",
120
- "dz": "宗卡语",
121
- "dzg": "达扎葛语",
122
- "ebu": "恩布语",
123
- "ee": "埃维语",
124
- "efi": "埃菲克语",
125
- "egy": "古埃及语",
126
- "eka": "艾卡朱克语",
127
- "el": "希腊语",
128
- "elx": "埃兰语",
129
- "en": "英语",
130
- "en_AU": "澳大利亚英语",
131
- "en_CA": "加拿大英语",
132
- "en_GB": "英国英语",
133
- "en_GB-alt-short": "英式英语",
134
- "en_US": "美国英语",
135
- "en_US-alt-short": "美式英语",
136
- "enm": "中古英语",
137
- "eo": "世界语",
138
- "es": "西班牙语",
139
- "es_419": "拉丁美洲西班牙语",
140
- "es_ES": "欧洲西班牙语",
141
- "es_MX": "墨西哥西班牙语",
142
- "et": "爱沙尼亚语",
143
- "eu": "巴斯克语",
144
- "ewo": "旺杜语",
145
- "fa": "波斯语",
146
- "fan": "芳格语",
147
- "fat": "芳蒂语",
148
- "ff": "富拉语",
149
- "fi": "芬兰语",
150
- "fil": "菲律宾语",
151
- "fj": "斐济语",
152
- "fo": "法罗语",
153
- "fon": "丰语",
154
- "fr": "法语",
155
- "fr_CA": "加拿大法语",
156
- "fr_CH": "瑞士法语",
157
- "frc": "卡真法语",
158
- "frm": "中古法语",
159
- "fro": "古法语",
160
- "frr": "北弗里西亚语",
161
- "frs": "东弗里西亚语",
162
- "fur": "弗留利语",
163
- "fy": "西弗里西亚语",
164
- "ga": "爱尔兰语",
165
- "gaa": "加族语",
166
- "gag": "加告兹语",
167
- "gan": "赣语",
168
- "gay": "迦约语",
169
- "gba": "格巴亚语",
170
- "gd": "苏格兰盖尔语",
171
- "gez": "吉兹语",
172
- "gil": "吉尔伯特语",
173
- "gl": "加利西亚语",
174
- "gmh": "中古高地德语",
175
- "gn": "瓜拉尼语",
176
- "goh": "古高地德语",
177
- "gon": "冈德语",
178
- "gor": "哥伦打洛语",
179
- "got": "哥特语",
180
- "grb": "格列博语",
181
- "grc": "古希腊语",
182
- "gsw": "瑞士德语",
183
- "gu": "古吉拉特语",
184
- "guz": "古西语",
185
- "gv": "马恩语",
186
- "gwi": "哥威迅语",
187
- "ha": "豪萨语",
188
- "hai": "海达语",
189
- "hak": "客家语",
190
- "haw": "夏威夷语",
191
- "he": "希伯来语",
192
- "hi": "印地语",
193
- "hil": "希利盖农语",
194
- "hit": "赫梯语",
195
- "hmn": "苗语",
196
- "ho": "希里莫图语",
197
- "hr": "克罗地亚语",
198
- "hsb": "上索布语",
199
- "hsn": "湘语",
200
- "ht": "海地克里奥尔语",
201
- "hu": "匈牙利语",
202
- "hup": "胡帕语",
203
- "hy": "亚美尼亚语",
204
- "hz": "赫雷罗语",
205
- "ia": "国际语",
206
- "iba": "伊班语",
207
- "ibb": "伊比比奥语",
208
- "id": "印度尼西亚语",
209
- "ie": "国际文字(E)",
210
- "ig": "伊博语",
211
- "ii": "四川彝语",
212
- "ik": "伊努皮克语",
213
- "ilo": "伊洛卡诺语",
214
- "inh": "印古什语",
215
- "io": "伊多语",
216
- "is": "冰岛语",
217
- "it": "意大利语",
218
- "iu": "因纽特语",
219
- "ja": "日语",
220
- "jbo": "逻辑语",
221
- "jgo": "恩艮巴语",
222
- "jmc": "马切姆语",
223
- "jpr": "犹太波斯语",
224
- "jrb": "犹太阿拉伯语",
225
- "jv": "爪哇语",
226
- "ka": "格鲁吉亚语",
227
- "kaa": "卡拉卡尔帕克语",
228
- "kab": "卡拜尔语",
229
- "kac": "克钦语",
230
- "kaj": "卡捷语",
231
- "kam": "卡姆巴语",
232
- "kaw": "卡威语",
233
- "kbd": "卡巴尔德语",
234
- "kbl": "加涅姆布语",
235
- "kcg": "卡塔布语",
236
- "kde": "马孔德语",
237
- "kea": "卡布佛得鲁语",
238
- "kfo": "克罗语",
239
- "kg": "刚果语",
240
- "kha": "卡西语",
241
- "kho": "和田语",
242
- "khq": "西桑海语",
243
- "ki": "吉库尤语",
244
- "kj": "宽亚玛语",
245
- "kk": "哈萨克语",
246
- "kkj": "卡库语",
247
- "kl": "格陵兰语",
248
- "kln": "卡伦金语",
249
- "km": "高棉语",
250
- "kmb": "金邦杜语",
251
- "kn": "卡纳达语",
252
- "ko": "韩语",
253
- "koi": "科米-彼尔米亚克语",
254
- "kok": "孔卡尼语",
255
- "kos": "科斯拉伊语",
256
- "kpe": "克佩列语",
257
- "kr": "卡努里语",
258
- "krc": "卡拉恰伊巴尔卡尔语",
259
- "krl": "卡累利阿语",
260
- "kru": "库鲁克语",
261
- "ks": "克什米尔语",
262
- "ksb": "香巴拉语",
263
- "ksf": "巴菲亚语",
264
- "ksh": "科隆语",
265
- "ku": "库尔德语",
266
- "kum": "库梅克语",
267
- "kut": "库特奈语",
268
- "kv": "科米语",
269
- "kw": "康沃尔语",
270
- "ky": "柯尔克孜语",
271
- "la": "拉丁语",
272
- "lad": "拉迪诺语",
273
- "lag": "朗吉语",
274
- "lah": "印度-雅利安语",
275
- "lam": "兰巴语",
276
- "lb": "卢森堡语",
277
- "lez": "列兹金语",
278
- "lg": "卢干达语",
279
- "li": "林堡语",
280
- "lkt": "拉科塔语",
281
- "ln": "林加拉语",
282
- "lo": "老挝语",
283
- "lol": "蒙戈语",
284
- "lou": "路易斯安那克里奥尔语",
285
- "loz": "洛齐语",
286
- "lrc": "北卢尔语",
287
- "lt": "立陶宛语",
288
- "lu": "鲁巴加丹加语",
289
- "lua": "卢巴-卢拉语",
290
- "lui": "卢伊塞诺语",
291
- "lun": "隆达语",
292
- "luo": "卢奥语",
293
- "lus": "米佐语",
294
- "luy": "卢雅语",
295
- "lv": "拉脱维亚语",
296
- "mad": "马都拉语",
297
- "maf": "马法语",
298
- "mag": "摩揭陀语",
299
- "mai": "迈蒂利语",
300
- "mak": "望加锡语",
301
- "man": "曼丁哥语",
302
- "mas": "马赛语",
303
- "mde": "马坝语",
304
- "mdf": "莫克沙语",
305
- "mdr": "曼达尔语",
306
- "men": "门德语",
307
- "mer": "梅鲁语",
308
- "mfe": "毛里求斯克里奥尔语",
309
- "mg": "马拉加斯语",
310
- "mga": "中古爱尔兰语",
311
- "mgh": "马库阿语",
312
- "mgo": "梅塔语",
313
- "mh": "马绍尔语",
314
- "mi": "毛利语",
315
- "mic": "密克马克语",
316
- "min": "米南佳保语",
317
- "mk": "马其顿语",
318
- "ml": "马拉雅拉姆语",
319
- "mn": "蒙古语",
320
- "mnc": "满语",
321
- "mni": "曼尼普尔语",
322
- "moh": "摩霍克语",
323
- "mos": "莫西语",
324
- "mr": "马拉地语",
325
- "ms": "马来语",
326
- "mt": "马耳他语",
327
- "mua": "蒙当语",
328
- "mul": "多语种",
329
- "mus": "克里克语",
330
- "mwl": "米兰德斯语",
331
- "mwr": "马尔瓦里语",
332
- "my": "缅甸语",
333
- "mye": "姆耶内语",
334
- "myv": "厄尔兹亚语",
335
- "mzn": "马赞德兰语",
336
- "na": "瑙鲁语",
337
- "nan": "闽南语",
338
- "nap": "那不勒斯语",
339
- "naq": "纳马语",
340
- "nb": "书面挪威语",
341
- "nd": "北恩德贝勒语",
342
- "nds": "低地德语",
343
- "nds_NL": "低萨克森语",
344
- "ne": "尼泊尔语",
345
- "new": "尼瓦尔语",
346
- "ng": "恩东加语",
347
- "nia": "尼亚斯语",
348
- "niu": "纽埃语",
349
- "nl": "荷兰语",
350
- "nl_BE": "弗拉芒语",
351
- "nmg": "夸西奥语",
352
- "nn": "挪威尼诺斯克语",
353
- "nnh": "恩甘澎语",
354
- "no": "挪威语",
355
- "nog": "诺盖语",
356
- "non": "古诺尔斯语",
357
- "nqo": "西非书面文字",
358
- "nr": "南恩德贝勒语",
359
- "nso": "北索托语",
360
- "nus": "努埃尔语",
361
- "nv": "纳瓦霍语",
362
- "nwc": "古典尼瓦尔语",
363
- "ny": "齐切瓦语",
364
- "nym": "尼扬韦齐语",
365
- "nyn": "尼昂科勒语",
366
- "nyo": "尼奥罗语",
367
- "nzi": "恩济马语",
368
- "oc": "奥克语",
369
- "oj": "奥吉布瓦语",
370
- "om": "奥罗莫语",
371
- "or": "奥里亚语",
372
- "os": "奥塞梯语",
373
- "osa": "奥塞治语",
374
- "ota": "奥斯曼土耳其语",
375
- "pa": "旁遮普语",
376
- "pag": "邦阿西南语",
377
- "pal": "巴拉维语",
378
- "pam": "邦板牙语",
379
- "pap": "帕皮阿门托语",
380
- "pau": "帕劳语",
381
- "pcm": "尼日利亚皮钦语",
382
- "peo": "古波斯语",
383
- "phn": "腓尼基语",
384
- "pi": "巴利语",
385
- "pl": "波兰语",
386
- "pon": "波纳佩语",
387
- "prg": "普鲁士语",
388
- "pro": "古普罗文斯语",
389
- "ps": "普什图语",
390
- "pt": "葡萄牙语",
391
- "pt_BR": "巴西葡萄牙语",
392
- "pt_PT": "欧洲葡萄牙语",
393
- "qu": "克丘亚语",
394
- "quc": "基切语",
395
- "raj": "拉贾斯坦语",
396
- "rap": "拉帕努伊语",
397
- "rar": "拉罗汤加语",
398
- "rm": "罗曼什语",
399
- "rn": "隆迪语",
400
- "ro": "罗马尼亚语",
401
- "ro_MD": "摩尔多瓦语",
402
- "rof": "兰博语",
403
- "rom": "吉普赛语",
404
- "root": "根语言",
405
- "ru": "俄语",
406
- "rup": "阿罗马尼亚语",
407
- "rw": "卢旺达语",
408
- "rwk": "罗瓦语",
409
- "sa": "梵语",
410
- "sad": "桑达韦语",
411
- "sah": "萨哈语",
412
- "sam": "萨马利亚阿拉姆语",
413
- "saq": "桑布鲁语",
414
- "sas": "萨萨克文",
415
- "sat": "桑塔利语",
416
- "sba": "甘拜语",
417
- "sbp": "桑古语",
418
- "sc": "萨丁语",
419
- "scn": "西西里语",
420
- "sco": "苏格兰语",
421
- "sd": "信德语",
422
- "sdh": "南库尔德语",
423
- "se": "北方萨米语",
424
- "see": "塞内卡语",
425
- "seh": "塞纳语",
426
- "sel": "塞尔库普语",
427
- "ses": "东桑海语",
428
- "sg": "桑戈语",
429
- "sga": "古爱尔兰语",
430
- "sh": "塞尔维亚-克罗地亚语",
431
- "shi": "希尔哈语",
432
- "shn": "掸语",
433
- "shu": "乍得阿拉伯语",
434
- "si": "僧伽罗语",
435
- "sid": "悉达摩语",
436
- "sk": "斯洛伐克语",
437
- "sl": "斯洛文尼亚语",
438
- "sm": "萨摩亚语",
439
- "sma": "南萨米语",
440
- "smj": "吕勒萨米语",
441
- "smn": "伊纳里萨米语",
442
- "sms": "斯科特萨米语",
443
- "sn": "绍纳语",
444
- "snk": "索宁克语",
445
- "so": "索马里语",
446
- "sog": "粟特语",
447
- "sq": "阿尔巴尼亚语",
448
- "sr": "塞尔维亚语",
449
- "srn": "苏里南汤加语",
450
- "srr": "塞雷尔语",
451
- "ss": "斯瓦蒂语",
452
- "ssy": "萨霍语",
453
- "st": "南索托语",
454
- "su": "巽他语",
455
- "suk": "苏库马语",
456
- "sus": "苏苏语",
457
- "sux": "苏美尔语",
458
- "sv": "瑞典语",
459
- "sw": "斯瓦希里语",
460
- "sw_CD": "刚果斯瓦希里语",
461
- "swb": "科摩罗语",
462
- "syc": "古典叙利亚语",
463
- "syr": "叙利亚语",
464
- "ta": "泰米尔语",
465
- "te": "泰卢固语",
466
- "tem": "泰姆奈语",
467
- "teo": "特索语",
468
- "ter": "特伦诺语",
469
- "tet": "德顿语",
470
- "tg": "塔吉克语",
471
- "th": "泰语",
472
- "ti": "提格利尼亚语",
473
- "tig": "提格雷语",
474
- "tiv": "蒂夫语",
475
- "tk": "土库曼语",
476
- "tkl": "托克劳语",
477
- "tl": "他加禄语",
478
- "tlh": "克林贡语",
479
- "tli": "特林吉特语",
480
- "tmh": "塔马奇克语",
481
- "tn": "茨瓦纳语",
482
- "to": "汤加语",
483
- "tog": "尼亚萨汤加语",
484
- "tpi": "托克皮辛语",
485
- "tr": "土耳其语",
486
- "trv": "赛德克语",
487
- "ts": "聪加语",
488
- "tsi": "钦西安语",
489
- "tt": "鞑靼语",
490
- "tum": "通布卡语",
491
- "tvl": "图瓦卢语",
492
- "tw": "契维语",
493
- "twq": "北桑海语",
494
- "ty": "塔希提语",
495
- "tyv": "图瓦语",
496
- "tzm": "塔马齐格特语",
497
- "udm": "乌德穆尔特语",
498
- "ug": "维吾尔语",
499
- "uga": "乌加里特语",
500
- "uk": "乌克兰语",
501
- "umb": "翁本杜语",
502
- "und": "未知语言",
503
- "ur": "乌尔都语",
504
- "uz": "乌兹别克语",
505
- "vai": "瓦伊语",
506
- "ve": "文达语",
507
- "vep": "维普森语",
508
- "vi": "越南语",
509
- "vo": "沃拉普克语",
510
- "vot": "沃提克语",
511
- "vun": "温旧语",
512
- "wa": "瓦隆语",
513
- "wae": "瓦尔瑟语",
514
- "wal": "瓦拉莫语",
515
- "war": "瓦瑞语",
516
- "was": "瓦绍语",
517
- "wbp": "瓦尔皮瑞语",
518
- "wo": "沃洛夫语",
519
- "wuu": "吴语",
520
- "xal": "卡尔梅克语",
521
- "xh": "科萨语",
522
- "xog": "索加语",
523
- "yao": "瑶族语",
524
- "yap": "雅浦语",
525
- "yav": "洋卞语",
526
- "ybb": "耶姆巴语",
527
- "yi": "意第绪语",
528
- "yo": "约鲁巴语",
529
- "yue": "粤语",
530
- "za": "壮语",
531
- "zap": "萨波蒂克语",
532
- "zbl": "布里斯符号",
533
- "zen": "泽纳加语",
534
- "zgh": "标准摩洛哥塔马塞特语",
535
- "zh": "中文",
536
- "zh_Hans": "简体中文",
537
- "zh_Hant": "繁体中文",
538
- "zu": "祖鲁语",
539
- "zun": "祖尼语",
540
- "zxx": "无语言内容",
541
- "zza": "扎扎语"
542
- },
543
- "scripts": {
544
- "Adlm": "阿德拉姆文",
545
- "Afak": "阿法卡文",
546
- "Aghb": "Aghb",
547
- "Ahom": "Ahom",
548
- "Arab": "阿拉伯文",
549
- "Arab-alt-variant": "波斯阿拉伯文",
550
- "Armi": "皇室亚拉姆文",
551
- "Armn": "亚美尼亚文",
552
- "Avst": "阿维斯陀文",
553
- "Bali": "巴厘文",
554
- "Bamu": "巴姆穆文",
555
- "Bass": "巴萨文",
556
- "Batk": "巴塔克文",
557
- "Beng": "孟加拉文",
558
- "Bhks": "拜克舒克文",
559
- "Blis": "布列斯符号",
560
- "Bopo": "汉语拼音",
561
- "Brah": "婆罗米文字",
562
- "Brai": "布莱叶盲文",
563
- "Bugi": "布吉文",
564
- "Buhd": "布希德文",
565
- "Cakm": "查克马文",
566
- "Cans": "加拿大土著统一音节",
567
- "Cari": "卡里亚文",
568
- "Cham": "占文",
569
- "Cher": "切罗基文",
570
- "Cirt": "色斯文",
571
- "Copt": "克普特文",
572
- "Cprt": "塞浦路斯文",
573
- "Cyrl": "西里尔文",
574
- "Cyrs": "西里尔文字(古教会斯拉夫文的变体)",
575
- "Deva": "天城文",
576
- "Dogr": "多格拉文",
577
- "Dsrt": "德塞莱特文",
578
- "Dupl": "杜普洛伊速记",
579
- "Egyd": "后期埃及文",
580
- "Egyh": "古埃及僧侣书写体",
581
- "Egyp": "古埃及象形文",
582
- "Elba": "爱尔巴桑文",
583
- "Elym": "Elym",
584
- "Ethi": "埃塞俄比亚文",
585
- "Geok": "格鲁吉亚文(教堂体)",
586
- "Geor": "格鲁吉亚文",
587
- "Glag": "格拉哥里文",
588
- "Gong": "贡贾拉贡德文",
589
- "Gonm": "马萨拉姆冈德文",
590
- "Goth": "哥特文",
591
- "Gran": "格兰塔文",
592
- "Grek": "希腊文",
593
- "Gujr": "古吉拉特文",
594
- "Guru": "果鲁穆奇文",
595
- "Hanb": "汉语注音",
596
- "Hang": "谚文",
597
- "Hani": "汉字",
598
- "Hano": "汉奴罗文",
599
- "Hans": "简体",
600
- "Hans-alt-stand-alone": "简体中文",
601
- "Hant": "繁体",
602
- "Hant-alt-stand-alone": "繁体中文",
603
- "Hatr": "Hatr",
604
- "Hebr": "希伯来文",
605
- "Hira": "平假名",
606
- "Hluw": "安那托利亚象形文字",
607
- "Hmng": "杨松录苗文",
608
- "Hmnp": "尼亚肯蒲丘苗文",
609
- "Hrkt": "假名表",
610
- "Hung": "古匈牙利文",
611
- "Inds": "印度河文字",
612
- "Ital": "古意大利文",
613
- "Jamo": "韩文字母",
614
- "Java": "爪哇文",
615
- "Jpan": "日文",
616
- "Jurc": "女真文",
617
- "Kali": "克耶李文字",
618
- "Kana": "片假名",
619
- "Khar": "卡罗须提文",
620
- "Khmr": "高棉文",
621
- "Khoj": "克吉奇文字",
622
- "Knda": "卡纳达文",
623
- "Kore": "韩文",
624
- "Kpel": "克佩列文",
625
- "Kthi": "凯提文",
626
- "Lana": "兰拿文",
627
- "Laoo": "老挝文",
628
- "Latf": "拉丁文(哥特式字体变体)",
629
- "Latg": "拉丁文(盖尔文变体)",
630
- "Latn": "拉丁文",
631
- "Lepc": "雷布查文",
632
- "Limb": "林布文",
633
- "Lina": "线形文字(A)",
634
- "Linb": "线形文字(B)",
635
- "Lisu": "傈僳文",
636
- "Loma": "洛马文",
637
- "Lyci": "利西亚文",
638
- "Lydi": "吕底亚文",
639
- "Mahj": "Mahj",
640
- "Maka": "望加锡文",
641
- "Mand": "阿拉米文",
642
- "Mani": "摩尼教文",
643
- "Marc": "大玛尔文",
644
- "Maya": "玛雅圣符文",
645
- "Medf": "梅德法伊德林文",
646
- "Mend": "门迪文",
647
- "Merc": "麦罗埃草书",
648
- "Mero": "麦若提克文",
649
- "Mlym": "马拉雅拉姆文",
650
- "Modi": "Modi",
651
- "Mong": "蒙古文",
652
- "Moon": "韩文语系",
653
- "Mroo": "谬文",
654
- "Mtei": "曼尼普尔文",
655
- "Mult": "Mult",
656
- "Mymr": "缅甸文",
657
- "Nand": "楠迪梵文",
658
- "Narb": "古北方阿拉伯文",
659
- "Nbat": "纳巴泰文",
660
- "Newa": "尼瓦文",
661
- "Nkgb": "纳西格巴文",
662
- "Nkoo": "西非书面文字(N’Ko)",
663
- "Nshu": "女书",
664
- "Ogam": "欧甘文",
665
- "Olck": "桑塔利文",
666
- "Orkh": "鄂尔浑文",
667
- "Orya": "奥里亚文",
668
- "Osge": "欧塞奇文",
669
- "Osma": "奥斯曼亚文",
670
- "Palm": "帕尔迈拉文",
671
- "Pauc": "包金豪文",
672
- "Perm": "古彼尔姆文",
673
- "Phag": "八思巴文",
674
- "Phli": "巴列维文碑铭体",
675
- "Phlp": "巴列维文(圣诗体)",
676
- "Phlv": "巴列维文(书体)",
677
- "Phnx": "腓尼基文",
678
- "Plrd": "波拉德音标文字",
679
- "Prti": "帕提亚文碑铭体",
680
- "Qaag": "Qaag",
681
- "Rjng": "拉让文",
682
- "Rohg": "哈乃斐罗兴亚文",
683
- "Roro": "朗格朗格文",
684
- "Runr": "古代北欧文",
685
- "Samr": "撒马利亚文",
686
- "Sara": "沙拉堤文",
687
- "Sarb": "古南阿拉伯文",
688
- "Saur": "索拉什特拉文",
689
- "Sgnw": "书写符号",
690
- "Shaw": "萧伯纳式文",
691
- "Shrd": "夏拉达文",
692
- "Sidd": "悉昙",
693
- "Sind": "信德文",
694
- "Sinh": "僧伽罗文",
695
- "Sogd": "粟特文",
696
- "Sogo": "古粟特文",
697
- "Sora": "索朗桑朋文",
698
- "Soyo": "索永布文",
699
- "Sund": "巽他文",
700
- "Sylo": "锡尔赫特文",
701
- "Syrc": "叙利亚文",
702
- "Syre": "福音体叙利亚文",
703
- "Syrj": "西叙利亚文",
704
- "Syrn": "东叙利亚文",
705
- "Tagb": "塔格班瓦文",
706
- "Takr": "泰克里文",
707
- "Tale": "泰乐文",
708
- "Talu": "新傣文",
709
- "Taml": "泰米尔文",
710
- "Tang": "唐古特文",
711
- "Tavt": "越南傣文",
712
- "Telu": "泰卢固文",
713
- "Teng": "腾格瓦文字",
714
- "Tfng": "提非纳文",
715
- "Tglg": "塔加路文",
716
- "Thaa": "塔安那文",
717
- "Thai": "泰文",
718
- "Tibt": "藏文",
719
- "Tirh": "迈蒂利文",
720
- "Ugar": "乌加里特文",
721
- "Vaii": "瓦依文",
722
- "Visp": "可见语言",
723
- "Wara": "瓦郎奇蒂文字",
724
- "Wcho": "Wcho",
725
- "Wole": "沃莱艾文",
726
- "Xpeo": "古波斯文",
727
- "Xsux": "苏美尔-阿卡德楔形文字",
728
- "Yiii": "彝文",
729
- "Zanb": "札那巴札尔方块文字",
730
- "Zinh": "遗传学术语",
731
- "Zmth": "数学符号",
732
- "Zsye": "表情符号",
733
- "Zsym": "符号",
734
- "Zxxx": "非书面文字",
735
- "Zyyy": "通用",
736
- "Zzzz": "未知文字"
737
- },
738
- "territories": {
739
- "142": "亚洲",
740
- "143": "中亚",
741
- "145": "西亚",
742
- "150": "欧洲",
743
- "151": "东欧",
744
- "154": "北欧",
745
- "155": "西欧",
746
- "202": "撒哈拉以南非洲",
747
- "419": "拉丁美洲",
748
- "001": "世界",
749
- "002": "非洲",
750
- "003": "北美洲",
751
- "005": "南美洲",
752
- "009": "大洋洲",
753
- "011": "西非",
754
- "013": "中美洲",
755
- "014": "东非",
756
- "015": "北非",
757
- "017": "中非",
758
- "018": "南部非洲",
759
- "019": "美洲",
760
- "021": "美洲北部",
761
- "029": "加勒比地区",
762
- "030": "东亚",
763
- "034": "南亚",
764
- "035": "东南亚",
765
- "039": "南欧",
766
- "053": "澳大拉西亚",
767
- "054": "美拉尼西亚",
768
- "057": "密克罗尼西亚地区",
769
- "061": "玻利尼西亚",
770
- "AC": "阿森松岛",
771
- "AD": "安道尔",
772
- "AE": "阿拉伯联合酋长国",
773
- "AF": "阿富汗",
774
- "AG": "安提瓜和巴布达",
775
- "AI": "安圭拉",
776
- "AL": "阿尔巴尼亚",
777
- "AM": "亚美尼亚",
778
- "AO": "安哥拉",
779
- "AQ": "南极洲",
780
- "AR": "阿根廷",
781
- "AS": "美属萨摩亚",
782
- "AT": "奥地利",
783
- "AU": "澳大利亚",
784
- "AW": "阿鲁巴",
785
- "AX": "奥兰群岛",
786
- "AZ": "阿塞拜疆",
787
- "BA": "波斯尼亚和黑塞哥维那",
788
- "BB": "巴巴多斯",
789
- "BD": "孟加拉国",
790
- "BE": "比利时",
791
- "BF": "布基纳法索",
792
- "BG": "保加利亚",
793
- "BH": "巴林",
794
- "BI": "布隆迪",
795
- "BJ": "贝宁",
796
- "BL": "圣巴泰勒米",
797
- "BM": "百慕大",
798
- "BN": "文莱",
799
- "BO": "玻利维亚",
800
- "BQ": "荷属加勒比区",
801
- "BR": "巴西",
802
- "BS": "巴哈马",
803
- "BT": "不丹",
804
- "BV": "布韦岛",
805
- "BW": "博茨瓦纳",
806
- "BY": "白俄罗斯",
807
- "BZ": "伯利兹",
808
- "CA": "加拿大",
809
- "CC": "科科斯(基林)群岛",
810
- "CD": "刚果(金)",
811
- "CD-alt-variant": "刚果民主共和国",
812
- "CF": "中非共和国",
813
- "CG": "刚果(布)",
814
- "CG-alt-variant": "刚果共和国",
815
- "CH": "瑞士",
816
- "CI": "科特迪瓦",
817
- "CI-alt-variant": "象牙海岸",
818
- "CK": "库克群岛",
819
- "CL": "智利",
820
- "CM": "喀麦隆",
821
- "CN": "中国",
822
- "CO": "哥伦比亚",
823
- "CP": "克利珀顿岛",
824
- "CR": "哥斯达黎加",
825
- "CU": "古巴",
826
- "CV": "佛得角",
827
- "CW": "库拉索",
828
- "CX": "圣诞岛",
829
- "CY": "塞浦路斯",
830
- "CZ": "捷克",
831
- "CZ-alt-variant": "捷克共和国",
832
- "DE": "德国",
833
- "DG": "迪戈加西亚岛",
834
- "DJ": "吉布提",
835
- "DK": "丹麦",
836
- "DM": "多米尼克",
837
- "DO": "多米尼加共和国",
838
- "DZ": "阿尔及利亚",
839
- "EA": "休达及梅利利亚",
840
- "EC": "厄瓜多尔",
841
- "EE": "爱沙尼亚",
842
- "EG": "埃及",
843
- "EH": "西撒哈拉",
844
- "ER": "厄立特里亚",
845
- "ES": "西班牙",
846
- "ET": "埃塞俄比亚",
847
- "EU": "欧盟",
848
- "EZ": "欧元区",
849
- "FI": "芬兰",
850
- "FJ": "斐济",
851
- "FK": "福克兰群岛",
852
- "FK-alt-variant": "福克兰群岛(马尔维纳斯群岛)",
853
- "FM": "密克罗尼西亚",
854
- "FO": "法罗群岛",
855
- "FR": "法国",
856
- "GA": "加蓬",
857
- "GB": "英国",
858
- "GB-alt-short": "英国",
859
- "GD": "格林纳达",
860
- "GE": "格鲁吉亚",
861
- "GF": "法属圭亚那",
862
- "GG": "根西岛",
863
- "GH": "加纳",
864
- "GI": "直布罗陀",
865
- "GL": "格陵兰",
866
- "GM": "冈比亚",
867
- "GN": "几内亚",
868
- "GP": "瓜德罗普",
869
- "GQ": "赤道几内亚",
870
- "GR": "希腊",
871
- "GS": "南乔治亚和南桑威奇群岛",
872
- "GT": "危地马拉",
873
- "GU": "关岛",
874
- "GW": "几内亚比绍",
875
- "GY": "圭亚那",
876
- "HK": "中国香港",
877
- "HK-alt-short": "香港",
878
- "HM": "赫德岛和麦克唐纳群岛",
879
- "HN": "洪都拉斯",
880
- "HR": "克罗地亚",
881
- "HT": "海地",
882
- "HU": "匈牙利",
883
- "IC": "加纳利群岛",
884
- "ID": "印度尼西亚",
885
- "IE": "爱尔兰",
886
- "IL": "以色列",
887
- "IM": "马恩岛",
888
- "IN": "印度",
889
- "IO": "英属印度洋领地",
890
- "IQ": "伊拉克",
891
- "IR": "伊朗",
892
- "IS": "冰岛",
893
- "IT": "意大利",
894
- "JE": "泽西岛",
895
- "JM": "牙买加",
896
- "JO": "约旦",
897
- "JP": "日本",
898
- "KE": "肯尼亚",
899
- "KG": "吉尔吉斯斯坦",
900
- "KH": "柬埔寨",
901
- "KI": "基里巴斯",
902
- "KM": "科摩罗",
903
- "KN": "圣基茨和尼维斯",
904
- "KP": "朝鲜",
905
- "KR": "韩国",
906
- "KW": "科威特",
907
- "KY": "开曼群岛",
908
- "KZ": "哈萨克斯坦",
909
- "LA": "老挝",
910
- "LB": "黎巴嫩",
911
- "LC": "圣卢西亚",
912
- "LI": "列支敦士登",
913
- "LK": "斯里兰卡",
914
- "LR": "利比里亚",
915
- "LS": "莱索托",
916
- "LT": "立陶宛",
917
- "LU": "卢森堡",
918
- "LV": "拉脱维亚",
919
- "LY": "利比亚",
920
- "MA": "摩洛哥",
921
- "MC": "摩纳哥",
922
- "MD": "摩尔多瓦",
923
- "ME": "黑山",
924
- "MF": "法属圣马丁",
925
- "MG": "马达加斯加",
926
- "MH": "马绍尔群岛",
927
- "MK": "北马其顿",
928
- "MK-alt-variant": "MK",
929
- "ML": "马里",
930
- "MM": "缅甸",
931
- "MN": "蒙古",
932
- "MO": "中国澳门",
933
- "MO-alt-short": "澳门",
934
- "MP": "北马里亚纳群岛",
935
- "MQ": "马提尼克",
936
- "MR": "毛里塔尼亚",
937
- "MS": "蒙特塞拉特",
938
- "MT": "马耳他",
939
- "MU": "毛里求斯",
940
- "MV": "马尔代夫",
941
- "MW": "马拉维",
942
- "MX": "墨西哥",
943
- "MY": "马来西亚",
944
- "MZ": "莫桑比克",
945
- "NA": "纳米比亚",
946
- "NC": "新喀里多尼亚",
947
- "NE": "尼日尔",
948
- "NF": "诺福克岛",
949
- "NG": "尼日利亚",
950
- "NI": "尼加拉瓜",
951
- "NL": "荷兰",
952
- "NO": "挪威",
953
- "NP": "尼泊尔",
954
- "NR": "瑙鲁",
955
- "NU": "纽埃",
956
- "NZ": "新西兰",
957
- "OM": "阿曼",
958
- "PA": "巴拿马",
959
- "PE": "秘鲁",
960
- "PF": "法属波利尼西亚",
961
- "PG": "巴布亚新几内亚",
962
- "PH": "菲律宾",
963
- "PK": "巴基斯坦",
964
- "PL": "波兰",
965
- "PM": "圣皮埃尔和密克隆群岛",
966
- "PN": "皮特凯恩群岛",
967
- "PR": "波多黎各",
968
- "PS": "巴勒斯坦领土",
969
- "PS-alt-short": "巴勒斯坦",
970
- "PT": "葡萄牙",
971
- "PW": "帕劳",
972
- "PY": "巴拉圭",
973
- "QA": "卡塔尔",
974
- "QO": "大洋洲边远群岛",
975
- "RE": "留尼汪",
976
- "RO": "罗马尼亚",
977
- "RS": "塞尔维亚",
978
- "RU": "俄罗斯",
979
- "RW": "卢旺达",
980
- "SA": "沙特阿拉伯",
981
- "SB": "所罗门群岛",
982
- "SC": "塞舌尔",
983
- "SD": "苏丹",
984
- "SE": "瑞典",
985
- "SG": "新加坡",
986
- "SH": "圣赫勒拿",
987
- "SI": "斯洛文尼亚",
988
- "SJ": "斯瓦尔巴和扬马延",
989
- "SK": "斯洛伐克",
990
- "SL": "塞拉利昂",
991
- "SM": "圣马力诺",
992
- "SN": "塞内加尔",
993
- "SO": "索马里",
994
- "SR": "苏里南",
995
- "SS": "南苏丹",
996
- "ST": "圣多美和普林西比",
997
- "SV": "萨尔瓦多",
998
- "SX": "荷属圣马丁",
999
- "SY": "叙利亚",
1000
- "SZ": "斯威士兰",
1001
- "SZ-alt-variant": "SZ",
1002
- "TA": "特里斯坦-达库尼亚群岛",
1003
- "TC": "特克斯和凯科斯群岛",
1004
- "TD": "乍得",
1005
- "TF": "法属南部领地",
1006
- "TG": "多哥",
1007
- "TH": "泰国",
1008
- "TJ": "塔吉克斯坦",
1009
- "TK": "托克劳",
1010
- "TL": "东帝汶",
1011
- "TL-alt-variant": "TL",
1012
- "TM": "土库曼斯坦",
1013
- "TN": "突尼斯",
1014
- "TO": "汤加",
1015
- "TR": "土耳其",
1016
- "TT": "特立尼达和多巴哥",
1017
- "TV": "图瓦卢",
1018
- "TW": "中国台湾",
1019
- "TZ": "坦桑尼亚",
1020
- "UA": "乌克兰",
1021
- "UG": "乌干达",
1022
- "UM": "美国本土外小岛屿",
1023
- "UN": "联合国",
1024
- "UN-alt-short": "联合国",
1025
- "US": "美国",
1026
- "US-alt-short": "美国",
1027
- "UY": "乌拉圭",
1028
- "UZ": "乌兹别克斯坦",
1029
- "VA": "梵蒂冈",
1030
- "VC": "圣文森特和格林纳丁斯",
1031
- "VE": "委内瑞拉",
1032
- "VG": "英属维尔京群岛",
1033
- "VI": "美属维尔京群岛",
1034
- "VN": "越南",
1035
- "VU": "瓦努阿图",
1036
- "WF": "瓦利斯和富图纳",
1037
- "WS": "萨摩亚",
1038
- "XA": "伪地区",
1039
- "XB": "伪双向语言地区",
1040
- "XK": "科索沃",
1041
- "YE": "也门",
1042
- "YT": "马约特",
1043
- "ZA": "南非",
1044
- "ZM": "赞比亚",
1045
- "ZW": "津巴布韦",
1046
- "ZZ": "未知地区"
1047
- },
1048
- "orientation": "left-to-right",
1049
- "ca-gregorian": {
1050
- "dateFormats": {
1051
- "full": "y年M月d日EEEE",
1052
- "long": "y年M月d日",
1053
- "medium": "y年M月d日",
1054
- "short": "y/M/d"
1055
- },
1056
- "timeFormats": {
1057
- "full": "zzzz ah:mm:ss",
1058
- "long": "z ah:mm:ss",
1059
- "medium": "ah:mm:ss",
1060
- "short": "ah:mm"
1061
- },
1062
- "dateTimeFormats": {
1063
- "full": "{1} {0}",
1064
- "long": "{1} {0}",
1065
- "medium": "{1} {0}",
1066
- "short": "{1} {0}",
1067
- "availableFormats": {
1068
- "Bh": "Bh时",
1069
- "Bhm": "Bh:mm",
1070
- "Bhms": "Bh:mm:ss",
1071
- "d": "d日",
1072
- "E": "ccc",
1073
- "EBhm": "EBh:mm",
1074
- "EBhms": "EBh:mm:ss",
1075
- "Ed": "d日E",
1076
- "Ehm": "Eah:mm",
1077
- "EHm": "EHH:mm",
1078
- "Ehms": "Eah:mm:ss",
1079
- "EHms": "EHH:mm:ss",
1080
- "Gy": "Gy年",
1081
- "GyMMM": "Gy年M月",
1082
- "GyMMMd": "Gy年M月d日",
1083
- "GyMMMEd": "Gy年M月d日E",
1084
- "h": "ah时",
1085
- "H": "H时",
1086
- "hm": "ah:mm",
1087
- "Hm": "HH:mm",
1088
- "hms": "ah:mm:ss",
1089
- "Hms": "HH:mm:ss",
1090
- "hmsv": "v ah:mm:ss",
1091
- "Hmsv": "v HH:mm:ss",
1092
- "hmv": "v ah:mm",
1093
- "Hmv": "v HH:mm",
1094
- "M": "M月",
1095
- "Md": "M/d",
1096
- "MEd": "M/dE",
1097
- "MMdd": "MM/dd",
1098
- "MMM": "LLL",
1099
- "MMMd": "M月d日",
1100
- "MMMEd": "M月d日E",
1101
- "MMMMd": "M月d日",
1102
- "ms": "mm:ss",
1103
- "y": "y年",
1104
- "yM": "y年M月",
1105
- "yMd": "y/M/d",
1106
- "yMEd": "y/M/dE",
1107
- "yMM": "y年M月",
1108
- "yMMM": "y年M月",
1109
- "yMMMd": "y年M月d日",
1110
- "yMMMEd": "y年M月d日E",
1111
- "yMMMM": "y年M月",
1112
- "yQQQ": "y年第Q季度",
1113
- "yQQQQ": "y年第Q季度",
1114
- "MMMMW": "MMMM第W周",
1115
- "yw": "Y年第w周"
1116
- },
1117
- "appendItems": {
1118
- "Day": "{0} ({2}: {1})",
1119
- "Day-Of-Week": "{0} {1}",
1120
- "Era": "{1} {0}",
1121
- "Hour": "{0} ({2}: {1})",
1122
- "Minute": "{0} ({2}: {1})",
1123
- "Month": "{0} ({2}: {1})",
1124
- "Quarter": "{0} ({2}: {1})",
1125
- "Second": "{0} ({2}: {1})",
1126
- "Timezone": "{1}{0}",
1127
- "Week": "{0} ({2}: {1})",
1128
- "Year": "{1} {0}"
1129
- },
1130
- "intervalFormats": {
1131
- "intervalFormatFallback": "{0} – {1}",
1132
- "Bh": {
1133
- "B": "Bh时至Bh时",
1134
- "h": "Bh时至h时"
1135
- },
1136
- "Bhm": {
1137
- "B": "Bh:mm至Bh:mm",
1138
- "h": "Bh:mm至h:mm",
1139
- "m": "Bh:mm至h:mm"
1140
- },
1141
- "d": {
1142
- "d": "d–d日"
1143
- },
1144
- "Gy": {
1145
- "G": "G y – G y",
1146
- "y": "G y–y"
1147
- },
1148
- "GyM": {
1149
- "G": "GGGGG y-MM – GGGGG y-MM",
1150
- "M": "GGGGG y-MM – y-MM",
1151
- "y": "GGGGG y-MM – y-MM"
1152
- },
1153
- "GyMd": {
1154
- "d": "GGGGG y-MM-dd – y-MM-dd",
1155
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1156
- "M": "GGGGG y-MM-dd – y-MM-dd",
1157
- "y": "GGGGG y-MM-dd – y-MM-dd"
1158
- },
1159
- "GyMEd": {
1160
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1161
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1162
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1163
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1164
- },
1165
- "GyMMM": {
1166
- "G": "G y MMM – G y MMM",
1167
- "M": "G y MMM–MMM",
1168
- "y": "G y MMM – y MMM"
1169
- },
1170
- "GyMMMd": {
1171
- "d": "G y MMM d–d",
1172
- "G": "G y MMM d – G y MMM d",
1173
- "M": "G y MMM d – MMM d",
1174
- "y": "G y MMM d – y MMM d"
1175
- },
1176
- "GyMMMEd": {
1177
- "d": "G y MMM d, E – MMM d, E",
1178
- "G": "G y MMM d, E – G y MMM d, E",
1179
- "M": "G y MMM d, E – MMM d, E",
1180
- "y": "G y MMM d, E – y MMM d, E"
1181
- },
1182
- "h": {
1183
- "a": "ah时至ah时",
1184
- "h": "ah时至h时"
1185
- },
1186
- "H": {
1187
- "H": "HH–HH"
1188
- },
1189
- "hm": {
1190
- "a": "ah:mm至ah:mm",
1191
- "h": "ah:mm至h:mm",
1192
- "m": "ah:mm至h:mm"
1193
- },
1194
- "Hm": {
1195
- "H": "HH:mm–HH:mm",
1196
- "m": "HH:mm–HH:mm"
1197
- },
1198
- "hmv": {
1199
- "a": "vah:mm至ah:mm",
1200
- "h": "vah:mm至h:mm",
1201
- "m": "vah:mm至h:mm"
1202
- },
1203
- "Hmv": {
1204
- "H": "v HH:mm–HH:mm",
1205
- "m": "v HH:mm–HH:mm"
1206
- },
1207
- "hv": {
1208
- "a": "vah时至ah时",
1209
- "h": "vah时至h时"
1210
- },
1211
- "Hv": {
1212
- "H": "v HH–HH"
1213
- },
1214
- "M": {
1215
- "M": "M–M月"
1216
- },
1217
- "Md": {
1218
- "d": "M/d – M/d",
1219
- "M": "M/d – M/d"
1220
- },
1221
- "MEd": {
1222
- "d": "M/dE至M/dE",
1223
- "M": "M/dE至M/dE"
1224
- },
1225
- "MMM": {
1226
- "M": "MMM – MMM"
1227
- },
1228
- "MMMd": {
1229
- "d": "M月d日至d日",
1230
- "M": "M月d日至M月d日"
1231
- },
1232
- "MMMEd": {
1233
- "d": "M月d日E至d日E",
1234
- "M": "M月d日E至M月d日E"
1235
- },
1236
- "y": {
1237
- "y": "y–y年"
1238
- },
1239
- "yM": {
1240
- "M": "y年M月至M月",
1241
- "y": "y年M月至y年M月"
1242
- },
1243
- "yMd": {
1244
- "d": "y/M/d – y/M/d",
1245
- "M": "y/M/d – y/M/d",
1246
- "y": "y/M/d – y/M/d"
1247
- },
1248
- "yMEd": {
1249
- "d": "y/M/dE至y/M/dE",
1250
- "M": "y/M/dE至y/M/dE",
1251
- "y": "y/M/dE至y/M/dE"
1252
- },
1253
- "yMMM": {
1254
- "M": "y年M月至M月",
1255
- "y": "y年M月至y年M月"
1256
- },
1257
- "yMMMd": {
1258
- "d": "y年M月d日至d日",
1259
- "M": "y年M月d日至M月d日",
1260
- "y": "y年M月d日至y年M月d日"
1261
- },
1262
- "yMMMEd": {
1263
- "d": "y年M月d日E至d日E",
1264
- "M": "y年M月d日E至M月d日E",
1265
- "y": "y年M月d日E至y年M月d日E"
1266
- },
1267
- "yMMMM": {
1268
- "M": "y年M月至M月",
1269
- "y": "y年M月至y年M月"
1270
- }
1271
- }
1272
- },
1273
- "months": {
1274
- "format": {
1275
- "abbreviated": [
1276
- "1月",
1277
- "2月",
1278
- "3月",
1279
- "4月",
1280
- "5月",
1281
- "6月",
1282
- "7月",
1283
- "8月",
1284
- "9月",
1285
- "10月",
1286
- "11月",
1287
- "12月"
1288
- ],
1289
- "narrow": [
1290
- "1",
1291
- "2",
1292
- "3",
1293
- "4",
1294
- "5",
1295
- "6",
1296
- "7",
1297
- "8",
1298
- "9",
1299
- "10",
1300
- "11",
1301
- "12"
1302
- ],
1303
- "wide": [
1304
- "一月",
1305
- "二月",
1306
- "三月",
1307
- "四月",
1308
- "五月",
1309
- "六月",
1310
- "七月",
1311
- "八月",
1312
- "九月",
1313
- "十月",
1314
- "十一月",
1315
- "十二月"
1316
- ]
1317
- },
1318
- "stand-alone": {
1319
- "abbreviated": [
1320
- "1月",
1321
- "2月",
1322
- "3月",
1323
- "4月",
1324
- "5月",
1325
- "6月",
1326
- "7月",
1327
- "8月",
1328
- "9月",
1329
- "10月",
1330
- "11月",
1331
- "12月"
1332
- ],
1333
- "narrow": [
1334
- "1",
1335
- "2",
1336
- "3",
1337
- "4",
1338
- "5",
1339
- "6",
1340
- "7",
1341
- "8",
1342
- "9",
1343
- "10",
1344
- "11",
1345
- "12"
1346
- ],
1347
- "wide": [
1348
- "一月",
1349
- "二月",
1350
- "三月",
1351
- "四月",
1352
- "五月",
1353
- "六月",
1354
- "七月",
1355
- "八月",
1356
- "九月",
1357
- "十月",
1358
- "十一月",
1359
- "十二月"
1360
- ]
1361
- }
1362
- },
1363
- "days": {
1364
- "format": {
1365
- "abbreviated": [
1366
- "周日",
1367
- "周一",
1368
- "周二",
1369
- "周三",
1370
- "周四",
1371
- "周五",
1372
- "周六"
1373
- ],
1374
- "narrow": [
1375
- "日",
1376
- "一",
1377
- "二",
1378
- "三",
1379
- "四",
1380
- "五",
1381
- "六"
1382
- ],
1383
- "short": [
1384
- "周日",
1385
- "周一",
1386
- "周二",
1387
- "周三",
1388
- "周四",
1389
- "周五",
1390
- "周六"
1391
- ],
1392
- "wide": [
1393
- "星期日",
1394
- "星期一",
1395
- "星期二",
1396
- "星期三",
1397
- "星期四",
1398
- "星期五",
1399
- "星期六"
1400
- ]
1401
- },
1402
- "stand-alone": {
1403
- "abbreviated": [
1404
- "周日",
1405
- "周一",
1406
- "周二",
1407
- "周三",
1408
- "周四",
1409
- "周五",
1410
- "周六"
1411
- ],
1412
- "narrow": [
1413
- "日",
1414
- "一",
1415
- "二",
1416
- "三",
1417
- "四",
1418
- "五",
1419
- "六"
1420
- ],
1421
- "short": [
1422
- "周日",
1423
- "周一",
1424
- "周二",
1425
- "周三",
1426
- "周四",
1427
- "周五",
1428
- "周六"
1429
- ],
1430
- "wide": [
1431
- "星期日",
1432
- "星期一",
1433
- "星期二",
1434
- "星期三",
1435
- "星期四",
1436
- "星期五",
1437
- "星期六"
1438
- ]
1439
- }
1440
- },
1441
- "quarters": {
1442
- "format": {
1443
- "abbreviated": [
1444
- "1季度",
1445
- "2季度",
1446
- "3季度",
1447
- "4季度"
1448
- ],
1449
- "narrow": [
1450
- "1",
1451
- "2",
1452
- "3",
1453
- "4"
1454
- ],
1455
- "wide": [
1456
- "第一季度",
1457
- "第二季度",
1458
- "第三季度",
1459
- "第四季度"
1460
- ]
1461
- },
1462
- "stand-alone": {
1463
- "abbreviated": [
1464
- "1季度",
1465
- "2季度",
1466
- "3季度",
1467
- "4季度"
1468
- ],
1469
- "narrow": [
1470
- "1",
1471
- "2",
1472
- "3",
1473
- "4"
1474
- ],
1475
- "wide": [
1476
- "第一季度",
1477
- "第二季度",
1478
- "第三季度",
1479
- "第四季度"
1480
- ]
1481
- }
1482
- },
1483
- "dayPeriods": {
1484
- "format": {
1485
- "abbreviated": [
1486
- "上午",
1487
- "下午"
1488
- ],
1489
- "narrow": [
1490
- "上午",
1491
- "下午"
1492
- ],
1493
- "wide": [
1494
- "上午",
1495
- "下午"
1496
- ]
1497
- },
1498
- "stand-alone": {
1499
- "abbreviated": [
1500
- "上午",
1501
- "下午"
1502
- ],
1503
- "narrow": [
1504
- "上午",
1505
- "下午"
1506
- ],
1507
- "wide": [
1508
- "上午",
1509
- "下午"
1510
- ]
1511
- }
1512
- },
1513
- "era-wide": {
1514
- "0": "公元前",
1515
- "1": "公元"
1516
- },
1517
- "era-abbreviated": {
1518
- "0": "公元前",
1519
- "1": "公元"
1520
- },
1521
- "era-narrow": {
1522
- "0": "公元前",
1523
- "1": "公元"
1524
- }
1525
- },
1526
- "ca-islamic": {
1527
- "dateFormats": {
1528
- "full": "Gy年M月d日EEEE",
1529
- "long": "Gy年M月d日",
1530
- "medium": "Gy年M月d日",
1531
- "short": "Gy/M/d"
1532
- },
1533
- "timeFormats": {
1534
- "full": "zzzz ah:mm:ss",
1535
- "long": "z ah:mm:ss",
1536
- "medium": "ah:mm:ss",
1537
- "short": "ah:mm"
1538
- },
1539
- "dateTimeFormats": {
1540
- "full": "{1} {0}",
1541
- "long": "{1} {0}",
1542
- "medium": "{1} {0}",
1543
- "short": "{1} {0}",
1544
- "availableFormats": {
1545
- "Bh": "Bh时",
1546
- "Bhm": "Bh:mm",
1547
- "Bhms": "Bh:mm:ss",
1548
- "d": "d日",
1549
- "E": "ccc",
1550
- "EBhm": "EB h:mm",
1551
- "EBhms": "EB h:mm:ss",
1552
- "Ed": "d日E",
1553
- "Ehm": "Ea h:mm",
1554
- "EHm": "E HH:mm",
1555
- "Ehms": "Ea h:mm:ss",
1556
- "EHms": "E HH:mm:ss",
1557
- "Gy": "Gy年",
1558
- "GyMMM": "Gy年M月",
1559
- "GyMMMd": "Gy年M月d日",
1560
- "GyMMMEd": "Gy年M月d日E",
1561
- "h": "ah时",
1562
- "H": "H时",
1563
- "hm": "ah:mm",
1564
- "Hm": "HH:mm",
1565
- "hms": "ah:mm:ss",
1566
- "Hms": "HH:mm:ss",
1567
- "M": "M月",
1568
- "Md": "M-d",
1569
- "MEd": "M-dE",
1570
- "MMM": "LLL",
1571
- "MMMd": "M月d日",
1572
- "MMMEd": "M月d日E",
1573
- "MMMMd": "M月d日",
1574
- "ms": "mm:ss",
1575
- "y": "Gy年",
1576
- "yyyy": "Gy年",
1577
- "yyyyM": "Gy年M月",
1578
- "yyyyMd": "G y/M/d",
1579
- "yyyyMEd": "G y/M/dE",
1580
- "yyyyMMM": "Gy年M月",
1581
- "yyyyMMMd": "Gy年M月d日",
1582
- "yyyyMMMEd": "Gy年MM月d日E",
1583
- "yyyyMMMM": "Gy年M月",
1584
- "yyyyQQQ": "Gy年第Q季度",
1585
- "yyyyQQQQ": "Gy年第Q季度"
1586
- },
1587
- "appendItems": {
1588
- "Day": "{0} ({2}: {1})",
1589
- "Day-Of-Week": "{0} {1}",
1590
- "Era": "{1} {0}",
1591
- "Hour": "{0} ({2}: {1})",
1592
- "Minute": "{0} ({2}: {1})",
1593
- "Month": "{0} ({2}: {1})",
1594
- "Quarter": "{0} ({2}: {1})",
1595
- "Second": "{0} ({2}: {1})",
1596
- "Timezone": "{0} {1}",
1597
- "Week": "{0} ({2}: {1})",
1598
- "Year": "{1} {0}"
1599
- },
1600
- "intervalFormats": {
1601
- "intervalFormatFallback": "{0} – {1}",
1602
- "Bh": {
1603
- "B": "Bh时至Bh时",
1604
- "h": "Bh时至h时"
1605
- },
1606
- "Bhm": {
1607
- "B": "Bh:mm至Bh:mm",
1608
- "h": "Bh:mm至h:mm",
1609
- "m": "Bh:mm至h:mm"
1610
- },
1611
- "d": {
1612
- "d": "d至d日"
1613
- },
1614
- "Gy": {
1615
- "G": "G y – G y",
1616
- "y": "G y–y"
1617
- },
1618
- "GyM": {
1619
- "G": "GGGGG y-MM – GGGGG y-MM",
1620
- "M": "GGGGG y-MM – y-MM",
1621
- "y": "GGGGG y-MM – y-MM"
1622
- },
1623
- "GyMd": {
1624
- "d": "GGGGG y-MM-dd – y-MM-dd",
1625
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1626
- "M": "GGGGG y-MM-dd – y-MM-dd",
1627
- "y": "GGGGG y-MM-dd – y-MM-dd"
1628
- },
1629
- "GyMEd": {
1630
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1631
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1632
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1633
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1634
- },
1635
- "GyMMM": {
1636
- "G": "G y MMM – G y MMM",
1637
- "M": "G y MMM–MMM",
1638
- "y": "G y MMM – y MMM"
1639
- },
1640
- "GyMMMd": {
1641
- "d": "G y MMM d–d",
1642
- "G": "G y MMM d – G y MMM d",
1643
- "M": "G y MMM d – MMM d",
1644
- "y": "G y MMM d – y MMM d"
1645
- },
1646
- "GyMMMEd": {
1647
- "d": "G y MMM d, E – MMM d, E",
1648
- "G": "G y MMM d, E – G y MMM d, E",
1649
- "M": "G y MMM d, E – MMM d, E",
1650
- "y": "G y MMM d, E – y MMM d, E"
1651
- },
1652
- "h": {
1653
- "a": "ah时至ah时",
1654
- "h": "ah时至h时"
1655
- },
1656
- "H": {
1657
- "H": "HH–HH"
1658
- },
1659
- "hm": {
1660
- "a": "ah:mm至ah:mm",
1661
- "h": "ah:mm至h:mm",
1662
- "m": "ah:mm至h:mm"
1663
- },
1664
- "Hm": {
1665
- "H": "HH:mm–HH:mm",
1666
- "m": "HH:mm–HH:mm"
1667
- },
1668
- "hmv": {
1669
- "a": "vah:mm至ah:mm",
1670
- "h": "vah:mm至h:mm",
1671
- "m": "vah:mm至h:mm"
1672
- },
1673
- "Hmv": {
1674
- "H": "v HH:mm – HH:mm",
1675
- "m": "v HH:mm – HH:mm"
1676
- },
1677
- "hv": {
1678
- "a": "vah时至ah时",
1679
- "h": "vah时至h时"
1680
- },
1681
- "Hv": {
1682
- "H": "HH–HH v"
1683
- },
1684
- "M": {
1685
- "M": "M–M月"
1686
- },
1687
- "Md": {
1688
- "d": "M/d – M/d",
1689
- "M": "M/d – M/d"
1690
- },
1691
- "MEd": {
1692
- "d": "M/dE至M/dE",
1693
- "M": "M/dE至M/dE"
1694
- },
1695
- "MMM": {
1696
- "M": "M月至M月"
1697
- },
1698
- "MMMd": {
1699
- "d": "M月d日至d日",
1700
- "M": "M月d日至M月d日"
1701
- },
1702
- "MMMEd": {
1703
- "d": "M月d日E至d日E",
1704
- "M": "M月d日E至M月d日E"
1705
- },
1706
- "y": {
1707
- "y": "Gy–y年"
1708
- },
1709
- "yM": {
1710
- "M": "Gy年M月至M月",
1711
- "y": "Gy年M月至y年M月"
1712
- },
1713
- "yMd": {
1714
- "d": "Gy/M/d – y/M/d",
1715
- "M": "Gy/M/d – y/M/d",
1716
- "y": "Gy/M/d – y/M/d"
1717
- },
1718
- "yMEd": {
1719
- "d": "Gy/M/dE至y/M/dE",
1720
- "M": "Gy/M/dE至y/M/dE",
1721
- "y": "Gy/M/dE至y/M/dE"
1722
- },
1723
- "yMMM": {
1724
- "M": "Gy年M月至M月",
1725
- "y": "Gy年M月至y年M月"
1726
- },
1727
- "yMMMd": {
1728
- "d": "Gy年M月d日至d日",
1729
- "M": "Gy年M月d日至M月d日",
1730
- "y": "Gy年M月d日至y年M月d日"
1731
- },
1732
- "yMMMEd": {
1733
- "d": "Gy年M月d日E至d日E",
1734
- "M": "Gy年M月d日E至M月d日E",
1735
- "y": "Gy年M月d日E至y年M月d日E"
1736
- },
1737
- "yMMMM": {
1738
- "M": "Gy年M月至M月",
1739
- "y": "Gy年M月至y年M月"
1740
- }
1741
- }
1742
- },
1743
- "months": {
1744
- "format": {
1745
- "abbreviated": [
1746
- "1月",
1747
- "2月",
1748
- "3月",
1749
- "4月",
1750
- "5月",
1751
- "6月",
1752
- "7月",
1753
- "8月",
1754
- "9月",
1755
- "10月",
1756
- "11月",
1757
- "12月"
1758
- ],
1759
- "narrow": [
1760
- "1",
1761
- "2",
1762
- "3",
1763
- "4",
1764
- "5",
1765
- "6",
1766
- "7",
1767
- "8",
1768
- "9",
1769
- "10",
1770
- "11",
1771
- "12"
1772
- ],
1773
- "wide": [
1774
- "一月",
1775
- "二月",
1776
- "三月",
1777
- "四月",
1778
- "五月",
1779
- "六月",
1780
- "七月",
1781
- "八月",
1782
- "九月",
1783
- "十月",
1784
- "十一月",
1785
- "十二月"
1786
- ]
1787
- },
1788
- "stand-alone": {
1789
- "abbreviated": [
1790
- "1月",
1791
- "2月",
1792
- "3月",
1793
- "4月",
1794
- "5月",
1795
- "6月",
1796
- "7月",
1797
- "8月",
1798
- "9月",
1799
- "10月",
1800
- "11月",
1801
- "12月"
1802
- ],
1803
- "narrow": [
1804
- "1",
1805
- "2",
1806
- "3",
1807
- "4",
1808
- "5",
1809
- "6",
1810
- "7",
1811
- "8",
1812
- "9",
1813
- "10",
1814
- "11",
1815
- "12"
1816
- ],
1817
- "wide": [
1818
- "一月",
1819
- "二月",
1820
- "三月",
1821
- "四月",
1822
- "五月",
1823
- "六月",
1824
- "七月",
1825
- "八月",
1826
- "九月",
1827
- "十月",
1828
- "十一月",
1829
- "十二月"
1830
- ]
1831
- }
1832
- },
1833
- "days": {
1834
- "format": {
1835
- "abbreviated": [
1836
- "周日",
1837
- "周一",
1838
- "周二",
1839
- "周三",
1840
- "周四",
1841
- "周五",
1842
- "周六"
1843
- ],
1844
- "narrow": [
1845
- "日",
1846
- "一",
1847
- "二",
1848
- "三",
1849
- "四",
1850
- "五",
1851
- "六"
1852
- ],
1853
- "short": [
1854
- "周日",
1855
- "周一",
1856
- "周二",
1857
- "周三",
1858
- "周四",
1859
- "周五",
1860
- "周六"
1861
- ],
1862
- "wide": [
1863
- "星期日",
1864
- "星期一",
1865
- "星期二",
1866
- "星期三",
1867
- "星期四",
1868
- "星期五",
1869
- "星期六"
1870
- ]
1871
- },
1872
- "stand-alone": {
1873
- "abbreviated": [
1874
- "周日",
1875
- "周一",
1876
- "周二",
1877
- "周三",
1878
- "周四",
1879
- "周五",
1880
- "周六"
1881
- ],
1882
- "narrow": [
1883
- "日",
1884
- "一",
1885
- "二",
1886
- "三",
1887
- "四",
1888
- "五",
1889
- "六"
1890
- ],
1891
- "short": [
1892
- "周日",
1893
- "周一",
1894
- "周二",
1895
- "周三",
1896
- "周四",
1897
- "周五",
1898
- "周六"
1899
- ],
1900
- "wide": [
1901
- "星期日",
1902
- "星期一",
1903
- "星期二",
1904
- "星期三",
1905
- "星期四",
1906
- "星期五",
1907
- "星期六"
1908
- ]
1909
- }
1910
- },
1911
- "quarters": {
1912
- "format": {
1913
- "abbreviated": [
1914
- "1季度",
1915
- "2季度",
1916
- "3季度",
1917
- "4季度"
1918
- ],
1919
- "narrow": [
1920
- "1",
1921
- "2",
1922
- "3",
1923
- "4"
1924
- ],
1925
- "wide": [
1926
- "第一季度",
1927
- "第二季度",
1928
- "第三季度",
1929
- "第四季度"
1930
- ]
1931
- },
1932
- "stand-alone": {
1933
- "abbreviated": [
1934
- "1季度",
1935
- "2季度",
1936
- "3季度",
1937
- "4季度"
1938
- ],
1939
- "narrow": [
1940
- "1",
1941
- "2",
1942
- "3",
1943
- "4"
1944
- ],
1945
- "wide": [
1946
- "第一季度",
1947
- "第二季度",
1948
- "第三季度",
1949
- "第四季度"
1950
- ]
1951
- }
1952
- },
1953
- "dayPeriods": {
1954
- "format": {
1955
- "abbreviated": [
1956
- "上午",
1957
- "下午"
1958
- ],
1959
- "narrow": [
1960
- "上午",
1961
- "下午"
1962
- ],
1963
- "wide": [
1964
- "上午",
1965
- "下午"
1966
- ]
1967
- },
1968
- "stand-alone": {
1969
- "abbreviated": [
1970
- "上午",
1971
- "下午"
1972
- ],
1973
- "narrow": [
1974
- "上午",
1975
- "下午"
1976
- ],
1977
- "wide": [
1978
- "上午",
1979
- "下午"
1980
- ]
1981
- }
1982
- },
1983
- "era-wide": {
1984
- "0": "伊斯兰历"
1985
- },
1986
- "era-abbreviated": {
1987
- "0": "伊斯兰历"
1988
- },
1989
- "era-narrow": {
1990
- "0": "伊斯兰历"
1991
- }
1992
- },
1993
- "ca-japanese": {
1994
- "dateFormats": {
1995
- "full": "Gy年M月d日EEEE",
1996
- "long": "Gy年M月d日",
1997
- "medium": "Gy年M月d日",
1998
- "short": "Gyy-MM-dd"
1999
- },
2000
- "timeFormats": {
2001
- "full": "zzzz ah:mm:ss",
2002
- "long": "z ah:mm:ss",
2003
- "medium": "ah:mm:ss",
2004
- "short": "ah:mm"
2005
- },
2006
- "dateTimeFormats": {
2007
- "full": "{1} {0}",
2008
- "long": "{1} {0}",
2009
- "medium": "{1} {0}",
2010
- "short": "{1} {0}",
2011
- "availableFormats": {
2012
- "Bh": "Bh时",
2013
- "Bhm": "Bh:mm",
2014
- "Bhms": "Bh:mm:ss",
2015
- "d": "d日",
2016
- "E": "ccc",
2017
- "EBhm": "EB h:mm",
2018
- "EBhms": "EB h:mm:ss",
2019
- "Ed": "d日E",
2020
- "Ehm": "Ea h:mm",
2021
- "EHm": "E HH:mm",
2022
- "Ehms": "Ea h:mm:ss",
2023
- "EHms": "E HH:mm:ss",
2024
- "Gy": "Gy年",
2025
- "GyMMM": "Gy年M月",
2026
- "GyMMMd": "Gy年M月d日",
2027
- "GyMMMEd": "Gy年M月d日E",
2028
- "h": "ah时",
2029
- "H": "H时",
2030
- "hm": "ah:mm",
2031
- "Hm": "HH:mm",
2032
- "hms": "ah:mm:ss",
2033
- "Hms": "HH:mm:ss",
2034
- "M": "M月",
2035
- "Md": "M-d",
2036
- "MEd": "M-dE",
2037
- "MMM": "LLL",
2038
- "MMMd": "M月d日",
2039
- "MMMEd": "M月d日E",
2040
- "MMMMd": "M月d日",
2041
- "ms": "mm:ss",
2042
- "y": "Gy年",
2043
- "yyyy": "Gy年",
2044
- "yyyyM": "Gy-MM",
2045
- "yyyyMd": "Gy-MM-dd",
2046
- "yyyyMEd": "Gy-M-d(E)",
2047
- "yyyyMMM": "Gy年M月",
2048
- "yyyyMMMd": "Gy年M月d日",
2049
- "yyyyMMMEd": "Gy年M月d日E",
2050
- "yyyyMMMM": "Gy年M月",
2051
- "yyyyQQQ": "Gy年第Q季度",
2052
- "yyyyQQQQ": "Gy年QQQQ"
2053
- },
2054
- "appendItems": {
2055
- "Day": "{0} ({2}: {1})",
2056
- "Day-Of-Week": "{0} {1}",
2057
- "Era": "{1} {0}",
2058
- "Hour": "{0} ({2}: {1})",
2059
- "Minute": "{0} ({2}: {1})",
2060
- "Month": "{0} ({2}: {1})",
2061
- "Quarter": "{0} ({2}: {1})",
2062
- "Second": "{0} ({2}: {1})",
2063
- "Timezone": "{0} {1}",
2064
- "Week": "{0} ({2}: {1})",
2065
- "Year": "{1} {0}"
2066
- },
2067
- "intervalFormats": {
2068
- "intervalFormatFallback": "{0} – {1}",
2069
- "Bh": {
2070
- "B": "Bh时至Bh时",
2071
- "h": "Bh时至h时"
2072
- },
2073
- "Bhm": {
2074
- "B": "Bh:mm至Bh:mm",
2075
- "h": "Bh:mm至h:mm",
2076
- "m": "Bh:mm至h:mm"
2077
- },
2078
- "d": {
2079
- "d": "d至d日"
2080
- },
2081
- "Gy": {
2082
- "G": "G y – G y",
2083
- "y": "G y–y"
2084
- },
2085
- "GyM": {
2086
- "G": "GGGGG y-MM – GGGGG y-MM",
2087
- "M": "GGGGG y-MM – y-MM",
2088
- "y": "GGGGG y-MM – y-MM"
2089
- },
2090
- "GyMd": {
2091
- "d": "GGGGG y-MM-dd – y-MM-dd",
2092
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2093
- "M": "GGGGG y-MM-dd – y-MM-dd",
2094
- "y": "GGGGG y-MM-dd – y-MM-dd"
2095
- },
2096
- "GyMEd": {
2097
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2098
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2099
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2100
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2101
- },
2102
- "GyMMM": {
2103
- "G": "G y MMM – G y MMM",
2104
- "M": "G y MMM–MMM",
2105
- "y": "G y MMM – y MMM"
2106
- },
2107
- "GyMMMd": {
2108
- "d": "G y MMM d–d",
2109
- "G": "G y MMM d – G y MMM d",
2110
- "M": "G y MMM d – MMM d",
2111
- "y": "G y MMM d – y MMM d"
2112
- },
2113
- "GyMMMEd": {
2114
- "d": "G y MMM d, E – MMM d, E",
2115
- "G": "G y MMM d, E – G y MMM d, E",
2116
- "M": "G y MMM d, E – MMM d, E",
2117
- "y": "G y MMM d, E – y MMM d, E"
2118
- },
2119
- "h": {
2120
- "a": "ah时至ah时",
2121
- "h": "ah时至h时"
2122
- },
2123
- "H": {
2124
- "H": "HH–HH"
2125
- },
2126
- "hm": {
2127
- "a": "ah:mm至ah:mm",
2128
- "h": "ah:mm至h:mm",
2129
- "m": "ah:mm至h:mm"
2130
- },
2131
- "Hm": {
2132
- "H": "HH:mm–HH:mm",
2133
- "m": "HH:mm–HH:mm"
2134
- },
2135
- "hmv": {
2136
- "a": "vah:mm至ah:mm",
2137
- "h": "vah:mm至h:mm",
2138
- "m": "vah:mm至h:mm"
2139
- },
2140
- "Hmv": {
2141
- "H": "v HH:mm – HH:mm",
2142
- "m": "v HH:mm – HH:mm"
2143
- },
2144
- "hv": {
2145
- "a": "vah时至ah时",
2146
- "h": "vah时至h时"
2147
- },
2148
- "Hv": {
2149
- "H": "HH–HH v"
2150
- },
2151
- "M": {
2152
- "M": "M–M月"
2153
- },
2154
- "Md": {
2155
- "d": "M/d – M/d",
2156
- "M": "M/d – M/d"
2157
- },
2158
- "MEd": {
2159
- "d": "M/dE至M/dE",
2160
- "M": "M/dE至M/dE"
2161
- },
2162
- "MMM": {
2163
- "M": "M月至M月"
2164
- },
2165
- "MMMd": {
2166
- "d": "M月d日至d日",
2167
- "M": "M月d日至M月d日"
2168
- },
2169
- "MMMEd": {
2170
- "d": "M月d日E至d日E",
2171
- "M": "M月d日E至M月d日E"
2172
- },
2173
- "y": {
2174
- "y": "Gy–y年",
2175
- "G": "Gy–Gy年"
2176
- },
2177
- "yM": {
2178
- "M": "Gy年M月至M月",
2179
- "y": "Gy年M月至y年M月",
2180
- "G": "Gy年M月至Gy年M月"
2181
- },
2182
- "yMd": {
2183
- "d": "Gy/M/d – y/M/d",
2184
- "M": "Gy/M/d – y/M/d",
2185
- "y": "Gy/M/d – y/M/d",
2186
- "G": "Gy/M/d – Gy/M/d"
2187
- },
2188
- "yMEd": {
2189
- "d": "Gy/M/dE至y/M/dE",
2190
- "M": "Gy/M/dE至y/M/dE",
2191
- "y": "Gy/M/dE至y/M/dE",
2192
- "G": "Gy/M/dE至Gy/M/dE"
2193
- },
2194
- "yMMM": {
2195
- "M": "Gy年M月至M月",
2196
- "y": "Gy年M月至y年M月",
2197
- "G": "Gy年M月至Gy年M月"
2198
- },
2199
- "yMMMd": {
2200
- "d": "Gy年M月d日至d日",
2201
- "M": "Gy年M月d日至M月d日",
2202
- "y": "Gy年M月d日至y年M月d日",
2203
- "G": "Gy年M月d日至Gy年M月d日"
2204
- },
2205
- "yMMMEd": {
2206
- "d": "Gy年M月d日E至d日E",
2207
- "M": "Gy年M月d日E至M月d日E",
2208
- "y": "Gy年M月d日E至y年M月d日E",
2209
- "G": "Gy年M月d日E至Gy年M月d日E"
2210
- },
2211
- "yMMMM": {
2212
- "M": "Gy年M月至M月",
2213
- "y": "Gy年M月至y年M月",
2214
- "G": "Gy年M月至Gy年M月"
2215
- }
2216
- }
2217
- },
2218
- "months": {
2219
- "format": {
2220
- "abbreviated": [
2221
- "1月",
2222
- "2月",
2223
- "3月",
2224
- "4月",
2225
- "5月",
2226
- "6月",
2227
- "7月",
2228
- "8月",
2229
- "9月",
2230
- "10月",
2231
- "11月",
2232
- "12月"
2233
- ],
2234
- "narrow": [
2235
- "1",
2236
- "2",
2237
- "3",
2238
- "4",
2239
- "5",
2240
- "6",
2241
- "7",
2242
- "8",
2243
- "9",
2244
- "10",
2245
- "11",
2246
- "12"
2247
- ],
2248
- "wide": [
2249
- "一月",
2250
- "二月",
2251
- "三月",
2252
- "四月",
2253
- "五月",
2254
- "六月",
2255
- "七月",
2256
- "八月",
2257
- "九月",
2258
- "十月",
2259
- "十一月",
2260
- "十二月"
2261
- ]
2262
- },
2263
- "stand-alone": {
2264
- "abbreviated": [
2265
- "1月",
2266
- "2月",
2267
- "3月",
2268
- "4月",
2269
- "5月",
2270
- "6月",
2271
- "7月",
2272
- "8月",
2273
- "9月",
2274
- "10月",
2275
- "11月",
2276
- "12月"
2277
- ],
2278
- "narrow": [
2279
- "1",
2280
- "2",
2281
- "3",
2282
- "4",
2283
- "5",
2284
- "6",
2285
- "7",
2286
- "8",
2287
- "9",
2288
- "10",
2289
- "11",
2290
- "12"
2291
- ],
2292
- "wide": [
2293
- "一月",
2294
- "二月",
2295
- "三月",
2296
- "四月",
2297
- "五月",
2298
- "六月",
2299
- "七月",
2300
- "八月",
2301
- "九月",
2302
- "十月",
2303
- "十一月",
2304
- "十二月"
2305
- ]
2306
- }
2307
- },
2308
- "days": {
2309
- "format": {
2310
- "abbreviated": [
2311
- "周日",
2312
- "周一",
2313
- "周二",
2314
- "周三",
2315
- "周四",
2316
- "周五",
2317
- "周六"
2318
- ],
2319
- "narrow": [
2320
- "日",
2321
- "一",
2322
- "二",
2323
- "三",
2324
- "四",
2325
- "五",
2326
- "六"
2327
- ],
2328
- "short": [
2329
- "周日",
2330
- "周一",
2331
- "周二",
2332
- "周三",
2333
- "周四",
2334
- "周五",
2335
- "周六"
2336
- ],
2337
- "wide": [
2338
- "星期日",
2339
- "星期一",
2340
- "星期二",
2341
- "星期三",
2342
- "星期四",
2343
- "星期五",
2344
- "星期六"
2345
- ]
2346
- },
2347
- "stand-alone": {
2348
- "abbreviated": [
2349
- "周日",
2350
- "周一",
2351
- "周二",
2352
- "周三",
2353
- "周四",
2354
- "周五",
2355
- "周六"
2356
- ],
2357
- "narrow": [
2358
- "日",
2359
- "一",
2360
- "二",
2361
- "三",
2362
- "四",
2363
- "五",
2364
- "六"
2365
- ],
2366
- "short": [
2367
- "周日",
2368
- "周一",
2369
- "周二",
2370
- "周三",
2371
- "周四",
2372
- "周五",
2373
- "周六"
2374
- ],
2375
- "wide": [
2376
- "星期日",
2377
- "星期一",
2378
- "星期二",
2379
- "星期三",
2380
- "星期四",
2381
- "星期五",
2382
- "星期六"
2383
- ]
2384
- }
2385
- },
2386
- "quarters": {
2387
- "format": {
2388
- "abbreviated": [
2389
- "1季度",
2390
- "2季度",
2391
- "3季度",
2392
- "4季度"
2393
- ],
2394
- "narrow": [
2395
- "1",
2396
- "2",
2397
- "3",
2398
- "4"
2399
- ],
2400
- "wide": [
2401
- "第一季度",
2402
- "第二季度",
2403
- "第三季度",
2404
- "第四季度"
2405
- ]
2406
- },
2407
- "stand-alone": {
2408
- "abbreviated": [
2409
- "1季度",
2410
- "2季度",
2411
- "3季度",
2412
- "4季度"
2413
- ],
2414
- "narrow": [
2415
- "1",
2416
- "2",
2417
- "3",
2418
- "4"
2419
- ],
2420
- "wide": [
2421
- "第一季度",
2422
- "第二季度",
2423
- "第三季度",
2424
- "第四季度"
2425
- ]
2426
- }
2427
- },
2428
- "dayPeriods": {
2429
- "format": {
2430
- "abbreviated": [
2431
- "上午",
2432
- "下午"
2433
- ],
2434
- "narrow": [
2435
- "上午",
2436
- "下午"
2437
- ],
2438
- "wide": [
2439
- "上午",
2440
- "下午"
2441
- ]
2442
- },
2443
- "stand-alone": {
2444
- "abbreviated": [
2445
- "上午",
2446
- "下午"
2447
- ],
2448
- "narrow": [
2449
- "上午",
2450
- "下午"
2451
- ],
2452
- "wide": [
2453
- "上午",
2454
- "下午"
2455
- ]
2456
- }
2457
- },
2458
- "era-wide": {
2459
- "232": "明治",
2460
- "233": "大正",
2461
- "234": "昭和",
2462
- "235": "平成",
2463
- "236": "令和"
2464
- },
2465
- "era-abbreviated": {
2466
- "232": "明治",
2467
- "233": "大正",
2468
- "234": "昭和",
2469
- "235": "平成",
2470
- "236": "令和"
2471
- },
2472
- "era-narrow": {
2473
- "232": "M",
2474
- "233": "T",
2475
- "234": "S",
2476
- "235": "H",
2477
- "236": "R"
2478
- }
2479
- },
2480
- "ca-persian": {
2481
- "dateFormats": {
2482
- "full": "Gy年M月d日EEEE",
2483
- "long": "Gy年M月d日",
2484
- "medium": "Gy年M月d日",
2485
- "short": "Gy/M/d"
2486
- },
2487
- "timeFormats": {
2488
- "full": "zzzz ah:mm:ss",
2489
- "long": "z ah:mm:ss",
2490
- "medium": "ah:mm:ss",
2491
- "short": "ah:mm"
2492
- },
2493
- "dateTimeFormats": {
2494
- "full": "{1} {0}",
2495
- "long": "{1} {0}",
2496
- "medium": "{1} {0}",
2497
- "short": "{1} {0}",
2498
- "availableFormats": {
2499
- "Bh": "Bh时",
2500
- "Bhm": "Bh:mm",
2501
- "Bhms": "Bh:mm:ss",
2502
- "d": "d日",
2503
- "E": "ccc",
2504
- "EBhm": "EB h:mm",
2505
- "EBhms": "EB h:mm:ss",
2506
- "Ed": "d日E",
2507
- "Ehm": "Ea h:mm",
2508
- "EHm": "E HH:mm",
2509
- "Ehms": "Ea h:mm:ss",
2510
- "EHms": "E HH:mm:ss",
2511
- "Gy": "Gy年",
2512
- "GyMMM": "Gy年M月",
2513
- "GyMMMd": "Gy年M月d日",
2514
- "GyMMMEd": "Gy年M月d日E",
2515
- "h": "ah时",
2516
- "H": "H时",
2517
- "hm": "ah:mm",
2518
- "Hm": "HH:mm",
2519
- "hms": "ah:mm:ss",
2520
- "Hms": "HH:mm:ss",
2521
- "M": "L",
2522
- "Md": "M/d",
2523
- "MEd": "M/dE",
2524
- "MMM": "LL",
2525
- "MMMd": "M月d日",
2526
- "MMMEd": "M月d日E",
2527
- "MMMMd": "M月d日",
2528
- "ms": "mm:ss",
2529
- "y": "Gy年",
2530
- "yyyy": "Gy年",
2531
- "yyyyM": "Gy年M月",
2532
- "yyyyMd": "G y/M/d",
2533
- "yyyyMEd": "G y/M/dE",
2534
- "yyyyMMM": "Gy年M月",
2535
- "yyyyMMMd": "Gy年M月d日",
2536
- "yyyyMMMEd": "Gy年MM月d日E",
2537
- "yyyyMMMM": "Gy年M月",
2538
- "yyyyQQQ": "Gy年第Q季度",
2539
- "yyyyQQQQ": "Gy年第Q季度"
2540
- },
2541
- "appendItems": {
2542
- "Day": "{0} ({2}: {1})",
2543
- "Day-Of-Week": "{0} {1}",
2544
- "Era": "{1} {0}",
2545
- "Hour": "{0} ({2}: {1})",
2546
- "Minute": "{0} ({2}: {1})",
2547
- "Month": "{0} ({2}: {1})",
2548
- "Quarter": "{0} ({2}: {1})",
2549
- "Second": "{0} ({2}: {1})",
2550
- "Timezone": "{0} {1}",
2551
- "Week": "{0} ({2}: {1})",
2552
- "Year": "{1} {0}"
2553
- },
2554
- "intervalFormats": {
2555
- "intervalFormatFallback": "{0} – {1}",
2556
- "Bh": {
2557
- "B": "Bh时至Bh时",
2558
- "h": "Bh时至h时"
2559
- },
2560
- "Bhm": {
2561
- "B": "Bh:mm至Bh:mm",
2562
- "h": "Bh:mm至h:mm",
2563
- "m": "Bh:mm至h:mm"
2564
- },
2565
- "d": {
2566
- "d": "d至d日"
2567
- },
2568
- "Gy": {
2569
- "G": "G y – G y",
2570
- "y": "G y–y"
2571
- },
2572
- "GyM": {
2573
- "G": "GGGGG y-MM – GGGGG y-MM",
2574
- "M": "GGGGG y-MM – y-MM",
2575
- "y": "GGGGG y-MM – y-MM"
2576
- },
2577
- "GyMd": {
2578
- "d": "GGGGG y-MM-dd – y-MM-dd",
2579
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2580
- "M": "GGGGG y-MM-dd – y-MM-dd",
2581
- "y": "GGGGG y-MM-dd – y-MM-dd"
2582
- },
2583
- "GyMEd": {
2584
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2585
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2586
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2587
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2588
- },
2589
- "GyMMM": {
2590
- "G": "G y MMM – G y MMM",
2591
- "M": "G y MMM–MMM",
2592
- "y": "G y MMM – y MMM"
2593
- },
2594
- "GyMMMd": {
2595
- "d": "G y MMM d–d",
2596
- "G": "G y MMM d – G y MMM d",
2597
- "M": "G y MMM d – MMM d",
2598
- "y": "G y MMM d – y MMM d"
2599
- },
2600
- "GyMMMEd": {
2601
- "d": "G y MMM d, E – MMM d, E",
2602
- "G": "G y MMM d, E – G y MMM d, E",
2603
- "M": "G y MMM d, E – MMM d, E",
2604
- "y": "G y MMM d, E – y MMM d, E"
2605
- },
2606
- "h": {
2607
- "a": "ah时至ah时",
2608
- "h": "ah时至h时"
2609
- },
2610
- "H": {
2611
- "H": "HH–HH"
2612
- },
2613
- "hm": {
2614
- "a": "ah:mm至ah:mm",
2615
- "h": "ah:mm至h:mm",
2616
- "m": "ah:mm至h:mm"
2617
- },
2618
- "Hm": {
2619
- "H": "HH:mm–HH:mm",
2620
- "m": "HH:mm–HH:mm"
2621
- },
2622
- "hmv": {
2623
- "a": "vah:mm至ah:mm",
2624
- "h": "vah:mm至h:mm",
2625
- "m": "vah:mm至h:mm"
2626
- },
2627
- "Hmv": {
2628
- "H": "v HH:mm – HH:mm",
2629
- "m": "v HH:mm – HH:mm"
2630
- },
2631
- "hv": {
2632
- "a": "vah时至ah时",
2633
- "h": "vah时至h时"
2634
- },
2635
- "Hv": {
2636
- "H": "HH–HH v"
2637
- },
2638
- "M": {
2639
- "M": "M–M月"
2640
- },
2641
- "Md": {
2642
- "d": "M/d – M/d",
2643
- "M": "M/d – M/d"
2644
- },
2645
- "MEd": {
2646
- "d": "M/dE至M/dE",
2647
- "M": "M/dE至M/dE"
2648
- },
2649
- "MMM": {
2650
- "M": "M月至M月"
2651
- },
2652
- "MMMd": {
2653
- "d": "M月d日至d日",
2654
- "M": "M月d日至M月d日"
2655
- },
2656
- "MMMEd": {
2657
- "d": "M月d日E至d日E",
2658
- "M": "M月d日E至M月d日E"
2659
- },
2660
- "y": {
2661
- "y": "Gy–y年"
2662
- },
2663
- "yM": {
2664
- "M": "Gy年M月至M月",
2665
- "y": "Gy年M月至y年M月"
2666
- },
2667
- "yMd": {
2668
- "d": "Gy/M/d – y/M/d",
2669
- "M": "Gy/M/d – y/M/d",
2670
- "y": "Gy/M/d – y/M/d"
2671
- },
2672
- "yMEd": {
2673
- "d": "Gy/M/dE至y/M/dE",
2674
- "M": "Gy/M/dE至y/M/dE",
2675
- "y": "Gy/M/dE至y/M/dE"
2676
- },
2677
- "yMMM": {
2678
- "M": "Gy年M月至M月",
2679
- "y": "Gy年M月至y年M月"
2680
- },
2681
- "yMMMd": {
2682
- "d": "Gy年M月d日至d日",
2683
- "M": "Gy年M月d日至M月d日",
2684
- "y": "Gy年M月d日至y年M月d日"
2685
- },
2686
- "yMMMEd": {
2687
- "d": "Gy年M月d日E至d日E",
2688
- "M": "Gy年M月d日E至M月d日E",
2689
- "y": "Gy年M月d日E至y年M月d日E"
2690
- },
2691
- "yMMMM": {
2692
- "M": "Gy年M月至M月",
2693
- "y": "Gy年M月至y年M月"
2694
- }
2695
- }
2696
- },
2697
- "months": {
2698
- "format": {
2699
- "abbreviated": [
2700
- "1月",
2701
- "2月",
2702
- "3月",
2703
- "4月",
2704
- "5月",
2705
- "6月",
2706
- "7月",
2707
- "8月",
2708
- "9月",
2709
- "10月",
2710
- "11月",
2711
- "12月"
2712
- ],
2713
- "narrow": [
2714
- "1",
2715
- "2",
2716
- "3",
2717
- "4",
2718
- "5",
2719
- "6",
2720
- "7",
2721
- "8",
2722
- "9",
2723
- "10",
2724
- "11",
2725
- "12"
2726
- ],
2727
- "wide": [
2728
- "一月",
2729
- "二月",
2730
- "三月",
2731
- "四月",
2732
- "五月",
2733
- "六月",
2734
- "七月",
2735
- "八月",
2736
- "九月",
2737
- "十月",
2738
- "十一月",
2739
- "十二月"
2740
- ]
2741
- },
2742
- "stand-alone": {
2743
- "abbreviated": [
2744
- "1月",
2745
- "2月",
2746
- "3月",
2747
- "4月",
2748
- "5月",
2749
- "6月",
2750
- "7月",
2751
- "8月",
2752
- "9月",
2753
- "10月",
2754
- "11月",
2755
- "12月"
2756
- ],
2757
- "narrow": [
2758
- "1",
2759
- "2",
2760
- "3",
2761
- "4",
2762
- "5",
2763
- "6",
2764
- "7",
2765
- "8",
2766
- "9",
2767
- "10",
2768
- "11",
2769
- "12"
2770
- ],
2771
- "wide": [
2772
- "一月",
2773
- "二月",
2774
- "三月",
2775
- "四月",
2776
- "五月",
2777
- "六月",
2778
- "七月",
2779
- "八月",
2780
- "九月",
2781
- "十月",
2782
- "十一月",
2783
- "十二月"
2784
- ]
2785
- }
2786
- },
2787
- "days": {
2788
- "format": {
2789
- "abbreviated": [
2790
- "周日",
2791
- "周一",
2792
- "周二",
2793
- "周三",
2794
- "周四",
2795
- "周五",
2796
- "周六"
2797
- ],
2798
- "narrow": [
2799
- "日",
2800
- "一",
2801
- "二",
2802
- "三",
2803
- "四",
2804
- "五",
2805
- "六"
2806
- ],
2807
- "short": [
2808
- "周日",
2809
- "周一",
2810
- "周二",
2811
- "周三",
2812
- "周四",
2813
- "周五",
2814
- "周六"
2815
- ],
2816
- "wide": [
2817
- "星期日",
2818
- "星期一",
2819
- "星期二",
2820
- "星期三",
2821
- "星期四",
2822
- "星期五",
2823
- "星期六"
2824
- ]
2825
- },
2826
- "stand-alone": {
2827
- "abbreviated": [
2828
- "周日",
2829
- "周一",
2830
- "周二",
2831
- "周三",
2832
- "周四",
2833
- "周五",
2834
- "周六"
2835
- ],
2836
- "narrow": [
2837
- "日",
2838
- "一",
2839
- "二",
2840
- "三",
2841
- "四",
2842
- "五",
2843
- "六"
2844
- ],
2845
- "short": [
2846
- "周日",
2847
- "周一",
2848
- "周二",
2849
- "周三",
2850
- "周四",
2851
- "周五",
2852
- "周六"
2853
- ],
2854
- "wide": [
2855
- "星期日",
2856
- "星期一",
2857
- "星期二",
2858
- "星期三",
2859
- "星期四",
2860
- "星期五",
2861
- "星期六"
2862
- ]
2863
- }
2864
- },
2865
- "quarters": {
2866
- "format": {
2867
- "abbreviated": [
2868
- "1季度",
2869
- "2季度",
2870
- "3季度",
2871
- "4季度"
2872
- ],
2873
- "narrow": [
2874
- "1",
2875
- "2",
2876
- "3",
2877
- "4"
2878
- ],
2879
- "wide": [
2880
- "第一季度",
2881
- "第二季度",
2882
- "第三季度",
2883
- "第四季度"
2884
- ]
2885
- },
2886
- "stand-alone": {
2887
- "abbreviated": [
2888
- "1季度",
2889
- "2季度",
2890
- "3季度",
2891
- "4季度"
2892
- ],
2893
- "narrow": [
2894
- "1",
2895
- "2",
2896
- "3",
2897
- "4"
2898
- ],
2899
- "wide": [
2900
- "第一季度",
2901
- "第二季度",
2902
- "第三季度",
2903
- "第四季度"
2904
- ]
2905
- }
2906
- },
2907
- "dayPeriods": {
2908
- "format": {
2909
- "abbreviated": [
2910
- "上午",
2911
- "下午"
2912
- ],
2913
- "narrow": [
2914
- "上午",
2915
- "下午"
2916
- ],
2917
- "wide": [
2918
- "上午",
2919
- "下午"
2920
- ]
2921
- },
2922
- "stand-alone": {
2923
- "abbreviated": [
2924
- "上午",
2925
- "下午"
2926
- ],
2927
- "narrow": [
2928
- "上午",
2929
- "下午"
2930
- ],
2931
- "wide": [
2932
- "上午",
2933
- "下午"
2934
- ]
2935
- }
2936
- },
2937
- "era-wide": {
2938
- "0": "波斯历"
2939
- },
2940
- "era-abbreviated": {
2941
- "0": "波斯历"
2942
- },
2943
- "era-narrow": {
2944
- "0": "波斯历"
2945
- }
2946
- },
2947
- "ca-buddhist": {
2948
- "dateFormats": {
2949
- "full": "Gy年M月d日EEEE",
2950
- "long": "Gy年M月d日",
2951
- "medium": "Gy年M月d日",
2952
- "short": "Gy-M-d"
2953
- },
2954
- "timeFormats": {
2955
- "full": "zzzz ah:mm:ss",
2956
- "long": "z ah:mm:ss",
2957
- "medium": "ah:mm:ss",
2958
- "short": "ah:mm"
2959
- },
2960
- "dateTimeFormats": {
2961
- "full": "{1} {0}",
2962
- "long": "{1} {0}",
2963
- "medium": "{1} {0}",
2964
- "short": "{1} {0}",
2965
- "availableFormats": {
2966
- "Bh": "Bh时",
2967
- "Bhm": "Bh:mm",
2968
- "Bhms": "Bh:mm:ss",
2969
- "d": "d日",
2970
- "E": "ccc",
2971
- "EBhm": "EB h:mm",
2972
- "EBhms": "EB h:mm:ss",
2973
- "Ed": "d日E",
2974
- "Ehm": "Ea h:mm",
2975
- "EHm": "E HH:mm",
2976
- "Ehms": "Ea h:mm:ss",
2977
- "EHms": "E HH:mm:ss",
2978
- "Gy": "Gy年",
2979
- "GyMMM": "Gy年MM月",
2980
- "GyMMMd": "Gy年MM月d日",
2981
- "GyMMMEd": "Gy年MM月d日E",
2982
- "h": "ah时",
2983
- "H": "H时",
2984
- "hm": "ah:mm",
2985
- "Hm": "HH:mm",
2986
- "hms": "ah:mm:ss",
2987
- "Hms": "HH:mm:ss",
2988
- "M": "M月",
2989
- "Md": "M-d",
2990
- "MEd": "M-dE",
2991
- "MMM": "LL",
2992
- "MMMd": "M月d日",
2993
- "MMMEd": "M月d日E",
2994
- "MMMMd": "M月d日",
2995
- "ms": "mm:ss",
2996
- "y": "Gy年",
2997
- "yyyy": "Gy年",
2998
- "yyyyM": "Gy-M",
2999
- "yyyyMd": "Gy-M-d",
3000
- "yyyyMEd": "Gy-M-d(E)",
3001
- "yyyyMMM": "Gy年M月",
3002
- "yyyyMMMd": "Gy年M月d日",
3003
- "yyyyMMMEd": "Gy年M月d日E",
3004
- "yyyyMMMM": "Gy年M月",
3005
- "yyyyQQQ": "Gy年第Q季度",
3006
- "yyyyQQQQ": "Gy年QQQQ"
3007
- },
3008
- "appendItems": {
3009
- "Day": "{0} ({2}: {1})",
3010
- "Day-Of-Week": "{0} {1}",
3011
- "Era": "{1} {0}",
3012
- "Hour": "{0} ({2}: {1})",
3013
- "Minute": "{0} ({2}: {1})",
3014
- "Month": "{0} ({2}: {1})",
3015
- "Quarter": "{0} ({2}: {1})",
3016
- "Second": "{0} ({2}: {1})",
3017
- "Timezone": "{0} {1}",
3018
- "Week": "{0} ({2}: {1})",
3019
- "Year": "{1} {0}"
3020
- },
3021
- "intervalFormats": {
3022
- "intervalFormatFallback": "{0} – {1}",
3023
- "Bh": {
3024
- "B": "Bh时至Bh时",
3025
- "h": "Bh时至h时"
3026
- },
3027
- "Bhm": {
3028
- "B": "Bh:mm至Bh:mm",
3029
- "h": "Bh:mm至h:mm",
3030
- "m": "Bh:mm至h:mm"
3031
- },
3032
- "d": {
3033
- "d": "d至d日"
3034
- },
3035
- "Gy": {
3036
- "G": "G y – G y",
3037
- "y": "G y–y"
3038
- },
3039
- "GyM": {
3040
- "G": "GGGGG y-MM – GGGGG y-MM",
3041
- "M": "GGGGG y-MM – y-MM",
3042
- "y": "GGGGG y-MM – y-MM"
3043
- },
3044
- "GyMd": {
3045
- "d": "GGGGG y-MM-dd – y-MM-dd",
3046
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3047
- "M": "GGGGG y-MM-dd – y-MM-dd",
3048
- "y": "GGGGG y-MM-dd – y-MM-dd"
3049
- },
3050
- "GyMEd": {
3051
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3052
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3053
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3054
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3055
- },
3056
- "GyMMM": {
3057
- "G": "G y MMM – G y MMM",
3058
- "M": "G y MMM–MMM",
3059
- "y": "G y MMM – y MMM"
3060
- },
3061
- "GyMMMd": {
3062
- "d": "G y MMM d–d",
3063
- "G": "G y MMM d – G y MMM d",
3064
- "M": "G y MMM d – MMM d",
3065
- "y": "G y MMM d – y MMM d"
3066
- },
3067
- "GyMMMEd": {
3068
- "d": "G y MMM d, E – MMM d, E",
3069
- "G": "G y MMM d, E – G y MMM d, E",
3070
- "M": "G y MMM d, E – MMM d, E",
3071
- "y": "G y MMM d, E – y MMM d, E"
3072
- },
3073
- "h": {
3074
- "a": "ah时至ah时",
3075
- "h": "ah时至h时"
3076
- },
3077
- "H": {
3078
- "H": "HH–HH"
3079
- },
3080
- "hm": {
3081
- "a": "ah:mm至ah:mm",
3082
- "h": "ah:mm至h:mm",
3083
- "m": "ah:mm至h:mm"
3084
- },
3085
- "Hm": {
3086
- "H": "HH:mm–HH:mm",
3087
- "m": "HH:mm–HH:mm"
3088
- },
3089
- "hmv": {
3090
- "a": "vah:mm至ah:mm",
3091
- "h": "vah:mm至h:mm",
3092
- "m": "vah:mm至h:mm"
3093
- },
3094
- "Hmv": {
3095
- "H": "v HH:mm – HH:mm",
3096
- "m": "v HH:mm – HH:mm"
3097
- },
3098
- "hv": {
3099
- "a": "vah时至ah时",
3100
- "h": "vah时至h时"
3101
- },
3102
- "Hv": {
3103
- "H": "HH–HH v"
3104
- },
3105
- "M": {
3106
- "M": "M–M月"
3107
- },
3108
- "Md": {
3109
- "d": "M/d – M/d",
3110
- "M": "M/d – M/d"
3111
- },
3112
- "MEd": {
3113
- "d": "M/dE至M/dE",
3114
- "M": "M/dE至M/dE"
3115
- },
3116
- "MMM": {
3117
- "M": "MMM – MMM"
3118
- },
3119
- "MMMd": {
3120
- "d": "M月d日至d日",
3121
- "M": "M月d日至M月d日"
3122
- },
3123
- "MMMEd": {
3124
- "d": "M月d日E至d日E",
3125
- "M": "M月d日E至M月d日E"
3126
- },
3127
- "y": {
3128
- "y": "Gy–y年"
3129
- },
3130
- "yM": {
3131
- "M": "Gy年M月至M月",
3132
- "y": "Gy年M月至y年M月"
3133
- },
3134
- "yMd": {
3135
- "d": "Gy/M/d – y/M/d",
3136
- "M": "Gy/M/d – y/M/d",
3137
- "y": "Gy/M/d – y/M/d"
3138
- },
3139
- "yMEd": {
3140
- "d": "Gy/M/dE至y/M/dE",
3141
- "M": "Gy/M/dE至y/M/dE",
3142
- "y": "Gy/M/dE至y/M/dE"
3143
- },
3144
- "yMMM": {
3145
- "M": "Gy年M月至M月",
3146
- "y": "Gy年M月至y年M月"
3147
- },
3148
- "yMMMd": {
3149
- "d": "Gy年M月d日至d日",
3150
- "M": "Gy年M月d日至M月d日",
3151
- "y": "Gy年M月d日至y年M月d日"
3152
- },
3153
- "yMMMEd": {
3154
- "d": "Gy年M月d日E至d日E",
3155
- "M": "Gy年M月d日E至M月d日E",
3156
- "y": "Gy年M月d日E至y年M月d日E"
3157
- },
3158
- "yMMMM": {
3159
- "M": "Gy年M月至M月",
3160
- "y": "Gy年M月至y年M月"
3161
- }
3162
- }
3163
- },
3164
- "months": {
3165
- "format": {
3166
- "abbreviated": [
3167
- "1月",
3168
- "2月",
3169
- "3月",
3170
- "4月",
3171
- "5月",
3172
- "6月",
3173
- "7月",
3174
- "8月",
3175
- "9月",
3176
- "10月",
3177
- "11月",
3178
- "12月"
3179
- ],
3180
- "narrow": [
3181
- "1",
3182
- "2",
3183
- "3",
3184
- "4",
3185
- "5",
3186
- "6",
3187
- "7",
3188
- "8",
3189
- "9",
3190
- "10",
3191
- "11",
3192
- "12"
3193
- ],
3194
- "wide": [
3195
- "一月",
3196
- "二月",
3197
- "三月",
3198
- "四月",
3199
- "五月",
3200
- "六月",
3201
- "七月",
3202
- "八月",
3203
- "九月",
3204
- "十月",
3205
- "十一月",
3206
- "十二月"
3207
- ]
3208
- },
3209
- "stand-alone": {
3210
- "abbreviated": [
3211
- "1月",
3212
- "2月",
3213
- "3月",
3214
- "4月",
3215
- "5月",
3216
- "6月",
3217
- "7月",
3218
- "8月",
3219
- "9月",
3220
- "10月",
3221
- "11月",
3222
- "12月"
3223
- ],
3224
- "narrow": [
3225
- "1",
3226
- "2",
3227
- "3",
3228
- "4",
3229
- "5",
3230
- "6",
3231
- "7",
3232
- "8",
3233
- "9",
3234
- "10",
3235
- "11",
3236
- "12"
3237
- ],
3238
- "wide": [
3239
- "一月",
3240
- "二月",
3241
- "三月",
3242
- "四月",
3243
- "五月",
3244
- "六月",
3245
- "七月",
3246
- "八月",
3247
- "九月",
3248
- "十月",
3249
- "十一月",
3250
- "十二月"
3251
- ]
3252
- }
3253
- },
3254
- "days": {
3255
- "format": {
3256
- "abbreviated": [
3257
- "周日",
3258
- "周一",
3259
- "周二",
3260
- "周三",
3261
- "周四",
3262
- "周五",
3263
- "周六"
3264
- ],
3265
- "narrow": [
3266
- "日",
3267
- "一",
3268
- "二",
3269
- "三",
3270
- "四",
3271
- "五",
3272
- "六"
3273
- ],
3274
- "short": [
3275
- "周日",
3276
- "周一",
3277
- "周二",
3278
- "周三",
3279
- "周四",
3280
- "周五",
3281
- "周六"
3282
- ],
3283
- "wide": [
3284
- "星期日",
3285
- "星期一",
3286
- "星期二",
3287
- "星期三",
3288
- "星期四",
3289
- "星期五",
3290
- "星期六"
3291
- ]
3292
- },
3293
- "stand-alone": {
3294
- "abbreviated": [
3295
- "周日",
3296
- "周一",
3297
- "周二",
3298
- "周三",
3299
- "周四",
3300
- "周五",
3301
- "周六"
3302
- ],
3303
- "narrow": [
3304
- "日",
3305
- "一",
3306
- "二",
3307
- "三",
3308
- "四",
3309
- "五",
3310
- "六"
3311
- ],
3312
- "short": [
3313
- "周日",
3314
- "周一",
3315
- "周二",
3316
- "周三",
3317
- "周四",
3318
- "周五",
3319
- "周六"
3320
- ],
3321
- "wide": [
3322
- "星期日",
3323
- "星期一",
3324
- "星期二",
3325
- "星期三",
3326
- "星期四",
3327
- "星期五",
3328
- "星期六"
3329
- ]
3330
- }
3331
- },
3332
- "quarters": {
3333
- "format": {
3334
- "abbreviated": [
3335
- "1季度",
3336
- "2季度",
3337
- "3季度",
3338
- "4季度"
3339
- ],
3340
- "narrow": [
3341
- "1",
3342
- "2",
3343
- "3",
3344
- "4"
3345
- ],
3346
- "wide": [
3347
- "第一季度",
3348
- "第二季度",
3349
- "第三季度",
3350
- "第四季度"
3351
- ]
3352
- },
3353
- "stand-alone": {
3354
- "abbreviated": [
3355
- "1季度",
3356
- "2季度",
3357
- "3季度",
3358
- "4季度"
3359
- ],
3360
- "narrow": [
3361
- "1",
3362
- "2",
3363
- "3",
3364
- "4"
3365
- ],
3366
- "wide": [
3367
- "第一季度",
3368
- "第二季度",
3369
- "第三季度",
3370
- "第四季度"
3371
- ]
3372
- }
3373
- },
3374
- "dayPeriods": {
3375
- "format": {
3376
- "abbreviated": [
3377
- "上午",
3378
- "下午"
3379
- ],
3380
- "narrow": [
3381
- "上午",
3382
- "下午"
3383
- ],
3384
- "wide": [
3385
- "上午",
3386
- "下午"
3387
- ]
3388
- },
3389
- "stand-alone": {
3390
- "abbreviated": [
3391
- "上午",
3392
- "下午"
3393
- ],
3394
- "narrow": [
3395
- "上午",
3396
- "下午"
3397
- ],
3398
- "wide": [
3399
- "上午",
3400
- "下午"
3401
- ]
3402
- }
3403
- },
3404
- "era-wide": {
3405
- "0": "佛历"
3406
- },
3407
- "era-abbreviated": {
3408
- "0": "佛历"
3409
- },
3410
- "era-narrow": {
3411
- "0": "佛历"
3412
- }
3413
- },
3414
- "dateFields": {
3415
- "era": {
3416
- "displayName": "纪元"
3417
- },
3418
- "year-wide": {
3419
- "displayName": "年",
3420
- "relative-type--1": "去年",
3421
- "relative-type-0": "今年",
3422
- "relative-type-1": "明年",
3423
- "relativeTime-type-future": {
3424
- "relativeTimePattern-count-other": "{0}年后"
3425
- },
3426
- "relativeTime-type-past": {
3427
- "relativeTimePattern-count-other": "{0}年前"
3428
- }
3429
- },
3430
- "year-short": {
3431
- "displayName": "年",
3432
- "relative-type--1": "去年",
3433
- "relative-type-0": "今年",
3434
- "relative-type-1": "明年",
3435
- "relativeTime-type-future": {
3436
- "relativeTimePattern-count-other": "{0}年后"
3437
- },
3438
- "relativeTime-type-past": {
3439
- "relativeTimePattern-count-other": "{0}年前"
3440
- }
3441
- },
3442
- "year-narrow": {
3443
- "displayName": "年",
3444
- "relative-type--1": "去年",
3445
- "relative-type-0": "今年",
3446
- "relative-type-1": "明年",
3447
- "relativeTime-type-future": {
3448
- "relativeTimePattern-count-other": "{0}年后"
3449
- },
3450
- "relativeTime-type-past": {
3451
- "relativeTimePattern-count-other": "{0}年前"
3452
- }
3453
- },
3454
- "quarter-wide": {
3455
- "displayName": "季度",
3456
- "relative-type--1": "上季度",
3457
- "relative-type-0": "本季度",
3458
- "relative-type-1": "下季度",
3459
- "relativeTime-type-future": {
3460
- "relativeTimePattern-count-other": "{0}个季度后"
3461
- },
3462
- "relativeTime-type-past": {
3463
- "relativeTimePattern-count-other": "{0}个季度前"
3464
- }
3465
- },
3466
- "quarter-short": {
3467
- "displayName": "季",
3468
- "relative-type--1": "上季度",
3469
- "relative-type-0": "本季度",
3470
- "relative-type-1": "下季度",
3471
- "relativeTime-type-future": {
3472
- "relativeTimePattern-count-other": "{0}个季度后"
3473
- },
3474
- "relativeTime-type-past": {
3475
- "relativeTimePattern-count-other": "{0}个季度前"
3476
- }
3477
- },
3478
- "quarter-narrow": {
3479
- "displayName": "季",
3480
- "relative-type--1": "上季度",
3481
- "relative-type-0": "本季度",
3482
- "relative-type-1": "下季度",
3483
- "relativeTime-type-future": {
3484
- "relativeTimePattern-count-other": "{0}个季度后"
3485
- },
3486
- "relativeTime-type-past": {
3487
- "relativeTimePattern-count-other": "{0}个季度前"
3488
- }
3489
- },
3490
- "month-wide": {
3491
- "displayName": "月",
3492
- "relative-type--1": "上个月",
3493
- "relative-type-0": "本月",
3494
- "relative-type-1": "下个月",
3495
- "relativeTime-type-future": {
3496
- "relativeTimePattern-count-other": "{0}个月后"
3497
- },
3498
- "relativeTime-type-past": {
3499
- "relativeTimePattern-count-other": "{0}个月前"
3500
- }
3501
- },
3502
- "month-short": {
3503
- "displayName": "月",
3504
- "relative-type--1": "上个月",
3505
- "relative-type-0": "本月",
3506
- "relative-type-1": "下个月",
3507
- "relativeTime-type-future": {
3508
- "relativeTimePattern-count-other": "{0}个月后"
3509
- },
3510
- "relativeTime-type-past": {
3511
- "relativeTimePattern-count-other": "{0}个月前"
3512
- }
3513
- },
3514
- "month-narrow": {
3515
- "displayName": "月",
3516
- "relative-type--1": "上个月",
3517
- "relative-type-0": "本月",
3518
- "relative-type-1": "下个月",
3519
- "relativeTime-type-future": {
3520
- "relativeTimePattern-count-other": "{0}个月后"
3521
- },
3522
- "relativeTime-type-past": {
3523
- "relativeTimePattern-count-other": "{0}个月前"
3524
- }
3525
- },
3526
- "week-wide": {
3527
- "displayName": "周",
3528
- "relative-type--1": "上周",
3529
- "relative-type-0": "本周",
3530
- "relative-type-1": "下周",
3531
- "relativeTime-type-future": {
3532
- "relativeTimePattern-count-other": "{0}周后"
3533
- },
3534
- "relativeTime-type-past": {
3535
- "relativeTimePattern-count-other": "{0}周前"
3536
- },
3537
- "relativePeriod": "{0}这周"
3538
- },
3539
- "week-short": {
3540
- "displayName": "周",
3541
- "relative-type--1": "上周",
3542
- "relative-type-0": "本周",
3543
- "relative-type-1": "下周",
3544
- "relativeTime-type-future": {
3545
- "relativeTimePattern-count-other": "{0}周后"
3546
- },
3547
- "relativeTime-type-past": {
3548
- "relativeTimePattern-count-other": "{0}周前"
3549
- },
3550
- "relativePeriod": "{0}这周"
3551
- },
3552
- "week-narrow": {
3553
- "displayName": "周",
3554
- "relative-type--1": "上周",
3555
- "relative-type-0": "本周",
3556
- "relative-type-1": "下周",
3557
- "relativeTime-type-future": {
3558
- "relativeTimePattern-count-other": "{0}周后"
3559
- },
3560
- "relativeTime-type-past": {
3561
- "relativeTimePattern-count-other": "{0}周前"
3562
- },
3563
- "relativePeriod": "{0}这周"
3564
- },
3565
- "day-wide": {
3566
- "displayName": "日",
3567
- "relative-type--2": "前天",
3568
- "relative-type--1": "昨天",
3569
- "relative-type-0": "今天",
3570
- "relative-type-1": "明天",
3571
- "relative-type-2": "后天",
3572
- "relativeTime-type-future": {
3573
- "relativeTimePattern-count-other": "{0}天后"
3574
- },
3575
- "relativeTime-type-past": {
3576
- "relativeTimePattern-count-other": "{0}天前"
3577
- }
3578
- },
3579
- "day-short": {
3580
- "displayName": "日",
3581
- "relative-type--2": "前天",
3582
- "relative-type--1": "昨天",
3583
- "relative-type-0": "今天",
3584
- "relative-type-1": "明天",
3585
- "relative-type-2": "后天",
3586
- "relativeTime-type-future": {
3587
- "relativeTimePattern-count-other": "{0}天后"
3588
- },
3589
- "relativeTime-type-past": {
3590
- "relativeTimePattern-count-other": "{0}天前"
3591
- }
3592
- },
3593
- "day-narrow": {
3594
- "displayName": "日",
3595
- "relative-type--2": "前天",
3596
- "relative-type--1": "昨天",
3597
- "relative-type-0": "今天",
3598
- "relative-type-1": "明天",
3599
- "relative-type-2": "后天",
3600
- "relativeTime-type-future": {
3601
- "relativeTimePattern-count-other": "{0}天后"
3602
- },
3603
- "relativeTime-type-past": {
3604
- "relativeTimePattern-count-other": "{0}天前"
3605
- }
3606
- },
3607
- "weekday": {
3608
- "displayName": "工作日"
3609
- },
3610
- "hour-wide": {
3611
- "displayName": "小时",
3612
- "relative-type-0": "这一时间 / 此时",
3613
- "relativeTime-type-future": {
3614
- "relativeTimePattern-count-other": "{0}小时后"
3615
- },
3616
- "relativeTime-type-past": {
3617
- "relativeTimePattern-count-other": "{0}小时前"
3618
- }
3619
- },
3620
- "hour-short": {
3621
- "displayName": "小时",
3622
- "relative-type-0": "这一时间 / 此时",
3623
- "relativeTime-type-future": {
3624
- "relativeTimePattern-count-other": "{0}小时后"
3625
- },
3626
- "relativeTime-type-past": {
3627
- "relativeTimePattern-count-other": "{0}小时前"
3628
- }
3629
- },
3630
- "hour-narrow": {
3631
- "displayName": "小时",
3632
- "relative-type-0": "这一时间 / 此时",
3633
- "relativeTime-type-future": {
3634
- "relativeTimePattern-count-other": "{0}小时后"
3635
- },
3636
- "relativeTime-type-past": {
3637
- "relativeTimePattern-count-other": "{0}小时前"
3638
- }
3639
- },
3640
- "minute-wide": {
3641
- "displayName": "分钟",
3642
- "relative-type-0": "此刻",
3643
- "relativeTime-type-future": {
3644
- "relativeTimePattern-count-other": "{0}分钟后"
3645
- },
3646
- "relativeTime-type-past": {
3647
- "relativeTimePattern-count-other": "{0}分钟前"
3648
- }
3649
- },
3650
- "minute-short": {
3651
- "displayName": "分",
3652
- "relative-type-0": "此刻",
3653
- "relativeTime-type-future": {
3654
- "relativeTimePattern-count-other": "{0}分钟后"
3655
- },
3656
- "relativeTime-type-past": {
3657
- "relativeTimePattern-count-other": "{0}分钟前"
3658
- }
3659
- },
3660
- "minute-narrow": {
3661
- "displayName": "分",
3662
- "relative-type-0": "此刻",
3663
- "relativeTime-type-future": {
3664
- "relativeTimePattern-count-other": "{0}分钟后"
3665
- },
3666
- "relativeTime-type-past": {
3667
- "relativeTimePattern-count-other": "{0}分钟前"
3668
- }
3669
- },
3670
- "second-wide": {
3671
- "displayName": "秒",
3672
- "relative-type-0": "现在",
3673
- "relativeTime-type-future": {
3674
- "relativeTimePattern-count-other": "{0}秒钟后"
3675
- },
3676
- "relativeTime-type-past": {
3677
- "relativeTimePattern-count-other": "{0}秒钟前"
3678
- }
3679
- },
3680
- "second-short": {
3681
- "displayName": "秒",
3682
- "relative-type-0": "现在",
3683
- "relativeTime-type-future": {
3684
- "relativeTimePattern-count-other": "{0}秒后"
3685
- },
3686
- "relativeTime-type-past": {
3687
- "relativeTimePattern-count-other": "{0}秒前"
3688
- }
3689
- },
3690
- "second-narrow": {
3691
- "displayName": "秒",
3692
- "relative-type-0": "现在",
3693
- "relativeTime-type-future": {
3694
- "relativeTimePattern-count-other": "{0}秒后"
3695
- },
3696
- "relativeTime-type-past": {
3697
- "relativeTimePattern-count-other": "{0}秒前"
3698
- }
3699
- },
3700
- "zone": {
3701
- "displayName": "时区"
3702
- }
3703
- },
3704
- "decimalFormat": {
3705
- "standard": "#,##0.###"
3706
- },
3707
- "decimalFormat-long": {
3708
- "1000-other": "0",
3709
- "10000-other": "0万",
3710
- "100000-other": "00万",
3711
- "1000000-other": "000万",
3712
- "10000000-other": "0000万",
3713
- "100000000-other": "0亿",
3714
- "1000000000-other": "00亿",
3715
- "10000000000-other": "000亿",
3716
- "100000000000-other": "0000亿",
3717
- "1000000000000-other": "0兆",
3718
- "10000000000000-other": "00兆",
3719
- "100000000000000-other": "000兆"
3720
- },
3721
- "decimalFormat-short": {
3722
- "1000-other": "0",
3723
- "10000-other": "0万",
3724
- "100000-other": "00万",
3725
- "1000000-other": "000万",
3726
- "10000000-other": "0000万",
3727
- "100000000-other": "0亿",
3728
- "1000000000-other": "00亿",
3729
- "10000000000-other": "000亿",
3730
- "100000000000-other": "0000亿",
3731
- "1000000000000-other": "0兆",
3732
- "10000000000000-other": "00兆",
3733
- "100000000000000-other": "000兆"
3734
- },
3735
- "scientificFormat": {
3736
- "standard": "#E0"
3737
- },
3738
- "percentFormat": {
3739
- "standard": "#,##0%"
3740
- },
3741
- "currencyFormat": {
3742
- "standard": "¤#,##0.00",
3743
- "accounting": "¤#,##0.00;(¤#,##0.00)",
3744
- "currencySpacing": {
3745
- "beforeCurrency": {
3746
- "currencyMatch": "[:^S:]",
3747
- "surroundingMatch": "[:digit:]",
3748
- "insertBetween": " "
3749
- },
3750
- "afterCurrency": {
3751
- "currencyMatch": "[:^S:]",
3752
- "surroundingMatch": "[:digit:]",
3753
- "insertBetween": " "
3754
- }
3755
- },
3756
- "sap-standard": "#,##0.00¤",
3757
- "sap-accounting": "#,##0.00¤;(#,##0.00¤)"
3758
- },
3759
- "miscPattern": {
3760
- "approximately": "~{0}",
3761
- "atLeast": "{0}+",
3762
- "atMost": "≤{0}",
3763
- "range": "{0}-{1}"
3764
- },
3765
- "currencyFormat-short": {
3766
- "1000-other": "0",
3767
- "10000-other": "¤0万",
3768
- "100000-other": "¤00万",
3769
- "1000000-other": "¤000万",
3770
- "10000000-other": "¤0000万",
3771
- "100000000-other": "¤0亿",
3772
- "1000000000-other": "¤00亿",
3773
- "10000000000-other": "¤000亿",
3774
- "100000000000-other": "¤0000亿",
3775
- "1000000000000-other": "¤0兆",
3776
- "10000000000000-other": "¤00兆",
3777
- "100000000000000-other": "¤000兆"
3778
- },
3779
- "symbols-latn-decimal": ".",
3780
- "symbols-latn-group": ",",
3781
- "symbols-latn-list": ";",
3782
- "symbols-latn-percentSign": "%",
3783
- "symbols-latn-plusSign": "+",
3784
- "symbols-latn-minusSign": "-",
3785
- "symbols-latn-exponential": "E",
3786
- "symbols-latn-superscriptingExponent": "×",
3787
- "symbols-latn-perMille": "‰",
3788
- "symbols-latn-infinity": "∞",
3789
- "symbols-latn-nan": "NaN",
3790
- "symbols-latn-timeSeparator": ":",
3791
- "currencySymbols": {
3792
- "AUD": "AU$",
3793
- "BRL": "R$",
3794
- "CAD": "CA$",
3795
- "CNY": "¥",
3796
- "EUR": "€",
3797
- "GBP": "£",
3798
- "HKD": "HK$",
3799
- "ILR": "ILS",
3800
- "ILS": "₪",
3801
- "INR": "₹",
3802
- "JPY": "JP¥",
3803
- "KRW": "₩",
3804
- "MXN": "MX$",
3805
- "NZD": "NZ$",
3806
- "TWD": "NT$",
3807
- "USD": "US$",
3808
- "VND": "₫",
3809
- "XAF": "FCFA",
3810
- "XCD": "EC$",
3811
- "XOF": "CFA",
3812
- "XPF": "CFPF"
3813
- },
3814
- "rtl": false,
3815
- "listPattern-standard-wide": {
3816
- "2": "{0}和{1}",
3817
- "start": "{0}、{1}",
3818
- "middle": "{0}、{1}",
3819
- "end": "{0}和{1}"
3820
- },
3821
- "listPattern-or-wide": {
3822
- "2": "{0}或{1}",
3823
- "start": "{0}、{1}",
3824
- "middle": "{0}、{1}",
3825
- "end": "{0}或{1}"
3826
- },
3827
- "listPattern-or-short": {
3828
- "2": "{0}或{1}",
3829
- "start": "{0}、{1}",
3830
- "middle": "{0}、{1}",
3831
- "end": "{0}或{1}"
3832
- },
3833
- "listPattern-standard-short": {
3834
- "2": "{0}和{1}",
3835
- "start": "{0}、{1}",
3836
- "middle": "{0}、{1}",
3837
- "end": "{0}和{1}"
3838
- },
3839
- "units": {
3840
- "short": {
3841
- "per": {
3842
- "compoundUnitPattern": "{0}/{1}"
3843
- },
3844
- "acceleration-g-force": {
3845
- "displayName": "G力",
3846
- "unitPattern-count-other": "{0}G"
3847
- },
3848
- "acceleration-meter-per-second-squared": {
3849
- "displayName": "米/秒²",
3850
- "unitPattern-count-other": "{0}米/秒²"
3851
- },
3852
- "angle-revolution": {
3853
- "displayName": "转",
3854
- "unitPattern-count-other": "{0}转"
3855
- },
3856
- "angle-radian": {
3857
- "displayName": "弧度",
3858
- "unitPattern-count-other": "{0}弧度"
3859
- },
3860
- "angle-degree": {
3861
- "displayName": "度",
3862
- "unitPattern-count-other": "{0}°"
3863
- },
3864
- "angle-arc-minute": {
3865
- "displayName": "弧分",
3866
- "unitPattern-count-other": "{0}弧分"
3867
- },
3868
- "angle-arc-second": {
3869
- "displayName": "弧秒",
3870
- "unitPattern-count-other": "{0}弧秒"
3871
- },
3872
- "area-square-kilometer": {
3873
- "displayName": "平方公里",
3874
- "unitPattern-count-other": "{0}平方公里",
3875
- "perUnitPattern": "{0}/平方公里"
3876
- },
3877
- "area-hectare": {
3878
- "displayName": "公顷",
3879
- "unitPattern-count-other": "{0}公顷"
3880
- },
3881
- "area-square-meter": {
3882
- "displayName": "平方米",
3883
- "unitPattern-count-other": "{0}平方米",
3884
- "perUnitPattern": "{0}/平方米"
3885
- },
3886
- "area-square-centimeter": {
3887
- "displayName": "平方厘米",
3888
- "unitPattern-count-other": "{0}平方厘米",
3889
- "perUnitPattern": "{0}/平方厘米"
3890
- },
3891
- "area-square-mile": {
3892
- "displayName": "平方英里",
3893
- "unitPattern-count-other": "{0}平方英里",
3894
- "perUnitPattern": "{0}/平方英里"
3895
- },
3896
- "area-acre": {
3897
- "displayName": "英亩",
3898
- "unitPattern-count-other": "{0}英亩"
3899
- },
3900
- "area-square-yard": {
3901
- "displayName": "平方码",
3902
- "unitPattern-count-other": "{0}平方码"
3903
- },
3904
- "area-square-foot": {
3905
- "displayName": "平方英尺",
3906
- "unitPattern-count-other": "{0}平方英尺"
3907
- },
3908
- "area-square-inch": {
3909
- "displayName": "平方英寸",
3910
- "unitPattern-count-other": "{0}平方英寸",
3911
- "perUnitPattern": "{0}/平方英寸"
3912
- },
3913
- "area-dunam": {
3914
- "displayName": "杜纳亩",
3915
- "unitPattern-count-other": "{0}杜纳亩"
3916
- },
3917
- "concentr-karat": {
3918
- "displayName": "克拉",
3919
- "unitPattern-count-other": "{0}克拉"
3920
- },
3921
- "concentr-milligram-per-deciliter": {
3922
- "displayName": "毫克/分升",
3923
- "unitPattern-count-other": "{0}毫克/分升"
3924
- },
3925
- "concentr-millimole-per-liter": {
3926
- "displayName": "毫摩尔/升",
3927
- "unitPattern-count-other": "{0}毫摩尔/升"
3928
- },
3929
- "concentr-part-per-million": {
3930
- "displayName": "ppm",
3931
- "unitPattern-count-other": "{0}ppm"
3932
- },
3933
- "concentr-percent": {
3934
- "displayName": "%",
3935
- "unitPattern-count-other": "{0}%"
3936
- },
3937
- "concentr-permille": {
3938
- "displayName": "‰",
3939
- "unitPattern-count-other": "{0}‰"
3940
- },
3941
- "concentr-permyriad": {
3942
- "displayName": "‱",
3943
- "unitPattern-count-other": "{0}‱"
3944
- },
3945
- "concentr-mole": {
3946
- "displayName": "摩尔",
3947
- "unitPattern-count-other": "{0}摩尔"
3948
- },
3949
- "consumption-liter-per-kilometer": {
3950
- "displayName": "升/公里",
3951
- "unitPattern-count-other": "{0}升/公里"
3952
- },
3953
- "consumption-liter-per-100kilometers": {
3954
- "displayName": "升/100千米",
3955
- "unitPattern-count-other": "{0}升/100千米"
3956
- },
3957
- "consumption-mile-per-gallon": {
3958
- "displayName": "英里/加仑",
3959
- "unitPattern-count-other": "{0}英里/加仑"
3960
- },
3961
- "consumption-mile-per-gallon-imperial": {
3962
- "displayName": "英里/英制加仑",
3963
- "unitPattern-count-other": "{0}英里/英制加仑"
3964
- },
3965
- "digital-petabyte": {
3966
- "displayName": "PB",
3967
- "unitPattern-count-other": "{0} PB"
3968
- },
3969
- "digital-terabyte": {
3970
- "displayName": "太字节",
3971
- "unitPattern-count-other": "{0}太字节"
3972
- },
3973
- "digital-terabit": {
3974
- "displayName": "太比特",
3975
- "unitPattern-count-other": "{0}太比特"
3976
- },
3977
- "digital-gigabyte": {
3978
- "displayName": "吉字节",
3979
- "unitPattern-count-other": "{0}吉字节"
3980
- },
3981
- "digital-gigabit": {
3982
- "displayName": "吉比特",
3983
- "unitPattern-count-other": "{0}吉比特"
3984
- },
3985
- "digital-megabyte": {
3986
- "displayName": "兆字节",
3987
- "unitPattern-count-other": "{0}兆字节"
3988
- },
3989
- "digital-megabit": {
3990
- "displayName": "兆比特",
3991
- "unitPattern-count-other": "{0}兆比特"
3992
- },
3993
- "digital-kilobyte": {
3994
- "displayName": "千字节",
3995
- "unitPattern-count-other": "{0}千字节"
3996
- },
3997
- "digital-kilobit": {
3998
- "displayName": "千比特",
3999
- "unitPattern-count-other": "{0}千比特"
4000
- },
4001
- "digital-byte": {
4002
- "displayName": "字节",
4003
- "unitPattern-count-other": "{0}字节"
4004
- },
4005
- "digital-bit": {
4006
- "displayName": "比特",
4007
- "unitPattern-count-other": "{0}比特"
4008
- },
4009
- "duration-century": {
4010
- "displayName": "世纪",
4011
- "unitPattern-count-other": "{0}个世纪"
4012
- },
4013
- "duration-year": {
4014
- "displayName": "年",
4015
- "unitPattern-count-other": "{0}年",
4016
- "perUnitPattern": "{0}/年"
4017
- },
4018
- "duration-month": {
4019
- "displayName": "个月",
4020
- "unitPattern-count-other": "{0}个月",
4021
- "perUnitPattern": "{0}/月"
4022
- },
4023
- "duration-week": {
4024
- "displayName": "周",
4025
- "unitPattern-count-other": "{0}周",
4026
- "perUnitPattern": "{0}/周"
4027
- },
4028
- "duration-day": {
4029
- "displayName": "天",
4030
- "unitPattern-count-other": "{0}天",
4031
- "perUnitPattern": "{0}/天"
4032
- },
4033
- "duration-hour": {
4034
- "displayName": "小时",
4035
- "unitPattern-count-other": "{0}小时",
4036
- "perUnitPattern": "{0}/小时"
4037
- },
4038
- "duration-minute": {
4039
- "displayName": "分钟",
4040
- "unitPattern-count-other": "{0}分钟",
4041
- "perUnitPattern": "{0}/分钟"
4042
- },
4043
- "duration-second": {
4044
- "displayName": "秒",
4045
- "unitPattern-count-other": "{0}秒",
4046
- "perUnitPattern": "{0}/秒"
4047
- },
4048
- "duration-millisecond": {
4049
- "displayName": "毫秒",
4050
- "unitPattern-count-other": "{0}毫秒"
4051
- },
4052
- "duration-microsecond": {
4053
- "displayName": "微秒",
4054
- "unitPattern-count-other": "{0}微秒"
4055
- },
4056
- "duration-nanosecond": {
4057
- "displayName": "纳秒",
4058
- "unitPattern-count-other": "{0}纳秒"
4059
- },
4060
- "electric-ampere": {
4061
- "displayName": "安培",
4062
- "unitPattern-count-other": "{0}安"
4063
- },
4064
- "electric-milliampere": {
4065
- "displayName": "毫安",
4066
- "unitPattern-count-other": "{0}毫安"
4067
- },
4068
- "electric-ohm": {
4069
- "displayName": "欧姆",
4070
- "unitPattern-count-other": "{0}欧"
4071
- },
4072
- "electric-volt": {
4073
- "displayName": "伏特",
4074
- "unitPattern-count-other": "{0}伏"
4075
- },
4076
- "energy-kilocalorie": {
4077
- "displayName": "千卡",
4078
- "unitPattern-count-other": "{0}千卡"
4079
- },
4080
- "energy-calorie": {
4081
- "displayName": "卡",
4082
- "unitPattern-count-other": "{0}卡"
4083
- },
4084
- "energy-foodcalorie": {
4085
- "displayName": "卡",
4086
- "unitPattern-count-other": "{0}卡"
4087
- },
4088
- "energy-kilojoule": {
4089
- "displayName": "千焦",
4090
- "unitPattern-count-other": "{0}千焦"
4091
- },
4092
- "energy-joule": {
4093
- "displayName": "焦耳",
4094
- "unitPattern-count-other": "{0}焦耳"
4095
- },
4096
- "energy-kilowatt-hour": {
4097
- "displayName": "千瓦时",
4098
- "unitPattern-count-other": "{0}千瓦时"
4099
- },
4100
- "energy-electronvolt": {
4101
- "displayName": "电子伏",
4102
- "unitPattern-count-other": "{0}电子伏"
4103
- },
4104
- "energy-british-thermal-unit": {
4105
- "displayName": "英热单位",
4106
- "unitPattern-count-other": "{0}英热单位"
4107
- },
4108
- "force-pound-force": {
4109
- "displayName": "磅力",
4110
- "unitPattern-count-other": "{0}磅力"
4111
- },
4112
- "force-newton": {
4113
- "displayName": "牛",
4114
- "unitPattern-count-other": "{0}牛"
4115
- },
4116
- "frequency-gigahertz": {
4117
- "displayName": "吉赫",
4118
- "unitPattern-count-other": "{0}吉赫"
4119
- },
4120
- "frequency-megahertz": {
4121
- "displayName": "兆赫",
4122
- "unitPattern-count-other": "{0}兆赫"
4123
- },
4124
- "frequency-kilohertz": {
4125
- "displayName": "千赫",
4126
- "unitPattern-count-other": "{0}千赫"
4127
- },
4128
- "frequency-hertz": {
4129
- "displayName": "赫兹",
4130
- "unitPattern-count-other": "{0}赫"
4131
- },
4132
- "length-kilometer": {
4133
- "displayName": "公里",
4134
- "unitPattern-count-other": "{0}公里",
4135
- "perUnitPattern": "{0}/公里"
4136
- },
4137
- "length-meter": {
4138
- "displayName": "米",
4139
- "unitPattern-count-other": "{0}米",
4140
- "perUnitPattern": "{0}/米"
4141
- },
4142
- "length-decimeter": {
4143
- "displayName": "分米",
4144
- "unitPattern-count-other": "{0}分米"
4145
- },
4146
- "length-centimeter": {
4147
- "displayName": "厘米",
4148
- "unitPattern-count-other": "{0}厘米",
4149
- "perUnitPattern": "{0}/厘米"
4150
- },
4151
- "length-millimeter": {
4152
- "displayName": "毫米",
4153
- "unitPattern-count-other": "{0}毫米"
4154
- },
4155
- "length-micrometer": {
4156
- "displayName": "微米",
4157
- "unitPattern-count-other": "{0}微米"
4158
- },
4159
- "length-nanometer": {
4160
- "displayName": "纳米",
4161
- "unitPattern-count-other": "{0}纳米"
4162
- },
4163
- "length-picometer": {
4164
- "displayName": "皮米",
4165
- "unitPattern-count-other": "{0}皮米"
4166
- },
4167
- "length-mile": {
4168
- "displayName": "英里",
4169
- "unitPattern-count-other": "{0}英里"
4170
- },
4171
- "length-yard": {
4172
- "displayName": "码",
4173
- "unitPattern-count-other": "{0}码"
4174
- },
4175
- "length-foot": {
4176
- "displayName": "英尺",
4177
- "unitPattern-count-other": "{0}英尺",
4178
- "perUnitPattern": "{0}/英尺"
4179
- },
4180
- "length-inch": {
4181
- "displayName": "英寸",
4182
- "unitPattern-count-other": "{0}英寸",
4183
- "perUnitPattern": "{0}/英寸"
4184
- },
4185
- "length-parsec": {
4186
- "displayName": "秒差距",
4187
- "unitPattern-count-other": "{0}秒差距"
4188
- },
4189
- "length-light-year": {
4190
- "displayName": "光年",
4191
- "unitPattern-count-other": "{0}光年"
4192
- },
4193
- "length-astronomical-unit": {
4194
- "displayName": "天文单位",
4195
- "unitPattern-count-other": "{0}天文单位"
4196
- },
4197
- "length-furlong": {
4198
- "displayName": "弗隆",
4199
- "unitPattern-count-other": "{0}弗隆"
4200
- },
4201
- "length-fathom": {
4202
- "displayName": "英寻",
4203
- "unitPattern-count-other": "{0}英寻"
4204
- },
4205
- "length-nautical-mile": {
4206
- "displayName": "海里",
4207
- "unitPattern-count-other": "{0}海里"
4208
- },
4209
- "length-mile-scandinavian": {
4210
- "displayName": "斯堪的纳维亚英里",
4211
- "unitPattern-count-other": "{0}斯堪的纳维亚英里"
4212
- },
4213
- "length-point": {
4214
- "displayName": "pt",
4215
- "unitPattern-count-other": "{0} pt"
4216
- },
4217
- "length-solar-radius": {
4218
- "displayName": "太阳半径",
4219
- "unitPattern-count-other": "{0}太阳半径"
4220
- },
4221
- "light-lux": {
4222
- "displayName": "勒克斯",
4223
- "unitPattern-count-other": "{0}勒克斯"
4224
- },
4225
- "light-solar-luminosity": {
4226
- "displayName": "太阳光度",
4227
- "unitPattern-count-other": "{0}太阳光度"
4228
- },
4229
- "mass-metric-ton": {
4230
- "displayName": "公吨",
4231
- "unitPattern-count-other": "{0}公吨"
4232
- },
4233
- "mass-kilogram": {
4234
- "displayName": "千克",
4235
- "unitPattern-count-other": "{0}千克",
4236
- "perUnitPattern": "{0}/千克"
4237
- },
4238
- "mass-gram": {
4239
- "displayName": "克",
4240
- "unitPattern-count-other": "{0}克",
4241
- "perUnitPattern": "{0}/克"
4242
- },
4243
- "mass-milligram": {
4244
- "displayName": "毫克",
4245
- "unitPattern-count-other": "{0}毫克"
4246
- },
4247
- "mass-microgram": {
4248
- "displayName": "微克",
4249
- "unitPattern-count-other": "{0}微克"
4250
- },
4251
- "mass-ton": {
4252
- "displayName": "吨",
4253
- "unitPattern-count-other": "{0}吨"
4254
- },
4255
- "mass-stone": {
4256
- "displayName": "英石",
4257
- "unitPattern-count-other": "{0}英石"
4258
- },
4259
- "mass-pound": {
4260
- "displayName": "磅",
4261
- "unitPattern-count-other": "{0}磅",
4262
- "perUnitPattern": "{0}/磅"
4263
- },
4264
- "mass-ounce": {
4265
- "displayName": "盎司",
4266
- "unitPattern-count-other": "{0}盎司",
4267
- "perUnitPattern": "{0}/盎司"
4268
- },
4269
- "mass-ounce-troy": {
4270
- "displayName": "金衡盎司",
4271
- "unitPattern-count-other": "{0}金衡盎司"
4272
- },
4273
- "mass-carat": {
4274
- "displayName": "克拉",
4275
- "unitPattern-count-other": "{0}克拉"
4276
- },
4277
- "mass-dalton": {
4278
- "displayName": "道尔顿",
4279
- "unitPattern-count-other": "{0}道尔顿"
4280
- },
4281
- "mass-earth-mass": {
4282
- "displayName": "地球质量",
4283
- "unitPattern-count-other": "{0}地球质量"
4284
- },
4285
- "mass-solar-mass": {
4286
- "displayName": "太阳质量",
4287
- "unitPattern-count-other": "{0}太阳质量"
4288
- },
4289
- "power-gigawatt": {
4290
- "displayName": "吉瓦",
4291
- "unitPattern-count-other": "{0}吉瓦"
4292
- },
4293
- "power-megawatt": {
4294
- "displayName": "兆瓦",
4295
- "unitPattern-count-other": "{0}兆瓦"
4296
- },
4297
- "power-kilowatt": {
4298
- "displayName": "千瓦",
4299
- "unitPattern-count-other": "{0}千瓦"
4300
- },
4301
- "power-watt": {
4302
- "displayName": "瓦特",
4303
- "unitPattern-count-other": "{0}瓦"
4304
- },
4305
- "power-milliwatt": {
4306
- "displayName": "毫瓦",
4307
- "unitPattern-count-other": "{0}毫瓦"
4308
- },
4309
- "power-horsepower": {
4310
- "displayName": "马力",
4311
- "unitPattern-count-other": "{0}马力"
4312
- },
4313
- "pressure-hectopascal": {
4314
- "displayName": "百帕",
4315
- "unitPattern-count-other": "{0}百帕"
4316
- },
4317
- "pressure-millimeter-of-mercury": {
4318
- "displayName": "毫米汞柱",
4319
- "unitPattern-count-other": "{0}毫米汞柱"
4320
- },
4321
- "pressure-pound-per-square-inch": {
4322
- "displayName": "磅/平方英寸",
4323
- "unitPattern-count-other": "每平方英寸{0}磅"
4324
- },
4325
- "pressure-inch-hg": {
4326
- "displayName": "英寸汞柱",
4327
- "unitPattern-count-other": "{0}英寸汞柱"
4328
- },
4329
- "pressure-millibar": {
4330
- "displayName": "毫巴",
4331
- "unitPattern-count-other": "{0}毫巴"
4332
- },
4333
- "pressure-atmosphere": {
4334
- "displayName": "大气压",
4335
- "unitPattern-count-other": "{0}个大气压"
4336
- },
4337
- "pressure-kilopascal": {
4338
- "displayName": "千帕",
4339
- "unitPattern-count-other": "{0}千帕"
4340
- },
4341
- "pressure-megapascal": {
4342
- "displayName": "兆帕",
4343
- "unitPattern-count-other": "{0}兆帕"
4344
- },
4345
- "speed-kilometer-per-hour": {
4346
- "displayName": "公里/小时",
4347
- "unitPattern-count-other": "每小时{0}公里"
4348
- },
4349
- "speed-meter-per-second": {
4350
- "displayName": "米/秒",
4351
- "unitPattern-count-other": "{0}米/秒"
4352
- },
4353
- "speed-mile-per-hour": {
4354
- "displayName": "英里/小时",
4355
- "unitPattern-count-other": "{0}英里/小时"
4356
- },
4357
- "speed-knot": {
4358
- "displayName": "节",
4359
- "unitPattern-count-other": "{0}节"
4360
- },
4361
- "temperature-generic": {
4362
- "displayName": "°",
4363
- "unitPattern-count-other": "{0}°"
4364
- },
4365
- "temperature-celsius": {
4366
- "displayName": "摄氏度",
4367
- "unitPattern-count-other": "{0}°C"
4368
- },
4369
- "temperature-fahrenheit": {
4370
- "displayName": "华氏度",
4371
- "unitPattern-count-other": "{0}°F"
4372
- },
4373
- "temperature-kelvin": {
4374
- "displayName": "开",
4375
- "unitPattern-count-other": "{0}K"
4376
- },
4377
- "torque-pound-foot": {
4378
- "displayName": "磅英尺",
4379
- "unitPattern-count-other": "{0}磅英尺"
4380
- },
4381
- "torque-newton-meter": {
4382
- "displayName": "牛米",
4383
- "unitPattern-count-other": "{0}牛米"
4384
- },
4385
- "volume-cubic-kilometer": {
4386
- "displayName": "立方千米",
4387
- "unitPattern-count-other": "{0}立方千米"
4388
- },
4389
- "volume-cubic-meter": {
4390
- "displayName": "立方米",
4391
- "unitPattern-count-other": "{0}立方米",
4392
- "perUnitPattern": "{0}/立方米"
4393
- },
4394
- "volume-cubic-centimeter": {
4395
- "displayName": "立方厘米",
4396
- "unitPattern-count-other": "{0}立方厘米",
4397
- "perUnitPattern": "{0}/立方厘米"
4398
- },
4399
- "volume-cubic-mile": {
4400
- "displayName": "立方英里",
4401
- "unitPattern-count-other": "{0}立方英里"
4402
- },
4403
- "volume-cubic-yard": {
4404
- "displayName": "立方码",
4405
- "unitPattern-count-other": "{0}立方码"
4406
- },
4407
- "volume-cubic-foot": {
4408
- "displayName": "立方英尺",
4409
- "unitPattern-count-other": "{0}立方英尺"
4410
- },
4411
- "volume-cubic-inch": {
4412
- "displayName": "立方英寸",
4413
- "unitPattern-count-other": "{0}立方英寸"
4414
- },
4415
- "volume-megaliter": {
4416
- "displayName": "兆升",
4417
- "unitPattern-count-other": "{0}兆升"
4418
- },
4419
- "volume-hectoliter": {
4420
- "displayName": "公石",
4421
- "unitPattern-count-other": "{0}公石"
4422
- },
4423
- "volume-liter": {
4424
- "displayName": "升",
4425
- "unitPattern-count-other": "{0}升",
4426
- "perUnitPattern": "{0}/升"
4427
- },
4428
- "volume-deciliter": {
4429
- "displayName": "分升",
4430
- "unitPattern-count-other": "{0}分升"
4431
- },
4432
- "volume-centiliter": {
4433
- "displayName": "厘升",
4434
- "unitPattern-count-other": "{0}厘升"
4435
- },
4436
- "volume-milliliter": {
4437
- "displayName": "毫升",
4438
- "unitPattern-count-other": "{0}毫升"
4439
- },
4440
- "volume-pint-metric": {
4441
- "displayName": "公制品脱",
4442
- "unitPattern-count-other": "{0}公制品脱"
4443
- },
4444
- "volume-cup-metric": {
4445
- "displayName": "公制杯",
4446
- "unitPattern-count-other": "{0}公制杯"
4447
- },
4448
- "volume-acre-foot": {
4449
- "displayName": "英亩英尺",
4450
- "unitPattern-count-other": "{0}英亩英尺"
4451
- },
4452
- "volume-bushel": {
4453
- "displayName": "蒲式耳",
4454
- "unitPattern-count-other": "{0}蒲式耳"
4455
- },
4456
- "volume-gallon": {
4457
- "displayName": "加仑",
4458
- "unitPattern-count-other": "{0}加仑",
4459
- "perUnitPattern": "{0}/加仑"
4460
- },
4461
- "volume-gallon-imperial": {
4462
- "displayName": "英制加仑",
4463
- "unitPattern-count-other": "{0}英制加仑",
4464
- "perUnitPattern": "{0}/英制加仑"
4465
- },
4466
- "volume-quart": {
4467
- "displayName": "夸脱",
4468
- "unitPattern-count-other": "{0}夸脱"
4469
- },
4470
- "volume-pint": {
4471
- "displayName": "品脱",
4472
- "unitPattern-count-other": "{0}品脱"
4473
- },
4474
- "volume-cup": {
4475
- "displayName": "杯",
4476
- "unitPattern-count-other": "{0}杯"
4477
- },
4478
- "volume-fluid-ounce": {
4479
- "displayName": "液盎司",
4480
- "unitPattern-count-other": "{0}液盎司"
4481
- },
4482
- "volume-fluid-ounce-imperial": {
4483
- "displayName": "英制液盎司",
4484
- "unitPattern-count-other": "{0}英制液盎司"
4485
- },
4486
- "volume-tablespoon": {
4487
- "displayName": "汤匙",
4488
- "unitPattern-count-other": "{0}汤匙"
4489
- },
4490
- "volume-teaspoon": {
4491
- "displayName": "茶匙",
4492
- "unitPattern-count-other": "{0}茶匙"
4493
- },
4494
- "volume-barrel": {
4495
- "displayName": "桶",
4496
- "unitPattern-count-other": "{0}桶"
4497
- },
4498
- "coordinateUnit": {
4499
- "displayName": "方向",
4500
- "east": "东经{0}",
4501
- "north": "北纬{0}",
4502
- "south": "南纬{0}",
4503
- "west": "西经{0}"
4504
- }
4505
- }
4506
- },
4507
- "lenient-scope-number": {
4508
- "minusSign": "-‒⁻₋−➖﹣-",
4509
- "commaSign": ",،٫、︐︑﹐﹑,、",
4510
- "plusSign": "+⁺₊➕﬩﹢+"
4511
- },
4512
- "currencyFormat-sap-short": {
4513
- "1000-other": "0",
4514
- "10000-other": "0万 ¤",
4515
- "100000-other": "00万 ¤",
4516
- "1000000-other": "000万 ¤",
4517
- "10000000-other": "0000万 ¤",
4518
- "100000000-other": "0亿 ¤",
4519
- "1000000000-other": "00亿 ¤",
4520
- "10000000000-other": "000亿 ¤",
4521
- "100000000000-other": "0000亿 ¤",
4522
- "1000000000000-other": "0兆 ¤",
4523
- "10000000000000-other": "00兆 ¤",
4524
- "100000000000000-other": "000兆 ¤"
4525
- },
4526
- "currencyDigits": {
4527
- "ADP": 0,
4528
- "AFN": 0,
4529
- "ALL": 0,
4530
- "BHD": 3,
4531
- "BIF": 0,
4532
- "BYR": 0,
4533
- "CLF": 4,
4534
- "CLP": 0,
4535
- "DEFAULT": 2,
4536
- "DJF": 0,
4537
- "ESP": 0,
4538
- "GNF": 0,
4539
- "HUF": 0,
4540
- "IQD": 0,
4541
- "IRR": 0,
4542
- "ISK": 0,
4543
- "ITL": 0,
4544
- "JOD": 3,
4545
- "JPY": 0,
4546
- "KMF": 0,
4547
- "KPW": 0,
4548
- "KRW": 0,
4549
- "KWD": 3,
4550
- "LAK": 0,
4551
- "LBP": 0,
4552
- "LUF": 0,
4553
- "LYD": 3,
4554
- "MGA": 0,
4555
- "MGF": 0,
4556
- "MMK": 0,
4557
- "MRO": 0,
4558
- "OMR": 3,
4559
- "PYG": 0,
4560
- "RSD": 0,
4561
- "RWF": 0,
4562
- "SLL": 0,
4563
- "SOS": 0,
4564
- "STD": 0,
4565
- "SYP": 0,
4566
- "TMM": 0,
4567
- "TND": 3,
4568
- "TRL": 0,
4569
- "TWD": 0,
4570
- "UGX": 0,
4571
- "UYI": 0,
4572
- "UYW": 4,
4573
- "VND": 0,
4574
- "VUV": 0,
4575
- "XAF": 0,
4576
- "XOF": 0,
4577
- "XPF": 0,
4578
- "YER": 0,
4579
- "ZMK": 0,
4580
- "ZWD": 0
4581
- },
4582
- "plurals": {},
4583
- "weekData-minDays": 1,
4584
- "weekData-firstDay": 0,
4585
- "weekData-weekendStart": 6,
4586
- "weekData-weekendEnd": 0,
4587
- "timeData": {
4588
- "_allowed": "hB hb h H",
4589
- "_preferred": "h"
4590
- },
4591
- "eras-gregorian": {
4592
- "0": {
4593
- "_end": "0-12-31"
4594
- },
4595
- "1": {
4596
- "_start": "1-01-01"
4597
- }
4598
- },
4599
- "eras-islamic": {
4600
- "0": {
4601
- "_start": "622-7-15"
4602
- }
4603
- },
4604
- "eras-persian": {
4605
- "0": {
4606
- "_start": "622-01-01"
4607
- }
4608
- },
4609
- "eras-buddhist": {
4610
- "0": {
4611
- "_start": "-542-01-01"
4612
- }
4613
- },
4614
- "eras-japanese": {
4615
- "232": {
4616
- "_start": "1868-9-8"
4617
- },
4618
- "233": {
4619
- "_start": "1912-7-30"
4620
- },
4621
- "234": {
4622
- "_start": "1926-12-25"
4623
- },
4624
- "235": {
4625
- "_start": "1989-1-8"
4626
- },
4627
- "236": {
4628
- "_start": "2019-5-1"
4629
- }
4630
- },
4631
- "calendarPreference": "gregorian chinese"
4632
- }