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