@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,4640 +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": "d/M/yy"
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
- "HHmm": "HH:mm",
1087
- "hm": "ah:mm",
1088
- "Hm": "HH:mm",
1089
- "hms": "ah:mm:ss",
1090
- "Hms": "HH:mm:ss",
1091
- "hmsv": "v ah:mm:ss",
1092
- "Hmsv": "v HH:mm:ss",
1093
- "hmv": "v ah:mm",
1094
- "Hmv": "v HH:mm",
1095
- "M": "M月",
1096
- "Md": "d/M",
1097
- "MEd": "E, d/M",
1098
- "MMdd": "dd/MM",
1099
- "MMM": "LLL",
1100
- "MMMd": "M月d日",
1101
- "MMMEd": "M月d日E",
1102
- "MMMMd": "M月d日",
1103
- "MMMMdd": "M月d日",
1104
- "ms": "mm:ss",
1105
- "y": "y年",
1106
- "yM": "M/y",
1107
- "yMd": "d/M/y",
1108
- "yMEd": "d/M/y(E)",
1109
- "yMM": "MM/y",
1110
- "yMMM": "y年M月",
1111
- "yMMMd": "y年M月d日",
1112
- "yMMMEd": "y年M月d日E",
1113
- "yMMMM": "y年M月",
1114
- "yQQQ": "y年第Q季度",
1115
- "yQQQQ": "y年第Q季度",
1116
- "MMMMW": "MMMM第W周",
1117
- "yw": "Y年第w周"
1118
- },
1119
- "appendItems": {
1120
- "Day": "{0} ({2}: {1})",
1121
- "Day-Of-Week": "{0} {1}",
1122
- "Era": "{1} {0}",
1123
- "Hour": "{0} ({2}: {1})",
1124
- "Minute": "{0} ({2}: {1})",
1125
- "Month": "{0} ({2}: {1})",
1126
- "Quarter": "{0} ({2}: {1})",
1127
- "Second": "{0} ({2}: {1})",
1128
- "Timezone": "{1}{0}",
1129
- "Week": "{0} ({2}: {1})",
1130
- "Year": "{1} {0}"
1131
- },
1132
- "intervalFormats": {
1133
- "intervalFormatFallback": "{0}–{1}",
1134
- "Bh": {
1135
- "B": "Bh时至Bh时",
1136
- "h": "Bh时至h时"
1137
- },
1138
- "Bhm": {
1139
- "B": "Bh:mm至Bh:mm",
1140
- "h": "Bh:mm至h:mm",
1141
- "m": "Bh:mm至h:mm"
1142
- },
1143
- "d": {
1144
- "d": "d–d日"
1145
- },
1146
- "Gy": {
1147
- "G": "G y – G y",
1148
- "y": "G y–y"
1149
- },
1150
- "GyM": {
1151
- "G": "GGGGG y-MM – GGGGG y-MM",
1152
- "M": "GGGGG y-MM – y-MM",
1153
- "y": "GGGGG y-MM – y-MM"
1154
- },
1155
- "GyMd": {
1156
- "d": "GGGGG y-MM-dd – y-MM-dd",
1157
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1158
- "M": "GGGGG y-MM-dd – y-MM-dd",
1159
- "y": "GGGGG y-MM-dd – y-MM-dd"
1160
- },
1161
- "GyMEd": {
1162
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1163
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1164
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1165
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1166
- },
1167
- "GyMMM": {
1168
- "G": "G y MMM – G y MMM",
1169
- "M": "G y MMM–MMM",
1170
- "y": "G y MMM – y MMM"
1171
- },
1172
- "GyMMMd": {
1173
- "d": "G y MMM d–d",
1174
- "G": "G y MMM d – G y MMM d",
1175
- "M": "G y MMM d – MMM d",
1176
- "y": "G y MMM d – y MMM d"
1177
- },
1178
- "GyMMMEd": {
1179
- "d": "G y MMM d, E – MMM d, E",
1180
- "G": "G y MMM d, E – G y MMM d, E",
1181
- "M": "G y MMM d, E – MMM d, E",
1182
- "y": "G y MMM d, E – y MMM d, E"
1183
- },
1184
- "h": {
1185
- "a": "ah时至ah时",
1186
- "h": "ah至h时"
1187
- },
1188
- "H": {
1189
- "H": "HH–HH"
1190
- },
1191
- "hm": {
1192
- "a": "ah:mm至ah:mm",
1193
- "h": "ah:mm至h:mm",
1194
- "m": "ah:mm至h:mm"
1195
- },
1196
- "Hm": {
1197
- "H": "HH:mm–HH:mm",
1198
- "m": "HH:mm–HH:mm"
1199
- },
1200
- "hmv": {
1201
- "a": "vah:mm至ah:mm",
1202
- "h": "vah:mm至h:mm",
1203
- "m": "vah:mm至h:mm"
1204
- },
1205
- "Hmv": {
1206
- "H": "vHH:mm–HH:mm",
1207
- "m": "vHH:mm–HH:mm"
1208
- },
1209
- "hv": {
1210
- "a": "vah时至ah时",
1211
- "h": "vah时至h时"
1212
- },
1213
- "Hv": {
1214
- "H": "vHH–HH"
1215
- },
1216
- "M": {
1217
- "M": "M–M月"
1218
- },
1219
- "Md": {
1220
- "d": "M/d – M/d",
1221
- "M": "M/d – M/d"
1222
- },
1223
- "MEd": {
1224
- "d": "M/dE至M/dE",
1225
- "M": "M/dE至M/dE"
1226
- },
1227
- "MMM": {
1228
- "M": "MMM – MMM"
1229
- },
1230
- "MMMd": {
1231
- "d": "M月d日至d日",
1232
- "M": "M月d日至M月d日"
1233
- },
1234
- "MMMEd": {
1235
- "d": "M月d日E至d日E",
1236
- "M": "M月d日E至M月d日E"
1237
- },
1238
- "y": {
1239
- "y": "y–y年"
1240
- },
1241
- "yM": {
1242
- "M": "y年M月至y年M月",
1243
- "y": "y年M月至y年M月"
1244
- },
1245
- "yMd": {
1246
- "d": "d/M/y至d/M/y",
1247
- "M": "d/M/y至d/M/y",
1248
- "y": "d/M/y至d/M/y"
1249
- },
1250
- "yMEd": {
1251
- "d": "d/M/yE至d/M/yE",
1252
- "M": "d/M/yE至d/M/yE",
1253
- "y": "d/M/yE至d/M/yE"
1254
- },
1255
- "yMMM": {
1256
- "M": "y年M月至M月",
1257
- "y": "y年M月至y年M月"
1258
- },
1259
- "yMMMd": {
1260
- "d": "y年M月d日至d日",
1261
- "M": "y年M月d日至M月d日",
1262
- "y": "y年M月d日至y年M月d日"
1263
- },
1264
- "yMMMEd": {
1265
- "d": "y年M月d日E至M月d日E",
1266
- "M": "y年M月d日E至M月d日E",
1267
- "y": "y年M月d日E至y年M月d日E"
1268
- },
1269
- "yMMMM": {
1270
- "M": "y年M月至M月",
1271
- "y": "y年M月至y年M月"
1272
- }
1273
- }
1274
- },
1275
- "months": {
1276
- "format": {
1277
- "abbreviated": [
1278
- "1月",
1279
- "2月",
1280
- "3月",
1281
- "4月",
1282
- "5月",
1283
- "6月",
1284
- "7月",
1285
- "8月",
1286
- "9月",
1287
- "10月",
1288
- "11月",
1289
- "12月"
1290
- ],
1291
- "narrow": [
1292
- "1",
1293
- "2",
1294
- "3",
1295
- "4",
1296
- "5",
1297
- "6",
1298
- "7",
1299
- "8",
1300
- "9",
1301
- "10",
1302
- "11",
1303
- "12"
1304
- ],
1305
- "wide": [
1306
- "一月",
1307
- "二月",
1308
- "三月",
1309
- "四月",
1310
- "五月",
1311
- "六月",
1312
- "七月",
1313
- "八月",
1314
- "九月",
1315
- "十月",
1316
- "十一月",
1317
- "十二月"
1318
- ]
1319
- },
1320
- "stand-alone": {
1321
- "abbreviated": [
1322
- "1月",
1323
- "2月",
1324
- "3月",
1325
- "4月",
1326
- "5月",
1327
- "6月",
1328
- "7月",
1329
- "8月",
1330
- "9月",
1331
- "10月",
1332
- "11月",
1333
- "12月"
1334
- ],
1335
- "narrow": [
1336
- "1",
1337
- "2",
1338
- "3",
1339
- "4",
1340
- "5",
1341
- "6",
1342
- "7",
1343
- "8",
1344
- "9",
1345
- "10",
1346
- "11",
1347
- "12"
1348
- ],
1349
- "wide": [
1350
- "一月",
1351
- "二月",
1352
- "三月",
1353
- "四月",
1354
- "五月",
1355
- "六月",
1356
- "七月",
1357
- "八月",
1358
- "九月",
1359
- "十月",
1360
- "十一月",
1361
- "十二月"
1362
- ]
1363
- }
1364
- },
1365
- "days": {
1366
- "format": {
1367
- "abbreviated": [
1368
- "周日",
1369
- "周一",
1370
- "周二",
1371
- "周三",
1372
- "周四",
1373
- "周五",
1374
- "周六"
1375
- ],
1376
- "narrow": [
1377
- "日",
1378
- "一",
1379
- "二",
1380
- "三",
1381
- "四",
1382
- "五",
1383
- "六"
1384
- ],
1385
- "short": [
1386
- "周日",
1387
- "周一",
1388
- "周二",
1389
- "周三",
1390
- "周四",
1391
- "周五",
1392
- "周六"
1393
- ],
1394
- "wide": [
1395
- "星期日",
1396
- "星期一",
1397
- "星期二",
1398
- "星期三",
1399
- "星期四",
1400
- "星期五",
1401
- "星期六"
1402
- ]
1403
- },
1404
- "stand-alone": {
1405
- "abbreviated": [
1406
- "周日",
1407
- "周一",
1408
- "周二",
1409
- "周三",
1410
- "周四",
1411
- "周五",
1412
- "周六"
1413
- ],
1414
- "narrow": [
1415
- "日",
1416
- "一",
1417
- "二",
1418
- "三",
1419
- "四",
1420
- "五",
1421
- "六"
1422
- ],
1423
- "short": [
1424
- "周日",
1425
- "周一",
1426
- "周二",
1427
- "周三",
1428
- "周四",
1429
- "周五",
1430
- "周六"
1431
- ],
1432
- "wide": [
1433
- "星期日",
1434
- "星期一",
1435
- "星期二",
1436
- "星期三",
1437
- "星期四",
1438
- "星期五",
1439
- "星期六"
1440
- ]
1441
- }
1442
- },
1443
- "quarters": {
1444
- "format": {
1445
- "abbreviated": [
1446
- "1季度",
1447
- "2季度",
1448
- "3季度",
1449
- "4季度"
1450
- ],
1451
- "narrow": [
1452
- "1",
1453
- "2",
1454
- "3",
1455
- "4"
1456
- ],
1457
- "wide": [
1458
- "第一季度",
1459
- "第二季度",
1460
- "第三季度",
1461
- "第四季度"
1462
- ]
1463
- },
1464
- "stand-alone": {
1465
- "abbreviated": [
1466
- "1季度",
1467
- "2季度",
1468
- "3季度",
1469
- "4季度"
1470
- ],
1471
- "narrow": [
1472
- "1",
1473
- "2",
1474
- "3",
1475
- "4"
1476
- ],
1477
- "wide": [
1478
- "第一季度",
1479
- "第二季度",
1480
- "第三季度",
1481
- "第四季度"
1482
- ]
1483
- }
1484
- },
1485
- "dayPeriods": {
1486
- "format": {
1487
- "abbreviated": [
1488
- "上午",
1489
- "下午"
1490
- ],
1491
- "narrow": [
1492
- "上午",
1493
- "下午"
1494
- ],
1495
- "wide": [
1496
- "上午",
1497
- "下午"
1498
- ]
1499
- },
1500
- "stand-alone": {
1501
- "abbreviated": [
1502
- "上午",
1503
- "下午"
1504
- ],
1505
- "narrow": [
1506
- "上午",
1507
- "下午"
1508
- ],
1509
- "wide": [
1510
- "上午",
1511
- "下午"
1512
- ]
1513
- }
1514
- },
1515
- "era-wide": {
1516
- "0": "公元前",
1517
- "1": "公元"
1518
- },
1519
- "era-abbreviated": {
1520
- "0": "公元前",
1521
- "1": "公元"
1522
- },
1523
- "era-narrow": {
1524
- "0": "公元前",
1525
- "1": "公元"
1526
- }
1527
- },
1528
- "ca-islamic": {
1529
- "dateFormats": {
1530
- "full": "Gy年M月d日EEEE",
1531
- "long": "Gy年M月d日",
1532
- "medium": "Gy年M月d日",
1533
- "short": "Gd/M/yy"
1534
- },
1535
- "timeFormats": {
1536
- "full": "zzzz ah:mm:ss",
1537
- "long": "z ah:mm:ss",
1538
- "medium": "ah:mm:ss",
1539
- "short": "ah:mm"
1540
- },
1541
- "dateTimeFormats": {
1542
- "full": "{1} {0}",
1543
- "long": "{1} {0}",
1544
- "medium": "{1} {0}",
1545
- "short": "{1} {0}",
1546
- "availableFormats": {
1547
- "Bh": "Bh时",
1548
- "Bhm": "Bh:mm",
1549
- "Bhms": "Bh:mm:ss",
1550
- "d": "d日",
1551
- "E": "ccc",
1552
- "EBhm": "EB h:mm",
1553
- "EBhms": "EB h:mm:ss",
1554
- "Ed": "d日E",
1555
- "Ehm": "Ea h:mm",
1556
- "EHm": "E HH:mm",
1557
- "Ehms": "Ea h:mm:ss",
1558
- "EHms": "E HH:mm:ss",
1559
- "Gy": "Gy年",
1560
- "GyMMM": "Gy年M月",
1561
- "GyMMMd": "Gy年M月d日",
1562
- "GyMMMEd": "Gy年M月d日E",
1563
- "h": "ah时",
1564
- "H": "H时",
1565
- "HHmm": "HH:mm",
1566
- "hm": "ah:mm",
1567
- "Hm": "HH:mm",
1568
- "hms": "ah:mm:ss",
1569
- "Hms": "HH:mm:ss",
1570
- "M": "M月",
1571
- "Md": "M-d",
1572
- "MEd": "M-dE",
1573
- "MMM": "LLL",
1574
- "MMMd": "M月d日",
1575
- "MMMEd": "M月d日E",
1576
- "MMMMd": "M月d日",
1577
- "MMMMdd": "M月d日",
1578
- "ms": "mm:ss",
1579
- "y": "Gy年",
1580
- "yyyy": "Gy年",
1581
- "yyyyM": "M/yGGGGG",
1582
- "yyyyMd": "d/M/yGGGGG",
1583
- "yyyyMEd": "E, d/M/yGGGGG",
1584
- "yyyyMMM": "Gy年M月",
1585
- "yyyyMMMd": "Gy年M月d日",
1586
- "yyyyMMMEd": "Gy年MM月d日E",
1587
- "yyyyMMMM": "Gy年M月",
1588
- "yyyyQQQ": "Gy年第Q季度",
1589
- "yyyyQQQQ": "Gy年第Q季度"
1590
- },
1591
- "appendItems": {
1592
- "Day": "{0} ({2}: {1})",
1593
- "Day-Of-Week": "{0} {1}",
1594
- "Era": "{1} {0}",
1595
- "Hour": "{0} ({2}: {1})",
1596
- "Minute": "{0} ({2}: {1})",
1597
- "Month": "{0} ({2}: {1})",
1598
- "Quarter": "{0} ({2}: {1})",
1599
- "Second": "{0} ({2}: {1})",
1600
- "Timezone": "{0} {1}",
1601
- "Week": "{0} ({2}: {1})",
1602
- "Year": "{1} {0}"
1603
- },
1604
- "intervalFormats": {
1605
- "intervalFormatFallback": "{0}–{1}",
1606
- "Bh": {
1607
- "B": "Bh时至Bh时",
1608
- "h": "Bh时至h时"
1609
- },
1610
- "Bhm": {
1611
- "B": "Bh:mm至Bh:mm",
1612
- "h": "Bh:mm至h:mm",
1613
- "m": "Bh:mm至h:mm"
1614
- },
1615
- "d": {
1616
- "d": "d至d日"
1617
- },
1618
- "Gy": {
1619
- "G": "G y – G y",
1620
- "y": "G y–y"
1621
- },
1622
- "GyM": {
1623
- "G": "GGGGG y-MM – GGGGG y-MM",
1624
- "M": "GGGGG y-MM – y-MM",
1625
- "y": "GGGGG y-MM – y-MM"
1626
- },
1627
- "GyMd": {
1628
- "d": "GGGGG y-MM-dd – y-MM-dd",
1629
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
1630
- "M": "GGGGG y-MM-dd – y-MM-dd",
1631
- "y": "GGGGG y-MM-dd – y-MM-dd"
1632
- },
1633
- "GyMEd": {
1634
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
1635
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
1636
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
1637
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
1638
- },
1639
- "GyMMM": {
1640
- "G": "G y MMM – G y MMM",
1641
- "M": "G y MMM–MMM",
1642
- "y": "G y MMM – y MMM"
1643
- },
1644
- "GyMMMd": {
1645
- "d": "G y MMM d–d",
1646
- "G": "G y MMM d – G y MMM d",
1647
- "M": "G y MMM d – MMM d",
1648
- "y": "G y MMM d – y MMM d"
1649
- },
1650
- "GyMMMEd": {
1651
- "d": "G y MMM d, E – MMM d, E",
1652
- "G": "G y MMM d, E – G y MMM d, E",
1653
- "M": "G y MMM d, E – MMM d, E",
1654
- "y": "G y MMM d, E – y MMM d, E"
1655
- },
1656
- "h": {
1657
- "a": "ah时至ah时",
1658
- "h": "ah至h时"
1659
- },
1660
- "H": {
1661
- "H": "HH–HH"
1662
- },
1663
- "hm": {
1664
- "a": "ah:mm至ah:mm",
1665
- "h": "ah:mm至h:mm",
1666
- "m": "ah:mm至h:mm"
1667
- },
1668
- "Hm": {
1669
- "H": "HH:mm–HH:mm",
1670
- "m": "HH:mm–HH:mm"
1671
- },
1672
- "hmv": {
1673
- "a": "vah:mm至ah:mm",
1674
- "h": "vah:mm至h:mm",
1675
- "m": "vah:mm至h:mm"
1676
- },
1677
- "Hmv": {
1678
- "H": "vHH:mm–HH:mm",
1679
- "m": "vHH:mm–HH:mm"
1680
- },
1681
- "hv": {
1682
- "a": "vah时至ah时",
1683
- "h": "vah时至h时"
1684
- },
1685
- "Hv": {
1686
- "H": "vHH–HH"
1687
- },
1688
- "M": {
1689
- "M": "M–M月"
1690
- },
1691
- "Md": {
1692
- "d": "M/d – M/d",
1693
- "M": "M/d – M/d"
1694
- },
1695
- "MEd": {
1696
- "d": "M/dE至M/dE",
1697
- "M": "M/dE至M/dE"
1698
- },
1699
- "MMM": {
1700
- "M": "M月至M月"
1701
- },
1702
- "MMMd": {
1703
- "d": "M月d日至d日",
1704
- "M": "M月d日至M月d日"
1705
- },
1706
- "MMMEd": {
1707
- "d": "M月d日E至d日E",
1708
- "M": "M月d日E至M月d日E"
1709
- },
1710
- "y": {
1711
- "y": "Gy–y年"
1712
- },
1713
- "yM": {
1714
- "M": "y年M月至y年M月",
1715
- "y": "Gy年M月至y年M月"
1716
- },
1717
- "yMd": {
1718
- "d": "d/M/y至d/M/y",
1719
- "M": "d/M/y至d/M/y",
1720
- "y": "d/M/y至d/M/y"
1721
- },
1722
- "yMEd": {
1723
- "d": "d/M/yE至d/M/yE",
1724
- "M": "d/M/yE至d/M/yE",
1725
- "y": "d/M/yE至d/M/yE"
1726
- },
1727
- "yMMM": {
1728
- "M": "Gy年M月至M月",
1729
- "y": "Gy年M月至y年M月"
1730
- },
1731
- "yMMMd": {
1732
- "d": "Gy年M月d日至d日",
1733
- "M": "Gy年M月d日至M月d日",
1734
- "y": "Gy年M月d日至y年M月d日"
1735
- },
1736
- "yMMMEd": {
1737
- "d": "y年M月d日E至M月d日E",
1738
- "M": "Gy年M月d日E至M月d日E",
1739
- "y": "Gy年M月d日E至y年M月d日E"
1740
- },
1741
- "yMMMM": {
1742
- "M": "Gy年M月至M月",
1743
- "y": "Gy年M月至y年M月"
1744
- }
1745
- }
1746
- },
1747
- "months": {
1748
- "format": {
1749
- "abbreviated": [
1750
- "1月",
1751
- "2月",
1752
- "3月",
1753
- "4月",
1754
- "5月",
1755
- "6月",
1756
- "7月",
1757
- "8月",
1758
- "9月",
1759
- "10月",
1760
- "11月",
1761
- "12月"
1762
- ],
1763
- "narrow": [
1764
- "1",
1765
- "2",
1766
- "3",
1767
- "4",
1768
- "5",
1769
- "6",
1770
- "7",
1771
- "8",
1772
- "9",
1773
- "10",
1774
- "11",
1775
- "12"
1776
- ],
1777
- "wide": [
1778
- "一月",
1779
- "二月",
1780
- "三月",
1781
- "四月",
1782
- "五月",
1783
- "六月",
1784
- "七月",
1785
- "八月",
1786
- "九月",
1787
- "十月",
1788
- "十一月",
1789
- "十二月"
1790
- ]
1791
- },
1792
- "stand-alone": {
1793
- "abbreviated": [
1794
- "1月",
1795
- "2月",
1796
- "3月",
1797
- "4月",
1798
- "5月",
1799
- "6月",
1800
- "7月",
1801
- "8月",
1802
- "9月",
1803
- "10月",
1804
- "11月",
1805
- "12月"
1806
- ],
1807
- "narrow": [
1808
- "1",
1809
- "2",
1810
- "3",
1811
- "4",
1812
- "5",
1813
- "6",
1814
- "7",
1815
- "8",
1816
- "9",
1817
- "10",
1818
- "11",
1819
- "12"
1820
- ],
1821
- "wide": [
1822
- "一月",
1823
- "二月",
1824
- "三月",
1825
- "四月",
1826
- "五月",
1827
- "六月",
1828
- "七月",
1829
- "八月",
1830
- "九月",
1831
- "十月",
1832
- "十一月",
1833
- "十二月"
1834
- ]
1835
- }
1836
- },
1837
- "days": {
1838
- "format": {
1839
- "abbreviated": [
1840
- "周日",
1841
- "周一",
1842
- "周二",
1843
- "周三",
1844
- "周四",
1845
- "周五",
1846
- "周六"
1847
- ],
1848
- "narrow": [
1849
- "日",
1850
- "一",
1851
- "二",
1852
- "三",
1853
- "四",
1854
- "五",
1855
- "六"
1856
- ],
1857
- "short": [
1858
- "周日",
1859
- "周一",
1860
- "周二",
1861
- "周三",
1862
- "周四",
1863
- "周五",
1864
- "周六"
1865
- ],
1866
- "wide": [
1867
- "星期日",
1868
- "星期一",
1869
- "星期二",
1870
- "星期三",
1871
- "星期四",
1872
- "星期五",
1873
- "星期六"
1874
- ]
1875
- },
1876
- "stand-alone": {
1877
- "abbreviated": [
1878
- "周日",
1879
- "周一",
1880
- "周二",
1881
- "周三",
1882
- "周四",
1883
- "周五",
1884
- "周六"
1885
- ],
1886
- "narrow": [
1887
- "日",
1888
- "一",
1889
- "二",
1890
- "三",
1891
- "四",
1892
- "五",
1893
- "六"
1894
- ],
1895
- "short": [
1896
- "周日",
1897
- "周一",
1898
- "周二",
1899
- "周三",
1900
- "周四",
1901
- "周五",
1902
- "周六"
1903
- ],
1904
- "wide": [
1905
- "星期日",
1906
- "星期一",
1907
- "星期二",
1908
- "星期三",
1909
- "星期四",
1910
- "星期五",
1911
- "星期六"
1912
- ]
1913
- }
1914
- },
1915
- "quarters": {
1916
- "format": {
1917
- "abbreviated": [
1918
- "1季度",
1919
- "2季度",
1920
- "3季度",
1921
- "4季度"
1922
- ],
1923
- "narrow": [
1924
- "1",
1925
- "2",
1926
- "3",
1927
- "4"
1928
- ],
1929
- "wide": [
1930
- "第一季度",
1931
- "第二季度",
1932
- "第三季度",
1933
- "第四季度"
1934
- ]
1935
- },
1936
- "stand-alone": {
1937
- "abbreviated": [
1938
- "1季度",
1939
- "2季度",
1940
- "3季度",
1941
- "4季度"
1942
- ],
1943
- "narrow": [
1944
- "1",
1945
- "2",
1946
- "3",
1947
- "4"
1948
- ],
1949
- "wide": [
1950
- "第一季度",
1951
- "第二季度",
1952
- "第三季度",
1953
- "第四季度"
1954
- ]
1955
- }
1956
- },
1957
- "dayPeriods": {
1958
- "format": {
1959
- "abbreviated": [
1960
- "上午",
1961
- "下午"
1962
- ],
1963
- "narrow": [
1964
- "上午",
1965
- "下午"
1966
- ],
1967
- "wide": [
1968
- "上午",
1969
- "下午"
1970
- ]
1971
- },
1972
- "stand-alone": {
1973
- "abbreviated": [
1974
- "上午",
1975
- "下午"
1976
- ],
1977
- "narrow": [
1978
- "上午",
1979
- "下午"
1980
- ],
1981
- "wide": [
1982
- "上午",
1983
- "下午"
1984
- ]
1985
- }
1986
- },
1987
- "era-wide": {
1988
- "0": "伊斯兰历"
1989
- },
1990
- "era-abbreviated": {
1991
- "0": "伊斯兰历"
1992
- },
1993
- "era-narrow": {
1994
- "0": "伊斯兰历"
1995
- }
1996
- },
1997
- "ca-japanese": {
1998
- "dateFormats": {
1999
- "full": "Gy年M月d日EEEE",
2000
- "long": "Gy年M月d日",
2001
- "medium": "Gy年M月d日",
2002
- "short": "Gd/M/yy"
2003
- },
2004
- "timeFormats": {
2005
- "full": "zzzz ah:mm:ss",
2006
- "long": "z ah:mm:ss",
2007
- "medium": "ah:mm:ss",
2008
- "short": "ah:mm"
2009
- },
2010
- "dateTimeFormats": {
2011
- "full": "{1} {0}",
2012
- "long": "{1} {0}",
2013
- "medium": "{1} {0}",
2014
- "short": "{1} {0}",
2015
- "availableFormats": {
2016
- "Bh": "Bh时",
2017
- "Bhm": "Bh:mm",
2018
- "Bhms": "Bh:mm:ss",
2019
- "d": "d日",
2020
- "E": "ccc",
2021
- "EBhm": "EB h:mm",
2022
- "EBhms": "EB h:mm:ss",
2023
- "Ed": "d日E",
2024
- "Ehm": "Ea h:mm",
2025
- "EHm": "E HH:mm",
2026
- "Ehms": "Ea h:mm:ss",
2027
- "EHms": "E HH:mm:ss",
2028
- "Gy": "Gy年",
2029
- "GyMMM": "Gy年M月",
2030
- "GyMMMd": "Gy年M月d日",
2031
- "GyMMMEd": "Gy年M月d日E",
2032
- "h": "ah时",
2033
- "H": "H时",
2034
- "HHmm": "HH:mm",
2035
- "hm": "ah:mm",
2036
- "Hm": "HH:mm",
2037
- "hms": "ah:mm:ss",
2038
- "Hms": "HH:mm:ss",
2039
- "M": "M月",
2040
- "Md": "M/d",
2041
- "MEd": "M/dE",
2042
- "MMM": "LLL",
2043
- "MMMd": "M月d日",
2044
- "MMMEd": "M月d日E",
2045
- "MMMMd": "M月d日",
2046
- "MMMMdd": "M月d日",
2047
- "ms": "mm:ss",
2048
- "y": "Gy年",
2049
- "yyyy": "Gy年",
2050
- "yyyyM": "Gy-MM",
2051
- "yyyyMd": "Gy-MM-dd",
2052
- "yyyyMEd": "Gy-M-d(E)",
2053
- "yyyyMMM": "Gy年M月",
2054
- "yyyyMMMd": "Gy年M月d日",
2055
- "yyyyMMMEd": "Gy年M月d日E",
2056
- "yyyyMMMM": "Gy年M月",
2057
- "yyyyQQQ": "Gy年第Q季度",
2058
- "yyyyQQQQ": "Gy年QQQQ"
2059
- },
2060
- "appendItems": {
2061
- "Day": "{0} ({2}: {1})",
2062
- "Day-Of-Week": "{0} {1}",
2063
- "Era": "{1} {0}",
2064
- "Hour": "{0} ({2}: {1})",
2065
- "Minute": "{0} ({2}: {1})",
2066
- "Month": "{0} ({2}: {1})",
2067
- "Quarter": "{0} ({2}: {1})",
2068
- "Second": "{0} ({2}: {1})",
2069
- "Timezone": "{0} {1}",
2070
- "Week": "{0} ({2}: {1})",
2071
- "Year": "{1} {0}"
2072
- },
2073
- "intervalFormats": {
2074
- "intervalFormatFallback": "{0}–{1}",
2075
- "Bh": {
2076
- "B": "Bh时至Bh时",
2077
- "h": "Bh时至h时"
2078
- },
2079
- "Bhm": {
2080
- "B": "Bh:mm至Bh:mm",
2081
- "h": "Bh:mm至h:mm",
2082
- "m": "Bh:mm至h:mm"
2083
- },
2084
- "d": {
2085
- "d": "d至d日"
2086
- },
2087
- "Gy": {
2088
- "G": "G y – G y",
2089
- "y": "G y–y"
2090
- },
2091
- "GyM": {
2092
- "G": "GGGGG y-MM – GGGGG y-MM",
2093
- "M": "GGGGG y-MM – y-MM",
2094
- "y": "GGGGG y-MM – y-MM"
2095
- },
2096
- "GyMd": {
2097
- "d": "GGGGG y-MM-dd – y-MM-dd",
2098
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2099
- "M": "GGGGG y-MM-dd – y-MM-dd",
2100
- "y": "GGGGG y-MM-dd – y-MM-dd"
2101
- },
2102
- "GyMEd": {
2103
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2104
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2105
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2106
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2107
- },
2108
- "GyMMM": {
2109
- "G": "G y MMM – G y MMM",
2110
- "M": "G y MMM–MMM",
2111
- "y": "G y MMM – y MMM"
2112
- },
2113
- "GyMMMd": {
2114
- "d": "G y MMM d–d",
2115
- "G": "G y MMM d – G y MMM d",
2116
- "M": "G y MMM d – MMM d",
2117
- "y": "G y MMM d – y MMM d"
2118
- },
2119
- "GyMMMEd": {
2120
- "d": "G y MMM d, E – MMM d, E",
2121
- "G": "G y MMM d, E – G y MMM d, E",
2122
- "M": "G y MMM d, E – MMM d, E",
2123
- "y": "G y MMM d, E – y MMM d, E"
2124
- },
2125
- "h": {
2126
- "a": "ah时至ah时",
2127
- "h": "ah至h时"
2128
- },
2129
- "H": {
2130
- "H": "HH–HH"
2131
- },
2132
- "hm": {
2133
- "a": "ah:mm至ah:mm",
2134
- "h": "ah:mm至h:mm",
2135
- "m": "ah:mm至h:mm"
2136
- },
2137
- "Hm": {
2138
- "H": "HH:mm–HH:mm",
2139
- "m": "HH:mm–HH:mm"
2140
- },
2141
- "hmv": {
2142
- "a": "vah:mm至ah:mm",
2143
- "h": "vah:mm至h:mm",
2144
- "m": "vah:mm至h:mm"
2145
- },
2146
- "Hmv": {
2147
- "H": "vHH:mm–HH:mm",
2148
- "m": "vHH:mm–HH:mm"
2149
- },
2150
- "hv": {
2151
- "a": "vah时至ah时",
2152
- "h": "vah时至h时"
2153
- },
2154
- "Hv": {
2155
- "H": "vHH–HH"
2156
- },
2157
- "M": {
2158
- "M": "M–M月"
2159
- },
2160
- "Md": {
2161
- "d": "M/d – M/d",
2162
- "M": "M/d – M/d"
2163
- },
2164
- "MEd": {
2165
- "d": "M/dE至M/dE",
2166
- "M": "M/dE至M/dE"
2167
- },
2168
- "MMM": {
2169
- "M": "M月至M月"
2170
- },
2171
- "MMMd": {
2172
- "d": "M月d日至d日",
2173
- "M": "M月d日至M月d日"
2174
- },
2175
- "MMMEd": {
2176
- "d": "M月d日E至d日E",
2177
- "M": "M月d日E至M月d日E"
2178
- },
2179
- "y": {
2180
- "y": "Gy–y年",
2181
- "G": "Gy–Gy年"
2182
- },
2183
- "yM": {
2184
- "M": "y年M月至y年M月",
2185
- "y": "Gy年M月至y年M月",
2186
- "G": "Gy年M月至Gy年M月"
2187
- },
2188
- "yMd": {
2189
- "d": "d/M/y至d/M/y",
2190
- "M": "d/M/y至d/M/y",
2191
- "y": "d/M/y至d/M/y"
2192
- },
2193
- "yMEd": {
2194
- "d": "d/M/yE至d/M/yE",
2195
- "M": "d/M/yE至d/M/yE",
2196
- "y": "d/M/yE至d/M/yE"
2197
- },
2198
- "yMMM": {
2199
- "M": "Gy年M月至M月",
2200
- "y": "Gy年M月至y年M月",
2201
- "G": "Gy年M月至Gy年M月"
2202
- },
2203
- "yMMMd": {
2204
- "d": "Gy年M月d日至d日",
2205
- "M": "Gy年M月d日至M月d日",
2206
- "y": "Gy年M月d日至y年M月d日",
2207
- "G": "Gy年M月d日至Gy年M月d日"
2208
- },
2209
- "yMMMEd": {
2210
- "d": "y年M月d日E至M月d日E",
2211
- "M": "Gy年M月d日E至M月d日E",
2212
- "y": "Gy年M月d日E至y年M月d日E",
2213
- "G": "Gy年M月d日E至Gy年M月d日E"
2214
- },
2215
- "yMMMM": {
2216
- "M": "Gy年M月至M月",
2217
- "y": "Gy年M月至y年M月",
2218
- "G": "Gy年M月至Gy年M月"
2219
- }
2220
- }
2221
- },
2222
- "months": {
2223
- "format": {
2224
- "abbreviated": [
2225
- "1月",
2226
- "2月",
2227
- "3月",
2228
- "4月",
2229
- "5月",
2230
- "6月",
2231
- "7月",
2232
- "8月",
2233
- "9月",
2234
- "10月",
2235
- "11月",
2236
- "12月"
2237
- ],
2238
- "narrow": [
2239
- "1",
2240
- "2",
2241
- "3",
2242
- "4",
2243
- "5",
2244
- "6",
2245
- "7",
2246
- "8",
2247
- "9",
2248
- "10",
2249
- "11",
2250
- "12"
2251
- ],
2252
- "wide": [
2253
- "一月",
2254
- "二月",
2255
- "三月",
2256
- "四月",
2257
- "五月",
2258
- "六月",
2259
- "七月",
2260
- "八月",
2261
- "九月",
2262
- "十月",
2263
- "十一月",
2264
- "十二月"
2265
- ]
2266
- },
2267
- "stand-alone": {
2268
- "abbreviated": [
2269
- "1月",
2270
- "2月",
2271
- "3月",
2272
- "4月",
2273
- "5月",
2274
- "6月",
2275
- "7月",
2276
- "8月",
2277
- "9月",
2278
- "10月",
2279
- "11月",
2280
- "12月"
2281
- ],
2282
- "narrow": [
2283
- "1",
2284
- "2",
2285
- "3",
2286
- "4",
2287
- "5",
2288
- "6",
2289
- "7",
2290
- "8",
2291
- "9",
2292
- "10",
2293
- "11",
2294
- "12"
2295
- ],
2296
- "wide": [
2297
- "一月",
2298
- "二月",
2299
- "三月",
2300
- "四月",
2301
- "五月",
2302
- "六月",
2303
- "七月",
2304
- "八月",
2305
- "九月",
2306
- "十月",
2307
- "十一月",
2308
- "十二月"
2309
- ]
2310
- }
2311
- },
2312
- "days": {
2313
- "format": {
2314
- "abbreviated": [
2315
- "周日",
2316
- "周一",
2317
- "周二",
2318
- "周三",
2319
- "周四",
2320
- "周五",
2321
- "周六"
2322
- ],
2323
- "narrow": [
2324
- "日",
2325
- "一",
2326
- "二",
2327
- "三",
2328
- "四",
2329
- "五",
2330
- "六"
2331
- ],
2332
- "short": [
2333
- "周日",
2334
- "周一",
2335
- "周二",
2336
- "周三",
2337
- "周四",
2338
- "周五",
2339
- "周六"
2340
- ],
2341
- "wide": [
2342
- "星期日",
2343
- "星期一",
2344
- "星期二",
2345
- "星期三",
2346
- "星期四",
2347
- "星期五",
2348
- "星期六"
2349
- ]
2350
- },
2351
- "stand-alone": {
2352
- "abbreviated": [
2353
- "周日",
2354
- "周一",
2355
- "周二",
2356
- "周三",
2357
- "周四",
2358
- "周五",
2359
- "周六"
2360
- ],
2361
- "narrow": [
2362
- "日",
2363
- "一",
2364
- "二",
2365
- "三",
2366
- "四",
2367
- "五",
2368
- "六"
2369
- ],
2370
- "short": [
2371
- "周日",
2372
- "周一",
2373
- "周二",
2374
- "周三",
2375
- "周四",
2376
- "周五",
2377
- "周六"
2378
- ],
2379
- "wide": [
2380
- "星期日",
2381
- "星期一",
2382
- "星期二",
2383
- "星期三",
2384
- "星期四",
2385
- "星期五",
2386
- "星期六"
2387
- ]
2388
- }
2389
- },
2390
- "quarters": {
2391
- "format": {
2392
- "abbreviated": [
2393
- "1季度",
2394
- "2季度",
2395
- "3季度",
2396
- "4季度"
2397
- ],
2398
- "narrow": [
2399
- "1",
2400
- "2",
2401
- "3",
2402
- "4"
2403
- ],
2404
- "wide": [
2405
- "第一季度",
2406
- "第二季度",
2407
- "第三季度",
2408
- "第四季度"
2409
- ]
2410
- },
2411
- "stand-alone": {
2412
- "abbreviated": [
2413
- "1季度",
2414
- "2季度",
2415
- "3季度",
2416
- "4季度"
2417
- ],
2418
- "narrow": [
2419
- "1",
2420
- "2",
2421
- "3",
2422
- "4"
2423
- ],
2424
- "wide": [
2425
- "第一季度",
2426
- "第二季度",
2427
- "第三季度",
2428
- "第四季度"
2429
- ]
2430
- }
2431
- },
2432
- "dayPeriods": {
2433
- "format": {
2434
- "abbreviated": [
2435
- "上午",
2436
- "下午"
2437
- ],
2438
- "narrow": [
2439
- "上午",
2440
- "下午"
2441
- ],
2442
- "wide": [
2443
- "上午",
2444
- "下午"
2445
- ]
2446
- },
2447
- "stand-alone": {
2448
- "abbreviated": [
2449
- "上午",
2450
- "下午"
2451
- ],
2452
- "narrow": [
2453
- "上午",
2454
- "下午"
2455
- ],
2456
- "wide": [
2457
- "上午",
2458
- "下午"
2459
- ]
2460
- }
2461
- },
2462
- "era-wide": {
2463
- "232": "明治",
2464
- "233": "大正",
2465
- "234": "昭和",
2466
- "235": "平成",
2467
- "236": "令和"
2468
- },
2469
- "era-abbreviated": {
2470
- "232": "明治",
2471
- "233": "大正",
2472
- "234": "昭和",
2473
- "235": "平成",
2474
- "236": "令和"
2475
- },
2476
- "era-narrow": {
2477
- "232": "M",
2478
- "233": "T",
2479
- "234": "S",
2480
- "235": "H",
2481
- "236": "R"
2482
- }
2483
- },
2484
- "ca-persian": {
2485
- "dateFormats": {
2486
- "full": "Gy年M月d日EEEE",
2487
- "long": "Gy年M月d日",
2488
- "medium": "Gy年M月d日",
2489
- "short": "d/M/yyGGGGG"
2490
- },
2491
- "timeFormats": {
2492
- "full": "zzzz ah:mm:ss",
2493
- "long": "z ah:mm:ss",
2494
- "medium": "ah:mm:ss",
2495
- "short": "ah:mm"
2496
- },
2497
- "dateTimeFormats": {
2498
- "full": "{1} {0}",
2499
- "long": "{1} {0}",
2500
- "medium": "{1} {0}",
2501
- "short": "{1} {0}",
2502
- "availableFormats": {
2503
- "Bh": "Bh时",
2504
- "Bhm": "Bh:mm",
2505
- "Bhms": "Bh:mm:ss",
2506
- "d": "d日",
2507
- "E": "ccc",
2508
- "EBhm": "EB h:mm",
2509
- "EBhms": "EB h:mm:ss",
2510
- "Ed": "d日E",
2511
- "Ehm": "Ea h:mm",
2512
- "EHm": "E HH:mm",
2513
- "Ehms": "Ea h:mm:ss",
2514
- "EHms": "E HH:mm:ss",
2515
- "Gy": "Gy年",
2516
- "GyMMM": "Gy年M月",
2517
- "GyMMMd": "Gy年M月d日",
2518
- "GyMMMEd": "Gy年M月d日E",
2519
- "h": "ah时",
2520
- "H": "H时",
2521
- "HHmm": "HH:mm",
2522
- "hm": "ah:mm",
2523
- "Hm": "HH:mm",
2524
- "hms": "ah:mm:ss",
2525
- "Hms": "HH:mm:ss",
2526
- "M": "L",
2527
- "Md": "d/M",
2528
- "MEd": "E, d/M",
2529
- "MMM": "M月",
2530
- "MMMd": "M月d日",
2531
- "MMMEd": "M月d日E",
2532
- "MMMMd": "M月d日",
2533
- "MMMMdd": "M月d日",
2534
- "ms": "mm:ss",
2535
- "y": "Gy年",
2536
- "yyyy": "Gy年",
2537
- "yyyyM": "M/yGGGGG",
2538
- "yyyyMd": "d/M/yGGGGG",
2539
- "yyyyMEd": "E, d/M/yGGGGG",
2540
- "yyyyMMM": "Gy年M月",
2541
- "yyyyMMMd": "Gy年M月d日",
2542
- "yyyyMMMEd": "Gy年MM月d日E",
2543
- "yyyyMMMM": "Gy年M月",
2544
- "yyyyQQQ": "Gy年第Q季度",
2545
- "yyyyQQQQ": "Gy年第Q季度"
2546
- },
2547
- "appendItems": {
2548
- "Day": "{0} ({2}: {1})",
2549
- "Day-Of-Week": "{0} {1}",
2550
- "Era": "{1} {0}",
2551
- "Hour": "{0} ({2}: {1})",
2552
- "Minute": "{0} ({2}: {1})",
2553
- "Month": "{0} ({2}: {1})",
2554
- "Quarter": "{0} ({2}: {1})",
2555
- "Second": "{0} ({2}: {1})",
2556
- "Timezone": "{0} {1}",
2557
- "Week": "{0} ({2}: {1})",
2558
- "Year": "{1} {0}"
2559
- },
2560
- "intervalFormats": {
2561
- "intervalFormatFallback": "{0}–{1}",
2562
- "Bh": {
2563
- "B": "Bh时至Bh时",
2564
- "h": "Bh时至h时"
2565
- },
2566
- "Bhm": {
2567
- "B": "Bh:mm至Bh:mm",
2568
- "h": "Bh:mm至h:mm",
2569
- "m": "Bh:mm至h:mm"
2570
- },
2571
- "d": {
2572
- "d": "d至d日"
2573
- },
2574
- "Gy": {
2575
- "G": "G y – G y",
2576
- "y": "G y–y"
2577
- },
2578
- "GyM": {
2579
- "G": "GGGGG y-MM – GGGGG y-MM",
2580
- "M": "GGGGG y-MM – y-MM",
2581
- "y": "GGGGG y-MM – y-MM"
2582
- },
2583
- "GyMd": {
2584
- "d": "GGGGG y-MM-dd – y-MM-dd",
2585
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
2586
- "M": "GGGGG y-MM-dd – y-MM-dd",
2587
- "y": "GGGGG y-MM-dd – y-MM-dd"
2588
- },
2589
- "GyMEd": {
2590
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
2591
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
2592
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
2593
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
2594
- },
2595
- "GyMMM": {
2596
- "G": "G y MMM – G y MMM",
2597
- "M": "G y MMM–MMM",
2598
- "y": "G y MMM – y MMM"
2599
- },
2600
- "GyMMMd": {
2601
- "d": "G y MMM d–d",
2602
- "G": "G y MMM d – G y MMM d",
2603
- "M": "G y MMM d – MMM d",
2604
- "y": "G y MMM d – y MMM d"
2605
- },
2606
- "GyMMMEd": {
2607
- "d": "G y MMM d, E – MMM d, E",
2608
- "G": "G y MMM d, E – G y MMM d, E",
2609
- "M": "G y MMM d, E – MMM d, E",
2610
- "y": "G y MMM d, E – y MMM d, E"
2611
- },
2612
- "h": {
2613
- "a": "ah时至ah时",
2614
- "h": "ah至h时"
2615
- },
2616
- "H": {
2617
- "H": "HH–HH"
2618
- },
2619
- "hm": {
2620
- "a": "ah:mm至ah:mm",
2621
- "h": "ah:mm至h:mm",
2622
- "m": "ah:mm至h:mm"
2623
- },
2624
- "Hm": {
2625
- "H": "HH:mm–HH:mm",
2626
- "m": "HH:mm–HH:mm"
2627
- },
2628
- "hmv": {
2629
- "a": "vah:mm至ah:mm",
2630
- "h": "vah:mm至h:mm",
2631
- "m": "vah:mm至h:mm"
2632
- },
2633
- "Hmv": {
2634
- "H": "vHH:mm–HH:mm",
2635
- "m": "vHH:mm–HH:mm"
2636
- },
2637
- "hv": {
2638
- "a": "vah时至ah时",
2639
- "h": "vah时至h时"
2640
- },
2641
- "Hv": {
2642
- "H": "vHH–HH"
2643
- },
2644
- "M": {
2645
- "M": "M–M月"
2646
- },
2647
- "Md": {
2648
- "d": "M/d – M/d",
2649
- "M": "M/d – M/d"
2650
- },
2651
- "MEd": {
2652
- "d": "M/dE至M/dE",
2653
- "M": "M/dE至M/dE"
2654
- },
2655
- "MMM": {
2656
- "M": "M月至M月"
2657
- },
2658
- "MMMd": {
2659
- "d": "M月d日至d日",
2660
- "M": "M月d日至M月d日"
2661
- },
2662
- "MMMEd": {
2663
- "d": "M月d日E至d日E",
2664
- "M": "M月d日E至M月d日E"
2665
- },
2666
- "y": {
2667
- "y": "Gy–y年"
2668
- },
2669
- "yM": {
2670
- "M": "y年M月至y年M月",
2671
- "y": "Gy年M月至y年M月"
2672
- },
2673
- "yMd": {
2674
- "d": "d/M/y至d/M/y",
2675
- "M": "d/M/y至d/M/y",
2676
- "y": "d/M/y至d/M/y"
2677
- },
2678
- "yMEd": {
2679
- "d": "d/M/yE至d/M/yE",
2680
- "M": "d/M/yE至d/M/yE",
2681
- "y": "d/M/yE至d/M/yE"
2682
- },
2683
- "yMMM": {
2684
- "M": "Gy年M月至M月",
2685
- "y": "Gy年M月至y年M月"
2686
- },
2687
- "yMMMd": {
2688
- "d": "Gy年M月d日至d日",
2689
- "M": "Gy年M月d日至M月d日",
2690
- "y": "Gy年M月d日至y年M月d日"
2691
- },
2692
- "yMMMEd": {
2693
- "d": "y年M月d日E至M月d日E",
2694
- "M": "Gy年M月d日E至M月d日E",
2695
- "y": "Gy年M月d日E至y年M月d日E"
2696
- },
2697
- "yMMMM": {
2698
- "M": "Gy年M月至M月",
2699
- "y": "Gy年M月至y年M月"
2700
- }
2701
- }
2702
- },
2703
- "months": {
2704
- "format": {
2705
- "abbreviated": [
2706
- "1月",
2707
- "2月",
2708
- "3月",
2709
- "4月",
2710
- "5月",
2711
- "6月",
2712
- "7月",
2713
- "8月",
2714
- "9月",
2715
- "10月",
2716
- "11月",
2717
- "12月"
2718
- ],
2719
- "narrow": [
2720
- "1",
2721
- "2",
2722
- "3",
2723
- "4",
2724
- "5",
2725
- "6",
2726
- "7",
2727
- "8",
2728
- "9",
2729
- "10",
2730
- "11",
2731
- "12"
2732
- ],
2733
- "wide": [
2734
- "一月",
2735
- "二月",
2736
- "三月",
2737
- "四月",
2738
- "五月",
2739
- "六月",
2740
- "七月",
2741
- "八月",
2742
- "九月",
2743
- "十月",
2744
- "十一月",
2745
- "十二月"
2746
- ]
2747
- },
2748
- "stand-alone": {
2749
- "abbreviated": [
2750
- "1月",
2751
- "2月",
2752
- "3月",
2753
- "4月",
2754
- "5月",
2755
- "6月",
2756
- "7月",
2757
- "8月",
2758
- "9月",
2759
- "10月",
2760
- "11月",
2761
- "12月"
2762
- ],
2763
- "narrow": [
2764
- "1",
2765
- "2",
2766
- "3",
2767
- "4",
2768
- "5",
2769
- "6",
2770
- "7",
2771
- "8",
2772
- "9",
2773
- "10",
2774
- "11",
2775
- "12"
2776
- ],
2777
- "wide": [
2778
- "一月",
2779
- "二月",
2780
- "三月",
2781
- "四月",
2782
- "五月",
2783
- "六月",
2784
- "七月",
2785
- "八月",
2786
- "九月",
2787
- "十月",
2788
- "十一月",
2789
- "十二月"
2790
- ]
2791
- }
2792
- },
2793
- "days": {
2794
- "format": {
2795
- "abbreviated": [
2796
- "周日",
2797
- "周一",
2798
- "周二",
2799
- "周三",
2800
- "周四",
2801
- "周五",
2802
- "周六"
2803
- ],
2804
- "narrow": [
2805
- "日",
2806
- "一",
2807
- "二",
2808
- "三",
2809
- "四",
2810
- "五",
2811
- "六"
2812
- ],
2813
- "short": [
2814
- "周日",
2815
- "周一",
2816
- "周二",
2817
- "周三",
2818
- "周四",
2819
- "周五",
2820
- "周六"
2821
- ],
2822
- "wide": [
2823
- "星期日",
2824
- "星期一",
2825
- "星期二",
2826
- "星期三",
2827
- "星期四",
2828
- "星期五",
2829
- "星期六"
2830
- ]
2831
- },
2832
- "stand-alone": {
2833
- "abbreviated": [
2834
- "周日",
2835
- "周一",
2836
- "周二",
2837
- "周三",
2838
- "周四",
2839
- "周五",
2840
- "周六"
2841
- ],
2842
- "narrow": [
2843
- "日",
2844
- "一",
2845
- "二",
2846
- "三",
2847
- "四",
2848
- "五",
2849
- "六"
2850
- ],
2851
- "short": [
2852
- "周日",
2853
- "周一",
2854
- "周二",
2855
- "周三",
2856
- "周四",
2857
- "周五",
2858
- "周六"
2859
- ],
2860
- "wide": [
2861
- "星期日",
2862
- "星期一",
2863
- "星期二",
2864
- "星期三",
2865
- "星期四",
2866
- "星期五",
2867
- "星期六"
2868
- ]
2869
- }
2870
- },
2871
- "quarters": {
2872
- "format": {
2873
- "abbreviated": [
2874
- "1季度",
2875
- "2季度",
2876
- "3季度",
2877
- "4季度"
2878
- ],
2879
- "narrow": [
2880
- "1",
2881
- "2",
2882
- "3",
2883
- "4"
2884
- ],
2885
- "wide": [
2886
- "第一季度",
2887
- "第二季度",
2888
- "第三季度",
2889
- "第四季度"
2890
- ]
2891
- },
2892
- "stand-alone": {
2893
- "abbreviated": [
2894
- "1季度",
2895
- "2季度",
2896
- "3季度",
2897
- "4季度"
2898
- ],
2899
- "narrow": [
2900
- "1",
2901
- "2",
2902
- "3",
2903
- "4"
2904
- ],
2905
- "wide": [
2906
- "第一季度",
2907
- "第二季度",
2908
- "第三季度",
2909
- "第四季度"
2910
- ]
2911
- }
2912
- },
2913
- "dayPeriods": {
2914
- "format": {
2915
- "abbreviated": [
2916
- "上午",
2917
- "下午"
2918
- ],
2919
- "narrow": [
2920
- "上午",
2921
- "下午"
2922
- ],
2923
- "wide": [
2924
- "上午",
2925
- "下午"
2926
- ]
2927
- },
2928
- "stand-alone": {
2929
- "abbreviated": [
2930
- "上午",
2931
- "下午"
2932
- ],
2933
- "narrow": [
2934
- "上午",
2935
- "下午"
2936
- ],
2937
- "wide": [
2938
- "上午",
2939
- "下午"
2940
- ]
2941
- }
2942
- },
2943
- "era-wide": {
2944
- "0": "波斯历"
2945
- },
2946
- "era-abbreviated": {
2947
- "0": "波斯历"
2948
- },
2949
- "era-narrow": {
2950
- "0": "波斯历"
2951
- }
2952
- },
2953
- "ca-buddhist": {
2954
- "dateFormats": {
2955
- "full": "Gy年M月d日EEEE",
2956
- "long": "Gy年M月d日",
2957
- "medium": "Gy年M月d日",
2958
- "short": "Gd/M/yy"
2959
- },
2960
- "timeFormats": {
2961
- "full": "zzzz ah:mm:ss",
2962
- "long": "z ah:mm:ss",
2963
- "medium": "ah:mm:ss",
2964
- "short": "ah:mm"
2965
- },
2966
- "dateTimeFormats": {
2967
- "full": "{1} {0}",
2968
- "long": "{1} {0}",
2969
- "medium": "{1} {0}",
2970
- "short": "{1} {0}",
2971
- "availableFormats": {
2972
- "Bh": "Bh时",
2973
- "Bhm": "Bh:mm",
2974
- "Bhms": "Bh:mm:ss",
2975
- "d": "d日",
2976
- "E": "ccc",
2977
- "EBhm": "EB h:mm",
2978
- "EBhms": "EB h:mm:ss",
2979
- "Ed": "d日E",
2980
- "Ehm": "Ea h:mm",
2981
- "EHm": "E HH:mm",
2982
- "Ehms": "Ea h:mm:ss",
2983
- "EHms": "E HH:mm:ss",
2984
- "Gy": "Gy年",
2985
- "GyMMM": "Gy年MM月",
2986
- "GyMMMd": "Gy年MM月d日",
2987
- "GyMMMEd": "Gy年MM月d日E",
2988
- "h": "ah时",
2989
- "H": "H时",
2990
- "HHmm": "HH:mm",
2991
- "hm": "ah:mm",
2992
- "Hm": "HH:mm",
2993
- "hms": "ah:mm:ss",
2994
- "Hms": "HH:mm:ss",
2995
- "M": "L",
2996
- "Md": "M-d",
2997
- "MEd": "M/dE",
2998
- "MMM": "M月",
2999
- "MMMd": "M月d日",
3000
- "MMMEd": "M月d日E",
3001
- "MMMMd": "M月d日",
3002
- "MMMMdd": "M月d日",
3003
- "ms": "mm:ss",
3004
- "y": "Gy年",
3005
- "yyyy": "Gy年",
3006
- "yyyyM": "Gy-M",
3007
- "yyyyMd": "Gy-M-d",
3008
- "yyyyMEd": "Gy-M-d(E)",
3009
- "yyyyMMM": "Gy年M月",
3010
- "yyyyMMMd": "Gy年M月d日",
3011
- "yyyyMMMEd": "Gy年M月d日E",
3012
- "yyyyMMMM": "Gy年M月",
3013
- "yyyyQQQ": "Gy年第Q季度",
3014
- "yyyyQQQQ": "Gy年QQQQ"
3015
- },
3016
- "appendItems": {
3017
- "Day": "{0} ({2}: {1})",
3018
- "Day-Of-Week": "{0} {1}",
3019
- "Era": "{1} {0}",
3020
- "Hour": "{0} ({2}: {1})",
3021
- "Minute": "{0} ({2}: {1})",
3022
- "Month": "{0} ({2}: {1})",
3023
- "Quarter": "{0} ({2}: {1})",
3024
- "Second": "{0} ({2}: {1})",
3025
- "Timezone": "{0} {1}",
3026
- "Week": "{0} ({2}: {1})",
3027
- "Year": "{1} {0}"
3028
- },
3029
- "intervalFormats": {
3030
- "intervalFormatFallback": "{0}–{1}",
3031
- "Bh": {
3032
- "B": "Bh时至Bh时",
3033
- "h": "Bh时至h时"
3034
- },
3035
- "Bhm": {
3036
- "B": "Bh:mm至Bh:mm",
3037
- "h": "Bh:mm至h:mm",
3038
- "m": "Bh:mm至h:mm"
3039
- },
3040
- "d": {
3041
- "d": "d至d日"
3042
- },
3043
- "Gy": {
3044
- "G": "G y – G y",
3045
- "y": "G y–y"
3046
- },
3047
- "GyM": {
3048
- "G": "GGGGG y-MM – GGGGG y-MM",
3049
- "M": "GGGGG y-MM – y-MM",
3050
- "y": "GGGGG y-MM – y-MM"
3051
- },
3052
- "GyMd": {
3053
- "d": "GGGGG y-MM-dd – y-MM-dd",
3054
- "G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
3055
- "M": "GGGGG y-MM-dd – y-MM-dd",
3056
- "y": "GGGGG y-MM-dd – y-MM-dd"
3057
- },
3058
- "GyMEd": {
3059
- "d": "GGGGG y-MM-dd, E – y-MM-dd, E",
3060
- "G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
3061
- "M": "GGGGG y-MM-dd, E – y-MM-dd, E",
3062
- "y": "GGGGG y-MM-dd, E – y-MM-dd, E"
3063
- },
3064
- "GyMMM": {
3065
- "G": "G y MMM – G y MMM",
3066
- "M": "G y MMM–MMM",
3067
- "y": "G y MMM – y MMM"
3068
- },
3069
- "GyMMMd": {
3070
- "d": "G y MMM d–d",
3071
- "G": "G y MMM d – G y MMM d",
3072
- "M": "G y MMM d – MMM d",
3073
- "y": "G y MMM d – y MMM d"
3074
- },
3075
- "GyMMMEd": {
3076
- "d": "G y MMM d, E – MMM d, E",
3077
- "G": "G y MMM d, E – G y MMM d, E",
3078
- "M": "G y MMM d, E – MMM d, E",
3079
- "y": "G y MMM d, E – y MMM d, E"
3080
- },
3081
- "h": {
3082
- "a": "ah时至ah时",
3083
- "h": "ah时至h时"
3084
- },
3085
- "H": {
3086
- "H": "HH–HH"
3087
- },
3088
- "hm": {
3089
- "a": "ah:mm至ah:mm",
3090
- "h": "ah:mm至h:mm",
3091
- "m": "ah:mm至h:mm"
3092
- },
3093
- "Hm": {
3094
- "H": "HH:mm–HH:mm",
3095
- "m": "HH:mm–HH:mm"
3096
- },
3097
- "hmv": {
3098
- "a": "vah:mm至ah:mm",
3099
- "h": "vah:mm至h:mm",
3100
- "m": "vah:mm至h:mm"
3101
- },
3102
- "Hmv": {
3103
- "H": "v HH:mm – HH:mm",
3104
- "m": "v HH:mm – HH:mm"
3105
- },
3106
- "hv": {
3107
- "a": "vah时至ah时",
3108
- "h": "vah时至h时"
3109
- },
3110
- "Hv": {
3111
- "H": "vHH–HH"
3112
- },
3113
- "M": {
3114
- "M": "M–M月"
3115
- },
3116
- "Md": {
3117
- "d": "M/d – M/d",
3118
- "M": "M/d – M/d"
3119
- },
3120
- "MEd": {
3121
- "d": "M/dE至M/dE",
3122
- "M": "M/dE至M/dE"
3123
- },
3124
- "MMM": {
3125
- "M": "MMM – MMM"
3126
- },
3127
- "MMMd": {
3128
- "d": "M月d日至d日",
3129
- "M": "M月d日至M月d日"
3130
- },
3131
- "MMMEd": {
3132
- "d": "M月d日E至d日E",
3133
- "M": "M月d日E至M月d日E"
3134
- },
3135
- "y": {
3136
- "y": "Gy–y年"
3137
- },
3138
- "yM": {
3139
- "M": "Gy年M月至M月",
3140
- "y": "Gy年M月至y年M月"
3141
- },
3142
- "yMd": {
3143
- "d": "Gy/M/d – y/M/d",
3144
- "M": "Gy/M/d – y/M/d",
3145
- "y": "Gy/M/d – y/M/d"
3146
- },
3147
- "yMEd": {
3148
- "d": "Gy/M/dE至y/M/dE",
3149
- "M": "Gy/M/dE至y/M/dE",
3150
- "y": "Gy/M/dE至y/M/dE"
3151
- },
3152
- "yMMM": {
3153
- "M": "Gy年M月至M月",
3154
- "y": "Gy年M月至y年M月"
3155
- },
3156
- "yMMMd": {
3157
- "d": "Gy年M月d日至d日",
3158
- "M": "Gy年M月d日至M月d日",
3159
- "y": "Gy年M月d日至y年M月d日"
3160
- },
3161
- "yMMMEd": {
3162
- "d": "Gy年M月d日E至d日E",
3163
- "M": "Gy年M月d日E至M月d日E",
3164
- "y": "Gy年M月d日E至y年M月d日E"
3165
- },
3166
- "yMMMM": {
3167
- "M": "Gy年M月至M月",
3168
- "y": "Gy年M月至y年M月"
3169
- }
3170
- }
3171
- },
3172
- "months": {
3173
- "format": {
3174
- "abbreviated": [
3175
- "1月",
3176
- "2月",
3177
- "3月",
3178
- "4月",
3179
- "5月",
3180
- "6月",
3181
- "7月",
3182
- "8月",
3183
- "9月",
3184
- "10月",
3185
- "11月",
3186
- "12月"
3187
- ],
3188
- "narrow": [
3189
- "1",
3190
- "2",
3191
- "3",
3192
- "4",
3193
- "5",
3194
- "6",
3195
- "7",
3196
- "8",
3197
- "9",
3198
- "10",
3199
- "11",
3200
- "12"
3201
- ],
3202
- "wide": [
3203
- "一月",
3204
- "二月",
3205
- "三月",
3206
- "四月",
3207
- "五月",
3208
- "六月",
3209
- "七月",
3210
- "八月",
3211
- "九月",
3212
- "十月",
3213
- "十一月",
3214
- "十二月"
3215
- ]
3216
- },
3217
- "stand-alone": {
3218
- "abbreviated": [
3219
- "1月",
3220
- "2月",
3221
- "3月",
3222
- "4月",
3223
- "5月",
3224
- "6月",
3225
- "7月",
3226
- "8月",
3227
- "9月",
3228
- "10月",
3229
- "11月",
3230
- "12月"
3231
- ],
3232
- "narrow": [
3233
- "1",
3234
- "2",
3235
- "3",
3236
- "4",
3237
- "5",
3238
- "6",
3239
- "7",
3240
- "8",
3241
- "9",
3242
- "10",
3243
- "11",
3244
- "12"
3245
- ],
3246
- "wide": [
3247
- "一月",
3248
- "二月",
3249
- "三月",
3250
- "四月",
3251
- "五月",
3252
- "六月",
3253
- "七月",
3254
- "八月",
3255
- "九月",
3256
- "十月",
3257
- "十一月",
3258
- "十二月"
3259
- ]
3260
- }
3261
- },
3262
- "days": {
3263
- "format": {
3264
- "abbreviated": [
3265
- "周日",
3266
- "周一",
3267
- "周二",
3268
- "周三",
3269
- "周四",
3270
- "周五",
3271
- "周六"
3272
- ],
3273
- "narrow": [
3274
- "日",
3275
- "一",
3276
- "二",
3277
- "三",
3278
- "四",
3279
- "五",
3280
- "六"
3281
- ],
3282
- "short": [
3283
- "周日",
3284
- "周一",
3285
- "周二",
3286
- "周三",
3287
- "周四",
3288
- "周五",
3289
- "周六"
3290
- ],
3291
- "wide": [
3292
- "星期日",
3293
- "星期一",
3294
- "星期二",
3295
- "星期三",
3296
- "星期四",
3297
- "星期五",
3298
- "星期六"
3299
- ]
3300
- },
3301
- "stand-alone": {
3302
- "abbreviated": [
3303
- "周日",
3304
- "周一",
3305
- "周二",
3306
- "周三",
3307
- "周四",
3308
- "周五",
3309
- "周六"
3310
- ],
3311
- "narrow": [
3312
- "日",
3313
- "一",
3314
- "二",
3315
- "三",
3316
- "四",
3317
- "五",
3318
- "六"
3319
- ],
3320
- "short": [
3321
- "周日",
3322
- "周一",
3323
- "周二",
3324
- "周三",
3325
- "周四",
3326
- "周五",
3327
- "周六"
3328
- ],
3329
- "wide": [
3330
- "星期日",
3331
- "星期一",
3332
- "星期二",
3333
- "星期三",
3334
- "星期四",
3335
- "星期五",
3336
- "星期六"
3337
- ]
3338
- }
3339
- },
3340
- "quarters": {
3341
- "format": {
3342
- "abbreviated": [
3343
- "1季度",
3344
- "2季度",
3345
- "3季度",
3346
- "4季度"
3347
- ],
3348
- "narrow": [
3349
- "1",
3350
- "2",
3351
- "3",
3352
- "4"
3353
- ],
3354
- "wide": [
3355
- "第一季度",
3356
- "第二季度",
3357
- "第三季度",
3358
- "第四季度"
3359
- ]
3360
- },
3361
- "stand-alone": {
3362
- "abbreviated": [
3363
- "1季度",
3364
- "2季度",
3365
- "3季度",
3366
- "4季度"
3367
- ],
3368
- "narrow": [
3369
- "1",
3370
- "2",
3371
- "3",
3372
- "4"
3373
- ],
3374
- "wide": [
3375
- "第一季度",
3376
- "第二季度",
3377
- "第三季度",
3378
- "第四季度"
3379
- ]
3380
- }
3381
- },
3382
- "dayPeriods": {
3383
- "format": {
3384
- "abbreviated": [
3385
- "上午",
3386
- "下午"
3387
- ],
3388
- "narrow": [
3389
- "上午",
3390
- "下午"
3391
- ],
3392
- "wide": [
3393
- "上午",
3394
- "下午"
3395
- ]
3396
- },
3397
- "stand-alone": {
3398
- "abbreviated": [
3399
- "上午",
3400
- "下午"
3401
- ],
3402
- "narrow": [
3403
- "上午",
3404
- "下午"
3405
- ],
3406
- "wide": [
3407
- "上午",
3408
- "下午"
3409
- ]
3410
- }
3411
- },
3412
- "era-wide": {
3413
- "0": "佛历"
3414
- },
3415
- "era-abbreviated": {
3416
- "0": "佛历"
3417
- },
3418
- "era-narrow": {
3419
- "0": "佛历"
3420
- }
3421
- },
3422
- "dateFields": {
3423
- "era": {
3424
- "displayName": "纪元"
3425
- },
3426
- "year-wide": {
3427
- "displayName": "年",
3428
- "relative-type--1": "去年",
3429
- "relative-type-0": "今年",
3430
- "relative-type-1": "明年",
3431
- "relativeTime-type-future": {
3432
- "relativeTimePattern-count-other": "{0}年后"
3433
- },
3434
- "relativeTime-type-past": {
3435
- "relativeTimePattern-count-other": "{0}年前"
3436
- }
3437
- },
3438
- "year-short": {
3439
- "displayName": "年",
3440
- "relative-type--1": "去年",
3441
- "relative-type-0": "今年",
3442
- "relative-type-1": "明年",
3443
- "relativeTime-type-future": {
3444
- "relativeTimePattern-count-other": "{0}年后"
3445
- },
3446
- "relativeTime-type-past": {
3447
- "relativeTimePattern-count-other": "{0}年前"
3448
- }
3449
- },
3450
- "year-narrow": {
3451
- "displayName": "年",
3452
- "relative-type--1": "去年",
3453
- "relative-type-0": "今年",
3454
- "relative-type-1": "明年",
3455
- "relativeTime-type-future": {
3456
- "relativeTimePattern-count-other": "{0}年后"
3457
- },
3458
- "relativeTime-type-past": {
3459
- "relativeTimePattern-count-other": "{0}年前"
3460
- }
3461
- },
3462
- "quarter-wide": {
3463
- "displayName": "季度",
3464
- "relative-type--1": "上季度",
3465
- "relative-type-0": "本季度",
3466
- "relative-type-1": "下季度",
3467
- "relativeTime-type-future": {
3468
- "relativeTimePattern-count-other": "{0}个季度后"
3469
- },
3470
- "relativeTime-type-past": {
3471
- "relativeTimePattern-count-other": "{0}个季度前"
3472
- }
3473
- },
3474
- "quarter-short": {
3475
- "displayName": "季",
3476
- "relative-type--1": "上季度",
3477
- "relative-type-0": "本季度",
3478
- "relative-type-1": "下季度",
3479
- "relativeTime-type-future": {
3480
- "relativeTimePattern-count-other": "{0}个季度后"
3481
- },
3482
- "relativeTime-type-past": {
3483
- "relativeTimePattern-count-other": "{0}个季度前"
3484
- }
3485
- },
3486
- "quarter-narrow": {
3487
- "displayName": "季",
3488
- "relative-type--1": "上季度",
3489
- "relative-type-0": "本季度",
3490
- "relative-type-1": "下季度",
3491
- "relativeTime-type-future": {
3492
- "relativeTimePattern-count-other": "{0}个季度后"
3493
- },
3494
- "relativeTime-type-past": {
3495
- "relativeTimePattern-count-other": "{0}个季度前"
3496
- }
3497
- },
3498
- "month-wide": {
3499
- "displayName": "月",
3500
- "relative-type--1": "上个月",
3501
- "relative-type-0": "本月",
3502
- "relative-type-1": "下个月",
3503
- "relativeTime-type-future": {
3504
- "relativeTimePattern-count-other": "{0}个月后"
3505
- },
3506
- "relativeTime-type-past": {
3507
- "relativeTimePattern-count-other": "{0}个月前"
3508
- }
3509
- },
3510
- "month-short": {
3511
- "displayName": "月",
3512
- "relative-type--1": "上个月",
3513
- "relative-type-0": "本月",
3514
- "relative-type-1": "下个月",
3515
- "relativeTime-type-future": {
3516
- "relativeTimePattern-count-other": "{0}个月后"
3517
- },
3518
- "relativeTime-type-past": {
3519
- "relativeTimePattern-count-other": "{0}个月前"
3520
- }
3521
- },
3522
- "month-narrow": {
3523
- "displayName": "月",
3524
- "relative-type--1": "上个月",
3525
- "relative-type-0": "本月",
3526
- "relative-type-1": "下个月",
3527
- "relativeTime-type-future": {
3528
- "relativeTimePattern-count-other": "{0}个月后"
3529
- },
3530
- "relativeTime-type-past": {
3531
- "relativeTimePattern-count-other": "{0}个月前"
3532
- }
3533
- },
3534
- "week-wide": {
3535
- "displayName": "周",
3536
- "relative-type--1": "上周",
3537
- "relative-type-0": "本周",
3538
- "relative-type-1": "下周",
3539
- "relativeTime-type-future": {
3540
- "relativeTimePattern-count-other": "{0}周后"
3541
- },
3542
- "relativeTime-type-past": {
3543
- "relativeTimePattern-count-other": "{0}周前"
3544
- },
3545
- "relativePeriod": "{0}这周"
3546
- },
3547
- "week-short": {
3548
- "displayName": "周",
3549
- "relative-type--1": "上周",
3550
- "relative-type-0": "本周",
3551
- "relative-type-1": "下周",
3552
- "relativeTime-type-future": {
3553
- "relativeTimePattern-count-other": "{0}周后"
3554
- },
3555
- "relativeTime-type-past": {
3556
- "relativeTimePattern-count-other": "{0}周前"
3557
- },
3558
- "relativePeriod": "{0}这周"
3559
- },
3560
- "week-narrow": {
3561
- "displayName": "周",
3562
- "relative-type--1": "上周",
3563
- "relative-type-0": "本周",
3564
- "relative-type-1": "下周",
3565
- "relativeTime-type-future": {
3566
- "relativeTimePattern-count-other": "{0}周后"
3567
- },
3568
- "relativeTime-type-past": {
3569
- "relativeTimePattern-count-other": "{0}周前"
3570
- },
3571
- "relativePeriod": "{0}这周"
3572
- },
3573
- "day-wide": {
3574
- "displayName": "日",
3575
- "relative-type--2": "前天",
3576
- "relative-type--1": "昨天",
3577
- "relative-type-0": "今天",
3578
- "relative-type-1": "明天",
3579
- "relative-type-2": "后天",
3580
- "relativeTime-type-future": {
3581
- "relativeTimePattern-count-other": "{0}天后"
3582
- },
3583
- "relativeTime-type-past": {
3584
- "relativeTimePattern-count-other": "{0}天前"
3585
- }
3586
- },
3587
- "day-short": {
3588
- "displayName": "日",
3589
- "relative-type--2": "前天",
3590
- "relative-type--1": "昨天",
3591
- "relative-type-0": "今天",
3592
- "relative-type-1": "明天",
3593
- "relative-type-2": "后天",
3594
- "relativeTime-type-future": {
3595
- "relativeTimePattern-count-other": "{0}天后"
3596
- },
3597
- "relativeTime-type-past": {
3598
- "relativeTimePattern-count-other": "{0}天前"
3599
- }
3600
- },
3601
- "day-narrow": {
3602
- "displayName": "日",
3603
- "relative-type--2": "前天",
3604
- "relative-type--1": "昨天",
3605
- "relative-type-0": "今天",
3606
- "relative-type-1": "明天",
3607
- "relative-type-2": "后天",
3608
- "relativeTime-type-future": {
3609
- "relativeTimePattern-count-other": "{0}天后"
3610
- },
3611
- "relativeTime-type-past": {
3612
- "relativeTimePattern-count-other": "{0}天前"
3613
- }
3614
- },
3615
- "weekday": {
3616
- "displayName": "工作日"
3617
- },
3618
- "hour-wide": {
3619
- "displayName": "小时",
3620
- "relative-type-0": "这一时间 / 此时",
3621
- "relativeTime-type-future": {
3622
- "relativeTimePattern-count-other": "{0}小时后"
3623
- },
3624
- "relativeTime-type-past": {
3625
- "relativeTimePattern-count-other": "{0}小时前"
3626
- }
3627
- },
3628
- "hour-short": {
3629
- "displayName": "小时",
3630
- "relative-type-0": "这一时间 / 此时",
3631
- "relativeTime-type-future": {
3632
- "relativeTimePattern-count-other": "{0}小时后"
3633
- },
3634
- "relativeTime-type-past": {
3635
- "relativeTimePattern-count-other": "{0}小时前"
3636
- }
3637
- },
3638
- "hour-narrow": {
3639
- "displayName": "小时",
3640
- "relative-type-0": "这一时间 / 此时",
3641
- "relativeTime-type-future": {
3642
- "relativeTimePattern-count-other": "{0}小时后"
3643
- },
3644
- "relativeTime-type-past": {
3645
- "relativeTimePattern-count-other": "{0}小时前"
3646
- }
3647
- },
3648
- "minute-wide": {
3649
- "displayName": "分钟",
3650
- "relative-type-0": "此刻",
3651
- "relativeTime-type-future": {
3652
- "relativeTimePattern-count-other": "{0}分钟后"
3653
- },
3654
- "relativeTime-type-past": {
3655
- "relativeTimePattern-count-other": "{0}分钟前"
3656
- }
3657
- },
3658
- "minute-short": {
3659
- "displayName": "分",
3660
- "relative-type-0": "此刻",
3661
- "relativeTime-type-future": {
3662
- "relativeTimePattern-count-other": "{0}分钟后"
3663
- },
3664
- "relativeTime-type-past": {
3665
- "relativeTimePattern-count-other": "{0}分钟前"
3666
- }
3667
- },
3668
- "minute-narrow": {
3669
- "displayName": "分",
3670
- "relative-type-0": "此刻",
3671
- "relativeTime-type-future": {
3672
- "relativeTimePattern-count-other": "{0}分钟后"
3673
- },
3674
- "relativeTime-type-past": {
3675
- "relativeTimePattern-count-other": "{0}分钟前"
3676
- }
3677
- },
3678
- "second-wide": {
3679
- "displayName": "秒",
3680
- "relative-type-0": "现在",
3681
- "relativeTime-type-future": {
3682
- "relativeTimePattern-count-other": "{0}秒后"
3683
- },
3684
- "relativeTime-type-past": {
3685
- "relativeTimePattern-count-other": "{0}秒前"
3686
- }
3687
- },
3688
- "second-short": {
3689
- "displayName": "秒",
3690
- "relative-type-0": "现在",
3691
- "relativeTime-type-future": {
3692
- "relativeTimePattern-count-other": "{0}秒后"
3693
- },
3694
- "relativeTime-type-past": {
3695
- "relativeTimePattern-count-other": "{0}秒前"
3696
- }
3697
- },
3698
- "second-narrow": {
3699
- "displayName": "秒",
3700
- "relative-type-0": "现在",
3701
- "relativeTime-type-future": {
3702
- "relativeTimePattern-count-other": "{0}秒后"
3703
- },
3704
- "relativeTime-type-past": {
3705
- "relativeTimePattern-count-other": "{0}秒前"
3706
- }
3707
- },
3708
- "zone": {
3709
- "displayName": "时区"
3710
- }
3711
- },
3712
- "decimalFormat": {
3713
- "standard": "#,##0.###"
3714
- },
3715
- "decimalFormat-long": {
3716
- "1000-other": "0",
3717
- "10000-other": "0万",
3718
- "100000-other": "00万",
3719
- "1000000-other": "000万",
3720
- "10000000-other": "0000万",
3721
- "100000000-other": "0亿",
3722
- "1000000000-other": "00亿",
3723
- "10000000000-other": "000亿",
3724
- "100000000000-other": "0000亿",
3725
- "1000000000000-other": "0万亿",
3726
- "10000000000000-other": "00万亿",
3727
- "100000000000000-other": "000万亿"
3728
- },
3729
- "decimalFormat-short": {
3730
- "1000-other": "0",
3731
- "10000-other": "0万",
3732
- "100000-other": "00万",
3733
- "1000000-other": "000万",
3734
- "10000000-other": "0000万",
3735
- "100000000-other": "0亿",
3736
- "1000000000-other": "00亿",
3737
- "10000000000-other": "000亿",
3738
- "100000000000-other": "0000亿",
3739
- "1000000000000-other": "0万亿",
3740
- "10000000000000-other": "00万亿",
3741
- "100000000000000-other": "000万亿"
3742
- },
3743
- "scientificFormat": {
3744
- "standard": "#E0"
3745
- },
3746
- "percentFormat": {
3747
- "standard": "#,##0%"
3748
- },
3749
- "currencyFormat": {
3750
- "standard": "¤#,##0.00",
3751
- "accounting": "¤#,##0.00;(¤#,##0.00)",
3752
- "currencySpacing": {
3753
- "beforeCurrency": {
3754
- "currencyMatch": "[:^S:]",
3755
- "surroundingMatch": "[:digit:]",
3756
- "insertBetween": " "
3757
- },
3758
- "afterCurrency": {
3759
- "currencyMatch": "[:^S:]",
3760
- "surroundingMatch": "[:digit:]",
3761
- "insertBetween": " "
3762
- }
3763
- },
3764
- "sap-standard": "#,##0.00¤",
3765
- "sap-accounting": "#,##0.00¤;(#,##0.00¤)"
3766
- },
3767
- "miscPattern": {
3768
- "approximately": "~{0}",
3769
- "atLeast": "{0}+",
3770
- "atMost": "≤{0}",
3771
- "range": "{0}-{1}"
3772
- },
3773
- "currencyFormat-short": {
3774
- "1000-other": "0",
3775
- "10000-other": "¤0万",
3776
- "100000-other": "¤00万",
3777
- "1000000-other": "¤000万",
3778
- "10000000-other": "¤0000万",
3779
- "100000000-other": "¤0亿",
3780
- "1000000000-other": "¤00亿",
3781
- "10000000000-other": "¤000亿",
3782
- "100000000000-other": "¤0000亿",
3783
- "1000000000000-other": "¤0兆",
3784
- "10000000000000-other": "¤00兆",
3785
- "100000000000000-other": "¤000兆"
3786
- },
3787
- "symbols-latn-decimal": ".",
3788
- "symbols-latn-group": ",",
3789
- "symbols-latn-list": ";",
3790
- "symbols-latn-percentSign": "%",
3791
- "symbols-latn-plusSign": "+",
3792
- "symbols-latn-minusSign": "-",
3793
- "symbols-latn-exponential": "E",
3794
- "symbols-latn-superscriptingExponent": "×",
3795
- "symbols-latn-perMille": "‰",
3796
- "symbols-latn-infinity": "∞",
3797
- "symbols-latn-nan": "NaN",
3798
- "symbols-latn-timeSeparator": ":",
3799
- "currencySymbols": {
3800
- "AUD": "AU$",
3801
- "BRL": "R$",
3802
- "CAD": "CA$",
3803
- "CNY": "CN¥",
3804
- "EUR": "€",
3805
- "GBP": "£",
3806
- "HKD": "HK$",
3807
- "ILR": "ILS",
3808
- "ILS": "₪",
3809
- "INR": "₹",
3810
- "JPY": "JP¥",
3811
- "KRW": "₩",
3812
- "MXN": "MX$",
3813
- "NZD": "NZ$",
3814
- "TWD": "NT$",
3815
- "USD": "US$",
3816
- "VND": "₫",
3817
- "XAF": "FCFA",
3818
- "XCD": "EC$",
3819
- "XOF": "CFA",
3820
- "XPF": "CFPF"
3821
- },
3822
- "rtl": false,
3823
- "listPattern-standard-wide": {
3824
- "2": "{0}和{1}",
3825
- "start": "{0}、{1}",
3826
- "middle": "{0}、{1}",
3827
- "end": "{0}和{1}"
3828
- },
3829
- "listPattern-or-wide": {
3830
- "2": "{0}或{1}",
3831
- "start": "{0}、{1}",
3832
- "middle": "{0}、{1}",
3833
- "end": "{0}或{1}"
3834
- },
3835
- "listPattern-or-short": {
3836
- "2": "{0}或{1}",
3837
- "start": "{0}、{1}",
3838
- "middle": "{0}、{1}",
3839
- "end": "{0}或{1}"
3840
- },
3841
- "listPattern-standard-short": {
3842
- "2": "{0}和{1}",
3843
- "start": "{0}、{1}",
3844
- "middle": "{0}、{1}",
3845
- "end": "{0}和{1}"
3846
- },
3847
- "units": {
3848
- "short": {
3849
- "per": {
3850
- "compoundUnitPattern": "{0}/{1}"
3851
- },
3852
- "acceleration-g-force": {
3853
- "displayName": "G力",
3854
- "unitPattern-count-other": "{0}G"
3855
- },
3856
- "acceleration-meter-per-second-squared": {
3857
- "displayName": "米/秒²",
3858
- "unitPattern-count-other": "{0}米/秒²"
3859
- },
3860
- "angle-revolution": {
3861
- "displayName": "转",
3862
- "unitPattern-count-other": "{0}转"
3863
- },
3864
- "angle-radian": {
3865
- "displayName": "弧度",
3866
- "unitPattern-count-other": "{0}弧度"
3867
- },
3868
- "angle-degree": {
3869
- "displayName": "度",
3870
- "unitPattern-count-other": "{0}°"
3871
- },
3872
- "angle-arc-minute": {
3873
- "displayName": "弧分",
3874
- "unitPattern-count-other": "{0}弧分"
3875
- },
3876
- "angle-arc-second": {
3877
- "displayName": "弧秒",
3878
- "unitPattern-count-other": "{0}弧秒"
3879
- },
3880
- "area-square-kilometer": {
3881
- "displayName": "平方公里",
3882
- "unitPattern-count-other": "{0}平方公里",
3883
- "perUnitPattern": "{0}/平方公里"
3884
- },
3885
- "area-hectare": {
3886
- "displayName": "公顷",
3887
- "unitPattern-count-other": "{0}公顷"
3888
- },
3889
- "area-square-meter": {
3890
- "displayName": "平方米",
3891
- "unitPattern-count-other": "{0}平方米",
3892
- "perUnitPattern": "{0}/平方米"
3893
- },
3894
- "area-square-centimeter": {
3895
- "displayName": "平方厘米",
3896
- "unitPattern-count-other": "{0}平方厘米",
3897
- "perUnitPattern": "{0}/平方厘米"
3898
- },
3899
- "area-square-mile": {
3900
- "displayName": "平方英里",
3901
- "unitPattern-count-other": "{0}平方英里",
3902
- "perUnitPattern": "{0}/平方英里"
3903
- },
3904
- "area-acre": {
3905
- "displayName": "英亩",
3906
- "unitPattern-count-other": "{0}英亩"
3907
- },
3908
- "area-square-yard": {
3909
- "displayName": "平方码",
3910
- "unitPattern-count-other": "{0}平方码"
3911
- },
3912
- "area-square-foot": {
3913
- "displayName": "平方英尺",
3914
- "unitPattern-count-other": "{0}平方英尺"
3915
- },
3916
- "area-square-inch": {
3917
- "displayName": "平方英寸",
3918
- "unitPattern-count-other": "{0}平方英寸",
3919
- "perUnitPattern": "{0}/平方英寸"
3920
- },
3921
- "area-dunam": {
3922
- "displayName": "杜纳亩",
3923
- "unitPattern-count-other": "{0}杜纳亩"
3924
- },
3925
- "concentr-karat": {
3926
- "displayName": "克拉",
3927
- "unitPattern-count-other": "{0}克拉"
3928
- },
3929
- "concentr-milligram-per-deciliter": {
3930
- "displayName": "毫克/分升",
3931
- "unitPattern-count-other": "{0}毫克/分升"
3932
- },
3933
- "concentr-millimole-per-liter": {
3934
- "displayName": "毫摩尔/升",
3935
- "unitPattern-count-other": "{0}毫摩尔/升"
3936
- },
3937
- "concentr-part-per-million": {
3938
- "displayName": "ppm",
3939
- "unitPattern-count-other": "{0}ppm"
3940
- },
3941
- "concentr-percent": {
3942
- "displayName": "%",
3943
- "unitPattern-count-other": "{0}%"
3944
- },
3945
- "concentr-permille": {
3946
- "displayName": "‰",
3947
- "unitPattern-count-other": "{0}‰"
3948
- },
3949
- "concentr-permyriad": {
3950
- "displayName": "‱",
3951
- "unitPattern-count-other": "{0}‱"
3952
- },
3953
- "concentr-mole": {
3954
- "displayName": "摩尔",
3955
- "unitPattern-count-other": "{0}摩尔"
3956
- },
3957
- "consumption-liter-per-kilometer": {
3958
- "displayName": "升/公里",
3959
- "unitPattern-count-other": "{0}升/公里"
3960
- },
3961
- "consumption-liter-per-100kilometers": {
3962
- "displayName": "升/100千米",
3963
- "unitPattern-count-other": "{0}升/100千米"
3964
- },
3965
- "consumption-mile-per-gallon": {
3966
- "displayName": "英里/加仑",
3967
- "unitPattern-count-other": "{0}英里/加仑"
3968
- },
3969
- "consumption-mile-per-gallon-imperial": {
3970
- "displayName": "英里/英制加仑",
3971
- "unitPattern-count-other": "{0}英里/英制加仑"
3972
- },
3973
- "digital-petabyte": {
3974
- "displayName": "PB",
3975
- "unitPattern-count-other": "{0} PB"
3976
- },
3977
- "digital-terabyte": {
3978
- "displayName": "太字节",
3979
- "unitPattern-count-other": "{0}太字节"
3980
- },
3981
- "digital-terabit": {
3982
- "displayName": "太比特",
3983
- "unitPattern-count-other": "{0}太比特"
3984
- },
3985
- "digital-gigabyte": {
3986
- "displayName": "吉字节",
3987
- "unitPattern-count-other": "{0}吉字节"
3988
- },
3989
- "digital-gigabit": {
3990
- "displayName": "吉比特",
3991
- "unitPattern-count-other": "{0}吉比特"
3992
- },
3993
- "digital-megabyte": {
3994
- "displayName": "兆字节",
3995
- "unitPattern-count-other": "{0}兆字节"
3996
- },
3997
- "digital-megabit": {
3998
- "displayName": "兆比特",
3999
- "unitPattern-count-other": "{0}兆比特"
4000
- },
4001
- "digital-kilobyte": {
4002
- "displayName": "千字节",
4003
- "unitPattern-count-other": "{0}千字节"
4004
- },
4005
- "digital-kilobit": {
4006
- "displayName": "千比特",
4007
- "unitPattern-count-other": "{0}千比特"
4008
- },
4009
- "digital-byte": {
4010
- "displayName": "字节",
4011
- "unitPattern-count-other": "{0}字节"
4012
- },
4013
- "digital-bit": {
4014
- "displayName": "比特",
4015
- "unitPattern-count-other": "{0}比特"
4016
- },
4017
- "duration-century": {
4018
- "displayName": "世纪",
4019
- "unitPattern-count-other": "{0}个世纪"
4020
- },
4021
- "duration-year": {
4022
- "displayName": "年",
4023
- "unitPattern-count-other": "{0}年",
4024
- "perUnitPattern": "{0}/年"
4025
- },
4026
- "duration-month": {
4027
- "displayName": "个月",
4028
- "unitPattern-count-other": "{0}个月",
4029
- "perUnitPattern": "{0}/月"
4030
- },
4031
- "duration-week": {
4032
- "displayName": "周",
4033
- "unitPattern-count-other": "{0}周",
4034
- "perUnitPattern": "{0}/周"
4035
- },
4036
- "duration-day": {
4037
- "displayName": "天",
4038
- "unitPattern-count-other": "{0}天",
4039
- "perUnitPattern": "{0}/天"
4040
- },
4041
- "duration-hour": {
4042
- "displayName": "小时",
4043
- "unitPattern-count-other": "{0}小时",
4044
- "perUnitPattern": "{0}/小时"
4045
- },
4046
- "duration-minute": {
4047
- "displayName": "分钟",
4048
- "unitPattern-count-other": "{0}分钟",
4049
- "perUnitPattern": "{0}/分钟"
4050
- },
4051
- "duration-second": {
4052
- "displayName": "秒",
4053
- "unitPattern-count-other": "{0}秒",
4054
- "perUnitPattern": "{0}/秒"
4055
- },
4056
- "duration-millisecond": {
4057
- "displayName": "毫秒",
4058
- "unitPattern-count-other": "{0}毫秒"
4059
- },
4060
- "duration-microsecond": {
4061
- "displayName": "微秒",
4062
- "unitPattern-count-other": "{0}微秒"
4063
- },
4064
- "duration-nanosecond": {
4065
- "displayName": "纳秒",
4066
- "unitPattern-count-other": "{0}纳秒"
4067
- },
4068
- "electric-ampere": {
4069
- "displayName": "安培",
4070
- "unitPattern-count-other": "{0}安"
4071
- },
4072
- "electric-milliampere": {
4073
- "displayName": "毫安",
4074
- "unitPattern-count-other": "{0}毫安"
4075
- },
4076
- "electric-ohm": {
4077
- "displayName": "欧姆",
4078
- "unitPattern-count-other": "{0}欧"
4079
- },
4080
- "electric-volt": {
4081
- "displayName": "伏特",
4082
- "unitPattern-count-other": "{0}伏"
4083
- },
4084
- "energy-kilocalorie": {
4085
- "displayName": "千卡",
4086
- "unitPattern-count-other": "{0}千卡"
4087
- },
4088
- "energy-calorie": {
4089
- "displayName": "卡",
4090
- "unitPattern-count-other": "{0}卡"
4091
- },
4092
- "energy-foodcalorie": {
4093
- "displayName": "卡",
4094
- "unitPattern-count-other": "{0}卡"
4095
- },
4096
- "energy-kilojoule": {
4097
- "displayName": "千焦",
4098
- "unitPattern-count-other": "{0}千焦"
4099
- },
4100
- "energy-joule": {
4101
- "displayName": "焦耳",
4102
- "unitPattern-count-other": "{0}焦耳"
4103
- },
4104
- "energy-kilowatt-hour": {
4105
- "displayName": "千瓦时",
4106
- "unitPattern-count-other": "{0}千瓦时"
4107
- },
4108
- "energy-electronvolt": {
4109
- "displayName": "电子伏",
4110
- "unitPattern-count-other": "{0}电子伏"
4111
- },
4112
- "energy-british-thermal-unit": {
4113
- "displayName": "英热单位",
4114
- "unitPattern-count-other": "{0}英热单位"
4115
- },
4116
- "force-pound-force": {
4117
- "displayName": "磅力",
4118
- "unitPattern-count-other": "{0}磅力"
4119
- },
4120
- "force-newton": {
4121
- "displayName": "牛",
4122
- "unitPattern-count-other": "{0}牛"
4123
- },
4124
- "frequency-gigahertz": {
4125
- "displayName": "吉赫",
4126
- "unitPattern-count-other": "{0}吉赫"
4127
- },
4128
- "frequency-megahertz": {
4129
- "displayName": "兆赫",
4130
- "unitPattern-count-other": "{0}兆赫"
4131
- },
4132
- "frequency-kilohertz": {
4133
- "displayName": "千赫",
4134
- "unitPattern-count-other": "{0}千赫"
4135
- },
4136
- "frequency-hertz": {
4137
- "displayName": "赫兹",
4138
- "unitPattern-count-other": "{0}赫"
4139
- },
4140
- "length-kilometer": {
4141
- "displayName": "公里",
4142
- "unitPattern-count-other": "{0}公里",
4143
- "perUnitPattern": "{0}/公里"
4144
- },
4145
- "length-meter": {
4146
- "displayName": "米",
4147
- "unitPattern-count-other": "{0}米",
4148
- "perUnitPattern": "{0}/米"
4149
- },
4150
- "length-decimeter": {
4151
- "displayName": "分米",
4152
- "unitPattern-count-other": "{0}分米"
4153
- },
4154
- "length-centimeter": {
4155
- "displayName": "厘米",
4156
- "unitPattern-count-other": "{0}厘米",
4157
- "perUnitPattern": "{0}/厘米"
4158
- },
4159
- "length-millimeter": {
4160
- "displayName": "毫米",
4161
- "unitPattern-count-other": "{0}毫米"
4162
- },
4163
- "length-micrometer": {
4164
- "displayName": "微米",
4165
- "unitPattern-count-other": "{0}微米"
4166
- },
4167
- "length-nanometer": {
4168
- "displayName": "纳米",
4169
- "unitPattern-count-other": "{0}纳米"
4170
- },
4171
- "length-picometer": {
4172
- "displayName": "皮米",
4173
- "unitPattern-count-other": "{0}皮米"
4174
- },
4175
- "length-mile": {
4176
- "displayName": "英里",
4177
- "unitPattern-count-other": "{0}英里"
4178
- },
4179
- "length-yard": {
4180
- "displayName": "码",
4181
- "unitPattern-count-other": "{0}码"
4182
- },
4183
- "length-foot": {
4184
- "displayName": "英尺",
4185
- "unitPattern-count-other": "{0}英尺",
4186
- "perUnitPattern": "{0}/英尺"
4187
- },
4188
- "length-inch": {
4189
- "displayName": "英寸",
4190
- "unitPattern-count-other": "{0}英寸",
4191
- "perUnitPattern": "{0}/英寸"
4192
- },
4193
- "length-parsec": {
4194
- "displayName": "秒差距",
4195
- "unitPattern-count-other": "{0}秒差距"
4196
- },
4197
- "length-light-year": {
4198
- "displayName": "光年",
4199
- "unitPattern-count-other": "{0}光年"
4200
- },
4201
- "length-astronomical-unit": {
4202
- "displayName": "天文单位",
4203
- "unitPattern-count-other": "{0}天文单位"
4204
- },
4205
- "length-furlong": {
4206
- "displayName": "弗隆",
4207
- "unitPattern-count-other": "{0}弗隆"
4208
- },
4209
- "length-fathom": {
4210
- "displayName": "英寻",
4211
- "unitPattern-count-other": "{0}英寻"
4212
- },
4213
- "length-nautical-mile": {
4214
- "displayName": "海里",
4215
- "unitPattern-count-other": "{0}海里"
4216
- },
4217
- "length-mile-scandinavian": {
4218
- "displayName": "斯堪的纳维亚英里",
4219
- "unitPattern-count-other": "{0}斯堪的纳维亚英里"
4220
- },
4221
- "length-point": {
4222
- "displayName": "pt",
4223
- "unitPattern-count-other": "{0} pt"
4224
- },
4225
- "length-solar-radius": {
4226
- "displayName": "太阳半径",
4227
- "unitPattern-count-other": "{0}太阳半径"
4228
- },
4229
- "light-lux": {
4230
- "displayName": "勒克斯",
4231
- "unitPattern-count-other": "{0}勒克斯"
4232
- },
4233
- "light-solar-luminosity": {
4234
- "displayName": "太阳光度",
4235
- "unitPattern-count-other": "{0}太阳光度"
4236
- },
4237
- "mass-metric-ton": {
4238
- "displayName": "公吨",
4239
- "unitPattern-count-other": "{0}公吨"
4240
- },
4241
- "mass-kilogram": {
4242
- "displayName": "千克",
4243
- "unitPattern-count-other": "{0}千克",
4244
- "perUnitPattern": "{0}/千克"
4245
- },
4246
- "mass-gram": {
4247
- "displayName": "克",
4248
- "unitPattern-count-other": "{0}克",
4249
- "perUnitPattern": "{0}/克"
4250
- },
4251
- "mass-milligram": {
4252
- "displayName": "毫克",
4253
- "unitPattern-count-other": "{0}毫克"
4254
- },
4255
- "mass-microgram": {
4256
- "displayName": "微克",
4257
- "unitPattern-count-other": "{0}微克"
4258
- },
4259
- "mass-ton": {
4260
- "displayName": "吨",
4261
- "unitPattern-count-other": "{0}吨"
4262
- },
4263
- "mass-stone": {
4264
- "displayName": "英石",
4265
- "unitPattern-count-other": "{0}英石"
4266
- },
4267
- "mass-pound": {
4268
- "displayName": "磅",
4269
- "unitPattern-count-other": "{0}磅",
4270
- "perUnitPattern": "{0}/磅"
4271
- },
4272
- "mass-ounce": {
4273
- "displayName": "盎司",
4274
- "unitPattern-count-other": "{0}盎司",
4275
- "perUnitPattern": "{0}/盎司"
4276
- },
4277
- "mass-ounce-troy": {
4278
- "displayName": "金衡盎司",
4279
- "unitPattern-count-other": "{0}金衡盎司"
4280
- },
4281
- "mass-carat": {
4282
- "displayName": "克拉",
4283
- "unitPattern-count-other": "{0}克拉"
4284
- },
4285
- "mass-dalton": {
4286
- "displayName": "道尔顿",
4287
- "unitPattern-count-other": "{0}道尔顿"
4288
- },
4289
- "mass-earth-mass": {
4290
- "displayName": "地球质量",
4291
- "unitPattern-count-other": "{0}地球质量"
4292
- },
4293
- "mass-solar-mass": {
4294
- "displayName": "太阳质量",
4295
- "unitPattern-count-other": "{0}太阳质量"
4296
- },
4297
- "power-gigawatt": {
4298
- "displayName": "吉瓦",
4299
- "unitPattern-count-other": "{0}吉瓦"
4300
- },
4301
- "power-megawatt": {
4302
- "displayName": "兆瓦",
4303
- "unitPattern-count-other": "{0}兆瓦"
4304
- },
4305
- "power-kilowatt": {
4306
- "displayName": "千瓦",
4307
- "unitPattern-count-other": "{0}千瓦"
4308
- },
4309
- "power-watt": {
4310
- "displayName": "瓦特",
4311
- "unitPattern-count-other": "{0}瓦"
4312
- },
4313
- "power-milliwatt": {
4314
- "displayName": "毫瓦",
4315
- "unitPattern-count-other": "{0}毫瓦"
4316
- },
4317
- "power-horsepower": {
4318
- "displayName": "马力",
4319
- "unitPattern-count-other": "{0}马力"
4320
- },
4321
- "pressure-hectopascal": {
4322
- "displayName": "百帕",
4323
- "unitPattern-count-other": "{0}百帕"
4324
- },
4325
- "pressure-millimeter-of-mercury": {
4326
- "displayName": "毫米汞柱",
4327
- "unitPattern-count-other": "{0}毫米汞柱"
4328
- },
4329
- "pressure-pound-per-square-inch": {
4330
- "displayName": "磅/平方英寸",
4331
- "unitPattern-count-other": "每平方英寸{0}磅"
4332
- },
4333
- "pressure-inch-hg": {
4334
- "displayName": "英寸汞柱",
4335
- "unitPattern-count-other": "{0}英寸汞柱"
4336
- },
4337
- "pressure-millibar": {
4338
- "displayName": "毫巴",
4339
- "unitPattern-count-other": "{0}毫巴"
4340
- },
4341
- "pressure-atmosphere": {
4342
- "displayName": "大气压",
4343
- "unitPattern-count-other": "{0}个大气压"
4344
- },
4345
- "pressure-kilopascal": {
4346
- "displayName": "千帕",
4347
- "unitPattern-count-other": "{0}千帕"
4348
- },
4349
- "pressure-megapascal": {
4350
- "displayName": "兆帕",
4351
- "unitPattern-count-other": "{0}兆帕"
4352
- },
4353
- "speed-kilometer-per-hour": {
4354
- "displayName": "公里/小时",
4355
- "unitPattern-count-other": "每小时{0}公里"
4356
- },
4357
- "speed-meter-per-second": {
4358
- "displayName": "米/秒",
4359
- "unitPattern-count-other": "{0}米/秒"
4360
- },
4361
- "speed-mile-per-hour": {
4362
- "displayName": "英里/小时",
4363
- "unitPattern-count-other": "{0}英里/小时"
4364
- },
4365
- "speed-knot": {
4366
- "displayName": "节",
4367
- "unitPattern-count-other": "{0}节"
4368
- },
4369
- "temperature-generic": {
4370
- "displayName": "°",
4371
- "unitPattern-count-other": "{0}°"
4372
- },
4373
- "temperature-celsius": {
4374
- "displayName": "摄氏度",
4375
- "unitPattern-count-other": "{0}°C"
4376
- },
4377
- "temperature-fahrenheit": {
4378
- "displayName": "华氏度",
4379
- "unitPattern-count-other": "{0}°F"
4380
- },
4381
- "temperature-kelvin": {
4382
- "displayName": "开",
4383
- "unitPattern-count-other": "{0}°K"
4384
- },
4385
- "torque-pound-foot": {
4386
- "displayName": "磅英尺",
4387
- "unitPattern-count-other": "{0}磅英尺"
4388
- },
4389
- "torque-newton-meter": {
4390
- "displayName": "牛米",
4391
- "unitPattern-count-other": "{0}牛米"
4392
- },
4393
- "volume-cubic-kilometer": {
4394
- "displayName": "立方千米",
4395
- "unitPattern-count-other": "{0}立方千米"
4396
- },
4397
- "volume-cubic-meter": {
4398
- "displayName": "立方米",
4399
- "unitPattern-count-other": "{0}立方米",
4400
- "perUnitPattern": "{0}/立方米"
4401
- },
4402
- "volume-cubic-centimeter": {
4403
- "displayName": "立方厘米",
4404
- "unitPattern-count-other": "{0}立方厘米",
4405
- "perUnitPattern": "{0}/立方厘米"
4406
- },
4407
- "volume-cubic-mile": {
4408
- "displayName": "立方英里",
4409
- "unitPattern-count-other": "{0}立方英里"
4410
- },
4411
- "volume-cubic-yard": {
4412
- "displayName": "立方码",
4413
- "unitPattern-count-other": "{0}立方码"
4414
- },
4415
- "volume-cubic-foot": {
4416
- "displayName": "立方英尺",
4417
- "unitPattern-count-other": "{0}立方英尺"
4418
- },
4419
- "volume-cubic-inch": {
4420
- "displayName": "立方英寸",
4421
- "unitPattern-count-other": "{0}立方英寸"
4422
- },
4423
- "volume-megaliter": {
4424
- "displayName": "兆升",
4425
- "unitPattern-count-other": "{0}兆升"
4426
- },
4427
- "volume-hectoliter": {
4428
- "displayName": "公石",
4429
- "unitPattern-count-other": "{0}公石"
4430
- },
4431
- "volume-liter": {
4432
- "displayName": "升",
4433
- "unitPattern-count-other": "{0}升",
4434
- "perUnitPattern": "{0}/升"
4435
- },
4436
- "volume-deciliter": {
4437
- "displayName": "分升",
4438
- "unitPattern-count-other": "{0}分升"
4439
- },
4440
- "volume-centiliter": {
4441
- "displayName": "厘升",
4442
- "unitPattern-count-other": "{0}厘升"
4443
- },
4444
- "volume-milliliter": {
4445
- "displayName": "毫升",
4446
- "unitPattern-count-other": "{0}毫升"
4447
- },
4448
- "volume-pint-metric": {
4449
- "displayName": "公制品脱",
4450
- "unitPattern-count-other": "{0}公制品脱"
4451
- },
4452
- "volume-cup-metric": {
4453
- "displayName": "公制杯",
4454
- "unitPattern-count-other": "{0}公制杯"
4455
- },
4456
- "volume-acre-foot": {
4457
- "displayName": "英亩英尺",
4458
- "unitPattern-count-other": "{0}英亩英尺"
4459
- },
4460
- "volume-bushel": {
4461
- "displayName": "蒲式耳",
4462
- "unitPattern-count-other": "{0}蒲式耳"
4463
- },
4464
- "volume-gallon": {
4465
- "displayName": "加仑",
4466
- "unitPattern-count-other": "{0}加仑",
4467
- "perUnitPattern": "{0}/加仑"
4468
- },
4469
- "volume-gallon-imperial": {
4470
- "displayName": "英制加仑",
4471
- "unitPattern-count-other": "{0}英制加仑",
4472
- "perUnitPattern": "{0}/英制加仑"
4473
- },
4474
- "volume-quart": {
4475
- "displayName": "夸脱",
4476
- "unitPattern-count-other": "{0}夸脱"
4477
- },
4478
- "volume-pint": {
4479
- "displayName": "品脱",
4480
- "unitPattern-count-other": "{0}品脱"
4481
- },
4482
- "volume-cup": {
4483
- "displayName": "杯",
4484
- "unitPattern-count-other": "{0}杯"
4485
- },
4486
- "volume-fluid-ounce": {
4487
- "displayName": "液盎司",
4488
- "unitPattern-count-other": "{0}液盎司"
4489
- },
4490
- "volume-fluid-ounce-imperial": {
4491
- "displayName": "英制液盎司",
4492
- "unitPattern-count-other": "{0}英制液盎司"
4493
- },
4494
- "volume-tablespoon": {
4495
- "displayName": "汤匙",
4496
- "unitPattern-count-other": "{0}汤匙"
4497
- },
4498
- "volume-teaspoon": {
4499
- "displayName": "茶匙",
4500
- "unitPattern-count-other": "{0}茶匙"
4501
- },
4502
- "volume-barrel": {
4503
- "displayName": "桶",
4504
- "unitPattern-count-other": "{0}桶"
4505
- },
4506
- "coordinateUnit": {
4507
- "displayName": "方向",
4508
- "east": "东经{0}",
4509
- "north": "北纬{0}",
4510
- "south": "南纬{0}",
4511
- "west": "西经{0}"
4512
- }
4513
- }
4514
- },
4515
- "lenient-scope-number": {
4516
- "minusSign": "-‒⁻₋−➖﹣-",
4517
- "commaSign": ",،٫、︐︑﹐﹑,、",
4518
- "plusSign": "+⁺₊➕﬩﹢+"
4519
- },
4520
- "currencyFormat-sap-short": {
4521
- "1000-other": "0",
4522
- "10000-other": "0万 ¤",
4523
- "100000-other": "00万 ¤",
4524
- "1000000-other": "000万 ¤",
4525
- "10000000-other": "0000万 ¤",
4526
- "100000000-other": "0亿 ¤",
4527
- "1000000000-other": "00亿 ¤",
4528
- "10000000000-other": "000亿 ¤",
4529
- "100000000000-other": "0000亿 ¤",
4530
- "1000000000000-other": "0兆 ¤",
4531
- "10000000000000-other": "00兆 ¤",
4532
- "100000000000000-other": "000兆 ¤"
4533
- },
4534
- "currencyDigits": {
4535
- "ADP": 0,
4536
- "AFN": 0,
4537
- "ALL": 0,
4538
- "BHD": 3,
4539
- "BIF": 0,
4540
- "BYR": 0,
4541
- "CLF": 4,
4542
- "CLP": 0,
4543
- "DEFAULT": 2,
4544
- "DJF": 0,
4545
- "ESP": 0,
4546
- "GNF": 0,
4547
- "HUF": 0,
4548
- "IQD": 0,
4549
- "IRR": 0,
4550
- "ISK": 0,
4551
- "ITL": 0,
4552
- "JOD": 3,
4553
- "JPY": 0,
4554
- "KMF": 0,
4555
- "KPW": 0,
4556
- "KRW": 0,
4557
- "KWD": 3,
4558
- "LAK": 0,
4559
- "LBP": 0,
4560
- "LUF": 0,
4561
- "LYD": 3,
4562
- "MGA": 0,
4563
- "MGF": 0,
4564
- "MMK": 0,
4565
- "MRO": 0,
4566
- "OMR": 3,
4567
- "PYG": 0,
4568
- "RSD": 0,
4569
- "RWF": 0,
4570
- "SLL": 0,
4571
- "SOS": 0,
4572
- "STD": 0,
4573
- "SYP": 0,
4574
- "TMM": 0,
4575
- "TND": 3,
4576
- "TRL": 0,
4577
- "TWD": 0,
4578
- "UGX": 0,
4579
- "UYI": 0,
4580
- "UYW": 4,
4581
- "VND": 0,
4582
- "VUV": 0,
4583
- "XAF": 0,
4584
- "XOF": 0,
4585
- "XPF": 0,
4586
- "YER": 0,
4587
- "ZMK": 0,
4588
- "ZWD": 0
4589
- },
4590
- "plurals": {},
4591
- "weekData-minDays": 1,
4592
- "weekData-firstDay": 0,
4593
- "weekData-weekendStart": 6,
4594
- "weekData-weekendEnd": 0,
4595
- "timeData": {
4596
- "_allowed": "hB hb h H",
4597
- "_preferred": "h"
4598
- },
4599
- "eras-gregorian": {
4600
- "0": {
4601
- "_end": "0-12-31"
4602
- },
4603
- "1": {
4604
- "_start": "1-01-01"
4605
- }
4606
- },
4607
- "eras-islamic": {
4608
- "0": {
4609
- "_start": "622-7-15"
4610
- }
4611
- },
4612
- "eras-persian": {
4613
- "0": {
4614
- "_start": "622-01-01"
4615
- }
4616
- },
4617
- "eras-buddhist": {
4618
- "0": {
4619
- "_start": "-542-01-01"
4620
- }
4621
- },
4622
- "eras-japanese": {
4623
- "232": {
4624
- "_start": "1868-9-8"
4625
- },
4626
- "233": {
4627
- "_start": "1912-7-30"
4628
- },
4629
- "234": {
4630
- "_start": "1926-12-25"
4631
- },
4632
- "235": {
4633
- "_start": "1989-1-8"
4634
- },
4635
- "236": {
4636
- "_start": "2019-5-1"
4637
- }
4638
- },
4639
- "calendarPreference": "gregorian chinese"
4640
- }