@openui5/sap.ui.core 1.119.1 → 1.120.1

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 (968) 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 +400 -256
  13. package/src/sap/base/i18n/LanguageTag.js +64 -66
  14. package/src/sap/base/i18n/Localization.js +125 -87
  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 -85
  75. package/src/sap/ui/base/ManagedObjectMetadata.js +53 -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 +175 -86
  86. package/src/sap/ui/core/ComponentContainer.js +6 -5
  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 +395 -709
  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 +338 -216
  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 +24 -10
  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 +3 -3
  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 +253 -57
  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 +5 -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/Islamic.js +4 -4
  217. package/src/sap/ui/core/date/UI5Date.js +1 -1
  218. package/src/sap/ui/core/date/_Calendars.js +5 -2
  219. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  220. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  221. package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
  222. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  223. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  224. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  225. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  226. package/src/sap/ui/core/format/DateFormat.js +33 -21
  227. package/src/sap/ui/core/format/NumberFormat.js +3 -2
  228. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  229. package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
  230. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  231. package/src/sap/ui/core/library.js +128 -8
  232. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  233. package/src/sap/ui/core/message/Message.js +2 -2
  234. package/src/sap/ui/core/message/MessageManager.js +1 -1
  235. package/src/sap/ui/core/message/MessageParser.js +1 -1
  236. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  237. package/src/sap/ui/core/message/MessageType.js +2 -1
  238. package/src/sap/ui/core/messagebundle.properties +24 -0
  239. package/src/sap/ui/core/messagebundle_ar.properties +15 -3
  240. package/src/sap/ui/core/messagebundle_bg.properties +14 -2
  241. package/src/sap/ui/core/messagebundle_ca.properties +13 -1
  242. package/src/sap/ui/core/messagebundle_cs.properties +15 -3
  243. package/src/sap/ui/core/messagebundle_cy.properties +16 -4
  244. package/src/sap/ui/core/messagebundle_da.properties +15 -3
  245. package/src/sap/ui/core/messagebundle_de.properties +15 -3
  246. package/src/sap/ui/core/messagebundle_el.properties +16 -4
  247. package/src/sap/ui/core/messagebundle_en.properties +12 -0
  248. package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
  249. package/src/sap/ui/core/messagebundle_es.properties +15 -3
  250. package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
  251. package/src/sap/ui/core/messagebundle_et.properties +15 -3
  252. package/src/sap/ui/core/messagebundle_fi.properties +15 -3
  253. package/src/sap/ui/core/messagebundle_fr.properties +15 -3
  254. package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
  255. package/src/sap/ui/core/messagebundle_hi.properties +16 -4
  256. package/src/sap/ui/core/messagebundle_hr.properties +14 -2
  257. package/src/sap/ui/core/messagebundle_hu.properties +16 -4
  258. package/src/sap/ui/core/messagebundle_id.properties +15 -3
  259. package/src/sap/ui/core/messagebundle_it.properties +17 -5
  260. package/src/sap/ui/core/messagebundle_iw.properties +15 -3
  261. package/src/sap/ui/core/messagebundle_ja.properties +25 -13
  262. package/src/sap/ui/core/messagebundle_kk.properties +15 -3
  263. package/src/sap/ui/core/messagebundle_ko.properties +14 -2
  264. package/src/sap/ui/core/messagebundle_lt.properties +15 -3
  265. package/src/sap/ui/core/messagebundle_lv.properties +15 -3
  266. package/src/sap/ui/core/messagebundle_mk.properties +352 -0
  267. package/src/sap/ui/core/messagebundle_ms.properties +15 -3
  268. package/src/sap/ui/core/messagebundle_nl.properties +15 -3
  269. package/src/sap/ui/core/messagebundle_no.properties +14 -2
  270. package/src/sap/ui/core/messagebundle_pl.properties +15 -3
  271. package/src/sap/ui/core/messagebundle_pt.properties +15 -3
  272. package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
  273. package/src/sap/ui/core/messagebundle_ro.properties +15 -3
  274. package/src/sap/ui/core/messagebundle_ru.properties +15 -3
  275. package/src/sap/ui/core/messagebundle_sh.properties +43 -31
  276. package/src/sap/ui/core/messagebundle_sk.properties +16 -4
  277. package/src/sap/ui/core/messagebundle_sl.properties +15 -3
  278. package/src/sap/ui/core/messagebundle_sv.properties +22 -10
  279. package/src/sap/ui/core/messagebundle_th.properties +15 -3
  280. package/src/sap/ui/core/messagebundle_tr.properties +15 -3
  281. package/src/sap/ui/core/messagebundle_uk.properties +18 -6
  282. package/src/sap/ui/core/messagebundle_vi.properties +18 -6
  283. package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
  284. package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
  285. package/src/sap/ui/core/mvc/Controller.js +22 -16
  286. package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +1 -1
  287. package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
  288. package/src/sap/ui/core/mvc/HTMLView.js +2 -2
  289. package/src/sap/ui/core/mvc/JSONView.js +4 -1
  290. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
  291. package/src/sap/ui/core/mvc/JSView.js +1 -1
  292. package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
  293. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  294. package/src/sap/ui/core/mvc/View.js +25 -15
  295. package/src/sap/ui/core/mvc/ViewType.js +2 -0
  296. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  297. package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
  298. package/src/sap/ui/core/plugin/LessSupport.js +3 -1
  299. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  300. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  301. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  302. package/src/sap/ui/core/routing/Router.js +2 -4
  303. package/src/sap/ui/core/routing/Target.js +1 -3
  304. package/src/sap/ui/core/routing/Targets.js +2 -3
  305. package/src/sap/ui/core/routing/Views.js +2 -3
  306. package/src/sap/ui/core/routing/async/Target.js +1 -1
  307. package/src/sap/ui/core/rules/Config.support.js +11 -17
  308. package/src/sap/ui/core/search/OpenSearchProvider.js +2 -1
  309. package/src/sap/ui/core/search/SearchProvider.js +2 -1
  310. package/src/sap/ui/core/service/Service.js +1 -1
  311. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  312. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  313. package/src/sap/ui/core/support/Hotkeys.js +5 -3
  314. package/src/sap/ui/core/support/Plugin.js +1 -1
  315. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
  316. package/src/sap/ui/core/support/Support.js +3 -5
  317. package/src/sap/ui/core/support/ToolsAPI.js +15 -11
  318. package/src/sap/ui/core/support/plugins/ControlTree.js +2 -2
  319. package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
  320. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  321. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  322. package/src/sap/ui/core/support/plugins/Selector.js +7 -5
  323. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  324. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  325. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  326. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
  327. package/src/sap/ui/core/syncStyleClass.js +2 -2
  328. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  329. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  330. package/src/sap/ui/core/themes/base/global.less +9 -9
  331. package/src/sap/ui/core/theming/Parameters.js +18 -19
  332. package/src/sap/ui/core/theming/ThemeManager.js +23 -4
  333. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  334. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  335. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  336. package/src/sap/ui/core/tmpl/Template.js +1 -1
  337. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  338. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  339. package/src/sap/ui/core/util/Export.js +1 -1
  340. package/src/sap/ui/core/util/ExportCell.js +1 -1
  341. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  342. package/src/sap/ui/core/util/ExportRow.js +1 -1
  343. package/src/sap/ui/core/util/ExportType.js +1 -1
  344. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  345. package/src/sap/ui/core/util/File.js +1 -1
  346. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  347. package/src/sap/ui/core/util/MockServer.js +1 -1
  348. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  349. package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
  350. package/src/sap/ui/core/util/_LocalizationHelper.js +122 -0
  351. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  352. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  353. package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
  354. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  355. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  356. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  357. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  358. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  359. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  360. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  361. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  362. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  363. package/src/sap/ui/debug/ControlTree.js +1 -1
  364. package/src/sap/ui/debug/DebugEnv.js +29 -7
  365. package/src/sap/ui/debug/PropertyList.js +1 -1
  366. package/src/sap/ui/model/ClientListBinding.js +9 -4
  367. package/src/sap/ui/model/ClientModel.js +1 -1
  368. package/src/sap/ui/model/ClientTreeBinding.js +9 -4
  369. package/src/sap/ui/model/CompositeDataState.js +1 -1
  370. package/src/sap/ui/model/CompositeType.js +1 -1
  371. package/src/sap/ui/model/DataState.js +2 -2
  372. package/src/sap/ui/model/Filter.js +39 -1
  373. package/src/sap/ui/model/FilterProcessor.js +15 -5
  374. package/src/sap/ui/model/ListBinding.js +5 -0
  375. package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
  376. package/src/sap/ui/model/MetaModel.js +1 -1
  377. package/src/sap/ui/model/Model.js +14 -8
  378. package/src/sap/ui/model/SelectionModel.js +1 -1
  379. package/src/sap/ui/model/SimpleType.js +1 -1
  380. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  381. package/src/sap/ui/model/TreeBinding.js +3 -0
  382. package/src/sap/ui/model/Type.js +1 -1
  383. package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
  384. package/src/sap/ui/model/json/JSONListBinding.js +3 -1
  385. package/src/sap/ui/model/json/JSONModel.js +1 -1
  386. package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
  387. package/src/sap/ui/model/message/MessageListBinding.js +3 -0
  388. package/src/sap/ui/model/message/MessageModel.js +1 -1
  389. package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
  390. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  391. package/src/sap/ui/model/odata/ODataListBinding.js +8 -2
  392. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  393. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  394. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  395. package/src/sap/ui/model/odata/ODataModel.js +9 -5
  396. package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
  397. package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
  398. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
  399. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  400. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  401. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  402. package/src/sap/ui/model/odata/type/Date.js +1 -1
  403. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  404. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  405. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  406. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  407. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  408. package/src/sap/ui/model/odata/type/Double.js +1 -1
  409. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  410. package/src/sap/ui/model/odata/type/Int.js +1 -1
  411. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  412. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  413. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  414. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  415. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  416. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  417. package/src/sap/ui/model/odata/type/Single.js +1 -1
  418. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  419. package/src/sap/ui/model/odata/type/String.js +1 -1
  420. package/src/sap/ui/model/odata/type/Time.js +1 -1
  421. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  422. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  423. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  424. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  425. package/src/sap/ui/model/odata/v2/ODataListBinding.js +40 -15
  426. package/src/sap/ui/model/odata/v2/ODataModel.js +26 -62
  427. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +38 -4
  428. package/src/sap/ui/model/odata/v4/Context.js +81 -7
  429. package/src/sap/ui/model/odata/v4/ODataBinding.js +3 -0
  430. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
  431. package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
  432. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +2 -2
  433. package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
  434. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
  435. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
  436. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
  437. package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
  438. package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
  439. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
  440. package/src/sap/ui/model/resource/ResourceModel.js +5 -6
  441. package/src/sap/ui/model/type/Boolean.js +1 -1
  442. package/src/sap/ui/model/type/Currency.js +1 -1
  443. package/src/sap/ui/model/type/Date.js +1 -1
  444. package/src/sap/ui/model/type/DateInterval.js +1 -1
  445. package/src/sap/ui/model/type/DateTime.js +1 -1
  446. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  447. package/src/sap/ui/model/type/FileSize.js +1 -1
  448. package/src/sap/ui/model/type/Float.js +1 -1
  449. package/src/sap/ui/model/type/Integer.js +1 -1
  450. package/src/sap/ui/model/type/String.js +1 -1
  451. package/src/sap/ui/model/type/Time.js +1 -1
  452. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  453. package/src/sap/ui/model/type/Unit.js +1 -1
  454. package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
  455. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  456. package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
  457. package/src/sap/ui/performance/BeaconRequest.js +2 -2
  458. package/src/sap/ui/performance/trace/Interaction.js +20 -16
  459. package/src/sap/ui/qunit/QUnitUtils.js +64 -45
  460. package/src/sap/ui/qunit/qunit-coverage.js +6 -0
  461. package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
  462. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  463. package/src/sap/ui/security/Security.js +128 -0
  464. package/src/sap/ui/test/BlanketReporter.js +2 -3
  465. package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
  466. package/src/sap/ui/test/BranchTracking.js +2 -3
  467. package/src/sap/ui/test/ModuleTracking.js +48 -20
  468. package/src/sap/ui/test/OpaExtension.js +3 -3
  469. package/src/sap/ui/test/OpaPlugin.js +16 -6
  470. package/src/sap/ui/test/TestUtils.js +7 -4
  471. package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
  472. package/src/sap/ui/test/_ControlFinder.js +3 -2
  473. package/src/sap/ui/test/_LogCollector.js +1 -0
  474. package/src/sap/ui/test/_UsageReport.js +115 -114
  475. package/src/sap/ui/test/actions/EnterText.js +24 -2
  476. package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
  477. package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
  478. package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
  479. package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
  480. package/src/sap/ui/test/generic/TestBase.js +1 -1
  481. package/src/sap/ui/test/generic/Utils.js +1 -1
  482. package/src/sap/ui/test/matchers/LabelFor.js +2 -12
  483. package/src/sap/ui/test/matchers/Matcher.js +1 -1
  484. package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
  485. package/src/sap/ui/test/selectors/_Selector.js +1 -1
  486. package/src/sap/ui/util/Storage.js +1 -1
  487. package/src/ui5loader-autoconfig.js +84 -11
  488. package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/manifest.json +3 -10
  489. package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/package.json +13 -0
  490. package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +11 -0
  491. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
  492. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
  493. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
  494. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
  495. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
  496. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
  497. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
  498. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
  499. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
  500. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
  501. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
  502. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
  503. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
  504. package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
  505. package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
  506. package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
  507. package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
  508. package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
  509. package/test/sap/ui/core/demokit/sample/matcher/BindingPath/manifest.json +3 -11
  510. package/test/sap/ui/core/demokit/sample/matcher/BindingPath/package.json +13 -0
  511. package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +11 -0
  512. package/test/sap/ui/core/demokit/sample/matcher/Descendant/Component.js +1 -1
  513. package/test/sap/ui/core/demokit/sample/matcher/Descendant/manifest.json +3 -11
  514. package/test/sap/ui/core/demokit/sample/matcher/Descendant/package.json +13 -0
  515. package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +11 -0
  516. package/test/sap/ui/core/demokit/sample/matcher/I18NText/manifest.json +3 -11
  517. package/test/sap/ui/core/demokit/sample/matcher/I18NText/package.json +13 -0
  518. package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +11 -0
  519. package/test/sap/ui/core/demokit/sample/matcher/LabelFor/manifest.json +3 -11
  520. package/test/sap/ui/core/demokit/sample/matcher/LabelFor/package.json +13 -0
  521. package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +11 -0
  522. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
  523. package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
  524. package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
  525. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
  526. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
  527. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
  528. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
  529. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
  530. package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
  531. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
  532. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
  533. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
  534. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
  535. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
  536. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
  537. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
  538. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
  539. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
  540. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
  541. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
  542. package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
  543. package/test/sap/ui/core/demokit/tutorial/databinding/01/Component.js +9 -25
  544. package/test/sap/ui/core/demokit/tutorial/databinding/01/manifest.json +20 -0
  545. package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
  546. package/test/sap/ui/core/demokit/tutorial/databinding/01/webapp/manifest.json +5 -0
  547. package/test/sap/ui/core/demokit/tutorial/databinding/02/Component.js +9 -25
  548. package/test/sap/ui/core/demokit/tutorial/databinding/02/manifest.json +20 -0
  549. package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
  550. package/test/sap/ui/core/demokit/tutorial/databinding/02/webapp/manifest.json +5 -0
  551. package/test/sap/ui/core/demokit/tutorial/databinding/03/Component.js +9 -25
  552. package/test/sap/ui/core/demokit/tutorial/databinding/03/manifest.json +20 -0
  553. package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
  554. package/test/sap/ui/core/demokit/tutorial/databinding/03/webapp/manifest.json +5 -0
  555. package/test/sap/ui/core/demokit/tutorial/databinding/04/Component.js +9 -26
  556. package/test/sap/ui/core/demokit/tutorial/databinding/04/manifest.json +21 -0
  557. package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
  558. package/test/sap/ui/core/demokit/tutorial/databinding/04/webapp/manifest.json +5 -0
  559. package/test/sap/ui/core/demokit/tutorial/databinding/05/Component.js +9 -26
  560. package/test/sap/ui/core/demokit/tutorial/databinding/05/manifest.json +21 -0
  561. package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
  562. package/test/sap/ui/core/demokit/tutorial/databinding/05/webapp/manifest.json +5 -0
  563. package/test/sap/ui/core/demokit/tutorial/databinding/06/Component.js +9 -27
  564. package/test/sap/ui/core/demokit/tutorial/databinding/06/manifest.json +22 -0
  565. package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
  566. package/test/sap/ui/core/demokit/tutorial/databinding/06/webapp/manifest.json +5 -0
  567. package/test/sap/ui/core/demokit/tutorial/databinding/07/Component.js +9 -28
  568. package/test/sap/ui/core/demokit/tutorial/databinding/07/manifest.json +23 -0
  569. package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
  570. package/test/sap/ui/core/demokit/tutorial/databinding/07/webapp/manifest.json +5 -0
  571. package/test/sap/ui/core/demokit/tutorial/databinding/08/Component.js +9 -28
  572. package/test/sap/ui/core/demokit/tutorial/databinding/08/manifest.json +23 -0
  573. package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
  574. package/test/sap/ui/core/demokit/tutorial/databinding/08/webapp/manifest.json +5 -0
  575. package/test/sap/ui/core/demokit/tutorial/databinding/09/Component.js +9 -29
  576. package/test/sap/ui/core/demokit/tutorial/databinding/09/manifest.json +24 -0
  577. package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
  578. package/test/sap/ui/core/demokit/tutorial/databinding/09/webapp/manifest.json +5 -0
  579. package/test/sap/ui/core/demokit/tutorial/databinding/10/Component.js +9 -29
  580. package/test/sap/ui/core/demokit/tutorial/databinding/10/manifest.json +24 -0
  581. package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
  582. package/test/sap/ui/core/demokit/tutorial/databinding/10/webapp/manifest.json +5 -0
  583. package/test/sap/ui/core/demokit/tutorial/databinding/11/Component.js +9 -29
  584. package/test/sap/ui/core/demokit/tutorial/databinding/11/manifest.json +24 -0
  585. package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
  586. package/test/sap/ui/core/demokit/tutorial/databinding/11/webapp/manifest.json +5 -0
  587. package/test/sap/ui/core/demokit/tutorial/databinding/12/Component.js +9 -30
  588. package/test/sap/ui/core/demokit/tutorial/databinding/12/manifest.json +25 -0
  589. package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
  590. package/test/sap/ui/core/demokit/tutorial/databinding/12/webapp/manifest.json +5 -0
  591. package/test/sap/ui/core/demokit/tutorial/databinding/13/Component.js +9 -30
  592. package/test/sap/ui/core/demokit/tutorial/databinding/13/manifest.json +25 -0
  593. package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
  594. package/test/sap/ui/core/demokit/tutorial/databinding/13/webapp/manifest.json +5 -0
  595. package/test/sap/ui/core/demokit/tutorial/databinding/14/Component.js +9 -30
  596. package/test/sap/ui/core/demokit/tutorial/databinding/14/manifest.json +25 -0
  597. package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
  598. package/test/sap/ui/core/demokit/tutorial/databinding/14/webapp/manifest.json +5 -0
  599. package/test/sap/ui/core/demokit/tutorial/databinding/15/Component.js +9 -32
  600. package/test/sap/ui/core/demokit/tutorial/databinding/15/manifest.json +27 -0
  601. package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
  602. package/test/sap/ui/core/demokit/tutorial/databinding/15/webapp/manifest.json +5 -0
  603. package/test/sap/ui/core/demokit/tutorial/mockserver/01/Component.js +9 -30
  604. package/test/sap/ui/core/demokit/tutorial/mockserver/01/manifest.json +24 -0
  605. package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
  606. package/test/sap/ui/core/demokit/tutorial/mockserver/02/Component.js +9 -33
  607. package/test/sap/ui/core/demokit/tutorial/mockserver/02/manifest.json +27 -0
  608. package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
  609. package/test/sap/ui/core/demokit/tutorial/mockserver/03/Component.js +9 -33
  610. package/test/sap/ui/core/demokit/tutorial/mockserver/03/manifest.json +27 -0
  611. package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
  612. package/test/sap/ui/core/demokit/tutorial/mockserver/04/Component.js +9 -33
  613. package/test/sap/ui/core/demokit/tutorial/mockserver/04/manifest.json +27 -0
  614. package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
  615. package/test/sap/ui/core/demokit/tutorial/navigation/01/Component.js +9 -33
  616. package/test/sap/ui/core/demokit/tutorial/navigation/01/manifest.json +28 -0
  617. package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
  618. package/test/sap/ui/core/demokit/tutorial/navigation/02/Component.js +9 -35
  619. package/test/sap/ui/core/demokit/tutorial/navigation/02/manifest.json +30 -0
  620. package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
  621. package/test/sap/ui/core/demokit/tutorial/navigation/03/Component.js +9 -37
  622. package/test/sap/ui/core/demokit/tutorial/navigation/03/manifest.json +32 -0
  623. package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
  624. package/test/sap/ui/core/demokit/tutorial/navigation/04/Component.js +9 -38
  625. package/test/sap/ui/core/demokit/tutorial/navigation/04/manifest.json +33 -0
  626. package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
  627. package/test/sap/ui/core/demokit/tutorial/navigation/05/Component.js +9 -38
  628. package/test/sap/ui/core/demokit/tutorial/navigation/05/manifest.json +33 -0
  629. package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
  630. package/test/sap/ui/core/demokit/tutorial/navigation/06/Component.js +9 -40
  631. package/test/sap/ui/core/demokit/tutorial/navigation/06/manifest.json +35 -0
  632. package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
  633. package/test/sap/ui/core/demokit/tutorial/navigation/07/Component.js +9 -42
  634. package/test/sap/ui/core/demokit/tutorial/navigation/07/manifest.json +37 -0
  635. package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
  636. package/test/sap/ui/core/demokit/tutorial/navigation/08/Component.js +9 -45
  637. package/test/sap/ui/core/demokit/tutorial/navigation/08/manifest.json +40 -0
  638. package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
  639. package/test/sap/ui/core/demokit/tutorial/navigation/09/Component.js +9 -45
  640. package/test/sap/ui/core/demokit/tutorial/navigation/09/manifest.json +40 -0
  641. package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
  642. package/test/sap/ui/core/demokit/tutorial/navigation/10/Component.js +9 -47
  643. package/test/sap/ui/core/demokit/tutorial/navigation/10/manifest.json +42 -0
  644. package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
  645. package/test/sap/ui/core/demokit/tutorial/navigation/11/Component.js +9 -52
  646. package/test/sap/ui/core/demokit/tutorial/navigation/11/manifest.json +47 -0
  647. package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
  648. package/test/sap/ui/core/demokit/tutorial/navigation/12/Component.js +9 -52
  649. package/test/sap/ui/core/demokit/tutorial/navigation/12/manifest.json +47 -0
  650. package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
  651. package/test/sap/ui/core/demokit/tutorial/navigation/13/Component.js +9 -52
  652. package/test/sap/ui/core/demokit/tutorial/navigation/13/manifest.json +47 -0
  653. package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
  654. package/test/sap/ui/core/demokit/tutorial/navigation/14/Component.js +9 -52
  655. package/test/sap/ui/core/demokit/tutorial/navigation/14/manifest.json +47 -0
  656. package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
  657. package/test/sap/ui/core/demokit/tutorial/navigation/15/Component.js +9 -52
  658. package/test/sap/ui/core/demokit/tutorial/navigation/15/manifest.json +47 -0
  659. package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
  660. package/test/sap/ui/core/demokit/tutorial/navigation/16/Component.js +9 -52
  661. package/test/sap/ui/core/demokit/tutorial/navigation/16/manifest.json +47 -0
  662. package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
  663. package/test/sap/ui/core/demokit/tutorial/navigation/17/Component.js +9 -52
  664. package/test/sap/ui/core/demokit/tutorial/navigation/17/manifest.json +47 -0
  665. package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
  666. package/test/sap/ui/core/demokit/tutorial/odatav4/01/Component.js +3 -27
  667. package/test/sap/ui/core/demokit/tutorial/odatav4/01/manifest.json +28 -0
  668. package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
  669. package/test/sap/ui/core/demokit/tutorial/odatav4/02/Component.js +3 -27
  670. package/test/sap/ui/core/demokit/tutorial/odatav4/02/manifest.json +28 -0
  671. package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
  672. package/test/sap/ui/core/demokit/tutorial/odatav4/03/Component.js +3 -27
  673. package/test/sap/ui/core/demokit/tutorial/odatav4/03/manifest.json +28 -0
  674. package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
  675. package/test/sap/ui/core/demokit/tutorial/odatav4/04/Component.js +3 -27
  676. package/test/sap/ui/core/demokit/tutorial/odatav4/04/manifest.json +28 -0
  677. package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
  678. package/test/sap/ui/core/demokit/tutorial/odatav4/05/Component.js +3 -27
  679. package/test/sap/ui/core/demokit/tutorial/odatav4/05/manifest.json +28 -0
  680. package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
  681. package/test/sap/ui/core/demokit/tutorial/odatav4/06/Component.js +3 -27
  682. package/test/sap/ui/core/demokit/tutorial/odatav4/06/manifest.json +28 -0
  683. package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
  684. package/test/sap/ui/core/demokit/tutorial/odatav4/07/Component.js +3 -27
  685. package/test/sap/ui/core/demokit/tutorial/odatav4/07/manifest.json +28 -0
  686. package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
  687. package/test/sap/ui/core/demokit/tutorial/odatav4/08/Component.js +3 -27
  688. package/test/sap/ui/core/demokit/tutorial/odatav4/08/manifest.json +28 -0
  689. package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
  690. package/test/sap/ui/core/demokit/tutorial/odatav4/09/Component.js +3 -27
  691. package/test/sap/ui/core/demokit/tutorial/odatav4/09/manifest.json +28 -0
  692. package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
  693. package/test/sap/ui/core/demokit/tutorial/odatav4/10/Component.js +3 -27
  694. package/test/sap/ui/core/demokit/tutorial/odatav4/10/manifest.json +28 -0
  695. package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
  696. package/test/sap/ui/core/demokit/tutorial/odatav4/11/Component.js +3 -27
  697. package/test/sap/ui/core/demokit/tutorial/odatav4/11/manifest.json +28 -0
  698. package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
  699. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/Component.js +9 -29
  700. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/manifest.json +25 -0
  701. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
  702. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
  703. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
  704. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
  705. package/test/sap/ui/core/qunit/ClientModel.qunit.js +28 -28
  706. package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
  707. package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
  708. package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
  709. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
  710. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
  711. package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
  712. package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
  713. package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
  714. package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
  715. package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
  716. package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
  717. package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
  718. package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
  719. package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
  720. package/test/sap/ui/core/qunit/Lib.qunit.js +64 -1
  721. package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
  722. package/test/sap/ui/core/qunit/ManagedObject.qunit.js +90 -4
  723. package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
  724. package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
  725. package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
  726. package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
  727. package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
  728. package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
  729. package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
  730. package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
  731. package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
  732. package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
  733. package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
  734. package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
  735. package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
  736. package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
  737. package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
  738. package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
  739. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +49 -30
  740. package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
  741. package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
  742. package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
  743. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
  744. package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
  745. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
  746. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
  747. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
  748. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
  749. package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
  750. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
  751. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
  752. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
  753. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
  754. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
  755. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
  756. package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
  757. package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
  758. package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
  759. package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
  760. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
  761. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
  762. package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
  763. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
  764. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
  765. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
  766. package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
  767. package/test/sap/ui/core/qunit/component/Component.qunit.js +100 -7
  768. package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
  769. package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
  770. package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
  771. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
  772. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
  773. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
  774. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
  775. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
  776. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
  777. package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
  778. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
  779. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
  780. package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
  781. package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
  782. package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
  783. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
  784. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
  785. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
  786. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
  787. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
  788. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
  789. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
  790. package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
  791. package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
  792. package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
  793. package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +7 -4
  794. package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
  795. package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
  796. package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
  797. package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
  798. package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
  799. package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
  800. package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
  801. package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
  802. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
  803. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
  804. package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
  805. package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
  806. package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
  807. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
  808. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
  809. package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
  810. package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
  811. package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
  812. package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
  813. package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +5 -2
  814. package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
  815. package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +5 -2
  816. package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
  817. package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
  818. package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
  819. package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
  820. package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
  821. package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +68 -1
  822. package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
  823. package/test/sap/ui/core/qunit/model/Model.qunit.js +46 -2
  824. package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
  825. package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
  826. package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
  827. package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
  828. package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
  829. package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
  830. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
  831. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
  832. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
  833. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
  834. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
  835. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
  836. package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
  837. package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
  838. package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
  839. package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
  840. package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
  841. package/test/sap/ui/core/qunit/odata/ODataModel_legacyAPIs.qunit.js +22 -22
  842. package/test/sap/ui/core/qunit/odata/ODataTreeBindingAdapter.qunit.js +1 -1
  843. package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
  844. package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
  845. package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
  846. package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
  847. package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
  848. package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +52 -29
  849. package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
  850. package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +8 -15
  851. package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
  852. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
  853. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +211 -20
  854. package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +32 -36
  855. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
  856. package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
  857. package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +19 -9
  858. package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
  859. package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +5 -5
  860. package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1896 -407
  861. package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
  862. package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
  863. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
  864. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
  865. package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
  866. package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
  867. package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
  868. package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
  869. package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
  870. package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
  871. package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
  872. package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
  873. package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +66 -3
  874. package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
  875. package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
  876. package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
  877. package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
  878. package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
  879. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
  880. package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
  881. package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +11 -2
  882. package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +4 -7
  883. package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
  884. package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
  885. package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
  886. package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
  887. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
  888. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
  889. package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
  890. package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
  891. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
  892. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
  893. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
  894. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
  895. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
  896. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
  897. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
  898. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
  899. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
  900. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
  901. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
  902. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
  903. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
  904. package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
  905. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
  906. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
  907. package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
  908. package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
  909. package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
  910. package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
  911. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
  912. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
  913. package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
  914. package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
  915. package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
  916. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
  917. package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
  918. package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
  919. package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
  920. package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
  921. package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
  922. package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
  923. package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
  924. package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
  925. package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
  926. package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
  927. package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
  928. package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
  929. package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
  930. package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
  931. package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
  932. package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
  933. package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
  934. package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
  935. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
  936. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
  937. package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
  938. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
  939. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
  940. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
  941. package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
  942. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
  943. package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
  944. package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
  945. package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
  946. package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
  947. package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
  948. package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
  949. package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
  950. package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
  951. package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
  952. package/test/sap/ui/core/relnotes/changes-1.120.json +442 -0
  953. package/test/sap/ui/core/terminologies/App.controller.js +2 -3
  954. package/test/sap/ui/core/terminologies/main.js +2 -3
  955. package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
  956. package/src/sap/ui/core/ConfigTest.js +0 -17
  957. package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
  958. package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
  959. package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
  960. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
  961. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
  962. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
  963. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
  964. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
  965. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
  966. package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
  967. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
  968. 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": "Abchazisch",
@@ -15,6 +15,7 @@
15
15
  "afh": "Afrihili",
16
16
  "agq": "Aghem",
17
17
  "ain": "Aino",
18
+ "ajp": "Zuid-Levantijns-Arabisch",
18
19
  "ak": "Akan",
19
20
  "akk": "Akkadisch",
20
21
  "akz": "Alabama",
@@ -24,6 +25,7 @@
24
25
  "am": "Amhaars",
25
26
  "an": "Aragonees",
26
27
  "ang": "Oudengels",
28
+ "ann": "Obolo",
27
29
  "anp": "Angika",
28
30
  "ar": "Arabisch",
29
31
  "ar_001": "modern standaard Arabisch",
@@ -41,6 +43,7 @@
41
43
  "asa": "Asu",
42
44
  "ase": "Amerikaanse Gebarentaal",
43
45
  "ast": "Asturisch",
46
+ "atj": "Atikamekw",
44
47
  "av": "Avarisch",
45
48
  "avk": "Kotava",
46
49
  "awa": "Awadhi",
@@ -63,6 +66,7 @@
63
66
  "bfd": "Bafut",
64
67
  "bfq": "Badaga",
65
68
  "bg": "Bulgaars",
69
+ "bgc": "Haryanvi",
66
70
  "bgn": "Westers Beloetsji",
67
71
  "bho": "Bhojpuri",
68
72
  "bi": "Bislama",
@@ -109,14 +113,22 @@
109
113
  "ckb": "Soranî",
110
114
  "ckb_alt-menu": "Koerdisch, Soranî",
111
115
  "ckb_alt-variant": "Koerdisch, Soranî",
116
+ "clc": "Chilcotin",
112
117
  "co": "Corsicaans",
113
118
  "cop": "Koptisch",
114
119
  "cps": "Capiznon",
115
120
  "cr": "Cree",
121
+ "crg": "Michif",
116
122
  "crh": "Krim-Tataars",
123
+ "crj": "Zuidoost-Cree",
124
+ "crk": "Plains Cree",
125
+ "crl": "Noordoost-Cree",
126
+ "crm": "Moose Cree",
127
+ "crr": "Carolina Algonkisch",
117
128
  "crs": "Seychellencreools",
118
129
  "cs": "Tsjechisch",
119
130
  "csb": "Kasjoebisch",
131
+ "csw": "Swampy Cree",
120
132
  "cu": "Kerkslavisch",
121
133
  "cv": "Tsjoevasjisch",
122
134
  "cy": "Welsh",
@@ -125,8 +137,6 @@
125
137
  "dar": "Dargwa",
126
138
  "dav": "Taita",
127
139
  "de": "Duits",
128
- "de_AT": "Duits (Oostenrijk)",
129
- "de_CH": "Duits (Zwitserland)",
130
140
  "del": "Delaware",
131
141
  "den": "Slavey",
132
142
  "dgr": "Dogrib",
@@ -151,18 +161,11 @@
151
161
  "el": "Grieks",
152
162
  "elx": "Elamitisch",
153
163
  "en": "Engels",
154
- "en_AU": "Engels (Australië)",
155
- "en_CA": "Engels (Canada)",
156
- "en_GB": "Engels (Verenigd Koninkrijk)",
157
164
  "en_GB-alt-short": "Engels (VK)",
158
- "en_US": "Engels (Verenigde Staten)",
159
165
  "en_US-alt-short": "Engels (VS)",
160
166
  "enm": "Middelengels",
161
167
  "eo": "Esperanto",
162
168
  "es": "Spaans",
163
- "es_419": "Spaans (Latijns-Amerika)",
164
- "es_ES": "Spaans (Spanje)",
165
- "es_MX": "Spaans (Mexico)",
166
169
  "esu": "Yupik",
167
170
  "et": "Estisch",
168
171
  "eu": "Baskisch",
@@ -180,8 +183,6 @@
180
183
  "fo": "Faeröers",
181
184
  "fon": "Fon",
182
185
  "fr": "Frans",
183
- "fr_CA": "Frans (Canada)",
184
- "fr_CH": "Frans (Zwitserland)",
185
186
  "frc": "Cajun-Frans",
186
187
  "frm": "Middelfrans",
187
188
  "fro": "Oudfrans",
@@ -222,8 +223,10 @@
222
223
  "hai": "Haida",
223
224
  "hak": "Hakka",
224
225
  "haw": "Hawaïaans",
226
+ "hax": "Zuid-Haida",
225
227
  "he": "Hebreeuws",
226
228
  "hi": "Hindi",
229
+ "hi_Latn-alt-variant": "Hinglish",
227
230
  "hif": "Fijisch Hindi",
228
231
  "hil": "Hiligaynon",
229
232
  "hit": "Hettitisch",
@@ -235,6 +238,7 @@
235
238
  "ht": "Haïtiaans Creools",
236
239
  "hu": "Hongaars",
237
240
  "hup": "Hupa",
241
+ "hur": "Halkomelem",
238
242
  "hy": "Armeens",
239
243
  "hz": "Herero",
240
244
  "ia": "Interlingua",
@@ -245,6 +249,7 @@
245
249
  "ig": "Igbo",
246
250
  "ii": "Yi",
247
251
  "ik": "Inupiaq",
252
+ "ikt": "Westelijk Canadees Inuktitut",
248
253
  "ilo": "Iloko",
249
254
  "inh": "Ingoesjetisch",
250
255
  "io": "Ido",
@@ -311,6 +316,7 @@
311
316
  "kut": "Kutenai",
312
317
  "kv": "Komi",
313
318
  "kw": "Cornish",
319
+ "kwk": "Kwakʼwala",
314
320
  "ky": "Kirgizisch",
315
321
  "la": "Latijn",
316
322
  "lad": "Ladino",
@@ -323,6 +329,7 @@
323
329
  "lg": "Luganda",
324
330
  "li": "Limburgs",
325
331
  "lij": "Ligurisch",
332
+ "lil": "Lillooet",
326
333
  "liv": "Lijfs",
327
334
  "lkt": "Lakota",
328
335
  "lmo": "Lombardisch",
@@ -332,6 +339,7 @@
332
339
  "lou": "Louisiana-Creools",
333
340
  "loz": "Lozi",
334
341
  "lrc": "Noordelijk Luri",
342
+ "lsm": "Saamia",
335
343
  "lt": "Litouws",
336
344
  "ltg": "Letgaals",
337
345
  "lu": "Luba-Katanga",
@@ -370,6 +378,7 @@
370
378
  "mn": "Mongools",
371
379
  "mnc": "Mantsjoe",
372
380
  "mni": "Meitei",
381
+ "moe": "Innu-aimun",
373
382
  "moh": "Mohawk",
374
383
  "mos": "Mossi",
375
384
  "mr": "Marathi",
@@ -422,6 +431,11 @@
422
431
  "nzi": "Nzima",
423
432
  "oc": "Occitaans",
424
433
  "oj": "Ojibwa",
434
+ "ojb": "Noordwest-Ojibwe",
435
+ "ojc": "Centraal Ojibwa",
436
+ "ojs": "Oji-Cree",
437
+ "ojw": "West-Ojibwe",
438
+ "oka": "Okanagan",
425
439
  "om": "Afaan Oromo",
426
440
  "or": "Odia",
427
441
  "os": "Ossetisch",
@@ -441,17 +455,17 @@
441
455
  "pfl": "Paltsisch",
442
456
  "phn": "Foenicisch",
443
457
  "pi": "Pali",
458
+ "pis": "Pijin",
444
459
  "pl": "Pools",
445
460
  "pms": "Piëmontees",
446
461
  "pnt": "Pontisch",
447
462
  "pon": "Pohnpeiaans",
463
+ "pqm": "Maliseet-Passamaquoddy",
448
464
  "prg": "Oudpruisisch",
449
465
  "pro": "Oudprovençaals",
450
466
  "ps": "Pasjtoe",
451
467
  "ps_alt-variant": "Pashto",
452
468
  "pt": "Portugees",
453
- "pt_BR": "Portugees (Brazilië)",
454
- "pt_PT": "Portugees (Portugal)",
455
469
  "qu": "Quechua",
456
470
  "quc": "K’iche’",
457
471
  "qug": "Kichwa",
@@ -464,7 +478,6 @@
464
478
  "rm": "Reto-Romaans",
465
479
  "rn": "Kirundi",
466
480
  "ro": "Roemeens",
467
- "ro_MD": "Roemeens (Moldavië)",
468
481
  "rof": "Rombo",
469
482
  "rom": "Romani",
470
483
  "rtm": "Rotumaans",
@@ -507,6 +520,7 @@
507
520
  "sid": "Sidamo",
508
521
  "sk": "Slowaaks",
509
522
  "sl": "Sloveens",
523
+ "slh": "Zuid-Lushootseed",
510
524
  "sli": "Silezisch Duits",
511
525
  "sly": "Selayar",
512
526
  "sm": "Samoaans",
@@ -526,18 +540,19 @@
526
540
  "ssy": "Saho",
527
541
  "st": "Zuid-Sotho",
528
542
  "stq": "Saterfries",
543
+ "str": "Straits Salish",
529
544
  "su": "Soendanees",
530
545
  "suk": "Sukuma",
531
546
  "sus": "Soesoe",
532
547
  "sux": "Soemerisch",
533
548
  "sv": "Zweeds",
534
549
  "sw": "Swahili",
535
- "sw_CD": "Swahili (Congo-Kinshasa)",
536
550
  "swb": "Shimaore",
537
551
  "syc": "Klassiek Syrisch",
538
552
  "syr": "Syrisch",
539
553
  "szl": "Silezisch",
540
554
  "ta": "Tamil",
555
+ "tce": "Zuid-Tutchone",
541
556
  "tcy": "Tulu",
542
557
  "te": "Telugu",
543
558
  "tem": "Timne",
@@ -545,7 +560,9 @@
545
560
  "ter": "Tereno",
546
561
  "tet": "Tetun",
547
562
  "tg": "Tadzjieks",
563
+ "tgx": "Tagish",
548
564
  "th": "Thai",
565
+ "tht": "Tahltan",
549
566
  "ti": "Tigrinya",
550
567
  "tig": "Tigre",
551
568
  "tiv": "Tiv",
@@ -560,6 +577,7 @@
560
577
  "tn": "Tswana",
561
578
  "to": "Tongaans",
562
579
  "tog": "Nyasa Tonga",
580
+ "tok": "Toki Pona",
563
581
  "tpi": "Tok Pisin",
564
582
  "tr": "Turks",
565
583
  "tru": "Turoyo",
@@ -568,6 +586,7 @@
568
586
  "tsd": "Tsakonisch",
569
587
  "tsi": "Tsimshian",
570
588
  "tt": "Tataars",
589
+ "ttm": "Noord-Tutchone",
571
590
  "ttt": "Moslim Tat",
572
591
  "tum": "Toemboeka",
573
592
  "tvl": "Tuvaluaans",
@@ -624,9 +643,7 @@
624
643
  "zgh": "Standaard Marokkaanse Tamazight",
625
644
  "zh": "Chinees",
626
645
  "zh_alt-menu": "Mandarijn",
627
- "zh_Hans": "Chinees (vereenvoudigd)",
628
646
  "zh_Hans-alt-long": "Mandarijn (vereenvoudigd)",
629
- "zh_Hant": "Chinees (traditioneel)",
630
647
  "zh_Hant-alt-long": "Mandarijn (traditioneel)",
631
648
  "zu": "Zoeloe",
632
649
  "zun": "Zuni",
@@ -713,7 +730,7 @@
713
730
  "Jurc": "Jurchen",
714
731
  "Kali": "Kayah Li",
715
732
  "Kana": "Katakana",
716
- "Kawi": "Kawi",
733
+ "Kawi": "Kawi-taal",
717
734
  "Khar": "Kharoshthi",
718
735
  "Khmr": "Khmer",
719
736
  "Khoj": "Khojki",
@@ -753,7 +770,7 @@
753
770
  "Mtei": "Meitei",
754
771
  "Mult": "Multani",
755
772
  "Mymr": "Birmaans",
756
- "Nagm": "Nagm",
773
+ "Nagm": "Nag Mundari",
757
774
  "Nand": "Nandinagari",
758
775
  "Narb": "Oud Noord-Arabisch",
759
776
  "Nbat": "Nabateaans",
@@ -919,7 +936,7 @@
919
936
  "CG-alt-variant": "Congo (Republiek)",
920
937
  "CH": "Zwitserland",
921
938
  "CI": "Ivoorkust",
922
- "CI-alt-variant": "Ivoorkust",
939
+ "CI-alt-variant": "Côte d’Ivoire",
923
940
  "CK": "Cookeilanden",
924
941
  "CL": "Chili",
925
942
  "CM": "Kameroen",
@@ -1058,6 +1075,7 @@
1058
1075
  "NR": "Nauru",
1059
1076
  "NU": "Niue",
1060
1077
  "NZ": "Nieuw-Zeeland",
1078
+ "NZ-alt-variant": "Aotearoa Nieuw-Zeeland",
1061
1079
  "OM": "Oman",
1062
1080
  "PA": "Panama",
1063
1081
  "PE": "Peru",
@@ -1117,6 +1135,7 @@
1117
1135
  "TN": "Tunesië",
1118
1136
  "TO": "Tonga",
1119
1137
  "TR": "Turkije",
1138
+ "TR-alt-variant": "Turkije",
1120
1139
  "TT": "Trinidad en Tobago",
1121
1140
  "TV": "Tuvalu",
1122
1141
  "TW": "Taiwan",
@@ -1164,8 +1183,8 @@
1164
1183
  "short": "HH:mm"
1165
1184
  },
1166
1185
  "dateTimeFormats": {
1167
- "full": "{1} 'om' {0}",
1168
- "long": "{1} 'om' {0}",
1186
+ "full": "{1} {0}",
1187
+ "long": "{1} {0}",
1169
1188
  "medium": "{1} {0}",
1170
1189
  "short": "{1} {0}",
1171
1190
  "availableFormats": {
@@ -1231,7 +1250,7 @@
1231
1250
  "Year": "{1} {0}"
1232
1251
  },
1233
1252
  "intervalFormats": {
1234
- "intervalFormatFallback": "{0} - {1}",
1253
+ "intervalFormatFallback": "{0} – {1}",
1235
1254
  "Bh": {
1236
1255
  "B": "h B – h B",
1237
1256
  "h": "h–h B"
@@ -1245,42 +1264,42 @@
1245
1264
  "d": "d–d"
1246
1265
  },
1247
1266
  "Gy": {
1248
- "G": "y G y G",
1249
- "y": "y y G"
1267
+ "G": "y Gy G",
1268
+ "y": "yy G"
1250
1269
  },
1251
1270
  "GyM": {
1252
- "G": "M-y GGGGG M-y GGGGG",
1253
- "M": "M-y M-y GGGGG",
1254
- "y": "M-y M-y GGGGG"
1271
+ "G": "M-y GGGGGM-y GGGGG",
1272
+ "M": "M-yM-y GGGGG",
1273
+ "y": "M-yM-y GGGGG"
1255
1274
  },
1256
1275
  "GyMd": {
1257
- "d": "d-M-y d-M-y GGGGG",
1258
- "G": "d-M-y GGGGG d-M-y GGGGG",
1259
- "M": "d-M-y d-M-y GGGGG",
1260
- "y": "d-M-y d-M-y GGGGG"
1276
+ "d": "d-M-yd-M-y GGGGG",
1277
+ "G": "d-M-y GGGGGd-M-y GGGGG",
1278
+ "M": "d-M-yd-M-y GGGGG",
1279
+ "y": "d-M-yd-M-y GGGGG"
1261
1280
  },
1262
1281
  "GyMEd": {
1263
- "d": "E d-M-y E d-M-y GGGGG",
1264
- "G": "E d-M-y GGGGG E d-M-y GGGGG",
1265
- "M": "E d-M-y E d-M-y GGGGG",
1266
- "y": "E d-M-y E d-M-y GGGGG"
1282
+ "d": "E d-M-yE d-M-y GGGGG",
1283
+ "G": "E d-M-y GGGGGE d-M-y GGGGG",
1284
+ "M": "E d-M-yE d-M-y GGGGG",
1285
+ "y": "E d-M-yE d-M-y GGGGG"
1267
1286
  },
1268
1287
  "GyMMM": {
1269
- "G": "MMM y G MMM y G",
1270
- "M": "MMM MMM y G",
1271
- "y": "MMM y MMM y G"
1288
+ "G": "MMM y GMMM y G",
1289
+ "M": "MMMMMM y G",
1290
+ "y": "MMM yMMM y G"
1272
1291
  },
1273
1292
  "GyMMMd": {
1274
1293
  "d": "d–d MMM y G",
1275
- "G": "d MMM y G d MMM y G",
1276
- "M": "d MMM d MMM y G",
1277
- "y": "d MMM y d MMM y G"
1294
+ "G": "d MMM y Gd MMM y G",
1295
+ "M": "d MMMd MMM y G",
1296
+ "y": "d MMM yd MMM y G"
1278
1297
  },
1279
1298
  "GyMMMEd": {
1280
- "d": "E d MMM E d MMM y G",
1281
- "G": "E d MMM y G E d MMM y G",
1282
- "M": "E d MMM E d MMM y G",
1283
- "y": "E d MMM y E d MMM y G"
1299
+ "d": "E d MMME d MMM y G",
1300
+ "G": "E d MMM y GE d MMM y G",
1301
+ "M": "E d MMME d MMM y G",
1302
+ "y": "E d MMM yE d MMM y G"
1284
1303
  },
1285
1304
  "h": {
1286
1305
  "a": "h a – h a",
@@ -1318,23 +1337,23 @@
1318
1337
  "M": "M–M"
1319
1338
  },
1320
1339
  "Md": {
1321
- "d": "dd-MM dd-MM",
1322
- "M": "dd-MM dd-MM"
1340
+ "d": "dd-MMdd-MM",
1341
+ "M": "dd-MMdd-MM"
1323
1342
  },
1324
1343
  "MEd": {
1325
- "d": "E dd-MM E dd-MM",
1326
- "M": "E dd-MM E dd-MM"
1344
+ "d": "E dd-MME dd-MM",
1345
+ "M": "E dd-MME dd-MM"
1327
1346
  },
1328
1347
  "MMM": {
1329
1348
  "M": "MMM–MMM"
1330
1349
  },
1331
1350
  "MMMd": {
1332
1351
  "d": "d–d MMM",
1333
- "M": "d MMM d MMM"
1352
+ "M": "d MMMd MMM"
1334
1353
  },
1335
1354
  "MMMEd": {
1336
- "d": "E d E d MMM",
1337
- "M": "E d MMM E d MMM"
1355
+ "d": "E dE d MMM",
1356
+ "M": "E d MMME d MMM"
1338
1357
  },
1339
1358
  "MMMM": {
1340
1359
  "M": "MMMM–MMMM"
@@ -1343,54 +1362,54 @@
1343
1362
  "y": "y–y"
1344
1363
  },
1345
1364
  "yM": {
1346
- "M": "MM-y MM-y",
1347
- "y": "MM-y MM-y"
1365
+ "M": "MM-yMM-y",
1366
+ "y": "MM-yMM-y"
1348
1367
  },
1349
1368
  "yMd": {
1350
- "d": "dd-MM-y dd-MM-y",
1351
- "M": "dd-MM-y dd-MM-y",
1352
- "y": "dd-MM-y dd-MM-y"
1369
+ "d": "dd-MM-ydd-MM-y",
1370
+ "M": "dd-MM-ydd-MM-y",
1371
+ "y": "dd-MM-ydd-MM-y"
1353
1372
  },
1354
1373
  "yMEd": {
1355
- "d": "E dd-MM-y E dd-MM-y",
1356
- "M": "E dd-MM-y E dd-MM-y",
1357
- "y": "E dd-MM-y E dd-MM-y"
1374
+ "d": "E dd-MM-yE dd-MM-y",
1375
+ "M": "E dd-MM-yE dd-MM-y",
1376
+ "y": "E dd-MM-yE dd-MM-y"
1358
1377
  },
1359
1378
  "yMMM": {
1360
1379
  "M": "MMM–MMM y",
1361
- "y": "MMM y MMM y"
1380
+ "y": "MMM yMMM y"
1362
1381
  },
1363
1382
  "yMMMd": {
1364
1383
  "d": "d–d MMM y",
1365
- "M": "d MMM d MMM y",
1366
- "y": "d MMM y d MMM y"
1384
+ "M": "d MMMd MMM y",
1385
+ "y": "d MMM yd MMM y"
1367
1386
  },
1368
1387
  "yMMMEd": {
1369
- "d": "E d E d MMM y",
1370
- "M": "E d MMM E d MMM y",
1371
- "y": "E d MMM y E d MMM y"
1388
+ "d": "E dE d MMM y",
1389
+ "M": "E d MMME d MMM y",
1390
+ "y": "E d MMM yE d MMM y"
1372
1391
  },
1373
1392
  "yMMMM": {
1374
1393
  "M": "MMMM–MMMM y",
1375
- "y": "MMMM y MMMM y"
1394
+ "y": "MMMM yMMMM y"
1376
1395
  }
1377
1396
  }
1378
1397
  },
1379
1398
  "months": {
1380
1399
  "format": {
1381
1400
  "abbreviated": [
1382
- "jan.",
1383
- "feb.",
1384
- "mrt.",
1385
- "apr.",
1401
+ "jan",
1402
+ "feb",
1403
+ "mrt",
1404
+ "apr",
1386
1405
  "mei",
1387
- "jun.",
1388
- "jul.",
1389
- "aug.",
1390
- "sep.",
1391
- "okt.",
1392
- "nov.",
1393
- "dec."
1406
+ "jun",
1407
+ "jul",
1408
+ "aug",
1409
+ "sep",
1410
+ "okt",
1411
+ "nov",
1412
+ "dec"
1394
1413
  ],
1395
1414
  "narrow": [
1396
1415
  "J",
@@ -1423,18 +1442,18 @@
1423
1442
  },
1424
1443
  "stand-alone": {
1425
1444
  "abbreviated": [
1426
- "jan.",
1427
- "feb.",
1428
- "mrt.",
1429
- "apr.",
1445
+ "jan",
1446
+ "feb",
1447
+ "mrt",
1448
+ "apr",
1430
1449
  "mei",
1431
- "jun.",
1432
- "jul.",
1433
- "aug.",
1434
- "sep.",
1435
- "okt.",
1436
- "nov.",
1437
- "dec."
1450
+ "jun",
1451
+ "jul",
1452
+ "aug",
1453
+ "sep",
1454
+ "okt",
1455
+ "nov",
1456
+ "dec"
1438
1457
  ],
1439
1458
  "narrow": [
1440
1459
  "J",
@@ -1691,8 +1710,8 @@
1691
1710
  "short": "HH:mm"
1692
1711
  },
1693
1712
  "dateTimeFormats": {
1694
- "full": "{1} 'om' {0}",
1695
- "long": "{1} 'om' {0}",
1713
+ "full": "{1} {0}",
1714
+ "long": "{1} {0}",
1696
1715
  "medium": "{1} {0}",
1697
1716
  "short": "{1} {0}",
1698
1717
  "availableFormats": {
@@ -1753,13 +1772,13 @@
1753
1772
  "Year": "{1} {0}"
1754
1773
  },
1755
1774
  "intervalFormats": {
1756
- "intervalFormatFallback": "{0} - {1}",
1775
+ "intervalFormatFallback": "{0} – {1}",
1757
1776
  "Bh": {
1758
- "B": "h B h B",
1777
+ "B": "h Bh B",
1759
1778
  "h": "h–h B"
1760
1779
  },
1761
1780
  "Bhm": {
1762
- "B": "h:mm B h:mm B",
1781
+ "B": "h:mm Bh:mm B",
1763
1782
  "h": "h:mm–h:mm B",
1764
1783
  "m": "h:mm–h:mm B"
1765
1784
  },
@@ -1767,71 +1786,71 @@
1767
1786
  "d": "d–d"
1768
1787
  },
1769
1788
  "Gy": {
1770
- "G": "y G y G",
1771
- "y": "y y G"
1789
+ "G": "y Gy G",
1790
+ "y": "yy G"
1772
1791
  },
1773
1792
  "GyM": {
1774
- "G": "M-y GGGGG M-y GGGGG",
1775
- "M": "M-y M-y GGGGG",
1776
- "y": "M-y M-y GGGGG"
1793
+ "G": "M-y GGGGGM-y GGGGG",
1794
+ "M": "M-yM-y GGGGG",
1795
+ "y": "M-yM-y GGGGG"
1777
1796
  },
1778
1797
  "GyMd": {
1779
- "d": "d-M-y d-M-y GGGGG",
1780
- "G": "d-M-y GGGGG d-M-y GGGGG",
1781
- "M": "d-M-y d-M-y GGGGG",
1782
- "y": "d-M-y d-M-y GGGGG"
1798
+ "d": "d-M-yd-M-y GGGGG",
1799
+ "G": "d-M-y GGGGGd-M-y GGGGG",
1800
+ "M": "d-M-yd-M-y GGGGG",
1801
+ "y": "d-M-yd-M-y GGGGG"
1783
1802
  },
1784
1803
  "GyMEd": {
1785
- "d": "E d-M-y E d-M-y GGGGG",
1786
- "G": "E d-M-y GGGGG E d-M-y GGGGG",
1787
- "M": "E d-M-y E d-M-y GGGGG",
1788
- "y": "E d-M-y E d-M-y GGGGG"
1804
+ "d": "E d-M-yE d-M-y GGGGG",
1805
+ "G": "E d-M-y GGGGGE d-M-y GGGGG",
1806
+ "M": "E d-M-yE d-M-y GGGGG",
1807
+ "y": "E d-M-yE d-M-y GGGGG"
1789
1808
  },
1790
1809
  "GyMMM": {
1791
- "G": "MMM y G MMM y G",
1792
- "M": "MMM MMM y G",
1793
- "y": "MMM y MMM y G"
1810
+ "G": "MMM y GMMM y G",
1811
+ "M": "MMMMMM y G",
1812
+ "y": "MMM yMMM y G"
1794
1813
  },
1795
1814
  "GyMMMd": {
1796
1815
  "d": "d–d MMM y G",
1797
- "G": "d MMM y G d MMM y G",
1798
- "M": "d MMM d MMM y G",
1799
- "y": "d MMM y d MMM y G"
1816
+ "G": "d MMM y Gd MMM y G",
1817
+ "M": "d MMMd MMM y G",
1818
+ "y": "d MMM yd MMM y G"
1800
1819
  },
1801
1820
  "GyMMMEd": {
1802
- "d": "E d MMM E d MMM y G",
1803
- "G": "E d MMM y G E d MMM y G",
1804
- "M": "E d MMM E d MMM y G",
1805
- "y": "E d MMM y E d MMM y G"
1821
+ "d": "E d MMME d MMM y G",
1822
+ "G": "E d MMM y GE d MMM y G",
1823
+ "M": "E d MMME d MMM y G",
1824
+ "y": "E d MMM yE d MMM y G"
1806
1825
  },
1807
1826
  "h": {
1808
- "a": "h a h a",
1809
- "h": "h–h a"
1827
+ "a": "haha",
1828
+ "h": "h–ha"
1810
1829
  },
1811
1830
  "H": {
1812
1831
  "H": "HH–HH"
1813
1832
  },
1814
1833
  "hm": {
1815
- "a": "h:mm a h:mm a",
1816
- "h": "h:mm–h:mm a",
1817
- "m": "h:mm–h:mm a"
1834
+ "a": "h:mmah:mma",
1835
+ "h": "h:mm–h:mma",
1836
+ "m": "h:mm–h:mma"
1818
1837
  },
1819
1838
  "Hm": {
1820
1839
  "H": "HH:mm–HH:mm",
1821
1840
  "m": "HH:mm–HH:mm"
1822
1841
  },
1823
1842
  "hmv": {
1824
- "a": "h:mm a h:mm a v",
1825
- "h": "h:mm–h:mm a v",
1826
- "m": "h:mm–h:mm a v"
1843
+ "a": "h:mmah:mma v",
1844
+ "h": "h:mm–h:mma v",
1845
+ "m": "h:mm–h:mma v"
1827
1846
  },
1828
1847
  "Hmv": {
1829
1848
  "H": "HH:mm–HH:mm v",
1830
1849
  "m": "HH:mm–HH:mm v"
1831
1850
  },
1832
1851
  "hv": {
1833
- "a": "h a h a v",
1834
- "h": "h–h a v"
1852
+ "a": "haha v",
1853
+ "h": "h–ha v"
1835
1854
  },
1836
1855
  "Hv": {
1837
1856
  "H": "HH–HH v"
@@ -1840,23 +1859,23 @@
1840
1859
  "M": "M–M"
1841
1860
  },
1842
1861
  "Md": {
1843
- "d": "dd-MM dd-MM",
1844
- "M": "dd-MM dd-MM"
1862
+ "d": "dd-MMdd-MM",
1863
+ "M": "dd-MMdd-MM"
1845
1864
  },
1846
1865
  "MEd": {
1847
- "d": "E dd-MM E dd-MM",
1848
- "M": "E dd-MM E dd-MM"
1866
+ "d": "E dd-MME dd-MM",
1867
+ "M": "E dd-MME dd-MM"
1849
1868
  },
1850
1869
  "MMM": {
1851
1870
  "M": "MMM–MMM"
1852
1871
  },
1853
1872
  "MMMd": {
1854
1873
  "d": "d–d MMM",
1855
- "M": "d MMM d MMM"
1874
+ "M": "d MMMd MMM"
1856
1875
  },
1857
1876
  "MMMEd": {
1858
- "d": "E d E d MMM",
1859
- "M": "E d MMM E d MMM"
1877
+ "d": "E dE d MMM",
1878
+ "M": "E d MMME d MMM"
1860
1879
  },
1861
1880
  "MMMM": {
1862
1881
  "M": "MMMM–MMMM"
@@ -1865,36 +1884,36 @@
1865
1884
  "y": "y–y G"
1866
1885
  },
1867
1886
  "yM": {
1868
- "M": "MM-y MM-y G",
1869
- "y": "MM-y MM-y G"
1887
+ "M": "MM-yMM-y G",
1888
+ "y": "MM-yMM-y G"
1870
1889
  },
1871
1890
  "yMd": {
1872
- "d": "dd-MM-y dd-MM-y G",
1873
- "M": "dd-MM-y dd-MM-y G",
1874
- "y": "dd-MM-y dd-MM-y G"
1891
+ "d": "dd-MM-ydd-MM-y G",
1892
+ "M": "dd-MM-ydd-MM-y G",
1893
+ "y": "dd-MM-ydd-MM-y G"
1875
1894
  },
1876
1895
  "yMEd": {
1877
- "d": "E dd-MM-y E dd-MM-y G",
1878
- "M": "E dd-MM-y E dd-MM-y G",
1879
- "y": "E dd-MM-y E dd-MM-y G"
1896
+ "d": "E dd-MM-yE dd-MM-y G",
1897
+ "M": "E dd-MM-yE dd-MM-y G",
1898
+ "y": "E dd-MM-yE dd-MM-y G"
1880
1899
  },
1881
1900
  "yMMM": {
1882
1901
  "M": "MMM–MMM y G",
1883
- "y": "MMM y MMM y G"
1902
+ "y": "MMM yMMM y G"
1884
1903
  },
1885
1904
  "yMMMd": {
1886
1905
  "d": "d–d MMM y G",
1887
- "M": "d MMM d MMM y G",
1888
- "y": "d MMM y d MMM y G"
1906
+ "M": "d MMMd MMM y G",
1907
+ "y": "d MMM yd MMM y G"
1889
1908
  },
1890
1909
  "yMMMEd": {
1891
- "d": "E d E d MMM y G",
1892
- "M": "E d MMM E d MMM y G",
1893
- "y": "E d MMM y E d MMM y G"
1910
+ "d": "E dE d MMM y G",
1911
+ "M": "E d MMME d MMM y G",
1912
+ "y": "E d MMM yE d MMM y G"
1894
1913
  },
1895
1914
  "yMMMM": {
1896
1915
  "M": "MMMM–MMMM y G",
1897
- "y": "MMMM y MMMM y G"
1916
+ "y": "MMMM yMMMM y G"
1898
1917
  }
1899
1918
  }
1900
1919
  },
@@ -2210,8 +2229,8 @@
2210
2229
  "short": "HH:mm"
2211
2230
  },
2212
2231
  "dateTimeFormats": {
2213
- "full": "{1} 'om' {0}",
2214
- "long": "{1} 'om' {0}",
2232
+ "full": "{1} {0}",
2233
+ "long": "{1} {0}",
2215
2234
  "medium": "{1} {0}",
2216
2235
  "short": "{1} {0}",
2217
2236
  "availableFormats": {
@@ -2272,13 +2291,13 @@
2272
2291
  "Year": "{1} {0}"
2273
2292
  },
2274
2293
  "intervalFormats": {
2275
- "intervalFormatFallback": "{0} - {1}",
2294
+ "intervalFormatFallback": "{0} – {1}",
2276
2295
  "Bh": {
2277
- "B": "h B h B",
2296
+ "B": "h Bh B",
2278
2297
  "h": "h–h B"
2279
2298
  },
2280
2299
  "Bhm": {
2281
- "B": "h:mm B h:mm B",
2300
+ "B": "h:mm Bh:mm B",
2282
2301
  "h": "h:mm–h:mm B",
2283
2302
  "m": "h:mm–h:mm B"
2284
2303
  },
@@ -2286,71 +2305,71 @@
2286
2305
  "d": "d–d"
2287
2306
  },
2288
2307
  "Gy": {
2289
- "G": "y G y G",
2290
- "y": "y y G"
2308
+ "G": "y Gy G",
2309
+ "y": "yy G"
2291
2310
  },
2292
2311
  "GyM": {
2293
- "G": "M-y GGGGG M-y GGGGG",
2294
- "M": "M-y M-y GGGGG",
2295
- "y": "M-y M-y GGGGG"
2312
+ "G": "M-y GGGGGM-y GGGGG",
2313
+ "M": "M-yM-y GGGGG",
2314
+ "y": "M-yM-y GGGGG"
2296
2315
  },
2297
2316
  "GyMd": {
2298
- "d": "d-M-y d-M-y GGGGG",
2299
- "G": "d-M-y GGGGG d-M-y GGGGG",
2300
- "M": "d-M-y d-M-y GGGGG",
2301
- "y": "d-M-y d-M-y GGGGG"
2317
+ "d": "d-M-yd-M-y GGGGG",
2318
+ "G": "d-M-y GGGGGd-M-y GGGGG",
2319
+ "M": "d-M-yd-M-y GGGGG",
2320
+ "y": "d-M-yd-M-y GGGGG"
2302
2321
  },
2303
2322
  "GyMEd": {
2304
- "d": "E d-M-y E d-M-y GGGGG",
2305
- "G": "E d-M-y GGGGG E d-M-y GGGGG",
2306
- "M": "E d-M-y E d-M-y GGGGG",
2307
- "y": "E d-M-y E d-M-y GGGGG"
2323
+ "d": "E d-M-yE d-M-y GGGGG",
2324
+ "G": "E d-M-y GGGGGE d-M-y GGGGG",
2325
+ "M": "E d-M-yE d-M-y GGGGG",
2326
+ "y": "E d-M-yE d-M-y GGGGG"
2308
2327
  },
2309
2328
  "GyMMM": {
2310
- "G": "MMM y G MMM y G",
2311
- "M": "MMM MMM y G",
2312
- "y": "MMM y MMM y G"
2329
+ "G": "MMM y GMMM y G",
2330
+ "M": "MMMMMM y G",
2331
+ "y": "MMM yMMM y G"
2313
2332
  },
2314
2333
  "GyMMMd": {
2315
2334
  "d": "d–d MMM y G",
2316
- "G": "d MMM y G d MMM y G",
2317
- "M": "d MMM d MMM y G",
2318
- "y": "d MMM y d MMM y G"
2335
+ "G": "d MMM y Gd MMM y G",
2336
+ "M": "d MMMd MMM y G",
2337
+ "y": "d MMM yd MMM y G"
2319
2338
  },
2320
2339
  "GyMMMEd": {
2321
- "d": "E d MMM E d MMM y G",
2322
- "G": "E d MMM y G E d MMM y G",
2323
- "M": "E d MMM E d MMM y G",
2324
- "y": "E d MMM y E d MMM y G"
2340
+ "d": "E d MMME d MMM y G",
2341
+ "G": "E d MMM y GE d MMM y G",
2342
+ "M": "E d MMME d MMM y G",
2343
+ "y": "E d MMM yE d MMM y G"
2325
2344
  },
2326
2345
  "h": {
2327
- "a": "h a h a",
2328
- "h": "h–h a"
2346
+ "a": "haha",
2347
+ "h": "h–ha"
2329
2348
  },
2330
2349
  "H": {
2331
2350
  "H": "HH–HH"
2332
2351
  },
2333
2352
  "hm": {
2334
- "a": "h:mm a h:mm a",
2335
- "h": "h:mm–h:mm a",
2336
- "m": "h:mm–h:mm a"
2353
+ "a": "h:mmah:mma",
2354
+ "h": "h:mm–h:mma",
2355
+ "m": "h:mm–h:mma"
2337
2356
  },
2338
2357
  "Hm": {
2339
2358
  "H": "HH:mm–HH:mm",
2340
2359
  "m": "HH:mm–HH:mm"
2341
2360
  },
2342
2361
  "hmv": {
2343
- "a": "h:mm a h:mm a v",
2344
- "h": "h:mm–h:mm a v",
2345
- "m": "h:mm–h:mm a v"
2362
+ "a": "h:mmah:mma v",
2363
+ "h": "h:mm–h:mma v",
2364
+ "m": "h:mm–h:mma v"
2346
2365
  },
2347
2366
  "Hmv": {
2348
2367
  "H": "HH:mm–HH:mm v",
2349
2368
  "m": "HH:mm–HH:mm v"
2350
2369
  },
2351
2370
  "hv": {
2352
- "a": "h a h a v",
2353
- "h": "h–h a v"
2371
+ "a": "haha v",
2372
+ "h": "h–ha v"
2354
2373
  },
2355
2374
  "Hv": {
2356
2375
  "H": "HH–HH v"
@@ -2359,23 +2378,23 @@
2359
2378
  "M": "M–M"
2360
2379
  },
2361
2380
  "Md": {
2362
- "d": "dd-MM dd-MM",
2363
- "M": "dd-MM dd-MM"
2381
+ "d": "dd-MMdd-MM",
2382
+ "M": "dd-MMdd-MM"
2364
2383
  },
2365
2384
  "MEd": {
2366
- "d": "E dd-MM E dd-MM",
2367
- "M": "E dd-MM E dd-MM"
2385
+ "d": "E dd-MME dd-MM",
2386
+ "M": "E dd-MME dd-MM"
2368
2387
  },
2369
2388
  "MMM": {
2370
2389
  "M": "MMM–MMM"
2371
2390
  },
2372
2391
  "MMMd": {
2373
2392
  "d": "d–d MMM",
2374
- "M": "d MMM d MMM"
2393
+ "M": "d MMMd MMM"
2375
2394
  },
2376
2395
  "MMMEd": {
2377
- "d": "E d E d MMM",
2378
- "M": "E d MMM E d MMM"
2396
+ "d": "E dE d MMM",
2397
+ "M": "E d MMME d MMM"
2379
2398
  },
2380
2399
  "MMMM": {
2381
2400
  "M": "MMMM–MMMM"
@@ -2385,61 +2404,61 @@
2385
2404
  "G": "y G–y G"
2386
2405
  },
2387
2406
  "yM": {
2388
- "M": "MM-y MM-y G",
2389
- "y": "MM-y MM-y G",
2390
- "G": "MM-y G MM-y G"
2407
+ "M": "MM-yMM-y G",
2408
+ "y": "MM-yMM-y G",
2409
+ "G": "MM-y GMM-y G"
2391
2410
  },
2392
2411
  "yMd": {
2393
- "d": "dd-MM-y dd-MM-y G",
2394
- "M": "dd-MM-y dd-MM-y G",
2395
- "y": "dd-MM-y dd-MM-y G",
2396
- "G": "dd-MM-y G dd-MM-y G"
2412
+ "d": "dd-MM-ydd-MM-y G",
2413
+ "M": "dd-MM-ydd-MM-y G",
2414
+ "y": "dd-MM-ydd-MM-y G",
2415
+ "G": "dd-MM-y Gdd-MM-y G"
2397
2416
  },
2398
2417
  "yMEd": {
2399
- "d": "E dd-MM-y E dd-MM-y G",
2400
- "M": "E dd-MM-y E dd-MM-y G",
2401
- "y": "E dd-MM-y E dd-MM-y G",
2402
- "G": "E dd-MM-y G E dd-MM-y G"
2418
+ "d": "E dd-MM-yE dd-MM-y G",
2419
+ "M": "E dd-MM-yE dd-MM-y G",
2420
+ "y": "E dd-MM-yE dd-MM-y G",
2421
+ "G": "E dd-MM-y GE dd-MM-y G"
2403
2422
  },
2404
2423
  "yMMM": {
2405
2424
  "M": "MMM–MMM y G",
2406
- "y": "MMM y MMM y G",
2407
- "G": "MMM y G MMM y G"
2425
+ "y": "MMM yMMM y G",
2426
+ "G": "MMM y GMMM y G"
2408
2427
  },
2409
2428
  "yMMMd": {
2410
2429
  "d": "d–d MMM y G",
2411
- "M": "d MMM d MMM y G",
2412
- "y": "d MMM y d MMM y G",
2413
- "G": "d MMM y G d MMM y G"
2430
+ "M": "d MMMd MMM y G",
2431
+ "y": "d MMM yd MMM y G",
2432
+ "G": "d MMM y Gd MMM y G"
2414
2433
  },
2415
2434
  "yMMMEd": {
2416
- "d": "E d E d MMM y G",
2417
- "M": "E d MMM E d MMM y G",
2418
- "y": "E d MMM y E d MMM y G",
2419
- "G": "E d MMM y G E d MMM y G"
2435
+ "d": "E dE d MMM y G",
2436
+ "M": "E d MMME d MMM y G",
2437
+ "y": "E d MMM yE d MMM y G",
2438
+ "G": "E d MMM y GE d MMM y G"
2420
2439
  },
2421
2440
  "yMMMM": {
2422
2441
  "M": "MMMM–MMMM y G",
2423
- "y": "MMMM y MMMM y G",
2424
- "G": "MMMM y G MMMM y G"
2442
+ "y": "MMMM yMMMM y G",
2443
+ "G": "MMMM y GMMMM y G"
2425
2444
  }
2426
2445
  }
2427
2446
  },
2428
2447
  "months": {
2429
2448
  "format": {
2430
2449
  "abbreviated": [
2431
- "jan.",
2432
- "feb.",
2433
- "mrt.",
2434
- "apr.",
2450
+ "jan",
2451
+ "feb",
2452
+ "mrt",
2453
+ "apr",
2435
2454
  "mei",
2436
- "jun.",
2437
- "jul.",
2438
- "aug.",
2439
- "sep.",
2440
- "okt.",
2441
- "nov.",
2442
- "dec."
2455
+ "jun",
2456
+ "jul",
2457
+ "aug",
2458
+ "sep",
2459
+ "okt",
2460
+ "nov",
2461
+ "dec"
2443
2462
  ],
2444
2463
  "narrow": [
2445
2464
  "J",
@@ -2472,18 +2491,18 @@
2472
2491
  },
2473
2492
  "stand-alone": {
2474
2493
  "abbreviated": [
2475
- "jan.",
2476
- "feb.",
2477
- "mrt.",
2478
- "apr.",
2494
+ "jan",
2495
+ "feb",
2496
+ "mrt",
2497
+ "apr",
2479
2498
  "mei",
2480
- "jun.",
2481
- "jul.",
2482
- "aug.",
2483
- "sep.",
2484
- "okt.",
2485
- "nov.",
2486
- "dec."
2499
+ "jun",
2500
+ "jul",
2501
+ "aug",
2502
+ "sep",
2503
+ "okt",
2504
+ "nov",
2505
+ "dec"
2487
2506
  ],
2488
2507
  "narrow": [
2489
2508
  "J",
@@ -2749,8 +2768,8 @@
2749
2768
  "short": "HH:mm"
2750
2769
  },
2751
2770
  "dateTimeFormats": {
2752
- "full": "{1} 'om' {0}",
2753
- "long": "{1} 'om' {0}",
2771
+ "full": "{1} {0}",
2772
+ "long": "{1} {0}",
2754
2773
  "medium": "{1} {0}",
2755
2774
  "short": "{1} {0}",
2756
2775
  "availableFormats": {
@@ -2811,13 +2830,13 @@
2811
2830
  "Year": "{1} {0}"
2812
2831
  },
2813
2832
  "intervalFormats": {
2814
- "intervalFormatFallback": "{0} - {1}",
2833
+ "intervalFormatFallback": "{0} – {1}",
2815
2834
  "Bh": {
2816
- "B": "h B h B",
2835
+ "B": "h Bh B",
2817
2836
  "h": "h–h B"
2818
2837
  },
2819
2838
  "Bhm": {
2820
- "B": "h:mm B h:mm B",
2839
+ "B": "h:mm Bh:mm B",
2821
2840
  "h": "h:mm–h:mm B",
2822
2841
  "m": "h:mm–h:mm B"
2823
2842
  },
@@ -2825,71 +2844,71 @@
2825
2844
  "d": "d–d"
2826
2845
  },
2827
2846
  "Gy": {
2828
- "G": "y G y G",
2829
- "y": "y y G"
2847
+ "G": "y Gy G",
2848
+ "y": "yy G"
2830
2849
  },
2831
2850
  "GyM": {
2832
- "G": "M-y GGGGG M-y GGGGG",
2833
- "M": "M-y M-y GGGGG",
2834
- "y": "M-y M-y GGGGG"
2851
+ "G": "M-y GGGGGM-y GGGGG",
2852
+ "M": "M-yM-y GGGGG",
2853
+ "y": "M-yM-y GGGGG"
2835
2854
  },
2836
2855
  "GyMd": {
2837
- "d": "d-M-y d-M-y GGGGG",
2838
- "G": "d-M-y GGGGG d-M-y GGGGG",
2839
- "M": "d-M-y d-M-y GGGGG",
2840
- "y": "d-M-y d-M-y GGGGG"
2856
+ "d": "d-M-yd-M-y GGGGG",
2857
+ "G": "d-M-y GGGGGd-M-y GGGGG",
2858
+ "M": "d-M-yd-M-y GGGGG",
2859
+ "y": "d-M-yd-M-y GGGGG"
2841
2860
  },
2842
2861
  "GyMEd": {
2843
- "d": "E d-M-y E d-M-y GGGGG",
2844
- "G": "E d-M-y GGGGG E d-M-y GGGGG",
2845
- "M": "E d-M-y E d-M-y GGGGG",
2846
- "y": "E d-M-y E d-M-y GGGGG"
2862
+ "d": "E d-M-yE d-M-y GGGGG",
2863
+ "G": "E d-M-y GGGGGE d-M-y GGGGG",
2864
+ "M": "E d-M-yE d-M-y GGGGG",
2865
+ "y": "E d-M-yE d-M-y GGGGG"
2847
2866
  },
2848
2867
  "GyMMM": {
2849
- "G": "MMM y G MMM y G",
2850
- "M": "MMM MMM y G",
2851
- "y": "MMM y MMM y G"
2868
+ "G": "MMM y GMMM y G",
2869
+ "M": "MMMMMM y G",
2870
+ "y": "MMM yMMM y G"
2852
2871
  },
2853
2872
  "GyMMMd": {
2854
2873
  "d": "d–d MMM y G",
2855
- "G": "d MMM y G d MMM y G",
2856
- "M": "d MMM d MMM y G",
2857
- "y": "d MMM y d MMM y G"
2874
+ "G": "d MMM y Gd MMM y G",
2875
+ "M": "d MMMd MMM y G",
2876
+ "y": "d MMM yd MMM y G"
2858
2877
  },
2859
2878
  "GyMMMEd": {
2860
- "d": "E d MMM E d MMM y G",
2861
- "G": "E d MMM y G E d MMM y G",
2862
- "M": "E d MMM E d MMM y G",
2863
- "y": "E d MMM y E d MMM y G"
2879
+ "d": "E d MMME d MMM y G",
2880
+ "G": "E d MMM y GE d MMM y G",
2881
+ "M": "E d MMME d MMM y G",
2882
+ "y": "E d MMM yE d MMM y G"
2864
2883
  },
2865
2884
  "h": {
2866
- "a": "h a h a",
2867
- "h": "h–h a"
2885
+ "a": "haha",
2886
+ "h": "h–ha"
2868
2887
  },
2869
2888
  "H": {
2870
2889
  "H": "HH–HH"
2871
2890
  },
2872
2891
  "hm": {
2873
- "a": "h:mm a h:mm a",
2874
- "h": "h:mm–h:mm a",
2875
- "m": "h:mm–h:mm a"
2892
+ "a": "h:mmah:mma",
2893
+ "h": "h:mm–h:mma",
2894
+ "m": "h:mm–h:mma"
2876
2895
  },
2877
2896
  "Hm": {
2878
2897
  "H": "HH:mm–HH:mm",
2879
2898
  "m": "HH:mm–HH:mm"
2880
2899
  },
2881
2900
  "hmv": {
2882
- "a": "h:mm a h:mm a v",
2883
- "h": "h:mm–h:mm a v",
2884
- "m": "h:mm–h:mm a v"
2901
+ "a": "h:mmah:mma v",
2902
+ "h": "h:mm–h:mma v",
2903
+ "m": "h:mm–h:mma v"
2885
2904
  },
2886
2905
  "Hmv": {
2887
2906
  "H": "HH:mm–HH:mm v",
2888
2907
  "m": "HH:mm–HH:mm v"
2889
2908
  },
2890
2909
  "hv": {
2891
- "a": "h a h a v",
2892
- "h": "h–h a v"
2910
+ "a": "haha v",
2911
+ "h": "h–ha v"
2893
2912
  },
2894
2913
  "Hv": {
2895
2914
  "H": "HH–HH v"
@@ -2898,23 +2917,23 @@
2898
2917
  "M": "M–M"
2899
2918
  },
2900
2919
  "Md": {
2901
- "d": "dd-MM dd-MM",
2902
- "M": "dd-MM dd-MM"
2920
+ "d": "dd-MMdd-MM",
2921
+ "M": "dd-MMdd-MM"
2903
2922
  },
2904
2923
  "MEd": {
2905
- "d": "E dd-MM E dd-MM",
2906
- "M": "E dd-MM E dd-MM"
2924
+ "d": "E dd-MME dd-MM",
2925
+ "M": "E dd-MME dd-MM"
2907
2926
  },
2908
2927
  "MMM": {
2909
2928
  "M": "MMM–MMM"
2910
2929
  },
2911
2930
  "MMMd": {
2912
2931
  "d": "d–d MMM",
2913
- "M": "d MMM d MMM"
2932
+ "M": "d MMMd MMM"
2914
2933
  },
2915
2934
  "MMMEd": {
2916
- "d": "E d E d MMM",
2917
- "M": "E d MMM E d MMM"
2935
+ "d": "E dE d MMM",
2936
+ "M": "E d MMME d MMM"
2918
2937
  },
2919
2938
  "MMMM": {
2920
2939
  "M": "MMMM–MMMM"
@@ -2923,36 +2942,36 @@
2923
2942
  "y": "y–y G"
2924
2943
  },
2925
2944
  "yM": {
2926
- "M": "MM-y MM-y G",
2927
- "y": "MM-y MM-y G"
2945
+ "M": "MM-yMM-y G",
2946
+ "y": "MM-yMM-y G"
2928
2947
  },
2929
2948
  "yMd": {
2930
- "d": "dd-MM-y dd-MM-y G",
2931
- "M": "dd-MM-y dd-MM-y G",
2932
- "y": "dd-MM-y dd-MM-y G"
2949
+ "d": "dd-MM-ydd-MM-y G",
2950
+ "M": "dd-MM-ydd-MM-y G",
2951
+ "y": "dd-MM-ydd-MM-y G"
2933
2952
  },
2934
2953
  "yMEd": {
2935
- "d": "E dd-MM-y E dd-MM-y G",
2936
- "M": "E dd-MM-y E dd-MM-y G",
2937
- "y": "E dd-MM-y E dd-MM-y G"
2954
+ "d": "E dd-MM-yE dd-MM-y G",
2955
+ "M": "E dd-MM-yE dd-MM-y G",
2956
+ "y": "E dd-MM-yE dd-MM-y G"
2938
2957
  },
2939
2958
  "yMMM": {
2940
2959
  "M": "MMM–MMM y G",
2941
- "y": "MMM y MMM y G"
2960
+ "y": "MMM yMMM y G"
2942
2961
  },
2943
2962
  "yMMMd": {
2944
2963
  "d": "d–d MMM y G",
2945
- "M": "d MMM d MMM y G",
2946
- "y": "d MMM y d MMM y G"
2964
+ "M": "d MMMd MMM y G",
2965
+ "y": "d MMM yd MMM y G"
2947
2966
  },
2948
2967
  "yMMMEd": {
2949
- "d": "E d E d MMM y G",
2950
- "M": "E d MMM E d MMM y G",
2951
- "y": "E d MMM y E d MMM y G"
2968
+ "d": "E dE d MMM y G",
2969
+ "M": "E d MMME d MMM y G",
2970
+ "y": "E d MMM yE d MMM y G"
2952
2971
  },
2953
2972
  "yMMMM": {
2954
2973
  "M": "MMMM–MMMM y G",
2955
- "y": "MMMM y MMMM y G"
2974
+ "y": "MMMM yMMMM y G"
2956
2975
  }
2957
2976
  }
2958
2977
  },
@@ -3268,8 +3287,8 @@
3268
3287
  "short": "HH:mm"
3269
3288
  },
3270
3289
  "dateTimeFormats": {
3271
- "full": "{1} 'om' {0}",
3272
- "long": "{1} 'om' {0}",
3290
+ "full": "{1} {0}",
3291
+ "long": "{1} {0}",
3273
3292
  "medium": "{1} {0}",
3274
3293
  "short": "{1} {0}",
3275
3294
  "availableFormats": {
@@ -3330,13 +3349,13 @@
3330
3349
  "Year": "{1} {0}"
3331
3350
  },
3332
3351
  "intervalFormats": {
3333
- "intervalFormatFallback": "{0} - {1}",
3352
+ "intervalFormatFallback": "{0} – {1}",
3334
3353
  "Bh": {
3335
- "B": "h B h B",
3354
+ "B": "h Bh B",
3336
3355
  "h": "h–h B"
3337
3356
  },
3338
3357
  "Bhm": {
3339
- "B": "h:mm B h:mm B",
3358
+ "B": "h:mm Bh:mm B",
3340
3359
  "h": "h:mm–h:mm B",
3341
3360
  "m": "h:mm–h:mm B"
3342
3361
  },
@@ -3344,71 +3363,71 @@
3344
3363
  "d": "d–d"
3345
3364
  },
3346
3365
  "Gy": {
3347
- "G": "y G y G",
3348
- "y": "y y G"
3366
+ "G": "y Gy G",
3367
+ "y": "yy G"
3349
3368
  },
3350
3369
  "GyM": {
3351
- "G": "M-y GGGGG M-y GGGGG",
3352
- "M": "M-y M-y GGGGG",
3353
- "y": "M-y M-y GGGGG"
3370
+ "G": "M-y GGGGGM-y GGGGG",
3371
+ "M": "M-yM-y GGGGG",
3372
+ "y": "M-yM-y GGGGG"
3354
3373
  },
3355
3374
  "GyMd": {
3356
- "d": "d-M-y d-M-y GGGGG",
3357
- "G": "d-M-y GGGGG d-M-y GGGGG",
3358
- "M": "d-M-y d-M-y GGGGG",
3359
- "y": "d-M-y d-M-y GGGGG"
3375
+ "d": "d-M-yd-M-y GGGGG",
3376
+ "G": "d-M-y GGGGGd-M-y GGGGG",
3377
+ "M": "d-M-yd-M-y GGGGG",
3378
+ "y": "d-M-yd-M-y GGGGG"
3360
3379
  },
3361
3380
  "GyMEd": {
3362
- "d": "E d-M-y E d-M-y GGGGG",
3363
- "G": "E d-M-y GGGGG E d-M-y GGGGG",
3364
- "M": "E d-M-y E d-M-y GGGGG",
3365
- "y": "E d-M-y E d-M-y GGGGG"
3381
+ "d": "E d-M-yE d-M-y GGGGG",
3382
+ "G": "E d-M-y GGGGGE d-M-y GGGGG",
3383
+ "M": "E d-M-yE d-M-y GGGGG",
3384
+ "y": "E d-M-yE d-M-y GGGGG"
3366
3385
  },
3367
3386
  "GyMMM": {
3368
- "G": "MMM y G MMM y G",
3369
- "M": "MMM MMM y G",
3370
- "y": "MMM y MMM y G"
3387
+ "G": "MMM y GMMM y G",
3388
+ "M": "MMMMMM y G",
3389
+ "y": "MMM yMMM y G"
3371
3390
  },
3372
3391
  "GyMMMd": {
3373
3392
  "d": "d–d MMM y G",
3374
- "G": "d MMM y G d MMM y G",
3375
- "M": "d MMM d MMM y G",
3376
- "y": "d MMM y d MMM y G"
3393
+ "G": "d MMM y Gd MMM y G",
3394
+ "M": "d MMMd MMM y G",
3395
+ "y": "d MMM yd MMM y G"
3377
3396
  },
3378
3397
  "GyMMMEd": {
3379
- "d": "E d MMM E d MMM y G",
3380
- "G": "E d MMM y G E d MMM y G",
3381
- "M": "E d MMM E d MMM y G",
3382
- "y": "E d MMM y E d MMM y G"
3398
+ "d": "E d MMME d MMM y G",
3399
+ "G": "E d MMM y GE d MMM y G",
3400
+ "M": "E d MMME d MMM y G",
3401
+ "y": "E d MMM yE d MMM y G"
3383
3402
  },
3384
3403
  "h": {
3385
- "a": "h a h a",
3386
- "h": "h–h a"
3404
+ "a": "haha",
3405
+ "h": "h–ha"
3387
3406
  },
3388
3407
  "H": {
3389
3408
  "H": "HH–HH"
3390
3409
  },
3391
3410
  "hm": {
3392
- "a": "h:mm a h:mm a",
3393
- "h": "h:mm–h:mm a",
3394
- "m": "h:mm–h:mm a"
3411
+ "a": "h:mmah:mma",
3412
+ "h": "h:mm–h:mma",
3413
+ "m": "h:mm–h:mma"
3395
3414
  },
3396
3415
  "Hm": {
3397
3416
  "H": "HH:mm–HH:mm",
3398
3417
  "m": "HH:mm–HH:mm"
3399
3418
  },
3400
3419
  "hmv": {
3401
- "a": "h:mm a h:mm a v",
3402
- "h": "h:mm–h:mm a v",
3403
- "m": "h:mm–h:mm a v"
3420
+ "a": "h:mmah:mma v",
3421
+ "h": "h:mm–h:mma v",
3422
+ "m": "h:mm–h:mma v"
3404
3423
  },
3405
3424
  "Hmv": {
3406
3425
  "H": "HH:mm–HH:mm v",
3407
3426
  "m": "HH:mm–HH:mm v"
3408
3427
  },
3409
3428
  "hv": {
3410
- "a": "h a h a v",
3411
- "h": "h–h a v"
3429
+ "a": "haha v",
3430
+ "h": "h–ha v"
3412
3431
  },
3413
3432
  "Hv": {
3414
3433
  "H": "HH–HH v"
@@ -3417,23 +3436,23 @@
3417
3436
  "M": "M–M"
3418
3437
  },
3419
3438
  "Md": {
3420
- "d": "dd-MM dd-MM",
3421
- "M": "dd-MM dd-MM"
3439
+ "d": "dd-MMdd-MM",
3440
+ "M": "dd-MMdd-MM"
3422
3441
  },
3423
3442
  "MEd": {
3424
- "d": "E dd-MM E dd-MM",
3425
- "M": "E dd-MM E dd-MM"
3443
+ "d": "E dd-MME dd-MM",
3444
+ "M": "E dd-MME dd-MM"
3426
3445
  },
3427
3446
  "MMM": {
3428
3447
  "M": "MMM–MMM"
3429
3448
  },
3430
3449
  "MMMd": {
3431
3450
  "d": "d–d MMM",
3432
- "M": "d MMM d MMM"
3451
+ "M": "d MMMd MMM"
3433
3452
  },
3434
3453
  "MMMEd": {
3435
- "d": "E d E d MMM",
3436
- "M": "E d MMM E d MMM"
3454
+ "d": "E dE d MMM",
3455
+ "M": "E d MMME d MMM"
3437
3456
  },
3438
3457
  "MMMM": {
3439
3458
  "M": "MMMM–MMMM"
@@ -3442,54 +3461,54 @@
3442
3461
  "y": "y–y G"
3443
3462
  },
3444
3463
  "yM": {
3445
- "M": "MM-y MM-y G",
3446
- "y": "MM-y MM-y G"
3464
+ "M": "MM-yMM-y G",
3465
+ "y": "MM-yMM-y G"
3447
3466
  },
3448
3467
  "yMd": {
3449
- "d": "dd-MM-y dd-MM-y G",
3450
- "M": "dd-MM-y dd-MM-y G",
3451
- "y": "dd-MM-y dd-MM-y G"
3468
+ "d": "dd-MM-ydd-MM-y G",
3469
+ "M": "dd-MM-ydd-MM-y G",
3470
+ "y": "dd-MM-ydd-MM-y G"
3452
3471
  },
3453
3472
  "yMEd": {
3454
- "d": "E dd-MM-y E dd-MM-y G",
3455
- "M": "E dd-MM-y E dd-MM-y G",
3456
- "y": "E dd-MM-y E dd-MM-y G"
3473
+ "d": "E dd-MM-yE dd-MM-y G",
3474
+ "M": "E dd-MM-yE dd-MM-y G",
3475
+ "y": "E dd-MM-yE dd-MM-y G"
3457
3476
  },
3458
3477
  "yMMM": {
3459
3478
  "M": "MMM–MMM y G",
3460
- "y": "MMM y MMM y G"
3479
+ "y": "MMM yMMM y G"
3461
3480
  },
3462
3481
  "yMMMd": {
3463
3482
  "d": "d–d MMM y G",
3464
- "M": "d MMM d MMM y G",
3465
- "y": "d MMM y d MMM y G"
3483
+ "M": "d MMMd MMM y G",
3484
+ "y": "d MMM yd MMM y G"
3466
3485
  },
3467
3486
  "yMMMEd": {
3468
- "d": "E d E d MMM y G",
3469
- "M": "E d MMM E d MMM y G",
3470
- "y": "E d MMM y E d MMM y G"
3487
+ "d": "E dE d MMM y G",
3488
+ "M": "E d MMME d MMM y G",
3489
+ "y": "E d MMM yE d MMM y G"
3471
3490
  },
3472
3491
  "yMMMM": {
3473
3492
  "M": "MMMM–MMMM y G",
3474
- "y": "MMMM y MMMM y G"
3493
+ "y": "MMMM yMMMM y G"
3475
3494
  }
3476
3495
  }
3477
3496
  },
3478
3497
  "months": {
3479
3498
  "format": {
3480
3499
  "abbreviated": [
3481
- "jan.",
3482
- "feb.",
3483
- "mrt.",
3484
- "apr.",
3500
+ "jan",
3501
+ "feb",
3502
+ "mrt",
3503
+ "apr",
3485
3504
  "mei",
3486
- "jun.",
3487
- "jul.",
3488
- "aug.",
3489
- "sep.",
3490
- "okt.",
3491
- "nov.",
3492
- "dec."
3505
+ "jun",
3506
+ "jul",
3507
+ "aug",
3508
+ "sep",
3509
+ "okt",
3510
+ "nov",
3511
+ "dec"
3493
3512
  ],
3494
3513
  "narrow": [
3495
3514
  "J",
@@ -3522,18 +3541,18 @@
3522
3541
  },
3523
3542
  "stand-alone": {
3524
3543
  "abbreviated": [
3525
- "jan.",
3526
- "feb.",
3527
- "mrt.",
3528
- "apr.",
3544
+ "jan",
3545
+ "feb",
3546
+ "mrt",
3547
+ "apr",
3529
3548
  "mei",
3530
- "jun.",
3531
- "jul.",
3532
- "aug.",
3533
- "sep.",
3534
- "okt.",
3535
- "nov.",
3536
- "dec."
3549
+ "jun",
3550
+ "jul",
3551
+ "aug",
3552
+ "sep",
3553
+ "okt",
3554
+ "nov",
3555
+ "dec"
3537
3556
  ],
3538
3557
  "narrow": [
3539
3558
  "J",
@@ -3839,12 +3858,12 @@
3839
3858
  "relative-type-0": "dit kwartaal",
3840
3859
  "relative-type-1": "volgend kwartaal",
3841
3860
  "relativeTime-type-future": {
3842
- "relativeTimePattern-count-one": "over {0} kwartaal",
3843
- "relativeTimePattern-count-other": "over {0} kwartalen"
3861
+ "relativeTimePattern-count-one": "over {0} kwart.",
3862
+ "relativeTimePattern-count-other": "over {0} kwart."
3844
3863
  },
3845
3864
  "relativeTime-type-past": {
3846
- "relativeTimePattern-count-one": "{0} kwartaal geleden",
3847
- "relativeTimePattern-count-other": "{0} kwartalen geleden"
3865
+ "relativeTimePattern-count-one": "{0} kwart. geleden",
3866
+ "relativeTimePattern-count-other": "{0} kwart. geleden"
3848
3867
  }
3849
3868
  },
3850
3869
  "quarter-narrow": {
@@ -3854,11 +3873,11 @@
3854
3873
  "relative-type-1": "volgend kwartaal",
3855
3874
  "relativeTime-type-future": {
3856
3875
  "relativeTimePattern-count-one": "over {0} kw.",
3857
- "relativeTimePattern-count-other": "over {0} kwartalen"
3876
+ "relativeTimePattern-count-other": "over {0} kw."
3858
3877
  },
3859
3878
  "relativeTime-type-past": {
3860
- "relativeTimePattern-count-one": "{0} kwartaal geleden",
3861
- "relativeTimePattern-count-other": "{0} kwartalen geleden"
3879
+ "relativeTimePattern-count-one": "{0} kw. geleden",
3880
+ "relativeTimePattern-count-other": "{0} kw. geleden"
3862
3881
  }
3863
3882
  },
3864
3883
  "month-wide": {
@@ -4208,6 +4227,7 @@
4208
4227
  "Cayman": "Cayman",
4209
4228
  "Chicago": "Chicago",
4210
4229
  "Chihuahua": "Chihuahua",
4230
+ "Ciudad_Juarez": "Ciudad Juárez",
4211
4231
  "Costa_Rica": "Costa Rica",
4212
4232
  "Creston": "Creston",
4213
4233
  "Cuiaba": "Cuiabá",
@@ -4844,10 +4864,12 @@
4844
4864
  },
4845
4865
  "power2": {
4846
4866
  "compoundUnitPattern1": "{0}²",
4867
+ "compoundUnitPattern1-count-one": "{0}²",
4847
4868
  "compoundUnitPattern1-count-other": "{0}²"
4848
4869
  },
4849
4870
  "power3": {
4850
4871
  "compoundUnitPattern1": "{0}³",
4872
+ "compoundUnitPattern1-count-one": "{0}³",
4851
4873
  "compoundUnitPattern1-count-other": "{0}³"
4852
4874
  },
4853
4875
  "times": {
@@ -4940,6 +4962,7 @@
4940
4962
  },
4941
4963
  "area-dunam": {
4942
4964
  "displayName": "dunam",
4965
+ "unitPattern-count-one": "{0} dunam",
4943
4966
  "unitPattern-count-other": "{0} dunam"
4944
4967
  },
4945
4968
  "concentr-karat": {
@@ -4979,10 +5002,12 @@
4979
5002
  },
4980
5003
  "concentr-permyriad": {
4981
5004
  "displayName": "‱",
5005
+ "unitPattern-count-one": "{0}‱",
4982
5006
  "unitPattern-count-other": "{0}‱"
4983
5007
  },
4984
5008
  "concentr-mole": {
4985
5009
  "displayName": "mol",
5010
+ "unitPattern-count-one": "{0} mol",
4986
5011
  "unitPattern-count-other": "{0} mol"
4987
5012
  },
4988
5013
  "consumption-liter-per-kilometer": {
@@ -5066,9 +5091,9 @@
5066
5091
  "unitPattern-count-other": "{0} eeuwen"
5067
5092
  },
5068
5093
  "duration-decade": {
5069
- "displayName": "decennia",
5094
+ "displayName": "dec.",
5070
5095
  "unitPattern-count-one": "{0} dec.",
5071
- "unitPattern-count-other": "{0} decennia"
5096
+ "unitPattern-count-other": "{0} dec."
5072
5097
  },
5073
5098
  "duration-year": {
5074
5099
  "displayName": "jr",
@@ -5076,6 +5101,12 @@
5076
5101
  "unitPattern-count-other": "{0} jr",
5077
5102
  "perUnitPattern": "{0}/jr"
5078
5103
  },
5104
+ "duration-quarter": {
5105
+ "displayName": "kwart.",
5106
+ "unitPattern-count-one": "{0} kwart.",
5107
+ "unitPattern-count-other": "{0} kwart.",
5108
+ "perUnitPattern": "{0}/kw."
5109
+ },
5079
5110
  "duration-month": {
5080
5111
  "displayName": "mnd",
5081
5112
  "unitPattern-count-one": "{0} mnd",
@@ -5179,10 +5210,12 @@
5179
5210
  },
5180
5211
  "energy-electronvolt": {
5181
5212
  "displayName": "eV",
5213
+ "unitPattern-count-one": "{0} eV",
5182
5214
  "unitPattern-count-other": "{0} eV"
5183
5215
  },
5184
5216
  "energy-british-thermal-unit": {
5185
5217
  "displayName": "Btu",
5218
+ "unitPattern-count-one": "{0} Btu",
5186
5219
  "unitPattern-count-other": "{0} Btu"
5187
5220
  },
5188
5221
  "energy-therm-us": {
@@ -5192,14 +5225,17 @@
5192
5225
  },
5193
5226
  "force-pound-force": {
5194
5227
  "displayName": "lbf",
5228
+ "unitPattern-count-one": "{0} lbf",
5195
5229
  "unitPattern-count-other": "{0} lbf"
5196
5230
  },
5197
5231
  "force-newton": {
5198
5232
  "displayName": "N",
5233
+ "unitPattern-count-one": "{0} N",
5199
5234
  "unitPattern-count-other": "{0} N"
5200
5235
  },
5201
5236
  "force-kilowatt-hour-per-100-kilometer": {
5202
5237
  "displayName": "kWh/100km",
5238
+ "unitPattern-count-one": "{0} kWh/100km",
5203
5239
  "unitPattern-count-other": "{0} kWh/100km"
5204
5240
  },
5205
5241
  "frequency-gigahertz": {
@@ -5257,8 +5293,14 @@
5257
5293
  "unitPattern-count-one": "{0} dpi",
5258
5294
  "unitPattern-count-other": "{0} dpi"
5259
5295
  },
5296
+ "graphics-dot": {
5297
+ "displayName": "pixels",
5298
+ "unitPattern-count-one": "{0} px",
5299
+ "unitPattern-count-other": "{0} px"
5300
+ },
5260
5301
  "length-earth-radius": {
5261
5302
  "displayName": "R⊕",
5303
+ "unitPattern-count-one": "{0} R⊕",
5262
5304
  "unitPattern-count-other": "{0} R⊕"
5263
5305
  },
5264
5306
  "length-kilometer": {
@@ -5368,6 +5410,7 @@
5368
5410
  },
5369
5411
  "length-solar-radius": {
5370
5412
  "displayName": "R☉",
5413
+ "unitPattern-count-one": "{0} R☉",
5371
5414
  "unitPattern-count-other": "{0} R☉"
5372
5415
  },
5373
5416
  "light-lux": {
@@ -5377,17 +5420,20 @@
5377
5420
  },
5378
5421
  "light-candela": {
5379
5422
  "displayName": "cd",
5423
+ "unitPattern-count-one": "{0} cd",
5380
5424
  "unitPattern-count-other": "{0} cd"
5381
5425
  },
5382
5426
  "light-lumen": {
5383
5427
  "displayName": "lm",
5428
+ "unitPattern-count-one": "{0} lm",
5384
5429
  "unitPattern-count-other": "{0} lm"
5385
5430
  },
5386
5431
  "light-solar-luminosity": {
5387
5432
  "displayName": "L☉",
5433
+ "unitPattern-count-one": "{0} L☉",
5388
5434
  "unitPattern-count-other": "{0} L☉"
5389
5435
  },
5390
- "mass-metric-ton": {
5436
+ "mass-tonne": {
5391
5437
  "displayName": "t",
5392
5438
  "unitPattern-count-one": "{0} t",
5393
5439
  "unitPattern-count-other": "{0} t"
@@ -5448,14 +5494,17 @@
5448
5494
  },
5449
5495
  "mass-dalton": {
5450
5496
  "displayName": "Da",
5497
+ "unitPattern-count-one": "{0} Da",
5451
5498
  "unitPattern-count-other": "{0} Da"
5452
5499
  },
5453
5500
  "mass-earth-mass": {
5454
5501
  "displayName": "M⊕",
5502
+ "unitPattern-count-one": "{0} M⊕",
5455
5503
  "unitPattern-count-other": "{0} M⊕"
5456
5504
  },
5457
5505
  "mass-solar-mass": {
5458
5506
  "displayName": "M☉",
5507
+ "unitPattern-count-one": "{0} M☉",
5459
5508
  "unitPattern-count-other": "{0} M☉"
5460
5509
  },
5461
5510
  "mass-grain": {
@@ -5535,10 +5584,12 @@
5535
5584
  },
5536
5585
  "pressure-kilopascal": {
5537
5586
  "displayName": "kPa",
5587
+ "unitPattern-count-one": "{0} kPa",
5538
5588
  "unitPattern-count-other": "{0} kPa"
5539
5589
  },
5540
5590
  "pressure-megapascal": {
5541
5591
  "displayName": "MPa",
5592
+ "unitPattern-count-one": "{0} MPa",
5542
5593
  "unitPattern-count-other": "{0} MPa"
5543
5594
  },
5544
5595
  "speed-kilometer-per-hour": {
@@ -5583,6 +5634,7 @@
5583
5634
  },
5584
5635
  "torque-pound-force-foot": {
5585
5636
  "displayName": "lbf⋅ft",
5637
+ "unitPattern-count-one": "{0} lbf⋅ft",
5586
5638
  "unitPattern-count-other": "{0} lbf⋅ft"
5587
5639
  },
5588
5640
  "torque-newton-meter": {
@@ -5712,6 +5764,7 @@
5712
5764
  },
5713
5765
  "volume-fluid-ounce-imperial": {
5714
5766
  "displayName": "Imp. fl oz",
5767
+ "unitPattern-count-one": "{0} fl oz Imp.",
5715
5768
  "unitPattern-count-other": "{0} fl oz Imp."
5716
5769
  },
5717
5770
  "volume-tablespoon": {
@@ -5726,6 +5779,7 @@
5726
5779
  },
5727
5780
  "volume-barrel": {
5728
5781
  "displayName": "bbl",
5782
+ "unitPattern-count-one": "{0} bbl",
5729
5783
  "unitPattern-count-other": "{0} bbl"
5730
5784
  },
5731
5785
  "volume-dessert-spoon": {
@@ -5750,6 +5804,7 @@
5750
5804
  },
5751
5805
  "volume-jigger": {
5752
5806
  "displayName": "jigger",
5807
+ "unitPattern-count-one": "{0} jigger",
5753
5808
  "unitPattern-count-other": "{0} jigger"
5754
5809
  },
5755
5810
  "volume-pinch": {
@@ -5871,41 +5926,56 @@
5871
5926
  },
5872
5927
  "eras-gregorian": {
5873
5928
  "0": {
5929
+ "_code": "gregory-inverse",
5930
+ "_aliases": "bc bce",
5874
5931
  "_end": "0-12-31"
5875
5932
  },
5876
5933
  "1": {
5934
+ "_code": "gregory",
5935
+ "_aliases": "ad ce",
5877
5936
  "_start": "1-01-01"
5878
5937
  }
5879
5938
  },
5880
5939
  "eras-islamic": {
5881
5940
  "0": {
5941
+ "_code": "islamic",
5942
+ "_aliases": "ah",
5882
5943
  "_start": "622-7-15"
5883
5944
  }
5884
5945
  },
5885
5946
  "eras-persian": {
5886
5947
  "0": {
5948
+ "_code": "persian",
5949
+ "_aliases": "ap",
5887
5950
  "_start": "622-01-01"
5888
5951
  }
5889
5952
  },
5890
5953
  "eras-buddhist": {
5891
5954
  "0": {
5955
+ "_code": "buddhist",
5956
+ "_aliases": "be",
5892
5957
  "_start": "-542-01-01"
5893
5958
  }
5894
5959
  },
5895
5960
  "eras-japanese": {
5896
5961
  "232": {
5962
+ "_code": "meiji",
5897
5963
  "_start": "1868-9-8"
5898
5964
  },
5899
5965
  "233": {
5966
+ "_code": "taisho",
5900
5967
  "_start": "1912-7-30"
5901
5968
  },
5902
5969
  "234": {
5970
+ "_code": "showa",
5903
5971
  "_start": "1926-12-25"
5904
5972
  },
5905
5973
  "235": {
5974
+ "_code": "heisei",
5906
5975
  "_start": "1989-1-8"
5907
5976
  },
5908
5977
  "236": {
5978
+ "_code": "reiwa",
5909
5979
  "_start": "2019-5-1"
5910
5980
  }
5911
5981
  },