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