@openui5/sap.ui.core 1.119.0 → 1.120.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 (828) hide show
  1. package/THIRDPARTY.txt +6 -6
  2. package/package.json +1 -1
  3. package/src/jquery.sap.global.js +40 -111
  4. package/src/jquery.sap.properties.js +7 -1
  5. package/src/jquery.sap.resources.js +1 -1
  6. package/src/jquery.sap.script.js +5 -3
  7. package/src/jquery.sap.storage.js +6 -3
  8. package/src/sap/base/Event.js +32 -78
  9. package/src/sap/base/Eventing.js +114 -271
  10. package/src/sap/base/Log.js +21 -1
  11. package/src/sap/base/config.js +14 -9
  12. package/src/sap/base/i18n/Formatting.js +378 -250
  13. package/src/sap/base/i18n/LanguageTag.js +64 -66
  14. package/src/sap/base/i18n/Localization.js +124 -85
  15. package/src/sap/base/i18n/ResourceBundle.js +1 -1
  16. package/src/sap/base/i18n/date/CalendarType.js +2 -2
  17. package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
  18. package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
  19. package/src/sap/base/util/LoaderExtensions.js +8 -2
  20. package/src/sap/base/util/mixedFetch.js +1 -0
  21. package/src/sap/base/util/resolveReference.js +31 -13
  22. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  23. package/src/sap/base/util/restricted/_castArray.js +1 -1
  24. package/src/sap/base/util/restricted/_compact.js +1 -1
  25. package/src/sap/base/util/restricted/_curry.js +1 -1
  26. package/src/sap/base/util/restricted/_debounce.js +1 -1
  27. package/src/sap/base/util/restricted/_difference.js +1 -1
  28. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  29. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  30. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  31. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  32. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  33. package/src/sap/base/util/restricted/_flatten.js +1 -1
  34. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  35. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  36. package/src/sap/base/util/restricted/_intersection.js +1 -1
  37. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  38. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  39. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  40. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  41. package/src/sap/base/util/restricted/_isNil.js +1 -1
  42. package/src/sap/base/util/restricted/_max.js +1 -1
  43. package/src/sap/base/util/restricted/_merge.js +1 -1
  44. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  45. package/src/sap/base/util/restricted/_min.js +1 -1
  46. package/src/sap/base/util/restricted/_omit.js +1 -1
  47. package/src/sap/base/util/restricted/_pick.js +1 -1
  48. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  49. package/src/sap/base/util/restricted/_throttle.js +1 -1
  50. package/src/sap/base/util/restricted/_toArray.js +1 -1
  51. package/src/sap/base/util/restricted/_union.js +1 -1
  52. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  53. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  54. package/src/sap/base/util/restricted/_uniq.js +1 -1
  55. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  56. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  57. package/src/sap/base/util/restricted/_without.js +1 -1
  58. package/src/sap/base/util/restricted/_xor.js +1 -1
  59. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  60. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  61. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  62. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  63. package/src/sap/base/util/syncFetch.js +1 -0
  64. package/src/sap/ui/Device.js +3 -3
  65. package/src/sap/ui/Global.js +6 -7
  66. package/src/sap/ui/base/BindingInfo.js +3 -3
  67. package/src/sap/ui/base/BindingParser.js +5 -2
  68. package/src/sap/ui/base/DataType.js +57 -1
  69. package/src/sap/ui/base/DesignTime.js +69 -0
  70. package/src/sap/ui/base/Event.js +2 -2
  71. package/src/sap/ui/base/EventProvider.js +1 -1
  72. package/src/sap/ui/base/ExpressionParser.js +25 -4
  73. package/src/sap/ui/base/Interface.js +1 -1
  74. package/src/sap/ui/base/ManagedObject.js +102 -29
  75. package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
  76. package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
  77. package/src/sap/ui/base/Metadata.js +3 -3
  78. package/src/sap/ui/base/Object.js +19 -1
  79. package/src/sap/ui/base/ObjectPool.js +1 -1
  80. package/src/sap/ui/core/.library +3 -3
  81. package/src/sap/ui/core/AnimationMode.js +2 -2
  82. package/src/sap/ui/core/AppCacheBuster.js +30 -18
  83. package/src/sap/ui/core/BusyIndicator.js +1 -1
  84. package/src/sap/ui/core/CalendarType.js +6 -0
  85. package/src/sap/ui/core/Component.js +150 -80
  86. package/src/sap/ui/core/ComponentContainer.js +4 -3
  87. package/src/sap/ui/core/ComponentMetadata.js +3 -4
  88. package/src/sap/ui/core/ComponentSupport.js +1 -1
  89. package/src/sap/ui/core/Configuration.js +390 -706
  90. package/src/sap/ui/core/Control.js +1 -1
  91. package/src/sap/ui/core/ControlBehavior.js +37 -28
  92. package/src/sap/ui/core/Core.js +327 -151
  93. package/src/sap/ui/core/CustomData.js +1 -1
  94. package/src/sap/ui/core/DeclarativeSupport.js +3 -1
  95. package/src/sap/ui/core/Element.js +18 -8
  96. package/src/sap/ui/core/ElementMetadata.js +1 -1
  97. package/src/sap/ui/core/EnabledPropagator.js +3 -2
  98. package/src/sap/ui/core/EventBus.js +1 -1
  99. package/src/sap/ui/core/Fragment.js +1 -1
  100. package/src/sap/ui/core/HTML.js +1 -1
  101. package/src/sap/ui/core/History.js +1 -1
  102. package/src/sap/ui/core/Icon.js +1 -1
  103. package/src/sap/ui/core/IndicationColorSupport.js +13 -1
  104. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  105. package/src/sap/ui/core/InvisibleMessage.js +2 -3
  106. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  107. package/src/sap/ui/core/InvisibleText.js +17 -1
  108. package/src/sap/ui/core/Item.js +1 -1
  109. package/src/sap/ui/core/LabelEnablement.js +8 -1
  110. package/src/sap/ui/core/LayoutData.js +1 -1
  111. package/src/sap/ui/core/Lib.js +195 -29
  112. package/src/sap/ui/core/ListItem.js +1 -1
  113. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  114. package/src/sap/ui/core/Locale.js +1 -1
  115. package/src/sap/ui/core/LocaleData.js +118 -32
  116. package/src/sap/ui/core/Manifest.js +4 -2
  117. package/src/sap/ui/core/Message.js +1 -1
  118. package/src/sap/ui/core/Placeholder.js +18 -0
  119. package/src/sap/ui/core/Popup.js +5 -0
  120. package/src/sap/ui/core/RenderManager.js +21 -17
  121. package/src/sap/ui/core/Renderer.js +1 -1
  122. package/src/sap/ui/core/Rendering.js +51 -47
  123. package/src/sap/ui/core/ResizeHandler.js +2 -2
  124. package/src/sap/ui/core/ScrollBar.js +1 -1
  125. package/src/sap/ui/core/SeparatorItem.js +1 -1
  126. package/src/sap/ui/core/Shortcut.js +5 -3
  127. package/src/sap/ui/core/Supportability.js +146 -0
  128. package/src/sap/ui/core/Theming.js +130 -88
  129. package/src/sap/ui/core/Title.js +1 -1
  130. package/src/sap/ui/core/TooltipBase.js +4 -3
  131. package/src/sap/ui/core/UIArea.js +1 -4
  132. package/src/sap/ui/core/UIComponent.js +38 -12
  133. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  134. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  135. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  136. package/src/sap/ui/core/XMLComposite.js +1 -1
  137. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  138. package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
  139. package/src/sap/ui/core/_IconRegistry.js +13 -6
  140. package/src/sap/ui/core/cldr/ar.json +143 -137
  141. package/src/sap/ui/core/cldr/ar_EG.json +143 -137
  142. package/src/sap/ui/core/cldr/ar_SA.json +143 -137
  143. package/src/sap/ui/core/cldr/bg.json +423 -423
  144. package/src/sap/ui/core/cldr/ca.json +541 -494
  145. package/src/sap/ui/core/cldr/cs.json +475 -364
  146. package/src/sap/ui/core/cldr/cy.json +656 -477
  147. package/src/sap/ui/core/cldr/da.json +334 -275
  148. package/src/sap/ui/core/cldr/de.json +388 -291
  149. package/src/sap/ui/core/cldr/de_AT.json +388 -291
  150. package/src/sap/ui/core/cldr/de_CH.json +394 -297
  151. package/src/sap/ui/core/cldr/el.json +169 -166
  152. package/src/sap/ui/core/cldr/el_CY.json +169 -166
  153. package/src/sap/ui/core/cldr/en.json +558 -521
  154. package/src/sap/ui/core/cldr/en_AU.json +558 -520
  155. package/src/sap/ui/core/cldr/en_GB.json +476 -439
  156. package/src/sap/ui/core/cldr/en_HK.json +520 -482
  157. package/src/sap/ui/core/cldr/en_IE.json +486 -448
  158. package/src/sap/ui/core/cldr/en_IN.json +466 -428
  159. package/src/sap/ui/core/cldr/en_NZ.json +506 -468
  160. package/src/sap/ui/core/cldr/en_PG.json +506 -468
  161. package/src/sap/ui/core/cldr/en_SG.json +506 -468
  162. package/src/sap/ui/core/cldr/en_ZA.json +486 -448
  163. package/src/sap/ui/core/cldr/es.json +473 -468
  164. package/src/sap/ui/core/cldr/es_AR.json +445 -440
  165. package/src/sap/ui/core/cldr/es_BO.json +479 -474
  166. package/src/sap/ui/core/cldr/es_CL.json +469 -464
  167. package/src/sap/ui/core/cldr/es_CO.json +387 -381
  168. package/src/sap/ui/core/cldr/es_MX.json +502 -497
  169. package/src/sap/ui/core/cldr/es_PE.json +455 -450
  170. package/src/sap/ui/core/cldr/es_UY.json +479 -474
  171. package/src/sap/ui/core/cldr/es_VE.json +499 -494
  172. package/src/sap/ui/core/cldr/et.json +378 -320
  173. package/src/sap/ui/core/cldr/fa.json +104 -104
  174. package/src/sap/ui/core/cldr/fi.json +401 -315
  175. package/src/sap/ui/core/cldr/fr.json +391 -385
  176. package/src/sap/ui/core/cldr/fr_BE.json +391 -385
  177. package/src/sap/ui/core/cldr/fr_CA.json +499 -493
  178. package/src/sap/ui/core/cldr/fr_CH.json +334 -328
  179. package/src/sap/ui/core/cldr/fr_LU.json +391 -385
  180. package/src/sap/ui/core/cldr/he.json +291 -159
  181. package/src/sap/ui/core/cldr/hi.json +157 -128
  182. package/src/sap/ui/core/cldr/hr.json +514 -461
  183. package/src/sap/ui/core/cldr/hu.json +287 -257
  184. package/src/sap/ui/core/cldr/id.json +463 -416
  185. package/src/sap/ui/core/cldr/it.json +468 -413
  186. package/src/sap/ui/core/cldr/it_CH.json +468 -413
  187. package/src/sap/ui/core/cldr/ja.json +98 -61
  188. package/src/sap/ui/core/cldr/kk.json +631 -571
  189. package/src/sap/ui/core/cldr/ko.json +79 -71
  190. package/src/sap/ui/core/cldr/lt.json +361 -270
  191. package/src/sap/ui/core/cldr/lv.json +234 -242
  192. package/src/sap/ui/core/cldr/ms.json +463 -408
  193. package/src/sap/ui/core/cldr/nb.json +176 -143
  194. package/src/sap/ui/core/cldr/nl.json +463 -393
  195. package/src/sap/ui/core/cldr/nl_BE.json +463 -393
  196. package/src/sap/ui/core/cldr/pl.json +633 -344
  197. package/src/sap/ui/core/cldr/pt.json +447 -336
  198. package/src/sap/ui/core/cldr/pt_PT.json +488 -449
  199. package/src/sap/ui/core/cldr/ro.json +477 -383
  200. package/src/sap/ui/core/cldr/ru.json +367 -332
  201. package/src/sap/ui/core/cldr/ru_UA.json +361 -326
  202. package/src/sap/ui/core/cldr/sk.json +502 -537
  203. package/src/sap/ui/core/cldr/sl.json +168 -161
  204. package/src/sap/ui/core/cldr/sr.json +276 -225
  205. package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
  206. package/src/sap/ui/core/cldr/sv.json +420 -346
  207. package/src/sap/ui/core/cldr/th.json +117 -94
  208. package/src/sap/ui/core/cldr/tr.json +413 -359
  209. package/src/sap/ui/core/cldr/uk.json +395 -368
  210. package/src/sap/ui/core/cldr/vi.json +392 -379
  211. package/src/sap/ui/core/cldr/zh_CN.json +91 -33
  212. package/src/sap/ui/core/cldr/zh_HK.json +90 -32
  213. package/src/sap/ui/core/cldr/zh_SG.json +90 -32
  214. package/src/sap/ui/core/cldr/zh_TW.json +75 -51
  215. package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
  216. package/src/sap/ui/core/date/UI5Date.js +1 -1
  217. package/src/sap/ui/core/date/_Calendars.js +5 -2
  218. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  219. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  220. package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
  221. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  222. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  223. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  224. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  225. package/src/sap/ui/core/format/DateFormat.js +33 -21
  226. package/src/sap/ui/core/format/NumberFormat.js +3 -2
  227. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  228. package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
  229. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  230. package/src/sap/ui/core/library.js +128 -8
  231. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  232. package/src/sap/ui/core/message/Message.js +2 -2
  233. package/src/sap/ui/core/message/MessageManager.js +1 -1
  234. package/src/sap/ui/core/message/MessageParser.js +1 -1
  235. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  236. package/src/sap/ui/core/message/MessageType.js +2 -1
  237. package/src/sap/ui/core/messagebundle.properties +24 -0
  238. package/src/sap/ui/core/messagebundle_ar.properties +15 -3
  239. package/src/sap/ui/core/messagebundle_bg.properties +14 -2
  240. package/src/sap/ui/core/messagebundle_ca.properties +13 -1
  241. package/src/sap/ui/core/messagebundle_cs.properties +15 -3
  242. package/src/sap/ui/core/messagebundle_cy.properties +16 -4
  243. package/src/sap/ui/core/messagebundle_da.properties +15 -3
  244. package/src/sap/ui/core/messagebundle_de.properties +15 -3
  245. package/src/sap/ui/core/messagebundle_el.properties +16 -4
  246. package/src/sap/ui/core/messagebundle_en.properties +12 -0
  247. package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
  248. package/src/sap/ui/core/messagebundle_es.properties +15 -3
  249. package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
  250. package/src/sap/ui/core/messagebundle_et.properties +15 -3
  251. package/src/sap/ui/core/messagebundle_fi.properties +15 -3
  252. package/src/sap/ui/core/messagebundle_fr.properties +15 -3
  253. package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
  254. package/src/sap/ui/core/messagebundle_hi.properties +16 -4
  255. package/src/sap/ui/core/messagebundle_hr.properties +14 -2
  256. package/src/sap/ui/core/messagebundle_hu.properties +16 -4
  257. package/src/sap/ui/core/messagebundle_id.properties +15 -3
  258. package/src/sap/ui/core/messagebundle_it.properties +17 -5
  259. package/src/sap/ui/core/messagebundle_iw.properties +15 -3
  260. package/src/sap/ui/core/messagebundle_ja.properties +25 -13
  261. package/src/sap/ui/core/messagebundle_kk.properties +15 -3
  262. package/src/sap/ui/core/messagebundle_ko.properties +14 -2
  263. package/src/sap/ui/core/messagebundle_lt.properties +15 -3
  264. package/src/sap/ui/core/messagebundle_lv.properties +15 -3
  265. package/src/sap/ui/core/messagebundle_mk.properties +352 -0
  266. package/src/sap/ui/core/messagebundle_ms.properties +15 -3
  267. package/src/sap/ui/core/messagebundle_nl.properties +15 -3
  268. package/src/sap/ui/core/messagebundle_no.properties +14 -2
  269. package/src/sap/ui/core/messagebundle_pl.properties +15 -3
  270. package/src/sap/ui/core/messagebundle_pt.properties +15 -3
  271. package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
  272. package/src/sap/ui/core/messagebundle_ro.properties +15 -3
  273. package/src/sap/ui/core/messagebundle_ru.properties +15 -3
  274. package/src/sap/ui/core/messagebundle_sh.properties +43 -31
  275. package/src/sap/ui/core/messagebundle_sk.properties +16 -4
  276. package/src/sap/ui/core/messagebundle_sl.properties +15 -3
  277. package/src/sap/ui/core/messagebundle_sv.properties +22 -10
  278. package/src/sap/ui/core/messagebundle_th.properties +15 -3
  279. package/src/sap/ui/core/messagebundle_tr.properties +15 -3
  280. package/src/sap/ui/core/messagebundle_uk.properties +18 -6
  281. package/src/sap/ui/core/messagebundle_vi.properties +18 -6
  282. package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
  283. package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
  284. package/src/sap/ui/core/mvc/Controller.js +22 -16
  285. package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
  286. package/src/sap/ui/core/mvc/HTMLView.js +2 -2
  287. package/src/sap/ui/core/mvc/JSONView.js +4 -1
  288. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
  289. package/src/sap/ui/core/mvc/JSView.js +1 -1
  290. package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
  291. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  292. package/src/sap/ui/core/mvc/View.js +24 -14
  293. package/src/sap/ui/core/mvc/ViewType.js +2 -0
  294. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  295. package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
  296. package/src/sap/ui/core/plugin/LessSupport.js +3 -1
  297. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  298. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  299. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  300. package/src/sap/ui/core/routing/Router.js +2 -4
  301. package/src/sap/ui/core/routing/Target.js +1 -3
  302. package/src/sap/ui/core/routing/Targets.js +2 -3
  303. package/src/sap/ui/core/routing/Views.js +2 -3
  304. package/src/sap/ui/core/routing/async/Target.js +1 -1
  305. package/src/sap/ui/core/rules/Config.support.js +11 -17
  306. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  307. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  308. package/src/sap/ui/core/service/Service.js +1 -1
  309. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  310. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  311. package/src/sap/ui/core/support/Hotkeys.js +5 -3
  312. package/src/sap/ui/core/support/Plugin.js +1 -1
  313. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
  314. package/src/sap/ui/core/support/Support.js +3 -5
  315. package/src/sap/ui/core/support/ToolsAPI.js +15 -11
  316. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  317. package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
  318. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  319. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  320. package/src/sap/ui/core/support/plugins/Selector.js +7 -5
  321. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  322. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  323. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  324. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
  325. package/src/sap/ui/core/syncStyleClass.js +2 -2
  326. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  327. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  328. package/src/sap/ui/core/themes/base/global.less +9 -9
  329. package/src/sap/ui/core/theming/Parameters.js +18 -19
  330. package/src/sap/ui/core/theming/ThemeManager.js +23 -4
  331. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  332. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  333. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  334. package/src/sap/ui/core/tmpl/Template.js +1 -1
  335. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  336. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  337. package/src/sap/ui/core/util/Export.js +1 -1
  338. package/src/sap/ui/core/util/ExportCell.js +1 -1
  339. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  340. package/src/sap/ui/core/util/ExportRow.js +1 -1
  341. package/src/sap/ui/core/util/ExportType.js +1 -1
  342. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  343. package/src/sap/ui/core/util/File.js +1 -1
  344. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  345. package/src/sap/ui/core/util/MockServer.js +1 -1
  346. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  347. package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
  348. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  349. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  350. package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
  351. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  352. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  353. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  354. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  355. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  356. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  357. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  358. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  359. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  360. package/src/sap/ui/debug/ControlTree.js +1 -1
  361. package/src/sap/ui/debug/DebugEnv.js +29 -7
  362. package/src/sap/ui/debug/PropertyList.js +1 -1
  363. package/src/sap/ui/model/ClientListBinding.js +3 -1
  364. package/src/sap/ui/model/ClientModel.js +1 -1
  365. package/src/sap/ui/model/ClientTreeBinding.js +3 -1
  366. package/src/sap/ui/model/CompositeDataState.js +1 -1
  367. package/src/sap/ui/model/CompositeType.js +1 -1
  368. package/src/sap/ui/model/DataState.js +2 -2
  369. package/src/sap/ui/model/Filter.js +39 -1
  370. package/src/sap/ui/model/FilterProcessor.js +12 -2
  371. package/src/sap/ui/model/ListBinding.js +5 -0
  372. package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
  373. package/src/sap/ui/model/MetaModel.js +1 -1
  374. package/src/sap/ui/model/Model.js +5 -1
  375. package/src/sap/ui/model/SelectionModel.js +1 -1
  376. package/src/sap/ui/model/SimpleType.js +1 -1
  377. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  378. package/src/sap/ui/model/TreeBinding.js +3 -0
  379. package/src/sap/ui/model/Type.js +1 -1
  380. package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
  381. package/src/sap/ui/model/json/JSONListBinding.js +3 -1
  382. package/src/sap/ui/model/json/JSONModel.js +1 -1
  383. package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
  384. package/src/sap/ui/model/message/MessageListBinding.js +3 -0
  385. package/src/sap/ui/model/message/MessageModel.js +1 -1
  386. package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
  387. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  388. package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
  389. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  390. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  391. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  392. package/src/sap/ui/model/odata/ODataModel.js +9 -5
  393. package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
  394. package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
  395. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
  396. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  397. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  398. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  399. package/src/sap/ui/model/odata/type/Date.js +1 -1
  400. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  401. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  402. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  403. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  404. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  405. package/src/sap/ui/model/odata/type/Double.js +1 -1
  406. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  407. package/src/sap/ui/model/odata/type/Int.js +1 -1
  408. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  409. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  410. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  411. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  412. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  413. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  414. package/src/sap/ui/model/odata/type/Single.js +1 -1
  415. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  416. package/src/sap/ui/model/odata/type/String.js +1 -1
  417. package/src/sap/ui/model/odata/type/Time.js +1 -1
  418. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  419. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  420. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  421. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  422. package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
  423. package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
  424. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
  425. package/src/sap/ui/model/odata/v4/Context.js +81 -7
  426. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
  427. package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
  428. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
  429. package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
  430. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
  431. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
  432. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
  433. package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
  434. package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
  435. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
  436. package/src/sap/ui/model/resource/ResourceModel.js +5 -6
  437. package/src/sap/ui/model/type/Boolean.js +1 -1
  438. package/src/sap/ui/model/type/Currency.js +1 -1
  439. package/src/sap/ui/model/type/Date.js +1 -1
  440. package/src/sap/ui/model/type/DateInterval.js +1 -1
  441. package/src/sap/ui/model/type/DateTime.js +1 -1
  442. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  443. package/src/sap/ui/model/type/FileSize.js +1 -1
  444. package/src/sap/ui/model/type/Float.js +1 -1
  445. package/src/sap/ui/model/type/Integer.js +1 -1
  446. package/src/sap/ui/model/type/String.js +1 -1
  447. package/src/sap/ui/model/type/Time.js +1 -1
  448. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  449. package/src/sap/ui/model/type/Unit.js +1 -1
  450. package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
  451. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  452. package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
  453. package/src/sap/ui/performance/BeaconRequest.js +2 -2
  454. package/src/sap/ui/qunit/QUnitUtils.js +64 -45
  455. package/src/sap/ui/qunit/qunit-coverage.js +6 -0
  456. package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
  457. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  458. package/src/sap/ui/security/Security.js +128 -0
  459. package/src/sap/ui/test/BlanketReporter.js +2 -3
  460. package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
  461. package/src/sap/ui/test/BranchTracking.js +2 -3
  462. package/src/sap/ui/test/ModuleTracking.js +48 -20
  463. package/src/sap/ui/test/OpaExtension.js +3 -3
  464. package/src/sap/ui/test/OpaPlugin.js +16 -6
  465. package/src/sap/ui/test/TestUtils.js +7 -4
  466. package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
  467. package/src/sap/ui/test/_ControlFinder.js +3 -2
  468. package/src/sap/ui/test/_LogCollector.js +1 -0
  469. package/src/sap/ui/test/_UsageReport.js +115 -114
  470. package/src/sap/ui/test/actions/EnterText.js +20 -2
  471. package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
  472. package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
  473. package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
  474. package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
  475. package/src/sap/ui/test/generic/TestBase.js +1 -1
  476. package/src/sap/ui/test/generic/Utils.js +1 -1
  477. package/src/sap/ui/test/matchers/LabelFor.js +2 -12
  478. package/src/sap/ui/test/matchers/Matcher.js +1 -1
  479. package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
  480. package/src/sap/ui/test/selectors/_Selector.js +1 -1
  481. package/src/sap/ui/util/Storage.js +1 -1
  482. package/src/ui5loader-autoconfig.js +84 -11
  483. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
  484. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
  485. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
  486. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
  487. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
  488. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
  489. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
  490. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
  491. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
  492. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
  493. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
  494. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
  495. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
  496. package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
  497. package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
  498. package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
  499. package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
  500. package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
  501. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
  502. package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
  503. package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
  504. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
  505. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
  506. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
  507. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
  508. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
  509. package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
  510. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
  511. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
  512. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
  513. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
  514. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
  515. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
  516. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
  517. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
  518. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
  519. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
  520. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
  521. package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
  522. package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
  523. package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
  524. package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
  525. package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
  526. package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
  527. package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
  528. package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
  529. package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
  530. package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
  531. package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
  532. package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
  533. package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
  534. package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
  535. package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
  536. package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
  537. package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
  538. package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
  539. package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
  540. package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
  541. package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
  542. package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
  543. package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
  544. package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
  545. package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
  546. package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
  547. package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
  548. package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
  549. package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
  550. package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
  551. package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
  552. package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
  553. package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
  554. package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
  555. package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
  556. package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
  557. package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
  558. package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
  559. package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
  560. package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
  561. package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
  562. package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
  563. package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
  564. package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
  565. package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
  566. package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
  567. package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
  568. package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
  569. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
  570. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
  571. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
  572. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
  573. package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
  574. package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
  575. package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
  576. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
  577. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
  578. package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
  579. package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
  580. package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
  581. package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
  582. package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
  583. package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
  584. package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
  585. package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
  586. package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
  587. package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
  588. package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
  589. package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
  590. package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
  591. package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
  592. package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
  593. package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
  594. package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
  595. package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
  596. package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
  597. package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
  598. package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
  599. package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
  600. package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
  601. package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
  602. package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
  603. package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
  604. package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
  605. package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
  606. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
  607. package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
  608. package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
  609. package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
  610. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
  611. package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
  612. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
  613. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
  614. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
  615. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
  616. package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
  617. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
  618. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
  619. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
  620. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
  621. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
  622. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
  623. package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
  624. package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
  625. package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
  626. package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
  627. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
  628. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
  629. package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
  630. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
  631. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
  632. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
  633. package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
  634. package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
  635. package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
  636. package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
  637. package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
  638. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
  639. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
  640. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
  641. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
  642. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
  643. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
  644. package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
  645. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
  646. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
  647. package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
  648. package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
  649. package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
  650. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
  651. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
  652. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
  653. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
  654. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
  655. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
  656. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
  657. package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
  658. package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
  659. package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
  660. package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
  661. package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
  662. package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
  663. package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
  664. package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
  665. package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
  666. package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
  667. package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
  668. package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
  669. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
  670. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
  671. package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
  672. package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
  673. package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
  674. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
  675. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
  676. package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
  677. package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
  678. package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
  679. package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
  680. package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
  681. package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
  682. package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
  683. package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
  684. package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
  685. package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
  686. package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
  687. package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
  688. package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
  689. package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
  690. package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
  691. package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
  692. package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
  693. package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
  694. package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
  695. package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
  696. package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
  697. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
  698. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
  699. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
  700. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
  701. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
  702. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
  703. package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
  704. package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
  705. package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
  706. package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
  707. package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
  708. package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
  709. package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
  710. package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
  711. package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
  712. package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
  713. package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
  714. package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
  715. package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
  716. package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
  717. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
  718. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
  719. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
  720. package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
  721. package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
  722. package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
  723. package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
  724. package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
  725. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
  726. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
  727. package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
  728. package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
  729. package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
  730. package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
  731. package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
  732. package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
  733. package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
  734. package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
  735. package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
  736. package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
  737. package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
  738. package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
  739. package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
  740. package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
  741. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
  742. package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
  743. package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
  744. package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
  745. package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
  746. package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
  747. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
  748. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
  749. package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
  750. package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
  751. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
  752. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
  753. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
  754. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
  755. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
  756. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
  757. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
  758. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
  759. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
  760. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
  761. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
  762. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
  763. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
  764. package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
  765. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
  766. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
  767. package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
  768. package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
  769. package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
  770. package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
  771. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
  772. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
  773. package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
  774. package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
  775. package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
  776. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
  777. package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
  778. package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
  779. package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
  780. package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
  781. package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
  782. package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
  783. package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
  784. package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
  785. package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
  786. package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
  787. package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
  788. package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
  789. package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
  790. package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
  791. package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
  792. package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
  793. package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
  794. package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
  795. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
  796. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
  797. package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
  798. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
  799. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
  800. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
  801. package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
  802. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
  803. package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
  804. package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
  805. package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
  806. package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
  807. package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
  808. package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
  809. package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
  810. package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
  811. package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
  812. package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
  813. package/test/sap/ui/core/terminologies/App.controller.js +2 -3
  814. package/test/sap/ui/core/terminologies/main.js +2 -3
  815. package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
  816. package/src/sap/ui/core/ConfigTest.js +0 -17
  817. package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
  818. package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
  819. package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
  820. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
  821. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
  822. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
  823. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
  824. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
  825. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
  826. package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
  827. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
  828. package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
@@ -1,7 +1,7 @@
1
1
  {
2
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
- "__version": "41.0.0",
4
- "__buildtime": "2022-12-19T09:41:25.319Z",
3
+ "__version": "43.0.0",
4
+ "__buildtime": "2023-09-28T11:39:07.908Z",
5
5
  "languages": {
6
6
  "aa": "афарська",
7
7
  "ab": "абхазька",
@@ -22,6 +22,7 @@
22
22
  "am": "амхарська",
23
23
  "an": "арагонська",
24
24
  "ang": "давньоанглійська",
25
+ "ann": "оболо",
25
26
  "anp": "ангіка",
26
27
  "ar": "арабська",
27
28
  "ar_001": "сучасна стандартна арабська",
@@ -37,6 +38,7 @@
37
38
  "asa": "асу",
38
39
  "ase": "американська мова рухів",
39
40
  "ast": "астурійська",
41
+ "atj": "атикамек",
40
42
  "av": "аварська",
41
43
  "awa": "авадхі",
42
44
  "ay": "аймара",
@@ -97,29 +99,35 @@
97
99
  "chm": "марійська",
98
100
  "chn": "чинук жаргон",
99
101
  "cho": "чокто",
100
- "chp": "чіпевʼян",
102
+ "chp": "чипевʼян",
101
103
  "chr": "черокі",
102
104
  "chy": "чейєнн",
103
105
  "ckb": "центральнокурдська",
104
106
  "ckb_alt-menu": "курдська, сорані",
105
107
  "ckb_alt-variant": "сорані",
108
+ "clc": "чилкотін",
106
109
  "co": "корсиканська",
107
110
  "cop": "коптська",
108
111
  "cr": "крі",
112
+ "crg": "мічиф",
109
113
  "crh": "кримськотатарська",
114
+ "crj": "південно-східна крі",
115
+ "crk": "рівнинна крі",
116
+ "crl": "північна іст-крі",
117
+ "crm": "муз-крі",
118
+ "crr": "каролінська алгонкінська",
110
119
  "crs": "сейшельська креольська",
111
120
  "cs": "чеська",
112
121
  "csb": "кашубська",
122
+ "csw": "свампі-крі",
113
123
  "cu": "церковнословʼянська",
114
124
  "cv": "чуваська",
115
125
  "cy": "валлійська",
116
126
  "da": "данська",
117
127
  "dak": "дакота",
118
128
  "dar": "даргінська",
119
- "dav": "таіта",
129
+ "dav": "таїта",
120
130
  "de": "німецька",
121
- "de_AT": "німецька (Австрія)",
122
- "de_CH": "швейцарська верхньонімецька",
123
131
  "del": "делаварська",
124
132
  "den": "слейв",
125
133
  "dgr": "догрибська",
@@ -129,7 +137,7 @@
129
137
  "dsb": "нижньолужицька",
130
138
  "dua": "дуала",
131
139
  "dum": "середньонідерландська",
132
- "dv": "дівехі",
140
+ "dv": "дивехі",
133
141
  "dyo": "дьола-фоні",
134
142
  "dyu": "діула",
135
143
  "dz": "дзонг-ке",
@@ -142,12 +150,8 @@
142
150
  "el": "грецька",
143
151
  "elx": "еламська",
144
152
  "en": "англійська",
145
- "en_AU": "англійська (Австралія)",
146
- "en_CA": "англійська (Канада)",
147
- "en_GB": "англійська (Велика Британія)",
148
153
  "en_GB-alt-short": "англійська (Брит.)",
149
- "en_US": "американська англійська",
150
- "en_US-alt-short": "американська англійська",
154
+ "en_US-alt-short": "англійська (США)",
151
155
  "enm": "середньоанглійська",
152
156
  "eo": "есперанто",
153
157
  "es": "іспанська",
@@ -168,8 +172,6 @@
168
172
  "fo": "фарерська",
169
173
  "fon": "фон",
170
174
  "fr": "французька",
171
- "fr_CA": "канадська французька",
172
- "fr_CH": "швейцарська французька",
173
175
  "frc": "кажунська французька",
174
176
  "frm": "середньофранцузька",
175
177
  "fro": "давньофранцузька",
@@ -205,8 +207,10 @@
205
207
  "hai": "хайда",
206
208
  "hak": "хаккаська",
207
209
  "haw": "гавайська",
210
+ "hax": "південна гайда",
208
211
  "he": "іврит",
209
212
  "hi": "гінді",
213
+ "hi_Latn-alt-variant": "гінгліш",
210
214
  "hil": "хілігайнон",
211
215
  "hit": "хітіті",
212
216
  "hmn": "хмонг",
@@ -217,6 +221,7 @@
217
221
  "ht": "гаїтянська креольська",
218
222
  "hu": "угорська",
219
223
  "hup": "хупа",
224
+ "hur": "галкомелем",
220
225
  "hy": "вірменська",
221
226
  "hz": "гереро",
222
227
  "ia": "інтерлінгва",
@@ -227,12 +232,13 @@
227
232
  "ig": "ігбо",
228
233
  "ii": "сичуаньська ї",
229
234
  "ik": "інупіак",
235
+ "ikt": "західноканадська інуктитут",
230
236
  "ilo": "ілоканська",
231
237
  "inh": "інгуська",
232
238
  "io": "ідо",
233
239
  "is": "ісландська",
234
240
  "it": "італійська",
235
- "iu": "інуктітут",
241
+ "iu": "інуктитут",
236
242
  "ja": "японська",
237
243
  "jbo": "ложбан",
238
244
  "jgo": "нгомба",
@@ -254,10 +260,10 @@
254
260
  "kea": "кабувердіану",
255
261
  "kfo": "коро",
256
262
  "kg": "конґолезька",
257
- "kgp": "kgp",
263
+ "kgp": "кайнґанґ",
258
264
  "kha": "кхасі",
259
265
  "kho": "хотаносакська",
260
- "khq": "койра чіїні",
266
+ "khq": "койра чиїні",
261
267
  "ki": "кікуйю",
262
268
  "kj": "кунама",
263
269
  "kk": "казахська",
@@ -285,9 +291,10 @@
285
291
  "kut": "кутенаї",
286
292
  "kv": "комі",
287
293
  "kw": "корнська",
294
+ "kwk": "кваквала",
288
295
  "ky": "киргизька",
289
296
  "la": "латинська",
290
- "lad": "ладіно",
297
+ "lad": "ладино",
291
298
  "lag": "лангі",
292
299
  "lah": "ланда",
293
300
  "lam": "ламба",
@@ -295,14 +302,17 @@
295
302
  "lez": "лезгінська",
296
303
  "lg": "ганда",
297
304
  "li": "лімбургійська",
298
- "lij": "lij",
305
+ "lij": "лігурійська",
306
+ "lil": "лілуетська",
299
307
  "lkt": "лакота",
308
+ "lmo": "ломбардська",
300
309
  "ln": "лінгала",
301
310
  "lo": "лаоська",
302
311
  "lol": "монго",
303
312
  "lou": "луїзіанська креольська",
304
313
  "loz": "лозі",
305
314
  "lrc": "північнолурська",
315
+ "lsm": "самія",
306
316
  "lt": "литовська",
307
317
  "lu": "луба-катанга",
308
318
  "lua": "луба-лулуа",
@@ -338,6 +348,7 @@
338
348
  "mn": "монгольська",
339
349
  "mnc": "манчжурська",
340
350
  "mni": "маніпурі",
351
+ "moe": "інну-аймун",
341
352
  "moh": "магавк",
342
353
  "mos": "моссі",
343
354
  "mr": "маратхі",
@@ -387,6 +398,11 @@
387
398
  "nzi": "нзіма",
388
399
  "oc": "окситанська",
389
400
  "oj": "оджібва",
401
+ "ojb": "північно-західна оджибве",
402
+ "ojc": "центральна оджибве",
403
+ "ojs": "оджи-крі",
404
+ "ojw": "західна оджибве",
405
+ "oka": "оканаганська",
390
406
  "om": "оромо",
391
407
  "or": "одія",
392
408
  "os": "осетинська",
@@ -402,8 +418,10 @@
402
418
  "peo": "давньоперська",
403
419
  "phn": "фінікійсько-пунічна",
404
420
  "pi": "палі",
421
+ "pis": "піджин",
405
422
  "pl": "польська",
406
423
  "pon": "понапе",
424
+ "pqm": "малесіт-пасамакводі",
407
425
  "prg": "прусська",
408
426
  "pro": "давньопровансальська",
409
427
  "ps": "пушту",
@@ -455,6 +473,7 @@
455
473
  "sid": "сідамо",
456
474
  "sk": "словацька",
457
475
  "sl": "словенська",
476
+ "slh": "південна лушуцид",
458
477
  "sm": "самоанська",
459
478
  "sma": "південносаамська",
460
479
  "smj": "саамська луле",
@@ -468,9 +487,10 @@
468
487
  "sr": "сербська",
469
488
  "srn": "сранан тонго",
470
489
  "srr": "серер",
471
- "ss": "сісваті",
490
+ "ss": "сисваті",
472
491
  "ssy": "сахо",
473
492
  "st": "південна сото",
493
+ "str": "саліська стрейт",
474
494
  "su": "сунданська",
475
495
  "suk": "сукума",
476
496
  "sus": "сусу",
@@ -482,13 +502,16 @@
482
502
  "syc": "сирійська класична",
483
503
  "syr": "сирійська",
484
504
  "ta": "тамільська",
505
+ "tce": "південна тутчон",
485
506
  "te": "телугу",
486
507
  "tem": "темне",
487
508
  "teo": "тесо",
488
509
  "ter": "терено",
489
510
  "tet": "тетум",
490
511
  "tg": "таджицька",
512
+ "tgx": "тагіш",
491
513
  "th": "тайська",
514
+ "tht": "талтан",
492
515
  "ti": "тигринья",
493
516
  "tig": "тигре",
494
517
  "tiv": "тів",
@@ -501,12 +524,14 @@
501
524
  "tn": "тсвана",
502
525
  "to": "тонганська",
503
526
  "tog": "ньяса тонга",
527
+ "tok": "токі-пона",
504
528
  "tpi": "ток-пісін",
505
529
  "tr": "турецька",
506
530
  "trv": "тароко",
507
531
  "ts": "тсонга",
508
532
  "tsi": "цимшиан",
509
533
  "tt": "татарська",
534
+ "ttm": "північна тутчон",
510
535
  "tum": "тумбука",
511
536
  "tvl": "тувалу",
512
537
  "tw": "тві",
@@ -545,7 +570,7 @@
545
570
  "ybb": "ємба",
546
571
  "yi": "їдиш",
547
572
  "yo": "йоруба",
548
- "yrl": "yrl",
573
+ "yrl": "ньєнґату",
549
574
  "yue": "кантонська",
550
575
  "yue_alt-menu": "китайська кантонська",
551
576
  "za": "чжуан",
@@ -580,7 +605,6 @@
580
605
  "Bass": "басса",
581
606
  "Batk": "батак",
582
607
  "Beng": "бенгальська",
583
- "Bhks": "Bhks",
584
608
  "Blis": "символи Блісса",
585
609
  "Bopo": "бопомофо",
586
610
  "Brah": "брахмі",
@@ -592,31 +616,21 @@
592
616
  "Cari": "каріанський",
593
617
  "Cham": "хамітський",
594
618
  "Cher": "черокі",
595
- "Chrs": "Chrs",
596
619
  "Cirt": "кирт",
597
620
  "Copt": "коптський",
598
- "Cpmn": "Cpmn",
599
621
  "Cprt": "кіпрський",
600
622
  "Cyrl": "кирилиця",
601
623
  "Cyrs": "давньоцерковнословʼянський",
602
624
  "Deva": "деванагарі",
603
- "Diak": "Diak",
604
- "Dogr": "Dogr",
605
625
  "Dsrt": "дезерет",
606
- "Dupl": "Dupl",
607
626
  "Egyd": "єгипетський демотичний",
608
627
  "Egyh": "єгипетський ієратичний",
609
628
  "Egyp": "єгипетський ієрогліфічний",
610
- "Elba": "Elba",
611
- "Elym": "Elym",
612
629
  "Ethi": "ефіопська",
613
630
  "Geok": "кхутсурі",
614
631
  "Geor": "грузинська",
615
632
  "Glag": "глаголичний",
616
- "Gong": "Gong",
617
- "Gonm": "Gonm",
618
633
  "Goth": "готичний",
619
- "Gran": "Gran",
620
634
  "Grek": "грецька",
621
635
  "Gujr": "гуджараті",
622
636
  "Guru": "гурмухі",
@@ -628,12 +642,9 @@
628
642
  "Hans-alt-stand-alone": "китайська спрощена",
629
643
  "Hant": "традиційна",
630
644
  "Hant-alt-stand-alone": "китайська традиційна",
631
- "Hatr": "Hatr",
632
645
  "Hebr": "іврит",
633
646
  "Hira": "хірагана",
634
- "Hluw": "Hluw",
635
647
  "Hmng": "пахау хмонг",
636
- "Hmnp": "Hmnp",
637
648
  "Hrkt": "японські силабарії",
638
649
  "Hung": "давньоугорський",
639
650
  "Inds": "харапський",
@@ -643,11 +654,8 @@
643
654
  "Jpan": "японська",
644
655
  "Kali": "кая лі",
645
656
  "Kana": "катакана",
646
- "Kawi": "Kawi",
647
657
  "Khar": "кхароштхі",
648
658
  "Khmr": "кхмерська",
649
- "Khoj": "Khoj",
650
- "Kits": "Kits",
651
659
  "Knda": "каннада",
652
660
  "Kore": "корейська",
653
661
  "Kthi": "каїті",
@@ -664,41 +672,24 @@
664
672
  "Loma": "лома",
665
673
  "Lyci": "лікійський",
666
674
  "Lydi": "лідійський",
667
- "Mahj": "Mahj",
668
- "Maka": "Maka",
669
675
  "Mand": "мандейський",
670
676
  "Mani": "маніхейський",
671
- "Marc": "Marc",
672
677
  "Maya": "майя ієрогліфічний",
673
- "Medf": "Medf",
674
- "Mend": "Mend",
675
- "Merc": "Merc",
676
678
  "Mero": "мероїтський",
677
679
  "Mlym": "малаяламська",
678
- "Modi": "Modi",
679
680
  "Mong": "монгольська",
680
681
  "Moon": "мун",
681
- "Mroo": "Mroo",
682
682
  "Mtei": "мейтей майєк",
683
- "Mult": "Mult",
684
683
  "Mymr": "мʼянмська",
685
- "Nagm": "Nagm",
686
- "Nand": "Nand",
687
- "Narb": "Narb",
688
- "Nbat": "Nbat",
689
684
  "Newa": "нева",
690
685
  "Nkoo": "нко",
691
- "Nshu": "Nshu",
692
686
  "Ogam": "огамічний",
693
- "Olck": "сантальський",
694
- "Olck-alt-variant": "ол чікі",
687
+ "Olck": "ол-чикі",
688
+ "Olck-alt-variant": "сантальська",
695
689
  "Orkh": "орхонський",
696
690
  "Orya": "орія",
697
691
  "Osge": "осейджиська",
698
692
  "Osma": "османський",
699
- "Ougr": "Ougr",
700
- "Palm": "Palm",
701
- "Pauc": "Pauc",
702
693
  "Perm": "давньопермський",
703
694
  "Phag": "пхагс-па",
704
695
  "Phli": "пехлеві написів",
@@ -709,31 +700,22 @@
709
700
  "Prti": "парфянський",
710
701
  "Qaag": "зоджі",
711
702
  "Rjng": "реджанг",
712
- "Rohg": "Rohg",
703
+ "Rohg": "ханіфі",
713
704
  "Roro": "ронго-ронго",
714
705
  "Runr": "рунічний",
715
706
  "Samr": "самаритянський",
716
707
  "Sara": "сараті",
717
- "Sarb": "Sarb",
718
708
  "Saur": "саураштра",
719
709
  "Sgnw": "знаковий",
720
710
  "Shaw": "шоу",
721
- "Shrd": "Shrd",
722
- "Sidd": "Sidd",
723
- "Sind": "Sind",
724
711
  "Sinh": "сингальська",
725
- "Sogd": "Sogd",
726
- "Sogo": "Sogo",
727
- "Sora": "Sora",
728
- "Soyo": "Soyo",
729
- "Sund": "сунданський",
712
+ "Sund": "сунданська",
730
713
  "Sylo": "сілоті нагрі",
731
- "Syrc": "сирійський",
714
+ "Syrc": "сирійська",
732
715
  "Syre": "давньосирійський естрангело",
733
716
  "Syrj": "давньосирійський західний",
734
717
  "Syrn": "давньосирійський східний",
735
718
  "Tagb": "тагбанва",
736
- "Takr": "Takr",
737
719
  "Tale": "тай-лі",
738
720
  "Talu": "новий тайський луе",
739
721
  "Taml": "тамільська",
@@ -746,20 +728,12 @@
746
728
  "Thaa": "таана",
747
729
  "Thai": "тайська",
748
730
  "Tibt": "тибетська",
749
- "Tirh": "Tirh",
750
- "Tnsa": "Tnsa",
751
- "Toto": "Toto",
752
731
  "Ugar": "угаритський",
753
732
  "Vaii": "ваї",
754
733
  "Visp": "видиме мовлення",
755
- "Vith": "Vith",
756
- "Wara": "Wara",
757
- "Wcho": "Wcho",
758
734
  "Xpeo": "давньоперський",
759
735
  "Xsux": "шумеро-аккадський клінопис",
760
- "Yezi": "Yezi",
761
736
  "Yiii": "йї",
762
- "Zanb": "Zanb",
763
737
  "Zinh": "успадкована",
764
738
  "Zmth": "математична",
765
739
  "Zsye": "емодзі",
@@ -987,6 +961,7 @@
987
961
  "NR": "Науру",
988
962
  "NU": "Ніуе",
989
963
  "NZ": "Нова Зеландія",
964
+ "NZ-alt-variant": "Аотеароа (Нова Зеландія)",
990
965
  "OM": "Оман",
991
966
  "PA": "Панама",
992
967
  "PE": "Перу",
@@ -1040,12 +1015,13 @@
1040
1015
  "TH": "Таїланд",
1041
1016
  "TJ": "Таджикистан",
1042
1017
  "TK": "Токелау",
1043
- "TL": "Тімор-Лешті",
1018
+ "TL": "Тимор-Лешті",
1044
1019
  "TL-alt-variant": "Східний Тимор",
1045
1020
  "TM": "Туркменістан",
1046
1021
  "TN": "Туніс",
1047
1022
  "TO": "Тонга",
1048
1023
  "TR": "Туреччина",
1024
+ "TR-alt-variant": "Туреччина",
1049
1025
  "TT": "Тринідад і Тобаго",
1050
1026
  "TV": "Тувалу",
1051
1027
  "TW": "Тайвань",
@@ -1081,9 +1057,9 @@
1081
1057
  "orientation": "left-to-right",
1082
1058
  "ca-gregorian": {
1083
1059
  "dateFormats": {
1084
- "full": "EEEE, d MMMM y 'р'.",
1085
- "long": "d MMMM y 'р'.",
1086
- "medium": "d MMM y 'р'.",
1060
+ "full": "EEEE, d MMMM y'р'.",
1061
+ "long": "d MMMM y'р'.",
1062
+ "medium": "d MMM y'р'.",
1087
1063
  "short": "dd.MM.yy"
1088
1064
  },
1089
1065
  "timeFormats": {
@@ -1093,8 +1069,8 @@
1093
1069
  "short": "HH:mm"
1094
1070
  },
1095
1071
  "dateTimeFormats": {
1096
- "full": "{1} 'о' {0}",
1097
- "long": "{1} 'о' {0}",
1072
+ "full": "{1}, {0}",
1073
+ "long": "{1}, {0}",
1098
1074
  "medium": "{1}, {0}",
1099
1075
  "short": "{1}, {0}",
1100
1076
  "availableFormats": {
@@ -1106,24 +1082,24 @@
1106
1082
  "EBhm": "E h:mm B",
1107
1083
  "EBhms": "E h:mm:ss B",
1108
1084
  "Ed": "E, d",
1109
- "Ehm": "E h:mm a",
1085
+ "Ehm": "E h:mma",
1110
1086
  "EHm": "E HH:mm",
1111
- "Ehms": "E h:mm:ss a",
1087
+ "Ehms": "E h:mm:ssa",
1112
1088
  "EHms": "E HH:mm:ss",
1113
1089
  "Gy": "y G",
1114
1090
  "GyMd": "dd-MM-y GGGGG",
1115
- "GyMMM": "LLL y 'р'. G",
1116
- "GyMMMd": "d MMM y 'р'. G",
1117
- "GyMMMEd": "E, d MMM y 'р'. G",
1118
- "h": "h a",
1091
+ "GyMMM": "LLL y'р'. G",
1092
+ "GyMMMd": "d MMM y'р'. G",
1093
+ "GyMMMEd": "E, d MMM y'р'. G",
1094
+ "h": "ha",
1119
1095
  "H": "HH",
1120
- "hm": "h:mm a",
1096
+ "hm": "h:mma",
1121
1097
  "Hm": "HH:mm",
1122
- "hms": "h:mm:ss a",
1098
+ "hms": "h:mm:ssa",
1123
1099
  "Hms": "HH:mm:ss",
1124
- "hmsv": "h:mm:ss a v",
1100
+ "hmsv": "h:mm:ssa v",
1125
1101
  "Hmsv": "HH:mm:ss v",
1126
- "hmv": "h:mm a v",
1102
+ "hmv": "h:mma v",
1127
1103
  "Hmv": "HH:mm v",
1128
1104
  "M": "LL",
1129
1105
  "Md": "dd.MM",
@@ -1138,12 +1114,12 @@
1138
1114
  "yM": "MM.y",
1139
1115
  "yMd": "dd.MM.y",
1140
1116
  "yMEd": "E, dd.MM.y",
1141
- "yMMM": "LLL y 'р'.",
1142
- "yMMMd": "d MMM y 'р'.",
1143
- "yMMMEd": "E, d MMM y 'р'.",
1144
- "yMMMM": "LLLL y 'р'.",
1117
+ "yMMM": "LLL y'р'.",
1118
+ "yMMMd": "d MMM y'р'.",
1119
+ "yMMMEd": "E, d MMM y'р'.",
1120
+ "yMMMM": "LLLL y'р'.",
1145
1121
  "yQQQ": "QQQ y",
1146
- "yQQQQ": "QQQQ y 'р'.",
1122
+ "yQQQQ": "QQQQ y'р'.",
1147
1123
  "MMMMW": "W-'й' 'тиж'. MMMM",
1148
1124
  "yw": "w-'й' 'тиж'. Y 'р'."
1149
1125
  },
@@ -1175,8 +1151,8 @@
1175
1151
  "d": "d–d"
1176
1152
  },
1177
1153
  "Gy": {
1178
- "G": "y 'р'. G – y 'р'. G",
1179
- "y": "y–y 'рр'. G"
1154
+ "G": "y'р'. G – y'р'. G",
1155
+ "y": "y–y'рр'. G"
1180
1156
  },
1181
1157
  "GyM": {
1182
1158
  "G": "MM.y G – MM.y G",
@@ -1196,50 +1172,50 @@
1196
1172
  "y": "ccc, dd.MM.y – ccc, dd.MM.y G"
1197
1173
  },
1198
1174
  "GyMMM": {
1199
- "G": "LLL y 'р'. G – LLL y 'р'. G",
1200
- "M": "LLL – LLL y 'р'. G",
1201
- "y": "LLL y – LLL y 'рр'. G"
1175
+ "G": "LLL y'р'. G – LLL y'р'. G",
1176
+ "M": "LLL – LLL y'р'. G",
1177
+ "y": "LLL y – LLL y'рр'. G"
1202
1178
  },
1203
1179
  "GyMMMd": {
1204
- "d": "d–d MMM y 'р'. G",
1205
- "G": "d MMM y 'р'. G – d MMM y 'р'. G",
1206
- "M": "d MMM – d MMM y 'р'. G",
1207
- "y": "d MMM y – d MMM y 'рр'. G"
1180
+ "d": "d–d MMM y'р'. G",
1181
+ "G": "d MMM y'р'. G – d MMM y'р'. G",
1182
+ "M": "d MMM – d MMM y'р'. G",
1183
+ "y": "d MMM y – d MMM y'рр'. G"
1208
1184
  },
1209
1185
  "GyMMMEd": {
1210
- "d": "ccc, d MMM – ccc, d MMM y 'р'. G",
1211
- "G": "ccc, d MMM y 'р'. G – ccc, d MMM y 'р'. G",
1212
- "M": "ccc, d MMM – ccc, d MMM y 'р'. G",
1213
- "y": "ccc, d MMM y – ccc, d MMM y 'рр'. G"
1186
+ "d": "ccc, d MMM – ccc, d MMM y'р'. G",
1187
+ "G": "ccc, d MMM y'р'. G – ccc, d MMM y'р'. G",
1188
+ "M": "ccc, d MMM – ccc, d MMM y'р'. G",
1189
+ "y": "ccc, d MMM y – ccc, d MMM y'рр'. G"
1214
1190
  },
1215
1191
  "h": {
1216
- "a": "h a – h a",
1217
- "h": "h–h a"
1192
+ "a": "ha – ha",
1193
+ "h": "h–ha"
1218
1194
  },
1219
1195
  "H": {
1220
1196
  "H": "HH–HH"
1221
1197
  },
1222
1198
  "hm": {
1223
- "a": "h:mm a – h:mm a",
1224
- "h": "h:mm–h:mm a",
1225
- "m": "h:mm–h:mm a"
1199
+ "a": "h:mma – h:mma",
1200
+ "h": "h:mm–h:mma",
1201
+ "m": "h:mm–h:mma"
1226
1202
  },
1227
1203
  "Hm": {
1228
1204
  "H": "HH:mm–HH:mm",
1229
1205
  "m": "HH:mm–HH:mm"
1230
1206
  },
1231
1207
  "hmv": {
1232
- "a": "h:mm a – h:mm a v",
1233
- "h": "h:mm–h:mm a v",
1234
- "m": "h:mm–h:mm a v"
1208
+ "a": "h:mma – h:mma v",
1209
+ "h": "h:mm–h:mma v",
1210
+ "m": "h:mm–h:mma v"
1235
1211
  },
1236
1212
  "Hmv": {
1237
1213
  "H": "HH:mm–HH:mm v",
1238
1214
  "m": "HH:mm–HH:mm v"
1239
1215
  },
1240
1216
  "hv": {
1241
- "a": "h a – h a v",
1242
- "h": "h–h a v"
1217
+ "a": "ha – ha v",
1218
+ "h": "h–ha v"
1243
1219
  },
1244
1220
  "Hv": {
1245
1221
  "H": "HH–HH v"
@@ -1284,22 +1260,22 @@
1284
1260
  "y": "E, dd.MM.y – E, dd.MM.y"
1285
1261
  },
1286
1262
  "yMMM": {
1287
- "M": "LLL–LLL y 'р'.",
1288
- "y": "LLL y – LLL y 'рр'."
1263
+ "M": "LLL–LLL y'р'.",
1264
+ "y": "LLL y – LLL y'рр'."
1289
1265
  },
1290
1266
  "yMMMd": {
1291
- "d": "d–d MMM y 'р'.",
1292
- "M": "d MMM – d MMM y 'р'.",
1293
- "y": "d MMM y – d MMM y 'рр'."
1267
+ "d": "d–d MMM y'р'.",
1268
+ "M": "d MMM – d MMM y'р'.",
1269
+ "y": "d MMM y – d MMM y'рр'."
1294
1270
  },
1295
1271
  "yMMMEd": {
1296
- "d": "E, d – E, d MMM y 'р'.",
1297
- "M": "E, d MMM – E, d MMM y 'р'.",
1298
- "y": "E, d MMM y – E, d MMM y 'рр'."
1272
+ "d": "E, d – E, d MMM y'р'.",
1273
+ "M": "E, d MMM – E, d MMM y'р'.",
1274
+ "y": "E, d MMM y – E, d MMM y'рр'."
1299
1275
  },
1300
1276
  "yMMMM": {
1301
- "M": "LLLL – LLLL y 'р'.",
1302
- "y": "LLLL y – LLLL y 'рр'."
1277
+ "M": "LLLL – LLLL y'р'.",
1278
+ "y": "LLLL y – LLLL y'рр'."
1303
1279
  }
1304
1280
  }
1305
1281
  },
@@ -1612,9 +1588,9 @@
1612
1588
  },
1613
1589
  "ca-islamic": {
1614
1590
  "dateFormats": {
1615
- "full": "EEEE, d MMMM y 'р'. G",
1616
- "long": "d MMMM y 'р'. G",
1617
- "medium": "d MMM y 'р'. G",
1591
+ "full": "EEEE, d MMMM y'р'. G",
1592
+ "long": "d MMMM y'р'. G",
1593
+ "medium": "d MMM y'р'. G",
1618
1594
  "short": "dd.MM.yy GGGGG"
1619
1595
  },
1620
1596
  "timeFormats": {
@@ -1624,10 +1600,10 @@
1624
1600
  "short": "HH:mm"
1625
1601
  },
1626
1602
  "dateTimeFormats": {
1627
- "full": "{1} 'о' {0}",
1628
- "long": "{1} 'о' {0}",
1629
- "medium": "{1} {0}",
1630
- "short": "{1} {0}",
1603
+ "full": "{1}, {0}",
1604
+ "long": "{1}, {0}",
1605
+ "medium": "{1}, {0}",
1606
+ "short": "{1}, {0}",
1631
1607
  "availableFormats": {
1632
1608
  "Bh": "h B",
1633
1609
  "Bhm": "h:mm B",
@@ -1637,20 +1613,20 @@
1637
1613
  "EBhm": "E h:mm B",
1638
1614
  "EBhms": "E h:mm:ss B",
1639
1615
  "Ed": "E, d",
1640
- "Ehm": "E h:mm a",
1616
+ "Ehm": "E h:mma",
1641
1617
  "EHm": "E HH:mm",
1642
- "Ehms": "E h:mm:ss a",
1618
+ "Ehms": "E h:mm:ssa",
1643
1619
  "EHms": "E HH:mm:ss",
1644
1620
  "Gy": "y G",
1645
1621
  "GyMd": "dd-MM-y GGGGG",
1646
- "GyMMM": "LLL y 'р'. G",
1647
- "GyMMMd": "d MMM y 'р'. G",
1648
- "GyMMMEd": "E, d MMM y 'р'. G",
1649
- "h": "h a",
1622
+ "GyMMM": "LLL y'р'. G",
1623
+ "GyMMMd": "d MMM y'р'. G",
1624
+ "GyMMMEd": "E, d MMM y'р'. G",
1625
+ "h": "ha",
1650
1626
  "H": "HH",
1651
- "hm": "h:mm a",
1627
+ "hm": "h:mma",
1652
1628
  "Hm": "HH:mm",
1653
- "hms": "h:mm:ss a",
1629
+ "hms": "h:mm:ssa",
1654
1630
  "Hms": "HH:mm:ss",
1655
1631
  "M": "L",
1656
1632
  "Md": "dd.MM",
@@ -1666,12 +1642,12 @@
1666
1642
  "yyyyM": "MM.y G",
1667
1643
  "yyyyMd": "dd.MM.y G",
1668
1644
  "yyyyMEd": "E, dd.MM.y G",
1669
- "yyyyMMM": "LLL y 'р'. G",
1670
- "yyyyMMMd": "d MMM y 'р'. G",
1671
- "yyyyMMMEd": "E, d MMM y 'р'. G",
1672
- "yyyyMMMM": "LLLL y 'р'. G",
1645
+ "yyyyMMM": "LLL y'р'. G",
1646
+ "yyyyMMMd": "d MMM y'р'. G",
1647
+ "yyyyMMMEd": "E, d MMM y'р'. G",
1648
+ "yyyyMMMM": "LLLL y'р'. G",
1673
1649
  "yyyyQQQ": "QQQ y G",
1674
- "yyyyQQQQ": "QQQQ y 'р'. G"
1650
+ "yyyyQQQQ": "QQQQ y'р'. G"
1675
1651
  },
1676
1652
  "appendItems": {
1677
1653
  "Day": "{0} ({2}: {1})",
@@ -1701,8 +1677,8 @@
1701
1677
  "d": "d–d"
1702
1678
  },
1703
1679
  "Gy": {
1704
- "G": "y 'р'. G – y 'р'. G",
1705
- "y": "y–y 'рр'. G"
1680
+ "G": "y'р'. G – y'р'. G",
1681
+ "y": "y–y'рр'. G"
1706
1682
  },
1707
1683
  "GyM": {
1708
1684
  "G": "MM.y G – MM.y G",
@@ -1722,50 +1698,50 @@
1722
1698
  "y": "ccc, dd.MM.y – ccc, dd.MM.y G"
1723
1699
  },
1724
1700
  "GyMMM": {
1725
- "G": "LLL y 'р'. G – LLL y 'р'. G",
1726
- "M": "LLL – LLL y 'р'. G",
1727
- "y": "LLL y – LLL y 'рр'. G"
1701
+ "G": "LLL y'р'. G – LLL y'р'. G",
1702
+ "M": "LLL – LLL y'р'. G",
1703
+ "y": "LLL y – LLL y'рр'. G"
1728
1704
  },
1729
1705
  "GyMMMd": {
1730
- "d": "d–d MMM y 'р'. G",
1731
- "G": "d MMM y 'р'. G – d MMM y 'р'. G",
1732
- "M": "d MMM – d MMM y 'р'. G",
1733
- "y": "d MMM y – d MMM y 'рр'. G"
1706
+ "d": "d–d MMM y'р'. G",
1707
+ "G": "d MMM y'р'. G – d MMM y'р'. G",
1708
+ "M": "d MMM – d MMM y'р'. G",
1709
+ "y": "d MMM y – d MMM y'рр'. G"
1734
1710
  },
1735
1711
  "GyMMMEd": {
1736
- "d": "ccc, d MMM – ccc, d MMM y 'р'. G",
1737
- "G": "ccc, d MMM y 'р'. G – ccc, d MMM y 'р'. G",
1738
- "M": "ccc, d MMM – ccc, d MMM y 'р'. G",
1739
- "y": "ccc, d MMM y – ccc, d MMM y 'рр'. G"
1712
+ "d": "ccc, d MMM – ccc, d MMM y'р'. G",
1713
+ "G": "ccc, d MMM y'р'. G – ccc, d MMM y'р'. G",
1714
+ "M": "ccc, d MMM – ccc, d MMM y'р'. G",
1715
+ "y": "ccc, d MMM y – ccc, d MMM y'рр'. G"
1740
1716
  },
1741
1717
  "h": {
1742
- "a": "h a – h a",
1743
- "h": "h–h a"
1718
+ "a": "ha – ha",
1719
+ "h": "h–ha"
1744
1720
  },
1745
1721
  "H": {
1746
1722
  "H": "HH–HH"
1747
1723
  },
1748
1724
  "hm": {
1749
- "a": "h:mm a – h:mm a",
1750
- "h": "h:mm–h:mm a",
1751
- "m": "h:mm–h:mm a"
1725
+ "a": "h:mma – h:mma",
1726
+ "h": "h:mm–h:mma",
1727
+ "m": "h:mm–h:mma"
1752
1728
  },
1753
1729
  "Hm": {
1754
1730
  "H": "HH:mm–HH:mm",
1755
1731
  "m": "HH:mm–HH:mm"
1756
1732
  },
1757
1733
  "hmv": {
1758
- "a": "h:mm a – h:mm a v",
1759
- "h": "h:mm–h:mm a v",
1760
- "m": "h:mm–h:mm a v"
1734
+ "a": "h:mma – h:mma v",
1735
+ "h": "h:mm–h:mma v",
1736
+ "m": "h:mm–h:mma v"
1761
1737
  },
1762
1738
  "Hmv": {
1763
1739
  "H": "HH:mm–HH:mm v",
1764
1740
  "m": "HH:mm–HH:mm v"
1765
1741
  },
1766
1742
  "hv": {
1767
- "a": "h a – h a v",
1768
- "h": "h–h a v"
1743
+ "a": "ha – ha v",
1744
+ "h": "h–ha v"
1769
1745
  },
1770
1746
  "Hv": {
1771
1747
  "H": "HH–HH v"
@@ -1810,22 +1786,22 @@
1810
1786
  "y": "E, dd.MM.y – E, dd.MM.y"
1811
1787
  },
1812
1788
  "yMMM": {
1813
- "M": "LLL–LLL y 'р'.",
1814
- "y": "LLL y – LLL y 'рр'."
1789
+ "M": "LLL–LLL y'р'.",
1790
+ "y": "LLL y – LLL y'рр'."
1815
1791
  },
1816
1792
  "yMMMd": {
1817
- "d": "d–d MMM y 'р'.",
1818
- "M": "d MMM – d MMM y 'р'.",
1819
- "y": "d MMM y – d MMM y 'рр'."
1793
+ "d": "d–d MMM y'р'.",
1794
+ "M": "d MMM – d MMM y'р'.",
1795
+ "y": "d MMM y – d MMM y'рр'."
1820
1796
  },
1821
1797
  "yMMMEd": {
1822
- "d": "E, d – E, d MMM y 'р'.",
1823
- "M": "E, d MMM – E, d MMM y 'р'.",
1824
- "y": "E, d MMM y – E, d MMM y 'рр'."
1798
+ "d": "E, d – E, d MMM y'р'.",
1799
+ "M": "E, d MMM – E, d MMM y'р'.",
1800
+ "y": "E, d MMM y – E, d MMM y'рр'."
1825
1801
  },
1826
1802
  "yMMMM": {
1827
- "M": "LLLL – LLLL y 'р'.",
1828
- "y": "LLLL y – LLLL y 'рр'."
1803
+ "M": "LLLL – LLLL y'р'.",
1804
+ "y": "LLLL y – LLLL y'рр'."
1829
1805
  }
1830
1806
  }
1831
1807
  },
@@ -2135,9 +2111,9 @@
2135
2111
  },
2136
2112
  "ca-japanese": {
2137
2113
  "dateFormats": {
2138
- "full": "EEEE, d MMMM y 'р'. G",
2139
- "long": "d MMMM y 'р'. G",
2140
- "medium": "d MMM y 'р'. G",
2114
+ "full": "EEEE, d MMMM y'р'. G",
2115
+ "long": "d MMMM y'р'. G",
2116
+ "medium": "d MMM y'р'. G",
2141
2117
  "short": "dd.MM.yy GGGGG"
2142
2118
  },
2143
2119
  "timeFormats": {
@@ -2147,10 +2123,10 @@
2147
2123
  "short": "HH:mm"
2148
2124
  },
2149
2125
  "dateTimeFormats": {
2150
- "full": "{1} 'о' {0}",
2151
- "long": "{1} 'о' {0}",
2152
- "medium": "{1} {0}",
2153
- "short": "{1} {0}",
2126
+ "full": "{1}, {0}",
2127
+ "long": "{1}, {0}",
2128
+ "medium": "{1}, {0}",
2129
+ "short": "{1}, {0}",
2154
2130
  "availableFormats": {
2155
2131
  "Bh": "h B",
2156
2132
  "Bhm": "h:mm B",
@@ -2160,20 +2136,20 @@
2160
2136
  "EBhm": "E h:mm B",
2161
2137
  "EBhms": "E h:mm:ss B",
2162
2138
  "Ed": "E, d",
2163
- "Ehm": "E h:mm a",
2139
+ "Ehm": "E h:mma",
2164
2140
  "EHm": "E HH:mm",
2165
- "Ehms": "E h:mm:ss a",
2141
+ "Ehms": "E h:mm:ssa",
2166
2142
  "EHms": "E HH:mm:ss",
2167
2143
  "Gy": "y G",
2168
2144
  "GyMd": "dd-MM-y GGGGG",
2169
- "GyMMM": "LLL y 'р'. G",
2170
- "GyMMMd": "d MMM y 'р'. G",
2171
- "GyMMMEd": "E, d MMM y 'р'. G",
2172
- "h": "h a",
2145
+ "GyMMM": "LLL y'р'. G",
2146
+ "GyMMMd": "d MMM y'р'. G",
2147
+ "GyMMMEd": "E, d MMM y'р'. G",
2148
+ "h": "ha",
2173
2149
  "H": "HH",
2174
- "hm": "h:mm a",
2150
+ "hm": "h:mma",
2175
2151
  "Hm": "HH:mm",
2176
- "hms": "h:mm:ss a",
2152
+ "hms": "h:mm:ssa",
2177
2153
  "Hms": "HH:mm:ss",
2178
2154
  "M": "L",
2179
2155
  "Md": "dd.MM",
@@ -2189,12 +2165,12 @@
2189
2165
  "yyyyM": "MM.y G",
2190
2166
  "yyyyMd": "dd.MM.y G",
2191
2167
  "yyyyMEd": "E, dd.MM.y G",
2192
- "yyyyMMM": "LLL y 'р'. G",
2193
- "yyyyMMMd": "d MMM y 'р'. G",
2194
- "yyyyMMMEd": "E, d MMM y 'р'. G",
2195
- "yyyyMMMM": "LLLL y 'р'. G",
2168
+ "yyyyMMM": "LLL y'р'. G",
2169
+ "yyyyMMMd": "d MMM y'р'. G",
2170
+ "yyyyMMMEd": "E, d MMM y'р'. G",
2171
+ "yyyyMMMM": "LLLL y'р'. G",
2196
2172
  "yyyyQQQ": "QQQ y G",
2197
- "yyyyQQQQ": "QQQQ y 'р'. G"
2173
+ "yyyyQQQQ": "QQQQ y'р'. G"
2198
2174
  },
2199
2175
  "appendItems": {
2200
2176
  "Day": "{0} ({2}: {1})",
@@ -2224,8 +2200,8 @@
2224
2200
  "d": "d–d"
2225
2201
  },
2226
2202
  "Gy": {
2227
- "G": "y 'р'. G – y 'р'. G",
2228
- "y": "y–y 'рр'. G"
2203
+ "G": "y'р'. G – y'р'. G",
2204
+ "y": "y–y'рр'. G"
2229
2205
  },
2230
2206
  "GyM": {
2231
2207
  "G": "MM.y G – MM.y G",
@@ -2245,50 +2221,50 @@
2245
2221
  "y": "ccc, dd.MM.y – ccc, dd.MM.y G"
2246
2222
  },
2247
2223
  "GyMMM": {
2248
- "G": "LLL y 'р'. G – LLL y 'р'. G",
2249
- "M": "LLL – LLL y 'р'. G",
2250
- "y": "LLL y – LLL y 'рр'. G"
2224
+ "G": "LLL y'р'. G – LLL y'р'. G",
2225
+ "M": "LLL – LLL y'р'. G",
2226
+ "y": "LLL y – LLL y'рр'. G"
2251
2227
  },
2252
2228
  "GyMMMd": {
2253
- "d": "d–d MMM y 'р'. G",
2254
- "G": "d MMM y 'р'. G – d MMM y 'р'. G",
2255
- "M": "d MMM – d MMM y 'р'. G",
2256
- "y": "d MMM y – d MMM y 'рр'. G"
2229
+ "d": "d–d MMM y'р'. G",
2230
+ "G": "d MMM y'р'. G – d MMM y'р'. G",
2231
+ "M": "d MMM – d MMM y'р'. G",
2232
+ "y": "d MMM y – d MMM y'рр'. G"
2257
2233
  },
2258
2234
  "GyMMMEd": {
2259
- "d": "ccc, d MMM – ccc, d MMM y 'р'. G",
2260
- "G": "ccc, d MMM y 'р'. G – ccc, d MMM y 'р'. G",
2261
- "M": "ccc, d MMM – ccc, d MMM y 'р'. G",
2262
- "y": "ccc, d MMM y – ccc, d MMM y 'рр'. G"
2235
+ "d": "ccc, d MMM – ccc, d MMM y'р'. G",
2236
+ "G": "ccc, d MMM y'р'. G – ccc, d MMM y'р'. G",
2237
+ "M": "ccc, d MMM – ccc, d MMM y'р'. G",
2238
+ "y": "ccc, d MMM y – ccc, d MMM y'рр'. G"
2263
2239
  },
2264
2240
  "h": {
2265
- "a": "h a – h a",
2266
- "h": "h–h a"
2241
+ "a": "ha – ha",
2242
+ "h": "h–ha"
2267
2243
  },
2268
2244
  "H": {
2269
2245
  "H": "HH–HH"
2270
2246
  },
2271
2247
  "hm": {
2272
- "a": "h:mm a – h:mm a",
2273
- "h": "h:mm–h:mm a",
2274
- "m": "h:mm–h:mm a"
2248
+ "a": "h:mma – h:mma",
2249
+ "h": "h:mm–h:mma",
2250
+ "m": "h:mm–h:mma"
2275
2251
  },
2276
2252
  "Hm": {
2277
2253
  "H": "HH:mm–HH:mm",
2278
2254
  "m": "HH:mm–HH:mm"
2279
2255
  },
2280
2256
  "hmv": {
2281
- "a": "h:mm a – h:mm a v",
2282
- "h": "h:mm–h:mm a v",
2283
- "m": "h:mm–h:mm a v"
2257
+ "a": "h:mma – h:mma v",
2258
+ "h": "h:mm–h:mma v",
2259
+ "m": "h:mm–h:mma v"
2284
2260
  },
2285
2261
  "Hmv": {
2286
2262
  "H": "HH:mm–HH:mm v",
2287
2263
  "m": "HH:mm–HH:mm v"
2288
2264
  },
2289
2265
  "hv": {
2290
- "a": "h a – h a v",
2291
- "h": "h–h a v"
2266
+ "a": "ha – ha v",
2267
+ "h": "h–ha v"
2292
2268
  },
2293
2269
  "Hv": {
2294
2270
  "H": "HH–HH v"
@@ -2333,22 +2309,22 @@
2333
2309
  "y": "E, dd.MM.y – E, dd.MM.y"
2334
2310
  },
2335
2311
  "yMMM": {
2336
- "M": "LLL–LLL y 'р'.",
2337
- "y": "LLL y – LLL y 'рр'."
2312
+ "M": "LLL–LLL y'р'.",
2313
+ "y": "LLL y – LLL y'рр'."
2338
2314
  },
2339
2315
  "yMMMd": {
2340
- "d": "d–d MMM y 'р'.",
2341
- "M": "d MMM – d MMM y 'р'.",
2342
- "y": "d MMM y – d MMM y 'рр'."
2316
+ "d": "d–d MMM y'р'.",
2317
+ "M": "d MMM – d MMM y'р'.",
2318
+ "y": "d MMM y – d MMM y'рр'."
2343
2319
  },
2344
2320
  "yMMMEd": {
2345
- "d": "E, d – E, d MMM y 'р'.",
2346
- "M": "E, d MMM – E, d MMM y 'р'.",
2347
- "y": "E, d MMM y – E, d MMM y 'рр'."
2321
+ "d": "E, d – E, d MMM y'р'.",
2322
+ "M": "E, d MMM – E, d MMM y'р'.",
2323
+ "y": "E, d MMM y – E, d MMM y'рр'."
2348
2324
  },
2349
2325
  "yMMMM": {
2350
- "M": "LLLL – LLLL y 'р'.",
2351
- "y": "LLLL y – LLLL y 'рр'."
2326
+ "M": "LLLL – LLLL y'р'.",
2327
+ "y": "LLLL y – LLLL y'рр'."
2352
2328
  }
2353
2329
  }
2354
2330
  },
@@ -2670,9 +2646,9 @@
2670
2646
  },
2671
2647
  "ca-persian": {
2672
2648
  "dateFormats": {
2673
- "full": "EEEE, d MMMM y 'р'. G",
2674
- "long": "d MMMM y 'р'. G",
2675
- "medium": "d MMM y 'р'. G",
2649
+ "full": "EEEE, d MMMM y'р'. G",
2650
+ "long": "d MMMM y'р'. G",
2651
+ "medium": "d MMM y'р'. G",
2676
2652
  "short": "dd.MM.yy GGGGG"
2677
2653
  },
2678
2654
  "timeFormats": {
@@ -2682,10 +2658,10 @@
2682
2658
  "short": "HH:mm"
2683
2659
  },
2684
2660
  "dateTimeFormats": {
2685
- "full": "{1} 'о' {0}",
2686
- "long": "{1} 'о' {0}",
2687
- "medium": "{1} {0}",
2688
- "short": "{1} {0}",
2661
+ "full": "{1}, {0}",
2662
+ "long": "{1}, {0}",
2663
+ "medium": "{1}, {0}",
2664
+ "short": "{1}, {0}",
2689
2665
  "availableFormats": {
2690
2666
  "Bh": "h B",
2691
2667
  "Bhm": "h:mm B",
@@ -2695,20 +2671,20 @@
2695
2671
  "EBhm": "E h:mm B",
2696
2672
  "EBhms": "E h:mm:ss B",
2697
2673
  "Ed": "E, d",
2698
- "Ehm": "E h:mm a",
2674
+ "Ehm": "E h:mma",
2699
2675
  "EHm": "E HH:mm",
2700
- "Ehms": "E h:mm:ss a",
2676
+ "Ehms": "E h:mm:ssa",
2701
2677
  "EHms": "E HH:mm:ss",
2702
2678
  "Gy": "y G",
2703
2679
  "GyMd": "dd-MM-y GGGGG",
2704
- "GyMMM": "LLL y 'р'. G",
2705
- "GyMMMd": "d MMM y 'р'. G",
2706
- "GyMMMEd": "E, d MMM y 'р'. G",
2707
- "h": "h a",
2680
+ "GyMMM": "LLL y'р'. G",
2681
+ "GyMMMd": "d MMM y'р'. G",
2682
+ "GyMMMEd": "E, d MMM y'р'. G",
2683
+ "h": "ha",
2708
2684
  "H": "HH",
2709
- "hm": "h:mm a",
2685
+ "hm": "h:mma",
2710
2686
  "Hm": "HH:mm",
2711
- "hms": "h:mm:ss a",
2687
+ "hms": "h:mm:ssa",
2712
2688
  "Hms": "HH:mm:ss",
2713
2689
  "M": "L",
2714
2690
  "Md": "dd.MM",
@@ -2724,12 +2700,12 @@
2724
2700
  "yyyyM": "MM.y G",
2725
2701
  "yyyyMd": "dd.MM.y G",
2726
2702
  "yyyyMEd": "E, dd.MM.y G",
2727
- "yyyyMMM": "LLL y 'р'. G",
2728
- "yyyyMMMd": "d MMM y 'р'. G",
2729
- "yyyyMMMEd": "E, d MMM y 'р'. G",
2730
- "yyyyMMMM": "LLLL y 'р'. G",
2703
+ "yyyyMMM": "LLL y'р'. G",
2704
+ "yyyyMMMd": "d MMM y'р'. G",
2705
+ "yyyyMMMEd": "E, d MMM y'р'. G",
2706
+ "yyyyMMMM": "LLLL y'р'. G",
2731
2707
  "yyyyQQQ": "QQQ y G",
2732
- "yyyyQQQQ": "QQQQ y 'р'. G"
2708
+ "yyyyQQQQ": "QQQQ y'р'. G"
2733
2709
  },
2734
2710
  "appendItems": {
2735
2711
  "Day": "{0} ({2}: {1})",
@@ -2759,8 +2735,8 @@
2759
2735
  "d": "d–d"
2760
2736
  },
2761
2737
  "Gy": {
2762
- "G": "y 'р'. G – y 'р'. G",
2763
- "y": "y–y 'рр'. G"
2738
+ "G": "y'р'. G – y'р'. G",
2739
+ "y": "y–y'рр'. G"
2764
2740
  },
2765
2741
  "GyM": {
2766
2742
  "G": "MM.y G – MM.y G",
@@ -2780,50 +2756,50 @@
2780
2756
  "y": "ccc, dd.MM.y – ccc, dd.MM.y G"
2781
2757
  },
2782
2758
  "GyMMM": {
2783
- "G": "LLL y 'р'. G – LLL y 'р'. G",
2784
- "M": "LLL – LLL y 'р'. G",
2785
- "y": "LLL y – LLL y 'рр'. G"
2759
+ "G": "LLL y'р'. G – LLL y'р'. G",
2760
+ "M": "LLL – LLL y'р'. G",
2761
+ "y": "LLL y – LLL y'рр'. G"
2786
2762
  },
2787
2763
  "GyMMMd": {
2788
- "d": "d–d MMM y 'р'. G",
2789
- "G": "d MMM y 'р'. G – d MMM y 'р'. G",
2790
- "M": "d MMM – d MMM y 'р'. G",
2791
- "y": "d MMM y – d MMM y 'рр'. G"
2764
+ "d": "d–d MMM y'р'. G",
2765
+ "G": "d MMM y'р'. G – d MMM y'р'. G",
2766
+ "M": "d MMM – d MMM y'р'. G",
2767
+ "y": "d MMM y – d MMM y'рр'. G"
2792
2768
  },
2793
2769
  "GyMMMEd": {
2794
- "d": "ccc, d MMM – ccc, d MMM y 'р'. G",
2795
- "G": "ccc, d MMM y 'р'. G – ccc, d MMM y 'р'. G",
2796
- "M": "ccc, d MMM – ccc, d MMM y 'р'. G",
2797
- "y": "ccc, d MMM y – ccc, d MMM y 'рр'. G"
2770
+ "d": "ccc, d MMM – ccc, d MMM y'р'. G",
2771
+ "G": "ccc, d MMM y'р'. G – ccc, d MMM y'р'. G",
2772
+ "M": "ccc, d MMM – ccc, d MMM y'р'. G",
2773
+ "y": "ccc, d MMM y – ccc, d MMM y'рр'. G"
2798
2774
  },
2799
2775
  "h": {
2800
- "a": "h a – h a",
2801
- "h": "h–h a"
2776
+ "a": "ha – ha",
2777
+ "h": "h–ha"
2802
2778
  },
2803
2779
  "H": {
2804
2780
  "H": "HH–HH"
2805
2781
  },
2806
2782
  "hm": {
2807
- "a": "h:mm a – h:mm a",
2808
- "h": "h:mm–h:mm a",
2809
- "m": "h:mm–h:mm a"
2783
+ "a": "h:mma – h:mma",
2784
+ "h": "h:mm–h:mma",
2785
+ "m": "h:mm–h:mma"
2810
2786
  },
2811
2787
  "Hm": {
2812
2788
  "H": "HH:mm–HH:mm",
2813
2789
  "m": "HH:mm–HH:mm"
2814
2790
  },
2815
2791
  "hmv": {
2816
- "a": "h:mm a – h:mm a v",
2817
- "h": "h:mm–h:mm a v",
2818
- "m": "h:mm–h:mm a v"
2792
+ "a": "h:mma – h:mma v",
2793
+ "h": "h:mm–h:mma v",
2794
+ "m": "h:mm–h:mma v"
2819
2795
  },
2820
2796
  "Hmv": {
2821
2797
  "H": "HH:mm–HH:mm v",
2822
2798
  "m": "HH:mm–HH:mm v"
2823
2799
  },
2824
2800
  "hv": {
2825
- "a": "h a – h a v",
2826
- "h": "h–h a v"
2801
+ "a": "ha – ha v",
2802
+ "h": "h–ha v"
2827
2803
  },
2828
2804
  "Hv": {
2829
2805
  "H": "HH–HH v"
@@ -2868,22 +2844,22 @@
2868
2844
  "y": "E, dd.MM.y – E, dd.MM.y"
2869
2845
  },
2870
2846
  "yMMM": {
2871
- "M": "LLL–LLL y 'р'.",
2872
- "y": "LLL y – LLL y 'рр'."
2847
+ "M": "LLL–LLL y'р'.",
2848
+ "y": "LLL y – LLL y'рр'."
2873
2849
  },
2874
2850
  "yMMMd": {
2875
- "d": "d–d MMM y 'р'.",
2876
- "M": "d MMM – d MMM y 'р'.",
2877
- "y": "d MMM y – d MMM y 'рр'."
2851
+ "d": "d–d MMM y'р'.",
2852
+ "M": "d MMM – d MMM y'р'.",
2853
+ "y": "d MMM y – d MMM y'рр'."
2878
2854
  },
2879
2855
  "yMMMEd": {
2880
- "d": "E, d – E, d MMM y 'р'.",
2881
- "M": "E, d MMM – E, d MMM y 'р'.",
2882
- "y": "E, d MMM y – E, d MMM y 'рр'."
2856
+ "d": "E, d – E, d MMM y'р'.",
2857
+ "M": "E, d MMM – E, d MMM y'р'.",
2858
+ "y": "E, d MMM y – E, d MMM y'рр'."
2883
2859
  },
2884
2860
  "yMMMM": {
2885
- "M": "LLLL – LLLL y 'р'.",
2886
- "y": "LLLL y – LLLL y 'рр'."
2861
+ "M": "LLLL – LLLL y'р'.",
2862
+ "y": "LLLL y – LLLL y'рр'."
2887
2863
  }
2888
2864
  }
2889
2865
  },
@@ -3193,9 +3169,9 @@
3193
3169
  },
3194
3170
  "ca-buddhist": {
3195
3171
  "dateFormats": {
3196
- "full": "EEEE, d MMMM y 'р'. G",
3197
- "long": "d MMMM y 'р'. G",
3198
- "medium": "d MMM y 'р'. G",
3172
+ "full": "EEEE, d MMMM y'р'. G",
3173
+ "long": "d MMMM y'р'. G",
3174
+ "medium": "d MMM y'р'. G",
3199
3175
  "short": "dd.MM.yy GGGGG"
3200
3176
  },
3201
3177
  "timeFormats": {
@@ -3205,10 +3181,10 @@
3205
3181
  "short": "HH:mm"
3206
3182
  },
3207
3183
  "dateTimeFormats": {
3208
- "full": "{1} 'о' {0}",
3209
- "long": "{1} 'о' {0}",
3210
- "medium": "{1} {0}",
3211
- "short": "{1} {0}",
3184
+ "full": "{1}, {0}",
3185
+ "long": "{1}, {0}",
3186
+ "medium": "{1}, {0}",
3187
+ "short": "{1}, {0}",
3212
3188
  "availableFormats": {
3213
3189
  "Bh": "h B",
3214
3190
  "Bhm": "h:mm B",
@@ -3218,20 +3194,20 @@
3218
3194
  "EBhm": "E h:mm B",
3219
3195
  "EBhms": "E h:mm:ss B",
3220
3196
  "Ed": "E, d",
3221
- "Ehm": "E h:mm a",
3197
+ "Ehm": "E h:mma",
3222
3198
  "EHm": "E HH:mm",
3223
- "Ehms": "E h:mm:ss a",
3199
+ "Ehms": "E h:mm:ssa",
3224
3200
  "EHms": "E HH:mm:ss",
3225
3201
  "Gy": "y G",
3226
3202
  "GyMd": "dd-MM-y GGGGG",
3227
- "GyMMM": "LLL y 'р'. G",
3228
- "GyMMMd": "d MMM y 'р'. G",
3229
- "GyMMMEd": "E, d MMM y 'р'. G",
3230
- "h": "h a",
3203
+ "GyMMM": "LLL y'р'. G",
3204
+ "GyMMMd": "d MMM y'р'. G",
3205
+ "GyMMMEd": "E, d MMM y'р'. G",
3206
+ "h": "ha",
3231
3207
  "H": "HH",
3232
- "hm": "h:mm a",
3208
+ "hm": "h:mma",
3233
3209
  "Hm": "HH:mm",
3234
- "hms": "h:mm:ss a",
3210
+ "hms": "h:mm:ssa",
3235
3211
  "Hms": "HH:mm:ss",
3236
3212
  "M": "L",
3237
3213
  "Md": "dd.MM",
@@ -3247,12 +3223,12 @@
3247
3223
  "yyyyM": "MM.y G",
3248
3224
  "yyyyMd": "dd.MM.y G",
3249
3225
  "yyyyMEd": "E, dd.MM.y G",
3250
- "yyyyMMM": "LLL y 'р'. G",
3251
- "yyyyMMMd": "d MMM y 'р'. G",
3252
- "yyyyMMMEd": "E, d MMM y 'р'. G",
3253
- "yyyyMMMM": "LLLL y 'р'. G",
3226
+ "yyyyMMM": "LLL y'р'. G",
3227
+ "yyyyMMMd": "d MMM y'р'. G",
3228
+ "yyyyMMMEd": "E, d MMM y'р'. G",
3229
+ "yyyyMMMM": "LLLL y'р'. G",
3254
3230
  "yyyyQQQ": "QQQ y G",
3255
- "yyyyQQQQ": "QQQQ y 'р'. G"
3231
+ "yyyyQQQQ": "QQQQ y'р'. G"
3256
3232
  },
3257
3233
  "appendItems": {
3258
3234
  "Day": "{0} ({2}: {1})",
@@ -3282,8 +3258,8 @@
3282
3258
  "d": "d–d"
3283
3259
  },
3284
3260
  "Gy": {
3285
- "G": "y 'р'. G – y 'р'. G",
3286
- "y": "y–y 'рр'. G"
3261
+ "G": "y'р'. G – y'р'. G",
3262
+ "y": "y–y'рр'. G"
3287
3263
  },
3288
3264
  "GyM": {
3289
3265
  "G": "MM.y G – MM.y G",
@@ -3303,50 +3279,50 @@
3303
3279
  "y": "ccc, dd.MM.y – ccc, dd.MM.y G"
3304
3280
  },
3305
3281
  "GyMMM": {
3306
- "G": "LLL y 'р'. G – LLL y 'р'. G",
3307
- "M": "LLL – LLL y 'р'. G",
3308
- "y": "LLL y – LLL y 'рр'. G"
3282
+ "G": "LLL y'р'. G – LLL y'р'. G",
3283
+ "M": "LLL – LLL y'р'. G",
3284
+ "y": "LLL y – LLL y'рр'. G"
3309
3285
  },
3310
3286
  "GyMMMd": {
3311
- "d": "d–d MMM y 'р'. G",
3312
- "G": "d MMM y 'р'. G – d MMM y 'р'. G",
3313
- "M": "d MMM – d MMM y 'р'. G",
3314
- "y": "d MMM y – d MMM y 'рр'. G"
3287
+ "d": "d–d MMM y'р'. G",
3288
+ "G": "d MMM y'р'. G – d MMM y'р'. G",
3289
+ "M": "d MMM – d MMM y'р'. G",
3290
+ "y": "d MMM y – d MMM y'рр'. G"
3315
3291
  },
3316
3292
  "GyMMMEd": {
3317
- "d": "ccc, d MMM – ccc, d MMM y 'р'. G",
3318
- "G": "ccc, d MMM y 'р'. G – ccc, d MMM y 'р'. G",
3319
- "M": "ccc, d MMM – ccc, d MMM y 'р'. G",
3320
- "y": "ccc, d MMM y – ccc, d MMM y 'рр'. G"
3293
+ "d": "ccc, d MMM – ccc, d MMM y'р'. G",
3294
+ "G": "ccc, d MMM y'р'. G – ccc, d MMM y'р'. G",
3295
+ "M": "ccc, d MMM – ccc, d MMM y'р'. G",
3296
+ "y": "ccc, d MMM y – ccc, d MMM y'рр'. G"
3321
3297
  },
3322
3298
  "h": {
3323
- "a": "h a – h a",
3324
- "h": "h–h a"
3299
+ "a": "ha – ha",
3300
+ "h": "h–ha"
3325
3301
  },
3326
3302
  "H": {
3327
3303
  "H": "HH–HH"
3328
3304
  },
3329
3305
  "hm": {
3330
- "a": "h:mm a – h:mm a",
3331
- "h": "h:mm–h:mm a",
3332
- "m": "h:mm–h:mm a"
3306
+ "a": "h:mma – h:mma",
3307
+ "h": "h:mm–h:mma",
3308
+ "m": "h:mm–h:mma"
3333
3309
  },
3334
3310
  "Hm": {
3335
3311
  "H": "HH:mm–HH:mm",
3336
3312
  "m": "HH:mm–HH:mm"
3337
3313
  },
3338
3314
  "hmv": {
3339
- "a": "h:mm a – h:mm a v",
3340
- "h": "h:mm–h:mm a v",
3341
- "m": "h:mm–h:mm a v"
3315
+ "a": "h:mma – h:mma v",
3316
+ "h": "h:mm–h:mma v",
3317
+ "m": "h:mm–h:mma v"
3342
3318
  },
3343
3319
  "Hmv": {
3344
3320
  "H": "HH:mm–HH:mm v",
3345
3321
  "m": "HH:mm–HH:mm v"
3346
3322
  },
3347
3323
  "hv": {
3348
- "a": "h a – h a v",
3349
- "h": "h–h a v"
3324
+ "a": "ha – ha v",
3325
+ "h": "h–ha v"
3350
3326
  },
3351
3327
  "Hv": {
3352
3328
  "H": "HH–HH v"
@@ -3391,22 +3367,22 @@
3391
3367
  "y": "E, dd.MM.y – E, dd.MM.y"
3392
3368
  },
3393
3369
  "yMMM": {
3394
- "M": "LLL–LLL y 'р'.",
3395
- "y": "LLL y – LLL y 'рр'."
3370
+ "M": "LLL–LLL y'р'.",
3371
+ "y": "LLL y – LLL y'рр'."
3396
3372
  },
3397
3373
  "yMMMd": {
3398
- "d": "d–d MMM y 'р'.",
3399
- "M": "d MMM – d MMM y 'р'.",
3400
- "y": "d MMM y – d MMM y 'рр'."
3374
+ "d": "d–d MMM y'р'.",
3375
+ "M": "d MMM – d MMM y'р'.",
3376
+ "y": "d MMM y – d MMM y'рр'."
3401
3377
  },
3402
3378
  "yMMMEd": {
3403
- "d": "E, d – E, d MMM y 'р'.",
3404
- "M": "E, d MMM – E, d MMM y 'р'.",
3405
- "y": "E, d MMM y – E, d MMM y 'рр'."
3379
+ "d": "E, d – E, d MMM y'р'.",
3380
+ "M": "E, d MMM – E, d MMM y'р'.",
3381
+ "y": "E, d MMM y – E, d MMM y'рр'."
3406
3382
  },
3407
3383
  "yMMMM": {
3408
- "M": "LLLL – LLLL y 'р'.",
3409
- "y": "LLLL y – LLLL y 'рр'."
3384
+ "M": "LLLL – LLLL y'р'.",
3385
+ "y": "LLLL y – LLLL y'рр'."
3410
3386
  }
3411
3387
  }
3412
3388
  },
@@ -3991,10 +3967,10 @@
3991
3967
  "relativeTimePattern-count-other": "за {0} д."
3992
3968
  },
3993
3969
  "relativeTime-type-past": {
3994
- "relativeTimePattern-count-one": "{0} д. тому",
3995
- "relativeTimePattern-count-few": "-{0} дн.",
3996
- "relativeTimePattern-count-many": "-{0} дн.",
3997
- "relativeTimePattern-count-other": "-{0} дн."
3970
+ "relativeTimePattern-count-one": "{0} дн. тому",
3971
+ "relativeTimePattern-count-few": "{0} дн. тому",
3972
+ "relativeTimePattern-count-many": "{0} дн. тому",
3973
+ "relativeTimePattern-count-other": "{0} дн. тому"
3998
3974
  }
3999
3975
  },
4000
3976
  "weekday": {
@@ -4199,7 +4175,7 @@
4199
4175
  "Ouagadougou": "Уаґадуґу",
4200
4176
  "Porto-Novo": "Порто-Ново",
4201
4177
  "Sao_Tome": "Сан-Томе",
4202
- "Tripoli": "Тріполі",
4178
+ "Tripoli": "Триполі",
4203
4179
  "Tunis": "Туніс",
4204
4180
  "Windhoek": "Віндгук",
4205
4181
  "_parent": "Африка"
@@ -4245,6 +4221,7 @@
4245
4221
  "Cayman": "Кайманові Острови",
4246
4222
  "Chicago": "Чікаґо",
4247
4223
  "Chihuahua": "Чіуауа",
4224
+ "Ciudad_Juarez": "С’юдад-Хуарес",
4248
4225
  "Costa_Rica": "Коста-Ріка",
4249
4226
  "Creston": "Крестон",
4250
4227
  "Cuiaba": "Куяба",
@@ -4569,7 +4546,7 @@
4569
4546
  "Kerguelen": "Керґелен",
4570
4547
  "Mahe": "Махе",
4571
4548
  "Maldives": "Мальдіви",
4572
- "Mauritius": "Маврікій",
4549
+ "Mauritius": "Маврикій",
4573
4550
  "Mayotte": "Майотта",
4574
4551
  "Reunion": "Реюньйон"
4575
4552
  },
@@ -4938,10 +4915,16 @@
4938
4915
  },
4939
4916
  "power2": {
4940
4917
  "compoundUnitPattern1": "{0}²",
4918
+ "compoundUnitPattern1-count-one": "{0}²",
4919
+ "compoundUnitPattern1-count-few": "{0}²",
4920
+ "compoundUnitPattern1-count-many": "{0}²",
4941
4921
  "compoundUnitPattern1-count-other": "{0}²"
4942
4922
  },
4943
4923
  "power3": {
4944
4924
  "compoundUnitPattern1": "{0}³",
4925
+ "compoundUnitPattern1-count-one": "{0}³",
4926
+ "compoundUnitPattern1-count-few": "{0}³",
4927
+ "compoundUnitPattern1-count-many": "{0}³",
4945
4928
  "compoundUnitPattern1-count-other": "{0}³"
4946
4929
  },
4947
4930
  "times": {
@@ -5101,10 +5084,10 @@
5101
5084
  },
5102
5085
  "concentr-permillion": {
5103
5086
  "displayName": "мільйонні долі",
5104
- "unitPattern-count-one": "{0} ppm",
5105
- "unitPattern-count-few": "{0} ppm",
5106
- "unitPattern-count-many": "{0} ppm",
5107
- "unitPattern-count-other": "{0} ppm"
5087
+ "unitPattern-count-one": "{0} м. д.",
5088
+ "unitPattern-count-few": "{0} м. д.",
5089
+ "unitPattern-count-many": "{0} м. д.",
5090
+ "unitPattern-count-other": "{0} м. д."
5108
5091
  },
5109
5092
  "concentr-percent": {
5110
5093
  "displayName": "відсоток",
@@ -5122,6 +5105,9 @@
5122
5105
  },
5123
5106
  "concentr-permyriad": {
5124
5107
  "displayName": "проміріада",
5108
+ "unitPattern-count-one": "{0}‱",
5109
+ "unitPattern-count-few": "{0}‱",
5110
+ "unitPattern-count-many": "{0}‱",
5125
5111
  "unitPattern-count-other": "{0}‱"
5126
5112
  },
5127
5113
  "concentr-mole": {
@@ -5258,6 +5244,14 @@
5258
5244
  "unitPattern-count-other": "{0} р.",
5259
5245
  "perUnitPattern": "{0}/р."
5260
5246
  },
5247
+ "duration-quarter": {
5248
+ "displayName": "кв.",
5249
+ "unitPattern-count-one": "{0} кв.",
5250
+ "unitPattern-count-few": "{0} кв.",
5251
+ "unitPattern-count-many": "{0} кв.",
5252
+ "unitPattern-count-other": "{0} кв.",
5253
+ "perUnitPattern": "{0}/кв."
5254
+ },
5261
5255
  "duration-month": {
5262
5256
  "displayName": "міс.",
5263
5257
  "unitPattern-count-one": "{0} міс.",
@@ -5503,10 +5497,10 @@
5503
5497
  "unitPattern-count-other": "{0} ppi"
5504
5498
  },
5505
5499
  "graphics-dot-per-centimeter": {
5506
- "displayName": "dpcm",
5507
- "unitPattern-count-one": "{0} ppcm",
5508
- "unitPattern-count-few": "{0} ppcm",
5509
- "unitPattern-count-many": "{0} ppcm",
5500
+ "displayName": "точки на см",
5501
+ "unitPattern-count-one": "{0} точка на см",
5502
+ "unitPattern-count-few": "{0} точки на см",
5503
+ "unitPattern-count-many": "{0} точок на см",
5510
5504
  "unitPattern-count-other": "{0} dpcm"
5511
5505
  },
5512
5506
  "graphics-dot-per-inch": {
@@ -5525,6 +5519,9 @@
5525
5519
  },
5526
5520
  "length-earth-radius": {
5527
5521
  "displayName": "R⊕",
5522
+ "unitPattern-count-one": "{0} R⊕",
5523
+ "unitPattern-count-few": "{0} R⊕",
5524
+ "unitPattern-count-many": "{0} R⊕",
5528
5525
  "unitPattern-count-other": "{0} R⊕"
5529
5526
  },
5530
5527
  "length-kilometer": {
@@ -5639,6 +5636,9 @@
5639
5636
  },
5640
5637
  "length-furlong": {
5641
5638
  "displayName": "фурлонги",
5639
+ "unitPattern-count-one": "{0} fur",
5640
+ "unitPattern-count-few": "{0} fur",
5641
+ "unitPattern-count-many": "{0} fur",
5642
5642
  "unitPattern-count-other": "{0} fur"
5643
5643
  },
5644
5644
  "length-fathom": {
@@ -5671,6 +5671,9 @@
5671
5671
  },
5672
5672
  "length-solar-radius": {
5673
5673
  "displayName": "радіус Сонця",
5674
+ "unitPattern-count-one": "{0} R☉",
5675
+ "unitPattern-count-few": "{0} R☉",
5676
+ "unitPattern-count-many": "{0} R☉",
5674
5677
  "unitPattern-count-other": "{0} R☉"
5675
5678
  },
5676
5679
  "light-lux": {
@@ -5696,9 +5699,12 @@
5696
5699
  },
5697
5700
  "light-solar-luminosity": {
5698
5701
  "displayName": "світності Сонця",
5702
+ "unitPattern-count-one": "{0} L☉",
5703
+ "unitPattern-count-few": "{0} L☉",
5704
+ "unitPattern-count-many": "{0} L☉",
5699
5705
  "unitPattern-count-other": "{0} L☉"
5700
5706
  },
5701
- "mass-metric-ton": {
5707
+ "mass-tonne": {
5702
5708
  "displayName": "метр. т",
5703
5709
  "unitPattern-count-one": "{0} метр. т",
5704
5710
  "unitPattern-count-few": "{0} метр. т",
@@ -5788,10 +5794,16 @@
5788
5794
  },
5789
5795
  "mass-earth-mass": {
5790
5796
  "displayName": "маси Землі",
5797
+ "unitPattern-count-one": "{0} M⊕",
5798
+ "unitPattern-count-few": "{0} M⊕",
5799
+ "unitPattern-count-many": "{0} M⊕",
5791
5800
  "unitPattern-count-other": "{0} M⊕"
5792
5801
  },
5793
5802
  "mass-solar-mass": {
5794
5803
  "displayName": "маси Сонця",
5804
+ "unitPattern-count-one": "{0} M☉",
5805
+ "unitPattern-count-few": "{0} M☉",
5806
+ "unitPattern-count-many": "{0} M☉",
5795
5807
  "unitPattern-count-other": "{0} M☉"
5796
5808
  },
5797
5809
  "mass-grain": {
@@ -6185,11 +6197,11 @@
6185
6197
  "unitPattern-count-other": "{0} дес. л."
6186
6198
  },
6187
6199
  "volume-dessert-spoon-imperial": {
6188
- "displayName": "імп. дес. ложка",
6189
- "unitPattern-count-one": "{0} імп. дес. ложка",
6190
- "unitPattern-count-few": "{0} імп. дес. ложки",
6191
- "unitPattern-count-many": "{0} імп. дес. ложок",
6192
- "unitPattern-count-other": "{0} імп. дес. ложки"
6200
+ "displayName": "англ. дес. ложки",
6201
+ "unitPattern-count-one": "{0} англ. дес. ложка",
6202
+ "unitPattern-count-few": "{0} англ. дес. ложки",
6203
+ "unitPattern-count-many": "{0} англ. дес. ложок",
6204
+ "unitPattern-count-other": "{0} англ. дес. ложки"
6193
6205
  },
6194
6206
  "volume-drop": {
6195
6207
  "displayName": "крапля",
@@ -6220,11 +6232,11 @@
6220
6232
  "unitPattern-count-other": "{0} дрібки"
6221
6233
  },
6222
6234
  "volume-quart-imperial": {
6223
- "displayName": "імп. квар.",
6224
- "unitPattern-count-one": "{0} імп. квар.",
6225
- "unitPattern-count-few": "{0} імп. квар.",
6226
- "unitPattern-count-many": "{0} імп. квар.",
6227
- "unitPattern-count-other": "{0} імп. квар."
6235
+ "displayName": "англ. кварти",
6236
+ "unitPattern-count-one": "{0} англ. кварта",
6237
+ "unitPattern-count-few": "{0} англ. кварти",
6238
+ "unitPattern-count-many": "{0} англ. кварт",
6239
+ "unitPattern-count-other": "{0} англ. кварти"
6228
6240
  },
6229
6241
  "coordinateUnit": {
6230
6242
  "displayName": "напрямок",
@@ -6361,41 +6373,56 @@
6361
6373
  },
6362
6374
  "eras-gregorian": {
6363
6375
  "0": {
6376
+ "_code": "gregory-inverse",
6377
+ "_aliases": "bc bce",
6364
6378
  "_end": "0-12-31"
6365
6379
  },
6366
6380
  "1": {
6381
+ "_code": "gregory",
6382
+ "_aliases": "ad ce",
6367
6383
  "_start": "1-01-01"
6368
6384
  }
6369
6385
  },
6370
6386
  "eras-islamic": {
6371
6387
  "0": {
6388
+ "_code": "islamic",
6389
+ "_aliases": "ah",
6372
6390
  "_start": "622-7-15"
6373
6391
  }
6374
6392
  },
6375
6393
  "eras-persian": {
6376
6394
  "0": {
6395
+ "_code": "persian",
6396
+ "_aliases": "ap",
6377
6397
  "_start": "622-01-01"
6378
6398
  }
6379
6399
  },
6380
6400
  "eras-buddhist": {
6381
6401
  "0": {
6402
+ "_code": "buddhist",
6403
+ "_aliases": "be",
6382
6404
  "_start": "-542-01-01"
6383
6405
  }
6384
6406
  },
6385
6407
  "eras-japanese": {
6386
6408
  "232": {
6409
+ "_code": "meiji",
6387
6410
  "_start": "1868-9-8"
6388
6411
  },
6389
6412
  "233": {
6413
+ "_code": "taisho",
6390
6414
  "_start": "1912-7-30"
6391
6415
  },
6392
6416
  "234": {
6417
+ "_code": "showa",
6393
6418
  "_start": "1926-12-25"
6394
6419
  },
6395
6420
  "235": {
6421
+ "_code": "heisei",
6396
6422
  "_start": "1989-1-8"
6397
6423
  },
6398
6424
  "236": {
6425
+ "_code": "reiwa",
6399
6426
  "_start": "2019-5-1"
6400
6427
  }
6401
6428
  },