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