@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,4830 +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": "インターリング",
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": "ンコ語",
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
- "ps_alt-variant": "パシュトゥ語",
446
- "pt": "ポルトガル語",
447
- "pt_BR": "ポルトガル語 (ブラジル)",
448
- "pt_PT": "ポルトガル語 (イベリア半島)",
449
- "qu": "ケチュア語",
450
- "quc": "キチェ語",
451
- "qug": "チンボラソ高地ケチュア語",
452
- "raj": "ラージャスターン語",
453
- "rap": "ラパヌイ語",
454
- "rar": "ラロトンガ語",
455
- "rgn": "ロマーニャ語",
456
- "rif": "リーフ語",
457
- "rm": "ロマンシュ語",
458
- "rn": "ルンディ語",
459
- "ro": "ルーマニア語",
460
- "ro_MD": "モルダビア語",
461
- "rof": "ロンボ語",
462
- "rom": "ロマーニー語",
463
- "root": "ルート",
464
- "rtm": "ロツマ語",
465
- "ru": "ロシア語",
466
- "rue": "ルシン語",
467
- "rug": "ロヴィアナ語",
468
- "rup": "アルーマニア語",
469
- "rw": "キニアルワンダ語",
470
- "rwk": "ルワ語",
471
- "sa": "サンスクリット語",
472
- "sad": "サンダウェ語",
473
- "sah": "サハ語",
474
- "sam": "サマリア・アラム語",
475
- "saq": "サンブル語",
476
- "sas": "ササク語",
477
- "sat": "サンターリー語",
478
- "saz": "サウラーシュトラ語",
479
- "sba": "ンガムバイ語",
480
- "sbp": "サング語",
481
- "sc": "サルデーニャ語",
482
- "scn": "シチリア語",
483
- "sco": "スコットランド語",
484
- "sd": "シンド語",
485
- "sdc": "サッサリ・サルデーニャ語",
486
- "sdh": "南部クルド語",
487
- "se": "北サーミ語",
488
- "see": "セネカ語",
489
- "seh": "セナ語",
490
- "sei": "セリ語",
491
- "sel": "セリクプ語",
492
- "ses": "コイラボロ・センニ語",
493
- "sg": "サンゴ語",
494
- "sga": "古アイルランド語",
495
- "sgs": "サモギティア語",
496
- "sh": "セルボ・クロアチア語",
497
- "shi": "タシルハイト語",
498
- "shn": "シャン語",
499
- "shu": "チャド・アラビア語",
500
- "si": "シンハラ語",
501
- "sid": "シダモ語",
502
- "sk": "スロバキア語",
503
- "sl": "スロベニア語",
504
- "sli": "低シレジア語",
505
- "sly": "スラヤール語",
506
- "sm": "サモア語",
507
- "sma": "南サーミ語",
508
- "smj": "ルレ・サーミ語",
509
- "smn": "イナリ・サーミ語",
510
- "sms": "スコルト・サーミ語",
511
- "sn": "ショナ語",
512
- "snk": "ソニンケ語",
513
- "so": "ソマリ語",
514
- "sog": "ソグド語",
515
- "sq": "アルバニア語",
516
- "sr": "セルビア語",
517
- "srn": "スリナム語",
518
- "srr": "セレル語",
519
- "ss": "スワジ語",
520
- "ssy": "サホ語",
521
- "st": "南部ソト語",
522
- "stq": "ザーターフリジア語",
523
- "su": "スンダ語",
524
- "suk": "スクマ語",
525
- "sus": "スス語",
526
- "sux": "シュメール語",
527
- "sv": "スウェーデン語",
528
- "sw": "スワヒリ語",
529
- "sw_CD": "コンゴ・スワヒリ語",
530
- "swb": "コモロ語",
531
- "syc": "古典シリア語",
532
- "syr": "シリア語",
533
- "szl": "シレジア語",
534
- "ta": "タミル語",
535
- "tcy": "トゥル語",
536
- "te": "テルグ語",
537
- "tem": "テムネ語",
538
- "teo": "テソ語",
539
- "ter": "テレーノ語",
540
- "tet": "テトゥン語",
541
- "tg": "タジク語",
542
- "th": "タイ語",
543
- "ti": "ティグリニア語",
544
- "tig": "ティグレ語",
545
- "tiv": "ティブ語",
546
- "tk": "トルクメン語",
547
- "tkl": "トケラウ語",
548
- "tkr": "ツァフル語",
549
- "tl": "タガログ語",
550
- "tlh": "クリンゴン語",
551
- "tli": "トリンギット語",
552
- "tly": "タリシュ語",
553
- "tmh": "タマシェク語",
554
- "tn": "ツワナ語",
555
- "to": "トンガ語",
556
- "tog": "トンガ語(ニアサ)",
557
- "tpi": "トク・ピシン語",
558
- "tr": "トルコ語",
559
- "tru": "トゥロヨ語",
560
- "trv": "タロコ語",
561
- "ts": "ツォンガ語",
562
- "tsd": "ツァコン語",
563
- "tsi": "チムシュ語",
564
- "tt": "タタール語",
565
- "ttt": "ムスリム・タタール語",
566
- "tum": "トゥンブカ語",
567
- "tvl": "ツバル語",
568
- "tw": "トウィ語",
569
- "twq": "タサワク語",
570
- "ty": "タヒチ語",
571
- "tyv": "トゥヴァ語",
572
- "tzm": "中央アトラス・タマジクト語",
573
- "udm": "ウドムルト語",
574
- "ug": "ウイグル語",
575
- "ug_alt-variant": "ウィグル語",
576
- "uga": "ウガリト語",
577
- "uk": "ウクライナ語",
578
- "umb": "ムブンドゥ語",
579
- "und": "言語不明",
580
- "ur": "ウルドゥー語",
581
- "uz": "ウズベク語",
582
- "vai": "ヴァイ語",
583
- "ve": "ベンダ語",
584
- "vec": "ヴェネト語",
585
- "vep": "ヴェプス語",
586
- "vi": "ベトナム語",
587
- "vls": "西フラマン語",
588
- "vmf": "マインフランク語",
589
- "vo": "ヴォラピュク語",
590
- "vot": "ヴォート語",
591
- "vro": "ヴォロ語",
592
- "vun": "ヴンジョ語",
593
- "wa": "ワロン語",
594
- "wae": "ヴァリス語",
595
- "wal": "ウォライタ語",
596
- "war": "ワライ語",
597
- "was": "ワショ語",
598
- "wbp": "ワルピリ語",
599
- "wo": "ウォロフ語",
600
- "wuu": "呉語",
601
- "xal": "カルムイク語",
602
- "xh": "コサ語",
603
- "xmf": "メグレル語",
604
- "xog": "ソガ語",
605
- "yao": "ヤオ語",
606
- "yap": "ヤップ語",
607
- "yav": "ヤンベン語",
608
- "ybb": "イエンバ語",
609
- "yi": "イディッシュ語",
610
- "yo": "ヨルバ語",
611
- "yrl": "ニェエンガトゥ語",
612
- "yue": "広東語",
613
- "za": "チワン語",
614
- "zap": "サポテカ語",
615
- "zbl": "ブリスシンボル",
616
- "zea": "ゼーラント語",
617
- "zen": "ゼナガ語",
618
- "zgh": "標準モロッコ タマジクト語",
619
- "zh": "中国語",
620
- "zh_Hans": "簡体中国語",
621
- "zh_Hant": "繁体中国語",
622
- "zu": "ズールー語",
623
- "zun": "ズニ語",
624
- "zxx": "言語的内容なし",
625
- "zza": "ザザ語"
626
- },
627
- "scripts": {
628
- "Adlm": "Adlm",
629
- "Afak": "アファカ文字",
630
- "Aghb": "カフカス・アルバニア文字",
631
- "Ahom": "Ahom",
632
- "Arab": "アラビア文字",
633
- "Arab-alt-variant": "ペルソ・アラビア文字",
634
- "Armi": "帝国アラム文字",
635
- "Armn": "アルメニア文字",
636
- "Avst": "アヴェスター文字",
637
- "Bali": "バリ文字",
638
- "Bamu": "バムン文字",
639
- "Bass": "バサ文字",
640
- "Batk": "バタク文字",
641
- "Beng": "ベンガル文字",
642
- "Bhks": "Bhks",
643
- "Blis": "ブリスシンボル",
644
- "Bopo": "注音字母",
645
- "Brah": "ブラーフミー文字",
646
- "Brai": "ブライユ点字",
647
- "Bugi": "ブギス文字",
648
- "Buhd": "ブヒッド文字",
649
- "Cakm": "チャクマ文字",
650
- "Cans": "統合カナダ先住民音節文字",
651
- "Cari": "カリア文字",
652
- "Cham": "チャム文字",
653
- "Cher": "チェロキー文字",
654
- "Cirt": "キアス文字",
655
- "Copt": "コプト文字",
656
- "Cprt": "キプロス文字",
657
- "Cyrl": "キリル文字",
658
- "Cyrs": "古代教会スラブ語キリル文字",
659
- "Deva": "デーバナーガリー文字",
660
- "Dogr": "Dogr",
661
- "Dsrt": "デセレット文字",
662
- "Dupl": "デュプロワエ式速記",
663
- "Egyd": "エジプト民衆文字",
664
- "Egyh": "エジプト神官文字",
665
- "Egyp": "エジプト聖刻文字",
666
- "Elba": "エルバサン文字",
667
- "Elym": "Elym",
668
- "Ethi": "エチオピア文字",
669
- "Geok": "ジョージア文字(フツリ)",
670
- "Geor": "ジョージア文字",
671
- "Glag": "グラゴル文字",
672
- "Gong": "Gong",
673
- "Gonm": "Gonm",
674
- "Goth": "ゴート文字",
675
- "Gran": "グランタ文字",
676
- "Grek": "ギリシャ文字",
677
- "Gujr": "グジャラート文字",
678
- "Guru": "グルムキー文字",
679
- "Hanb": "漢語注音字母",
680
- "Hang": "ハングル",
681
- "Hani": "漢字",
682
- "Hano": "ハヌノオ文字",
683
- "Hans": "簡体字",
684
- "Hans-alt-stand-alone": "漢字(簡体字)",
685
- "Hant": "繁体字",
686
- "Hant-alt-stand-alone": "漢字(繁体字)",
687
- "Hatr": "Hatr",
688
- "Hebr": "ヘブライ文字",
689
- "Hira": "ひらがな",
690
- "Hluw": "アナトリア象形文字",
691
- "Hmng": "パハウ・フモン文字",
692
- "Hmnp": "Hmnp",
693
- "Hrkt": "仮名",
694
- "Hung": "古代ハンガリー文字",
695
- "Inds": "インダス文字",
696
- "Ital": "古イタリア文字",
697
- "Jamo": "字母",
698
- "Java": "ジャワ文字",
699
- "Jpan": "日本語の文字",
700
- "Jurc": "女真文字",
701
- "Kali": "カヤー文字",
702
- "Kana": "カタカナ",
703
- "Khar": "カローシュティー文字",
704
- "Khmr": "クメール文字",
705
- "Khoj": "ホジャ文字",
706
- "Knda": "カンナダ文字",
707
- "Kore": "韓国語の文字",
708
- "Kpel": "クペレ文字",
709
- "Kthi": "カイティ文字",
710
- "Lana": "ラーンナー文字",
711
- "Laoo": "ラオ文字",
712
- "Latf": "ラテン文字(ドイツ文字)",
713
- "Latg": "ラテン文字 (ゲール文字)",
714
- "Latn": "ラテン文字",
715
- "Lepc": "レプチャ文字",
716
- "Limb": "リンブ文字",
717
- "Lina": "線文字A",
718
- "Linb": "線文字B",
719
- "Lisu": "フレイザー文字",
720
- "Loma": "ロマ文字",
721
- "Lyci": "リキア文字",
722
- "Lydi": "リディア文字",
723
- "Mahj": "マハージャニー文字",
724
- "Maka": "Maka",
725
- "Mand": "マンダ文字",
726
- "Mani": "マニ文字",
727
- "Marc": "Marc",
728
- "Maya": "マヤ象形文字",
729
- "Medf": "Medf",
730
- "Mend": "メンデ文字",
731
- "Merc": "メロエ文字草書体",
732
- "Mero": "メロエ文字",
733
- "Mlym": "マラヤーラム文字",
734
- "Modi": "モーディー文字",
735
- "Mong": "モンゴル文字",
736
- "Moon": "ムーン文字",
737
- "Mroo": "ムロ文字",
738
- "Mtei": "メイテイ文字",
739
- "Mult": "Mult",
740
- "Mymr": "ミャンマー文字",
741
- "Nand": "Nand",
742
- "Narb": "古代北アラビア文字",
743
- "Nbat": "ナバテア文字",
744
- "Newa": "Newa",
745
- "Nkgb": "ナシ族ゲバ文字",
746
- "Nkoo": "ンコ文字",
747
- "Nshu": "女書",
748
- "Ogam": "オガム文字",
749
- "Olck": "オルチキ文字",
750
- "Orkh": "オルホン文字",
751
- "Orya": "オリヤー文字",
752
- "Osge": "Osge",
753
- "Osma": "オスマニア文字",
754
- "Palm": "パルミラ文字",
755
- "Pauc": "パウ・チン・ハウ文字",
756
- "Perm": "古ぺルム文字",
757
- "Phag": "パスパ文字",
758
- "Phli": "碑文パフラヴィー文字",
759
- "Phlp": "詩編用パフラヴィー文字",
760
- "Phlv": "書物用パフラヴィー文字",
761
- "Phnx": "フェニキア文字",
762
- "Plrd": "ポラード音声記号",
763
- "Prti": "碑文パルティア文字",
764
- "Qaag": "Qaag",
765
- "Rjng": "ルジャン文字",
766
- "Rohg": "Rohg",
767
- "Roro": "ロンゴロンゴ文字",
768
- "Runr": "ルーン文字",
769
- "Samr": "サマリア文字",
770
- "Sara": "サラティ文字",
771
- "Sarb": "古代南アラビア文字",
772
- "Saur": "サウラーシュトラ文字",
773
- "Sgnw": "手話文字",
774
- "Shaw": "ショー文字",
775
- "Shrd": "シャーラダー文字",
776
- "Sidd": "梵字",
777
- "Sind": "クダワディ文字",
778
- "Sinh": "シンハラ文字",
779
- "Sogd": "Sogd",
780
- "Sogo": "Sogo",
781
- "Sora": "ソラング・ソンペング文字",
782
- "Soyo": "Soyo",
783
- "Sund": "スンダ文字",
784
- "Sylo": "シロティ・ナグリ文字",
785
- "Syrc": "シリア文字",
786
- "Syre": "シリア文字(エストランゲロ文字)",
787
- "Syrj": "シリア文字(西方シリア文字)",
788
- "Syrn": "シリア文字(東方シリア文字)",
789
- "Tagb": "タグバンワ文字",
790
- "Takr": "タークリー文字",
791
- "Tale": "タイ・レ文字",
792
- "Talu": "新タイ・ルー文字",
793
- "Taml": "タミール文字",
794
- "Tang": "西夏文字",
795
- "Tavt": "タイ・ヴェト文字",
796
- "Telu": "テルグ文字",
797
- "Teng": "テングワール文字",
798
- "Tfng": "ティフナグ文字",
799
- "Tglg": "タガログ文字",
800
- "Thaa": "ターナ文字",
801
- "Thai": "タイ文字",
802
- "Tibt": "チベット文字",
803
- "Tirh": "ティルフータ文字",
804
- "Ugar": "ウガリット文字",
805
- "Vaii": "ヴァイ文字",
806
- "Visp": "視話法",
807
- "Wara": "バラン・クシティ文字",
808
- "Wcho": "Wcho",
809
- "Wole": "ウォレアイ文字",
810
- "Xpeo": "古代ペルシア文字",
811
- "Xsux": "シュメール=アッカド語楔形文字",
812
- "Yiii": "イ文字",
813
- "Zanb": "Zanb",
814
- "Zinh": "基底文字の種別を継承する結合文字",
815
- "Zmth": "数学記号",
816
- "Zsye": "絵文字",
817
- "Zsym": "記号文字",
818
- "Zxxx": "非表記",
819
- "Zyyy": "共通文字",
820
- "Zzzz": "未定義文字"
821
- },
822
- "territories": {
823
- "142": "アジア",
824
- "143": "中央アジア",
825
- "145": "西アジア",
826
- "150": "ヨーロッパ",
827
- "151": "東ヨーロッパ",
828
- "154": "北ヨーロッパ",
829
- "155": "西ヨーロッパ",
830
- "202": "サブサハラアフリカ",
831
- "419": "ラテンアメリカ",
832
- "001": "世界",
833
- "002": "アフリカ",
834
- "003": "北アメリカ大陸",
835
- "005": "南アメリカ",
836
- "009": "オセアニア",
837
- "011": "西アフリカ",
838
- "013": "中央アメリカ",
839
- "014": "東アフリカ",
840
- "015": "北アフリカ",
841
- "017": "中部アフリカ",
842
- "018": "南部アフリカ",
843
- "019": "アメリカ大陸",
844
- "021": "北アメリカ",
845
- "029": "カリブ",
846
- "030": "東アジア",
847
- "034": "南アジア",
848
- "035": "東南アジア",
849
- "039": "南ヨーロッパ",
850
- "053": "オーストララシア",
851
- "054": "メラネシア",
852
- "057": "ミクロネシア",
853
- "061": "ポリネシア",
854
- "AC": "アセンション島",
855
- "AD": "アンドラ",
856
- "AE": "アラブ首長国連邦",
857
- "AF": "アフガニスタン",
858
- "AG": "アンティグア・バーブーダ",
859
- "AI": "アンギラ",
860
- "AL": "アルバニア",
861
- "AM": "アルメニア",
862
- "AO": "アンゴラ",
863
- "AQ": "南極",
864
- "AR": "アルゼンチン",
865
- "AS": "米領サモア",
866
- "AT": "オーストリア",
867
- "AU": "オーストラリア",
868
- "AW": "アルバ",
869
- "AX": "オーランド諸島",
870
- "AZ": "アゼルバイジャン",
871
- "BA": "ボスニア・ヘルツェゴビナ",
872
- "BB": "バルバドス",
873
- "BD": "バングラデシュ",
874
- "BE": "ベルギー",
875
- "BF": "ブルキナファソ",
876
- "BG": "ブルガリア",
877
- "BH": "バーレーン",
878
- "BI": "ブルンジ",
879
- "BJ": "ベナン",
880
- "BL": "サン・バルテルミー",
881
- "BM": "バミューダ",
882
- "BN": "ブルネイ",
883
- "BO": "ボリビア",
884
- "BQ": "オランダ領カリブ",
885
- "BR": "ブラジル",
886
- "BS": "バハマ",
887
- "BT": "ブータン",
888
- "BV": "ブーベ島",
889
- "BW": "ボツワナ",
890
- "BY": "ベラルーシ",
891
- "BZ": "ベリーズ",
892
- "CA": "カナダ",
893
- "CC": "ココス(キーリング)諸島",
894
- "CD": "コンゴ民主共和国(キンシャサ)",
895
- "CD-alt-variant": "コンゴ民主共和国",
896
- "CF": "中央アフリカ共和国",
897
- "CG": "コンゴ共和国(ブラザビル)",
898
- "CG-alt-variant": "コンゴ共和国",
899
- "CH": "スイス",
900
- "CI": "コートジボワール",
901
- "CI-alt-variant": "象牙海岸",
902
- "CK": "クック諸島",
903
- "CL": "チリ",
904
- "CM": "カメルーン",
905
- "CN": "中国",
906
- "CO": "コロンビア",
907
- "CP": "クリッパートン島",
908
- "CR": "コスタリカ",
909
- "CU": "キューバ",
910
- "CV": "カーボベルデ",
911
- "CW": "キュラソー",
912
- "CX": "クリスマス島",
913
- "CY": "キプロス",
914
- "CZ": "チェコ",
915
- "CZ-alt-variant": "チェコ共和国",
916
- "DE": "ドイツ",
917
- "DG": "ディエゴガルシア島",
918
- "DJ": "ジブチ",
919
- "DK": "デンマーク",
920
- "DM": "ドミニカ国",
921
- "DO": "ドミニカ共和国",
922
- "DZ": "アルジェリア",
923
- "EA": "セウタ・メリリャ",
924
- "EC": "エクアドル",
925
- "EE": "エストニア",
926
- "EG": "エジプト",
927
- "EH": "西サハラ",
928
- "ER": "エリトリア",
929
- "ES": "スペイン",
930
- "ET": "エチオピア",
931
- "EU": "欧州連合",
932
- "EZ": "ユーロ圏",
933
- "FI": "フィンランド",
934
- "FJ": "フィジー",
935
- "FK": "フォークランド諸島",
936
- "FK-alt-variant": "フォークランド諸島 (マルビーナス諸島)",
937
- "FM": "ミクロネシア連邦",
938
- "FO": "フェロー諸島",
939
- "FR": "フランス",
940
- "GA": "ガボン",
941
- "GB": "イギリス",
942
- "GB-alt-short": "英国",
943
- "GD": "グレナダ",
944
- "GE": "ジョージア",
945
- "GF": "仏領ギアナ",
946
- "GG": "ガーンジー",
947
- "GH": "ガーナ",
948
- "GI": "ジブラルタル",
949
- "GL": "グリーンランド",
950
- "GM": "ガンビア",
951
- "GN": "ギニア",
952
- "GP": "グアドループ",
953
- "GQ": "赤道ギニア",
954
- "GR": "ギリシャ",
955
- "GS": "サウスジョージア・サウスサンドウィッチ諸島",
956
- "GT": "グアテマラ",
957
- "GU": "グアム",
958
- "GW": "ギニアビサウ",
959
- "GY": "ガイアナ",
960
- "HK": "香港 (中国)",
961
- "HK-alt-short": "香港",
962
- "HM": "ハード島・マクドナルド諸島",
963
- "HN": "ホンジュラス",
964
- "HR": "クロアチア",
965
- "HT": "ハイチ",
966
- "HU": "ハンガリー",
967
- "IC": "カナリア諸島",
968
- "ID": "インドネシア",
969
- "IE": "アイルランド",
970
- "IL": "イスラエル",
971
- "IM": "マン島",
972
- "IN": "インド",
973
- "IO": "英領インド洋地域",
974
- "IQ": "イラク",
975
- "IR": "イラン",
976
- "IS": "アイスランド",
977
- "IT": "イタリア",
978
- "JE": "ジャージー",
979
- "JM": "ジャマイカ",
980
- "JO": "ヨルダン",
981
- "JP": "日本",
982
- "KE": "ケニア",
983
- "KG": "キルギス",
984
- "KH": "カンボジア",
985
- "KI": "キリバス",
986
- "KM": "コモロ",
987
- "KN": "セントクリストファー・ネーヴィス",
988
- "KP": "北朝鮮",
989
- "KR": "韓国",
990
- "KW": "クウェート",
991
- "KY": "ケイマン諸島",
992
- "KZ": "カザフスタン",
993
- "LA": "ラオス",
994
- "LB": "レバノン",
995
- "LC": "セントルシア",
996
- "LI": "リヒテンシュタイン",
997
- "LK": "スリランカ",
998
- "LR": "リベリア",
999
- "LS": "レソト",
1000
- "LT": "リトアニア",
1001
- "LU": "ルクセンブルク",
1002
- "LV": "ラトビア",
1003
- "LY": "リビア",
1004
- "MA": "モロッコ",
1005
- "MC": "モナコ",
1006
- "MD": "モルドバ",
1007
- "ME": "モンテネグロ",
1008
- "MF": "サン・マルタン",
1009
- "MG": "マダガスカル",
1010
- "MH": "マーシャル諸島",
1011
- "MK": "北マケドニア",
1012
- "MK-alt-variant": "MK",
1013
- "ML": "マリ",
1014
- "MM": "ミャンマー (ビルマ)",
1015
- "MN": "モンゴル",
1016
- "MO": "マカオ (中国)",
1017
- "MO-alt-short": "マカオ",
1018
- "MP": "北マリアナ諸島",
1019
- "MQ": "マルティニーク",
1020
- "MR": "モーリタニア",
1021
- "MS": "モントセラト",
1022
- "MT": "マルタ",
1023
- "MU": "モーリシャス",
1024
- "MV": "モルディブ",
1025
- "MW": "マラウイ",
1026
- "MX": "メキシコ",
1027
- "MY": "マレーシア",
1028
- "MZ": "モザンビーク",
1029
- "NA": "ナミビア",
1030
- "NC": "ニューカレドニア",
1031
- "NE": "ニジェール",
1032
- "NF": "ノーフォーク島",
1033
- "NG": "ナイジェリア",
1034
- "NI": "ニカラグア",
1035
- "NL": "オランダ",
1036
- "NO": "ノルウェー",
1037
- "NP": "ネパール",
1038
- "NR": "ナウル",
1039
- "NU": "ニウエ",
1040
- "NZ": "ニュージーランド",
1041
- "OM": "オマーン",
1042
- "PA": "パナマ",
1043
- "PE": "ペルー",
1044
- "PF": "仏領ポリネシア",
1045
- "PG": "パプアニューギニア",
1046
- "PH": "フィリピン",
1047
- "PK": "パキスタン",
1048
- "PL": "ポーランド",
1049
- "PM": "サンピエール島・ミクロン島",
1050
- "PN": "ピトケアン諸島",
1051
- "PR": "プエルトリコ",
1052
- "PS": "パレスチナ自治区",
1053
- "PS-alt-short": "パレスチナ",
1054
- "PT": "ポルトガル",
1055
- "PW": "パラオ",
1056
- "PY": "パラグアイ",
1057
- "QA": "カタール",
1058
- "QO": "オセアニア周辺地域",
1059
- "RE": "レユニオン",
1060
- "RO": "ルーマニア",
1061
- "RS": "セルビア",
1062
- "RU": "ロシア",
1063
- "RW": "ルワンダ",
1064
- "SA": "サウジアラビア",
1065
- "SB": "ソロモン諸島",
1066
- "SC": "セーシェル",
1067
- "SD": "スーダン",
1068
- "SE": "スウェーデン",
1069
- "SG": "シンガポール",
1070
- "SH": "セントヘレナ",
1071
- "SI": "スロベニア",
1072
- "SJ": "スバールバル諸島・ヤンマイエン島",
1073
- "SK": "スロバキア",
1074
- "SL": "シエラレオネ",
1075
- "SM": "サンマリノ",
1076
- "SN": "セネガル",
1077
- "SO": "ソマリア",
1078
- "SR": "スリナム",
1079
- "SS": "南スーダン",
1080
- "ST": "サントメ・プリンシペ",
1081
- "SV": "エルサルバドル",
1082
- "SX": "シント・マールテン",
1083
- "SY": "シリア",
1084
- "SZ": "エスワティニ",
1085
- "SZ-alt-variant": "スワジランド",
1086
- "TA": "トリスタン・ダ・クーニャ",
1087
- "TC": "タークス・カイコス諸島",
1088
- "TD": "チャド",
1089
- "TF": "仏領極南諸島",
1090
- "TG": "トーゴ",
1091
- "TH": "タイ",
1092
- "TJ": "タジキスタン",
1093
- "TK": "トケラウ",
1094
- "TL": "東ティモール",
1095
- "TL-alt-variant": "東チモール",
1096
- "TM": "トルクメニスタン",
1097
- "TN": "チュニジア",
1098
- "TO": "トンガ",
1099
- "TR": "トルコ",
1100
- "TT": "トリニダード・トバゴ",
1101
- "TV": "ツバル",
1102
- "TW": "台湾 (中国)",
1103
- "TZ": "タンザニア",
1104
- "UA": "ウクライナ",
1105
- "UG": "ウガンダ",
1106
- "UM": "合衆国領有小離島",
1107
- "UN": "国際連合",
1108
- "UN-alt-short": "国連",
1109
- "US": "アメリカ合衆国",
1110
- "US-alt-short": "アメリカ",
1111
- "UY": "ウルグアイ",
1112
- "UZ": "ウズベキスタン",
1113
- "VA": "バチカン市国",
1114
- "VC": "セントビンセント及びグレナディーン諸島",
1115
- "VE": "ベネズエラ",
1116
- "VG": "英領ヴァージン諸島",
1117
- "VI": "米領ヴァージン諸島",
1118
- "VN": "ベトナム",
1119
- "VU": "バヌアツ",
1120
- "WF": "ウォリス・フツナ",
1121
- "WS": "サモア",
1122
- "XA": "XA",
1123
- "XB": "XB",
1124
- "XK": "コソボ",
1125
- "YE": "イエメン",
1126
- "YT": "マヨット",
1127
- "ZA": "南アフリカ",
1128
- "ZM": "ザンビア",
1129
- "ZW": "ジンバブエ",
1130
- "ZZ": "不明な地域"
1131
- },
1132
- "orientation": "left-to-right",
1133
- "ca-gregorian": {
1134
- "dateFormats": {
1135
- "full": "y年M月d日EEEE",
1136
- "long": "y年M月d日",
1137
- "medium": "y/MM/dd",
1138
- "short": "y/MM/dd"
1139
- },
1140
- "timeFormats": {
1141
- "full": "H時mm分ss秒 zzzz",
1142
- "long": "H:mm:ss z",
1143
- "medium": "H:mm:ss",
1144
- "short": "H:mm"
1145
- },
1146
- "dateTimeFormats": {
1147
- "full": "{1} {0}",
1148
- "long": "{1} {0}",
1149
- "medium": "{1} {0}",
1150
- "short": "{1} {0}",
1151
- "availableFormats": {
1152
- "Bh": "BK時",
1153
- "Bhm": "BK:mm",
1154
- "Bhms": "BK:mm:ss",
1155
- "d": "d日",
1156
- "E": "ccc",
1157
- "EBhm": "BK:mm (E)",
1158
- "EBhms": "BK:mm:ss (E)",
1159
- "Ed": "d日(E)",
1160
- "EEEEd": "d日EEEE",
1161
- "Ehm": "aK:mm (E)",
1162
- "EHm": "H:mm (E)",
1163
- "Ehms": "aK:mm:ss (E)",
1164
- "EHms": "H:mm:ss (E)",
1165
- "Gy": "Gy年",
1166
- "GyMMM": "Gy年M月",
1167
- "GyMMMd": "Gy年M月d日",
1168
- "GyMMMEd": "Gy年M月d日(E)",
1169
- "GyMMMEEEEd": "Gy年M月d日EEEE",
1170
- "h": "aK時",
1171
- "H": "H時",
1172
- "hm": "aK:mm",
1173
- "Hm": "H:mm",
1174
- "hms": "aK:mm:ss",
1175
- "Hms": "H:mm:ss",
1176
- "hmsv": "aK:mm:ss v",
1177
- "Hmsv": "H:mm:ss v",
1178
- "hmv": "aK:mm v",
1179
- "Hmv": "H:mm v",
1180
- "M": "M月",
1181
- "Md": "M/d",
1182
- "MEd": "M/d(E)",
1183
- "MEEEEd": "M/dEEEE",
1184
- "MMM": "M月",
1185
- "MMMd": "M月d日",
1186
- "MMMEd": "M月d日(E)",
1187
- "MMMEEEEd": "M月d日EEEE",
1188
- "MMMMd": "M月d日",
1189
- "ms": "mm:ss",
1190
- "y": "y年",
1191
- "yM": "y/M",
1192
- "yMd": "y/M/d",
1193
- "yMEd": "y/M/d(E)",
1194
- "yMEEEEd": "y/M/dEEEE",
1195
- "yMM": "y/MM",
1196
- "yMMM": "y年M月",
1197
- "yMMMd": "y年M月d日",
1198
- "yMMMEd": "y年M月d日(E)",
1199
- "yMMMEEEEd": "y年M月d日EEEE",
1200
- "yMMMM": "y年M月",
1201
- "yQQQ": "y/QQQ",
1202
- "yQQQQ": "y年QQQQ",
1203
- "MMMMW": "M月第W週",
1204
- "yw": "Y年第w週"
1205
- },
1206
- "appendItems": {
1207
- "Day": "{0} ({2}: {1})",
1208
- "Day-Of-Week": "{0} {1}",
1209
- "Era": "{1} {0}",
1210
- "Hour": "{0} ({2}: {1})",
1211
- "Minute": "{0} ({2}: {1})",
1212
- "Month": "{0} ({2}: {1})",
1213
- "Quarter": "{0} ({2}: {1})",
1214
- "Second": "{0} ({2}: {1})",
1215
- "Timezone": "{0} {1}",
1216
- "Week": "{0} ({2}: {1})",
1217
- "Year": "{1} {0}"
1218
- },
1219
- "intervalFormats": {
1220
- "intervalFormatFallback": "{0}~{1}",
1221
- "Bh": {
1222
- "B": "BK時~BK時",
1223
- "h": "BK時~K時"
1224
- },
1225
- "Bhm": {
1226
- "B": "BK:mm~BK:mm",
1227
- "h": "BK:mm~K:mm",
1228
- "m": "BK:mm~K:mm"
1229
- },
1230
- "d": {
1231
- "d": "d日~d日"
1232
- },
1233
- "Gy": {
1234
- "G": "Gy年~Gy年",
1235
- "y": "Gy年~y年"
1236
- },
1237
- "GyM": {
1238
- "G": "Gy/MM~Gy/MM",
1239
- "M": "Gy/MM~y/MM",
1240
- "y": "Gy/MM~y/MM"
1241
- },
1242
- "GyMd": {
1243
- "d": "Gy/MM/dd~y/MM/dd",
1244
- "G": "Gy/MM/dd~Gy/MM/dd",
1245
- "M": "Gy/MM/dd~y/MM/dd",
1246
- "y": "Gy/MM/dd~y/MM/dd"
1247
- },
1248
- "GyMEd": {
1249
- "d": "Gy/MM/dd(E)~y/MM/dd(E)",
1250
- "G": "Gy/MM/dd(E)~Gy/MM/dd(E)",
1251
- "M": "Gy/MM/dd(E)~y/MM/dd(E)",
1252
- "y": "Gy/MM/dd(E)~y/MM/dd(E)"
1253
- },
1254
- "GyMMM": {
1255
- "G": "Gy年M月~Gy年M月",
1256
- "M": "Gy年M月~M月",
1257
- "y": "Gy年M月~y年M月"
1258
- },
1259
- "GyMMMd": {
1260
- "d": "Gy年M月d日~d日",
1261
- "G": "Gy年M月d日~Gy年M月d日",
1262
- "M": "Gy年M月d日~M月d日",
1263
- "y": "Gy年M月d日~y年M月d日"
1264
- },
1265
- "GyMMMEd": {
1266
- "d": "Gy年M月d日(E)~d日(E)",
1267
- "G": "Gy年M月d日(E)~Gy年M月d日(E)",
1268
- "M": "Gy年M月d日(E)~M月d日(E)",
1269
- "y": "Gy年M月d日(E)~y年M月d日(E)"
1270
- },
1271
- "h": {
1272
- "a": "aK時~aK時",
1273
- "h": "aK時~K時"
1274
- },
1275
- "H": {
1276
- "H": "H時~H時"
1277
- },
1278
- "hm": {
1279
- "a": "aK時mm分~aK時mm分",
1280
- "h": "aK時mm分~K時mm分",
1281
- "m": "aK時mm分~K時mm分"
1282
- },
1283
- "Hm": {
1284
- "H": "H時mm分~H時mm分",
1285
- "m": "H時mm分~H時mm分"
1286
- },
1287
- "hmv": {
1288
- "a": "aK時mm分~aK時mm分(v)",
1289
- "h": "aK時mm分~K時mm分(v)",
1290
- "m": "aK時mm分~K時mm分(v)"
1291
- },
1292
- "Hmv": {
1293
- "H": "H時mm分~H時mm分(v)",
1294
- "m": "H時mm分~H時mm分(v)"
1295
- },
1296
- "hv": {
1297
- "a": "aK時~aK時(v)",
1298
- "h": "aK時~K時(v)"
1299
- },
1300
- "Hv": {
1301
- "H": "H時~H時(v)"
1302
- },
1303
- "M": {
1304
- "M": "M月~M月"
1305
- },
1306
- "Md": {
1307
- "d": "MM/dd~MM/dd",
1308
- "M": "MM/dd~MM/dd"
1309
- },
1310
- "MEd": {
1311
- "d": "MM/dd(E)~MM/dd(E)",
1312
- "M": "MM/dd(E)~MM/dd(E)"
1313
- },
1314
- "MMM": {
1315
- "M": "M月~M月"
1316
- },
1317
- "MMMd": {
1318
- "d": "M月d日~d日",
1319
- "M": "M月d日~M月d日"
1320
- },
1321
- "MMMEd": {
1322
- "d": "M月d日(E)~d日(E)",
1323
- "M": "M月d日(E)~M月d日(E)"
1324
- },
1325
- "MMMM": {
1326
- "M": "M月~M月"
1327
- },
1328
- "y": {
1329
- "y": "y年~y年"
1330
- },
1331
- "yM": {
1332
- "M": "y/MM~y/MM",
1333
- "y": "y/MM~y/MM"
1334
- },
1335
- "yMd": {
1336
- "d": "y/MM/dd~y/MM/dd",
1337
- "M": "y/MM/dd~y/MM/dd",
1338
- "y": "y/MM/dd~y/MM/dd"
1339
- },
1340
- "yMEd": {
1341
- "d": "y/MM/dd(E)~y/MM/dd(E)",
1342
- "M": "y/MM/dd(E)~y/MM/dd(E)",
1343
- "y": "y/MM/dd(E)~y/MM/dd(E)"
1344
- },
1345
- "yMMM": {
1346
- "M": "y年M月~M月",
1347
- "y": "y年M月~y年M月"
1348
- },
1349
- "yMMMd": {
1350
- "d": "y年M月d日~d日",
1351
- "M": "y年M月d日~M月d日",
1352
- "y": "y年M月d日~y年M月d日"
1353
- },
1354
- "yMMMEd": {
1355
- "d": "y年M月d日(E)~d日(E)",
1356
- "M": "y年M月d日(E)~M月d日(E)",
1357
- "y": "y年M月d日(E)~y年M月d日(E)"
1358
- },
1359
- "yMMMM": {
1360
- "M": "y年M月~M月",
1361
- "y": "y年M月~y年M月"
1362
- }
1363
- }
1364
- },
1365
- "months": {
1366
- "format": {
1367
- "abbreviated": [
1368
- "1月",
1369
- "2月",
1370
- "3月",
1371
- "4月",
1372
- "5月",
1373
- "6月",
1374
- "7月",
1375
- "8月",
1376
- "9月",
1377
- "10月",
1378
- "11月",
1379
- "12月"
1380
- ],
1381
- "narrow": [
1382
- "1",
1383
- "2",
1384
- "3",
1385
- "4",
1386
- "5",
1387
- "6",
1388
- "7",
1389
- "8",
1390
- "9",
1391
- "10",
1392
- "11",
1393
- "12"
1394
- ],
1395
- "wide": [
1396
- "1月",
1397
- "2月",
1398
- "3月",
1399
- "4月",
1400
- "5月",
1401
- "6月",
1402
- "7月",
1403
- "8月",
1404
- "9月",
1405
- "10月",
1406
- "11月",
1407
- "12月"
1408
- ]
1409
- },
1410
- "stand-alone": {
1411
- "abbreviated": [
1412
- "1月",
1413
- "2月",
1414
- "3月",
1415
- "4月",
1416
- "5月",
1417
- "6月",
1418
- "7月",
1419
- "8月",
1420
- "9月",
1421
- "10月",
1422
- "11月",
1423
- "12月"
1424
- ],
1425
- "narrow": [
1426
- "1",
1427
- "2",
1428
- "3",
1429
- "4",
1430
- "5",
1431
- "6",
1432
- "7",
1433
- "8",
1434
- "9",
1435
- "10",
1436
- "11",
1437
- "12"
1438
- ],
1439
- "wide": [
1440
- "1月",
1441
- "2月",
1442
- "3月",
1443
- "4月",
1444
- "5月",
1445
- "6月",
1446
- "7月",
1447
- "8月",
1448
- "9月",
1449
- "10月",
1450
- "11月",
1451
- "12月"
1452
- ]
1453
- }
1454
- },
1455
- "days": {
1456
- "format": {
1457
- "abbreviated": [
1458
- "日",
1459
- "月",
1460
- "火",
1461
- "水",
1462
- "木",
1463
- "金",
1464
- "土"
1465
- ],
1466
- "narrow": [
1467
- "日",
1468
- "月",
1469
- "火",
1470
- "水",
1471
- "木",
1472
- "金",
1473
- "土"
1474
- ],
1475
- "short": [
1476
- "日",
1477
- "月",
1478
- "火",
1479
- "水",
1480
- "木",
1481
- "金",
1482
- "土"
1483
- ],
1484
- "wide": [
1485
- "日曜日",
1486
- "月曜日",
1487
- "火曜日",
1488
- "水曜日",
1489
- "木曜日",
1490
- "金曜日",
1491
- "土曜日"
1492
- ]
1493
- },
1494
- "stand-alone": {
1495
- "abbreviated": [
1496
- "日",
1497
- "月",
1498
- "火",
1499
- "水",
1500
- "木",
1501
- "金",
1502
- "土"
1503
- ],
1504
- "narrow": [
1505
- "日",
1506
- "月",
1507
- "火",
1508
- "水",
1509
- "木",
1510
- "金",
1511
- "土"
1512
- ],
1513
- "short": [
1514
- "日",
1515
- "月",
1516
- "火",
1517
- "水",
1518
- "木",
1519
- "金",
1520
- "土"
1521
- ],
1522
- "wide": [
1523
- "日曜日",
1524
- "月曜日",
1525
- "火曜日",
1526
- "水曜日",
1527
- "木曜日",
1528
- "金曜日",
1529
- "土曜日"
1530
- ]
1531
- }
1532
- },
1533
- "quarters": {
1534
- "format": {
1535
- "abbreviated": [
1536
- "Q1",
1537
- "Q2",
1538
- "Q3",
1539
- "Q4"
1540
- ],
1541
- "narrow": [
1542
- "1",
1543
- "2",
1544
- "3",
1545
- "4"
1546
- ],
1547
- "wide": [
1548
- "第1四半期",
1549
- "第2四半期",
1550
- "第3四半期",
1551
- "第4四半期"
1552
- ]
1553
- },
1554
- "stand-alone": {
1555
- "abbreviated": [
1556
- "Q1",
1557
- "Q2",
1558
- "Q3",
1559
- "Q4"
1560
- ],
1561
- "narrow": [
1562
- "1",
1563
- "2",
1564
- "3",
1565
- "4"
1566
- ],
1567
- "wide": [
1568
- "第1四半期",
1569
- "第2四半期",
1570
- "第3四半期",
1571
- "第4四半期"
1572
- ]
1573
- }
1574
- },
1575
- "dayPeriods": {
1576
- "format": {
1577
- "abbreviated": [
1578
- "午前",
1579
- "午後"
1580
- ],
1581
- "narrow": [
1582
- "午前",
1583
- "午後"
1584
- ],
1585
- "wide": [
1586
- "午前",
1587
- "午後"
1588
- ]
1589
- },
1590
- "stand-alone": {
1591
- "abbreviated": [
1592
- "午前",
1593
- "午後"
1594
- ],
1595
- "narrow": [
1596
- "午前",
1597
- "午後"
1598
- ],
1599
- "wide": [
1600
- "午前",
1601
- "午後"
1602
- ]
1603
- }
1604
- },
1605
- "era-wide": {
1606
- "0": "紀元前",
1607
- "1": "西暦"
1608
- },
1609
- "era-abbreviated": {
1610
- "0": "紀元前",
1611
- "1": "西暦"
1612
- },
1613
- "era-narrow": {
1614
- "0": "BC",
1615
- "1": "AD"
1616
- }
1617
- },
1618
- "ca-islamic": {
1619
- "dateFormats": {
1620
- "full": "Gy年M月d日EEEE",
1621
- "long": "Gy年M月d日",
1622
- "medium": "Gy/MM/dd",
1623
- "short": "Gy/MM/dd"
1624
- },
1625
- "timeFormats": {
1626
- "full": "H時mm分ss秒 zzzz",
1627
- "long": "H:mm:ss z",
1628
- "medium": "H:mm:ss",
1629
- "short": "H:mm"
1630
- },
1631
- "dateTimeFormats": {
1632
- "full": "{1} {0}",
1633
- "long": "{1} {0}",
1634
- "medium": "{1} {0}",
1635
- "short": "{1} {0}",
1636
- "availableFormats": {
1637
- "Bh": "BK時",
1638
- "Bhm": "BK:mm",
1639
- "Bhms": "BK:mm:ss",
1640
- "d": "d日",
1641
- "E": "ccc",
1642
- "EBhm": "BK:mm (E)",
1643
- "EBhms": "BK:mm:ss (E)",
1644
- "Ed": "d日(E)",
1645
- "EEEEd": "d日(EEEE)",
1646
- "Ehm": "aK:mm (E)",
1647
- "EHm": "H:mm (E)",
1648
- "Ehms": "aK:mm:ss (E)",
1649
- "EHms": "H:mm:ss (E)",
1650
- "Gy": "Gy年",
1651
- "GyMMM": "Gy年M月",
1652
- "GyMMMd": "Gy年M月d日",
1653
- "GyMMMEd": "Gy年M月d日(E)",
1654
- "GyMMMEEEEd": "Gy年M月d日(EEEE)",
1655
- "h": "aK時",
1656
- "H": "H時",
1657
- "hm": "aK:mm",
1658
- "Hm": "H:mm",
1659
- "hms": "aK:mm:ss",
1660
- "Hms": "H:mm:ss",
1661
- "M": "M月",
1662
- "Md": "M/d",
1663
- "MEd": "M/d(E)",
1664
- "MEEEEd": "M/d(EEEE)",
1665
- "MMM": "M月",
1666
- "MMMd": "M月d日",
1667
- "MMMEd": "M月d日(E)",
1668
- "MMMEEEEd": "M月d日(EEEE)",
1669
- "MMMMd": "M月d日",
1670
- "ms": "mm:ss",
1671
- "y": "Gy年",
1672
- "yyyy": "Gy年",
1673
- "yyyyM": "GGGGGy/M",
1674
- "yyyyMd": "GGGGGy/M/d",
1675
- "yyyyMEd": "GGGGGy/M/d(E)",
1676
- "yyyyMEEEEd": "GGGGGy/M/d(EEEE)",
1677
- "yyyyMMM": "Gy年M月",
1678
- "yyyyMMMd": "Gy年M月d日",
1679
- "yyyyMMMEd": "Gy年M月d日(E)",
1680
- "yyyyMMMEEEEd": "Gy年M月d日(EEEE)",
1681
- "yyyyMMMM": "Gy年M月",
1682
- "yyyyQQQ": "Gy/QQQ",
1683
- "yyyyQQQQ": "Gy年QQQQ"
1684
- },
1685
- "appendItems": {
1686
- "Day": "{0} ({2}: {1})",
1687
- "Day-Of-Week": "{0} {1}",
1688
- "Era": "{1} {0}",
1689
- "Hour": "{0} ({2}: {1})",
1690
- "Minute": "{0} ({2}: {1})",
1691
- "Month": "{0} ({2}: {1})",
1692
- "Quarter": "{0} ({2}: {1})",
1693
- "Second": "{0} ({2}: {1})",
1694
- "Timezone": "{0} {1}",
1695
- "Week": "{0} ({2}: {1})",
1696
- "Year": "{1} {0}"
1697
- },
1698
- "intervalFormats": {
1699
- "intervalFormatFallback": "{0}~{1}",
1700
- "Bh": {
1701
- "B": "BK時~BK時",
1702
- "h": "BK時~K時"
1703
- },
1704
- "Bhm": {
1705
- "B": "BK:mm~BK:mm",
1706
- "h": "BK:mm~K:mm",
1707
- "m": "BK:mm~K:mm"
1708
- },
1709
- "d": {
1710
- "d": "d日~d日"
1711
- },
1712
- "GGGGGyM": {
1713
- "G": "GGGGGy/MM~GGGGGy/MM",
1714
- "M": "GGGGGy/MM~y/MM",
1715
- "y": "GGGGGy/MM~y/MM"
1716
- },
1717
- "GGGGGyMd": {
1718
- "d": "GGGGGy/MM/dd~y/MM/dd",
1719
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
1720
- "M": "GGGGGy/MM/dd~y/MM/dd",
1721
- "y": "GGGGGy/MM/dd~y/MM/dd"
1722
- },
1723
- "GGGGGyMEd": {
1724
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
1725
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
1726
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
1727
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
1728
- },
1729
- "Gy": {
1730
- "G": "Gy年~Gy年",
1731
- "y": "Gy年~y年"
1732
- },
1733
- "GyM": {
1734
- "G": "GGGGGy/MM~GGGGGy/MM",
1735
- "M": "GGGGGy/MM~y/MM",
1736
- "y": "GGGGGy/MM~y/MM"
1737
- },
1738
- "GyMd": {
1739
- "d": "GGGGGy/MM/dd~y/MM/dd",
1740
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
1741
- "M": "GGGGGy/MM/dd~y/MM/dd",
1742
- "y": "GGGGGy/MM/dd~y/MM/dd"
1743
- },
1744
- "GyMEd": {
1745
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
1746
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
1747
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
1748
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
1749
- },
1750
- "GyMMM": {
1751
- "G": "Gy年M月~Gy年M月",
1752
- "M": "Gy年M月~M月",
1753
- "y": "Gy年M月~y年M月"
1754
- },
1755
- "GyMMMd": {
1756
- "d": "Gy年M月d日~d日",
1757
- "G": "Gy年M月d日~Gy年M月d日",
1758
- "M": "Gy年M月d日~M月d日",
1759
- "y": "Gy年M月d日~y年M月d日"
1760
- },
1761
- "GyMMMEd": {
1762
- "d": "Gy年M月d日(E)~d日(E)",
1763
- "G": "Gy年M月d日(E)~Gy年M月d日(E)",
1764
- "M": "Gy年M月d日(E)~M月d日(E)",
1765
- "y": "Gy年M月d日(E)~y年M月d日(E)"
1766
- },
1767
- "h": {
1768
- "a": "aK時~aK時",
1769
- "h": "aK時~K時"
1770
- },
1771
- "H": {
1772
- "H": "H時~H時"
1773
- },
1774
- "hm": {
1775
- "a": "aK時mm分~aK時mm分",
1776
- "h": "aK時mm分~K時mm分",
1777
- "m": "aK時mm分~K時mm分"
1778
- },
1779
- "Hm": {
1780
- "H": "H時mm分~H時mm分",
1781
- "m": "H時mm分~H時mm分"
1782
- },
1783
- "hmv": {
1784
- "a": "aK時mm分~aK時mm分(v)",
1785
- "h": "aK時mm分~K時mm分(v)",
1786
- "m": "aK時mm分~K時mm分(v)"
1787
- },
1788
- "Hmv": {
1789
- "H": "H時mm分~H時mm分(v)",
1790
- "m": "H時mm分~H時mm分(v)"
1791
- },
1792
- "hv": {
1793
- "a": "aK時~aK時(v)",
1794
- "h": "aK時~K時(v)"
1795
- },
1796
- "Hv": {
1797
- "H": "H時~H時(v)"
1798
- },
1799
- "M": {
1800
- "M": "M月~M月"
1801
- },
1802
- "Md": {
1803
- "d": "MM/dd~MM/dd",
1804
- "M": "MM/dd~MM/dd"
1805
- },
1806
- "MEd": {
1807
- "d": "MM/dd(E)~MM/dd(E)",
1808
- "M": "MM/dd(E)~MM/dd(E)"
1809
- },
1810
- "MMM": {
1811
- "M": "M月~M月"
1812
- },
1813
- "MMMd": {
1814
- "d": "M月d日~d日",
1815
- "M": "M月d日~M月d日"
1816
- },
1817
- "MMMEd": {
1818
- "d": "M月d日(E)~d日(E)",
1819
- "M": "M月d日(E)~M月d日(E)"
1820
- },
1821
- "MMMM": {
1822
- "M": "M月~M月"
1823
- },
1824
- "y": {
1825
- "y": "Gy年~y年"
1826
- },
1827
- "yM": {
1828
- "M": "GGGGGy/MM~y/MM",
1829
- "y": "GGGGGy/MM~y/MM"
1830
- },
1831
- "yMd": {
1832
- "d": "GGGGGy/MM/dd~y/MM/dd",
1833
- "M": "GGGGGy/MM/dd~y/MM/dd",
1834
- "y": "GGGGGy/MM/dd~y/MM/dd"
1835
- },
1836
- "yMEd": {
1837
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
1838
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
1839
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
1840
- },
1841
- "yMMM": {
1842
- "M": "Gy年M月~M月",
1843
- "y": "Gy年M月~y年M月"
1844
- },
1845
- "yMMMd": {
1846
- "d": "Gy年M月d日~d日",
1847
- "M": "Gy年M月d日~M月d日",
1848
- "y": "Gy年M月d日~y年M月d日"
1849
- },
1850
- "yMMMEd": {
1851
- "d": "Gy年M月d日(E)~d日(E)",
1852
- "M": "Gy年M月d日(E)~M月d日(E)",
1853
- "y": "Gy年M月d日(E)~y年M月d日(E)"
1854
- },
1855
- "yMMMM": {
1856
- "M": "Gy年M月~M月",
1857
- "y": "Gy年M月~y年M月"
1858
- }
1859
- }
1860
- },
1861
- "months": {
1862
- "format": {
1863
- "abbreviated": [
1864
- "ムハッラム",
1865
- "サフアル",
1866
- "ラビー・ウル・アウワル",
1867
- "ラビー・ウッ・サーニー",
1868
- "ジュマーダル・アウワル",
1869
- "ジュマーダッサーニー",
1870
- "ラジャブ",
1871
- "シャアバーン",
1872
- "ラマダーン",
1873
- "シャウワール",
1874
- "ズル・カイダ",
1875
- "ズル・ヒッジャ"
1876
- ],
1877
- "narrow": [
1878
- "1",
1879
- "2",
1880
- "3",
1881
- "4",
1882
- "5",
1883
- "6",
1884
- "7",
1885
- "8",
1886
- "9",
1887
- "10",
1888
- "11",
1889
- "12"
1890
- ],
1891
- "wide": [
1892
- "ムハッラム",
1893
- "サフアル",
1894
- "ラビー・ウル・アウワル",
1895
- "ラビー・ウッ・サーニー",
1896
- "ジュマーダル・アウワル",
1897
- "ジュマーダッサーニー",
1898
- "ラジャブ",
1899
- "シャアバーン",
1900
- "ラマダーン",
1901
- "シャウワール",
1902
- "ズル・カイダ",
1903
- "ズル・ヒッジャ"
1904
- ]
1905
- },
1906
- "stand-alone": {
1907
- "abbreviated": [
1908
- "ムハッラム",
1909
- "サフアル",
1910
- "ラビー・ウル・アウワル",
1911
- "ラビー・ウッ・サーニー",
1912
- "ジュマーダル・アウワル",
1913
- "ジュマーダッサーニー",
1914
- "ラジャブ",
1915
- "シャアバーン",
1916
- "ラマダーン",
1917
- "シャウワール",
1918
- "ズル・カイダ",
1919
- "ズル・ヒッジャ"
1920
- ],
1921
- "narrow": [
1922
- "1",
1923
- "2",
1924
- "3",
1925
- "4",
1926
- "5",
1927
- "6",
1928
- "7",
1929
- "8",
1930
- "9",
1931
- "10",
1932
- "11",
1933
- "12"
1934
- ],
1935
- "wide": [
1936
- "ムハッラム",
1937
- "サフアル",
1938
- "ラビー・ウル・アウワル",
1939
- "ラビー・ウッ・サーニー",
1940
- "ジュマーダル・アウワル",
1941
- "ジュマーダッサーニー",
1942
- "ラジャブ",
1943
- "シャアバーン",
1944
- "ラマダーン",
1945
- "シャウワール",
1946
- "ズル・カイダ",
1947
- "ズル・ヒッジャ"
1948
- ]
1949
- }
1950
- },
1951
- "days": {
1952
- "format": {
1953
- "abbreviated": [
1954
- "日",
1955
- "月",
1956
- "火",
1957
- "水",
1958
- "木",
1959
- "金",
1960
- "土"
1961
- ],
1962
- "narrow": [
1963
- "日",
1964
- "月",
1965
- "火",
1966
- "水",
1967
- "木",
1968
- "金",
1969
- "土"
1970
- ],
1971
- "short": [
1972
- "日",
1973
- "月",
1974
- "火",
1975
- "水",
1976
- "木",
1977
- "金",
1978
- "土"
1979
- ],
1980
- "wide": [
1981
- "日曜日",
1982
- "月曜日",
1983
- "火曜日",
1984
- "水曜日",
1985
- "木曜日",
1986
- "金曜日",
1987
- "土曜日"
1988
- ]
1989
- },
1990
- "stand-alone": {
1991
- "abbreviated": [
1992
- "日",
1993
- "月",
1994
- "火",
1995
- "水",
1996
- "木",
1997
- "金",
1998
- "土"
1999
- ],
2000
- "narrow": [
2001
- "日",
2002
- "月",
2003
- "火",
2004
- "水",
2005
- "木",
2006
- "金",
2007
- "土"
2008
- ],
2009
- "short": [
2010
- "日",
2011
- "月",
2012
- "火",
2013
- "水",
2014
- "木",
2015
- "金",
2016
- "土"
2017
- ],
2018
- "wide": [
2019
- "日曜日",
2020
- "月曜日",
2021
- "火曜日",
2022
- "水曜日",
2023
- "木曜日",
2024
- "金曜日",
2025
- "土曜日"
2026
- ]
2027
- }
2028
- },
2029
- "quarters": {
2030
- "format": {
2031
- "abbreviated": [
2032
- "Q1",
2033
- "Q2",
2034
- "Q3",
2035
- "Q4"
2036
- ],
2037
- "narrow": [
2038
- "1",
2039
- "2",
2040
- "3",
2041
- "4"
2042
- ],
2043
- "wide": [
2044
- "第1四半期",
2045
- "第2四半期",
2046
- "第3四半期",
2047
- "第4四半期"
2048
- ]
2049
- },
2050
- "stand-alone": {
2051
- "abbreviated": [
2052
- "Q1",
2053
- "Q2",
2054
- "Q3",
2055
- "Q4"
2056
- ],
2057
- "narrow": [
2058
- "1",
2059
- "2",
2060
- "3",
2061
- "4"
2062
- ],
2063
- "wide": [
2064
- "第1四半期",
2065
- "第2四半期",
2066
- "第3四半期",
2067
- "第4四半期"
2068
- ]
2069
- }
2070
- },
2071
- "dayPeriods": {
2072
- "format": {
2073
- "abbreviated": [
2074
- "午前",
2075
- "午後"
2076
- ],
2077
- "narrow": [
2078
- "午前",
2079
- "午後"
2080
- ],
2081
- "wide": [
2082
- "午前",
2083
- "午後"
2084
- ]
2085
- },
2086
- "stand-alone": {
2087
- "abbreviated": [
2088
- "午前",
2089
- "午後"
2090
- ],
2091
- "narrow": [
2092
- "午前",
2093
- "午後"
2094
- ],
2095
- "wide": [
2096
- "午前",
2097
- "午後"
2098
- ]
2099
- }
2100
- },
2101
- "era-wide": {
2102
- "0": "AH"
2103
- },
2104
- "era-abbreviated": {
2105
- "0": "AH"
2106
- },
2107
- "era-narrow": {
2108
- "0": "AH"
2109
- }
2110
- },
2111
- "ca-japanese": {
2112
- "dateFormats": {
2113
- "full": "Gy年M月d日EEEE",
2114
- "long": "Gy年M月d日",
2115
- "medium": "Gy年M月d日",
2116
- "short": "GGGGGy/M/d"
2117
- },
2118
- "timeFormats": {
2119
- "full": "H時mm分ss秒 zzzz",
2120
- "long": "H:mm:ss z",
2121
- "medium": "H:mm:ss",
2122
- "short": "H:mm"
2123
- },
2124
- "dateTimeFormats": {
2125
- "full": "{1} {0}",
2126
- "long": "{1} {0}",
2127
- "medium": "{1} {0}",
2128
- "short": "{1} {0}",
2129
- "availableFormats": {
2130
- "Bh": "BK時",
2131
- "Bhm": "BK:mm",
2132
- "Bhms": "BK:mm:ss",
2133
- "d": "d日",
2134
- "E": "ccc",
2135
- "EBhm": "BK:mm (E)",
2136
- "EBhms": "BK:mm:ss (E)",
2137
- "Ed": "d日(E)",
2138
- "EEEEd": "d日EEEE",
2139
- "Ehm": "aK:mm (E)",
2140
- "EHm": "H:mm (E)",
2141
- "Ehms": "aK:mm:ss (E)",
2142
- "EHms": "H:mm:ss (E)",
2143
- "Gy": "Gy年",
2144
- "GyMMM": "Gy年M月",
2145
- "GyMMMd": "Gy年M月d日",
2146
- "GyMMMEd": "Gy年M月d日(E)",
2147
- "GyMMMEEEEd": "Gy年M月d日EEEE",
2148
- "h": "aK時",
2149
- "H": "H時",
2150
- "hm": "aK:mm",
2151
- "Hm": "H:mm",
2152
- "hms": "aK:mm:ss",
2153
- "Hms": "H:mm:ss",
2154
- "M": "M月",
2155
- "Md": "M/d",
2156
- "MEd": "M/d(E)",
2157
- "MEEEEd": "M/dEEEE",
2158
- "MMM": "M月",
2159
- "MMMd": "M月d日",
2160
- "MMMEd": "M月d日(E)",
2161
- "MMMEEEEd": "M月d日EEEE",
2162
- "MMMMd": "M月d日",
2163
- "ms": "mm:ss",
2164
- "y": "Gy年",
2165
- "yyyy": "Gy年",
2166
- "yyyyM": "GGGGGy/M",
2167
- "yyyyMd": "GGGGGy/M/d",
2168
- "yyyyMEd": "GGGGGy/M/d(E)",
2169
- "yyyyMEEEEd": "GGGGGy/M/dEEEE",
2170
- "yyyyMM": "GGGGGy/MM",
2171
- "yyyyMMM": "Gy年M月",
2172
- "yyyyMMMd": "Gy年M月d日",
2173
- "yyyyMMMEd": "Gy年M月d日(E)",
2174
- "yyyyMMMEEEEd": "Gy年M月d日EEEE",
2175
- "yyyyMMMM": "Gy年M月",
2176
- "yyyyQQQ": "Gy/QQQ",
2177
- "yyyyQQQQ": "Gy年QQQQ"
2178
- },
2179
- "appendItems": {
2180
- "Day": "{0} ({2}: {1})",
2181
- "Day-Of-Week": "{0} {1}",
2182
- "Era": "{1} {0}",
2183
- "Hour": "{0} ({2}: {1})",
2184
- "Minute": "{0} ({2}: {1})",
2185
- "Month": "{0} ({2}: {1})",
2186
- "Quarter": "{0} ({2}: {1})",
2187
- "Second": "{0} ({2}: {1})",
2188
- "Timezone": "{0} {1}",
2189
- "Week": "{0} ({2}: {1})",
2190
- "Year": "{1} {0}"
2191
- },
2192
- "intervalFormats": {
2193
- "intervalFormatFallback": "{0}~{1}",
2194
- "Bh": {
2195
- "B": "BK時~BK時",
2196
- "h": "BK時~K時"
2197
- },
2198
- "Bhm": {
2199
- "B": "BK:mm~BK:mm",
2200
- "h": "BK:mm~K:mm",
2201
- "m": "BK:mm~K:mm"
2202
- },
2203
- "d": {
2204
- "d": "d日~d日"
2205
- },
2206
- "GGGGGyM": {
2207
- "G": "GGGGGy/MM~GGGGGy/MM",
2208
- "M": "GGGGGy/MM~y/MM",
2209
- "y": "GGGGGy/MM~y/MM"
2210
- },
2211
- "GGGGGyMd": {
2212
- "d": "GGGGGy/MM/dd~y/MM/dd",
2213
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
2214
- "M": "GGGGGy/MM/dd~y/MM/dd",
2215
- "y": "GGGGGy/MM/dd~y/MM/dd"
2216
- },
2217
- "GGGGGyMEd": {
2218
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2219
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
2220
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2221
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
2222
- },
2223
- "Gy": {
2224
- "G": "Gy年~Gy年",
2225
- "y": "Gy年~y年"
2226
- },
2227
- "GyM": {
2228
- "G": "GGGGGy/MM~GGGGGy/MM",
2229
- "M": "GGGGGy/MM~y/MM",
2230
- "y": "GGGGGy/MM~y/MM"
2231
- },
2232
- "GyMd": {
2233
- "d": "GGGGGy/MM/dd~y/MM/dd",
2234
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
2235
- "M": "GGGGGy/MM/dd~y/MM/dd",
2236
- "y": "GGGGGy/MM/dd~y/MM/dd"
2237
- },
2238
- "GyMEd": {
2239
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2240
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
2241
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2242
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
2243
- },
2244
- "GyMMM": {
2245
- "G": "Gy年M月~Gy年M月",
2246
- "M": "Gy年M月~M月",
2247
- "y": "Gy年M月~y年M月"
2248
- },
2249
- "GyMMMd": {
2250
- "d": "Gy年M月d日~d日",
2251
- "G": "Gy年M月d日~Gy年M月d日",
2252
- "M": "Gy年M月d日~M月d日",
2253
- "y": "Gy年M月d日~y年M月d日"
2254
- },
2255
- "GyMMMEd": {
2256
- "d": "Gy年M月d日(E)~d日(E)",
2257
- "G": "Gy年M月d日(E)~Gy年M月d日(E)",
2258
- "M": "Gy年M月d日(E)~M月d日(E)",
2259
- "y": "Gy年M月d日(E)~y年M月d日(E)"
2260
- },
2261
- "h": {
2262
- "a": "aK時~aK時",
2263
- "h": "aK時~K時"
2264
- },
2265
- "H": {
2266
- "H": "H時~H時"
2267
- },
2268
- "hm": {
2269
- "a": "aK時mm分~aK時mm分",
2270
- "h": "aK時mm分~K時mm分",
2271
- "m": "aK時mm分~K時mm分"
2272
- },
2273
- "Hm": {
2274
- "H": "H時mm分~H時mm分",
2275
- "m": "H時mm分~H時mm分"
2276
- },
2277
- "hmv": {
2278
- "a": "aK時mm分~aK時mm分(v)",
2279
- "h": "aK時mm分~K時mm分(v)",
2280
- "m": "aK時mm分~K時mm分(v)"
2281
- },
2282
- "Hmv": {
2283
- "H": "H時mm分~H時mm分(v)",
2284
- "m": "H時mm分~H時mm分(v)"
2285
- },
2286
- "hv": {
2287
- "a": "aK時~aK時(v)",
2288
- "h": "aK時~K時(v)"
2289
- },
2290
- "Hv": {
2291
- "H": "H時~H時(v)"
2292
- },
2293
- "M": {
2294
- "M": "M月~M月"
2295
- },
2296
- "Md": {
2297
- "d": "MM/dd~MM/dd",
2298
- "M": "MM/dd~MM/dd"
2299
- },
2300
- "MEd": {
2301
- "d": "MM/dd(E)~MM/dd(E)",
2302
- "M": "MM/dd(E)~MM/dd(E)"
2303
- },
2304
- "MMM": {
2305
- "M": "M月~M月"
2306
- },
2307
- "MMMd": {
2308
- "d": "M月d日~d日",
2309
- "M": "M月d日~M月d日"
2310
- },
2311
- "MMMEd": {
2312
- "d": "M月d日(E)~d日(E)",
2313
- "M": "M月d日(E)~M月d日(E)"
2314
- },
2315
- "MMMM": {
2316
- "M": "M月~M月"
2317
- },
2318
- "y": {
2319
- "y": "Gy年~y年",
2320
- "G": "Gy年~Gy年"
2321
- },
2322
- "yM": {
2323
- "M": "GGGGGy/MM~y/MM",
2324
- "y": "GGGGGy/MM~y/MM",
2325
- "G": "GGGGGy/MM~GGGGGy/MM"
2326
- },
2327
- "yMd": {
2328
- "d": "GGGGGy/MM/dd~y/MM/dd",
2329
- "M": "GGGGGy/MM/dd~y/MM/dd",
2330
- "y": "GGGGGy/MM/dd~y/MM/dd",
2331
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd"
2332
- },
2333
- "yMEd": {
2334
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2335
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2336
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2337
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)"
2338
- },
2339
- "yMMM": {
2340
- "M": "Gy年M月~M月",
2341
- "y": "Gy年M月~y年M月",
2342
- "G": "Gy年M月~Gy年M月"
2343
- },
2344
- "yMMMd": {
2345
- "d": "Gy年M月d日~d日",
2346
- "M": "Gy年M月d日~M月d日",
2347
- "y": "Gy年M月d日~y年M月d日",
2348
- "G": "Gy年M月d日~Gy年M月d日"
2349
- },
2350
- "yMMMEd": {
2351
- "d": "Gy年M月d日(E)~d日(E)",
2352
- "M": "Gy年M月d日(E)~M月d日(E)",
2353
- "y": "Gy年M月d日(E)~y年M月d日(E)",
2354
- "G": "Gy年M月d日(E)~Gy年M月d日(E)"
2355
- },
2356
- "yMMMM": {
2357
- "M": "Gy年M月~M月",
2358
- "y": "Gy年M月~y年M月",
2359
- "G": "Gy年M月~Gy年M月"
2360
- }
2361
- }
2362
- },
2363
- "months": {
2364
- "format": {
2365
- "abbreviated": [
2366
- "1月",
2367
- "2月",
2368
- "3月",
2369
- "4月",
2370
- "5月",
2371
- "6月",
2372
- "7月",
2373
- "8月",
2374
- "9月",
2375
- "10月",
2376
- "11月",
2377
- "12月"
2378
- ],
2379
- "narrow": [
2380
- "1",
2381
- "2",
2382
- "3",
2383
- "4",
2384
- "5",
2385
- "6",
2386
- "7",
2387
- "8",
2388
- "9",
2389
- "10",
2390
- "11",
2391
- "12"
2392
- ],
2393
- "wide": [
2394
- "1月",
2395
- "2月",
2396
- "3月",
2397
- "4月",
2398
- "5月",
2399
- "6月",
2400
- "7月",
2401
- "8月",
2402
- "9月",
2403
- "10月",
2404
- "11月",
2405
- "12月"
2406
- ]
2407
- },
2408
- "stand-alone": {
2409
- "abbreviated": [
2410
- "1月",
2411
- "2月",
2412
- "3月",
2413
- "4月",
2414
- "5月",
2415
- "6月",
2416
- "7月",
2417
- "8月",
2418
- "9月",
2419
- "10月",
2420
- "11月",
2421
- "12月"
2422
- ],
2423
- "narrow": [
2424
- "1",
2425
- "2",
2426
- "3",
2427
- "4",
2428
- "5",
2429
- "6",
2430
- "7",
2431
- "8",
2432
- "9",
2433
- "10",
2434
- "11",
2435
- "12"
2436
- ],
2437
- "wide": [
2438
- "1月",
2439
- "2月",
2440
- "3月",
2441
- "4月",
2442
- "5月",
2443
- "6月",
2444
- "7月",
2445
- "8月",
2446
- "9月",
2447
- "10月",
2448
- "11月",
2449
- "12月"
2450
- ]
2451
- }
2452
- },
2453
- "days": {
2454
- "format": {
2455
- "abbreviated": [
2456
- "日",
2457
- "月",
2458
- "火",
2459
- "水",
2460
- "木",
2461
- "金",
2462
- "土"
2463
- ],
2464
- "narrow": [
2465
- "日",
2466
- "月",
2467
- "火",
2468
- "水",
2469
- "木",
2470
- "金",
2471
- "土"
2472
- ],
2473
- "short": [
2474
- "日",
2475
- "月",
2476
- "火",
2477
- "水",
2478
- "木",
2479
- "金",
2480
- "土"
2481
- ],
2482
- "wide": [
2483
- "日曜日",
2484
- "月曜日",
2485
- "火曜日",
2486
- "水曜日",
2487
- "木曜日",
2488
- "金曜日",
2489
- "土曜日"
2490
- ]
2491
- },
2492
- "stand-alone": {
2493
- "abbreviated": [
2494
- "日",
2495
- "月",
2496
- "火",
2497
- "水",
2498
- "木",
2499
- "金",
2500
- "土"
2501
- ],
2502
- "narrow": [
2503
- "日",
2504
- "月",
2505
- "火",
2506
- "水",
2507
- "木",
2508
- "金",
2509
- "土"
2510
- ],
2511
- "short": [
2512
- "日",
2513
- "月",
2514
- "火",
2515
- "水",
2516
- "木",
2517
- "金",
2518
- "土"
2519
- ],
2520
- "wide": [
2521
- "日曜日",
2522
- "月曜日",
2523
- "火曜日",
2524
- "水曜日",
2525
- "木曜日",
2526
- "金曜日",
2527
- "土曜日"
2528
- ]
2529
- }
2530
- },
2531
- "quarters": {
2532
- "format": {
2533
- "abbreviated": [
2534
- "Q1",
2535
- "Q2",
2536
- "Q3",
2537
- "Q4"
2538
- ],
2539
- "narrow": [
2540
- "1",
2541
- "2",
2542
- "3",
2543
- "4"
2544
- ],
2545
- "wide": [
2546
- "第1四半期",
2547
- "第2四半期",
2548
- "第3四半期",
2549
- "第4四半期"
2550
- ]
2551
- },
2552
- "stand-alone": {
2553
- "abbreviated": [
2554
- "Q1",
2555
- "Q2",
2556
- "Q3",
2557
- "Q4"
2558
- ],
2559
- "narrow": [
2560
- "1",
2561
- "2",
2562
- "3",
2563
- "4"
2564
- ],
2565
- "wide": [
2566
- "第1四半期",
2567
- "第2四半期",
2568
- "第3四半期",
2569
- "第4四半期"
2570
- ]
2571
- }
2572
- },
2573
- "dayPeriods": {
2574
- "format": {
2575
- "abbreviated": [
2576
- "午前",
2577
- "午後"
2578
- ],
2579
- "narrow": [
2580
- "午前",
2581
- "午後"
2582
- ],
2583
- "wide": [
2584
- "午前",
2585
- "午後"
2586
- ]
2587
- },
2588
- "stand-alone": {
2589
- "abbreviated": [
2590
- "午前",
2591
- "午後"
2592
- ],
2593
- "narrow": [
2594
- "午前",
2595
- "午後"
2596
- ],
2597
- "wide": [
2598
- "午前",
2599
- "午後"
2600
- ]
2601
- }
2602
- },
2603
- "era-wide": {
2604
- "232": "明治",
2605
- "233": "大正",
2606
- "234": "昭和",
2607
- "235": "平成",
2608
- "236": "令和"
2609
- },
2610
- "era-abbreviated": {
2611
- "232": "明治",
2612
- "233": "大正",
2613
- "234": "昭和",
2614
- "235": "平成",
2615
- "236": "令和"
2616
- },
2617
- "era-narrow": {
2618
- "232": "M",
2619
- "233": "T",
2620
- "234": "S",
2621
- "235": "H",
2622
- "236": "R"
2623
- }
2624
- },
2625
- "ca-persian": {
2626
- "dateFormats": {
2627
- "full": "Gy年M月d日(EEEE)",
2628
- "long": "Gy年M月d日",
2629
- "medium": "GGGGGy/MM/dd",
2630
- "short": "GGGGGy/M/d"
2631
- },
2632
- "timeFormats": {
2633
- "full": "H時mm分ss秒 zzzz",
2634
- "long": "H:mm:ss z",
2635
- "medium": "H:mm:ss",
2636
- "short": "H:mm"
2637
- },
2638
- "dateTimeFormats": {
2639
- "full": "{1} {0}",
2640
- "long": "{1} {0}",
2641
- "medium": "{1} {0}",
2642
- "short": "{1} {0}",
2643
- "availableFormats": {
2644
- "Bh": "BK時",
2645
- "Bhm": "BK:mm",
2646
- "Bhms": "BK:mm:ss",
2647
- "d": "d日",
2648
- "E": "ccc",
2649
- "EBhm": "BK:mm (E)",
2650
- "EBhms": "BK:mm:ss (E)",
2651
- "Ed": "d日(E)",
2652
- "EEEEd": "d日(EEEE)",
2653
- "Ehm": "aK:mm (E)",
2654
- "EHm": "H:mm (E)",
2655
- "Ehms": "aK:mm:ss (E)",
2656
- "EHms": "H:mm:ss (E)",
2657
- "Gy": "Gy年",
2658
- "GyMMM": "Gy年M月",
2659
- "GyMMMd": "Gy年M月d日",
2660
- "GyMMMEd": "Gy年M月d日(E)",
2661
- "GyMMMEEEEd": "Gy年M月d日(EEEE)",
2662
- "h": "aK時",
2663
- "H": "H時",
2664
- "hm": "aK:mm",
2665
- "Hm": "H:mm",
2666
- "hms": "aK:mm:ss",
2667
- "Hms": "H:mm:ss",
2668
- "M": "M月",
2669
- "Md": "M/d",
2670
- "MEd": "M/d(E)",
2671
- "MEEEEd": "M/d(EEEE)",
2672
- "MMM": "M月",
2673
- "MMMd": "M月d日",
2674
- "MMMEd": "M月d日(E)",
2675
- "MMMEEEEd": "M月d日(EEEE)",
2676
- "MMMMd": "M月d日",
2677
- "ms": "mm:ss",
2678
- "y": "Gy年",
2679
- "yyyy": "Gy年",
2680
- "yyyyM": "GGGGGy/M",
2681
- "yyyyMd": "GGGGGy/M/d",
2682
- "yyyyMEd": "GGGGGy/M/d(E)",
2683
- "yyyyMEEEEd": "GGGGGy/M/d(EEEE)",
2684
- "yyyyMMM": "Gy年M月",
2685
- "yyyyMMMd": "Gy年M月d日",
2686
- "yyyyMMMEd": "Gy年M月d日(E)",
2687
- "yyyyMMMEEEEd": "Gy年M月d日(EEEE)",
2688
- "yyyyMMMM": "Gy年M月",
2689
- "yyyyQQQ": "Gy/QQQ",
2690
- "yyyyQQQQ": "Gy年QQQQ"
2691
- },
2692
- "appendItems": {
2693
- "Day": "{0} ({2}: {1})",
2694
- "Day-Of-Week": "{0} {1}",
2695
- "Era": "{1} {0}",
2696
- "Hour": "{0} ({2}: {1})",
2697
- "Minute": "{0} ({2}: {1})",
2698
- "Month": "{0} ({2}: {1})",
2699
- "Quarter": "{0} ({2}: {1})",
2700
- "Second": "{0} ({2}: {1})",
2701
- "Timezone": "{0} {1}",
2702
- "Week": "{0} ({2}: {1})",
2703
- "Year": "{1} {0}"
2704
- },
2705
- "intervalFormats": {
2706
- "intervalFormatFallback": "{0}~{1}",
2707
- "Bh": {
2708
- "B": "BK時~BK時",
2709
- "h": "BK時~K時"
2710
- },
2711
- "Bhm": {
2712
- "B": "BK:mm~BK:mm",
2713
- "h": "BK:mm~K:mm",
2714
- "m": "BK:mm~K:mm"
2715
- },
2716
- "d": {
2717
- "d": "d日~d日"
2718
- },
2719
- "GGGGGyM": {
2720
- "G": "GGGGGy/MM~GGGGGy/MM",
2721
- "M": "GGGGGy/MM~y/MM",
2722
- "y": "GGGGGy/MM~y/MM"
2723
- },
2724
- "GGGGGyMd": {
2725
- "d": "GGGGGy/MM/dd~y/MM/dd",
2726
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
2727
- "M": "GGGGGy/MM/dd~y/MM/dd",
2728
- "y": "GGGGGy/MM/dd~y/MM/dd"
2729
- },
2730
- "GGGGGyMEd": {
2731
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2732
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
2733
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2734
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
2735
- },
2736
- "Gy": {
2737
- "G": "Gy年~Gy年",
2738
- "y": "Gy年~y年"
2739
- },
2740
- "GyM": {
2741
- "G": "GGGGGy/MM~GGGGGy/MM",
2742
- "M": "GGGGGy/MM~y/MM",
2743
- "y": "GGGGGy/MM~y/MM"
2744
- },
2745
- "GyMd": {
2746
- "d": "GGGGGy/MM/dd~y/MM/dd",
2747
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
2748
- "M": "GGGGGy/MM/dd~y/MM/dd",
2749
- "y": "GGGGGy/MM/dd~y/MM/dd"
2750
- },
2751
- "GyMEd": {
2752
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2753
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
2754
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2755
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
2756
- },
2757
- "GyMMM": {
2758
- "G": "Gy年M月~Gy年M月",
2759
- "M": "Gy年M月~M月",
2760
- "y": "Gy年M月~y年M月"
2761
- },
2762
- "GyMMMd": {
2763
- "d": "Gy年M月d日~d日",
2764
- "G": "Gy年M月d日~Gy年M月d日",
2765
- "M": "Gy年M月d日~M月d日",
2766
- "y": "Gy年M月d日~y年M月d日"
2767
- },
2768
- "GyMMMEd": {
2769
- "d": "Gy年M月d日(E)~d日(E)",
2770
- "G": "Gy年M月d日(E)~Gy年M月d日(E)",
2771
- "M": "Gy年M月d日(E)~M月d日(E)",
2772
- "y": "Gy年M月d日(E)~y年M月d日(E)"
2773
- },
2774
- "h": {
2775
- "a": "aK時~aK時",
2776
- "h": "aK時~K時"
2777
- },
2778
- "H": {
2779
- "H": "H時~H時"
2780
- },
2781
- "hm": {
2782
- "a": "aK時mm分~aK時mm分",
2783
- "h": "aK時mm分~K時mm分",
2784
- "m": "aK時mm分~K時mm分"
2785
- },
2786
- "Hm": {
2787
- "H": "H時mm分~H時mm分",
2788
- "m": "H時mm分~H時mm分"
2789
- },
2790
- "hmv": {
2791
- "a": "aK時mm分~aK時mm分(v)",
2792
- "h": "aK時mm分~K時mm分(v)",
2793
- "m": "aK時mm分~K時mm分(v)"
2794
- },
2795
- "Hmv": {
2796
- "H": "H時mm分~H時mm分(v)",
2797
- "m": "H時mm分~H時mm分(v)"
2798
- },
2799
- "hv": {
2800
- "a": "aK時~aK時(v)",
2801
- "h": "aK時~K時(v)"
2802
- },
2803
- "Hv": {
2804
- "H": "H時~H時(v)"
2805
- },
2806
- "M": {
2807
- "M": "M月~M月"
2808
- },
2809
- "Md": {
2810
- "d": "MM/dd~MM/dd",
2811
- "M": "MM/dd~MM/dd"
2812
- },
2813
- "MEd": {
2814
- "d": "MM/dd(E)~MM/dd(E)",
2815
- "M": "MM/dd(E)~MM/dd(E)"
2816
- },
2817
- "MMM": {
2818
- "M": "M月~M月"
2819
- },
2820
- "MMMd": {
2821
- "d": "M月d日~d日",
2822
- "M": "M月d日~M月d日"
2823
- },
2824
- "MMMEd": {
2825
- "d": "M月d日(E)~d日(E)",
2826
- "M": "M月d日(E)~M月d日(E)"
2827
- },
2828
- "MMMM": {
2829
- "M": "M月~M月"
2830
- },
2831
- "y": {
2832
- "y": "Gy年~y年"
2833
- },
2834
- "yM": {
2835
- "M": "GGGGGy/MM~y/MM",
2836
- "y": "GGGGGy/MM~y/MM"
2837
- },
2838
- "yMd": {
2839
- "d": "GGGGGy/MM/dd~y/MM/dd",
2840
- "M": "GGGGGy/MM/dd~y/MM/dd",
2841
- "y": "GGGGGy/MM/dd~y/MM/dd"
2842
- },
2843
- "yMEd": {
2844
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2845
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
2846
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
2847
- },
2848
- "yMMM": {
2849
- "M": "Gy年M月~M月",
2850
- "y": "Gy年M月~y年M月"
2851
- },
2852
- "yMMMd": {
2853
- "d": "Gy年M月d日~d日",
2854
- "M": "Gy年M月d日~M月d日",
2855
- "y": "Gy年M月d日~y年M月d日"
2856
- },
2857
- "yMMMEd": {
2858
- "d": "Gy年M月d日(E)~d日(E)",
2859
- "M": "Gy年M月d日(E)~M月d日(E)",
2860
- "y": "Gy年M月d日(E)~y年M月d日(E)"
2861
- },
2862
- "yMMMM": {
2863
- "M": "Gy年M月~M月",
2864
- "y": "Gy年M月~y年M月"
2865
- }
2866
- }
2867
- },
2868
- "months": {
2869
- "format": {
2870
- "abbreviated": [
2871
- "ファルヴァルディーン",
2872
- "オルディーベヘシュト",
2873
- "ホルダード",
2874
- "ティール",
2875
- "モルダード",
2876
- "シャハリーヴァル",
2877
- "メフル",
2878
- "アーバーン",
2879
- "アーザル",
2880
- "デイ",
2881
- "バフマン",
2882
- "エスファンド"
2883
- ],
2884
- "narrow": [
2885
- "1",
2886
- "2",
2887
- "3",
2888
- "4",
2889
- "5",
2890
- "6",
2891
- "7",
2892
- "8",
2893
- "9",
2894
- "10",
2895
- "11",
2896
- "12"
2897
- ],
2898
- "wide": [
2899
- "ファルヴァルディーン",
2900
- "オルディーベヘシュト",
2901
- "ホルダード",
2902
- "ティール",
2903
- "モルダード",
2904
- "シャハリーヴァル",
2905
- "メフル",
2906
- "アーバーン",
2907
- "アーザル",
2908
- "デイ",
2909
- "バフマン",
2910
- "エスファンド"
2911
- ]
2912
- },
2913
- "stand-alone": {
2914
- "abbreviated": [
2915
- "ファルヴァルディーン",
2916
- "オルディーベヘシュト",
2917
- "ホルダード",
2918
- "ティール",
2919
- "モルダード",
2920
- "シャハリーヴァル",
2921
- "メフル",
2922
- "アーバーン",
2923
- "アーザル",
2924
- "デイ",
2925
- "バフマン",
2926
- "エスファンド"
2927
- ],
2928
- "narrow": [
2929
- "1",
2930
- "2",
2931
- "3",
2932
- "4",
2933
- "5",
2934
- "6",
2935
- "7",
2936
- "8",
2937
- "9",
2938
- "10",
2939
- "11",
2940
- "12"
2941
- ],
2942
- "wide": [
2943
- "ファルヴァルディーン",
2944
- "オルディーベヘシュト",
2945
- "ホルダード",
2946
- "ティール",
2947
- "モルダード",
2948
- "シャハリーヴァル",
2949
- "メフル",
2950
- "アーバーン",
2951
- "アーザル",
2952
- "デイ",
2953
- "バフマン",
2954
- "エスファンド"
2955
- ]
2956
- }
2957
- },
2958
- "days": {
2959
- "format": {
2960
- "abbreviated": [
2961
- "日",
2962
- "月",
2963
- "火",
2964
- "水",
2965
- "木",
2966
- "金",
2967
- "土"
2968
- ],
2969
- "narrow": [
2970
- "日",
2971
- "月",
2972
- "火",
2973
- "水",
2974
- "木",
2975
- "金",
2976
- "土"
2977
- ],
2978
- "short": [
2979
- "日",
2980
- "月",
2981
- "火",
2982
- "水",
2983
- "木",
2984
- "金",
2985
- "土"
2986
- ],
2987
- "wide": [
2988
- "日曜日",
2989
- "月曜日",
2990
- "火曜日",
2991
- "水曜日",
2992
- "木曜日",
2993
- "金曜日",
2994
- "土曜日"
2995
- ]
2996
- },
2997
- "stand-alone": {
2998
- "abbreviated": [
2999
- "日",
3000
- "月",
3001
- "火",
3002
- "水",
3003
- "木",
3004
- "金",
3005
- "土"
3006
- ],
3007
- "narrow": [
3008
- "日",
3009
- "月",
3010
- "火",
3011
- "水",
3012
- "木",
3013
- "金",
3014
- "土"
3015
- ],
3016
- "short": [
3017
- "日",
3018
- "月",
3019
- "火",
3020
- "水",
3021
- "木",
3022
- "金",
3023
- "土"
3024
- ],
3025
- "wide": [
3026
- "日曜日",
3027
- "月曜日",
3028
- "火曜日",
3029
- "水曜日",
3030
- "木曜日",
3031
- "金曜日",
3032
- "土曜日"
3033
- ]
3034
- }
3035
- },
3036
- "quarters": {
3037
- "format": {
3038
- "abbreviated": [
3039
- "Q1",
3040
- "Q2",
3041
- "Q3",
3042
- "Q4"
3043
- ],
3044
- "narrow": [
3045
- "1",
3046
- "2",
3047
- "3",
3048
- "4"
3049
- ],
3050
- "wide": [
3051
- "第1四半期",
3052
- "第2四半期",
3053
- "第3四半期",
3054
- "第4四半期"
3055
- ]
3056
- },
3057
- "stand-alone": {
3058
- "abbreviated": [
3059
- "Q1",
3060
- "Q2",
3061
- "Q3",
3062
- "Q4"
3063
- ],
3064
- "narrow": [
3065
- "1",
3066
- "2",
3067
- "3",
3068
- "4"
3069
- ],
3070
- "wide": [
3071
- "第1四半期",
3072
- "第2四半期",
3073
- "第3四半期",
3074
- "第4四半期"
3075
- ]
3076
- }
3077
- },
3078
- "dayPeriods": {
3079
- "format": {
3080
- "abbreviated": [
3081
- "午前",
3082
- "午後"
3083
- ],
3084
- "narrow": [
3085
- "午前",
3086
- "午後"
3087
- ],
3088
- "wide": [
3089
- "午前",
3090
- "午後"
3091
- ]
3092
- },
3093
- "stand-alone": {
3094
- "abbreviated": [
3095
- "午前",
3096
- "午後"
3097
- ],
3098
- "narrow": [
3099
- "午前",
3100
- "午後"
3101
- ],
3102
- "wide": [
3103
- "午前",
3104
- "午後"
3105
- ]
3106
- }
3107
- },
3108
- "era-wide": {
3109
- "0": "AP"
3110
- },
3111
- "era-abbreviated": {
3112
- "0": "AP"
3113
- },
3114
- "era-narrow": {
3115
- "0": "AP"
3116
- }
3117
- },
3118
- "ca-buddhist": {
3119
- "dateFormats": {
3120
- "full": "GGGGy年M月d日EEEE",
3121
- "long": "GGGGy年M月d日",
3122
- "medium": "Gy/MM/dd",
3123
- "short": "Gy/MM/dd"
3124
- },
3125
- "timeFormats": {
3126
- "full": "H時mm分ss秒 zzzz",
3127
- "long": "H:mm:ss z",
3128
- "medium": "H:mm:ss",
3129
- "short": "H:mm"
3130
- },
3131
- "dateTimeFormats": {
3132
- "full": "{1} {0}",
3133
- "long": "{1} {0}",
3134
- "medium": "{1} {0}",
3135
- "short": "{1} {0}",
3136
- "availableFormats": {
3137
- "Bh": "BK時",
3138
- "Bhm": "BK:mm",
3139
- "Bhms": "BK:mm:ss",
3140
- "d": "d日",
3141
- "E": "ccc",
3142
- "EBhm": "BK:mm (E)",
3143
- "EBhms": "BK:mm:ss (E)",
3144
- "Ed": "d日(E)",
3145
- "EEEEd": "d日EEEE",
3146
- "Ehm": "aK:mm (E)",
3147
- "EHm": "H:mm (E)",
3148
- "Ehms": "aK:mm:ss (E)",
3149
- "EHms": "H:mm:ss (E)",
3150
- "Gy": "GGGGy年",
3151
- "GyMd": "GGGGy年M月d日",
3152
- "GyMMM": "GGGGy年M月",
3153
- "GyMMMd": "GGGGy年M月d日",
3154
- "GyMMMEd": "GGGGy年M月d日(E)",
3155
- "GyMMMEEEEd": "GGGGy年M月d日EEEE",
3156
- "h": "aK時",
3157
- "H": "H時",
3158
- "hm": "aK:mm",
3159
- "Hm": "H:mm",
3160
- "hms": "aK:mm:ss",
3161
- "Hms": "H:mm:ss",
3162
- "M": "M月",
3163
- "Md": "M/d",
3164
- "MEd": "M/d(E)",
3165
- "MEEEEd": "M/dEEEE",
3166
- "MMM": "M月",
3167
- "MMMd": "M月d日",
3168
- "MMMEd": "M月d日(E)",
3169
- "MMMEEEEd": "M月d日EEEE",
3170
- "MMMMd": "M月d日",
3171
- "ms": "mm:ss",
3172
- "y": "GGGGy年",
3173
- "yyyy": "GGGGy年",
3174
- "yyyyM": "GGGGy年M月",
3175
- "yyyyMd": "Gy/M/d",
3176
- "yyyyMEd": "GGGGy年M/d(E)",
3177
- "yyyyMEEEEd": "GGGGy年M/dEEEE",
3178
- "yyyyMM": "Gy/MM",
3179
- "yyyyMMM": "GGGGy年M月",
3180
- "yyyyMMMd": "GGGGy年M月d日",
3181
- "yyyyMMMEd": "GGGGy年M月d日(E)",
3182
- "yyyyMMMEEEEd": "GGGGy年M月d日EEEE",
3183
- "yyyyMMMM": "GGGGy年M月",
3184
- "yyyyQQQ": "Gy/QQQ",
3185
- "yyyyQQQQ": "Gy年QQQQ"
3186
- },
3187
- "appendItems": {
3188
- "Day": "{0} ({2}: {1})",
3189
- "Day-Of-Week": "{0} {1}",
3190
- "Era": "{1} {0}",
3191
- "Hour": "{0} ({2}: {1})",
3192
- "Minute": "{0} ({2}: {1})",
3193
- "Month": "{0} ({2}: {1})",
3194
- "Quarter": "{0} ({2}: {1})",
3195
- "Second": "{0} ({2}: {1})",
3196
- "Timezone": "{0} {1}",
3197
- "Week": "{0} ({2}: {1})",
3198
- "Year": "{1} {0}"
3199
- },
3200
- "intervalFormats": {
3201
- "intervalFormatFallback": "{0}~{1}",
3202
- "Bh": {
3203
- "B": "BK時~BK時",
3204
- "h": "BK時~K時"
3205
- },
3206
- "Bhm": {
3207
- "B": "BK:mm~BK:mm",
3208
- "h": "BK:mm~K:mm",
3209
- "m": "BK:mm~K:mm"
3210
- },
3211
- "d": {
3212
- "d": "d日~d日"
3213
- },
3214
- "GGGGGyM": {
3215
- "G": "GGGGGy/MM~GGGGGy/MM",
3216
- "M": "GGGGGy/MM~y/MM",
3217
- "y": "GGGGGy/MM~y/MM"
3218
- },
3219
- "GGGGGyMd": {
3220
- "d": "GGGGGy/MM/dd~y/MM/dd",
3221
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
3222
- "M": "GGGGGy/MM/dd~y/MM/dd",
3223
- "y": "GGGGGy/MM/dd~y/MM/dd"
3224
- },
3225
- "GGGGGyMEd": {
3226
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
3227
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
3228
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
3229
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
3230
- },
3231
- "Gy": {
3232
- "G": "Gy年~Gy年",
3233
- "y": "Gy年~y年"
3234
- },
3235
- "GyM": {
3236
- "G": "GGGGGy/MM~GGGGGy/MM",
3237
- "M": "GGGGGy/MM~y/MM",
3238
- "y": "GGGGGy/MM~y/MM"
3239
- },
3240
- "GyMd": {
3241
- "d": "GGGGGy/MM/dd~y/MM/dd",
3242
- "G": "GGGGGy/MM/dd~GGGGGy/MM/dd",
3243
- "M": "GGGGGy/MM/dd~y/MM/dd",
3244
- "y": "GGGGGy/MM/dd~y/MM/dd"
3245
- },
3246
- "GyMEd": {
3247
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
3248
- "G": "GGGGGy/MM/dd(E)~GGGGGy/MM/dd(E)",
3249
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
3250
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
3251
- },
3252
- "GyMMM": {
3253
- "G": "Gy年M月~Gy年M月",
3254
- "M": "Gy年M月~M月",
3255
- "y": "Gy年M月~y年M月"
3256
- },
3257
- "GyMMMd": {
3258
- "d": "Gy年M月d日~d日",
3259
- "G": "Gy年M月d日~Gy年M月d日",
3260
- "M": "Gy年M月d日~M月d日",
3261
- "y": "Gy年M月d日~y年M月d日"
3262
- },
3263
- "GyMMMEd": {
3264
- "d": "Gy年M月d日(E)~d日(E)",
3265
- "G": "Gy年M月d日(E)~Gy年M月d日(E)",
3266
- "M": "Gy年M月d日(E)~M月d日(E)",
3267
- "y": "Gy年M月d日(E)~y年M月d日(E)"
3268
- },
3269
- "h": {
3270
- "a": "aK時~aK時",
3271
- "h": "aK時~K時"
3272
- },
3273
- "H": {
3274
- "H": "H時~H時"
3275
- },
3276
- "hm": {
3277
- "a": "aK時mm分~aK時mm分",
3278
- "h": "aK時mm分~K時mm分",
3279
- "m": "aK時mm分~K時mm分"
3280
- },
3281
- "Hm": {
3282
- "H": "H時mm分~H時mm分",
3283
- "m": "H時mm分~H時mm分"
3284
- },
3285
- "hmv": {
3286
- "a": "aK時mm分~aK時mm分(v)",
3287
- "h": "aK時mm分~K時mm分(v)",
3288
- "m": "aK時mm分~K時mm分(v)"
3289
- },
3290
- "Hmv": {
3291
- "H": "H時mm分~H時mm分(v)",
3292
- "m": "H時mm分~H時mm分(v)"
3293
- },
3294
- "hv": {
3295
- "a": "aK時~aK時(v)",
3296
- "h": "aK時~K時(v)"
3297
- },
3298
- "Hv": {
3299
- "H": "H時~H時(v)"
3300
- },
3301
- "M": {
3302
- "M": "M月~M月"
3303
- },
3304
- "Md": {
3305
- "d": "MM/dd~MM/dd",
3306
- "M": "MM/dd~MM/dd"
3307
- },
3308
- "MEd": {
3309
- "d": "MM/dd(E)~MM/dd(E)",
3310
- "M": "MM/dd(E)~MM/dd(E)"
3311
- },
3312
- "MMM": {
3313
- "M": "M月~M月"
3314
- },
3315
- "MMMd": {
3316
- "d": "M月d日~d日",
3317
- "M": "M月d日~M月d日"
3318
- },
3319
- "MMMEd": {
3320
- "d": "M月d日(E)~d日(E)",
3321
- "M": "M月d日(E)~M月d日(E)"
3322
- },
3323
- "MMMM": {
3324
- "M": "M月~M月"
3325
- },
3326
- "y": {
3327
- "y": "Gy年~y年"
3328
- },
3329
- "yM": {
3330
- "M": "GGGGGy/MM~y/MM",
3331
- "y": "GGGGGy/MM~y/MM"
3332
- },
3333
- "yMd": {
3334
- "d": "GGGGGy/MM/dd~y/MM/dd",
3335
- "M": "GGGGGy/MM/dd~y/MM/dd",
3336
- "y": "GGGGGy/MM/dd~y/MM/dd"
3337
- },
3338
- "yMEd": {
3339
- "d": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
3340
- "M": "GGGGGy/MM/dd(E)~y/MM/dd(E)",
3341
- "y": "GGGGGy/MM/dd(E)~y/MM/dd(E)"
3342
- },
3343
- "yMMM": {
3344
- "M": "Gy年M月~M月",
3345
- "y": "Gy年M月~y年M月"
3346
- },
3347
- "yMMMd": {
3348
- "d": "Gy年M月d日~d日",
3349
- "M": "Gy年M月d日~M月d日",
3350
- "y": "Gy年M月d日~y年M月d日"
3351
- },
3352
- "yMMMEd": {
3353
- "d": "Gy年M月d日(E)~d日(E)",
3354
- "M": "Gy年M月d日(E)~M月d日(E)",
3355
- "y": "Gy年M月d日(E)~y年M月d日(E)"
3356
- },
3357
- "yMMMM": {
3358
- "M": "Gy年M月~M月",
3359
- "y": "Gy年M月~y年M月"
3360
- }
3361
- }
3362
- },
3363
- "months": {
3364
- "format": {
3365
- "abbreviated": [
3366
- "1月",
3367
- "2月",
3368
- "3月",
3369
- "4月",
3370
- "5月",
3371
- "6月",
3372
- "7月",
3373
- "8月",
3374
- "9月",
3375
- "10月",
3376
- "11月",
3377
- "12月"
3378
- ],
3379
- "narrow": [
3380
- "1",
3381
- "2",
3382
- "3",
3383
- "4",
3384
- "5",
3385
- "6",
3386
- "7",
3387
- "8",
3388
- "9",
3389
- "10",
3390
- "11",
3391
- "12"
3392
- ],
3393
- "wide": [
3394
- "1月",
3395
- "2月",
3396
- "3月",
3397
- "4月",
3398
- "5月",
3399
- "6月",
3400
- "7月",
3401
- "8月",
3402
- "9月",
3403
- "10月",
3404
- "11月",
3405
- "12月"
3406
- ]
3407
- },
3408
- "stand-alone": {
3409
- "abbreviated": [
3410
- "1月",
3411
- "2月",
3412
- "3月",
3413
- "4月",
3414
- "5月",
3415
- "6月",
3416
- "7月",
3417
- "8月",
3418
- "9月",
3419
- "10月",
3420
- "11月",
3421
- "12月"
3422
- ],
3423
- "narrow": [
3424
- "1",
3425
- "2",
3426
- "3",
3427
- "4",
3428
- "5",
3429
- "6",
3430
- "7",
3431
- "8",
3432
- "9",
3433
- "10",
3434
- "11",
3435
- "12"
3436
- ],
3437
- "wide": [
3438
- "1月",
3439
- "2月",
3440
- "3月",
3441
- "4月",
3442
- "5月",
3443
- "6月",
3444
- "7月",
3445
- "8月",
3446
- "9月",
3447
- "10月",
3448
- "11月",
3449
- "12月"
3450
- ]
3451
- }
3452
- },
3453
- "days": {
3454
- "format": {
3455
- "abbreviated": [
3456
- "日",
3457
- "月",
3458
- "火",
3459
- "水",
3460
- "木",
3461
- "金",
3462
- "土"
3463
- ],
3464
- "narrow": [
3465
- "日",
3466
- "月",
3467
- "火",
3468
- "水",
3469
- "木",
3470
- "金",
3471
- "土"
3472
- ],
3473
- "short": [
3474
- "日",
3475
- "月",
3476
- "火",
3477
- "水",
3478
- "木",
3479
- "金",
3480
- "土"
3481
- ],
3482
- "wide": [
3483
- "日曜日",
3484
- "月曜日",
3485
- "火曜日",
3486
- "水曜日",
3487
- "木曜日",
3488
- "金曜日",
3489
- "土曜日"
3490
- ]
3491
- },
3492
- "stand-alone": {
3493
- "abbreviated": [
3494
- "日",
3495
- "月",
3496
- "火",
3497
- "水",
3498
- "木",
3499
- "金",
3500
- "土"
3501
- ],
3502
- "narrow": [
3503
- "日",
3504
- "月",
3505
- "火",
3506
- "水",
3507
- "木",
3508
- "金",
3509
- "土"
3510
- ],
3511
- "short": [
3512
- "日",
3513
- "月",
3514
- "火",
3515
- "水",
3516
- "木",
3517
- "金",
3518
- "土"
3519
- ],
3520
- "wide": [
3521
- "日曜日",
3522
- "月曜日",
3523
- "火曜日",
3524
- "水曜日",
3525
- "木曜日",
3526
- "金曜日",
3527
- "土曜日"
3528
- ]
3529
- }
3530
- },
3531
- "quarters": {
3532
- "format": {
3533
- "abbreviated": [
3534
- "Q1",
3535
- "Q2",
3536
- "Q3",
3537
- "Q4"
3538
- ],
3539
- "narrow": [
3540
- "1",
3541
- "2",
3542
- "3",
3543
- "4"
3544
- ],
3545
- "wide": [
3546
- "第1四半期",
3547
- "第2四半期",
3548
- "第3四半期",
3549
- "第4四半期"
3550
- ]
3551
- },
3552
- "stand-alone": {
3553
- "abbreviated": [
3554
- "Q1",
3555
- "Q2",
3556
- "Q3",
3557
- "Q4"
3558
- ],
3559
- "narrow": [
3560
- "1",
3561
- "2",
3562
- "3",
3563
- "4"
3564
- ],
3565
- "wide": [
3566
- "第1四半期",
3567
- "第2四半期",
3568
- "第3四半期",
3569
- "第4四半期"
3570
- ]
3571
- }
3572
- },
3573
- "dayPeriods": {
3574
- "format": {
3575
- "abbreviated": [
3576
- "午前",
3577
- "午後"
3578
- ],
3579
- "narrow": [
3580
- "午前",
3581
- "午後"
3582
- ],
3583
- "wide": [
3584
- "午前",
3585
- "午後"
3586
- ]
3587
- },
3588
- "stand-alone": {
3589
- "abbreviated": [
3590
- "午前",
3591
- "午後"
3592
- ],
3593
- "narrow": [
3594
- "午前",
3595
- "午後"
3596
- ],
3597
- "wide": [
3598
- "午前",
3599
- "午後"
3600
- ]
3601
- }
3602
- },
3603
- "era-wide": {
3604
- "0": "仏暦"
3605
- },
3606
- "era-abbreviated": {
3607
- "0": "BE"
3608
- },
3609
- "era-narrow": {
3610
- "0": "BE"
3611
- }
3612
- },
3613
- "dateFields": {
3614
- "era": {
3615
- "displayName": "時代"
3616
- },
3617
- "year-wide": {
3618
- "displayName": "年",
3619
- "relative-type--1": "昨年",
3620
- "relative-type-0": "今年",
3621
- "relative-type-1": "翌年",
3622
- "relativeTime-type-future": {
3623
- "relativeTimePattern-count-other": "{0} 年後"
3624
- },
3625
- "relativeTime-type-past": {
3626
- "relativeTimePattern-count-other": "{0} 年前"
3627
- }
3628
- },
3629
- "year-short": {
3630
- "displayName": "年",
3631
- "relative-type--1": "昨年",
3632
- "relative-type-0": "今年",
3633
- "relative-type-1": "翌年",
3634
- "relativeTime-type-future": {
3635
- "relativeTimePattern-count-other": "{0} 年後"
3636
- },
3637
- "relativeTime-type-past": {
3638
- "relativeTimePattern-count-other": "{0} 年前"
3639
- }
3640
- },
3641
- "year-narrow": {
3642
- "displayName": "年",
3643
- "relative-type--1": "昨年",
3644
- "relative-type-0": "今年",
3645
- "relative-type-1": "翌年",
3646
- "relativeTime-type-future": {
3647
- "relativeTimePattern-count-other": "{0}年後"
3648
- },
3649
- "relativeTime-type-past": {
3650
- "relativeTimePattern-count-other": "{0}年前"
3651
- }
3652
- },
3653
- "quarter-wide": {
3654
- "displayName": "四半期",
3655
- "relative-type--1": "前四半期",
3656
- "relative-type-0": "今四半期",
3657
- "relative-type-1": "翌四半期",
3658
- "relativeTime-type-future": {
3659
- "relativeTimePattern-count-other": "{0} 四半期後"
3660
- },
3661
- "relativeTime-type-past": {
3662
- "relativeTimePattern-count-other": "{0} 四半期前"
3663
- }
3664
- },
3665
- "quarter-short": {
3666
- "displayName": "四半期",
3667
- "relative-type--1": "前四半期",
3668
- "relative-type-0": "今四半期",
3669
- "relative-type-1": "翌四半期",
3670
- "relativeTime-type-future": {
3671
- "relativeTimePattern-count-other": "{0} 四半期後"
3672
- },
3673
- "relativeTime-type-past": {
3674
- "relativeTimePattern-count-other": "{0} 四半期前"
3675
- }
3676
- },
3677
- "quarter-narrow": {
3678
- "displayName": "四半期",
3679
- "relative-type--1": "前四半期",
3680
- "relative-type-0": "今四半期",
3681
- "relative-type-1": "翌四半期",
3682
- "relativeTime-type-future": {
3683
- "relativeTimePattern-count-other": "{0}四半期後"
3684
- },
3685
- "relativeTime-type-past": {
3686
- "relativeTimePattern-count-other": "{0}四半期前"
3687
- }
3688
- },
3689
- "month-wide": {
3690
- "displayName": "月",
3691
- "relative-type--1": "先月",
3692
- "relative-type-0": "今月",
3693
- "relative-type-1": "翌月",
3694
- "relativeTime-type-future": {
3695
- "relativeTimePattern-count-other": "{0} か月後"
3696
- },
3697
- "relativeTime-type-past": {
3698
- "relativeTimePattern-count-other": "{0} か月前"
3699
- }
3700
- },
3701
- "month-short": {
3702
- "displayName": "月",
3703
- "relative-type--1": "先月",
3704
- "relative-type-0": "今月",
3705
- "relative-type-1": "翌月",
3706
- "relativeTime-type-future": {
3707
- "relativeTimePattern-count-other": "{0} か月後"
3708
- },
3709
- "relativeTime-type-past": {
3710
- "relativeTimePattern-count-other": "{0} か月前"
3711
- }
3712
- },
3713
- "month-narrow": {
3714
- "displayName": "月",
3715
- "relative-type--1": "先月",
3716
- "relative-type-0": "今月",
3717
- "relative-type-1": "翌月",
3718
- "relativeTime-type-future": {
3719
- "relativeTimePattern-count-other": "{0}か月後"
3720
- },
3721
- "relativeTime-type-past": {
3722
- "relativeTimePattern-count-other": "{0}か月前"
3723
- }
3724
- },
3725
- "week-wide": {
3726
- "displayName": "週",
3727
- "relative-type--1": "先週",
3728
- "relative-type-0": "今週",
3729
- "relative-type-1": "翌週",
3730
- "relativeTime-type-future": {
3731
- "relativeTimePattern-count-other": "{0} 週間後"
3732
- },
3733
- "relativeTime-type-past": {
3734
- "relativeTimePattern-count-other": "{0} 週間前"
3735
- },
3736
- "relativePeriod": "{0} 日の週"
3737
- },
3738
- "week-short": {
3739
- "displayName": "週",
3740
- "relative-type--1": "先週",
3741
- "relative-type-0": "今週",
3742
- "relative-type-1": "翌週",
3743
- "relativeTime-type-future": {
3744
- "relativeTimePattern-count-other": "{0} 週間後"
3745
- },
3746
- "relativeTime-type-past": {
3747
- "relativeTimePattern-count-other": "{0} 週間前"
3748
- },
3749
- "relativePeriod": "{0} 日の週"
3750
- },
3751
- "week-narrow": {
3752
- "displayName": "週",
3753
- "relative-type--1": "先週",
3754
- "relative-type-0": "今週",
3755
- "relative-type-1": "翌週",
3756
- "relativeTime-type-future": {
3757
- "relativeTimePattern-count-other": "{0}週間後"
3758
- },
3759
- "relativeTime-type-past": {
3760
- "relativeTimePattern-count-other": "{0}週間前"
3761
- },
3762
- "relativePeriod": "{0}日の週"
3763
- },
3764
- "day-wide": {
3765
- "displayName": "日",
3766
- "relative-type--2": "一昨日",
3767
- "relative-type--1": "昨日",
3768
- "relative-type-0": "今日",
3769
- "relative-type-1": "明日",
3770
- "relative-type-2": "明後日",
3771
- "relativeTime-type-future": {
3772
- "relativeTimePattern-count-other": "{0} 日後"
3773
- },
3774
- "relativeTime-type-past": {
3775
- "relativeTimePattern-count-other": "{0} 日前"
3776
- }
3777
- },
3778
- "day-short": {
3779
- "displayName": "日",
3780
- "relative-type--2": "一昨日",
3781
- "relative-type--1": "昨日",
3782
- "relative-type-0": "今日",
3783
- "relative-type-1": "明日",
3784
- "relative-type-2": "明後日",
3785
- "relativeTime-type-future": {
3786
- "relativeTimePattern-count-other": "{0} 日後"
3787
- },
3788
- "relativeTime-type-past": {
3789
- "relativeTimePattern-count-other": "{0} 日前"
3790
- }
3791
- },
3792
- "day-narrow": {
3793
- "displayName": "日",
3794
- "relative-type--2": "一昨日",
3795
- "relative-type--1": "昨日",
3796
- "relative-type-0": "今日",
3797
- "relative-type-1": "明日",
3798
- "relative-type-2": "明後日",
3799
- "relativeTime-type-future": {
3800
- "relativeTimePattern-count-other": "{0}日後"
3801
- },
3802
- "relativeTime-type-past": {
3803
- "relativeTimePattern-count-other": "{0}日前"
3804
- }
3805
- },
3806
- "weekday": {
3807
- "displayName": "曜日"
3808
- },
3809
- "hour-wide": {
3810
- "displayName": "時",
3811
- "relative-type-0": "1 時間以内",
3812
- "relativeTime-type-future": {
3813
- "relativeTimePattern-count-other": "{0} 時間後"
3814
- },
3815
- "relativeTime-type-past": {
3816
- "relativeTimePattern-count-other": "{0} 時間前"
3817
- }
3818
- },
3819
- "hour-short": {
3820
- "displayName": "時",
3821
- "relative-type-0": "1 時間以内",
3822
- "relativeTime-type-future": {
3823
- "relativeTimePattern-count-other": "{0} 時間後"
3824
- },
3825
- "relativeTime-type-past": {
3826
- "relativeTimePattern-count-other": "{0} 時間前"
3827
- }
3828
- },
3829
- "hour-narrow": {
3830
- "displayName": "時",
3831
- "relative-type-0": "1 時間以内",
3832
- "relativeTime-type-future": {
3833
- "relativeTimePattern-count-other": "{0}時間後"
3834
- },
3835
- "relativeTime-type-past": {
3836
- "relativeTimePattern-count-other": "{0}時間前"
3837
- }
3838
- },
3839
- "minute-wide": {
3840
- "displayName": "分",
3841
- "relative-type-0": "1 分以内",
3842
- "relativeTime-type-future": {
3843
- "relativeTimePattern-count-other": "{0} 分後"
3844
- },
3845
- "relativeTime-type-past": {
3846
- "relativeTimePattern-count-other": "{0} 分前"
3847
- }
3848
- },
3849
- "minute-short": {
3850
- "displayName": "分",
3851
- "relative-type-0": "1 分以内",
3852
- "relativeTime-type-future": {
3853
- "relativeTimePattern-count-other": "{0} 分後"
3854
- },
3855
- "relativeTime-type-past": {
3856
- "relativeTimePattern-count-other": "{0} 分前"
3857
- }
3858
- },
3859
- "minute-narrow": {
3860
- "displayName": "分",
3861
- "relative-type-0": "1 分以内",
3862
- "relativeTime-type-future": {
3863
- "relativeTimePattern-count-other": "{0}分後"
3864
- },
3865
- "relativeTime-type-past": {
3866
- "relativeTimePattern-count-other": "{0}分前"
3867
- }
3868
- },
3869
- "second-wide": {
3870
- "displayName": "秒",
3871
- "relative-type-0": "今",
3872
- "relativeTime-type-future": {
3873
- "relativeTimePattern-count-other": "{0} 秒後"
3874
- },
3875
- "relativeTime-type-past": {
3876
- "relativeTimePattern-count-other": "{0} 秒前"
3877
- }
3878
- },
3879
- "second-short": {
3880
- "displayName": "秒",
3881
- "relative-type-0": "今",
3882
- "relativeTime-type-future": {
3883
- "relativeTimePattern-count-other": "{0} 秒後"
3884
- },
3885
- "relativeTime-type-past": {
3886
- "relativeTimePattern-count-other": "{0} 秒前"
3887
- }
3888
- },
3889
- "second-narrow": {
3890
- "displayName": "秒",
3891
- "relative-type-0": "今",
3892
- "relativeTime-type-future": {
3893
- "relativeTimePattern-count-other": "{0}秒後"
3894
- },
3895
- "relativeTime-type-past": {
3896
- "relativeTimePattern-count-other": "{0}秒前"
3897
- }
3898
- },
3899
- "zone": {
3900
- "displayName": "タイムゾーン"
3901
- }
3902
- },
3903
- "decimalFormat": {
3904
- "standard": "#,##0.###"
3905
- },
3906
- "decimalFormat-long": {
3907
- "1000-other": "0",
3908
- "10000-other": "0万",
3909
- "100000-other": "00万",
3910
- "1000000-other": "000万",
3911
- "10000000-other": "0000万",
3912
- "100000000-other": "0億",
3913
- "1000000000-other": "00億",
3914
- "10000000000-other": "000億",
3915
- "100000000000-other": "0000億",
3916
- "1000000000000-other": "0兆",
3917
- "10000000000000-other": "00兆",
3918
- "100000000000000-other": "000兆"
3919
- },
3920
- "decimalFormat-short": {
3921
- "1000-other": "0",
3922
- "10000-other": "0万",
3923
- "100000-other": "00万",
3924
- "1000000-other": "000万",
3925
- "10000000-other": "0000万",
3926
- "100000000-other": "0億",
3927
- "1000000000-other": "00億",
3928
- "10000000000-other": "000億",
3929
- "100000000000-other": "0000億",
3930
- "1000000000000-other": "0兆",
3931
- "10000000000000-other": "00兆",
3932
- "100000000000000-other": "000兆"
3933
- },
3934
- "scientificFormat": {
3935
- "standard": "#E0"
3936
- },
3937
- "percentFormat": {
3938
- "standard": "#,##0%"
3939
- },
3940
- "currencyFormat": {
3941
- "standard": "¤#,##0.00",
3942
- "accounting": "¤#,##0.00;(¤#,##0.00)",
3943
- "currencySpacing": {
3944
- "beforeCurrency": {
3945
- "currencyMatch": "[:^S:]",
3946
- "surroundingMatch": "[:digit:]",
3947
- "insertBetween": " "
3948
- },
3949
- "afterCurrency": {
3950
- "currencyMatch": "[:^S:]",
3951
- "surroundingMatch": "[:digit:]",
3952
- "insertBetween": " "
3953
- }
3954
- },
3955
- "sap-standard": "#,##0.00¤",
3956
- "sap-accounting": "#,##0.00¤;(#,##0.00¤)"
3957
- },
3958
- "miscPattern": {
3959
- "approximately": "約 {0}",
3960
- "atLeast": "{0} 以上",
3961
- "atMost": "{0} 以下",
3962
- "range": "{0}~{1}"
3963
- },
3964
- "currencyFormat-short": {
3965
- "1000-other": "0",
3966
- "10000-other": "¤0万",
3967
- "100000-other": "¤00万",
3968
- "1000000-other": "¤000万",
3969
- "10000000-other": "¤0000万",
3970
- "100000000-other": "¤0億",
3971
- "1000000000-other": "¤00億",
3972
- "10000000000-other": "¤000億",
3973
- "100000000000-other": "¤0000億",
3974
- "1000000000000-other": "¤0兆",
3975
- "10000000000000-other": "¤00兆",
3976
- "100000000000000-other": "¤000兆"
3977
- },
3978
- "symbols-latn-decimal": ".",
3979
- "symbols-latn-group": ",",
3980
- "symbols-latn-list": ";",
3981
- "symbols-latn-percentSign": "%",
3982
- "symbols-latn-plusSign": "+",
3983
- "symbols-latn-minusSign": "-",
3984
- "symbols-latn-exponential": "E",
3985
- "symbols-latn-superscriptingExponent": "×",
3986
- "symbols-latn-perMille": "‰",
3987
- "symbols-latn-infinity": "∞",
3988
- "symbols-latn-nan": "NaN",
3989
- "symbols-latn-timeSeparator": ":",
3990
- "currencySymbols": {
3991
- "AUD": "A$",
3992
- "BRL": "R$",
3993
- "CAD": "CA$",
3994
- "CNY": "元",
3995
- "EUR": "€",
3996
- "GBP": "£",
3997
- "HKD": "HK$",
3998
- "ILS": "₪",
3999
- "INR": "₹",
4000
- "JPY": "¥",
4001
- "KRW": "₩",
4002
- "MXN": "MX$",
4003
- "NZD": "NZ$",
4004
- "TWD": "NT$",
4005
- "USD": "$",
4006
- "VND": "₫",
4007
- "XAF": "FCFA",
4008
- "XCD": "EC$",
4009
- "XOF": "CFA",
4010
- "XPF": "CFPF"
4011
- },
4012
- "rtl": false,
4013
- "listPattern-standard-wide": {
4014
- "2": "{0}、{1}",
4015
- "start": "{0}、{1}",
4016
- "middle": "{0}、{1}",
4017
- "end": "{0}、{1}"
4018
- },
4019
- "listPattern-or-wide": {
4020
- "2": "{0}または{1}",
4021
- "start": "{0}、{1}",
4022
- "middle": "{0}、{1}",
4023
- "end": "{0}、または{1}"
4024
- },
4025
- "listPattern-or-short": {
4026
- "2": "{0}または{1}",
4027
- "start": "{0}、{1}",
4028
- "middle": "{0}、{1}",
4029
- "end": "{0}、または{1}"
4030
- },
4031
- "listPattern-standard-short": {
4032
- "2": "{0}、{1}",
4033
- "start": "{0}、{1}",
4034
- "middle": "{0}、{1}",
4035
- "end": "{0}、{1}"
4036
- },
4037
- "units": {
4038
- "short": {
4039
- "per": {
4040
- "compoundUnitPattern": "{0}/{1}"
4041
- },
4042
- "acceleration-g-force": {
4043
- "displayName": "重力加速度",
4044
- "unitPattern-count-other": "{0} G"
4045
- },
4046
- "acceleration-meter-per-second-squared": {
4047
- "displayName": "m/s²",
4048
- "unitPattern-count-other": "{0} m/s²"
4049
- },
4050
- "angle-revolution": {
4051
- "displayName": "回転",
4052
- "unitPattern-count-other": "{0} rev"
4053
- },
4054
- "angle-radian": {
4055
- "displayName": "ラジアン",
4056
- "unitPattern-count-other": "{0} rad"
4057
- },
4058
- "angle-degree": {
4059
- "displayName": "度",
4060
- "unitPattern-count-other": "{0} 度"
4061
- },
4062
- "angle-arc-minute": {
4063
- "displayName": "分",
4064
- "unitPattern-count-other": "{0} 分"
4065
- },
4066
- "angle-arc-second": {
4067
- "displayName": "秒",
4068
- "unitPattern-count-other": "{0} 秒"
4069
- },
4070
- "area-square-kilometer": {
4071
- "displayName": "km²",
4072
- "unitPattern-count-other": "{0} km²",
4073
- "perUnitPattern": "{0}/km²"
4074
- },
4075
- "area-hectare": {
4076
- "displayName": "ヘクタール",
4077
- "unitPattern-count-other": "{0} ha"
4078
- },
4079
- "area-square-meter": {
4080
- "displayName": "m²",
4081
- "unitPattern-count-other": "{0} m²",
4082
- "perUnitPattern": "{0}/m²"
4083
- },
4084
- "area-square-centimeter": {
4085
- "displayName": "cm²",
4086
- "unitPattern-count-other": "{0} cm²",
4087
- "perUnitPattern": "{0}/cm²"
4088
- },
4089
- "area-square-mile": {
4090
- "displayName": "平方マイル",
4091
- "unitPattern-count-other": "{0} mi²",
4092
- "perUnitPattern": "{0}/mi²"
4093
- },
4094
- "area-acre": {
4095
- "displayName": "エーカー",
4096
- "unitPattern-count-other": "{0} ac"
4097
- },
4098
- "area-square-yard": {
4099
- "displayName": "平方ヤード",
4100
- "unitPattern-count-other": "{0} yd²"
4101
- },
4102
- "area-square-foot": {
4103
- "displayName": "平方フィート",
4104
- "unitPattern-count-other": "{0} ft²"
4105
- },
4106
- "area-square-inch": {
4107
- "displayName": "平方インチ",
4108
- "unitPattern-count-other": "{0} in²",
4109
- "perUnitPattern": "{0}/in²"
4110
- },
4111
- "area-dunam": {
4112
- "displayName": "ドゥナム",
4113
- "unitPattern-count-other": "{0}ドゥナム"
4114
- },
4115
- "concentr-karat": {
4116
- "displayName": "金",
4117
- "unitPattern-count-other": "{0} 金"
4118
- },
4119
- "concentr-milligram-per-deciliter": {
4120
- "displayName": "ミリグラム毎デシリットル",
4121
- "unitPattern-count-other": "{0} mg/dL"
4122
- },
4123
- "concentr-millimole-per-liter": {
4124
- "displayName": "ミリモル毎リットル",
4125
- "unitPattern-count-other": "{0} mmol/L"
4126
- },
4127
- "concentr-part-per-million": {
4128
- "displayName": "ppm",
4129
- "unitPattern-count-other": "{0} ppm"
4130
- },
4131
- "concentr-percent": {
4132
- "displayName": "パーセント",
4133
- "unitPattern-count-other": "{0}%"
4134
- },
4135
- "concentr-permille": {
4136
- "displayName": "パーミル",
4137
- "unitPattern-count-other": "{0}‰"
4138
- },
4139
- "concentr-permyriad": {
4140
- "displayName": "パーミリアド",
4141
- "unitPattern-count-other": "{0}‱"
4142
- },
4143
- "concentr-mole": {
4144
- "displayName": "モル",
4145
- "unitPattern-count-other": "{0} mol"
4146
- },
4147
- "consumption-liter-per-kilometer": {
4148
- "displayName": "L/km",
4149
- "unitPattern-count-other": "{0} L/km"
4150
- },
4151
- "consumption-liter-per-100kilometers": {
4152
- "displayName": "L/100km",
4153
- "unitPattern-count-other": "{0} L/100km"
4154
- },
4155
- "consumption-mile-per-gallon": {
4156
- "displayName": "マイル/ガロン",
4157
- "unitPattern-count-other": "{0} mpg"
4158
- },
4159
- "consumption-mile-per-gallon-imperial": {
4160
- "displayName": "マイル毎英ガロン",
4161
- "unitPattern-count-other": "{0} mpg Imp."
4162
- },
4163
- "digital-petabyte": {
4164
- "displayName": "ペタバイト",
4165
- "unitPattern-count-other": "{0} PB"
4166
- },
4167
- "digital-terabyte": {
4168
- "displayName": "テラバイト",
4169
- "unitPattern-count-other": "{0} TB"
4170
- },
4171
- "digital-terabit": {
4172
- "displayName": "テラビット",
4173
- "unitPattern-count-other": "{0} Tb"
4174
- },
4175
- "digital-gigabyte": {
4176
- "displayName": "GB",
4177
- "unitPattern-count-other": "{0} GB"
4178
- },
4179
- "digital-gigabit": {
4180
- "displayName": "ギガビット",
4181
- "unitPattern-count-other": "{0} Gb"
4182
- },
4183
- "digital-megabyte": {
4184
- "displayName": "MB",
4185
- "unitPattern-count-other": "{0} MB"
4186
- },
4187
- "digital-megabit": {
4188
- "displayName": "メガビット",
4189
- "unitPattern-count-other": "{0} Mb"
4190
- },
4191
- "digital-kilobyte": {
4192
- "displayName": "kB",
4193
- "unitPattern-count-other": "{0} kB"
4194
- },
4195
- "digital-kilobit": {
4196
- "displayName": "キロビット",
4197
- "unitPattern-count-other": "{0} kb"
4198
- },
4199
- "digital-byte": {
4200
- "displayName": "バイト",
4201
- "unitPattern-count-other": "{0} byte"
4202
- },
4203
- "digital-bit": {
4204
- "displayName": "ビット",
4205
- "unitPattern-count-other": "{0} bit"
4206
- },
4207
- "duration-century": {
4208
- "displayName": "世紀",
4209
- "unitPattern-count-other": "{0} 世紀"
4210
- },
4211
- "duration-year": {
4212
- "displayName": "年",
4213
- "unitPattern-count-other": "{0} 年",
4214
- "perUnitPattern": "{0}/年"
4215
- },
4216
- "duration-month": {
4217
- "displayName": "か月",
4218
- "unitPattern-count-other": "{0} か月",
4219
- "perUnitPattern": "{0}/月"
4220
- },
4221
- "duration-week": {
4222
- "displayName": "週間",
4223
- "unitPattern-count-other": "{0} 週間",
4224
- "perUnitPattern": "{0}/週"
4225
- },
4226
- "duration-day": {
4227
- "displayName": "日",
4228
- "unitPattern-count-other": "{0} 日",
4229
- "perUnitPattern": "{0}/日"
4230
- },
4231
- "duration-hour": {
4232
- "displayName": "時間",
4233
- "unitPattern-count-other": "{0} 時間",
4234
- "perUnitPattern": "{0}/時間"
4235
- },
4236
- "duration-minute": {
4237
- "displayName": "分",
4238
- "unitPattern-count-other": "{0} 分",
4239
- "perUnitPattern": "{0}/分"
4240
- },
4241
- "duration-second": {
4242
- "displayName": "秒",
4243
- "unitPattern-count-other": "{0} 秒",
4244
- "perUnitPattern": "{0}/秒"
4245
- },
4246
- "duration-millisecond": {
4247
- "displayName": "ミリ秒",
4248
- "unitPattern-count-other": "{0} ms"
4249
- },
4250
- "duration-microsecond": {
4251
- "displayName": "マイクロ秒",
4252
- "unitPattern-count-other": "{0} μs"
4253
- },
4254
- "duration-nanosecond": {
4255
- "displayName": "ナノ秒",
4256
- "unitPattern-count-other": "{0} ns"
4257
- },
4258
- "electric-ampere": {
4259
- "displayName": "アンペア",
4260
- "unitPattern-count-other": "{0} A"
4261
- },
4262
- "electric-milliampere": {
4263
- "displayName": "ミリアンペア",
4264
- "unitPattern-count-other": "{0} mA"
4265
- },
4266
- "electric-ohm": {
4267
- "displayName": "オーム",
4268
- "unitPattern-count-other": "{0} Ω"
4269
- },
4270
- "electric-volt": {
4271
- "displayName": "ボルト",
4272
- "unitPattern-count-other": "{0} V"
4273
- },
4274
- "energy-kilocalorie": {
4275
- "displayName": "kcal",
4276
- "unitPattern-count-other": "{0} kcal"
4277
- },
4278
- "energy-calorie": {
4279
- "displayName": "cal",
4280
- "unitPattern-count-other": "{0} cal"
4281
- },
4282
- "energy-foodcalorie": {
4283
- "displayName": "cal",
4284
- "unitPattern-count-other": "{0} cal"
4285
- },
4286
- "energy-kilojoule": {
4287
- "displayName": "キロジュール",
4288
- "unitPattern-count-other": "{0} kJ"
4289
- },
4290
- "energy-joule": {
4291
- "displayName": "ジュール",
4292
- "unitPattern-count-other": "{0} J"
4293
- },
4294
- "energy-kilowatt-hour": {
4295
- "displayName": "キロワット時",
4296
- "unitPattern-count-other": "{0} kWh"
4297
- },
4298
- "energy-electronvolt": {
4299
- "displayName": "電子ボルト",
4300
- "unitPattern-count-other": "{0} eV"
4301
- },
4302
- "energy-british-thermal-unit": {
4303
- "displayName": "英熱量",
4304
- "unitPattern-count-other": "{0} BTU"
4305
- },
4306
- "force-pound-force": {
4307
- "displayName": "重量ポンド",
4308
- "unitPattern-count-other": "{0} lbf"
4309
- },
4310
- "force-newton": {
4311
- "displayName": "ニュートン",
4312
- "unitPattern-count-other": "{0} N"
4313
- },
4314
- "frequency-gigahertz": {
4315
- "displayName": "GHz",
4316
- "unitPattern-count-other": "{0} GHz"
4317
- },
4318
- "frequency-megahertz": {
4319
- "displayName": "MHz",
4320
- "unitPattern-count-other": "{0} MHz"
4321
- },
4322
- "frequency-kilohertz": {
4323
- "displayName": "kHz",
4324
- "unitPattern-count-other": "{0} kHz"
4325
- },
4326
- "frequency-hertz": {
4327
- "displayName": "Hz",
4328
- "unitPattern-count-other": "{0} Hz"
4329
- },
4330
- "length-kilometer": {
4331
- "displayName": "km",
4332
- "unitPattern-count-other": "{0} km",
4333
- "perUnitPattern": "{0}/km"
4334
- },
4335
- "length-meter": {
4336
- "displayName": "m",
4337
- "unitPattern-count-other": "{0} m",
4338
- "perUnitPattern": "{0}/m"
4339
- },
4340
- "length-decimeter": {
4341
- "displayName": "デシメートル",
4342
- "unitPattern-count-other": "{0} dm"
4343
- },
4344
- "length-centimeter": {
4345
- "displayName": "cm",
4346
- "unitPattern-count-other": "{0} cm",
4347
- "perUnitPattern": "{0}/cm"
4348
- },
4349
- "length-millimeter": {
4350
- "displayName": "mm",
4351
- "unitPattern-count-other": "{0} mm"
4352
- },
4353
- "length-micrometer": {
4354
- "displayName": "マイクロメートル",
4355
- "unitPattern-count-other": "{0} µm"
4356
- },
4357
- "length-nanometer": {
4358
- "displayName": "ナノメートル",
4359
- "unitPattern-count-other": "{0} nm"
4360
- },
4361
- "length-picometer": {
4362
- "displayName": "ピコメートル",
4363
- "unitPattern-count-other": "{0} pm"
4364
- },
4365
- "length-mile": {
4366
- "displayName": "マイル",
4367
- "unitPattern-count-other": "{0} mi"
4368
- },
4369
- "length-yard": {
4370
- "displayName": "ヤード",
4371
- "unitPattern-count-other": "{0} yd"
4372
- },
4373
- "length-foot": {
4374
- "displayName": "フィート",
4375
- "unitPattern-count-other": "{0} ft",
4376
- "perUnitPattern": "{0}/ft"
4377
- },
4378
- "length-inch": {
4379
- "displayName": "インチ",
4380
- "unitPattern-count-other": "{0} in",
4381
- "perUnitPattern": "{0}/in"
4382
- },
4383
- "length-parsec": {
4384
- "displayName": "パーセク",
4385
- "unitPattern-count-other": "{0} pc"
4386
- },
4387
- "length-light-year": {
4388
- "displayName": "光年",
4389
- "unitPattern-count-other": "{0} 光年"
4390
- },
4391
- "length-astronomical-unit": {
4392
- "displayName": "天文単位",
4393
- "unitPattern-count-other": "{0} au"
4394
- },
4395
- "length-furlong": {
4396
- "displayName": "ハロン",
4397
- "unitPattern-count-other": "{0} fur"
4398
- },
4399
- "length-fathom": {
4400
- "displayName": "ファゾム",
4401
- "unitPattern-count-other": "{0} fth"
4402
- },
4403
- "length-nautical-mile": {
4404
- "displayName": "海里",
4405
- "unitPattern-count-other": "{0} 海里"
4406
- },
4407
- "length-mile-scandinavian": {
4408
- "displayName": "スカンジナビアマイル",
4409
- "unitPattern-count-other": "{0} smi"
4410
- },
4411
- "length-point": {
4412
- "displayName": "ポイント",
4413
- "unitPattern-count-other": "{0} pt"
4414
- },
4415
- "length-solar-radius": {
4416
- "displayName": "太陽半径",
4417
- "unitPattern-count-other": "{0} R☉"
4418
- },
4419
- "light-lux": {
4420
- "displayName": "ルクス",
4421
- "unitPattern-count-other": "{0} lx"
4422
- },
4423
- "light-solar-luminosity": {
4424
- "displayName": "太陽光度",
4425
- "unitPattern-count-other": "{0} L☉"
4426
- },
4427
- "mass-metric-ton": {
4428
- "displayName": "トン",
4429
- "unitPattern-count-other": "{0} t"
4430
- },
4431
- "mass-kilogram": {
4432
- "displayName": "kg",
4433
- "unitPattern-count-other": "{0} kg",
4434
- "perUnitPattern": "{0}/kg"
4435
- },
4436
- "mass-gram": {
4437
- "displayName": "グラム",
4438
- "unitPattern-count-other": "{0} g",
4439
- "perUnitPattern": "{0}/g"
4440
- },
4441
- "mass-milligram": {
4442
- "displayName": "mg",
4443
- "unitPattern-count-other": "{0} mg"
4444
- },
4445
- "mass-microgram": {
4446
- "displayName": "マイクログラム",
4447
- "unitPattern-count-other": "{0} µg"
4448
- },
4449
- "mass-ton": {
4450
- "displayName": "米トン",
4451
- "unitPattern-count-other": "{0} s/t"
4452
- },
4453
- "mass-stone": {
4454
- "displayName": "ストーン",
4455
- "unitPattern-count-other": "{0} st"
4456
- },
4457
- "mass-pound": {
4458
- "displayName": "ポンド",
4459
- "unitPattern-count-other": "{0} lb",
4460
- "perUnitPattern": "{0}/lb"
4461
- },
4462
- "mass-ounce": {
4463
- "displayName": "オンス",
4464
- "unitPattern-count-other": "{0} oz",
4465
- "perUnitPattern": "{0}/oz"
4466
- },
4467
- "mass-ounce-troy": {
4468
- "displayName": "トロイオンス",
4469
- "unitPattern-count-other": "{0} oz t"
4470
- },
4471
- "mass-carat": {
4472
- "displayName": "カラット",
4473
- "unitPattern-count-other": "{0} ct"
4474
- },
4475
- "mass-dalton": {
4476
- "displayName": "ダルトン",
4477
- "unitPattern-count-other": "{0} Da"
4478
- },
4479
- "mass-earth-mass": {
4480
- "displayName": "地球質量",
4481
- "unitPattern-count-other": "{0} M⊕"
4482
- },
4483
- "mass-solar-mass": {
4484
- "displayName": "太陽質量",
4485
- "unitPattern-count-other": "{0} M☉"
4486
- },
4487
- "power-gigawatt": {
4488
- "displayName": "ギガワット",
4489
- "unitPattern-count-other": "{0} GW"
4490
- },
4491
- "power-megawatt": {
4492
- "displayName": "メガワット",
4493
- "unitPattern-count-other": "{0} MW"
4494
- },
4495
- "power-kilowatt": {
4496
- "displayName": "キロワット",
4497
- "unitPattern-count-other": "{0} kW"
4498
- },
4499
- "power-watt": {
4500
- "displayName": "ワット",
4501
- "unitPattern-count-other": "{0} W"
4502
- },
4503
- "power-milliwatt": {
4504
- "displayName": "ミリワット",
4505
- "unitPattern-count-other": "{0} mW"
4506
- },
4507
- "power-horsepower": {
4508
- "displayName": "馬力",
4509
- "unitPattern-count-other": "{0} 馬力"
4510
- },
4511
- "pressure-hectopascal": {
4512
- "displayName": "hPa",
4513
- "unitPattern-count-other": "{0} hPa"
4514
- },
4515
- "pressure-millimeter-of-mercury": {
4516
- "displayName": "水銀柱ミリメートル",
4517
- "unitPattern-count-other": "{0} mm Hg"
4518
- },
4519
- "pressure-pound-per-square-inch": {
4520
- "displayName": "重量ポンド毎平方インチ",
4521
- "unitPattern-count-other": "{0} psi"
4522
- },
4523
- "pressure-inch-hg": {
4524
- "displayName": "水銀柱インチ",
4525
- "unitPattern-count-other": "{0} inHg"
4526
- },
4527
- "pressure-millibar": {
4528
- "displayName": "ミリバール",
4529
- "unitPattern-count-other": "{0} mb"
4530
- },
4531
- "pressure-atmosphere": {
4532
- "displayName": "気圧",
4533
- "unitPattern-count-other": "{0} atm"
4534
- },
4535
- "pressure-kilopascal": {
4536
- "displayName": "kPa",
4537
- "unitPattern-count-other": "{0} kPa"
4538
- },
4539
- "pressure-megapascal": {
4540
- "displayName": "MPa",
4541
- "unitPattern-count-other": "{0} MPa"
4542
- },
4543
- "speed-kilometer-per-hour": {
4544
- "displayName": "km/h",
4545
- "unitPattern-count-other": "{0} km/h"
4546
- },
4547
- "speed-meter-per-second": {
4548
- "displayName": "m/s",
4549
- "unitPattern-count-other": "{0} m/s"
4550
- },
4551
- "speed-mile-per-hour": {
4552
- "displayName": "マイル毎時",
4553
- "unitPattern-count-other": "{0} mph"
4554
- },
4555
- "speed-knot": {
4556
- "displayName": "ノット",
4557
- "unitPattern-count-other": "{0} kn"
4558
- },
4559
- "temperature-generic": {
4560
- "displayName": "°",
4561
- "unitPattern-count-other": "{0}°"
4562
- },
4563
- "temperature-celsius": {
4564
- "displayName": "°C",
4565
- "unitPattern-count-other": "{0}°C"
4566
- },
4567
- "temperature-fahrenheit": {
4568
- "displayName": "°F",
4569
- "unitPattern-count-other": "{0}°F"
4570
- },
4571
- "temperature-kelvin": {
4572
- "displayName": "K",
4573
- "unitPattern-count-other": "{0} K"
4574
- },
4575
- "torque-pound-foot": {
4576
- "displayName": "ポンドフィート",
4577
- "unitPattern-count-other": "{0} lbf⋅ft"
4578
- },
4579
- "torque-newton-meter": {
4580
- "displayName": "ニュートンメートル",
4581
- "unitPattern-count-other": "{0} N⋅m"
4582
- },
4583
- "volume-cubic-kilometer": {
4584
- "displayName": "km³",
4585
- "unitPattern-count-other": "{0} km³"
4586
- },
4587
- "volume-cubic-meter": {
4588
- "displayName": "m³",
4589
- "unitPattern-count-other": "{0} m³",
4590
- "perUnitPattern": "{0}/m³"
4591
- },
4592
- "volume-cubic-centimeter": {
4593
- "displayName": "cm³",
4594
- "unitPattern-count-other": "{0} cm³",
4595
- "perUnitPattern": "{0}/cm³"
4596
- },
4597
- "volume-cubic-mile": {
4598
- "displayName": "立方マイル",
4599
- "unitPattern-count-other": "{0} mi³"
4600
- },
4601
- "volume-cubic-yard": {
4602
- "displayName": "立方ヤード",
4603
- "unitPattern-count-other": "{0} yd³"
4604
- },
4605
- "volume-cubic-foot": {
4606
- "displayName": "立方フィート",
4607
- "unitPattern-count-other": "{0} ft³"
4608
- },
4609
- "volume-cubic-inch": {
4610
- "displayName": "立方インチ",
4611
- "unitPattern-count-other": "{0} in³"
4612
- },
4613
- "volume-megaliter": {
4614
- "displayName": "メガリットル",
4615
- "unitPattern-count-other": "{0} ML"
4616
- },
4617
- "volume-hectoliter": {
4618
- "displayName": "ヘクトリットル",
4619
- "unitPattern-count-other": "{0} hL"
4620
- },
4621
- "volume-liter": {
4622
- "displayName": "リットル",
4623
- "unitPattern-count-other": "{0} L",
4624
- "perUnitPattern": "{0}/l"
4625
- },
4626
- "volume-deciliter": {
4627
- "displayName": "デシリットル",
4628
- "unitPattern-count-other": "{0} dL"
4629
- },
4630
- "volume-centiliter": {
4631
- "displayName": "センチリットル",
4632
- "unitPattern-count-other": "{0} cL"
4633
- },
4634
- "volume-milliliter": {
4635
- "displayName": "ミリリットル",
4636
- "unitPattern-count-other": "{0} ml"
4637
- },
4638
- "volume-pint-metric": {
4639
- "displayName": "メトリックパイント",
4640
- "unitPattern-count-other": "{0} mpt"
4641
- },
4642
- "volume-cup-metric": {
4643
- "displayName": "メトリックカップ",
4644
- "unitPattern-count-other": "{0} mc"
4645
- },
4646
- "volume-acre-foot": {
4647
- "displayName": "エーカーフィート",
4648
- "unitPattern-count-other": "{0} ac ft"
4649
- },
4650
- "volume-bushel": {
4651
- "displayName": "ブッシェル",
4652
- "unitPattern-count-other": "{0} bu"
4653
- },
4654
- "volume-gallon": {
4655
- "displayName": "ガロン",
4656
- "unitPattern-count-other": "{0} gal",
4657
- "perUnitPattern": "{0}/gal"
4658
- },
4659
- "volume-gallon-imperial": {
4660
- "displayName": "英ガロン",
4661
- "unitPattern-count-other": "{0} gal Imp.",
4662
- "perUnitPattern": "{0}/gal Imp."
4663
- },
4664
- "volume-quart": {
4665
- "displayName": "クォート",
4666
- "unitPattern-count-other": "{0} qt"
4667
- },
4668
- "volume-pint": {
4669
- "displayName": "パイント",
4670
- "unitPattern-count-other": "{0} pt"
4671
- },
4672
- "volume-cup": {
4673
- "displayName": "カップ",
4674
- "unitPattern-count-other": "{0} カップ"
4675
- },
4676
- "volume-fluid-ounce": {
4677
- "displayName": "液量オンス",
4678
- "unitPattern-count-other": "{0} fl oz"
4679
- },
4680
- "volume-fluid-ounce-imperial": {
4681
- "displayName": "英液量オンス",
4682
- "unitPattern-count-other": "{0} fl oz Imp"
4683
- },
4684
- "volume-tablespoon": {
4685
- "displayName": "大さじ",
4686
- "unitPattern-count-other": "大さじ {0}"
4687
- },
4688
- "volume-teaspoon": {
4689
- "displayName": "小さじ",
4690
- "unitPattern-count-other": "小さじ {0}"
4691
- },
4692
- "volume-barrel": {
4693
- "displayName": "バレル",
4694
- "unitPattern-count-other": "{0} bbl"
4695
- },
4696
- "coordinateUnit": {
4697
- "displayName": "方位",
4698
- "east": "東経{0}",
4699
- "north": "北緯{0}",
4700
- "south": "南緯{0}",
4701
- "west": "西経{0}"
4702
- }
4703
- }
4704
- },
4705
- "lenient-scope-number": {
4706
- "minusSign": "-‒⁻₋−➖﹣-",
4707
- "commaSign": ",،٫、︐︑﹐﹑,、",
4708
- "plusSign": "+⁺₊➕﬩﹢+"
4709
- },
4710
- "currencyFormat-sap-short": {
4711
- "1000-other": "0",
4712
- "10000-other": "0万 ¤",
4713
- "100000-other": "00万 ¤",
4714
- "1000000-other": "000万 ¤",
4715
- "10000000-other": "0000万 ¤",
4716
- "100000000-other": "0億 ¤",
4717
- "1000000000-other": "00億 ¤",
4718
- "10000000000-other": "000億 ¤",
4719
- "100000000000-other": "0000億 ¤",
4720
- "1000000000000-other": "0兆 ¤",
4721
- "10000000000000-other": "00兆 ¤",
4722
- "100000000000000-other": "000兆 ¤"
4723
- },
4724
- "currencyDigits": {
4725
- "ADP": 0,
4726
- "AFN": 0,
4727
- "ALL": 0,
4728
- "BHD": 3,
4729
- "BIF": 0,
4730
- "BYR": 0,
4731
- "CLF": 4,
4732
- "CLP": 0,
4733
- "DEFAULT": 2,
4734
- "DJF": 0,
4735
- "ESP": 0,
4736
- "GNF": 0,
4737
- "HUF": 0,
4738
- "IQD": 0,
4739
- "IRR": 0,
4740
- "ISK": 0,
4741
- "ITL": 0,
4742
- "JOD": 3,
4743
- "JPY": 0,
4744
- "KMF": 0,
4745
- "KPW": 0,
4746
- "KRW": 0,
4747
- "KWD": 3,
4748
- "LAK": 0,
4749
- "LBP": 0,
4750
- "LUF": 0,
4751
- "LYD": 3,
4752
- "MGA": 0,
4753
- "MGF": 0,
4754
- "MMK": 0,
4755
- "MRO": 0,
4756
- "OMR": 3,
4757
- "PYG": 0,
4758
- "RSD": 0,
4759
- "RWF": 0,
4760
- "SLL": 0,
4761
- "SOS": 0,
4762
- "STD": 0,
4763
- "SYP": 0,
4764
- "TMM": 0,
4765
- "TND": 3,
4766
- "TRL": 0,
4767
- "TWD": 0,
4768
- "UGX": 0,
4769
- "UYI": 0,
4770
- "UYW": 4,
4771
- "VND": 0,
4772
- "VUV": 0,
4773
- "XAF": 0,
4774
- "XOF": 0,
4775
- "XPF": 0,
4776
- "YER": 0,
4777
- "ZMK": 0,
4778
- "ZWD": 0
4779
- },
4780
- "plurals": {},
4781
- "weekData-minDays": 1,
4782
- "weekData-firstDay": 0,
4783
- "weekData-weekendStart": 6,
4784
- "weekData-weekendEnd": 0,
4785
- "timeData": {
4786
- "_allowed": "H h K",
4787
- "_preferred": "H"
4788
- },
4789
- "eras-gregorian": {
4790
- "0": {
4791
- "_end": "0-12-31"
4792
- },
4793
- "1": {
4794
- "_start": "1-01-01"
4795
- }
4796
- },
4797
- "eras-islamic": {
4798
- "0": {
4799
- "_start": "622-7-15"
4800
- }
4801
- },
4802
- "eras-persian": {
4803
- "0": {
4804
- "_start": "622-01-01"
4805
- }
4806
- },
4807
- "eras-buddhist": {
4808
- "0": {
4809
- "_start": "-542-01-01"
4810
- }
4811
- },
4812
- "eras-japanese": {
4813
- "232": {
4814
- "_start": "1868-9-8"
4815
- },
4816
- "233": {
4817
- "_start": "1912-7-30"
4818
- },
4819
- "234": {
4820
- "_start": "1926-12-25"
4821
- },
4822
- "235": {
4823
- "_start": "1989-1-8"
4824
- },
4825
- "236": {
4826
- "_start": "2019-5-1"
4827
- }
4828
- },
4829
- "calendarPreference": "gregorian japanese"
4830
- }