@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": "abcaso",
@@ -24,6 +24,7 @@
24
24
  "am": "amarico",
25
25
  "an": "aragonese",
26
26
  "ang": "inglese antico",
27
+ "ann": "obolo",
27
28
  "anp": "angika",
28
29
  "ar": "arabo",
29
30
  "ar_001": "arabo moderno standard",
@@ -40,6 +41,7 @@
40
41
  "asa": "asu",
41
42
  "ase": "lingua dei segni americana",
42
43
  "ast": "asturiano",
44
+ "atj": "atikamekw",
43
45
  "av": "avaro",
44
46
  "avk": "kotava",
45
47
  "awa": "awadhi",
@@ -108,14 +110,22 @@
108
110
  "ckb": "curdo sorani",
109
111
  "ckb_alt-menu": "curdo centrale",
110
112
  "ckb_alt-variant": "curdo sorani",
113
+ "clc": "chilcotin",
111
114
  "co": "corso",
112
115
  "cop": "copto",
113
116
  "cps": "capiznon",
114
117
  "cr": "cree",
118
+ "crg": "métchif",
115
119
  "crh": "turco crimeo",
120
+ "crj": "cree sud-orientale",
121
+ "crk": "cree delle pianure",
122
+ "crl": "cree nord-orientale",
123
+ "crm": "cree moose",
124
+ "crr": "algonchino della Carolina",
116
125
  "crs": "creolo delle Seychelles",
117
126
  "cs": "ceco",
118
127
  "csb": "kashubian",
128
+ "csw": "cree delle paludi",
119
129
  "cu": "slavo ecclesiastico",
120
130
  "cv": "ciuvascio",
121
131
  "cy": "gallese",
@@ -155,7 +165,7 @@
155
165
  "en_GB": "inglese britannico",
156
166
  "en_GB-alt-short": "inglese (GB)",
157
167
  "en_US": "inglese americano",
158
- "en_US-alt-short": "inglese americano",
168
+ "en_US-alt-short": "inglese (USA)",
159
169
  "enm": "inglese medio",
160
170
  "eo": "esperanto",
161
171
  "es": "spagnolo",
@@ -220,8 +230,10 @@
220
230
  "hai": "haida",
221
231
  "hak": "hakka",
222
232
  "haw": "hawaiano",
233
+ "hax": "haida meridionale",
223
234
  "he": "ebraico",
224
235
  "hi": "hindi",
236
+ "hi_Latn-alt-variant": "hinglish",
225
237
  "hif": "hindi figiano",
226
238
  "hil": "ilongo",
227
239
  "hit": "hittite",
@@ -233,6 +245,7 @@
233
245
  "ht": "creolo haitiano",
234
246
  "hu": "ungherese",
235
247
  "hup": "hupa",
248
+ "hur": "halkomelem",
236
249
  "hy": "armeno",
237
250
  "hz": "herero",
238
251
  "ia": "interlingua",
@@ -243,6 +256,7 @@
243
256
  "ig": "igbo",
244
257
  "ii": "sichuan yi",
245
258
  "ik": "inupiak",
259
+ "ikt": "inuktitut canadese occidentale",
246
260
  "ilo": "ilocano",
247
261
  "inh": "ingush",
248
262
  "io": "ido",
@@ -263,7 +277,7 @@
263
277
  "kaa": "kara-kalpak",
264
278
  "kab": "cabilo",
265
279
  "kac": "kachin",
266
- "kaj": "kai",
280
+ "kaj": "jju",
267
281
  "kam": "kamba",
268
282
  "kaw": "kawi",
269
283
  "kbd": "cabardino",
@@ -306,6 +320,7 @@
306
320
  "kut": "kutenai",
307
321
  "kv": "komi",
308
322
  "kw": "cornico",
323
+ "kwk": "kwakʼwala",
309
324
  "ky": "kirghiso",
310
325
  "la": "latino",
311
326
  "lad": "giudeo-spagnolo",
@@ -318,6 +333,7 @@
318
333
  "lg": "ganda",
319
334
  "li": "limburghese",
320
335
  "lij": "ligure",
336
+ "lil": "lillooet",
321
337
  "liv": "livone",
322
338
  "lkt": "lakota",
323
339
  "lmo": "lombardo",
@@ -327,6 +343,7 @@
327
343
  "lou": "creolo della Louisiana",
328
344
  "loz": "lozi",
329
345
  "lrc": "luri settentrionale",
346
+ "lsm": "samia",
330
347
  "lt": "lituano",
331
348
  "ltg": "letgallo",
332
349
  "lu": "luba-katanga",
@@ -365,6 +382,7 @@
365
382
  "mn": "mongolo",
366
383
  "mnc": "manchu",
367
384
  "mni": "manipuri",
385
+ "moe": "innu-aimun",
368
386
  "moh": "mohawk",
369
387
  "mos": "mossi",
370
388
  "mr": "marathi",
@@ -417,6 +435,11 @@
417
435
  "nzi": "nzima",
418
436
  "oc": "occitano",
419
437
  "oj": "ojibwa",
438
+ "ojb": "ojibwe nord-occidentale",
439
+ "ojc": "ojibwe centrale",
440
+ "ojs": "oji-cree",
441
+ "ojw": "ojibwe occidentale",
442
+ "oka": "okanagan",
420
443
  "om": "oromo",
421
444
  "or": "odia",
422
445
  "os": "ossetico",
@@ -435,10 +458,12 @@
435
458
  "pfl": "tedesco palatino",
436
459
  "phn": "fenicio",
437
460
  "pi": "pali",
461
+ "pis": "pijin",
438
462
  "pl": "polacco",
439
463
  "pms": "piemontese",
440
464
  "pnt": "pontico",
441
465
  "pon": "ponape",
466
+ "pqm": "malecite-passamaquoddy",
442
467
  "prg": "prussiano",
443
468
  "pro": "provenzale antico",
444
469
  "ps": "pashto",
@@ -500,6 +525,7 @@
500
525
  "sid": "sidamo",
501
526
  "sk": "slovacco",
502
527
  "sl": "sloveno",
528
+ "slh": "lushootseed meridionale",
503
529
  "sli": "tedesco slesiano",
504
530
  "sly": "selayar",
505
531
  "sm": "samoano",
@@ -519,6 +545,7 @@
519
545
  "ssy": "saho",
520
546
  "st": "sotho del sud",
521
547
  "stq": "saterfriesisch",
548
+ "str": "salish straits",
522
549
  "su": "sundanese",
523
550
  "suk": "sukuma",
524
551
  "sus": "susu",
@@ -531,6 +558,7 @@
531
558
  "syr": "siriaco",
532
559
  "szl": "slesiano",
533
560
  "ta": "tamil",
561
+ "tce": "tutchone meridionale",
534
562
  "tcy": "tulu",
535
563
  "te": "telugu",
536
564
  "tem": "temne",
@@ -538,7 +566,9 @@
538
566
  "ter": "tereno",
539
567
  "tet": "tetum",
540
568
  "tg": "tagico",
541
- "th": "thai",
569
+ "tgx": "tagish",
570
+ "th": "thailandese",
571
+ "tht": "tahltan",
542
572
  "ti": "tigrino",
543
573
  "tig": "tigre",
544
574
  "tiv": "tiv",
@@ -553,6 +583,7 @@
553
583
  "tn": "tswana",
554
584
  "to": "tongano",
555
585
  "tog": "nyasa del Tonga",
586
+ "tok": "toki pona",
556
587
  "tpi": "tok pisin",
557
588
  "tr": "turco",
558
589
  "tru": "turoyo",
@@ -561,6 +592,7 @@
561
592
  "tsd": "zaconico",
562
593
  "tsi": "tsimshian",
563
594
  "tt": "tataro",
595
+ "ttm": "tutchone settentrionale",
564
596
  "ttt": "tat islamico",
565
597
  "tum": "tumbuka",
566
598
  "tvl": "tuvalu",
@@ -626,10 +658,9 @@
626
658
  "zza": "zaza"
627
659
  },
628
660
  "scripts": {
629
- "Adlm": "Adlm",
661
+ "Adlm": "adlam",
630
662
  "Afak": "afaka",
631
663
  "Aghb": "albanese caucasico",
632
- "Ahom": "Ahom",
633
664
  "Arab": "arabo",
634
665
  "Arab-alt-variant": "arabo-persiano",
635
666
  "Aran": "nastaliq",
@@ -641,7 +672,6 @@
641
672
  "Bass": "Bassa Vah",
642
673
  "Batk": "batak",
643
674
  "Beng": "bengalese",
644
- "Bhks": "Bhks",
645
675
  "Blis": "simboli bliss",
646
676
  "Bopo": "bopomofo",
647
677
  "Brah": "brahmi",
@@ -649,33 +679,25 @@
649
679
  "Bugi": "buginese",
650
680
  "Buhd": "buhid",
651
681
  "Cakm": "chakma",
652
- "Cans": "simboli aborigeni canadesi unificati",
682
+ "Cans": "sillabario aborigeno canadese unificato",
653
683
  "Cari": "carian",
654
684
  "Cham": "cham",
655
685
  "Cher": "cherokee",
656
- "Chrs": "Chrs",
657
686
  "Cirt": "cirth",
658
687
  "Copt": "copto",
659
- "Cpmn": "Cpmn",
660
688
  "Cprt": "cipriota",
661
689
  "Cyrl": "cirillico",
662
690
  "Cyrs": "cirillico antica chiesa slavonica",
663
691
  "Deva": "devanagari",
664
- "Diak": "Diak",
665
- "Dogr": "Dogr",
666
692
  "Dsrt": "deseret",
667
693
  "Dupl": "stenografia duployan",
668
694
  "Egyd": "egiziano demotico",
669
695
  "Egyh": "ieratico egiziano",
670
696
  "Egyp": "geroglifici egiziani",
671
- "Elba": "Elba",
672
- "Elym": "Elym",
673
697
  "Ethi": "etiope",
674
698
  "Geok": "kutsuri",
675
699
  "Geor": "georgiano",
676
700
  "Glag": "glagolitico",
677
- "Gong": "Gong",
678
- "Gonm": "Gonm",
679
701
  "Goth": "gotico",
680
702
  "Gran": "grantha",
681
703
  "Grek": "greco",
@@ -689,12 +711,10 @@
689
711
  "Hans-alt-stand-alone": "han semplificato",
690
712
  "Hant": "tradizionale",
691
713
  "Hant-alt-stand-alone": "han tradizionale",
692
- "Hatr": "Hatr",
693
714
  "Hebr": "ebraico",
694
715
  "Hira": "hiragana",
695
716
  "Hluw": "geroglifici anatolici",
696
717
  "Hmng": "pahawn hmong",
697
- "Hmnp": "Hmnp",
698
718
  "Hrkt": "katanaka o hiragana",
699
719
  "Hung": "antico ungherese",
700
720
  "Inds": "indu",
@@ -705,11 +725,9 @@
705
725
  "Jurc": "jurchen",
706
726
  "Kali": "kayah li",
707
727
  "Kana": "katakana",
708
- "Kawi": "Kawi",
709
728
  "Khar": "kharoshthi",
710
729
  "Khmr": "khmer",
711
730
  "Khoj": "khojki",
712
- "Kits": "Kits",
713
731
  "Knda": "kannada",
714
732
  "Kore": "coreano",
715
733
  "Kpel": "Kpelle",
@@ -727,29 +745,20 @@
727
745
  "Loma": "loma",
728
746
  "Lyci": "lyci",
729
747
  "Lydi": "lydi",
730
- "Mahj": "Mahj",
731
- "Maka": "Maka",
732
748
  "Mand": "mandaico",
733
749
  "Mani": "manicheo",
734
- "Marc": "Marc",
735
750
  "Maya": "geroglifici maya",
736
- "Medf": "Medf",
737
751
  "Mend": "mende",
738
752
  "Merc": "corsivo meroitico",
739
753
  "Mero": "meroitico",
740
754
  "Mlym": "malayalam",
741
- "Modi": "Modi",
742
755
  "Mong": "mongolo",
743
756
  "Moon": "moon",
744
757
  "Mroo": "mro",
745
758
  "Mtei": "meetei mayek",
746
- "Mult": "Mult",
747
759
  "Mymr": "birmano",
748
- "Nagm": "Nagm",
749
- "Nand": "Nand",
750
760
  "Narb": "arabo settentrionale antico",
751
761
  "Nbat": "nabateo",
752
- "Newa": "Newa",
753
762
  "Nkgb": "geba naxi",
754
763
  "Nkoo": "n’ko",
755
764
  "Nshu": "nushu",
@@ -757,11 +766,8 @@
757
766
  "Olck": "ol chiki",
758
767
  "Orkh": "orkhon",
759
768
  "Orya": "oriya",
760
- "Osge": "Osge",
761
769
  "Osma": "osmanya",
762
- "Ougr": "Ougr",
763
770
  "Palm": "palmireno",
764
- "Pauc": "Pauc",
765
771
  "Perm": "permico antico",
766
772
  "Phag": "phags-pa",
767
773
  "Phli": "pahlavi delle iscrizioni",
@@ -772,7 +778,7 @@
772
778
  "Prti": "partico delle iscrizioni",
773
779
  "Qaag": "zawgyi",
774
780
  "Rjng": "rejang",
775
- "Rohg": "Rohg",
781
+ "Rohg": "hanifi",
776
782
  "Roro": "rongorongo",
777
783
  "Runr": "runico",
778
784
  "Samr": "samaritano",
@@ -782,16 +788,12 @@
782
788
  "Sgnw": "linguaggio dei segni",
783
789
  "Shaw": "shaviano",
784
790
  "Shrd": "sharada",
785
- "Sidd": "Sidd",
786
791
  "Sind": "khudawadi",
787
792
  "Sinh": "singalese",
788
- "Sogd": "Sogd",
789
- "Sogo": "Sogo",
790
793
  "Sora": "sora sompeng",
791
- "Soyo": "Soyo",
792
794
  "Sund": "sundanese",
793
795
  "Sylo": "syloti nagri",
794
- "Syrc": "siriano",
796
+ "Syrc": "siriaco",
795
797
  "Syre": "siriaco estrangelo",
796
798
  "Syrj": "siriaco occidentale",
797
799
  "Syrn": "siriaco orientale",
@@ -810,20 +812,14 @@
810
812
  "Thai": "thailandese",
811
813
  "Tibt": "tibetano",
812
814
  "Tirh": "tirhuta",
813
- "Tnsa": "Tnsa",
814
- "Toto": "Toto",
815
815
  "Ugar": "ugarita",
816
- "Vaii": "vaii",
816
+ "Vaii": "vai",
817
817
  "Visp": "alfabeto visivo",
818
- "Vith": "Vith",
819
818
  "Wara": "varang kshiti",
820
- "Wcho": "Wcho",
821
819
  "Wole": "woleai",
822
820
  "Xpeo": "persiano antico",
823
821
  "Xsux": "sumero-accadiano cuneiforme",
824
- "Yezi": "Yezi",
825
822
  "Yiii": "yi",
826
- "Zanb": "Zanb",
827
823
  "Zinh": "ereditato",
828
824
  "Zmth": "notazione matematica",
829
825
  "Zsye": "emoji",
@@ -955,7 +951,7 @@
955
951
  "GB-alt-short": "UK",
956
952
  "GD": "Grenada",
957
953
  "GE": "Georgia",
958
- "GF": "Guyana francese",
954
+ "GF": "Guyana Francese",
959
955
  "GG": "Guernsey",
960
956
  "GH": "Ghana",
961
957
  "GI": "Gibilterra",
@@ -965,7 +961,7 @@
965
961
  "GP": "Guadalupa",
966
962
  "GQ": "Guinea Equatoriale",
967
963
  "GR": "Grecia",
968
- "GS": "Georgia del Sud e Sandwich australi",
964
+ "GS": "Georgia del Sud e Sandwich Australi",
969
965
  "GT": "Guatemala",
970
966
  "GU": "Guam",
971
967
  "GW": "Guinea-Bissau",
@@ -1050,8 +1046,9 @@
1050
1046
  "NR": "Nauru",
1051
1047
  "NU": "Niue",
1052
1048
  "NZ": "Nuova Zelanda",
1049
+ "NZ-alt-variant": "Nuova Zelanda (Aotearoa)",
1053
1050
  "OM": "Oman",
1054
- "PA": "Panamá",
1051
+ "PA": "Panama",
1055
1052
  "PE": "Perù",
1056
1053
  "PF": "Polinesia francese",
1057
1054
  "PG": "Papua Nuova Guinea",
@@ -1093,7 +1090,7 @@
1093
1090
  "SV": "El Salvador",
1094
1091
  "SX": "Sint Maarten",
1095
1092
  "SY": "Siria",
1096
- "SZ": "Swaziland",
1093
+ "SZ": "eSwatini",
1097
1094
  "SZ-alt-variant": "Regno di eSwatini",
1098
1095
  "TA": "Tristan da Cunha",
1099
1096
  "TC": "Isole Turks e Caicos",
@@ -1109,13 +1106,14 @@
1109
1106
  "TN": "Tunisia",
1110
1107
  "TO": "Tonga",
1111
1108
  "TR": "Turchia",
1109
+ "TR-alt-variant": "Türkiye",
1112
1110
  "TT": "Trinidad e Tobago",
1113
1111
  "TV": "Tuvalu",
1114
1112
  "TW": "Taiwan",
1115
1113
  "TZ": "Tanzania",
1116
1114
  "UA": "Ucraina",
1117
1115
  "UG": "Uganda",
1118
- "UM": "Altre isole americane del Pacifico",
1116
+ "UM": "Isole Minori Esterne degli Stati Uniti",
1119
1117
  "UN": "Nazioni Unite",
1120
1118
  "UN-alt-short": "ONU",
1121
1119
  "US": "Stati Uniti",
@@ -1169,24 +1167,24 @@
1169
1167
  "EBhm": "E h:mm B",
1170
1168
  "EBhms": "E h:mm:ss B",
1171
1169
  "Ed": "E d",
1172
- "Ehm": "E h:mm a",
1170
+ "Ehm": "E h:mma",
1173
1171
  "EHm": "E HH:mm",
1174
- "Ehms": "E h:mm:ss a",
1172
+ "Ehms": "E h:mm:ssa",
1175
1173
  "EHms": "E HH:mm:ss",
1176
1174
  "Gy": "y G",
1177
1175
  "GyMd": "d/M/y GGGGG",
1178
1176
  "GyMMM": "MMM y G",
1179
1177
  "GyMMMd": "d MMM y G",
1180
1178
  "GyMMMEd": "E d MMM y G",
1181
- "h": "h a",
1179
+ "h": "ha",
1182
1180
  "H": "HH",
1183
- "hm": "h:mm a",
1181
+ "hm": "h:mma",
1184
1182
  "Hm": "HH:mm",
1185
- "hms": "h:mm:ss a",
1183
+ "hms": "h:mm:ssa",
1186
1184
  "Hms": "HH:mm:ss",
1187
- "hmsv": "h:mm:ss a v",
1185
+ "hmsv": "h:mm:ssa v",
1188
1186
  "Hmsv": "HH:mm:ss v",
1189
- "hmv": "h:mm a v",
1187
+ "hmv": "h:mma v",
1190
1188
  "Hmv": "HH:mm v",
1191
1189
  "M": "L",
1192
1190
  "Md": "d/M",
@@ -1223,85 +1221,85 @@
1223
1221
  "Year": "{1} {0}"
1224
1222
  },
1225
1223
  "intervalFormats": {
1226
- "intervalFormatFallback": "{0} - {1}",
1224
+ "intervalFormatFallback": "{0} – {1}",
1227
1225
  "Bh": {
1228
- "B": "h B h B",
1229
- "h": "h h B"
1226
+ "B": "h Bh B",
1227
+ "h": "hh B"
1230
1228
  },
1231
1229
  "Bhm": {
1232
- "B": "h:mm B h:mm B",
1233
- "h": "h:mm h:mm B",
1234
- "m": "h:mm h:mm B"
1230
+ "B": "h:mm Bh:mm B",
1231
+ "h": "h:mmh:mm B",
1232
+ "m": "h:mmh:mm B"
1235
1233
  },
1236
1234
  "d": {
1237
1235
  "d": "d–d"
1238
1236
  },
1239
1237
  "Gy": {
1240
- "G": "y G y G",
1241
- "y": "y y G"
1238
+ "G": "y Gy G",
1239
+ "y": "yy G"
1242
1240
  },
1243
1241
  "GyM": {
1244
- "G": "M/y GGGGG M/y GGGGG",
1245
- "M": "M/y M/y GGGGG",
1246
- "y": "M/y M/y GGGGG"
1242
+ "G": "M/y GGGGGM/y GGGGG",
1243
+ "M": "M/yM/y GGGGG",
1244
+ "y": "M/yM/y GGGGG"
1247
1245
  },
1248
1246
  "GyMd": {
1249
- "d": "d/M/y d/M/y GGGGG",
1250
- "G": "d/M/y GGGGG d/M/y GGGGG",
1251
- "M": "d/M/y d/M/y GGGGG",
1252
- "y": "d/M/y d/M/y GGGGG"
1247
+ "d": "d/M/yd/M/y GGGGG",
1248
+ "G": "d/M/y GGGGGd/M/y GGGGG",
1249
+ "M": "d/M/yd/M/y GGGGG",
1250
+ "y": "d/M/yd/M/y GGGGG"
1253
1251
  },
1254
1252
  "GyMEd": {
1255
- "d": "E d/M/y E d/M/y GGGGG",
1256
- "G": "E d/M/y E d/M/y GGGGG",
1257
- "M": "E d/M/y E d/M/y GGGGG",
1258
- "y": "E d/M/y E d/M/y GGGGG"
1253
+ "d": "E d/M/yE d/M/y GGGGG",
1254
+ "G": "E d/M/yE d/M/y GGGGG",
1255
+ "M": "E d/M/yE d/M/y GGGGG",
1256
+ "y": "E d/M/yE d/M/y GGGGG"
1259
1257
  },
1260
1258
  "GyMMM": {
1261
- "G": "MMM y G MMM y G",
1262
- "M": "MMM MMM y G",
1263
- "y": "MMM y MMM y G"
1259
+ "G": "MMM y GMMM y G",
1260
+ "M": "MMMMMM y G",
1261
+ "y": "MMM yMMM y G"
1264
1262
  },
1265
1263
  "GyMMMd": {
1266
- "d": "d d MMM y G",
1267
- "G": "d MMM y G d MMM y G",
1268
- "M": "d MMM d MMM y G",
1269
- "y": "d MMM y d MMM y G"
1264
+ "d": "dd MMM y G",
1265
+ "G": "d MMM y Gd MMM y G",
1266
+ "M": "d MMMd MMM y G",
1267
+ "y": "d MMM yd MMM y G"
1270
1268
  },
1271
1269
  "GyMMMEd": {
1272
- "d": "E d MMM E d MMM y G",
1273
- "G": "E d MMM y G E d MMM y G",
1274
- "M": "E d MMM E d MMM y G",
1275
- "y": "E d MMM y E d MMM y G"
1270
+ "d": "E d MMME d MMM y G",
1271
+ "G": "E d MMM y GE d MMM y G",
1272
+ "M": "E d MMME d MMM y G",
1273
+ "y": "E d MMM yE d MMM y G"
1276
1274
  },
1277
1275
  "h": {
1278
- "a": "h a h a",
1279
- "h": "h–h a"
1276
+ "a": "haha",
1277
+ "h": "h–ha"
1280
1278
  },
1281
1279
  "H": {
1282
1280
  "H": "HH–HH"
1283
1281
  },
1284
1282
  "hm": {
1285
- "a": "h:mm a h:mm a",
1286
- "h": "h:mm–h:mm a",
1287
- "m": "h:mm–h:mm a"
1283
+ "a": "h:mmah:mma",
1284
+ "h": "h:mm–h:mma",
1285
+ "m": "h:mm–h:mma"
1288
1286
  },
1289
1287
  "Hm": {
1290
1288
  "H": "HH:mm–HH:mm",
1291
1289
  "m": "HH:mm–HH:mm"
1292
1290
  },
1293
1291
  "hmv": {
1294
- "a": "h:mm a h:mm a v",
1295
- "h": "h:mm–h:mm a v",
1296
- "m": "h:mm–h:mm a v"
1292
+ "a": "h:mmah:mma v",
1293
+ "h": "h:mm–h:mma v",
1294
+ "m": "h:mm–h:mma v"
1297
1295
  },
1298
1296
  "Hmv": {
1299
1297
  "H": "HH:mm–HH:mm v",
1300
1298
  "m": "HH:mm–HH:mm v"
1301
1299
  },
1302
1300
  "hv": {
1303
- "a": "h a h a v",
1304
- "h": "h–h a v"
1301
+ "a": "haha v",
1302
+ "h": "h–ha v"
1305
1303
  },
1306
1304
  "Hv": {
1307
1305
  "H": "HH–HH v"
@@ -1310,58 +1308,58 @@
1310
1308
  "M": "M–M"
1311
1309
  },
1312
1310
  "Md": {
1313
- "d": "dd/MM dd/MM",
1314
- "M": "dd/MM dd/MM"
1311
+ "d": "dd/MMdd/MM",
1312
+ "M": "dd/MMdd/MM"
1315
1313
  },
1316
1314
  "MEd": {
1317
- "d": "E dd/MM E dd/MM",
1318
- "M": "E dd/MM E dd/MM"
1315
+ "d": "E dd/MME dd/MM",
1316
+ "M": "E dd/MME dd/MM"
1319
1317
  },
1320
1318
  "MMM": {
1321
1319
  "M": "MMM–MMM"
1322
1320
  },
1323
1321
  "MMMd": {
1324
1322
  "d": "dd–dd MMM",
1325
- "M": "dd MMM dd MMM"
1323
+ "M": "dd MMMdd MMM"
1326
1324
  },
1327
1325
  "MMMEd": {
1328
- "d": "E dd E dd MMM",
1329
- "M": "E dd MMM E dd MMM"
1326
+ "d": "E ddE dd MMM",
1327
+ "M": "E dd MMME dd MMM"
1330
1328
  },
1331
1329
  "y": {
1332
1330
  "y": "y–y"
1333
1331
  },
1334
1332
  "yM": {
1335
- "M": "MM/y MM/y",
1336
- "y": "MM/y MM/y"
1333
+ "M": "MM/yMM/y",
1334
+ "y": "MM/yMM/y"
1337
1335
  },
1338
1336
  "yMd": {
1339
- "d": "dd/MM/y dd/MM/y",
1340
- "M": "dd/MM/y dd/MM/y",
1341
- "y": "dd/MM/y dd/MM/y"
1337
+ "d": "dd/MM/ydd/MM/y",
1338
+ "M": "dd/MM/ydd/MM/y",
1339
+ "y": "dd/MM/ydd/MM/y"
1342
1340
  },
1343
1341
  "yMEd": {
1344
- "d": "E dd/MM/y E dd/MM/y",
1345
- "M": "E dd/MM/y E dd/MM/y",
1346
- "y": "E dd/MM/y E dd/MM/y"
1342
+ "d": "E dd/MM/yE dd/MM/y",
1343
+ "M": "E dd/MM/yE dd/MM/y",
1344
+ "y": "E dd/MM/yE dd/MM/y"
1347
1345
  },
1348
1346
  "yMMM": {
1349
1347
  "M": "MMM–MMM y",
1350
- "y": "MMM y MMM y"
1348
+ "y": "MMM yMMM y"
1351
1349
  },
1352
1350
  "yMMMd": {
1353
1351
  "d": "dd–dd MMM y",
1354
- "M": "dd MMM dd MMM y",
1355
- "y": "dd MMM y dd MMM y"
1352
+ "M": "dd MMMdd MMM y",
1353
+ "y": "dd MMM ydd MMM y"
1356
1354
  },
1357
1355
  "yMMMEd": {
1358
- "d": "E d E d MMM y",
1359
- "M": "E d MMM E d MMM y",
1360
- "y": "E d MMM y E d MMM y"
1356
+ "d": "E dE d MMM y",
1357
+ "M": "E d MMME d MMM y",
1358
+ "y": "E d MMM yE d MMM y"
1361
1359
  },
1362
1360
  "yMMMM": {
1363
1361
  "M": "MMMM–MMMM y",
1364
- "y": "MMMM y MMMM y"
1362
+ "y": "MMMM yMMMM y"
1365
1363
  }
1366
1364
  }
1367
1365
  },
@@ -1686,8 +1684,8 @@
1686
1684
  "short": "HH:mm"
1687
1685
  },
1688
1686
  "dateTimeFormats": {
1689
- "full": "{1} 'alle' {0}",
1690
- "long": "{1} 'alle' {0}",
1687
+ "full": "{1}, {0}",
1688
+ "long": "{1}, {0}",
1691
1689
  "medium": "{1}, {0}",
1692
1690
  "short": "{1}, {0}",
1693
1691
  "availableFormats": {
@@ -1699,20 +1697,20 @@
1699
1697
  "EBhm": "E h:mm B",
1700
1698
  "EBhms": "E h:mm:ss B",
1701
1699
  "Ed": "E d",
1702
- "Ehm": "E h:mm a",
1700
+ "Ehm": "E h:mma",
1703
1701
  "EHm": "E HH:mm",
1704
- "Ehms": "E h:mm:ss a",
1702
+ "Ehms": "E h:mm:ssa",
1705
1703
  "EHms": "E HH:mm:ss",
1706
1704
  "Gy": "y G",
1707
1705
  "GyMd": "d/M/y GGGGG",
1708
1706
  "GyMMM": "MMM y G",
1709
1707
  "GyMMMd": "d MMM y G",
1710
1708
  "GyMMMEd": "E d MMM y G",
1711
- "h": "hh a",
1709
+ "h": "hha",
1712
1710
  "H": "HH",
1713
- "hm": "hh:mm a",
1711
+ "hm": "hh:mma",
1714
1712
  "Hm": "HH:mm",
1715
- "hms": "hh:mm:ss a",
1713
+ "hms": "hh:mm:ssa",
1716
1714
  "Hms": "HH:mm:ss",
1717
1715
  "M": "L",
1718
1716
  "Md": "d/M",
@@ -1748,85 +1746,85 @@
1748
1746
  "Year": "{1} {0}"
1749
1747
  },
1750
1748
  "intervalFormats": {
1751
- "intervalFormatFallback": "{0} - {1}",
1749
+ "intervalFormatFallback": "{0} – {1}",
1752
1750
  "Bh": {
1753
- "B": "h B h B",
1754
- "h": "h h B"
1751
+ "B": "h Bh B",
1752
+ "h": "hh B"
1755
1753
  },
1756
1754
  "Bhm": {
1757
- "B": "h:mm B h:mm B",
1758
- "h": "h:mm h:mm B",
1759
- "m": "h:mm h:mm B"
1755
+ "B": "h:mm Bh:mm B",
1756
+ "h": "h:mmh:mm B",
1757
+ "m": "h:mmh:mm B"
1760
1758
  },
1761
1759
  "d": {
1762
1760
  "d": "d–d"
1763
1761
  },
1764
1762
  "Gy": {
1765
- "G": "G y G y",
1763
+ "G": "G yG y",
1766
1764
  "y": "G y–y"
1767
1765
  },
1768
1766
  "GyM": {
1769
- "G": "GGGGG y-MM GGGGG y-MM",
1770
- "M": "M/y M/y GGGGG",
1771
- "y": "M/y M/y GGGGG"
1767
+ "G": "GGGGG y-MMGGGGG y-MM",
1768
+ "M": "M/yM/y GGGGG",
1769
+ "y": "M/yM/y GGGGG"
1772
1770
  },
1773
1771
  "GyMd": {
1774
- "d": "d/M/y d/M/y GGGGG",
1775
- "G": "d/M/y GGGGG d/M/y GGGGG",
1776
- "M": "d/M/y d/M/y GGGGG",
1777
- "y": "d/M/y d/M/y GGGGG"
1772
+ "d": "d/M/yd/M/y GGGGG",
1773
+ "G": "d/M/y GGGGGd/M/y GGGGG",
1774
+ "M": "d/M/yd/M/y GGGGG",
1775
+ "y": "d/M/yd/M/y GGGGG"
1778
1776
  },
1779
1777
  "GyMEd": {
1780
- "d": "E, d/M/y E, d/M/y GGGGG",
1781
- "G": "E, d/M/y E, d/M/y GGGGG",
1782
- "M": "E, d/M/y E, d/M/y GGGGG",
1783
- "y": "E d/M/y E d/M/y GGGGG"
1778
+ "d": "E, d/M/yE, d/M/y GGGGG",
1779
+ "G": "E, d/M/yE, d/M/y GGGGG",
1780
+ "M": "E, d/M/yE, d/M/y GGGGG",
1781
+ "y": "E d/M/yE d/M/y GGGGG"
1784
1782
  },
1785
1783
  "GyMMM": {
1786
- "G": "MMM y G MMM y G",
1787
- "M": "MMM MMM y G",
1788
- "y": "MMM y MMM y G"
1784
+ "G": "MMM y GMMM y G",
1785
+ "M": "MMMMMM y G",
1786
+ "y": "MMM yMMM y G"
1789
1787
  },
1790
1788
  "GyMMMd": {
1791
- "d": "d d MMM y G",
1792
- "G": "d MMM y G d MMM y G",
1793
- "M": "d MMM d MMM y G",
1794
- "y": "d MMM y d MMM y G"
1789
+ "d": "dd MMM y G",
1790
+ "G": "d MMM y Gd MMM y G",
1791
+ "M": "d MMMd MMM y G",
1792
+ "y": "d MMM yd MMM y G"
1795
1793
  },
1796
1794
  "GyMMMEd": {
1797
- "d": "E d MMM E d MMM y G",
1798
- "G": "E d MMM y G E d MMM y G",
1799
- "M": "E d MMM E d MMM y G",
1800
- "y": "E d MMM y E d MMM y G"
1795
+ "d": "E d MMME d MMM y G",
1796
+ "G": "E d MMM y GE d MMM y G",
1797
+ "M": "E d MMME d MMM y G",
1798
+ "y": "E d MMM yE d MMM y G"
1801
1799
  },
1802
1800
  "h": {
1803
- "a": "h a h a",
1804
- "h": "h–h a"
1801
+ "a": "haha",
1802
+ "h": "h–ha"
1805
1803
  },
1806
1804
  "H": {
1807
1805
  "H": "HH–HH"
1808
1806
  },
1809
1807
  "hm": {
1810
- "a": "h:mm a h:mm a",
1811
- "h": "h:mm–h:mm a",
1812
- "m": "h:mm–h:mm a"
1808
+ "a": "h:mmah:mma",
1809
+ "h": "h:mm–h:mma",
1810
+ "m": "h:mm–h:mma"
1813
1811
  },
1814
1812
  "Hm": {
1815
1813
  "H": "HH:mm–HH:mm",
1816
1814
  "m": "HH:mm–HH:mm"
1817
1815
  },
1818
1816
  "hmv": {
1819
- "a": "h:mm a h:mm a v",
1820
- "h": "h:mm–h:mm a v",
1821
- "m": "h:mm–h:mm a v"
1817
+ "a": "h:mmah:mma v",
1818
+ "h": "h:mm–h:mma v",
1819
+ "m": "h:mm–h:mma v"
1822
1820
  },
1823
1821
  "Hmv": {
1824
1822
  "H": "HH:mm–HH:mm v",
1825
1823
  "m": "HH:mm–HH:mm v"
1826
1824
  },
1827
1825
  "hv": {
1828
- "a": "h a h a v",
1829
- "h": "h–h a v"
1826
+ "a": "haha v",
1827
+ "h": "h–ha v"
1830
1828
  },
1831
1829
  "Hv": {
1832
1830
  "H": "HH–HH v"
@@ -1835,58 +1833,58 @@
1835
1833
  "M": "M–M"
1836
1834
  },
1837
1835
  "Md": {
1838
- "d": "dd/MM dd/MM",
1839
- "M": "dd/MM dd/MM"
1836
+ "d": "dd/MMdd/MM",
1837
+ "M": "dd/MMdd/MM"
1840
1838
  },
1841
1839
  "MEd": {
1842
- "d": "E dd/MM E dd/MM",
1843
- "M": "E dd/MM E dd/MM"
1840
+ "d": "E dd/MME dd/MM",
1841
+ "M": "E dd/MME dd/MM"
1844
1842
  },
1845
1843
  "MMM": {
1846
1844
  "M": "MMM–MMM"
1847
1845
  },
1848
1846
  "MMMd": {
1849
1847
  "d": "dd–dd MMM",
1850
- "M": "dd MMM dd MMM"
1848
+ "M": "dd MMMdd MMM"
1851
1849
  },
1852
1850
  "MMMEd": {
1853
- "d": "E dd E dd MMM",
1854
- "M": "E dd MMM E dd MMM"
1851
+ "d": "E ddE dd MMM",
1852
+ "M": "E dd MMME dd MMM"
1855
1853
  },
1856
1854
  "y": {
1857
1855
  "y": "y–y G"
1858
1856
  },
1859
1857
  "yM": {
1860
- "M": "MM/y MM/y G",
1861
- "y": "MM/y MM/y G"
1858
+ "M": "MM/yMM/y G",
1859
+ "y": "MM/yMM/y G"
1862
1860
  },
1863
1861
  "yMd": {
1864
- "d": "dd/MM/y dd/MM/y G",
1865
- "M": "dd/MM/y dd/MM/y G",
1866
- "y": "dd/MM/y dd/MM/y G"
1862
+ "d": "dd/MM/ydd/MM/y G",
1863
+ "M": "dd/MM/ydd/MM/y G",
1864
+ "y": "dd/MM/ydd/MM/y G"
1867
1865
  },
1868
1866
  "yMEd": {
1869
- "d": "E dd/MM/y E dd/MM/y G",
1870
- "M": "E dd/MM/y E dd/MM/y G",
1871
- "y": "E dd/MM/y E dd/MM/y G"
1867
+ "d": "E dd/MM/yE dd/MM/y G",
1868
+ "M": "E dd/MM/yE dd/MM/y G",
1869
+ "y": "E dd/MM/yE dd/MM/y G"
1872
1870
  },
1873
1871
  "yMMM": {
1874
1872
  "M": "MMM–MMM y G",
1875
- "y": "MMM y MMM y G"
1873
+ "y": "MMM yMMM y G"
1876
1874
  },
1877
1875
  "yMMMd": {
1878
1876
  "d": "dd–dd MMM y G",
1879
- "M": "dd MMM dd MMM y G",
1880
- "y": "dd MMM y dd MMM y G"
1877
+ "M": "dd MMMdd MMM y G",
1878
+ "y": "dd MMM ydd MMM y G"
1881
1879
  },
1882
1880
  "yMMMEd": {
1883
- "d": "E d E d MMM y G",
1884
- "M": "E d MMM E d MMM y G",
1885
- "y": "E d MMM y E d MMM y G"
1881
+ "d": "E dE d MMM y G",
1882
+ "M": "E d MMME d MMM y G",
1883
+ "y": "E d MMM yE d MMM y G"
1886
1884
  },
1887
1885
  "yMMMM": {
1888
1886
  "M": "MMMM–MMMM y G",
1889
- "y": "MMMM y MMMM y G"
1887
+ "y": "MMMM yMMMM y G"
1890
1888
  }
1891
1889
  }
1892
1890
  },
@@ -2208,8 +2206,8 @@
2208
2206
  "short": "HH:mm"
2209
2207
  },
2210
2208
  "dateTimeFormats": {
2211
- "full": "{1} 'alle' {0}",
2212
- "long": "{1} 'alle' {0}",
2209
+ "full": "{1}, {0}",
2210
+ "long": "{1}, {0}",
2213
2211
  "medium": "{1}, {0}",
2214
2212
  "short": "{1}, {0}",
2215
2213
  "availableFormats": {
@@ -2221,20 +2219,20 @@
2221
2219
  "EBhm": "E h:mm B",
2222
2220
  "EBhms": "E h:mm:ss B",
2223
2221
  "Ed": "E d",
2224
- "Ehm": "E h:mm a",
2222
+ "Ehm": "E h:mma",
2225
2223
  "EHm": "E HH:mm",
2226
- "Ehms": "E h:mm:ss a",
2224
+ "Ehms": "E h:mm:ssa",
2227
2225
  "EHms": "E HH:mm:ss",
2228
2226
  "Gy": "y G",
2229
2227
  "GyMd": "d/M/y GGGGG",
2230
2228
  "GyMMM": "MMM y G",
2231
2229
  "GyMMMd": "d MMM y G",
2232
2230
  "GyMMMEd": "E d MMM y G",
2233
- "h": "hh a",
2231
+ "h": "hha",
2234
2232
  "H": "HH",
2235
- "hm": "hh:mm a",
2233
+ "hm": "hh:mma",
2236
2234
  "Hm": "HH:mm",
2237
- "hms": "hh:mm:ss a",
2235
+ "hms": "hh:mm:ssa",
2238
2236
  "Hms": "HH:mm:ss",
2239
2237
  "M": "L",
2240
2238
  "Md": "d/M",
@@ -2270,85 +2268,85 @@
2270
2268
  "Year": "{1} {0}"
2271
2269
  },
2272
2270
  "intervalFormats": {
2273
- "intervalFormatFallback": "{0} - {1}",
2271
+ "intervalFormatFallback": "{0} – {1}",
2274
2272
  "Bh": {
2275
- "B": "h B h B",
2276
- "h": "h h B"
2273
+ "B": "h Bh B",
2274
+ "h": "hh B"
2277
2275
  },
2278
2276
  "Bhm": {
2279
- "B": "h:mm B h:mm B",
2280
- "h": "h:mm h:mm B",
2281
- "m": "h:mm h:mm B"
2277
+ "B": "h:mm Bh:mm B",
2278
+ "h": "h:mmh:mm B",
2279
+ "m": "h:mmh:mm B"
2282
2280
  },
2283
2281
  "d": {
2284
2282
  "d": "d–d"
2285
2283
  },
2286
2284
  "Gy": {
2287
- "G": "G y G y",
2285
+ "G": "G yG y",
2288
2286
  "y": "G y–y"
2289
2287
  },
2290
2288
  "GyM": {
2291
- "G": "GGGGG y-MM GGGGG y-MM",
2292
- "M": "M/y M/y GGGGG",
2293
- "y": "M/y M/y GGGGG"
2289
+ "G": "GGGGG y-MMGGGGG y-MM",
2290
+ "M": "M/yM/y GGGGG",
2291
+ "y": "M/yM/y GGGGG"
2294
2292
  },
2295
2293
  "GyMd": {
2296
- "d": "d/M/y d/M/y GGGGG",
2297
- "G": "d/M/y GGGGG d/M/y GGGGG",
2298
- "M": "d/M/y d/M/y GGGGG",
2299
- "y": "d/M/y d/M/y GGGGG"
2294
+ "d": "d/M/yd/M/y GGGGG",
2295
+ "G": "d/M/y GGGGGd/M/y GGGGG",
2296
+ "M": "d/M/yd/M/y GGGGG",
2297
+ "y": "d/M/yd/M/y GGGGG"
2300
2298
  },
2301
2299
  "GyMEd": {
2302
- "d": "E, d/M/y E, d/M/y GGGGG",
2303
- "G": "E, d/M/y E, d/M/y GGGGG",
2304
- "M": "E, d/M/y E, d/M/y GGGGG",
2305
- "y": "E d/M/y E d/M/y GGGGG"
2300
+ "d": "E, d/M/yE, d/M/y GGGGG",
2301
+ "G": "E, d/M/yE, d/M/y GGGGG",
2302
+ "M": "E, d/M/yE, d/M/y GGGGG",
2303
+ "y": "E d/M/yE d/M/y GGGGG"
2306
2304
  },
2307
2305
  "GyMMM": {
2308
- "G": "MMM y G MMM y G",
2309
- "M": "MMM MMM y G",
2310
- "y": "MMM y MMM y G"
2306
+ "G": "MMM y GMMM y G",
2307
+ "M": "MMMMMM y G",
2308
+ "y": "MMM yMMM y G"
2311
2309
  },
2312
2310
  "GyMMMd": {
2313
- "d": "d d MMM y G",
2314
- "G": "d MMM y G d MMM y G",
2315
- "M": "d MMM d MMM y G",
2316
- "y": "d MMM y d MMM y G"
2311
+ "d": "dd MMM y G",
2312
+ "G": "d MMM y Gd MMM y G",
2313
+ "M": "d MMMd MMM y G",
2314
+ "y": "d MMM yd MMM y G"
2317
2315
  },
2318
2316
  "GyMMMEd": {
2319
- "d": "E d MMM E d MMM y G",
2320
- "G": "E d MMM y G E d MMM y G",
2321
- "M": "E d MMM E d MMM y G",
2322
- "y": "E d MMM y E d MMM y G"
2317
+ "d": "E d MMME d MMM y G",
2318
+ "G": "E d MMM y GE d MMM y G",
2319
+ "M": "E d MMME d MMM y G",
2320
+ "y": "E d MMM yE d MMM y G"
2323
2321
  },
2324
2322
  "h": {
2325
- "a": "h a h a",
2326
- "h": "h–h a"
2323
+ "a": "haha",
2324
+ "h": "h–ha"
2327
2325
  },
2328
2326
  "H": {
2329
2327
  "H": "HH–HH"
2330
2328
  },
2331
2329
  "hm": {
2332
- "a": "h:mm a h:mm a",
2333
- "h": "h:mm–h:mm a",
2334
- "m": "h:mm–h:mm a"
2330
+ "a": "h:mmah:mma",
2331
+ "h": "h:mm–h:mma",
2332
+ "m": "h:mm–h:mma"
2335
2333
  },
2336
2334
  "Hm": {
2337
2335
  "H": "HH:mm–HH:mm",
2338
2336
  "m": "HH:mm–HH:mm"
2339
2337
  },
2340
2338
  "hmv": {
2341
- "a": "h:mm a h:mm a v",
2342
- "h": "h:mm–h:mm a v",
2343
- "m": "h:mm–h:mm a v"
2339
+ "a": "h:mmah:mma v",
2340
+ "h": "h:mm–h:mma v",
2341
+ "m": "h:mm–h:mma v"
2344
2342
  },
2345
2343
  "Hmv": {
2346
2344
  "H": "HH:mm–HH:mm v",
2347
2345
  "m": "HH:mm–HH:mm v"
2348
2346
  },
2349
2347
  "hv": {
2350
- "a": "h a h a v",
2351
- "h": "h–h a v"
2348
+ "a": "haha v",
2349
+ "h": "h–ha v"
2352
2350
  },
2353
2351
  "Hv": {
2354
2352
  "H": "HH–HH v"
@@ -2357,66 +2355,66 @@
2357
2355
  "M": "M–M"
2358
2356
  },
2359
2357
  "Md": {
2360
- "d": "dd/MM dd/MM",
2361
- "M": "dd/MM dd/MM"
2358
+ "d": "dd/MMdd/MM",
2359
+ "M": "dd/MMdd/MM"
2362
2360
  },
2363
2361
  "MEd": {
2364
- "d": "E dd/MM E dd/MM",
2365
- "M": "E dd/MM E dd/MM"
2362
+ "d": "E dd/MME dd/MM",
2363
+ "M": "E dd/MME dd/MM"
2366
2364
  },
2367
2365
  "MMM": {
2368
2366
  "M": "MMM–MMM"
2369
2367
  },
2370
2368
  "MMMd": {
2371
2369
  "d": "dd–dd MMM",
2372
- "M": "dd MMM dd MMM"
2370
+ "M": "dd MMMdd MMM"
2373
2371
  },
2374
2372
  "MMMEd": {
2375
- "d": "E dd E dd MMM",
2376
- "M": "E dd MMM E dd MMM"
2373
+ "d": "E ddE dd MMM",
2374
+ "M": "E dd MMME dd MMM"
2377
2375
  },
2378
2376
  "y": {
2379
2377
  "y": "y–y G",
2380
2378
  "G": "y G–y G"
2381
2379
  },
2382
2380
  "yM": {
2383
- "M": "MM/y MM/y G",
2384
- "y": "MM/y MM/y G",
2385
- "G": "MM/y G MM/y G"
2381
+ "M": "MM/yMM/y G",
2382
+ "y": "MM/yMM/y G",
2383
+ "G": "MM/y GMM/y G"
2386
2384
  },
2387
2385
  "yMd": {
2388
- "d": "dd/MM/y dd/MM/y G",
2389
- "M": "dd/MM/y dd/MM/y G",
2390
- "y": "dd/MM/y dd/MM/y G",
2391
- "G": "dd/MM/y G dd/MM/y G"
2386
+ "d": "dd/MM/ydd/MM/y G",
2387
+ "M": "dd/MM/ydd/MM/y G",
2388
+ "y": "dd/MM/ydd/MM/y G",
2389
+ "G": "dd/MM/y Gdd/MM/y G"
2392
2390
  },
2393
2391
  "yMEd": {
2394
- "d": "E dd/MM/y E dd/MM/y G",
2395
- "M": "E dd/MM/y E dd/MM/y G",
2396
- "y": "E dd/MM/y E dd/MM/y G",
2397
- "G": "E dd/MM/y G E dd/MM/y G"
2392
+ "d": "E dd/MM/yE dd/MM/y G",
2393
+ "M": "E dd/MM/yE dd/MM/y G",
2394
+ "y": "E dd/MM/yE dd/MM/y G",
2395
+ "G": "E dd/MM/y GE dd/MM/y G"
2398
2396
  },
2399
2397
  "yMMM": {
2400
2398
  "M": "MMM–MMM y G",
2401
- "y": "MMM y MMM y G",
2402
- "G": "MMM y G MMM y G"
2399
+ "y": "MMM yMMM y G",
2400
+ "G": "MMM y GMMM y G"
2403
2401
  },
2404
2402
  "yMMMd": {
2405
2403
  "d": "dd–dd MMM y G",
2406
- "M": "dd MMM dd MMM y G",
2407
- "y": "dd MMM y dd MMM y G",
2408
- "G": "dd MMM y G dd MMM y G"
2404
+ "M": "dd MMMdd MMM y G",
2405
+ "y": "dd MMM ydd MMM y G",
2406
+ "G": "dd MMM y Gdd MMM y G"
2409
2407
  },
2410
2408
  "yMMMEd": {
2411
- "d": "E d E d MMM y G",
2412
- "M": "E d MMM E d MMM y G",
2413
- "y": "E d MMM y E d MMM y G",
2414
- "G": "E d MMM y G E d MMM y G"
2409
+ "d": "E dE d MMM y G",
2410
+ "M": "E d MMME d MMM y G",
2411
+ "y": "E d MMM yE d MMM y G",
2412
+ "G": "E d MMM y GE d MMM y G"
2415
2413
  },
2416
2414
  "yMMMM": {
2417
2415
  "M": "MMMM–MMMM y G",
2418
- "y": "MMMM y MMMM y G",
2419
- "G": "MMMM y G MMMM y G"
2416
+ "y": "MMMM yMMMM y G",
2417
+ "G": "MMMM y GMMMM y G"
2420
2418
  }
2421
2419
  }
2422
2420
  },
@@ -2750,8 +2748,8 @@
2750
2748
  "short": "HH:mm"
2751
2749
  },
2752
2750
  "dateTimeFormats": {
2753
- "full": "{1} 'alle' {0}",
2754
- "long": "{1} 'alle' {0}",
2751
+ "full": "{1}, {0}",
2752
+ "long": "{1}, {0}",
2755
2753
  "medium": "{1}, {0}",
2756
2754
  "short": "{1}, {0}",
2757
2755
  "availableFormats": {
@@ -2763,20 +2761,20 @@
2763
2761
  "EBhm": "E h:mm B",
2764
2762
  "EBhms": "E h:mm:ss B",
2765
2763
  "Ed": "E d",
2766
- "Ehm": "E h:mm a",
2764
+ "Ehm": "E h:mma",
2767
2765
  "EHm": "E HH:mm",
2768
- "Ehms": "E h:mm:ss a",
2766
+ "Ehms": "E h:mm:ssa",
2769
2767
  "EHms": "E HH:mm:ss",
2770
2768
  "Gy": "y G",
2771
2769
  "GyMd": "d/M/y GGGGG",
2772
2770
  "GyMMM": "MMM y G",
2773
2771
  "GyMMMd": "d MMM y G",
2774
2772
  "GyMMMEd": "E d MMM y G",
2775
- "h": "hh a",
2773
+ "h": "hha",
2776
2774
  "H": "HH",
2777
- "hm": "hh:mm a",
2775
+ "hm": "hh:mma",
2778
2776
  "Hm": "HH:mm",
2779
- "hms": "hh:mm:ss a",
2777
+ "hms": "hh:mm:ssa",
2780
2778
  "Hms": "HH:mm:ss",
2781
2779
  "M": "L",
2782
2780
  "Md": "d/M",
@@ -2812,85 +2810,85 @@
2812
2810
  "Year": "{1} {0}"
2813
2811
  },
2814
2812
  "intervalFormats": {
2815
- "intervalFormatFallback": "{0} - {1}",
2813
+ "intervalFormatFallback": "{0} – {1}",
2816
2814
  "Bh": {
2817
- "B": "h B h B",
2818
- "h": "h h B"
2815
+ "B": "h Bh B",
2816
+ "h": "hh B"
2819
2817
  },
2820
2818
  "Bhm": {
2821
- "B": "h:mm B h:mm B",
2822
- "h": "h:mm h:mm B",
2823
- "m": "h:mm h:mm B"
2819
+ "B": "h:mm Bh:mm B",
2820
+ "h": "h:mmh:mm B",
2821
+ "m": "h:mmh:mm B"
2824
2822
  },
2825
2823
  "d": {
2826
2824
  "d": "d–d"
2827
2825
  },
2828
2826
  "Gy": {
2829
- "G": "G y G y",
2827
+ "G": "G yG y",
2830
2828
  "y": "G y–y"
2831
2829
  },
2832
2830
  "GyM": {
2833
- "G": "GGGGG y-MM GGGGG y-MM",
2834
- "M": "M/y M/y GGGGG",
2835
- "y": "M/y M/y GGGGG"
2831
+ "G": "GGGGG y-MMGGGGG y-MM",
2832
+ "M": "M/yM/y GGGGG",
2833
+ "y": "M/yM/y GGGGG"
2836
2834
  },
2837
2835
  "GyMd": {
2838
- "d": "d/M/y d/M/y GGGGG",
2839
- "G": "d/M/y GGGGG d/M/y GGGGG",
2840
- "M": "d/M/y d/M/y GGGGG",
2841
- "y": "d/M/y d/M/y GGGGG"
2836
+ "d": "d/M/yd/M/y GGGGG",
2837
+ "G": "d/M/y GGGGGd/M/y GGGGG",
2838
+ "M": "d/M/yd/M/y GGGGG",
2839
+ "y": "d/M/yd/M/y GGGGG"
2842
2840
  },
2843
2841
  "GyMEd": {
2844
- "d": "E, d/M/y E, d/M/y GGGGG",
2845
- "G": "E, d/M/y E, d/M/y GGGGG",
2846
- "M": "E, d/M/y E, d/M/y GGGGG",
2847
- "y": "E d/M/y E d/M/y GGGGG"
2842
+ "d": "E, d/M/yE, d/M/y GGGGG",
2843
+ "G": "E, d/M/yE, d/M/y GGGGG",
2844
+ "M": "E, d/M/yE, d/M/y GGGGG",
2845
+ "y": "E d/M/yE d/M/y GGGGG"
2848
2846
  },
2849
2847
  "GyMMM": {
2850
- "G": "MMM y G MMM y G",
2851
- "M": "MMM MMM y G",
2852
- "y": "MMM y MMM y G"
2848
+ "G": "MMM y GMMM y G",
2849
+ "M": "MMMMMM y G",
2850
+ "y": "MMM yMMM y G"
2853
2851
  },
2854
2852
  "GyMMMd": {
2855
- "d": "d d MMM y G",
2856
- "G": "d MMM y G d MMM y G",
2857
- "M": "d MMM d MMM y G",
2858
- "y": "d MMM y d MMM y G"
2853
+ "d": "dd MMM y G",
2854
+ "G": "d MMM y Gd MMM y G",
2855
+ "M": "d MMMd MMM y G",
2856
+ "y": "d MMM yd MMM y G"
2859
2857
  },
2860
2858
  "GyMMMEd": {
2861
- "d": "E d MMM E d MMM y G",
2862
- "G": "E d MMM y G E d MMM y G",
2863
- "M": "E d MMM E d MMM y G",
2864
- "y": "E d MMM y E d MMM y G"
2859
+ "d": "E d MMME d MMM y G",
2860
+ "G": "E d MMM y GE d MMM y G",
2861
+ "M": "E d MMME d MMM y G",
2862
+ "y": "E d MMM yE d MMM y G"
2865
2863
  },
2866
2864
  "h": {
2867
- "a": "h a h a",
2868
- "h": "h–h a"
2865
+ "a": "haha",
2866
+ "h": "h–ha"
2869
2867
  },
2870
2868
  "H": {
2871
2869
  "H": "HH–HH"
2872
2870
  },
2873
2871
  "hm": {
2874
- "a": "h:mm a h:mm a",
2875
- "h": "h:mm–h:mm a",
2876
- "m": "h:mm–h:mm a"
2872
+ "a": "h:mmah:mma",
2873
+ "h": "h:mm–h:mma",
2874
+ "m": "h:mm–h:mma"
2877
2875
  },
2878
2876
  "Hm": {
2879
2877
  "H": "HH:mm–HH:mm",
2880
2878
  "m": "HH:mm–HH:mm"
2881
2879
  },
2882
2880
  "hmv": {
2883
- "a": "h:mm a h:mm a v",
2884
- "h": "h:mm–h:mm a v",
2885
- "m": "h:mm–h:mm a v"
2881
+ "a": "h:mmah:mma v",
2882
+ "h": "h:mm–h:mma v",
2883
+ "m": "h:mm–h:mma v"
2886
2884
  },
2887
2885
  "Hmv": {
2888
2886
  "H": "HH:mm–HH:mm v",
2889
2887
  "m": "HH:mm–HH:mm v"
2890
2888
  },
2891
2889
  "hv": {
2892
- "a": "h a h a v",
2893
- "h": "h–h a v"
2890
+ "a": "haha v",
2891
+ "h": "h–ha v"
2894
2892
  },
2895
2893
  "Hv": {
2896
2894
  "H": "HH–HH v"
@@ -2899,58 +2897,58 @@
2899
2897
  "M": "M–M"
2900
2898
  },
2901
2899
  "Md": {
2902
- "d": "dd/MM dd/MM",
2903
- "M": "dd/MM dd/MM"
2900
+ "d": "dd/MMdd/MM",
2901
+ "M": "dd/MMdd/MM"
2904
2902
  },
2905
2903
  "MEd": {
2906
- "d": "E dd/MM E dd/MM",
2907
- "M": "E dd/MM E dd/MM"
2904
+ "d": "E dd/MME dd/MM",
2905
+ "M": "E dd/MME dd/MM"
2908
2906
  },
2909
2907
  "MMM": {
2910
2908
  "M": "MMM–MMM"
2911
2909
  },
2912
2910
  "MMMd": {
2913
2911
  "d": "dd–dd MMM",
2914
- "M": "dd MMM dd MMM"
2912
+ "M": "dd MMMdd MMM"
2915
2913
  },
2916
2914
  "MMMEd": {
2917
- "d": "E dd E dd MMM",
2918
- "M": "E dd MMM E dd MMM"
2915
+ "d": "E ddE dd MMM",
2916
+ "M": "E dd MMME dd MMM"
2919
2917
  },
2920
2918
  "y": {
2921
2919
  "y": "y–y G"
2922
2920
  },
2923
2921
  "yM": {
2924
- "M": "MM/y MM/y G",
2925
- "y": "MM/y MM/y G"
2922
+ "M": "MM/yMM/y G",
2923
+ "y": "MM/yMM/y G"
2926
2924
  },
2927
2925
  "yMd": {
2928
- "d": "dd/MM/y dd/MM/y G",
2929
- "M": "dd/MM/y dd/MM/y G",
2930
- "y": "dd/MM/y dd/MM/y G"
2926
+ "d": "dd/MM/ydd/MM/y G",
2927
+ "M": "dd/MM/ydd/MM/y G",
2928
+ "y": "dd/MM/ydd/MM/y G"
2931
2929
  },
2932
2930
  "yMEd": {
2933
- "d": "E dd/MM/y E dd/MM/y G",
2934
- "M": "E dd/MM/y E dd/MM/y G",
2935
- "y": "E dd/MM/y E dd/MM/y G"
2931
+ "d": "E dd/MM/yE dd/MM/y G",
2932
+ "M": "E dd/MM/yE dd/MM/y G",
2933
+ "y": "E dd/MM/yE dd/MM/y G"
2936
2934
  },
2937
2935
  "yMMM": {
2938
2936
  "M": "MMM–MMM y G",
2939
- "y": "MMM y MMM y G"
2937
+ "y": "MMM yMMM y G"
2940
2938
  },
2941
2939
  "yMMMd": {
2942
2940
  "d": "dd–dd MMM y G",
2943
- "M": "dd MMM dd MMM y G",
2944
- "y": "dd MMM y dd MMM y G"
2941
+ "M": "dd MMMdd MMM y G",
2942
+ "y": "dd MMM ydd MMM y G"
2945
2943
  },
2946
2944
  "yMMMEd": {
2947
- "d": "E d E d MMM y G",
2948
- "M": "E d MMM E d MMM y G",
2949
- "y": "E d MMM y E d MMM y G"
2945
+ "d": "E dE d MMM y G",
2946
+ "M": "E d MMME d MMM y G",
2947
+ "y": "E d MMM yE d MMM y G"
2950
2948
  },
2951
2949
  "yMMMM": {
2952
2950
  "M": "MMMM–MMMM y G",
2953
- "y": "MMMM y MMMM y G"
2951
+ "y": "MMMM yMMMM y G"
2954
2952
  }
2955
2953
  }
2956
2954
  },
@@ -3272,8 +3270,8 @@
3272
3270
  "short": "HH:mm"
3273
3271
  },
3274
3272
  "dateTimeFormats": {
3275
- "full": "{1} 'alle' {0}",
3276
- "long": "{1} 'alle' {0}",
3273
+ "full": "{1}, {0}",
3274
+ "long": "{1}, {0}",
3277
3275
  "medium": "{1}, {0}",
3278
3276
  "short": "{1}, {0}",
3279
3277
  "availableFormats": {
@@ -3285,20 +3283,20 @@
3285
3283
  "EBhm": "E h:mm B",
3286
3284
  "EBhms": "E h:mm:ss B",
3287
3285
  "Ed": "E d",
3288
- "Ehm": "E h:mm a",
3286
+ "Ehm": "E h:mma",
3289
3287
  "EHm": "E HH:mm",
3290
- "Ehms": "E h:mm:ss a",
3288
+ "Ehms": "E h:mm:ssa",
3291
3289
  "EHms": "E HH:mm:ss",
3292
3290
  "Gy": "y G",
3293
3291
  "GyMd": "d/M/y GGGGG",
3294
3292
  "GyMMM": "MMM y G",
3295
3293
  "GyMMMd": "d MMM y G",
3296
3294
  "GyMMMEd": "E d MMM y G",
3297
- "h": "hh a",
3295
+ "h": "hha",
3298
3296
  "H": "HH",
3299
- "hm": "hh:mm a",
3297
+ "hm": "hh:mma",
3300
3298
  "Hm": "HH:mm",
3301
- "hms": "hh:mm:ss a",
3299
+ "hms": "hh:mm:ssa",
3302
3300
  "Hms": "HH:mm:ss",
3303
3301
  "M": "L",
3304
3302
  "Md": "d/M",
@@ -3334,85 +3332,85 @@
3334
3332
  "Year": "{1} {0}"
3335
3333
  },
3336
3334
  "intervalFormats": {
3337
- "intervalFormatFallback": "{0} - {1}",
3335
+ "intervalFormatFallback": "{0} – {1}",
3338
3336
  "Bh": {
3339
- "B": "h B h B",
3340
- "h": "h h B"
3337
+ "B": "h Bh B",
3338
+ "h": "hh B"
3341
3339
  },
3342
3340
  "Bhm": {
3343
- "B": "h:mm B h:mm B",
3344
- "h": "h:mm h:mm B",
3345
- "m": "h:mm h:mm B"
3341
+ "B": "h:mm Bh:mm B",
3342
+ "h": "h:mmh:mm B",
3343
+ "m": "h:mmh:mm B"
3346
3344
  },
3347
3345
  "d": {
3348
3346
  "d": "d–d"
3349
3347
  },
3350
3348
  "Gy": {
3351
- "G": "G y G y",
3349
+ "G": "G yG y",
3352
3350
  "y": "G y–y"
3353
3351
  },
3354
3352
  "GyM": {
3355
- "G": "GGGGG y-MM GGGGG y-MM",
3356
- "M": "M/y M/y GGGGG",
3357
- "y": "M/y M/y GGGGG"
3353
+ "G": "GGGGG y-MMGGGGG y-MM",
3354
+ "M": "M/yM/y GGGGG",
3355
+ "y": "M/yM/y GGGGG"
3358
3356
  },
3359
3357
  "GyMd": {
3360
- "d": "d/M/y d/M/y GGGGG",
3361
- "G": "d/M/y GGGGG d/M/y GGGGG",
3362
- "M": "d/M/y d/M/y GGGGG",
3363
- "y": "d/M/y d/M/y GGGGG"
3358
+ "d": "d/M/yd/M/y GGGGG",
3359
+ "G": "d/M/y GGGGGd/M/y GGGGG",
3360
+ "M": "d/M/yd/M/y GGGGG",
3361
+ "y": "d/M/yd/M/y GGGGG"
3364
3362
  },
3365
3363
  "GyMEd": {
3366
- "d": "E, d/M/y E, d/M/y GGGGG",
3367
- "G": "E, d/M/y E, d/M/y GGGGG",
3368
- "M": "E, d/M/y E, d/M/y GGGGG",
3369
- "y": "E d/M/y E d/M/y GGGGG"
3364
+ "d": "E, d/M/yE, d/M/y GGGGG",
3365
+ "G": "E, d/M/yE, d/M/y GGGGG",
3366
+ "M": "E, d/M/yE, d/M/y GGGGG",
3367
+ "y": "E d/M/yE d/M/y GGGGG"
3370
3368
  },
3371
3369
  "GyMMM": {
3372
- "G": "MMM y G MMM y G",
3373
- "M": "MMM MMM y G",
3374
- "y": "MMM y MMM y G"
3370
+ "G": "MMM y GMMM y G",
3371
+ "M": "MMMMMM y G",
3372
+ "y": "MMM yMMM y G"
3375
3373
  },
3376
3374
  "GyMMMd": {
3377
- "d": "d d MMM y G",
3378
- "G": "d MMM y G d MMM y G",
3379
- "M": "d MMM d MMM y G",
3380
- "y": "d MMM y d MMM y G"
3375
+ "d": "dd MMM y G",
3376
+ "G": "d MMM y Gd MMM y G",
3377
+ "M": "d MMMd MMM y G",
3378
+ "y": "d MMM yd MMM y G"
3381
3379
  },
3382
3380
  "GyMMMEd": {
3383
- "d": "E d MMM E d MMM y G",
3384
- "G": "E d MMM y G E d MMM y G",
3385
- "M": "E d MMM E d MMM y G",
3386
- "y": "E d MMM y E d MMM y G"
3381
+ "d": "E d MMME d MMM y G",
3382
+ "G": "E d MMM y GE d MMM y G",
3383
+ "M": "E d MMME d MMM y G",
3384
+ "y": "E d MMM yE d MMM y G"
3387
3385
  },
3388
3386
  "h": {
3389
- "a": "h a h a",
3390
- "h": "h–h a"
3387
+ "a": "haha",
3388
+ "h": "h–ha"
3391
3389
  },
3392
3390
  "H": {
3393
3391
  "H": "HH–HH"
3394
3392
  },
3395
3393
  "hm": {
3396
- "a": "h:mm a h:mm a",
3397
- "h": "h:mm–h:mm a",
3398
- "m": "h:mm–h:mm a"
3394
+ "a": "h:mmah:mma",
3395
+ "h": "h:mm–h:mma",
3396
+ "m": "h:mm–h:mma"
3399
3397
  },
3400
3398
  "Hm": {
3401
3399
  "H": "HH:mm–HH:mm",
3402
3400
  "m": "HH:mm–HH:mm"
3403
3401
  },
3404
3402
  "hmv": {
3405
- "a": "h:mm a h:mm a v",
3406
- "h": "h:mm–h:mm a v",
3407
- "m": "h:mm–h:mm a v"
3403
+ "a": "h:mmah:mma v",
3404
+ "h": "h:mm–h:mma v",
3405
+ "m": "h:mm–h:mma v"
3408
3406
  },
3409
3407
  "Hmv": {
3410
3408
  "H": "HH:mm–HH:mm v",
3411
3409
  "m": "HH:mm–HH:mm v"
3412
3410
  },
3413
3411
  "hv": {
3414
- "a": "h a h a v",
3415
- "h": "h–h a v"
3412
+ "a": "haha v",
3413
+ "h": "h–ha v"
3416
3414
  },
3417
3415
  "Hv": {
3418
3416
  "H": "HH–HH v"
@@ -3421,58 +3419,58 @@
3421
3419
  "M": "M–M"
3422
3420
  },
3423
3421
  "Md": {
3424
- "d": "dd/MM dd/MM",
3425
- "M": "dd/MM dd/MM"
3422
+ "d": "dd/MMdd/MM",
3423
+ "M": "dd/MMdd/MM"
3426
3424
  },
3427
3425
  "MEd": {
3428
- "d": "E dd/MM E dd/MM",
3429
- "M": "E dd/MM E dd/MM"
3426
+ "d": "E dd/MME dd/MM",
3427
+ "M": "E dd/MME dd/MM"
3430
3428
  },
3431
3429
  "MMM": {
3432
3430
  "M": "MMM–MMM"
3433
3431
  },
3434
3432
  "MMMd": {
3435
3433
  "d": "dd–dd MMM",
3436
- "M": "dd MMM dd MMM"
3434
+ "M": "dd MMMdd MMM"
3437
3435
  },
3438
3436
  "MMMEd": {
3439
- "d": "E dd E dd MMM",
3440
- "M": "E dd MMM E dd MMM"
3437
+ "d": "E ddE dd MMM",
3438
+ "M": "E dd MMME dd MMM"
3441
3439
  },
3442
3440
  "y": {
3443
3441
  "y": "y–y G"
3444
3442
  },
3445
3443
  "yM": {
3446
- "M": "MM/y MM/y G",
3447
- "y": "MM/y MM/y G"
3444
+ "M": "MM/yMM/y G",
3445
+ "y": "MM/yMM/y G"
3448
3446
  },
3449
3447
  "yMd": {
3450
- "d": "dd/MM/y dd/MM/y G",
3451
- "M": "dd/MM/y dd/MM/y G",
3452
- "y": "dd/MM/y dd/MM/y G"
3448
+ "d": "dd/MM/ydd/MM/y G",
3449
+ "M": "dd/MM/ydd/MM/y G",
3450
+ "y": "dd/MM/ydd/MM/y G"
3453
3451
  },
3454
3452
  "yMEd": {
3455
- "d": "E dd/MM/y E dd/MM/y G",
3456
- "M": "E dd/MM/y E dd/MM/y G",
3457
- "y": "E dd/MM/y E dd/MM/y G"
3453
+ "d": "E dd/MM/yE dd/MM/y G",
3454
+ "M": "E dd/MM/yE dd/MM/y G",
3455
+ "y": "E dd/MM/yE dd/MM/y G"
3458
3456
  },
3459
3457
  "yMMM": {
3460
3458
  "M": "MMM–MMM y G",
3461
- "y": "MMM y MMM y G"
3459
+ "y": "MMM yMMM y G"
3462
3460
  },
3463
3461
  "yMMMd": {
3464
3462
  "d": "dd–dd MMM y G",
3465
- "M": "dd MMM dd MMM y G",
3466
- "y": "dd MMM y dd MMM y G"
3463
+ "M": "dd MMMdd MMM y G",
3464
+ "y": "dd MMM ydd MMM y G"
3467
3465
  },
3468
3466
  "yMMMEd": {
3469
- "d": "E d E d MMM y G",
3470
- "M": "E d MMM E d MMM y G",
3471
- "y": "E d MMM y E d MMM y G"
3467
+ "d": "E dE d MMM y G",
3468
+ "M": "E d MMME d MMM y G",
3469
+ "y": "E d MMM yE d MMM y G"
3472
3470
  },
3473
3471
  "yMMMM": {
3474
3472
  "M": "MMMM–MMMM y G",
3475
- "y": "MMMM y MMMM y G"
3473
+ "y": "MMMM yMMMM y G"
3476
3474
  }
3477
3475
  }
3478
3476
  },
@@ -4215,6 +4213,7 @@
4215
4213
  "Cayman": "Cayman",
4216
4214
  "Chicago": "Chicago",
4217
4215
  "Chihuahua": "Chihuahua",
4216
+ "Ciudad_Juarez": "Ciudad Juárez",
4218
4217
  "Costa_Rica": "Costa Rica",
4219
4218
  "Creston": "Creston",
4220
4219
  "Cuiaba": "Cuiaba",
@@ -4426,7 +4425,7 @@
4426
4425
  "Thimphu": "Thimphu",
4427
4426
  "Tokyo": "Tokyo",
4428
4427
  "Tomsk": "Tomsk",
4429
- "Ulaanbaatar": "Ulaanbaatar",
4428
+ "Ulaanbaatar": "Ulan Bator",
4430
4429
  "Urumqi": "Urumqi",
4431
4430
  "Ust-Nera": "Ust’-Nera",
4432
4431
  "Vientiane": "Vientiane",
@@ -4559,7 +4558,7 @@
4559
4558
  "Guadalcanal": "Guadalcanal",
4560
4559
  "Guam": "Guam",
4561
4560
  "Honolulu": "Honolulu",
4562
- "Kanton": "Kanton",
4561
+ "Kanton": "Canton",
4563
4562
  "Kiritimati": "Kiritimati",
4564
4563
  "Kosrae": "Kosrae",
4565
4564
  "Kwajalein": "Kwajalein",
@@ -4843,10 +4842,12 @@
4843
4842
  },
4844
4843
  "power2": {
4845
4844
  "compoundUnitPattern1": "{0}²",
4845
+ "compoundUnitPattern1-count-one": "{0}²",
4846
4846
  "compoundUnitPattern1-count-other": "{0}²"
4847
4847
  },
4848
4848
  "power3": {
4849
4849
  "compoundUnitPattern1": "{0}³",
4850
+ "compoundUnitPattern1-count-one": "{0}³",
4850
4851
  "compoundUnitPattern1-count-other": "{0}³"
4851
4852
  },
4852
4853
  "times": {
@@ -4979,10 +4980,12 @@
4979
4980
  },
4980
4981
  "concentr-permyriad": {
4981
4982
  "displayName": "‱",
4983
+ "unitPattern-count-one": "{0}‱",
4982
4984
  "unitPattern-count-other": "{0}‱"
4983
4985
  },
4984
4986
  "concentr-mole": {
4985
4987
  "displayName": "mol",
4988
+ "unitPattern-count-one": "{0} mol",
4986
4989
  "unitPattern-count-other": "{0} mol"
4987
4990
  },
4988
4991
  "consumption-liter-per-kilometer": {
@@ -5006,47 +5009,47 @@
5006
5009
  "unitPattern-count-other": "{0} mi/Imp gal"
5007
5010
  },
5008
5011
  "digital-petabyte": {
5009
- "displayName": "PB",
5012
+ "displayName": "Pbyte",
5010
5013
  "unitPattern-count-one": "{0} PB",
5011
5014
  "unitPattern-count-other": "{0} PB"
5012
5015
  },
5013
5016
  "digital-terabyte": {
5014
- "displayName": "TB",
5017
+ "displayName": "Tbyte",
5015
5018
  "unitPattern-count-one": "{0} TB",
5016
5019
  "unitPattern-count-other": "{0} TB"
5017
5020
  },
5018
5021
  "digital-terabit": {
5019
- "displayName": "Tb",
5022
+ "displayName": "Tbit",
5020
5023
  "unitPattern-count-one": "{0} Tb",
5021
5024
  "unitPattern-count-other": "{0} Tb"
5022
5025
  },
5023
5026
  "digital-gigabyte": {
5024
- "displayName": "GB",
5027
+ "displayName": "Gbyte",
5025
5028
  "unitPattern-count-one": "{0} GB",
5026
5029
  "unitPattern-count-other": "{0} GB"
5027
5030
  },
5028
5031
  "digital-gigabit": {
5029
- "displayName": "Gb",
5032
+ "displayName": "Gbit",
5030
5033
  "unitPattern-count-one": "{0} Gb",
5031
5034
  "unitPattern-count-other": "{0} Gb"
5032
5035
  },
5033
5036
  "digital-megabyte": {
5034
- "displayName": "MB",
5037
+ "displayName": "Mbyte",
5035
5038
  "unitPattern-count-one": "{0} MB",
5036
5039
  "unitPattern-count-other": "{0} MB"
5037
5040
  },
5038
5041
  "digital-megabit": {
5039
- "displayName": "Mb",
5042
+ "displayName": "Mbit",
5040
5043
  "unitPattern-count-one": "{0} Mb",
5041
5044
  "unitPattern-count-other": "{0} Mb"
5042
5045
  },
5043
5046
  "digital-kilobyte": {
5044
- "displayName": "kB",
5047
+ "displayName": "kbyte",
5045
5048
  "unitPattern-count-one": "{0} kB",
5046
5049
  "unitPattern-count-other": "{0} kB"
5047
5050
  },
5048
5051
  "digital-kilobit": {
5049
- "displayName": "kb",
5052
+ "displayName": "kbit",
5050
5053
  "unitPattern-count-one": "{0} kb",
5051
5054
  "unitPattern-count-other": "{0} kb"
5052
5055
  },
@@ -5076,6 +5079,12 @@
5076
5079
  "unitPattern-count-other": "{0} anni",
5077
5080
  "perUnitPattern": "{0}/anno"
5078
5081
  },
5082
+ "duration-quarter": {
5083
+ "displayName": "trim.",
5084
+ "unitPattern-count-one": "{0} trim.",
5085
+ "unitPattern-count-other": "{0} trim.",
5086
+ "perUnitPattern": "{0}/trimestre"
5087
+ },
5079
5088
  "duration-month": {
5080
5089
  "displayName": "mesi",
5081
5090
  "unitPattern-count-one": "{0} mese",
@@ -5084,8 +5093,8 @@
5084
5093
  },
5085
5094
  "duration-week": {
5086
5095
  "displayName": "settimane",
5087
- "unitPattern-count-one": "{0} settimana",
5088
- "unitPattern-count-other": "{0} settimane",
5096
+ "unitPattern-count-one": "{0} sett.",
5097
+ "unitPattern-count-other": "{0} sett.",
5089
5098
  "perUnitPattern": "{0}/settimana"
5090
5099
  },
5091
5100
  "duration-day": {
@@ -5179,6 +5188,7 @@
5179
5188
  },
5180
5189
  "energy-electronvolt": {
5181
5190
  "displayName": "eV",
5191
+ "unitPattern-count-one": "{0} eV",
5182
5192
  "unitPattern-count-other": "{0} eV"
5183
5193
  },
5184
5194
  "energy-british-thermal-unit": {
@@ -5193,14 +5203,17 @@
5193
5203
  },
5194
5204
  "force-pound-force": {
5195
5205
  "displayName": "lbf",
5206
+ "unitPattern-count-one": "{0} lbf",
5196
5207
  "unitPattern-count-other": "{0} lbf"
5197
5208
  },
5198
5209
  "force-newton": {
5199
5210
  "displayName": "N",
5211
+ "unitPattern-count-one": "{0} N",
5200
5212
  "unitPattern-count-other": "{0} N"
5201
5213
  },
5202
5214
  "force-kilowatt-hour-per-100-kilometer": {
5203
5215
  "displayName": "kWh/100km",
5216
+ "unitPattern-count-one": "{0} kWh/100km",
5204
5217
  "unitPattern-count-other": "{0} kWh/100km"
5205
5218
  },
5206
5219
  "frequency-gigahertz": {
@@ -5225,24 +5238,34 @@
5225
5238
  },
5226
5239
  "graphics-em": {
5227
5240
  "displayName": "em",
5241
+ "unitPattern-count-one": "{0} em",
5228
5242
  "unitPattern-count-other": "{0} em"
5229
5243
  },
5230
5244
  "graphics-pixel": {
5231
5245
  "displayName": "px",
5246
+ "unitPattern-count-one": "{0} px",
5232
5247
  "unitPattern-count-other": "{0} px"
5233
5248
  },
5234
5249
  "graphics-megapixel": {
5235
5250
  "displayName": "MP",
5251
+ "unitPattern-count-one": "{0} MP",
5236
5252
  "unitPattern-count-other": "{0} MP"
5237
5253
  },
5238
5254
  "graphics-pixel-per-centimeter": {
5239
5255
  "displayName": "ppcm",
5256
+ "unitPattern-count-one": "{0} ppcm",
5240
5257
  "unitPattern-count-other": "{0} ppcm"
5241
5258
  },
5242
5259
  "graphics-pixel-per-inch": {
5243
5260
  "displayName": "ppi",
5261
+ "unitPattern-count-one": "{0} ppi",
5244
5262
  "unitPattern-count-other": "{0} ppi"
5245
5263
  },
5264
+ "graphics-dot-per-centimeter": {
5265
+ "displayName": "ppcm",
5266
+ "unitPattern-count-one": "{0} ppcm",
5267
+ "unitPattern-count-other": "{0} ppcm"
5268
+ },
5246
5269
  "graphics-dot-per-inch": {
5247
5270
  "displayName": "dpi",
5248
5271
  "unitPattern-count-one": "{0} dpi",
@@ -5255,6 +5278,7 @@
5255
5278
  },
5256
5279
  "length-earth-radius": {
5257
5280
  "displayName": "R⊕",
5281
+ "unitPattern-count-one": "{0} R⊕",
5258
5282
  "unitPattern-count-other": "{0} R⊕"
5259
5283
  },
5260
5284
  "length-kilometer": {
@@ -5339,6 +5363,7 @@
5339
5363
  },
5340
5364
  "length-furlong": {
5341
5365
  "displayName": "fur",
5366
+ "unitPattern-count-one": "{0} fur",
5342
5367
  "unitPattern-count-other": "{0} fur"
5343
5368
  },
5344
5369
  "length-fathom": {
@@ -5363,6 +5388,7 @@
5363
5388
  },
5364
5389
  "length-solar-radius": {
5365
5390
  "displayName": "R☉",
5391
+ "unitPattern-count-one": "{0} R☉",
5366
5392
  "unitPattern-count-other": "{0} R☉"
5367
5393
  },
5368
5394
  "light-lux": {
@@ -5372,17 +5398,20 @@
5372
5398
  },
5373
5399
  "light-candela": {
5374
5400
  "displayName": "cd",
5401
+ "unitPattern-count-one": "{0} cd",
5375
5402
  "unitPattern-count-other": "{0} cd"
5376
5403
  },
5377
5404
  "light-lumen": {
5378
5405
  "displayName": "lm",
5406
+ "unitPattern-count-one": "{0} lm",
5379
5407
  "unitPattern-count-other": "{0} lm"
5380
5408
  },
5381
5409
  "light-solar-luminosity": {
5382
5410
  "displayName": "L☉",
5411
+ "unitPattern-count-one": "{0} L☉",
5383
5412
  "unitPattern-count-other": "{0} L☉"
5384
5413
  },
5385
- "mass-metric-ton": {
5414
+ "mass-tonne": {
5386
5415
  "displayName": "t",
5387
5416
  "unitPattern-count-one": "{0} t",
5388
5417
  "unitPattern-count-other": "{0} t"
@@ -5416,6 +5445,7 @@
5416
5445
  },
5417
5446
  "mass-stone": {
5418
5447
  "displayName": "st",
5448
+ "unitPattern-count-one": "{0} st",
5419
5449
  "unitPattern-count-other": "{0} st"
5420
5450
  },
5421
5451
  "mass-pound": {
@@ -5447,10 +5477,12 @@
5447
5477
  },
5448
5478
  "mass-earth-mass": {
5449
5479
  "displayName": "M⊕",
5480
+ "unitPattern-count-one": "{0} M⊕",
5450
5481
  "unitPattern-count-other": "{0} M⊕"
5451
5482
  },
5452
5483
  "mass-solar-mass": {
5453
5484
  "displayName": "M☉",
5485
+ "unitPattern-count-one": "{0} M☉",
5454
5486
  "unitPattern-count-other": "{0} M☉"
5455
5487
  },
5456
5488
  "mass-grain": {
@@ -5505,6 +5537,7 @@
5505
5537
  },
5506
5538
  "pressure-bar": {
5507
5539
  "displayName": "bar",
5540
+ "unitPattern-count-one": "{0} bar",
5508
5541
  "unitPattern-count-other": "{0} bar"
5509
5542
  },
5510
5543
  "pressure-millibar": {
@@ -5519,6 +5552,7 @@
5519
5552
  },
5520
5553
  "pressure-pascal": {
5521
5554
  "displayName": "Pa",
5555
+ "unitPattern-count-one": "{0} Pa",
5522
5556
  "unitPattern-count-other": "{0} Pa"
5523
5557
  },
5524
5558
  "pressure-hectopascal": {
@@ -5528,10 +5562,12 @@
5528
5562
  },
5529
5563
  "pressure-kilopascal": {
5530
5564
  "displayName": "kPa",
5565
+ "unitPattern-count-one": "{0} kPa",
5531
5566
  "unitPattern-count-other": "{0} kPa"
5532
5567
  },
5533
5568
  "pressure-megapascal": {
5534
5569
  "displayName": "MPa",
5570
+ "unitPattern-count-one": "{0} MPa",
5535
5571
  "unitPattern-count-other": "{0} MPa"
5536
5572
  },
5537
5573
  "speed-kilometer-per-hour": {
@@ -5669,6 +5705,7 @@
5669
5705
  },
5670
5706
  "volume-bushel": {
5671
5707
  "displayName": "staia",
5708
+ "unitPattern-count-one": "{0} bu",
5672
5709
  "unitPattern-count-other": "{0} bu"
5673
5710
  },
5674
5711
  "volume-gallon": {
@@ -5725,10 +5762,12 @@
5725
5762
  },
5726
5763
  "volume-dessert-spoon": {
5727
5764
  "displayName": "dstspn",
5765
+ "unitPattern-count-one": "{0} dstspn",
5728
5766
  "unitPattern-count-other": "{0} dstspn"
5729
5767
  },
5730
5768
  "volume-dessert-spoon-imperial": {
5731
5769
  "displayName": "dstspn Imp",
5770
+ "unitPattern-count-one": "{0} dstspn Imp",
5732
5771
  "unitPattern-count-other": "{0} dstspn Imp"
5733
5772
  },
5734
5773
  "volume-drop": {
@@ -5743,6 +5782,7 @@
5743
5782
  },
5744
5783
  "volume-jigger": {
5745
5784
  "displayName": "jigger",
5785
+ "unitPattern-count-one": "{0} jigger",
5746
5786
  "unitPattern-count-other": "{0} jigger"
5747
5787
  },
5748
5788
  "volume-pinch": {
@@ -5865,41 +5905,56 @@
5865
5905
  },
5866
5906
  "eras-gregorian": {
5867
5907
  "0": {
5908
+ "_code": "gregory-inverse",
5909
+ "_aliases": "bc bce",
5868
5910
  "_end": "0-12-31"
5869
5911
  },
5870
5912
  "1": {
5913
+ "_code": "gregory",
5914
+ "_aliases": "ad ce",
5871
5915
  "_start": "1-01-01"
5872
5916
  }
5873
5917
  },
5874
5918
  "eras-islamic": {
5875
5919
  "0": {
5920
+ "_code": "islamic",
5921
+ "_aliases": "ah",
5876
5922
  "_start": "622-7-15"
5877
5923
  }
5878
5924
  },
5879
5925
  "eras-persian": {
5880
5926
  "0": {
5927
+ "_code": "persian",
5928
+ "_aliases": "ap",
5881
5929
  "_start": "622-01-01"
5882
5930
  }
5883
5931
  },
5884
5932
  "eras-buddhist": {
5885
5933
  "0": {
5934
+ "_code": "buddhist",
5935
+ "_aliases": "be",
5886
5936
  "_start": "-542-01-01"
5887
5937
  }
5888
5938
  },
5889
5939
  "eras-japanese": {
5890
5940
  "232": {
5941
+ "_code": "meiji",
5891
5942
  "_start": "1868-9-8"
5892
5943
  },
5893
5944
  "233": {
5945
+ "_code": "taisho",
5894
5946
  "_start": "1912-7-30"
5895
5947
  },
5896
5948
  "234": {
5949
+ "_code": "showa",
5897
5950
  "_start": "1926-12-25"
5898
5951
  },
5899
5952
  "235": {
5953
+ "_code": "heisei",
5900
5954
  "_start": "1989-1-8"
5901
5955
  },
5902
5956
  "236": {
5957
+ "_code": "reiwa",
5903
5958
  "_start": "2019-5-1"
5904
5959
  }
5905
5960
  },