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