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