@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": "afar",
7
7
  "ab": "abház",
@@ -21,6 +21,7 @@
21
21
  "am": "amhara",
22
22
  "an": "aragonéz",
23
23
  "ang": "óangol",
24
+ "ann": "obolo",
24
25
  "anp": "angika",
25
26
  "ar": "arab",
26
27
  "ar_001": "modern szabványos arab",
@@ -33,6 +34,7 @@
33
34
  "as": "asszámi",
34
35
  "asa": "asu",
35
36
  "ast": "asztúr",
37
+ "atj": "attikamek",
36
38
  "av": "avar",
37
39
  "awa": "awádi",
38
40
  "ay": "ajmara",
@@ -92,13 +94,21 @@
92
94
  "ckb": "közép-ázsiai kurd",
93
95
  "ckb_alt-menu": "közép-ázsiai kurd",
94
96
  "ckb_alt-variant": "kurd, szoráni",
97
+ "clc": "csilkotin",
95
98
  "co": "korzikai",
96
99
  "cop": "kopt",
97
100
  "cr": "krí",
101
+ "crg": "micsif",
98
102
  "crh": "krími tatár",
103
+ "crj": "délkeleti krí",
104
+ "crk": "síksági krí",
105
+ "crl": "északkeleti krí",
106
+ "crm": "moose krí",
107
+ "crr": "karolinai algonkin",
99
108
  "crs": "szeszelva kreol francia",
100
109
  "cs": "cseh",
101
110
  "csb": "kasub",
111
+ "csw": "mocsári krí",
102
112
  "cu": "egyházi szláv",
103
113
  "cv": "csuvas",
104
114
  "cy": "walesi",
@@ -134,9 +144,9 @@
134
144
  "en_AU": "ausztrál angol",
135
145
  "en_CA": "kanadai angol",
136
146
  "en_GB": "brit angol",
137
- "en_GB-alt-short": "brit angol",
147
+ "en_GB-alt-short": "angol (UK)",
138
148
  "en_US": "amerikai angol",
139
- "en_US-alt-short": "amerikai angol",
149
+ "en_US-alt-short": "angol (USA)",
140
150
  "enm": "közép angol",
141
151
  "eo": "eszperantó",
142
152
  "es": "spanyol",
@@ -193,8 +203,10 @@
193
203
  "hai": "haida",
194
204
  "hak": "hakka kínai",
195
205
  "haw": "hawaii",
206
+ "hax": "déli haida",
196
207
  "he": "héber",
197
208
  "hi": "hindi",
209
+ "hi_Latn-alt-variant": "hinglish",
198
210
  "hil": "ilokano",
199
211
  "hit": "hettita",
200
212
  "hmn": "hmong",
@@ -205,6 +217,7 @@
205
217
  "ht": "haiti kreol",
206
218
  "hu": "magyar",
207
219
  "hup": "hupa",
220
+ "hur": "halkomelem",
208
221
  "hy": "örmény",
209
222
  "hz": "herero",
210
223
  "ia": "interlingva",
@@ -215,6 +228,7 @@
215
228
  "ig": "igbó",
216
229
  "ii": "szecsuán ji",
217
230
  "ik": "inupiak",
231
+ "ikt": "nyugat-kanadai inuit",
218
232
  "ilo": "ilokó",
219
233
  "inh": "ingus",
220
234
  "io": "idó",
@@ -242,7 +256,7 @@
242
256
  "kea": "kabuverdianu",
243
257
  "kfo": "koro",
244
258
  "kg": "kongo",
245
- "kgp": "kgp",
259
+ "kgp": "kaingang",
246
260
  "kha": "kaszi",
247
261
  "kho": "kotanéz",
248
262
  "khq": "kojra-csíni",
@@ -273,6 +287,7 @@
273
287
  "kut": "kutenai",
274
288
  "kv": "komi",
275
289
  "kw": "korni",
290
+ "kwk": "kwakʼwala",
276
291
  "ky": "kirgiz",
277
292
  "la": "latin",
278
293
  "lad": "ladino",
@@ -284,6 +299,7 @@
284
299
  "lg": "ganda",
285
300
  "li": "limburgi",
286
301
  "lij": "ligur",
302
+ "lil": "lillooet",
287
303
  "lkt": "lakota",
288
304
  "ln": "lingala",
289
305
  "lo": "lao",
@@ -291,6 +307,7 @@
291
307
  "lou": "louisianai kreol",
292
308
  "loz": "lozi",
293
309
  "lrc": "északi luri",
310
+ "lsm": "samia",
294
311
  "lt": "litván",
295
312
  "lu": "luba-katanga",
296
313
  "lua": "luba-lulua",
@@ -326,6 +343,7 @@
326
343
  "mn": "mongol",
327
344
  "mnc": "mandzsu",
328
345
  "mni": "manipuri",
346
+ "moe": "innu-aimun",
329
347
  "moh": "mohawk",
330
348
  "mos": "moszi",
331
349
  "mr": "maráthi",
@@ -374,6 +392,11 @@
374
392
  "nzi": "nzima",
375
393
  "oc": "okszitán",
376
394
  "oj": "ojibva",
395
+ "ojb": "északnyugati odzsibva",
396
+ "ojc": "középvidéki odzsibva",
397
+ "ojs": "odzsi-krí",
398
+ "ojw": "nyugati odzsibva",
399
+ "oka": "okanagan",
377
400
  "om": "oromo",
378
401
  "or": "odia",
379
402
  "os": "oszét",
@@ -389,8 +412,10 @@
389
412
  "peo": "óperzsa",
390
413
  "phn": "főniciai",
391
414
  "pi": "pali",
415
+ "pis": "pidzsin",
392
416
  "pl": "lengyel",
393
417
  "pon": "pohnpei",
418
+ "pqm": "maliseet-passamaquoddy",
394
419
  "prg": "porosz",
395
420
  "pro": "óprovánszi",
396
421
  "ps": "pastu",
@@ -442,6 +467,7 @@
442
467
  "sid": "szidamó",
443
468
  "sk": "szlovák",
444
469
  "sl": "szlovén",
470
+ "slh": "déli lushootseed",
445
471
  "sm": "szamoai",
446
472
  "sma": "déli számi",
447
473
  "smj": "lulei számi",
@@ -458,6 +484,7 @@
458
484
  "ss": "sziszuati",
459
485
  "ssy": "szahó",
460
486
  "st": "déli szeszotó",
487
+ "str": "szorosmenti salish",
461
488
  "su": "szundanéz",
462
489
  "suk": "szukuma",
463
490
  "sus": "szuszu",
@@ -469,13 +496,16 @@
469
496
  "syc": "klasszikus szír",
470
497
  "syr": "szír",
471
498
  "ta": "tamil",
499
+ "tce": "déli tutchone",
472
500
  "te": "telugu",
473
501
  "tem": "temne",
474
502
  "teo": "teszó",
475
503
  "ter": "terenó",
476
504
  "tet": "tetum",
477
505
  "tg": "tadzsik",
506
+ "tgx": "tagish",
478
507
  "th": "thai",
508
+ "tht": "tahltan",
479
509
  "ti": "tigrinya",
480
510
  "tig": "tigré",
481
511
  "tiv": "tiv",
@@ -488,12 +518,14 @@
488
518
  "tn": "szecsuáni",
489
519
  "to": "tongai",
490
520
  "tog": "nyugati nyasza",
521
+ "tok": "toki pona",
491
522
  "tpi": "tok pisin",
492
523
  "tr": "török",
493
524
  "trv": "tarokó",
494
525
  "ts": "conga",
495
526
  "tsi": "csimsiáni",
496
527
  "tt": "tatár",
528
+ "ttm": "északi tutchone",
497
529
  "tum": "tumbuka",
498
530
  "tvl": "tuvalu",
499
531
  "tw": "twi",
@@ -532,7 +564,7 @@
532
564
  "ybb": "jemba",
533
565
  "yi": "jiddis",
534
566
  "yo": "joruba",
535
- "yrl": "yrl",
567
+ "yrl": "nheengatu",
536
568
  "yue": "kantoni",
537
569
  "yue_alt-menu": "kantoni kínai",
538
570
  "za": "zsuang",
@@ -552,9 +584,7 @@
552
584
  "zza": "zaza"
553
585
  },
554
586
  "scripts": {
555
- "Adlm": "Adlm",
556
- "Aghb": "Aghb",
557
- "Ahom": "Ahom",
587
+ "Adlm": "Adlam",
558
588
  "Arab": "Arab",
559
589
  "Arab-alt-variant": "Perzsa-arab",
560
590
  "Aran": "Nasztalik",
@@ -562,11 +592,8 @@
562
592
  "Armn": "Örmény",
563
593
  "Avst": "Avesztán",
564
594
  "Bali": "Balinéz",
565
- "Bamu": "Bamu",
566
- "Bass": "Bass",
567
595
  "Batk": "Batak",
568
596
  "Beng": "Bengáli",
569
- "Bhks": "Bhks",
570
597
  "Blis": "Bliss jelképrendszer",
571
598
  "Bopo": "Bopomofo",
572
599
  "Brah": "Brámi",
@@ -578,30 +605,20 @@
578
605
  "Cari": "Kari",
579
606
  "Cham": "Csám",
580
607
  "Cher": "Cseroki",
581
- "Chrs": "Chrs",
582
608
  "Copt": "Kopt",
583
- "Cpmn": "Cpmn",
584
609
  "Cprt": "Ciprusi",
585
610
  "Cyrl": "Cirill",
586
611
  "Cyrs": "Óegyházi szláv cirill",
587
612
  "Deva": "Devanagári",
588
- "Diak": "Diak",
589
- "Dogr": "Dogr",
590
613
  "Dsrt": "Deseret",
591
- "Dupl": "Dupl",
592
614
  "Egyd": "Egyiptomi demotikus",
593
615
  "Egyh": "Egyiptomi hieratikus",
594
616
  "Egyp": "Egyiptomi hieroglifák",
595
- "Elba": "Elba",
596
- "Elym": "Elym",
597
617
  "Ethi": "Etióp",
598
618
  "Geok": "Grúz kucsuri",
599
619
  "Geor": "Grúz",
600
620
  "Glag": "Glagolitikus",
601
- "Gong": "Gong",
602
- "Gonm": "Gonm",
603
621
  "Goth": "Gót",
604
- "Gran": "Gran",
605
622
  "Grek": "Görög",
606
623
  "Gujr": "Gudzsaráti",
607
624
  "Guru": "Gurmuki",
@@ -613,12 +630,9 @@
613
630
  "Hans-alt-stand-alone": "Egyszerűsített kínai",
614
631
  "Hant": "Hagyományos",
615
632
  "Hant-alt-stand-alone": "Hagyományos kínai",
616
- "Hatr": "Hatr",
617
633
  "Hebr": "Héber",
618
634
  "Hira": "Hiragana",
619
- "Hluw": "Hluw",
620
635
  "Hmng": "Pahawh hmong",
621
- "Hmnp": "Hmnp",
622
636
  "Hrkt": "Katakana vagy hiragana",
623
637
  "Hung": "Ómagyar",
624
638
  "Inds": "Indus",
@@ -628,11 +642,8 @@
628
642
  "Jpan": "Japán",
629
643
  "Kali": "Kajah li",
630
644
  "Kana": "Katakana",
631
- "Kawi": "Kawi",
632
645
  "Khar": "Kharoshthi",
633
646
  "Khmr": "Khmer",
634
- "Khoj": "Khoj",
635
- "Kits": "Kits",
636
647
  "Knda": "Kannada",
637
648
  "Kore": "Koreai",
638
649
  "Kthi": "Kaithi",
@@ -645,43 +656,23 @@
645
656
  "Limb": "Limbu",
646
657
  "Lina": "Lineáris A",
647
658
  "Linb": "Lineáris B",
648
- "Lisu": "Lisu",
649
659
  "Lyci": "Líciai",
650
660
  "Lydi": "Lídiai",
651
- "Mahj": "Mahj",
652
- "Maka": "Maka",
653
661
  "Mand": "Mandai",
654
662
  "Mani": "Manicheus",
655
- "Marc": "Marc",
656
663
  "Maya": "Maja hieroglifák",
657
- "Medf": "Medf",
658
- "Mend": "Mend",
659
- "Merc": "Merc",
660
664
  "Mero": "Meroitikus",
661
665
  "Mlym": "Malajálam",
662
- "Modi": "Modi",
663
666
  "Mong": "Mongol",
664
667
  "Moon": "Moon",
665
- "Mroo": "Mroo",
666
668
  "Mtei": "Meitei mayek",
667
- "Mult": "Mult",
668
669
  "Mymr": "Burmai",
669
- "Nagm": "Nagm",
670
- "Nand": "Nand",
671
- "Narb": "Narb",
672
- "Nbat": "Nbat",
673
- "Newa": "Newa",
674
670
  "Nkoo": "N’ko",
675
- "Nshu": "Nshu",
676
671
  "Ogam": "Ogham",
677
672
  "Olck": "Ol chiki",
678
673
  "Orkh": "Orhon",
679
674
  "Orya": "Oriya",
680
- "Osge": "Osge",
681
675
  "Osma": "Oszmán",
682
- "Ougr": "Ougr",
683
- "Palm": "Palm",
684
- "Pauc": "Pauc",
685
676
  "Perm": "Ópermikus",
686
677
  "Phag": "Phags-pa",
687
678
  "Phli": "Felriatos pahlavi",
@@ -692,23 +683,18 @@
692
683
  "Prti": "Feliratos parthian",
693
684
  "Qaag": "Zawgyi",
694
685
  "Rjng": "Redzsang",
695
- "Rohg": "Rohg",
686
+ "Rohg": "Hanifi",
696
687
  "Roro": "Rongorongo",
697
688
  "Runr": "Runikus",
698
689
  "Samr": "Szamaritán",
699
690
  "Sara": "Szarati",
700
- "Sarb": "Sarb",
701
691
  "Saur": "Szaurastra",
702
692
  "Sgnw": "Jelírás",
703
693
  "Shaw": "Shaw ábécé",
704
- "Shrd": "Shrd",
705
694
  "Sidd": "Sziddham",
706
- "Sind": "Sind",
707
695
  "Sinh": "Szingaléz",
708
696
  "Sogd": "Szogd",
709
697
  "Sogo": "Ószogd",
710
- "Sora": "Sora",
711
- "Soyo": "Soyo",
712
698
  "Sund": "Szundanéz",
713
699
  "Sylo": "Sylheti nagári",
714
700
  "Syrc": "Szíriai",
@@ -716,11 +702,9 @@
716
702
  "Syrj": "Nyugat-szíriai",
717
703
  "Syrn": "Kelet-szíriai",
718
704
  "Tagb": "Tagbanwa",
719
- "Takr": "Takr",
720
705
  "Tale": "Tai Le",
721
706
  "Talu": "Új tai lue",
722
707
  "Taml": "Tamil",
723
- "Tang": "Tang",
724
708
  "Tavt": "Tai viet",
725
709
  "Telu": "Telugu",
726
710
  "Teng": "Tengwar",
@@ -729,20 +713,12 @@
729
713
  "Thaa": "Thaana",
730
714
  "Thai": "Thai",
731
715
  "Tibt": "Tibeti",
732
- "Tirh": "Tirh",
733
- "Tnsa": "Tnsa",
734
- "Toto": "Toto",
735
716
  "Ugar": "Ugari",
736
717
  "Vaii": "Vai",
737
718
  "Visp": "Látható beszéd",
738
- "Vith": "Vith",
739
- "Wara": "Wara",
740
- "Wcho": "Wcho",
741
719
  "Xpeo": "Óperzsa",
742
720
  "Xsux": "Ékírásos suméro-akkád",
743
- "Yezi": "Yezi",
744
721
  "Yiii": "Ji",
745
- "Zanb": "Zanb",
746
722
  "Zinh": "Származtatott",
747
723
  "Zmth": "Matematikai jelrendszer",
748
724
  "Zsye": "Emoji",
@@ -969,6 +945,7 @@
969
945
  "NR": "Nauru",
970
946
  "NU": "Niue",
971
947
  "NZ": "Új-Zéland",
948
+ "NZ-alt-variant": "Aotearoa (Új-Zéland)",
972
949
  "OM": "Omán",
973
950
  "PA": "Panama",
974
951
  "PE": "Peru",
@@ -1028,6 +1005,7 @@
1028
1005
  "TN": "Tunézia",
1029
1006
  "TO": "Tonga",
1030
1007
  "TR": "Törökország",
1008
+ "TR-alt-variant": "Törökország",
1031
1009
  "TT": "Trinidad és Tobago",
1032
1010
  "TV": "Tuvalu",
1033
1011
  "TW": "Tajvan",
@@ -1088,24 +1066,24 @@
1088
1066
  "EBhm": "E B h:mm",
1089
1067
  "EBhms": "E B h:mm:ss",
1090
1068
  "Ed": "d., E",
1091
- "Ehm": "E h:mm a",
1069
+ "Ehm": "E h:mma",
1092
1070
  "EHm": "E HH:mm",
1093
- "Ehms": "E h:mm:ss a",
1071
+ "Ehms": "E h:mm:ssa",
1094
1072
  "EHms": "E HH:mm:ss",
1095
1073
  "Gy": "G y.",
1096
1074
  "GyMd": "GGGGG y. MM. dd.",
1097
1075
  "GyMMM": "G y. MMM",
1098
1076
  "GyMMMd": "G y. MMM d.",
1099
1077
  "GyMMMEd": "G y. MMM d., E",
1100
- "h": "a h",
1078
+ "h": "ah",
1101
1079
  "H": "H",
1102
- "hm": "a h:mm",
1080
+ "hm": "ah:mm",
1103
1081
  "Hm": "H:mm",
1104
- "hms": "a h:mm:ss",
1082
+ "hms": "ah:mm:ss",
1105
1083
  "Hms": "H:mm:ss",
1106
- "hmsv": "a h:mm:ss v",
1084
+ "hmsv": "ah:mm:ss v",
1107
1085
  "Hmsv": "HH:mm:ss v",
1108
- "hmv": "a h:mm v",
1086
+ "hmv": "ah:mm v",
1109
1087
  "Hmv": "HH:mm v",
1110
1088
  "M": "L",
1111
1089
  "Md": "M. d.",
@@ -1143,7 +1121,7 @@
1143
1121
  "Year": "{1} {0}"
1144
1122
  },
1145
1123
  "intervalFormats": {
1146
- "intervalFormatFallback": "{0} {1}",
1124
+ "intervalFormatFallback": "{0}{1}",
1147
1125
  "Bh": {
1148
1126
  "B": "h B – h B",
1149
1127
  "h": "h–h B"
@@ -1195,33 +1173,33 @@
1195
1173
  "y": "G y MMM d, E – y MMM d, E"
1196
1174
  },
1197
1175
  "h": {
1198
- "a": "a h a h",
1199
- "h": "a h–h"
1176
+ "a": "ahah",
1177
+ "h": "ah–h"
1200
1178
  },
1201
1179
  "H": {
1202
1180
  "H": "H–H"
1203
1181
  },
1204
1182
  "hm": {
1205
- "a": "a h:mm a h:mm",
1206
- "h": "a h:mm–h:mm",
1207
- "m": "a h:mm–h:mm"
1183
+ "a": "ah:mmah:mm",
1184
+ "h": "ah:mm–h:mm",
1185
+ "m": "ah:mm–h:mm"
1208
1186
  },
1209
1187
  "Hm": {
1210
1188
  "H": "H:mm–H:mm",
1211
1189
  "m": "H:mm–H:mm"
1212
1190
  },
1213
1191
  "hmv": {
1214
- "a": "a h:mm a h:mm v",
1215
- "h": "a h:mm–h:mm v",
1216
- "m": "a h:mm–h:mm v"
1192
+ "a": "ah:mmah:mm v",
1193
+ "h": "ah:mm–h:mm v",
1194
+ "m": "ah:mm–h:mm v"
1217
1195
  },
1218
1196
  "Hmv": {
1219
1197
  "H": "H:mm–H:mm v",
1220
1198
  "m": "H:mm–H:mm v"
1221
1199
  },
1222
1200
  "hv": {
1223
- "a": "a h a h v",
1224
- "h": "a h–h v"
1201
+ "a": "ahah v",
1202
+ "h": "ah–h v"
1225
1203
  },
1226
1204
  "Hv": {
1227
1205
  "H": "H–H v"
@@ -1231,57 +1209,57 @@
1231
1209
  },
1232
1210
  "Md": {
1233
1211
  "d": "M. d–d.",
1234
- "M": "M. d. M. d."
1212
+ "M": "M. d.M. d."
1235
1213
  },
1236
1214
  "MEd": {
1237
- "d": "M. dd., E M. d., E",
1238
- "M": "M. d., E M. d., E"
1215
+ "d": "M. dd., EM. d., E",
1216
+ "M": "M. d., EM. d., E"
1239
1217
  },
1240
1218
  "MMM": {
1241
1219
  "M": "MMM–MMM"
1242
1220
  },
1243
1221
  "MMMd": {
1244
1222
  "d": "MMM d–d.",
1245
- "M": "MMM d. MMM d."
1223
+ "M": "MMM d.MMM d."
1246
1224
  },
1247
1225
  "MMMEd": {
1248
- "d": "MMM d., E d., E",
1249
- "M": "MMM d., E MMM d., E"
1226
+ "d": "MMM d., Ed., E",
1227
+ "M": "MMM d., EMMM d., E"
1250
1228
  },
1251
1229
  "y": {
1252
1230
  "y": "y–y"
1253
1231
  },
1254
1232
  "yM": {
1255
1233
  "M": "y. MM–MM.",
1256
- "y": "y. MM. y. MM."
1234
+ "y": "y. MM.y. MM."
1257
1235
  },
1258
1236
  "yMd": {
1259
1237
  "d": "y. MM. dd–dd.",
1260
- "M": "y. MM. dd. MM. dd.",
1261
- "y": "y. MM. dd. y. MM. dd."
1238
+ "M": "y. MM. dd.MM. dd.",
1239
+ "y": "y. MM. dd.y. MM. dd."
1262
1240
  },
1263
1241
  "yMEd": {
1264
- "d": "y. MM. dd., E dd., E",
1265
- "M": "y. MM. dd., E MM. dd., E",
1266
- "y": "y. MM. dd., E y. MM. dd., E"
1242
+ "d": "y. MM. dd., Edd., E",
1243
+ "M": "y. MM. dd., EMM. dd., E",
1244
+ "y": "y. MM. dd., Ey. MM. dd., E"
1267
1245
  },
1268
1246
  "yMMM": {
1269
1247
  "M": "y. MMM–MMM",
1270
- "y": "y. MMM y. MMM"
1248
+ "y": "y. MMMy. MMM"
1271
1249
  },
1272
1250
  "yMMMd": {
1273
1251
  "d": "y. MMM d–d.",
1274
- "M": "y. MMM d. MMM d.",
1275
- "y": "y. MMM d. y. MMM d."
1252
+ "M": "y. MMM d.MMM d.",
1253
+ "y": "y. MMM d.y. MMM d."
1276
1254
  },
1277
1255
  "yMMMEd": {
1278
- "d": "y. MMM d., E d., E",
1279
- "M": "y. MMM d., E MMM d., E",
1280
- "y": "y. MMM d., E y. MMM d., E"
1256
+ "d": "y. MMM d., Ed., E",
1257
+ "M": "y. MMM d., EMMM d., E",
1258
+ "y": "y. MMM d., Ey. MMM d., E"
1281
1259
  },
1282
1260
  "yMMMM": {
1283
1261
  "M": "y. MMMM–MMMM",
1284
- "y": "y. MMMM y. MMMM"
1262
+ "y": "y. MMMMy. MMMM"
1285
1263
  }
1286
1264
  }
1287
1265
  },
@@ -1640,11 +1618,11 @@
1640
1618
  "GyMMM": "G y. MMM",
1641
1619
  "GyMMMd": "G y. MMM d.",
1642
1620
  "GyMMMEd": "G y. MMM d., E",
1643
- "h": "a h",
1621
+ "h": "ah",
1644
1622
  "H": "H",
1645
- "hm": "a h:mm",
1623
+ "hm": "ah:mm",
1646
1624
  "Hm": "H:mm",
1647
- "hms": "a h:mm:ss",
1625
+ "hms": "ah:mm:ss",
1648
1626
  "Hms": "H:mm:ss",
1649
1627
  "M": "L",
1650
1628
  "Md": "M. d.",
@@ -1680,7 +1658,7 @@
1680
1658
  "Year": "{1} {0}"
1681
1659
  },
1682
1660
  "intervalFormats": {
1683
- "intervalFormatFallback": "{0} {1}",
1661
+ "intervalFormatFallback": "{0}{1}",
1684
1662
  "Bh": {
1685
1663
  "B": "h B – h B",
1686
1664
  "h": "h–h B"
@@ -1688,7 +1666,7 @@
1688
1666
  "Bhm": {
1689
1667
  "B": "h:mm B – h:mm B",
1690
1668
  "h": "h:mm–h:mm B",
1691
- "m": "h:mm h:mm B"
1669
+ "m": "h:mmh:mm B"
1692
1670
  },
1693
1671
  "d": {
1694
1672
  "d": "d–d."
@@ -1732,33 +1710,33 @@
1732
1710
  "y": "G y MMM d, E – y MMM d, E"
1733
1711
  },
1734
1712
  "h": {
1735
- "a": "a h a h",
1736
- "h": "a h–h"
1713
+ "a": "ahah",
1714
+ "h": "ah–h"
1737
1715
  },
1738
1716
  "H": {
1739
1717
  "H": "H–H"
1740
1718
  },
1741
1719
  "hm": {
1742
- "a": "a h:mm a h:mm",
1743
- "h": "a h:mm–h:mm",
1744
- "m": "a h:mm–h:mm"
1720
+ "a": "ah:mmah:mm",
1721
+ "h": "ah:mm–h:mm",
1722
+ "m": "ah:mm–h:mm"
1745
1723
  },
1746
1724
  "Hm": {
1747
1725
  "H": "H:mm–H:mm",
1748
1726
  "m": "H:mm–H:mm"
1749
1727
  },
1750
1728
  "hmv": {
1751
- "a": "a h:mm a h:mm v",
1752
- "h": "a h:mm–h:mm v",
1753
- "m": "a h:mm–h:mm v"
1729
+ "a": "ah:mmah:mm v",
1730
+ "h": "ah:mm–h:mm v",
1731
+ "m": "ah:mm–h:mm v"
1754
1732
  },
1755
1733
  "Hmv": {
1756
1734
  "H": "H:mm–H:mm v",
1757
1735
  "m": "H:mm–H:mm v"
1758
1736
  },
1759
1737
  "hv": {
1760
- "a": "a h a h v",
1761
- "h": "a h–h v"
1738
+ "a": "ahah v",
1739
+ "h": "ah–h v"
1762
1740
  },
1763
1741
  "Hv": {
1764
1742
  "H": "H–H v"
@@ -1768,57 +1746,57 @@
1768
1746
  },
1769
1747
  "Md": {
1770
1748
  "d": "MM. dd–dd.",
1771
- "M": "MM. dd. MM. dd."
1749
+ "M": "MM. dd.MM. dd."
1772
1750
  },
1773
1751
  "MEd": {
1774
- "d": "MM. dd., E MM. dd., E",
1775
- "M": "MM. dd., E MM. dd., E"
1752
+ "d": "MM. dd., EMM. dd., E",
1753
+ "M": "MM. dd., EMM. dd., E"
1776
1754
  },
1777
1755
  "MMM": {
1778
1756
  "M": "MMM–MMM"
1779
1757
  },
1780
1758
  "MMMd": {
1781
1759
  "d": "MMM d–d.",
1782
- "M": "MMM d. MMM d."
1760
+ "M": "MMM d.MMM d."
1783
1761
  },
1784
1762
  "MMMEd": {
1785
- "d": "MMM d., E d., E",
1786
- "M": "MMM d., E MMM d., E"
1763
+ "d": "MMM d., Ed., E",
1764
+ "M": "MMM d., EMMM d., E"
1787
1765
  },
1788
1766
  "y": {
1789
1767
  "y": "G y–y."
1790
1768
  },
1791
1769
  "yM": {
1792
1770
  "M": "G y. MM–MM.",
1793
- "y": "G y. MM. y. MM."
1771
+ "y": "G y. MM.y. MM."
1794
1772
  },
1795
1773
  "yMd": {
1796
1774
  "d": "G y. MM. dd–dd.",
1797
- "M": "G y. MM. dd. MM. dd.",
1798
- "y": "G y. MM. dd. y. MM. dd."
1775
+ "M": "G y. MM. dd.MM. dd.",
1776
+ "y": "G y. MM. dd.y. MM. dd."
1799
1777
  },
1800
1778
  "yMEd": {
1801
- "d": "G y. MM. dd., E dd., E",
1802
- "M": "G y. MM. dd., E MM. dd., E",
1803
- "y": "G y. MM. dd., E y. MM. dd., E"
1779
+ "d": "G y. MM. dd., Edd., E",
1780
+ "M": "G y. MM. dd., EMM. dd., E",
1781
+ "y": "G y. MM. dd., Ey. MM. dd., E"
1804
1782
  },
1805
1783
  "yMMM": {
1806
1784
  "M": "G y. MMM–MMM",
1807
- "y": "G y. MMM y. MMM"
1785
+ "y": "G y. MMMy. MMM"
1808
1786
  },
1809
1787
  "yMMMd": {
1810
1788
  "d": "G y. MMM d–d.",
1811
- "M": "G y. MMM d. MMM d.",
1812
- "y": "G y. MMM d. y. MMM d."
1789
+ "M": "G y. MMM d.MMM d.",
1790
+ "y": "G y. MMM d.y. MMM d."
1813
1791
  },
1814
1792
  "yMMMEd": {
1815
- "d": "G y. MMM d., E MMM d., E",
1816
- "M": "G y. MMM d., E MMM d., E",
1817
- "y": "G y. MMM d., E y. MMM d., E"
1793
+ "d": "G y. MMM d., EMMM d., E",
1794
+ "M": "G y. MMM d., EMMM d., E",
1795
+ "y": "G y. MMM d., Ey. MMM d., E"
1818
1796
  },
1819
1797
  "yMMMM": {
1820
1798
  "M": "G y. MMMM–MMMM",
1821
- "y": "G y. MMMM y. MMMM"
1799
+ "y": "G y. MMMMy. MMMM"
1822
1800
  }
1823
1801
  }
1824
1802
  },
@@ -2174,11 +2152,11 @@
2174
2152
  "GyMMM": "G y. MMM",
2175
2153
  "GyMMMd": "G y. MMM d.",
2176
2154
  "GyMMMEd": "G y. MMM d., E",
2177
- "h": "a h",
2155
+ "h": "ah",
2178
2156
  "H": "H",
2179
- "hm": "a h:mm",
2157
+ "hm": "ah:mm",
2180
2158
  "Hm": "H:mm",
2181
- "hms": "a h:mm:ss",
2159
+ "hms": "ah:mm:ss",
2182
2160
  "Hms": "H:mm:ss",
2183
2161
  "M": "L",
2184
2162
  "Md": "M. d.",
@@ -2214,7 +2192,7 @@
2214
2192
  "Year": "{1} {0}"
2215
2193
  },
2216
2194
  "intervalFormats": {
2217
- "intervalFormatFallback": "{0} {1}",
2195
+ "intervalFormatFallback": "{0}{1}",
2218
2196
  "Bh": {
2219
2197
  "B": "h B – h B",
2220
2198
  "h": "h–h B"
@@ -2222,7 +2200,7 @@
2222
2200
  "Bhm": {
2223
2201
  "B": "h:mm B – h:mm B",
2224
2202
  "h": "h:mm–h:mm B",
2225
- "m": "h:mm h:mm B"
2203
+ "m": "h:mmh:mm B"
2226
2204
  },
2227
2205
  "d": {
2228
2206
  "d": "d–d."
@@ -2266,33 +2244,33 @@
2266
2244
  "y": "G y MMM d, E – y MMM d, E"
2267
2245
  },
2268
2246
  "h": {
2269
- "a": "a h a h",
2270
- "h": "a h–h"
2247
+ "a": "ahah",
2248
+ "h": "ah–h"
2271
2249
  },
2272
2250
  "H": {
2273
2251
  "H": "H–H"
2274
2252
  },
2275
2253
  "hm": {
2276
- "a": "a h:mm a h:mm",
2277
- "h": "a h:mm–h:mm",
2278
- "m": "a h:mm–h:mm"
2254
+ "a": "ah:mmah:mm",
2255
+ "h": "ah:mm–h:mm",
2256
+ "m": "ah:mm–h:mm"
2279
2257
  },
2280
2258
  "Hm": {
2281
2259
  "H": "H:mm–H:mm",
2282
2260
  "m": "H:mm–H:mm"
2283
2261
  },
2284
2262
  "hmv": {
2285
- "a": "a h:mm a h:mm v",
2286
- "h": "a h:mm–h:mm v",
2287
- "m": "a h:mm–h:mm v"
2263
+ "a": "ah:mmah:mm v",
2264
+ "h": "ah:mm–h:mm v",
2265
+ "m": "ah:mm–h:mm v"
2288
2266
  },
2289
2267
  "Hmv": {
2290
2268
  "H": "H:mm–H:mm v",
2291
2269
  "m": "H:mm–H:mm v"
2292
2270
  },
2293
2271
  "hv": {
2294
- "a": "a h a h v",
2295
- "h": "a h–h v"
2272
+ "a": "ahah v",
2273
+ "h": "ah–h v"
2296
2274
  },
2297
2275
  "Hv": {
2298
2276
  "H": "H–H v"
@@ -2302,22 +2280,22 @@
2302
2280
  },
2303
2281
  "Md": {
2304
2282
  "d": "MM. dd–dd.",
2305
- "M": "MM. dd. MM. dd."
2283
+ "M": "MM. dd.MM. dd."
2306
2284
  },
2307
2285
  "MEd": {
2308
- "d": "MM. dd., E MM. dd., E",
2309
- "M": "MM. dd., E MM. dd., E"
2286
+ "d": "MM. dd., EMM. dd., E",
2287
+ "M": "MM. dd., EMM. dd., E"
2310
2288
  },
2311
2289
  "MMM": {
2312
2290
  "M": "MMM–MMM"
2313
2291
  },
2314
2292
  "MMMd": {
2315
2293
  "d": "MMM d–d.",
2316
- "M": "MMM d. MMM d."
2294
+ "M": "MMM d.MMM d."
2317
2295
  },
2318
2296
  "MMMEd": {
2319
- "d": "MMM d., E d., E",
2320
- "M": "MMM d., E MMM d., E"
2297
+ "d": "MMM d., Ed., E",
2298
+ "M": "MMM d., EMMM d., E"
2321
2299
  },
2322
2300
  "y": {
2323
2301
  "y": "G y–y.",
@@ -2325,42 +2303,42 @@
2325
2303
  },
2326
2304
  "yM": {
2327
2305
  "M": "G y. MM–MM.",
2328
- "y": "G y. MM. y. MM.",
2329
- "G": "G y. MM. G y. MM."
2306
+ "y": "G y. MM.y. MM.",
2307
+ "G": "G y. MM.G y. MM."
2330
2308
  },
2331
2309
  "yMd": {
2332
2310
  "d": "G y. MM. dd–dd.",
2333
- "M": "G y. MM. dd. MM. dd.",
2334
- "y": "G y. MM. dd. y. MM. dd.",
2335
- "G": "G y. MM. dd. G y. MM. dd."
2311
+ "M": "G y. MM. dd.MM. dd.",
2312
+ "y": "G y. MM. dd.y. MM. dd.",
2313
+ "G": "G y. MM. dd.G y. MM. dd."
2336
2314
  },
2337
2315
  "yMEd": {
2338
- "d": "G y. MM. dd., E dd., E",
2339
- "M": "G y. MM. dd., E MM. dd., E",
2340
- "y": "G y. MM. dd., E y. MM. dd., E",
2341
- "G": "G y. MM. dd., E G y. MM. dd., E"
2316
+ "d": "G y. MM. dd., Edd., E",
2317
+ "M": "G y. MM. dd., EMM. dd., E",
2318
+ "y": "G y. MM. dd., Ey. MM. dd., E",
2319
+ "G": "G y. MM. dd., EG y. MM. dd., E"
2342
2320
  },
2343
2321
  "yMMM": {
2344
2322
  "M": "G y. MMM–MMM",
2345
- "y": "G y. MMM y. MMM",
2346
- "G": "G y. MMM G y. MMM"
2323
+ "y": "G y. MMMy. MMM",
2324
+ "G": "G y. MMMG y. MMM"
2347
2325
  },
2348
2326
  "yMMMd": {
2349
2327
  "d": "G y. MMM d–d.",
2350
- "M": "G y. MMM d. MMM d.",
2351
- "y": "G y. MMM d. y. MMM d.",
2352
- "G": "G y. MMM d. G y. MMM d."
2328
+ "M": "G y. MMM d.MMM d.",
2329
+ "y": "G y. MMM d.y. MMM d.",
2330
+ "G": "G y. MMM d.G y. MMM d."
2353
2331
  },
2354
2332
  "yMMMEd": {
2355
- "d": "G y. MMM d., E MMM d., E",
2356
- "M": "G y. MMM d., E MMM d., E",
2357
- "y": "G y. MMM d., E y. MMM d., E",
2358
- "G": "G y. MMM d., E G y. MMM d., E"
2333
+ "d": "G y. MMM d., EMMM d., E",
2334
+ "M": "G y. MMM d., EMMM d., E",
2335
+ "y": "G y. MMM d., Ey. MMM d., E",
2336
+ "G": "G y. MMM d., EG y. MMM d., E"
2359
2337
  },
2360
2338
  "yMMMM": {
2361
2339
  "M": "G y. MMMM–MMMM",
2362
- "y": "G y. MMMM y. MMMM",
2363
- "G": "G y. MMMM G y. MMMM"
2340
+ "y": "G y. MMMMy. MMMM",
2341
+ "G": "G y. MMMMG y. MMMM"
2364
2342
  }
2365
2343
  }
2366
2344
  },
@@ -2728,11 +2706,11 @@
2728
2706
  "GyMMM": "G y. MMM",
2729
2707
  "GyMMMd": "G y. MMM d.",
2730
2708
  "GyMMMEd": "G y. MMM d., E",
2731
- "h": "a h",
2709
+ "h": "ah",
2732
2710
  "H": "H",
2733
- "hm": "a h:mm",
2711
+ "hm": "ah:mm",
2734
2712
  "Hm": "H:mm",
2735
- "hms": "a h:mm:ss",
2713
+ "hms": "ah:mm:ss",
2736
2714
  "Hms": "H:mm:ss",
2737
2715
  "M": "L",
2738
2716
  "Md": "M. d.",
@@ -2768,7 +2746,7 @@
2768
2746
  "Year": "{1} {0}"
2769
2747
  },
2770
2748
  "intervalFormats": {
2771
- "intervalFormatFallback": "{0} {1}",
2749
+ "intervalFormatFallback": "{0}{1}",
2772
2750
  "Bh": {
2773
2751
  "B": "h B – h B",
2774
2752
  "h": "h–h B"
@@ -2776,7 +2754,7 @@
2776
2754
  "Bhm": {
2777
2755
  "B": "h:mm B – h:mm B",
2778
2756
  "h": "h:mm–h:mm B",
2779
- "m": "h:mm h:mm B"
2757
+ "m": "h:mmh:mm B"
2780
2758
  },
2781
2759
  "d": {
2782
2760
  "d": "d–d."
@@ -2820,33 +2798,33 @@
2820
2798
  "y": "G y MMM d, E – y MMM d, E"
2821
2799
  },
2822
2800
  "h": {
2823
- "a": "a h a h",
2824
- "h": "a h–h"
2801
+ "a": "ahah",
2802
+ "h": "ah–h"
2825
2803
  },
2826
2804
  "H": {
2827
2805
  "H": "H–H"
2828
2806
  },
2829
2807
  "hm": {
2830
- "a": "a h:mm a h:mm",
2831
- "h": "a h:mm–h:mm",
2832
- "m": "a h:mm–h:mm"
2808
+ "a": "ah:mmah:mm",
2809
+ "h": "ah:mm–h:mm",
2810
+ "m": "ah:mm–h:mm"
2833
2811
  },
2834
2812
  "Hm": {
2835
2813
  "H": "H:mm–H:mm",
2836
2814
  "m": "H:mm–H:mm"
2837
2815
  },
2838
2816
  "hmv": {
2839
- "a": "a h:mm a h:mm v",
2840
- "h": "a h:mm–h:mm v",
2841
- "m": "a h:mm–h:mm v"
2817
+ "a": "ah:mmah:mm v",
2818
+ "h": "ah:mm–h:mm v",
2819
+ "m": "ah:mm–h:mm v"
2842
2820
  },
2843
2821
  "Hmv": {
2844
2822
  "H": "H:mm–H:mm v",
2845
2823
  "m": "H:mm–H:mm v"
2846
2824
  },
2847
2825
  "hv": {
2848
- "a": "a h a h v",
2849
- "h": "a h–h v"
2826
+ "a": "ahah v",
2827
+ "h": "ah–h v"
2850
2828
  },
2851
2829
  "Hv": {
2852
2830
  "H": "H–H v"
@@ -2856,57 +2834,57 @@
2856
2834
  },
2857
2835
  "Md": {
2858
2836
  "d": "MM. dd–dd.",
2859
- "M": "MM. dd. MM. dd."
2837
+ "M": "MM. dd.MM. dd."
2860
2838
  },
2861
2839
  "MEd": {
2862
- "d": "MM. dd., E MM. dd., E",
2863
- "M": "MM. dd., E MM. dd., E"
2840
+ "d": "MM. dd., EMM. dd., E",
2841
+ "M": "MM. dd., EMM. dd., E"
2864
2842
  },
2865
2843
  "MMM": {
2866
2844
  "M": "MMM–MMM"
2867
2845
  },
2868
2846
  "MMMd": {
2869
2847
  "d": "MMM d–d.",
2870
- "M": "MMM d. MMM d."
2848
+ "M": "MMM d.MMM d."
2871
2849
  },
2872
2850
  "MMMEd": {
2873
- "d": "MMM d., E d., E",
2874
- "M": "MMM d., E MMM d., E"
2851
+ "d": "MMM d., Ed., E",
2852
+ "M": "MMM d., EMMM d., E"
2875
2853
  },
2876
2854
  "y": {
2877
2855
  "y": "G y–y."
2878
2856
  },
2879
2857
  "yM": {
2880
2858
  "M": "G y. MM–MM.",
2881
- "y": "G y. MM. y. MM."
2859
+ "y": "G y. MM.y. MM."
2882
2860
  },
2883
2861
  "yMd": {
2884
2862
  "d": "G y. MM. dd–dd.",
2885
- "M": "G y. MM. dd. MM. dd.",
2886
- "y": "G y. MM. dd. y. MM. dd."
2863
+ "M": "G y. MM. dd.MM. dd.",
2864
+ "y": "G y. MM. dd.y. MM. dd."
2887
2865
  },
2888
2866
  "yMEd": {
2889
- "d": "G y. MM. dd., E dd., E",
2890
- "M": "G y. MM. dd., E MM. dd., E",
2891
- "y": "G y. MM. dd., E y. MM. dd., E"
2867
+ "d": "G y. MM. dd., Edd., E",
2868
+ "M": "G y. MM. dd., EMM. dd., E",
2869
+ "y": "G y. MM. dd., Ey. MM. dd., E"
2892
2870
  },
2893
2871
  "yMMM": {
2894
2872
  "M": "G y. MMM–MMM",
2895
- "y": "G y. MMM y. MMM"
2873
+ "y": "G y. MMMy. MMM"
2896
2874
  },
2897
2875
  "yMMMd": {
2898
2876
  "d": "G y. MMM d–d.",
2899
- "M": "G y. MMM d. MMM d.",
2900
- "y": "G y. MMM d. y. MMM d."
2877
+ "M": "G y. MMM d.MMM d.",
2878
+ "y": "G y. MMM d.y. MMM d."
2901
2879
  },
2902
2880
  "yMMMEd": {
2903
- "d": "G y. MMM d., E MMM d., E",
2904
- "M": "G y. MMM d., E MMM d., E",
2905
- "y": "G y. MMM d., E y. MMM d., E"
2881
+ "d": "G y. MMM d., EMMM d., E",
2882
+ "M": "G y. MMM d., EMMM d., E",
2883
+ "y": "G y. MMM d., Ey. MMM d., E"
2906
2884
  },
2907
2885
  "yMMMM": {
2908
2886
  "M": "G y. MMMM–MMMM",
2909
- "y": "G y. MMMM y. MMMM"
2887
+ "y": "G y. MMMMy. MMMM"
2910
2888
  }
2911
2889
  }
2912
2890
  },
@@ -3262,11 +3240,11 @@
3262
3240
  "GyMMM": "G y. MMM",
3263
3241
  "GyMMMd": "G y. MMM d.",
3264
3242
  "GyMMMEd": "G y. MMM d., E",
3265
- "h": "a h",
3243
+ "h": "ah",
3266
3244
  "H": "H",
3267
- "hm": "a h:mm",
3245
+ "hm": "ah:mm",
3268
3246
  "Hm": "H:mm",
3269
- "hms": "a h:mm:ss",
3247
+ "hms": "ah:mm:ss",
3270
3248
  "Hms": "H:mm:ss",
3271
3249
  "M": "L",
3272
3250
  "Md": "M. d.",
@@ -3302,7 +3280,7 @@
3302
3280
  "Year": "{1} {0}"
3303
3281
  },
3304
3282
  "intervalFormats": {
3305
- "intervalFormatFallback": "{0} {1}",
3283
+ "intervalFormatFallback": "{0}{1}",
3306
3284
  "Bh": {
3307
3285
  "B": "h B – h B",
3308
3286
  "h": "h–h B"
@@ -3310,7 +3288,7 @@
3310
3288
  "Bhm": {
3311
3289
  "B": "h:mm B – h:mm B",
3312
3290
  "h": "h:mm–h:mm B",
3313
- "m": "h:mm h:mm B"
3291
+ "m": "h:mmh:mm B"
3314
3292
  },
3315
3293
  "d": {
3316
3294
  "d": "d–d."
@@ -3354,33 +3332,33 @@
3354
3332
  "y": "G y MMM d, E – y MMM d, E"
3355
3333
  },
3356
3334
  "h": {
3357
- "a": "a h a h",
3358
- "h": "a h–h"
3335
+ "a": "ahah",
3336
+ "h": "ah–h"
3359
3337
  },
3360
3338
  "H": {
3361
3339
  "H": "H–H"
3362
3340
  },
3363
3341
  "hm": {
3364
- "a": "a h:mm a h:mm",
3365
- "h": "a h:mm–h:mm",
3366
- "m": "a h:mm–h:mm"
3342
+ "a": "ah:mmah:mm",
3343
+ "h": "ah:mm–h:mm",
3344
+ "m": "ah:mm–h:mm"
3367
3345
  },
3368
3346
  "Hm": {
3369
3347
  "H": "H:mm–H:mm",
3370
3348
  "m": "H:mm–H:mm"
3371
3349
  },
3372
3350
  "hmv": {
3373
- "a": "a h:mm a h:mm v",
3374
- "h": "a h:mm–h:mm v",
3375
- "m": "a h:mm–h:mm v"
3351
+ "a": "ah:mmah:mm v",
3352
+ "h": "ah:mm–h:mm v",
3353
+ "m": "ah:mm–h:mm v"
3376
3354
  },
3377
3355
  "Hmv": {
3378
3356
  "H": "H:mm–H:mm v",
3379
3357
  "m": "H:mm–H:mm v"
3380
3358
  },
3381
3359
  "hv": {
3382
- "a": "a h a h v",
3383
- "h": "a h–h v"
3360
+ "a": "ahah v",
3361
+ "h": "ah–h v"
3384
3362
  },
3385
3363
  "Hv": {
3386
3364
  "H": "H–H v"
@@ -3390,57 +3368,57 @@
3390
3368
  },
3391
3369
  "Md": {
3392
3370
  "d": "MM. dd–dd.",
3393
- "M": "MM. dd. MM. dd."
3371
+ "M": "MM. dd.MM. dd."
3394
3372
  },
3395
3373
  "MEd": {
3396
- "d": "MM. dd., E MM. dd., E",
3397
- "M": "MM. dd., E MM. dd., E"
3374
+ "d": "MM. dd., EMM. dd., E",
3375
+ "M": "MM. dd., EMM. dd., E"
3398
3376
  },
3399
3377
  "MMM": {
3400
3378
  "M": "MMM–MMM"
3401
3379
  },
3402
3380
  "MMMd": {
3403
3381
  "d": "MMM d–d.",
3404
- "M": "MMM d. MMM d."
3382
+ "M": "MMM d.MMM d."
3405
3383
  },
3406
3384
  "MMMEd": {
3407
- "d": "MMM d., E d., E",
3408
- "M": "MMM d., E MMM d., E"
3385
+ "d": "MMM d., Ed., E",
3386
+ "M": "MMM d., EMMM d., E"
3409
3387
  },
3410
3388
  "y": {
3411
3389
  "y": "G y–y."
3412
3390
  },
3413
3391
  "yM": {
3414
3392
  "M": "G y. MM–MM.",
3415
- "y": "G y. MM. y. MM."
3393
+ "y": "G y. MM.y. MM."
3416
3394
  },
3417
3395
  "yMd": {
3418
3396
  "d": "G y. MM. dd–dd.",
3419
- "M": "G y. MM. dd. MM. dd.",
3420
- "y": "G y. MM. dd. y. MM. dd."
3397
+ "M": "G y. MM. dd.MM. dd.",
3398
+ "y": "G y. MM. dd.y. MM. dd."
3421
3399
  },
3422
3400
  "yMEd": {
3423
- "d": "G y. MM. dd., E dd., E",
3424
- "M": "G y. MM. dd., E MM. dd., E",
3425
- "y": "G y. MM. dd., E y. MM. dd., E"
3401
+ "d": "G y. MM. dd., Edd., E",
3402
+ "M": "G y. MM. dd., EMM. dd., E",
3403
+ "y": "G y. MM. dd., Ey. MM. dd., E"
3426
3404
  },
3427
3405
  "yMMM": {
3428
3406
  "M": "G y. MMM–MMM",
3429
- "y": "G y. MMM y. MMM"
3407
+ "y": "G y. MMMy. MMM"
3430
3408
  },
3431
3409
  "yMMMd": {
3432
3410
  "d": "G y. MMM d–d.",
3433
- "M": "G y. MMM d. MMM d.",
3434
- "y": "G y. MMM d. y. MMM d."
3411
+ "M": "G y. MMM d.MMM d.",
3412
+ "y": "G y. MMM d.y. MMM d."
3435
3413
  },
3436
3414
  "yMMMEd": {
3437
- "d": "G y. MMM d., E MMM d., E",
3438
- "M": "G y. MMM d., E MMM d., E",
3439
- "y": "G y. MMM d., E y. MMM d., E"
3415
+ "d": "G y. MMM d., EMMM d., E",
3416
+ "M": "G y. MMM d., EMMM d., E",
3417
+ "y": "G y. MMM d., Ey. MMM d., E"
3440
3418
  },
3441
3419
  "yMMMM": {
3442
3420
  "M": "G y. MMMM–MMMM",
3443
- "y": "G y. MMMM y. MMMM"
3421
+ "y": "G y. MMMMy. MMMM"
3444
3422
  }
3445
3423
  }
3446
3424
  },
@@ -3802,8 +3780,8 @@
3802
3780
  "relativeTimePattern-count-other": "{0} év múlva"
3803
3781
  },
3804
3782
  "relativeTime-type-past": {
3805
- "relativeTimePattern-count-one": "{0} évvel ezelőtt",
3806
- "relativeTimePattern-count-other": "{0} évvel ezelőtt"
3783
+ "relativeTimePattern-count-one": "{0} éve",
3784
+ "relativeTimePattern-count-other": "{0} éve"
3807
3785
  }
3808
3786
  },
3809
3787
  "quarter-wide": {
@@ -3886,8 +3864,8 @@
3886
3864
  "relativeTimePattern-count-other": "{0} hónap múlva"
3887
3865
  },
3888
3866
  "relativeTime-type-past": {
3889
- "relativeTimePattern-count-one": "{0} hónappal ezelőtt",
3890
- "relativeTimePattern-count-other": "{0} hónappal ezelőtt"
3867
+ "relativeTimePattern-count-one": "{0} hónapja",
3868
+ "relativeTimePattern-count-other": "{0} hónapja"
3891
3869
  }
3892
3870
  },
3893
3871
  "week-wide": {
@@ -3930,8 +3908,8 @@
3930
3908
  "relativeTimePattern-count-other": "{0} hét múlva"
3931
3909
  },
3932
3910
  "relativeTime-type-past": {
3933
- "relativeTimePattern-count-one": "{0} héttel ezelőtt",
3934
- "relativeTimePattern-count-other": "{0} héttel ezelőtt"
3911
+ "relativeTimePattern-count-one": "{0} hete",
3912
+ "relativeTimePattern-count-other": "{0} hete"
3935
3913
  },
3936
3914
  "relativePeriod": "{0} hete"
3937
3915
  },
@@ -4018,8 +3996,8 @@
4018
3996
  "relativeTimePattern-count-other": "{0} óra múlva"
4019
3997
  },
4020
3998
  "relativeTime-type-past": {
4021
- "relativeTimePattern-count-one": "{0} órával ezelőtt",
4022
- "relativeTimePattern-count-other": "{0} órával ezelőtt"
3999
+ "relativeTimePattern-count-one": "{0} órája",
4000
+ "relativeTimePattern-count-other": "{0} órája"
4023
4001
  }
4024
4002
  },
4025
4003
  "minute-wide": {
@@ -4054,8 +4032,8 @@
4054
4032
  "relativeTimePattern-count-other": "{0} perc múlva"
4055
4033
  },
4056
4034
  "relativeTime-type-past": {
4057
- "relativeTimePattern-count-one": "{0} perccel ezelőtt",
4058
- "relativeTimePattern-count-other": "{0} perccel ezelőtt"
4035
+ "relativeTimePattern-count-one": "{0} perce",
4036
+ "relativeTimePattern-count-other": "{0} perce"
4059
4037
  }
4060
4038
  },
4061
4039
  "second-wide": {
@@ -4090,8 +4068,8 @@
4090
4068
  "relativeTimePattern-count-other": "{0} másodperc múlva"
4091
4069
  },
4092
4070
  "relativeTime-type-past": {
4093
- "relativeTimePattern-count-one": "{0} másodperccel ezelőtt",
4094
- "relativeTimePattern-count-other": "{0} másodperccel ezelőtt"
4071
+ "relativeTimePattern-count-one": "{0} m.perce",
4072
+ "relativeTimePattern-count-other": "{0} m.perce"
4095
4073
  }
4096
4074
  },
4097
4075
  "zone": {
@@ -4195,6 +4173,7 @@
4195
4173
  "Cayman": "Kajmán-szigetek",
4196
4174
  "Chicago": "Chicago",
4197
4175
  "Chihuahua": "Chihuahua",
4176
+ "Ciudad_Juarez": "Ciudad Juárez",
4198
4177
  "Costa_Rica": "Costa Rica",
4199
4178
  "Creston": "Creston",
4200
4179
  "Cuiaba": "Cuiabá",
@@ -4913,6 +4892,7 @@
4913
4892
  },
4914
4893
  "area-dunam": {
4915
4894
  "displayName": "dunam",
4895
+ "unitPattern-count-one": "{0} dunam",
4916
4896
  "unitPattern-count-other": "{0} dunam"
4917
4897
  },
4918
4898
  "concentr-karat": {
@@ -4932,6 +4912,7 @@
4932
4912
  },
4933
4913
  "concentr-item": {
4934
4914
  "displayName": "item",
4915
+ "unitPattern-count-one": "{0} item",
4935
4916
  "unitPattern-count-other": "{0} item"
4936
4917
  },
4937
4918
  "concentr-permillion": {
@@ -4951,10 +4932,12 @@
4951
4932
  },
4952
4933
  "concentr-permyriad": {
4953
4934
  "displayName": "‱",
4935
+ "unitPattern-count-one": "{0}‱",
4954
4936
  "unitPattern-count-other": "{0}‱"
4955
4937
  },
4956
4938
  "concentr-mole": {
4957
4939
  "displayName": "mol",
4940
+ "unitPattern-count-one": "{0} mol",
4958
4941
  "unitPattern-count-other": "{0} mol"
4959
4942
  },
4960
4943
  "consumption-liter-per-kilometer": {
@@ -5048,6 +5031,12 @@
5048
5031
  "unitPattern-count-other": "{0} év",
5049
5032
  "perUnitPattern": "{0}/év"
5050
5033
  },
5034
+ "duration-quarter": {
5035
+ "displayName": "n.év",
5036
+ "unitPattern-count-one": "{0} n.év",
5037
+ "unitPattern-count-other": "{0} n.év",
5038
+ "perUnitPattern": "{0}/n.év"
5039
+ },
5051
5040
  "duration-month": {
5052
5041
  "displayName": "hónap",
5053
5042
  "unitPattern-count-one": "{0} hónap",
@@ -5151,10 +5140,12 @@
5151
5140
  },
5152
5141
  "energy-electronvolt": {
5153
5142
  "displayName": "eV",
5143
+ "unitPattern-count-one": "{0} eV",
5154
5144
  "unitPattern-count-other": "{0} eV"
5155
5145
  },
5156
5146
  "energy-british-thermal-unit": {
5157
5147
  "displayName": "Btu",
5148
+ "unitPattern-count-one": "{0} Btu",
5158
5149
  "unitPattern-count-other": "{0} Btu"
5159
5150
  },
5160
5151
  "energy-therm-us": {
@@ -5164,10 +5155,12 @@
5164
5155
  },
5165
5156
  "force-pound-force": {
5166
5157
  "displayName": "lbf",
5158
+ "unitPattern-count-one": "{0} lbf",
5167
5159
  "unitPattern-count-other": "{0} lbf"
5168
5160
  },
5169
5161
  "force-newton": {
5170
5162
  "displayName": "N",
5163
+ "unitPattern-count-one": "{0} N",
5171
5164
  "unitPattern-count-other": "{0} N"
5172
5165
  },
5173
5166
  "force-kilowatt-hour-per-100-kilometer": {
@@ -5202,18 +5195,22 @@
5202
5195
  },
5203
5196
  "graphics-pixel": {
5204
5197
  "displayName": "képpont",
5198
+ "unitPattern-count-one": "{0} px",
5205
5199
  "unitPattern-count-other": "{0} px"
5206
5200
  },
5207
5201
  "graphics-megapixel": {
5208
5202
  "displayName": "megapixel",
5203
+ "unitPattern-count-one": "{0} MP",
5209
5204
  "unitPattern-count-other": "{0} MP"
5210
5205
  },
5211
5206
  "graphics-pixel-per-centimeter": {
5212
5207
  "displayName": "ppcm",
5208
+ "unitPattern-count-one": "{0} ppcm",
5213
5209
  "unitPattern-count-other": "{0} ppcm"
5214
5210
  },
5215
5211
  "graphics-pixel-per-inch": {
5216
5212
  "displayName": "ppi",
5213
+ "unitPattern-count-one": "{0} ppi",
5217
5214
  "unitPattern-count-other": "{0} ppi"
5218
5215
  },
5219
5216
  "graphics-dot-per-centimeter": {
@@ -5221,6 +5218,11 @@
5221
5218
  "unitPattern-count-one": "{0} dpcm",
5222
5219
  "unitPattern-count-other": "{0} ppcm"
5223
5220
  },
5221
+ "graphics-dot-per-inch": {
5222
+ "displayName": "ppi",
5223
+ "unitPattern-count-one": "{0} ppi",
5224
+ "unitPattern-count-other": "{0} ppi"
5225
+ },
5224
5226
  "graphics-dot": {
5225
5227
  "displayName": "képpont",
5226
5228
  "unitPattern-count-one": "{0} képpont",
@@ -5228,6 +5230,7 @@
5228
5230
  },
5229
5231
  "length-earth-radius": {
5230
5232
  "displayName": "R⊕",
5233
+ "unitPattern-count-one": "{0} R⊕",
5231
5234
  "unitPattern-count-other": "{0} R⊕"
5232
5235
  },
5233
5236
  "length-kilometer": {
@@ -5337,6 +5340,7 @@
5337
5340
  },
5338
5341
  "length-solar-radius": {
5339
5342
  "displayName": "Nap-sugár",
5343
+ "unitPattern-count-one": "{0} R☉",
5340
5344
  "unitPattern-count-other": "{0} R☉"
5341
5345
  },
5342
5346
  "light-lux": {
@@ -5346,17 +5350,20 @@
5346
5350
  },
5347
5351
  "light-candela": {
5348
5352
  "displayName": "cd",
5353
+ "unitPattern-count-one": "{0} cd",
5349
5354
  "unitPattern-count-other": "{0} cd"
5350
5355
  },
5351
5356
  "light-lumen": {
5352
5357
  "displayName": "lm",
5358
+ "unitPattern-count-one": "{0} lm",
5353
5359
  "unitPattern-count-other": "{0} lm"
5354
5360
  },
5355
5361
  "light-solar-luminosity": {
5356
5362
  "displayName": "L☉",
5363
+ "unitPattern-count-one": "{0} L☉",
5357
5364
  "unitPattern-count-other": "{0} L☉"
5358
5365
  },
5359
- "mass-metric-ton": {
5366
+ "mass-tonne": {
5360
5367
  "displayName": "t",
5361
5368
  "unitPattern-count-one": "{0} t",
5362
5369
  "unitPattern-count-other": "{0} t"
@@ -5390,6 +5397,7 @@
5390
5397
  },
5391
5398
  "mass-stone": {
5392
5399
  "displayName": "st",
5400
+ "unitPattern-count-one": "{0} st",
5393
5401
  "unitPattern-count-other": "{0} st"
5394
5402
  },
5395
5403
  "mass-pound": {
@@ -5416,14 +5424,17 @@
5416
5424
  },
5417
5425
  "mass-dalton": {
5418
5426
  "displayName": "Da",
5427
+ "unitPattern-count-one": "{0} Da",
5419
5428
  "unitPattern-count-other": "{0} Da"
5420
5429
  },
5421
5430
  "mass-earth-mass": {
5422
5431
  "displayName": "M⊕",
5432
+ "unitPattern-count-one": "{0} M⊕",
5423
5433
  "unitPattern-count-other": "{0} M⊕"
5424
5434
  },
5425
5435
  "mass-solar-mass": {
5426
5436
  "displayName": "M☉",
5437
+ "unitPattern-count-one": "{0} M☉",
5427
5438
  "unitPattern-count-other": "{0} M☉"
5428
5439
  },
5429
5440
  "mass-grain": {
@@ -5478,6 +5489,7 @@
5478
5489
  },
5479
5490
  "pressure-bar": {
5480
5491
  "displayName": "bar",
5492
+ "unitPattern-count-one": "{0} bar",
5481
5493
  "unitPattern-count-other": "{0} bar"
5482
5494
  },
5483
5495
  "pressure-millibar": {
@@ -5502,10 +5514,12 @@
5502
5514
  },
5503
5515
  "pressure-kilopascal": {
5504
5516
  "displayName": "kPa",
5517
+ "unitPattern-count-one": "{0} kPa",
5505
5518
  "unitPattern-count-other": "{0} kPa"
5506
5519
  },
5507
5520
  "pressure-megapascal": {
5508
5521
  "displayName": "MPa",
5522
+ "unitPattern-count-one": "{0} MPa",
5509
5523
  "unitPattern-count-other": "{0} MPa"
5510
5524
  },
5511
5525
  "speed-kilometer-per-hour": {
@@ -5550,6 +5564,7 @@
5550
5564
  },
5551
5565
  "torque-pound-force-foot": {
5552
5566
  "displayName": "lbf⋅ft",
5567
+ "unitPattern-count-one": "{0} lbf⋅ft",
5553
5568
  "unitPattern-count-other": "{0} lbf⋅ft"
5554
5569
  },
5555
5570
  "torque-newton-meter": {
@@ -5841,41 +5856,56 @@
5841
5856
  },
5842
5857
  "eras-gregorian": {
5843
5858
  "0": {
5859
+ "_code": "gregory-inverse",
5860
+ "_aliases": "bc bce",
5844
5861
  "_end": "0-12-31"
5845
5862
  },
5846
5863
  "1": {
5864
+ "_code": "gregory",
5865
+ "_aliases": "ad ce",
5847
5866
  "_start": "1-01-01"
5848
5867
  }
5849
5868
  },
5850
5869
  "eras-islamic": {
5851
5870
  "0": {
5871
+ "_code": "islamic",
5872
+ "_aliases": "ah",
5852
5873
  "_start": "622-7-15"
5853
5874
  }
5854
5875
  },
5855
5876
  "eras-persian": {
5856
5877
  "0": {
5878
+ "_code": "persian",
5879
+ "_aliases": "ap",
5857
5880
  "_start": "622-01-01"
5858
5881
  }
5859
5882
  },
5860
5883
  "eras-buddhist": {
5861
5884
  "0": {
5885
+ "_code": "buddhist",
5886
+ "_aliases": "be",
5862
5887
  "_start": "-542-01-01"
5863
5888
  }
5864
5889
  },
5865
5890
  "eras-japanese": {
5866
5891
  "232": {
5892
+ "_code": "meiji",
5867
5893
  "_start": "1868-9-8"
5868
5894
  },
5869
5895
  "233": {
5896
+ "_code": "taisho",
5870
5897
  "_start": "1912-7-30"
5871
5898
  },
5872
5899
  "234": {
5900
+ "_code": "showa",
5873
5901
  "_start": "1926-12-25"
5874
5902
  },
5875
5903
  "235": {
5904
+ "_code": "heisei",
5876
5905
  "_start": "1989-1-8"
5877
5906
  },
5878
5907
  "236": {
5908
+ "_code": "reiwa",
5879
5909
  "_start": "2019-5-1"
5880
5910
  }
5881
5911
  },