@openui5/sap.ui.core 1.119.0 → 1.120.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (828) hide show
  1. package/THIRDPARTY.txt +6 -6
  2. package/package.json +1 -1
  3. package/src/jquery.sap.global.js +40 -111
  4. package/src/jquery.sap.properties.js +7 -1
  5. package/src/jquery.sap.resources.js +1 -1
  6. package/src/jquery.sap.script.js +5 -3
  7. package/src/jquery.sap.storage.js +6 -3
  8. package/src/sap/base/Event.js +32 -78
  9. package/src/sap/base/Eventing.js +114 -271
  10. package/src/sap/base/Log.js +21 -1
  11. package/src/sap/base/config.js +14 -9
  12. package/src/sap/base/i18n/Formatting.js +378 -250
  13. package/src/sap/base/i18n/LanguageTag.js +64 -66
  14. package/src/sap/base/i18n/Localization.js +124 -85
  15. package/src/sap/base/i18n/ResourceBundle.js +1 -1
  16. package/src/sap/base/i18n/date/CalendarType.js +2 -2
  17. package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
  18. package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
  19. package/src/sap/base/util/LoaderExtensions.js +8 -2
  20. package/src/sap/base/util/mixedFetch.js +1 -0
  21. package/src/sap/base/util/resolveReference.js +31 -13
  22. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  23. package/src/sap/base/util/restricted/_castArray.js +1 -1
  24. package/src/sap/base/util/restricted/_compact.js +1 -1
  25. package/src/sap/base/util/restricted/_curry.js +1 -1
  26. package/src/sap/base/util/restricted/_debounce.js +1 -1
  27. package/src/sap/base/util/restricted/_difference.js +1 -1
  28. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  29. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  30. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  31. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  32. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  33. package/src/sap/base/util/restricted/_flatten.js +1 -1
  34. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  35. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  36. package/src/sap/base/util/restricted/_intersection.js +1 -1
  37. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  38. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  39. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  40. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  41. package/src/sap/base/util/restricted/_isNil.js +1 -1
  42. package/src/sap/base/util/restricted/_max.js +1 -1
  43. package/src/sap/base/util/restricted/_merge.js +1 -1
  44. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  45. package/src/sap/base/util/restricted/_min.js +1 -1
  46. package/src/sap/base/util/restricted/_omit.js +1 -1
  47. package/src/sap/base/util/restricted/_pick.js +1 -1
  48. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  49. package/src/sap/base/util/restricted/_throttle.js +1 -1
  50. package/src/sap/base/util/restricted/_toArray.js +1 -1
  51. package/src/sap/base/util/restricted/_union.js +1 -1
  52. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  53. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  54. package/src/sap/base/util/restricted/_uniq.js +1 -1
  55. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  56. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  57. package/src/sap/base/util/restricted/_without.js +1 -1
  58. package/src/sap/base/util/restricted/_xor.js +1 -1
  59. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  60. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  61. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  62. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  63. package/src/sap/base/util/syncFetch.js +1 -0
  64. package/src/sap/ui/Device.js +3 -3
  65. package/src/sap/ui/Global.js +6 -7
  66. package/src/sap/ui/base/BindingInfo.js +3 -3
  67. package/src/sap/ui/base/BindingParser.js +5 -2
  68. package/src/sap/ui/base/DataType.js +57 -1
  69. package/src/sap/ui/base/DesignTime.js +69 -0
  70. package/src/sap/ui/base/Event.js +2 -2
  71. package/src/sap/ui/base/EventProvider.js +1 -1
  72. package/src/sap/ui/base/ExpressionParser.js +25 -4
  73. package/src/sap/ui/base/Interface.js +1 -1
  74. package/src/sap/ui/base/ManagedObject.js +102 -29
  75. package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
  76. package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
  77. package/src/sap/ui/base/Metadata.js +3 -3
  78. package/src/sap/ui/base/Object.js +19 -1
  79. package/src/sap/ui/base/ObjectPool.js +1 -1
  80. package/src/sap/ui/core/.library +3 -3
  81. package/src/sap/ui/core/AnimationMode.js +2 -2
  82. package/src/sap/ui/core/AppCacheBuster.js +30 -18
  83. package/src/sap/ui/core/BusyIndicator.js +1 -1
  84. package/src/sap/ui/core/CalendarType.js +6 -0
  85. package/src/sap/ui/core/Component.js +150 -80
  86. package/src/sap/ui/core/ComponentContainer.js +4 -3
  87. package/src/sap/ui/core/ComponentMetadata.js +3 -4
  88. package/src/sap/ui/core/ComponentSupport.js +1 -1
  89. package/src/sap/ui/core/Configuration.js +390 -706
  90. package/src/sap/ui/core/Control.js +1 -1
  91. package/src/sap/ui/core/ControlBehavior.js +37 -28
  92. package/src/sap/ui/core/Core.js +327 -151
  93. package/src/sap/ui/core/CustomData.js +1 -1
  94. package/src/sap/ui/core/DeclarativeSupport.js +3 -1
  95. package/src/sap/ui/core/Element.js +18 -8
  96. package/src/sap/ui/core/ElementMetadata.js +1 -1
  97. package/src/sap/ui/core/EnabledPropagator.js +3 -2
  98. package/src/sap/ui/core/EventBus.js +1 -1
  99. package/src/sap/ui/core/Fragment.js +1 -1
  100. package/src/sap/ui/core/HTML.js +1 -1
  101. package/src/sap/ui/core/History.js +1 -1
  102. package/src/sap/ui/core/Icon.js +1 -1
  103. package/src/sap/ui/core/IndicationColorSupport.js +13 -1
  104. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  105. package/src/sap/ui/core/InvisibleMessage.js +2 -3
  106. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  107. package/src/sap/ui/core/InvisibleText.js +17 -1
  108. package/src/sap/ui/core/Item.js +1 -1
  109. package/src/sap/ui/core/LabelEnablement.js +8 -1
  110. package/src/sap/ui/core/LayoutData.js +1 -1
  111. package/src/sap/ui/core/Lib.js +195 -29
  112. package/src/sap/ui/core/ListItem.js +1 -1
  113. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  114. package/src/sap/ui/core/Locale.js +1 -1
  115. package/src/sap/ui/core/LocaleData.js +118 -32
  116. package/src/sap/ui/core/Manifest.js +4 -2
  117. package/src/sap/ui/core/Message.js +1 -1
  118. package/src/sap/ui/core/Placeholder.js +18 -0
  119. package/src/sap/ui/core/Popup.js +5 -0
  120. package/src/sap/ui/core/RenderManager.js +21 -17
  121. package/src/sap/ui/core/Renderer.js +1 -1
  122. package/src/sap/ui/core/Rendering.js +51 -47
  123. package/src/sap/ui/core/ResizeHandler.js +2 -2
  124. package/src/sap/ui/core/ScrollBar.js +1 -1
  125. package/src/sap/ui/core/SeparatorItem.js +1 -1
  126. package/src/sap/ui/core/Shortcut.js +5 -3
  127. package/src/sap/ui/core/Supportability.js +146 -0
  128. package/src/sap/ui/core/Theming.js +130 -88
  129. package/src/sap/ui/core/Title.js +1 -1
  130. package/src/sap/ui/core/TooltipBase.js +4 -3
  131. package/src/sap/ui/core/UIArea.js +1 -4
  132. package/src/sap/ui/core/UIComponent.js +38 -12
  133. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  134. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  135. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  136. package/src/sap/ui/core/XMLComposite.js +1 -1
  137. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  138. package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
  139. package/src/sap/ui/core/_IconRegistry.js +13 -6
  140. package/src/sap/ui/core/cldr/ar.json +143 -137
  141. package/src/sap/ui/core/cldr/ar_EG.json +143 -137
  142. package/src/sap/ui/core/cldr/ar_SA.json +143 -137
  143. package/src/sap/ui/core/cldr/bg.json +423 -423
  144. package/src/sap/ui/core/cldr/ca.json +541 -494
  145. package/src/sap/ui/core/cldr/cs.json +475 -364
  146. package/src/sap/ui/core/cldr/cy.json +656 -477
  147. package/src/sap/ui/core/cldr/da.json +334 -275
  148. package/src/sap/ui/core/cldr/de.json +388 -291
  149. package/src/sap/ui/core/cldr/de_AT.json +388 -291
  150. package/src/sap/ui/core/cldr/de_CH.json +394 -297
  151. package/src/sap/ui/core/cldr/el.json +169 -166
  152. package/src/sap/ui/core/cldr/el_CY.json +169 -166
  153. package/src/sap/ui/core/cldr/en.json +558 -521
  154. package/src/sap/ui/core/cldr/en_AU.json +558 -520
  155. package/src/sap/ui/core/cldr/en_GB.json +476 -439
  156. package/src/sap/ui/core/cldr/en_HK.json +520 -482
  157. package/src/sap/ui/core/cldr/en_IE.json +486 -448
  158. package/src/sap/ui/core/cldr/en_IN.json +466 -428
  159. package/src/sap/ui/core/cldr/en_NZ.json +506 -468
  160. package/src/sap/ui/core/cldr/en_PG.json +506 -468
  161. package/src/sap/ui/core/cldr/en_SG.json +506 -468
  162. package/src/sap/ui/core/cldr/en_ZA.json +486 -448
  163. package/src/sap/ui/core/cldr/es.json +473 -468
  164. package/src/sap/ui/core/cldr/es_AR.json +445 -440
  165. package/src/sap/ui/core/cldr/es_BO.json +479 -474
  166. package/src/sap/ui/core/cldr/es_CL.json +469 -464
  167. package/src/sap/ui/core/cldr/es_CO.json +387 -381
  168. package/src/sap/ui/core/cldr/es_MX.json +502 -497
  169. package/src/sap/ui/core/cldr/es_PE.json +455 -450
  170. package/src/sap/ui/core/cldr/es_UY.json +479 -474
  171. package/src/sap/ui/core/cldr/es_VE.json +499 -494
  172. package/src/sap/ui/core/cldr/et.json +378 -320
  173. package/src/sap/ui/core/cldr/fa.json +104 -104
  174. package/src/sap/ui/core/cldr/fi.json +401 -315
  175. package/src/sap/ui/core/cldr/fr.json +391 -385
  176. package/src/sap/ui/core/cldr/fr_BE.json +391 -385
  177. package/src/sap/ui/core/cldr/fr_CA.json +499 -493
  178. package/src/sap/ui/core/cldr/fr_CH.json +334 -328
  179. package/src/sap/ui/core/cldr/fr_LU.json +391 -385
  180. package/src/sap/ui/core/cldr/he.json +291 -159
  181. package/src/sap/ui/core/cldr/hi.json +157 -128
  182. package/src/sap/ui/core/cldr/hr.json +514 -461
  183. package/src/sap/ui/core/cldr/hu.json +287 -257
  184. package/src/sap/ui/core/cldr/id.json +463 -416
  185. package/src/sap/ui/core/cldr/it.json +468 -413
  186. package/src/sap/ui/core/cldr/it_CH.json +468 -413
  187. package/src/sap/ui/core/cldr/ja.json +98 -61
  188. package/src/sap/ui/core/cldr/kk.json +631 -571
  189. package/src/sap/ui/core/cldr/ko.json +79 -71
  190. package/src/sap/ui/core/cldr/lt.json +361 -270
  191. package/src/sap/ui/core/cldr/lv.json +234 -242
  192. package/src/sap/ui/core/cldr/ms.json +463 -408
  193. package/src/sap/ui/core/cldr/nb.json +176 -143
  194. package/src/sap/ui/core/cldr/nl.json +463 -393
  195. package/src/sap/ui/core/cldr/nl_BE.json +463 -393
  196. package/src/sap/ui/core/cldr/pl.json +633 -344
  197. package/src/sap/ui/core/cldr/pt.json +447 -336
  198. package/src/sap/ui/core/cldr/pt_PT.json +488 -449
  199. package/src/sap/ui/core/cldr/ro.json +477 -383
  200. package/src/sap/ui/core/cldr/ru.json +367 -332
  201. package/src/sap/ui/core/cldr/ru_UA.json +361 -326
  202. package/src/sap/ui/core/cldr/sk.json +502 -537
  203. package/src/sap/ui/core/cldr/sl.json +168 -161
  204. package/src/sap/ui/core/cldr/sr.json +276 -225
  205. package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
  206. package/src/sap/ui/core/cldr/sv.json +420 -346
  207. package/src/sap/ui/core/cldr/th.json +117 -94
  208. package/src/sap/ui/core/cldr/tr.json +413 -359
  209. package/src/sap/ui/core/cldr/uk.json +395 -368
  210. package/src/sap/ui/core/cldr/vi.json +392 -379
  211. package/src/sap/ui/core/cldr/zh_CN.json +91 -33
  212. package/src/sap/ui/core/cldr/zh_HK.json +90 -32
  213. package/src/sap/ui/core/cldr/zh_SG.json +90 -32
  214. package/src/sap/ui/core/cldr/zh_TW.json +75 -51
  215. package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
  216. package/src/sap/ui/core/date/UI5Date.js +1 -1
  217. package/src/sap/ui/core/date/_Calendars.js +5 -2
  218. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  219. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  220. package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
  221. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  222. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  223. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  224. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  225. package/src/sap/ui/core/format/DateFormat.js +33 -21
  226. package/src/sap/ui/core/format/NumberFormat.js +3 -2
  227. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  228. package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
  229. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  230. package/src/sap/ui/core/library.js +128 -8
  231. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  232. package/src/sap/ui/core/message/Message.js +2 -2
  233. package/src/sap/ui/core/message/MessageManager.js +1 -1
  234. package/src/sap/ui/core/message/MessageParser.js +1 -1
  235. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  236. package/src/sap/ui/core/message/MessageType.js +2 -1
  237. package/src/sap/ui/core/messagebundle.properties +24 -0
  238. package/src/sap/ui/core/messagebundle_ar.properties +15 -3
  239. package/src/sap/ui/core/messagebundle_bg.properties +14 -2
  240. package/src/sap/ui/core/messagebundle_ca.properties +13 -1
  241. package/src/sap/ui/core/messagebundle_cs.properties +15 -3
  242. package/src/sap/ui/core/messagebundle_cy.properties +16 -4
  243. package/src/sap/ui/core/messagebundle_da.properties +15 -3
  244. package/src/sap/ui/core/messagebundle_de.properties +15 -3
  245. package/src/sap/ui/core/messagebundle_el.properties +16 -4
  246. package/src/sap/ui/core/messagebundle_en.properties +12 -0
  247. package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
  248. package/src/sap/ui/core/messagebundle_es.properties +15 -3
  249. package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
  250. package/src/sap/ui/core/messagebundle_et.properties +15 -3
  251. package/src/sap/ui/core/messagebundle_fi.properties +15 -3
  252. package/src/sap/ui/core/messagebundle_fr.properties +15 -3
  253. package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
  254. package/src/sap/ui/core/messagebundle_hi.properties +16 -4
  255. package/src/sap/ui/core/messagebundle_hr.properties +14 -2
  256. package/src/sap/ui/core/messagebundle_hu.properties +16 -4
  257. package/src/sap/ui/core/messagebundle_id.properties +15 -3
  258. package/src/sap/ui/core/messagebundle_it.properties +17 -5
  259. package/src/sap/ui/core/messagebundle_iw.properties +15 -3
  260. package/src/sap/ui/core/messagebundle_ja.properties +25 -13
  261. package/src/sap/ui/core/messagebundle_kk.properties +15 -3
  262. package/src/sap/ui/core/messagebundle_ko.properties +14 -2
  263. package/src/sap/ui/core/messagebundle_lt.properties +15 -3
  264. package/src/sap/ui/core/messagebundle_lv.properties +15 -3
  265. package/src/sap/ui/core/messagebundle_mk.properties +352 -0
  266. package/src/sap/ui/core/messagebundle_ms.properties +15 -3
  267. package/src/sap/ui/core/messagebundle_nl.properties +15 -3
  268. package/src/sap/ui/core/messagebundle_no.properties +14 -2
  269. package/src/sap/ui/core/messagebundle_pl.properties +15 -3
  270. package/src/sap/ui/core/messagebundle_pt.properties +15 -3
  271. package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
  272. package/src/sap/ui/core/messagebundle_ro.properties +15 -3
  273. package/src/sap/ui/core/messagebundle_ru.properties +15 -3
  274. package/src/sap/ui/core/messagebundle_sh.properties +43 -31
  275. package/src/sap/ui/core/messagebundle_sk.properties +16 -4
  276. package/src/sap/ui/core/messagebundle_sl.properties +15 -3
  277. package/src/sap/ui/core/messagebundle_sv.properties +22 -10
  278. package/src/sap/ui/core/messagebundle_th.properties +15 -3
  279. package/src/sap/ui/core/messagebundle_tr.properties +15 -3
  280. package/src/sap/ui/core/messagebundle_uk.properties +18 -6
  281. package/src/sap/ui/core/messagebundle_vi.properties +18 -6
  282. package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
  283. package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
  284. package/src/sap/ui/core/mvc/Controller.js +22 -16
  285. package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
  286. package/src/sap/ui/core/mvc/HTMLView.js +2 -2
  287. package/src/sap/ui/core/mvc/JSONView.js +4 -1
  288. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
  289. package/src/sap/ui/core/mvc/JSView.js +1 -1
  290. package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
  291. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  292. package/src/sap/ui/core/mvc/View.js +24 -14
  293. package/src/sap/ui/core/mvc/ViewType.js +2 -0
  294. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  295. package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
  296. package/src/sap/ui/core/plugin/LessSupport.js +3 -1
  297. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  298. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  299. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  300. package/src/sap/ui/core/routing/Router.js +2 -4
  301. package/src/sap/ui/core/routing/Target.js +1 -3
  302. package/src/sap/ui/core/routing/Targets.js +2 -3
  303. package/src/sap/ui/core/routing/Views.js +2 -3
  304. package/src/sap/ui/core/routing/async/Target.js +1 -1
  305. package/src/sap/ui/core/rules/Config.support.js +11 -17
  306. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  307. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  308. package/src/sap/ui/core/service/Service.js +1 -1
  309. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  310. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  311. package/src/sap/ui/core/support/Hotkeys.js +5 -3
  312. package/src/sap/ui/core/support/Plugin.js +1 -1
  313. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
  314. package/src/sap/ui/core/support/Support.js +3 -5
  315. package/src/sap/ui/core/support/ToolsAPI.js +15 -11
  316. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  317. package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
  318. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  319. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  320. package/src/sap/ui/core/support/plugins/Selector.js +7 -5
  321. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  322. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  323. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  324. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
  325. package/src/sap/ui/core/syncStyleClass.js +2 -2
  326. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  327. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  328. package/src/sap/ui/core/themes/base/global.less +9 -9
  329. package/src/sap/ui/core/theming/Parameters.js +18 -19
  330. package/src/sap/ui/core/theming/ThemeManager.js +23 -4
  331. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  332. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  333. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  334. package/src/sap/ui/core/tmpl/Template.js +1 -1
  335. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  336. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  337. package/src/sap/ui/core/util/Export.js +1 -1
  338. package/src/sap/ui/core/util/ExportCell.js +1 -1
  339. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  340. package/src/sap/ui/core/util/ExportRow.js +1 -1
  341. package/src/sap/ui/core/util/ExportType.js +1 -1
  342. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  343. package/src/sap/ui/core/util/File.js +1 -1
  344. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  345. package/src/sap/ui/core/util/MockServer.js +1 -1
  346. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  347. package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
  348. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  349. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  350. package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
  351. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  352. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  353. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  354. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  355. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  356. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  357. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  358. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  359. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  360. package/src/sap/ui/debug/ControlTree.js +1 -1
  361. package/src/sap/ui/debug/DebugEnv.js +29 -7
  362. package/src/sap/ui/debug/PropertyList.js +1 -1
  363. package/src/sap/ui/model/ClientListBinding.js +3 -1
  364. package/src/sap/ui/model/ClientModel.js +1 -1
  365. package/src/sap/ui/model/ClientTreeBinding.js +3 -1
  366. package/src/sap/ui/model/CompositeDataState.js +1 -1
  367. package/src/sap/ui/model/CompositeType.js +1 -1
  368. package/src/sap/ui/model/DataState.js +2 -2
  369. package/src/sap/ui/model/Filter.js +39 -1
  370. package/src/sap/ui/model/FilterProcessor.js +12 -2
  371. package/src/sap/ui/model/ListBinding.js +5 -0
  372. package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
  373. package/src/sap/ui/model/MetaModel.js +1 -1
  374. package/src/sap/ui/model/Model.js +5 -1
  375. package/src/sap/ui/model/SelectionModel.js +1 -1
  376. package/src/sap/ui/model/SimpleType.js +1 -1
  377. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  378. package/src/sap/ui/model/TreeBinding.js +3 -0
  379. package/src/sap/ui/model/Type.js +1 -1
  380. package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
  381. package/src/sap/ui/model/json/JSONListBinding.js +3 -1
  382. package/src/sap/ui/model/json/JSONModel.js +1 -1
  383. package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
  384. package/src/sap/ui/model/message/MessageListBinding.js +3 -0
  385. package/src/sap/ui/model/message/MessageModel.js +1 -1
  386. package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
  387. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  388. package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
  389. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  390. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  391. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  392. package/src/sap/ui/model/odata/ODataModel.js +9 -5
  393. package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
  394. package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
  395. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
  396. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  397. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  398. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  399. package/src/sap/ui/model/odata/type/Date.js +1 -1
  400. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  401. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  402. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  403. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  404. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  405. package/src/sap/ui/model/odata/type/Double.js +1 -1
  406. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  407. package/src/sap/ui/model/odata/type/Int.js +1 -1
  408. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  409. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  410. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  411. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  412. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  413. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  414. package/src/sap/ui/model/odata/type/Single.js +1 -1
  415. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  416. package/src/sap/ui/model/odata/type/String.js +1 -1
  417. package/src/sap/ui/model/odata/type/Time.js +1 -1
  418. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  419. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  420. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  421. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  422. package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
  423. package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
  424. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
  425. package/src/sap/ui/model/odata/v4/Context.js +81 -7
  426. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
  427. package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
  428. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
  429. package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
  430. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
  431. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
  432. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
  433. package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
  434. package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
  435. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
  436. package/src/sap/ui/model/resource/ResourceModel.js +5 -6
  437. package/src/sap/ui/model/type/Boolean.js +1 -1
  438. package/src/sap/ui/model/type/Currency.js +1 -1
  439. package/src/sap/ui/model/type/Date.js +1 -1
  440. package/src/sap/ui/model/type/DateInterval.js +1 -1
  441. package/src/sap/ui/model/type/DateTime.js +1 -1
  442. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  443. package/src/sap/ui/model/type/FileSize.js +1 -1
  444. package/src/sap/ui/model/type/Float.js +1 -1
  445. package/src/sap/ui/model/type/Integer.js +1 -1
  446. package/src/sap/ui/model/type/String.js +1 -1
  447. package/src/sap/ui/model/type/Time.js +1 -1
  448. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  449. package/src/sap/ui/model/type/Unit.js +1 -1
  450. package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
  451. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  452. package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
  453. package/src/sap/ui/performance/BeaconRequest.js +2 -2
  454. package/src/sap/ui/qunit/QUnitUtils.js +64 -45
  455. package/src/sap/ui/qunit/qunit-coverage.js +6 -0
  456. package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
  457. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  458. package/src/sap/ui/security/Security.js +128 -0
  459. package/src/sap/ui/test/BlanketReporter.js +2 -3
  460. package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
  461. package/src/sap/ui/test/BranchTracking.js +2 -3
  462. package/src/sap/ui/test/ModuleTracking.js +48 -20
  463. package/src/sap/ui/test/OpaExtension.js +3 -3
  464. package/src/sap/ui/test/OpaPlugin.js +16 -6
  465. package/src/sap/ui/test/TestUtils.js +7 -4
  466. package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
  467. package/src/sap/ui/test/_ControlFinder.js +3 -2
  468. package/src/sap/ui/test/_LogCollector.js +1 -0
  469. package/src/sap/ui/test/_UsageReport.js +115 -114
  470. package/src/sap/ui/test/actions/EnterText.js +20 -2
  471. package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
  472. package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
  473. package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
  474. package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
  475. package/src/sap/ui/test/generic/TestBase.js +1 -1
  476. package/src/sap/ui/test/generic/Utils.js +1 -1
  477. package/src/sap/ui/test/matchers/LabelFor.js +2 -12
  478. package/src/sap/ui/test/matchers/Matcher.js +1 -1
  479. package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
  480. package/src/sap/ui/test/selectors/_Selector.js +1 -1
  481. package/src/sap/ui/util/Storage.js +1 -1
  482. package/src/ui5loader-autoconfig.js +84 -11
  483. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
  484. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
  485. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
  486. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
  487. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
  488. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
  489. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
  490. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
  491. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
  492. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
  493. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
  494. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
  495. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
  496. package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
  497. package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
  498. package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
  499. package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
  500. package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
  501. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
  502. package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
  503. package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
  504. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
  505. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
  506. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
  507. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
  508. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
  509. package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
  510. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
  511. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
  512. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
  513. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
  514. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
  515. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
  516. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
  517. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
  518. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
  519. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
  520. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
  521. package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
  522. package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
  523. package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
  524. package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
  525. package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
  526. package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
  527. package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
  528. package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
  529. package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
  530. package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
  531. package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
  532. package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
  533. package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
  534. package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
  535. package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
  536. package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
  537. package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
  538. package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
  539. package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
  540. package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
  541. package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
  542. package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
  543. package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
  544. package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
  545. package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
  546. package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
  547. package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
  548. package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
  549. package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
  550. package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
  551. package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
  552. package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
  553. package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
  554. package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
  555. package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
  556. package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
  557. package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
  558. package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
  559. package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
  560. package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
  561. package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
  562. package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
  563. package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
  564. package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
  565. package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
  566. package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
  567. package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
  568. package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
  569. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
  570. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
  571. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
  572. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
  573. package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
  574. package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
  575. package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
  576. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
  577. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
  578. package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
  579. package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
  580. package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
  581. package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
  582. package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
  583. package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
  584. package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
  585. package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
  586. package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
  587. package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
  588. package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
  589. package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
  590. package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
  591. package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
  592. package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
  593. package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
  594. package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
  595. package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
  596. package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
  597. package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
  598. package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
  599. package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
  600. package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
  601. package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
  602. package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
  603. package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
  604. package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
  605. package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
  606. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
  607. package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
  608. package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
  609. package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
  610. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
  611. package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
  612. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
  613. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
  614. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
  615. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
  616. package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
  617. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
  618. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
  619. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
  620. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
  621. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
  622. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
  623. package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
  624. package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
  625. package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
  626. package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
  627. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
  628. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
  629. package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
  630. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
  631. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
  632. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
  633. package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
  634. package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
  635. package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
  636. package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
  637. package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
  638. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
  639. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
  640. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
  641. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
  642. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
  643. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
  644. package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
  645. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
  646. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
  647. package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
  648. package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
  649. package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
  650. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
  651. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
  652. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
  653. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
  654. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
  655. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
  656. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
  657. package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
  658. package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
  659. package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
  660. package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
  661. package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
  662. package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
  663. package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
  664. package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
  665. package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
  666. package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
  667. package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
  668. package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
  669. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
  670. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
  671. package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
  672. package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
  673. package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
  674. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
  675. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
  676. package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
  677. package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
  678. package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
  679. package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
  680. package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
  681. package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
  682. package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
  683. package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
  684. package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
  685. package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
  686. package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
  687. package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
  688. package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
  689. package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
  690. package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
  691. package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
  692. package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
  693. package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
  694. package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
  695. package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
  696. package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
  697. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
  698. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
  699. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
  700. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
  701. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
  702. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
  703. package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
  704. package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
  705. package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
  706. package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
  707. package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
  708. package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
  709. package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
  710. package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
  711. package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
  712. package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
  713. package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
  714. package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
  715. package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
  716. package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
  717. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
  718. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
  719. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
  720. package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
  721. package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
  722. package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
  723. package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
  724. package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
  725. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
  726. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
  727. package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
  728. package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
  729. package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
  730. package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
  731. package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
  732. package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
  733. package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
  734. package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
  735. package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
  736. package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
  737. package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
  738. package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
  739. package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
  740. package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
  741. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
  742. package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
  743. package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
  744. package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
  745. package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
  746. package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
  747. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
  748. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
  749. package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
  750. package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
  751. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
  752. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
  753. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
  754. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
  755. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
  756. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
  757. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
  758. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
  759. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
  760. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
  761. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
  762. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
  763. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
  764. package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
  765. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
  766. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
  767. package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
  768. package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
  769. package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
  770. package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
  771. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
  772. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
  773. package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
  774. package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
  775. package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
  776. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
  777. package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
  778. package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
  779. package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
  780. package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
  781. package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
  782. package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
  783. package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
  784. package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
  785. package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
  786. package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
  787. package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
  788. package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
  789. package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
  790. package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
  791. package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
  792. package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
  793. package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
  794. package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
  795. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
  796. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
  797. package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
  798. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
  799. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
  800. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
  801. package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
  802. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
  803. package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
  804. package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
  805. package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
  806. package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
  807. package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
  808. package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
  809. package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
  810. package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
  811. package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
  812. package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
  813. package/test/sap/ui/core/terminologies/App.controller.js +2 -3
  814. package/test/sap/ui/core/terminologies/main.js +2 -3
  815. package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
  816. package/src/sap/ui/core/ConfigTest.js +0 -17
  817. package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
  818. package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
  819. package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
  820. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
  821. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
  822. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
  823. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
  824. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
  825. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
  826. package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
  827. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
  828. package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
3
- "__version": "41.0.0",
4
- "__buildtime": "2022-12-19T09:41:25.319Z",
3
+ "__version": "43.0.0",
4
+ "__buildtime": "2023-09-28T11:39:07.908Z",
5
5
  "languages": {
6
6
  "aa": "afarčina",
7
7
  "ab": "abcházčina",
@@ -21,6 +21,7 @@
21
21
  "am": "amharčina",
22
22
  "an": "aragónčina",
23
23
  "ang": "stará angličtina",
24
+ "ann": "obolo",
24
25
  "anp": "angika",
25
26
  "ar": "arabčina",
26
27
  "ar_001": "arabčina (moderná štandardná)",
@@ -32,6 +33,7 @@
32
33
  "as": "ásamčina",
33
34
  "asa": "asu",
34
35
  "ast": "astúrčina",
36
+ "atj": "atikamekwčina",
35
37
  "av": "avarčina",
36
38
  "awa": "awadhi",
37
39
  "ay": "aymarčina",
@@ -91,13 +93,21 @@
91
93
  "ckb": "kurdčina (sorání)",
92
94
  "ckb_alt-menu": "kurdčina (sorání)",
93
95
  "ckb_alt-variant": "kurdčina (sorání)",
96
+ "clc": "chilcotin",
94
97
  "co": "korzičtina",
95
98
  "cop": "koptčina",
96
99
  "cr": "krí",
100
+ "crg": "michif",
97
101
  "crh": "krymská tatárčina",
102
+ "crj": "cree (juhovýchod)",
103
+ "crk": "plains cree",
104
+ "crl": "northern east cree",
105
+ "crm": "moose cree",
106
+ "crr": "karolínska algonkčina",
98
107
  "crs": "seychelská kreolčina",
99
108
  "cs": "čeština",
100
109
  "csb": "kašubčina",
110
+ "csw": "swampy cree",
101
111
  "cu": "cirkevná slovančina",
102
112
  "cv": "čuvaština",
103
113
  "cy": "waleština",
@@ -190,6 +200,7 @@
190
200
  "ha": "hauština",
191
201
  "hai": "haida",
192
202
  "haw": "havajčina",
203
+ "hax": "haida (juh)",
193
204
  "he": "hebrejčina",
194
205
  "hi": "hindčina",
195
206
  "hil": "hiligajnončina",
@@ -201,6 +212,7 @@
201
212
  "ht": "haitská kreolčina",
202
213
  "hu": "maďarčina",
203
214
  "hup": "hupčina",
215
+ "hur": "halkomelem",
204
216
  "hy": "arménčina",
205
217
  "hz": "herero",
206
218
  "ia": "interlingua",
@@ -211,6 +223,7 @@
211
223
  "ig": "igboština",
212
224
  "ii": "s’čchuanská iovčina",
213
225
  "ik": "inupik",
226
+ "ikt": "inuktitut (západná Kanada)",
214
227
  "ilo": "ilokánčina",
215
228
  "inh": "inguština",
216
229
  "io": "ido",
@@ -238,7 +251,7 @@
238
251
  "kea": "kapverdčina",
239
252
  "kfo": "koro",
240
253
  "kg": "kongčina",
241
- "kgp": "kgp",
254
+ "kgp": "kaingang",
242
255
  "kha": "khasijčina",
243
256
  "kho": "chotančina",
244
257
  "khq": "západná songhajčina",
@@ -269,6 +282,7 @@
269
282
  "kut": "kutenajčina",
270
283
  "kv": "komijčina",
271
284
  "kw": "kornčina",
285
+ "kwk": "kwakʼwala",
272
286
  "ky": "kirgizština",
273
287
  "la": "latinčina",
274
288
  "lad": "židovská španielčina",
@@ -279,7 +293,7 @@
279
293
  "lez": "lezginčina",
280
294
  "lg": "gandčina",
281
295
  "li": "limburčina",
282
- "lij": "lij",
296
+ "lil": "lillooet",
283
297
  "lkt": "lakotčina",
284
298
  "ln": "lingalčina",
285
299
  "lo": "laoština",
@@ -287,6 +301,7 @@
287
301
  "lou": "kreolčina (Louisiana)",
288
302
  "loz": "lozi",
289
303
  "lrc": "severné luri",
304
+ "lsm": "saamia",
290
305
  "lt": "litovčina",
291
306
  "lu": "lubčina (katanžská)",
292
307
  "lua": "lubčina (luluánska)",
@@ -322,6 +337,7 @@
322
337
  "mn": "mongolčina",
323
338
  "mnc": "mandžuština",
324
339
  "mni": "manípurčina",
340
+ "moe": "innu-aimunčina",
325
341
  "moh": "mohawkčina",
326
342
  "mos": "mossi",
327
343
  "mr": "maráthčina",
@@ -369,6 +385,11 @@
369
385
  "nzi": "nzima",
370
386
  "oc": "okcitánčina",
371
387
  "oj": "odžibva",
388
+ "ojb": "northwestern ojibwa",
389
+ "ojc": "centrálna odžibvejčina",
390
+ "ojs": "oji-cree",
391
+ "ojw": "ojibwa (západ)",
392
+ "oka": "okanagan",
372
393
  "om": "oromčina",
373
394
  "or": "uríjčina",
374
395
  "os": "osetčina",
@@ -384,8 +405,10 @@
384
405
  "peo": "stará perzština",
385
406
  "phn": "feničtina",
386
407
  "pi": "pálí",
408
+ "pis": "pidžin",
387
409
  "pl": "poľština",
388
410
  "pon": "pohnpeiština",
411
+ "pqm": "maliseet-passamaquoddy",
389
412
  "prg": "pruština",
390
413
  "pro": "stará okcitánčina",
391
414
  "ps": "paštčina",
@@ -437,6 +460,7 @@
437
460
  "sid": "sidamo",
438
461
  "sk": "slovenčina",
439
462
  "sl": "slovinčina",
463
+ "slh": "lushootseed (juh)",
440
464
  "sm": "samojčina",
441
465
  "sma": "saamčina (južná)",
442
466
  "smj": "saamčina (lulská)",
@@ -453,6 +477,7 @@
453
477
  "ss": "svazijčina",
454
478
  "ssy": "saho",
455
479
  "st": "sothčina (južná)",
480
+ "str": "straits salish",
456
481
  "su": "sundčina",
457
482
  "suk": "sukuma",
458
483
  "sus": "susu",
@@ -464,13 +489,16 @@
464
489
  "syc": "sýrčina (klasická)",
465
490
  "syr": "sýrčina",
466
491
  "ta": "tamilčina",
492
+ "tce": "tutchone (juh)",
467
493
  "te": "telugčina",
468
494
  "tem": "temne",
469
495
  "teo": "teso",
470
496
  "ter": "terêna",
471
497
  "tet": "tetumčina",
472
498
  "tg": "tadžičtina",
499
+ "tgx": "tagiš",
473
500
  "th": "thajčina",
501
+ "tht": "tahltan",
474
502
  "ti": "tigriňa",
475
503
  "tig": "tigrejčina",
476
504
  "tiv": "tiv",
@@ -483,12 +511,14 @@
483
511
  "tn": "tswančina",
484
512
  "to": "tongčina",
485
513
  "tog": "ňasa tonga",
514
+ "tok": "toki pona",
486
515
  "tpi": "novoguinejský pidžin",
487
516
  "tr": "turečtina",
488
517
  "trv": "taroko",
489
518
  "ts": "tsongčina",
490
519
  "tsi": "cimšjančina",
491
520
  "tt": "tatárčina",
521
+ "ttm": "northern tutchone",
492
522
  "tum": "tumbuka",
493
523
  "tvl": "tuvalčina",
494
524
  "tw": "twi",
@@ -517,6 +547,7 @@
517
547
  "was": "washo",
518
548
  "wbp": "warlpiri",
519
549
  "wo": "wolofčina",
550
+ "wuu": "čínština (wu)",
520
551
  "xal": "kalmyčtina",
521
552
  "xh": "xhoština",
522
553
  "xog": "soga",
@@ -526,7 +557,7 @@
526
557
  "ybb": "yemba",
527
558
  "yi": "jidiš",
528
559
  "yo": "jorubčina",
529
- "yrl": "yrl",
560
+ "yrl": "nheengatu",
530
561
  "yue": "kantončina",
531
562
  "yue_alt-menu": "čínština (kantonská)",
532
563
  "za": "čuangčina",
@@ -546,181 +577,71 @@
546
577
  "zza": "zaza"
547
578
  },
548
579
  "scripts": {
549
- "Adlm": "Adlm",
550
- "Aghb": "Aghb",
551
- "Ahom": "Ahom",
580
+ "Adlm": "adlam",
552
581
  "Arab": "arabské",
553
582
  "Arab-alt-variant": "perzsko-arabské",
554
583
  "Aran": "nastaliq",
555
- "Armi": "Armi",
556
584
  "Armn": "arménske",
557
- "Avst": "Avst",
558
585
  "Bali": "balijský",
559
- "Bamu": "Bamu",
560
- "Bass": "Bass",
561
- "Batk": "Batk",
562
586
  "Beng": "bengálske",
563
- "Bhks": "Bhks",
564
587
  "Bopo": "bopomofo",
565
- "Brah": "Brah",
566
588
  "Brai": "braillovo",
567
- "Bugi": "Bugi",
568
- "Buhd": "Buhd",
569
- "Cakm": "Cakm",
570
- "Cans": "Cans",
571
- "Cari": "Cari",
572
- "Cham": "Cham",
573
- "Cher": "Cher",
574
- "Chrs": "Chrs",
575
- "Copt": "Copt",
576
- "Cpmn": "Cpmn",
577
- "Cprt": "Cprt",
589
+ "Cakm": "čakma",
590
+ "Cans": "zjednotené kanadské domorodé slabiky",
591
+ "Cher": "čerokézčina",
578
592
  "Cyrl": "cyrilika",
579
593
  "Deva": "dévanágarí",
580
- "Diak": "Diak",
581
- "Dogr": "Dogr",
582
- "Dsrt": "Dsrt",
583
- "Dupl": "Dupl",
584
594
  "Egyp": "egyptské hieroglyfy",
585
- "Elba": "Elba",
586
- "Elym": "Elym",
587
595
  "Ethi": "etiópske",
588
596
  "Geor": "gruzínske",
589
597
  "Glag": "hlaholika",
590
- "Gong": "Gong",
591
- "Gonm": "Gonm",
592
598
  "Goth": "gotický",
593
- "Gran": "Gran",
594
599
  "Grek": "grécke",
595
600
  "Gujr": "gudžarátí",
596
601
  "Guru": "gurmukhi",
597
602
  "Hanb": "čínske a bopomofo",
598
603
  "Hang": "hangul",
599
604
  "Hani": "čínske",
600
- "Hano": "Hano",
601
605
  "Hans": "zjednodušené",
602
606
  "Hans-alt-stand-alone": "čínske zjednodušené",
603
607
  "Hant": "tradičné",
604
608
  "Hant-alt-stand-alone": "čínske tradičné",
605
- "Hatr": "Hatr",
606
609
  "Hebr": "hebrejské",
607
610
  "Hira": "hiragana",
608
- "Hluw": "Hluw",
609
- "Hmng": "Hmng",
610
- "Hmnp": "Hmnp",
611
611
  "Hrkt": "kana",
612
- "Hung": "Hung",
613
- "Ital": "Ital",
614
612
  "Jamo": "jamo",
615
- "Java": "Java",
616
613
  "Jpan": "japonské",
617
- "Kali": "Kali",
618
614
  "Kana": "katakana",
619
- "Kawi": "Kawi",
620
- "Khar": "Khar",
621
615
  "Khmr": "khmérske",
622
- "Khoj": "Khoj",
623
- "Kits": "Kits",
624
616
  "Knda": "kannadské",
625
617
  "Kore": "kórejské",
626
- "Kthi": "Kthi",
627
- "Lana": "Lana",
628
618
  "Laoo": "laoské",
629
619
  "Latn": "latinka",
630
- "Lepc": "Lepc",
631
- "Limb": "Limb",
632
620
  "Lina": "lineárna A",
633
621
  "Linb": "lineárna B",
634
- "Lisu": "Lisu",
635
- "Lyci": "Lyci",
636
- "Lydi": "Lydi",
637
- "Mahj": "Mahj",
638
- "Maka": "Maka",
639
- "Mand": "Mand",
640
- "Mani": "Mani",
641
- "Marc": "Marc",
642
622
  "Maya": "mayské hieroglyfy",
643
- "Medf": "Medf",
644
- "Mend": "Mend",
645
- "Merc": "Merc",
646
- "Mero": "Mero",
647
623
  "Mlym": "malajálamske",
648
- "Modi": "Modi",
649
624
  "Mong": "mongolské",
650
- "Mroo": "Mroo",
651
625
  "Mtei": "mejtej majek (manipurské)",
652
- "Mult": "Mult",
653
626
  "Mymr": "barmské",
654
- "Nagm": "Nagm",
655
- "Nand": "Nand",
656
- "Narb": "Narb",
657
- "Nbat": "Nbat",
658
- "Newa": "Newa",
659
- "Nkoo": "Nkoo",
660
- "Nshu": "Nshu",
661
- "Ogam": "Ogam",
627
+ "Nkoo": "bambarčina",
662
628
  "Olck": "santálske (ol chiki)",
663
- "Orkh": "Orkh",
664
629
  "Orya": "uríjske",
665
- "Osge": "Osge",
666
630
  "Osma": "osmanský",
667
- "Ougr": "Ougr",
668
- "Palm": "Palm",
669
- "Pauc": "Pauc",
670
- "Perm": "Perm",
671
- "Phag": "Phag",
672
- "Phli": "Phli",
673
- "Phlp": "Phlp",
674
- "Phnx": "Phnx",
675
- "Plrd": "Plrd",
676
- "Prti": "Prti",
677
631
  "Qaag": "zawgyi",
678
- "Rjng": "Rjng",
679
- "Rohg": "Rohg",
632
+ "Rohg": "hanifi",
680
633
  "Runr": "Runové písmo",
681
- "Samr": "Samr",
682
- "Sarb": "Sarb",
683
- "Saur": "Saur",
684
- "Sgnw": "Sgnw",
685
- "Shaw": "Shaw",
686
- "Shrd": "Shrd",
687
- "Sidd": "Sidd",
688
- "Sind": "Sind",
689
634
  "Sinh": "sinhálske",
690
- "Sogd": "Sogd",
691
- "Sogo": "Sogo",
692
- "Sora": "Sora",
693
- "Soyo": "Soyo",
694
- "Sund": "Sund",
695
- "Sylo": "Sylo",
696
- "Syrc": "Syrc",
697
- "Tagb": "Tagb",
698
- "Takr": "Takr",
699
- "Tale": "Tale",
700
- "Talu": "Talu",
635
+ "Sund": "sundčina",
636
+ "Syrc": "sýrčina",
701
637
  "Taml": "tamilské",
702
- "Tang": "Tang",
703
- "Tavt": "Tavt",
704
638
  "Telu": "telugské",
705
- "Tfng": "Tfng",
706
- "Tglg": "Tglg",
639
+ "Tfng": "tifinagh",
707
640
  "Thaa": "tána",
708
641
  "Thai": "thajské",
709
642
  "Tibt": "tibetské",
710
- "Tirh": "Tirh",
711
- "Tnsa": "Tnsa",
712
- "Toto": "Toto",
713
- "Ugar": "Ugar",
714
- "Vaii": "Vaii",
715
- "Vith": "Vith",
716
- "Wara": "Wara",
717
- "Wcho": "Wcho",
718
- "Xpeo": "Xpeo",
719
- "Xsux": "Xsux",
720
- "Yezi": "Yezi",
721
- "Yiii": "Yiii",
722
- "Zanb": "Zanb",
723
- "Zinh": "Zinh",
643
+ "Vaii": "vai",
644
+ "Yiii": "yi",
724
645
  "Zmth": "matematický zápis",
725
646
  "Zsye": "emodži",
726
647
  "Zsym": "symboly",
@@ -946,6 +867,7 @@
946
867
  "NR": "Nauru",
947
868
  "NU": "Niue",
948
869
  "NZ": "Nový Zéland",
870
+ "NZ-alt-variant": "Nový Zéland",
949
871
  "OM": "Omán",
950
872
  "PA": "Panama",
951
873
  "PE": "Peru",
@@ -1005,6 +927,7 @@
1005
927
  "TN": "Tunisko",
1006
928
  "TO": "Tonga",
1007
929
  "TR": "Turecko",
930
+ "TR-alt-variant": "Turecko",
1008
931
  "TT": "Trinidad a Tobago",
1009
932
  "TV": "Tuvalu",
1010
933
  "TW": "Taiwan",
@@ -1065,9 +988,9 @@
1065
988
  "EBhm": "E h:mm B",
1066
989
  "EBhms": "E h:mm:ss B",
1067
990
  "Ed": "E d.",
1068
- "Ehm": "E h:mm a",
991
+ "Ehm": "E h:mma",
1069
992
  "EHm": "E HH:mm",
1070
- "Ehms": "E h:mm:ss a",
993
+ "Ehms": "E h:mm:ssa",
1071
994
  "EHms": "E HH:mm:ss",
1072
995
  "Gy": "y G",
1073
996
  "GyMd": "d. M. y GGGGG",
@@ -1075,15 +998,15 @@
1075
998
  "GyMMMd": "d. M. y G",
1076
999
  "GyMMMEd": "E d. M. y G",
1077
1000
  "GyMMMMd": "d. M. y G",
1078
- "h": "h a",
1001
+ "h": "ha",
1079
1002
  "H": "H",
1080
- "hm": "h:mm a",
1003
+ "hm": "h:mma",
1081
1004
  "Hm": "H:mm",
1082
- "hms": "h:mm:ss a",
1005
+ "hms": "h:mm:ssa",
1083
1006
  "Hms": "H:mm:ss",
1084
- "hmsv": "h:mm:ss a v",
1007
+ "hmsv": "h:mm:ssa v",
1085
1008
  "Hmsv": "H:mm:ss v",
1086
- "hmv": "h:mm a v",
1009
+ "hmv": "h:mma v",
1087
1010
  "Hmv": "H:mm v",
1088
1011
  "M": "L.",
1089
1012
  "Md": "d. M.",
@@ -1123,148 +1046,148 @@
1123
1046
  "Year": "{1} {0}"
1124
1047
  },
1125
1048
  "intervalFormats": {
1126
- "intervalFormatFallback": "{0} {1}",
1049
+ "intervalFormatFallback": "{0}{1}",
1127
1050
  "Bh": {
1128
1051
  "B": "h B – h B",
1129
- "h": "h h B"
1052
+ "h": "hh B"
1130
1053
  },
1131
1054
  "Bhm": {
1132
1055
  "B": "h:mm B – h:mm B",
1133
- "h": "h:mm h:mm B",
1134
- "m": "h:mm h:mm B"
1056
+ "h": "h:mmh:mm B",
1057
+ "m": "h:mmh:mm B"
1135
1058
  },
1136
1059
  "d": {
1137
- "d": "d. d."
1060
+ "d": "d.d."
1138
1061
  },
1139
1062
  "Gy": {
1140
- "G": "y G y G",
1141
- "y": "y y G"
1063
+ "G": "y Gy G",
1064
+ "y": "yy G"
1142
1065
  },
1143
1066
  "GyM": {
1144
- "G": "M/y GGGGG M/y GGGGG",
1145
- "M": "M/y M/y GGGGG",
1146
- "y": "M/y M/y GGGGG"
1067
+ "G": "M/y GGGGGM/y GGGGG",
1068
+ "M": "M/yM/y GGGGG",
1069
+ "y": "M/yM/y GGGGG"
1147
1070
  },
1148
1071
  "GyMd": {
1149
- "d": "d. M. y d. M. y GGGGG",
1150
- "G": "d. M. y GGGGG d. M. y GGGGG",
1151
- "M": "d. M. y d. M. y GGGGG",
1152
- "y": "d. M. y d. M. y GGGGG"
1072
+ "d": "d. M. yd. M. y GGGGG",
1073
+ "G": "d. M. y GGGGGd. M. y GGGGG",
1074
+ "M": "d. M. yd. M. y GGGGG",
1075
+ "y": "d. M. yd. M. y GGGGG"
1153
1076
  },
1154
1077
  "GyMEd": {
1155
- "d": "E d. M. y E d. M. y GGGGG",
1156
- "G": "E d. M. y GGGGG E d. M. y GGGGG",
1157
- "M": "E d. M. y E d. M. y GGGGG",
1158
- "y": "E d. M. y E d. M. y GGGGG"
1078
+ "d": "E d. M. yE d. M. y GGGGG",
1079
+ "G": "E d. M. y GGGGGE d. M. y GGGGG",
1080
+ "M": "E d. M. yE d. M. y GGGGG",
1081
+ "y": "E d. M. yE d. M. y GGGGG"
1159
1082
  },
1160
1083
  "GyMMM": {
1161
- "G": "LLLL y G LLLL y G",
1162
- "M": "LLLL LLLL y G",
1163
- "y": "LLLL y LLLL y G"
1084
+ "G": "LLLL y GLLLL y G",
1085
+ "M": "LLLLLLLL y G",
1086
+ "y": "LLLL yLLLL y G"
1164
1087
  },
1165
1088
  "GyMMMd": {
1166
- "d": "d. d. M. y G",
1167
- "G": "d. M. y G d. M. y G",
1168
- "M": "d. M. d. M. y G",
1169
- "y": "d. M. y d. M. y G"
1089
+ "d": "d.d. M. y G",
1090
+ "G": "d. M. y Gd. M. y G",
1091
+ "M": "d. M.d. M. y G",
1092
+ "y": "d. M. yd. M. y G"
1170
1093
  },
1171
1094
  "GyMMMEd": {
1172
- "d": "E d. M. E d. M. y G",
1173
- "G": "E d. M. y G E d. M. y G",
1174
- "M": "E d. M. E d. M. y G",
1175
- "y": "E d. M. y E d. M. y G"
1095
+ "d": "E d. M.E d. M. y G",
1096
+ "G": "E d. M. y GE d. M. y G",
1097
+ "M": "E d. M.E d. M. y G",
1098
+ "y": "E d. M. yE d. M. y G"
1176
1099
  },
1177
1100
  "h": {
1178
- "a": "h a h a",
1179
- "h": "h h a"
1101
+ "a": "haha",
1102
+ "h": "hha"
1180
1103
  },
1181
1104
  "H": {
1182
- "H": "HH HH"
1105
+ "H": "HHHH"
1183
1106
  },
1184
1107
  "hm": {
1185
- "a": "h:mm a h:mm a",
1186
- "h": "h:mm h:mm a",
1187
- "m": "h:mm h:mm a"
1108
+ "a": "h:mmah:mma",
1109
+ "h": "h:mmh:mma",
1110
+ "m": "h:mmh:mma"
1188
1111
  },
1189
1112
  "Hm": {
1190
- "H": "H:mm H:mm",
1191
- "m": "H:mm H:mm"
1113
+ "H": "H:mmH:mm",
1114
+ "m": "H:mmH:mm"
1192
1115
  },
1193
1116
  "hmv": {
1194
- "a": "h:mm a h:mm a v",
1195
- "h": "h:mm h:mm a v",
1196
- "m": "h:mm h:mm a v"
1117
+ "a": "h:mmah:mma v",
1118
+ "h": "h:mmh:mma v",
1119
+ "m": "h:mmh:mma v"
1197
1120
  },
1198
1121
  "Hmv": {
1199
- "H": "H:mm H:mm v",
1200
- "m": "H:mm H:mm v"
1122
+ "H": "H:mmH:mm v",
1123
+ "m": "H:mmH:mm v"
1201
1124
  },
1202
1125
  "hv": {
1203
- "a": "h a h a v",
1204
- "h": "h h a v"
1126
+ "a": "haha v",
1127
+ "h": "hha v"
1205
1128
  },
1206
1129
  "Hv": {
1207
- "H": "HH HH v"
1130
+ "H": "HHHH v"
1208
1131
  },
1209
1132
  "M": {
1210
- "M": "M. M."
1133
+ "M": "M.M."
1211
1134
  },
1212
1135
  "Md": {
1213
- "d": "d. M. d. M.",
1214
- "M": "d. M. d. M."
1136
+ "d": "d. M.d. M.",
1137
+ "M": "d. M.d. M."
1215
1138
  },
1216
1139
  "MEd": {
1217
- "d": "E d. M. E d. M.",
1218
- "M": "E d. M. E d. M."
1140
+ "d": "E d. M.E d. M.",
1141
+ "M": "E d. M.E d. M."
1219
1142
  },
1220
1143
  "MMM": {
1221
- "M": "LLL LLL"
1144
+ "M": "LLLLLL"
1222
1145
  },
1223
1146
  "MMMd": {
1224
- "d": "d. d. M.",
1225
- "M": "d. M. d. M."
1147
+ "d": "d.d. M.",
1148
+ "M": "d. M.d. M."
1226
1149
  },
1227
1150
  "MMMEd": {
1228
- "d": "E d. E d. M.",
1229
- "M": "E d. M. E d. M."
1151
+ "d": "E d.E d. M.",
1152
+ "M": "E d. M.E d. M."
1230
1153
  },
1231
1154
  "MMMM": {
1232
- "M": "LLLL LLLL"
1155
+ "M": "LLLLLLLL"
1233
1156
  },
1234
1157
  "y": {
1235
- "y": "y y"
1158
+ "y": "yy"
1236
1159
  },
1237
1160
  "yM": {
1238
- "M": "M/y M/y",
1239
- "y": "M/y M/y"
1161
+ "M": "M/yM/y",
1162
+ "y": "M/yM/y"
1240
1163
  },
1241
1164
  "yMd": {
1242
- "d": "d. M. y d. M. y",
1243
- "M": "d. M. y d. M. y",
1244
- "y": "d. M. y d. M. y"
1165
+ "d": "d. M. yd. M. y",
1166
+ "M": "d. M. yd. M. y",
1167
+ "y": "d. M. yd. M. y"
1245
1168
  },
1246
1169
  "yMEd": {
1247
- "d": "E d. M. y E d. M. y",
1248
- "M": "E d. M. y E d. M. y",
1249
- "y": "E d. M. y E d. M. y"
1170
+ "d": "E d. M. yE d. M. y",
1171
+ "M": "E d. M. yE d. M. y",
1172
+ "y": "E d. M. yE d. M. y"
1250
1173
  },
1251
1174
  "yMMM": {
1252
- "M": "M M/y",
1253
- "y": "M/y M/y"
1175
+ "M": "MM/y",
1176
+ "y": "M/yM/y"
1254
1177
  },
1255
1178
  "yMMMd": {
1256
- "d": "d. d. M. y",
1257
- "M": "d. M. d. M. y",
1258
- "y": "d. M. y d. M. y"
1179
+ "d": "d.d. M. y",
1180
+ "M": "d. M.d. M. y",
1181
+ "y": "d. M. yd. M. y"
1259
1182
  },
1260
1183
  "yMMMEd": {
1261
- "d": "E d. E d. M. y",
1262
- "M": "E d. M. E d. M. y",
1263
- "y": "E d. M. y E d. M. y"
1184
+ "d": "E d.E d. M. y",
1185
+ "M": "E d. M.E d. M. y",
1186
+ "y": "E d. M. yE d. M. y"
1264
1187
  },
1265
1188
  "yMMMM": {
1266
- "M": "LLLL LLLL y",
1267
- "y": "LLLL y LLLL y"
1189
+ "M": "LLLLLLLL y",
1190
+ "y": "LLLL yLLLL y"
1268
1191
  }
1269
1192
  }
1270
1193
  },
@@ -1608,9 +1531,9 @@
1608
1531
  "EBhm": "E h:mm B",
1609
1532
  "EBhms": "E h:mm:ss B",
1610
1533
  "Ed": "E d.",
1611
- "Ehm": "E h:mm a",
1534
+ "Ehm": "E h:mma",
1612
1535
  "EHm": "E H:mm",
1613
- "Ehms": "E h:mm:ss a",
1536
+ "Ehms": "E h:mm:ssa",
1614
1537
  "EHms": "E H:mm:ss",
1615
1538
  "Gy": "y G",
1616
1539
  "GyMd": "GGGGG y-MM-dd",
@@ -1618,11 +1541,11 @@
1618
1541
  "GyMMMd": "d. M. y G",
1619
1542
  "GyMMMEd": "E d. M. y G",
1620
1543
  "GyMMMMd": "d. M. y G",
1621
- "h": "h a",
1544
+ "h": "ha",
1622
1545
  "H": "H",
1623
- "hm": "h:mm a",
1546
+ "hm": "h:mma",
1624
1547
  "Hm": "H:mm",
1625
- "hms": "h:mm:ss a",
1548
+ "hms": "h:mm:ssa",
1626
1549
  "Hms": "H:mm:ss",
1627
1550
  "M": "M.",
1628
1551
  "Md": "d. M.",
@@ -1661,148 +1584,148 @@
1661
1584
  "Year": "{1} {0}"
1662
1585
  },
1663
1586
  "intervalFormats": {
1664
- "intervalFormatFallback": "{0} {1}",
1587
+ "intervalFormatFallback": "{0}{1}",
1665
1588
  "Bh": {
1666
1589
  "B": "h B – h B",
1667
- "h": "h h B"
1590
+ "h": "hh B"
1668
1591
  },
1669
1592
  "Bhm": {
1670
1593
  "B": "h:mm B – h:mm B",
1671
- "h": "h:mm h:mm B",
1672
- "m": "h:mm h:mm B"
1594
+ "h": "h:mmh:mm B",
1595
+ "m": "h:mmh:mm B"
1673
1596
  },
1674
1597
  "d": {
1675
- "d": "d. d."
1598
+ "d": "d.d."
1676
1599
  },
1677
1600
  "Gy": {
1678
- "G": "y G y G",
1679
- "y": "y y G"
1601
+ "G": "y Gy G",
1602
+ "y": "yy G"
1680
1603
  },
1681
1604
  "GyM": {
1682
- "G": "M/y GGGGG M/y GGGGG",
1683
- "M": "M/y M/y GGGGG",
1684
- "y": "M/y M/y GGGGG"
1605
+ "G": "M/y GGGGGM/y GGGGG",
1606
+ "M": "M/yM/y GGGGG",
1607
+ "y": "M/yM/y GGGGG"
1685
1608
  },
1686
1609
  "GyMd": {
1687
- "d": "d. M. y d. M. y GGGGG",
1688
- "G": "d. M. y GGGGG d. M. y GGGGG",
1689
- "M": "d. M. y d. M. y GGGGG",
1690
- "y": "d. M. y d. M. y GGGGG"
1610
+ "d": "d. M. yd. M. y GGGGG",
1611
+ "G": "d. M. y GGGGGd. M. y GGGGG",
1612
+ "M": "d. M. yd. M. y GGGGG",
1613
+ "y": "d. M. yd. M. y GGGGG"
1691
1614
  },
1692
1615
  "GyMEd": {
1693
- "d": "E d. M. y E d. M. y GGGGG",
1694
- "G": "E d. M. y GGGGG E d. M. y GGGGG",
1695
- "M": "E d. M. y E d. M. y GGGGG",
1696
- "y": "E d. M. y E d. M. y GGGGG"
1616
+ "d": "E d. M. yE d. M. y GGGGG",
1617
+ "G": "E d. M. y GGGGGE d. M. y GGGGG",
1618
+ "M": "E d. M. yE d. M. y GGGGG",
1619
+ "y": "E d. M. yE d. M. y GGGGG"
1697
1620
  },
1698
1621
  "GyMMM": {
1699
- "G": "LLL y G LLL y G",
1700
- "M": "LLL LLL y G",
1701
- "y": "LLL y LLL y G"
1622
+ "G": "LLL y GLLL y G",
1623
+ "M": "LLLLLL y G",
1624
+ "y": "LLL yLLL y G"
1702
1625
  },
1703
1626
  "GyMMMd": {
1704
- "d": "d. d. M. y G",
1705
- "G": "d. M. y G d. M. y G",
1706
- "M": "d. M. d. M. y G",
1707
- "y": "d. M. y d. M. y G"
1627
+ "d": "d.d. M. y G",
1628
+ "G": "d. M. y Gd. M. y G",
1629
+ "M": "d. M.d. M. y G",
1630
+ "y": "d. M. yd. M. y G"
1708
1631
  },
1709
1632
  "GyMMMEd": {
1710
- "d": "E d. M. E d. M. y G",
1711
- "G": "E d. M. y G E d. M. y G",
1712
- "M": "E d. M. E d. M. y G",
1713
- "y": "E d. M. y E d. M. y G"
1633
+ "d": "E d. M.E d. M. y G",
1634
+ "G": "E d. M. y GE d. M. y G",
1635
+ "M": "E d. M.E d. M. y G",
1636
+ "y": "E d. M. yE d. M. y G"
1714
1637
  },
1715
1638
  "h": {
1716
- "a": "h a h a",
1717
- "h": "h h a"
1639
+ "a": "haha",
1640
+ "h": "hha"
1718
1641
  },
1719
1642
  "H": {
1720
- "H": "HH HH"
1643
+ "H": "HHHH"
1721
1644
  },
1722
1645
  "hm": {
1723
- "a": "h:mm a h:mm a",
1724
- "h": "h:mm h:mm a",
1725
- "m": "h:mm h:mm a"
1646
+ "a": "h:mmah:mma",
1647
+ "h": "h:mmh:mma",
1648
+ "m": "h:mmh:mma"
1726
1649
  },
1727
1650
  "Hm": {
1728
- "H": "H:mm H:mm",
1729
- "m": "H:mm H:mm"
1651
+ "H": "H:mmH:mm",
1652
+ "m": "H:mmH:mm"
1730
1653
  },
1731
1654
  "hmv": {
1732
- "a": "h:mm a h:mm a v",
1733
- "h": "h:mm h:mm a v",
1734
- "m": "h:mm h:mm a v"
1655
+ "a": "h:mmah:mma v",
1656
+ "h": "h:mmh:mma v",
1657
+ "m": "h:mmh:mma v"
1735
1658
  },
1736
1659
  "Hmv": {
1737
- "H": "H:mm H:mm v",
1738
- "m": "H:mm H:mm v"
1660
+ "H": "H:mmH:mm v",
1661
+ "m": "H:mmH:mm v"
1739
1662
  },
1740
1663
  "hv": {
1741
- "a": "h a h a v",
1742
- "h": "h h a v"
1664
+ "a": "haha v",
1665
+ "h": "hha v"
1743
1666
  },
1744
1667
  "Hv": {
1745
- "H": "HH HH v"
1668
+ "H": "HHHH v"
1746
1669
  },
1747
1670
  "M": {
1748
- "M": "M. M."
1671
+ "M": "M.M."
1749
1672
  },
1750
1673
  "Md": {
1751
- "d": "d. M. d. M.",
1752
- "M": "d. M. d. M."
1674
+ "d": "d. M.d. M.",
1675
+ "M": "d. M.d. M."
1753
1676
  },
1754
1677
  "MEd": {
1755
- "d": "E d. M. E d. M.",
1756
- "M": "E d. M. E d. M."
1678
+ "d": "E d. M.E d. M.",
1679
+ "M": "E d. M.E d. M."
1757
1680
  },
1758
1681
  "MMM": {
1759
- "M": "LLL LLL"
1682
+ "M": "LLLLLL"
1760
1683
  },
1761
1684
  "MMMd": {
1762
- "d": "d. d. M.",
1763
- "M": "d. M. d. M."
1685
+ "d": "d.d. M.",
1686
+ "M": "d. M.d. M."
1764
1687
  },
1765
1688
  "MMMEd": {
1766
- "d": "E d. E d. M.",
1767
- "M": "E d. M. E d. M."
1689
+ "d": "E d.E d. M.",
1690
+ "M": "E d. M.E d. M."
1768
1691
  },
1769
1692
  "MMMM": {
1770
- "M": "LLLL LLLL"
1693
+ "M": "LLLLLLLL"
1771
1694
  },
1772
1695
  "y": {
1773
- "y": "y y G"
1696
+ "y": "yy G"
1774
1697
  },
1775
1698
  "yM": {
1776
- "M": "M/y M/y GGGGG",
1777
- "y": "M/y M/y GGGGG"
1699
+ "M": "M/yM/y GGGGG",
1700
+ "y": "M/yM/y GGGGG"
1778
1701
  },
1779
1702
  "yMd": {
1780
- "d": "d. M. y d. M. y G",
1781
- "M": "d. M. y d. M. y G",
1782
- "y": "d. M. y d. M. y G"
1703
+ "d": "d. M. yd. M. y G",
1704
+ "M": "d. M. yd. M. y G",
1705
+ "y": "d. M. yd. M. y G"
1783
1706
  },
1784
1707
  "yMEd": {
1785
- "d": "E d. M. y E d. M. y G",
1786
- "M": "E d. M. y E d. M. y G",
1787
- "y": "E d. M. y E d. M. y G"
1708
+ "d": "E d. M. yE d. M. y G",
1709
+ "M": "E d. M. yE d. M. y G",
1710
+ "y": "E d. M. yE d. M. y G"
1788
1711
  },
1789
1712
  "yMMM": {
1790
- "M": "LLL LLL y G",
1791
- "y": "LLL y LLL y G"
1713
+ "M": "LLLLLL y G",
1714
+ "y": "LLL yLLL y G"
1792
1715
  },
1793
1716
  "yMMMd": {
1794
- "d": "d. d. M. y G",
1795
- "M": "d. M. d. M. y G",
1796
- "y": "d. M. y d. M. y G"
1717
+ "d": "d.d. M. y G",
1718
+ "M": "d. M.d. M. y G",
1719
+ "y": "d. M. yd. M. y G"
1797
1720
  },
1798
1721
  "yMMMEd": {
1799
- "d": "E d. E d. M. y G",
1800
- "M": "E d. M. E d. M. y G",
1801
- "y": "E d. M. y E d. M. y G"
1722
+ "d": "E d.E d. M. y G",
1723
+ "M": "E d. M.E d. M. y G",
1724
+ "y": "E d. M. yE d. M. y G"
1802
1725
  },
1803
1726
  "yMMMM": {
1804
- "M": "LLLL LLLL y G",
1805
- "y": "LLLL y LLLL y G"
1727
+ "M": "LLLLLLLL y G",
1728
+ "y": "LLLL yLLLL y G"
1806
1729
  }
1807
1730
  }
1808
1731
  },
@@ -2143,9 +2066,9 @@
2143
2066
  "EBhm": "E h:mm B",
2144
2067
  "EBhms": "E h:mm:ss B",
2145
2068
  "Ed": "E d.",
2146
- "Ehm": "E h:mm a",
2069
+ "Ehm": "E h:mma",
2147
2070
  "EHm": "E H:mm",
2148
- "Ehms": "E h:mm:ss a",
2071
+ "Ehms": "E h:mm:ssa",
2149
2072
  "EHms": "E H:mm:ss",
2150
2073
  "Gy": "y G",
2151
2074
  "GyMd": "GGGGG y-MM-dd",
@@ -2153,11 +2076,11 @@
2153
2076
  "GyMMMd": "d. M. y G",
2154
2077
  "GyMMMEd": "E d. M. y G",
2155
2078
  "GyMMMMd": "d. M. y G",
2156
- "h": "h a",
2079
+ "h": "ha",
2157
2080
  "H": "H",
2158
- "hm": "h:mm a",
2081
+ "hm": "h:mma",
2159
2082
  "Hm": "H:mm",
2160
- "hms": "h:mm:ss a",
2083
+ "hms": "h:mm:ssa",
2161
2084
  "Hms": "H:mm:ss",
2162
2085
  "M": "M.",
2163
2086
  "Md": "d. M.",
@@ -2196,156 +2119,156 @@
2196
2119
  "Year": "{1} {0}"
2197
2120
  },
2198
2121
  "intervalFormats": {
2199
- "intervalFormatFallback": "{0} {1}",
2122
+ "intervalFormatFallback": "{0}{1}",
2200
2123
  "Bh": {
2201
2124
  "B": "h B – h B",
2202
- "h": "h h B"
2125
+ "h": "hh B"
2203
2126
  },
2204
2127
  "Bhm": {
2205
2128
  "B": "h:mm B – h:mm B",
2206
- "h": "h:mm h:mm B",
2207
- "m": "h:mm h:mm B"
2129
+ "h": "h:mmh:mm B",
2130
+ "m": "h:mmh:mm B"
2208
2131
  },
2209
2132
  "d": {
2210
- "d": "d. d."
2133
+ "d": "d.d."
2211
2134
  },
2212
2135
  "Gy": {
2213
- "G": "y G y G",
2214
- "y": "y y G"
2136
+ "G": "y Gy G",
2137
+ "y": "yy G"
2215
2138
  },
2216
2139
  "GyM": {
2217
- "G": "M/y GGGGG M/y GGGGG",
2218
- "M": "M/y M/y GGGGG",
2219
- "y": "M/y M/y GGGGG"
2140
+ "G": "M/y GGGGGM/y GGGGG",
2141
+ "M": "M/yM/y GGGGG",
2142
+ "y": "M/yM/y GGGGG"
2220
2143
  },
2221
2144
  "GyMd": {
2222
- "d": "d. M. y d. M. y GGGGG",
2223
- "G": "d. M. y GGGGG d. M. y GGGGG",
2224
- "M": "d. M. y d. M. y GGGGG",
2225
- "y": "d. M. y d. M. y GGGGG"
2145
+ "d": "d. M. yd. M. y GGGGG",
2146
+ "G": "d. M. y GGGGGd. M. y GGGGG",
2147
+ "M": "d. M. yd. M. y GGGGG",
2148
+ "y": "d. M. yd. M. y GGGGG"
2226
2149
  },
2227
2150
  "GyMEd": {
2228
- "d": "E d. M. y E d. M. y GGGGG",
2229
- "G": "E d. M. y GGGGG E d. M. y GGGGG",
2230
- "M": "E d. M. y E d. M. y GGGGG",
2231
- "y": "E d. M. y E d. M. y GGGGG"
2151
+ "d": "E d. M. yE d. M. y GGGGG",
2152
+ "G": "E d. M. y GGGGGE d. M. y GGGGG",
2153
+ "M": "E d. M. yE d. M. y GGGGG",
2154
+ "y": "E d. M. yE d. M. y GGGGG"
2232
2155
  },
2233
2156
  "GyMMM": {
2234
- "G": "LLL y G LLL y G",
2235
- "M": "LLL LLL y G",
2236
- "y": "LLL y LLL y G"
2157
+ "G": "LLL y GLLL y G",
2158
+ "M": "LLLLLL y G",
2159
+ "y": "LLL yLLL y G"
2237
2160
  },
2238
2161
  "GyMMMd": {
2239
- "d": "d. d. M. y G",
2240
- "G": "d. M. y G d. M. y G",
2241
- "M": "d. M. d. M. y G",
2242
- "y": "d. M. y d. M. y G"
2162
+ "d": "d.d. M. y G",
2163
+ "G": "d. M. y Gd. M. y G",
2164
+ "M": "d. M.d. M. y G",
2165
+ "y": "d. M. yd. M. y G"
2243
2166
  },
2244
2167
  "GyMMMEd": {
2245
- "d": "E d. M. E d. M. y G",
2246
- "G": "E d. M. y G E d. M. y G",
2247
- "M": "E d. M. E d. M. y G",
2248
- "y": "E d. M. y E d. M. y G"
2168
+ "d": "E d. M.E d. M. y G",
2169
+ "G": "E d. M. y GE d. M. y G",
2170
+ "M": "E d. M.E d. M. y G",
2171
+ "y": "E d. M. yE d. M. y G"
2249
2172
  },
2250
2173
  "h": {
2251
- "a": "h a h a",
2252
- "h": "h h a"
2174
+ "a": "haha",
2175
+ "h": "hha"
2253
2176
  },
2254
2177
  "H": {
2255
- "H": "HH HH"
2178
+ "H": "HHHH"
2256
2179
  },
2257
2180
  "hm": {
2258
- "a": "h:mm a h:mm a",
2259
- "h": "h:mm h:mm a",
2260
- "m": "h:mm h:mm a"
2181
+ "a": "h:mmah:mma",
2182
+ "h": "h:mmh:mma",
2183
+ "m": "h:mmh:mma"
2261
2184
  },
2262
2185
  "Hm": {
2263
- "H": "H:mm H:mm",
2264
- "m": "H:mm H:mm"
2186
+ "H": "H:mmH:mm",
2187
+ "m": "H:mmH:mm"
2265
2188
  },
2266
2189
  "hmv": {
2267
- "a": "h:mm a h:mm a v",
2268
- "h": "h:mm h:mm a v",
2269
- "m": "h:mm h:mm a v"
2190
+ "a": "h:mmah:mma v",
2191
+ "h": "h:mmh:mma v",
2192
+ "m": "h:mmh:mma v"
2270
2193
  },
2271
2194
  "Hmv": {
2272
- "H": "H:mm H:mm v",
2273
- "m": "H:mm H:mm v"
2195
+ "H": "H:mmH:mm v",
2196
+ "m": "H:mmH:mm v"
2274
2197
  },
2275
2198
  "hv": {
2276
- "a": "h a h a v",
2277
- "h": "h h a v"
2199
+ "a": "haha v",
2200
+ "h": "hha v"
2278
2201
  },
2279
2202
  "Hv": {
2280
- "H": "HH HH v"
2203
+ "H": "HHHH v"
2281
2204
  },
2282
2205
  "M": {
2283
- "M": "M. M."
2206
+ "M": "M.M."
2284
2207
  },
2285
2208
  "Md": {
2286
- "d": "d. M. d. M.",
2287
- "M": "d. M. d. M."
2209
+ "d": "d. M.d. M.",
2210
+ "M": "d. M.d. M."
2288
2211
  },
2289
2212
  "MEd": {
2290
- "d": "E d. M. E d. M.",
2291
- "M": "E d. M. E d. M."
2213
+ "d": "E d. M.E d. M.",
2214
+ "M": "E d. M.E d. M."
2292
2215
  },
2293
2216
  "MMM": {
2294
- "M": "LLL LLL"
2217
+ "M": "LLLLLL"
2295
2218
  },
2296
2219
  "MMMd": {
2297
- "d": "d. d. M.",
2298
- "M": "d. M. d. M."
2220
+ "d": "d.d. M.",
2221
+ "M": "d. M.d. M."
2299
2222
  },
2300
2223
  "MMMEd": {
2301
- "d": "E d. E d. M.",
2302
- "M": "E d. M. E d. M."
2224
+ "d": "E d.E d. M.",
2225
+ "M": "E d. M.E d. M."
2303
2226
  },
2304
2227
  "MMMM": {
2305
- "M": "LLLL LLLL"
2228
+ "M": "LLLLLLLL"
2306
2229
  },
2307
2230
  "y": {
2308
- "y": "y y G",
2309
- "G": "y G y G"
2231
+ "y": "yy G",
2232
+ "G": "y Gy G"
2310
2233
  },
2311
2234
  "yM": {
2312
- "M": "M/y M/y GGGGG",
2313
- "y": "M/y M/y GGGGG",
2314
- "G": "M/y GGGGG M/y GGGGG"
2235
+ "M": "M/yM/y GGGGG",
2236
+ "y": "M/yM/y GGGGG",
2237
+ "G": "M/y GGGGGM/y GGGGG"
2315
2238
  },
2316
2239
  "yMd": {
2317
- "d": "d. M. y d. M. y G",
2318
- "M": "d. M. y d. M. y G",
2319
- "y": "d. M. y d. M. y G",
2320
- "G": "d. M. y G d. M. y G"
2240
+ "d": "d. M. yd. M. y G",
2241
+ "M": "d. M. yd. M. y G",
2242
+ "y": "d. M. yd. M. y G",
2243
+ "G": "d. M. y Gd. M. y G"
2321
2244
  },
2322
2245
  "yMEd": {
2323
- "d": "E d. M. y E d. M. y G",
2324
- "M": "E d. M. y E d. M. y G",
2325
- "y": "E d. M. y E d. M. y G",
2326
- "G": "E d. M. y G E d. M. y G"
2246
+ "d": "E d. M. yE d. M. y G",
2247
+ "M": "E d. M. yE d. M. y G",
2248
+ "y": "E d. M. yE d. M. y G",
2249
+ "G": "E d. M. y GE d. M. y G"
2327
2250
  },
2328
2251
  "yMMM": {
2329
- "M": "LLL LLL y G",
2330
- "y": "LLL y LLL y G",
2331
- "G": "LLL y G LLL y G"
2252
+ "M": "LLLLLL y G",
2253
+ "y": "LLL yLLL y G",
2254
+ "G": "LLL y GLLL y G"
2332
2255
  },
2333
2256
  "yMMMd": {
2334
- "d": "d. d. M. y G",
2335
- "M": "d. M. d. M. y G",
2336
- "y": "d. M. y d. M. y G",
2337
- "G": "d. M. y G d. M. y G"
2257
+ "d": "d.d. M. y G",
2258
+ "M": "d. M.d. M. y G",
2259
+ "y": "d. M. yd. M. y G",
2260
+ "G": "d. M. y Gd. M. y G"
2338
2261
  },
2339
2262
  "yMMMEd": {
2340
- "d": "E d. E d. M. y G",
2341
- "M": "E d. M. E d. M. y G",
2342
- "y": "E d. M. y E d. M. y G",
2343
- "G": "E d. M. y G E d. M. y G"
2263
+ "d": "E d.E d. M. y G",
2264
+ "M": "E d. M.E d. M. y G",
2265
+ "y": "E d. M. yE d. M. y G",
2266
+ "G": "E d. M. y GE d. M. y G"
2344
2267
  },
2345
2268
  "yMMMM": {
2346
- "M": "LLLL LLLL y G",
2347
- "y": "LLLL y LLLL y G",
2348
- "G": "LLLL y G LLLL y G"
2269
+ "M": "LLLLLLLL y G",
2270
+ "y": "LLLL yLLLL y G",
2271
+ "G": "LLLL y GLLLL y G"
2349
2272
  }
2350
2273
  }
2351
2274
  },
@@ -2698,9 +2621,9 @@
2698
2621
  "EBhm": "E h:mm B",
2699
2622
  "EBhms": "E h:mm:ss B",
2700
2623
  "Ed": "E d.",
2701
- "Ehm": "E h:mm a",
2624
+ "Ehm": "E h:mma",
2702
2625
  "EHm": "E H:mm",
2703
- "Ehms": "E h:mm:ss a",
2626
+ "Ehms": "E h:mm:ssa",
2704
2627
  "EHms": "E H:mm:ss",
2705
2628
  "Gy": "y G",
2706
2629
  "GyMd": "GGGGG y-MM-dd",
@@ -2708,11 +2631,11 @@
2708
2631
  "GyMMMd": "d. M. y G",
2709
2632
  "GyMMMEd": "E d. M. y G",
2710
2633
  "GyMMMMd": "d. M. y G",
2711
- "h": "h a",
2634
+ "h": "ha",
2712
2635
  "H": "H",
2713
- "hm": "h:mm a",
2636
+ "hm": "h:mma",
2714
2637
  "Hm": "H:mm",
2715
- "hms": "h:mm:ss a",
2638
+ "hms": "h:mm:ssa",
2716
2639
  "Hms": "H:mm:ss",
2717
2640
  "M": "M.",
2718
2641
  "Md": "d. M.",
@@ -2751,148 +2674,148 @@
2751
2674
  "Year": "{1} {0}"
2752
2675
  },
2753
2676
  "intervalFormats": {
2754
- "intervalFormatFallback": "{0} {1}",
2677
+ "intervalFormatFallback": "{0}{1}",
2755
2678
  "Bh": {
2756
2679
  "B": "h B – h B",
2757
- "h": "h h B"
2680
+ "h": "hh B"
2758
2681
  },
2759
2682
  "Bhm": {
2760
2683
  "B": "h:mm B – h:mm B",
2761
- "h": "h:mm h:mm B",
2762
- "m": "h:mm h:mm B"
2684
+ "h": "h:mmh:mm B",
2685
+ "m": "h:mmh:mm B"
2763
2686
  },
2764
2687
  "d": {
2765
- "d": "d. d."
2688
+ "d": "d.d."
2766
2689
  },
2767
2690
  "Gy": {
2768
- "G": "y G y G",
2769
- "y": "y y G"
2691
+ "G": "y Gy G",
2692
+ "y": "yy G"
2770
2693
  },
2771
2694
  "GyM": {
2772
- "G": "M/y GGGGG M/y GGGGG",
2773
- "M": "M/y M/y GGGGG",
2774
- "y": "M/y M/y GGGGG"
2695
+ "G": "M/y GGGGGM/y GGGGG",
2696
+ "M": "M/yM/y GGGGG",
2697
+ "y": "M/yM/y GGGGG"
2775
2698
  },
2776
2699
  "GyMd": {
2777
- "d": "d. M. y d. M. y GGGGG",
2778
- "G": "d. M. y GGGGG d. M. y GGGGG",
2779
- "M": "d. M. y d. M. y GGGGG",
2780
- "y": "d. M. y d. M. y GGGGG"
2700
+ "d": "d. M. yd. M. y GGGGG",
2701
+ "G": "d. M. y GGGGGd. M. y GGGGG",
2702
+ "M": "d. M. yd. M. y GGGGG",
2703
+ "y": "d. M. yd. M. y GGGGG"
2781
2704
  },
2782
2705
  "GyMEd": {
2783
- "d": "E d. M. y E d. M. y GGGGG",
2784
- "G": "E d. M. y GGGGG E d. M. y GGGGG",
2785
- "M": "E d. M. y E d. M. y GGGGG",
2786
- "y": "E d. M. y E d. M. y GGGGG"
2706
+ "d": "E d. M. yE d. M. y GGGGG",
2707
+ "G": "E d. M. y GGGGGE d. M. y GGGGG",
2708
+ "M": "E d. M. yE d. M. y GGGGG",
2709
+ "y": "E d. M. yE d. M. y GGGGG"
2787
2710
  },
2788
2711
  "GyMMM": {
2789
- "G": "LLL y G LLL y G",
2790
- "M": "LLL LLL y G",
2791
- "y": "LLL y LLL y G"
2712
+ "G": "LLL y GLLL y G",
2713
+ "M": "LLLLLL y G",
2714
+ "y": "LLL yLLL y G"
2792
2715
  },
2793
2716
  "GyMMMd": {
2794
- "d": "d. d. M. y G",
2795
- "G": "d. M. y G d. M. y G",
2796
- "M": "d. M. d. M. y G",
2797
- "y": "d. M. y d. M. y G"
2717
+ "d": "d.d. M. y G",
2718
+ "G": "d. M. y Gd. M. y G",
2719
+ "M": "d. M.d. M. y G",
2720
+ "y": "d. M. yd. M. y G"
2798
2721
  },
2799
2722
  "GyMMMEd": {
2800
- "d": "E d. M. E d. M. y G",
2801
- "G": "E d. M. y G E d. M. y G",
2802
- "M": "E d. M. E d. M. y G",
2803
- "y": "E d. M. y E d. M. y G"
2723
+ "d": "E d. M.E d. M. y G",
2724
+ "G": "E d. M. y GE d. M. y G",
2725
+ "M": "E d. M.E d. M. y G",
2726
+ "y": "E d. M. yE d. M. y G"
2804
2727
  },
2805
2728
  "h": {
2806
- "a": "h a h a",
2807
- "h": "h h a"
2729
+ "a": "haha",
2730
+ "h": "hha"
2808
2731
  },
2809
2732
  "H": {
2810
- "H": "HH HH"
2733
+ "H": "HHHH"
2811
2734
  },
2812
2735
  "hm": {
2813
- "a": "h:mm a h:mm a",
2814
- "h": "h:mm h:mm a",
2815
- "m": "h:mm h:mm a"
2736
+ "a": "h:mmah:mma",
2737
+ "h": "h:mmh:mma",
2738
+ "m": "h:mmh:mma"
2816
2739
  },
2817
2740
  "Hm": {
2818
- "H": "H:mm H:mm",
2819
- "m": "H:mm H:mm"
2741
+ "H": "H:mmH:mm",
2742
+ "m": "H:mmH:mm"
2820
2743
  },
2821
2744
  "hmv": {
2822
- "a": "h:mm a h:mm a v",
2823
- "h": "h:mm h:mm a v",
2824
- "m": "h:mm h:mm a v"
2745
+ "a": "h:mmah:mma v",
2746
+ "h": "h:mmh:mma v",
2747
+ "m": "h:mmh:mma v"
2825
2748
  },
2826
2749
  "Hmv": {
2827
- "H": "H:mm H:mm v",
2828
- "m": "H:mm H:mm v"
2750
+ "H": "H:mmH:mm v",
2751
+ "m": "H:mmH:mm v"
2829
2752
  },
2830
2753
  "hv": {
2831
- "a": "h a h a v",
2832
- "h": "h h a v"
2754
+ "a": "haha v",
2755
+ "h": "hha v"
2833
2756
  },
2834
2757
  "Hv": {
2835
- "H": "HH HH v"
2758
+ "H": "HHHH v"
2836
2759
  },
2837
2760
  "M": {
2838
- "M": "M. M."
2761
+ "M": "M.M."
2839
2762
  },
2840
2763
  "Md": {
2841
- "d": "d. M. d. M.",
2842
- "M": "d. M. d. M."
2764
+ "d": "d. M.d. M.",
2765
+ "M": "d. M.d. M."
2843
2766
  },
2844
2767
  "MEd": {
2845
- "d": "E d. M. E d. M.",
2846
- "M": "E d. M. E d. M."
2768
+ "d": "E d. M.E d. M.",
2769
+ "M": "E d. M.E d. M."
2847
2770
  },
2848
2771
  "MMM": {
2849
- "M": "LLL LLL"
2772
+ "M": "LLLLLL"
2850
2773
  },
2851
2774
  "MMMd": {
2852
- "d": "d. d. M.",
2853
- "M": "d. M. d. M."
2775
+ "d": "d.d. M.",
2776
+ "M": "d. M.d. M."
2854
2777
  },
2855
2778
  "MMMEd": {
2856
- "d": "E d. E d. M.",
2857
- "M": "E d. M. E d. M."
2779
+ "d": "E d.E d. M.",
2780
+ "M": "E d. M.E d. M."
2858
2781
  },
2859
2782
  "MMMM": {
2860
- "M": "LLLL LLLL"
2783
+ "M": "LLLLLLLL"
2861
2784
  },
2862
2785
  "y": {
2863
- "y": "y y G"
2786
+ "y": "yy G"
2864
2787
  },
2865
2788
  "yM": {
2866
- "M": "M/y M/y GGGGG",
2867
- "y": "M/y M/y GGGGG"
2789
+ "M": "M/yM/y GGGGG",
2790
+ "y": "M/yM/y GGGGG"
2868
2791
  },
2869
2792
  "yMd": {
2870
- "d": "d. M. y d. M. y G",
2871
- "M": "d. M. y d. M. y G",
2872
- "y": "d. M. y d. M. y G"
2793
+ "d": "d. M. yd. M. y G",
2794
+ "M": "d. M. yd. M. y G",
2795
+ "y": "d. M. yd. M. y G"
2873
2796
  },
2874
2797
  "yMEd": {
2875
- "d": "E d. M. y E d. M. y G",
2876
- "M": "E d. M. y E d. M. y G",
2877
- "y": "E d. M. y E d. M. y G"
2798
+ "d": "E d. M. yE d. M. y G",
2799
+ "M": "E d. M. yE d. M. y G",
2800
+ "y": "E d. M. yE d. M. y G"
2878
2801
  },
2879
2802
  "yMMM": {
2880
- "M": "LLL LLL y G",
2881
- "y": "LLL y LLL y G"
2803
+ "M": "LLLLLL y G",
2804
+ "y": "LLL yLLL y G"
2882
2805
  },
2883
2806
  "yMMMd": {
2884
- "d": "d. d. M. y G",
2885
- "M": "d. M. d. M. y G",
2886
- "y": "d. M. y d. M. y G"
2807
+ "d": "d.d. M. y G",
2808
+ "M": "d. M.d. M. y G",
2809
+ "y": "d. M. yd. M. y G"
2887
2810
  },
2888
2811
  "yMMMEd": {
2889
- "d": "E d. E d. M. y G",
2890
- "M": "E d. M. E d. M. y G",
2891
- "y": "E d. M. y E d. M. y G"
2812
+ "d": "E d.E d. M. y G",
2813
+ "M": "E d. M.E d. M. y G",
2814
+ "y": "E d. M. yE d. M. y G"
2892
2815
  },
2893
2816
  "yMMMM": {
2894
- "M": "LLLL LLLL y G",
2895
- "y": "LLLL y LLLL y G"
2817
+ "M": "LLLLLLLL y G",
2818
+ "y": "LLLL yLLLL y G"
2896
2819
  }
2897
2820
  }
2898
2821
  },
@@ -3233,9 +3156,9 @@
3233
3156
  "EBhm": "E h:mm B",
3234
3157
  "EBhms": "E h:mm:ss B",
3235
3158
  "Ed": "E d.",
3236
- "Ehm": "E h:mm a",
3159
+ "Ehm": "E h:mma",
3237
3160
  "EHm": "E H:mm",
3238
- "Ehms": "E h:mm:ss a",
3161
+ "Ehms": "E h:mm:ssa",
3239
3162
  "EHms": "E H:mm:ss",
3240
3163
  "Gy": "y G",
3241
3164
  "GyMd": "GGGGG y-MM-dd",
@@ -3243,11 +3166,11 @@
3243
3166
  "GyMMMd": "d. M. y G",
3244
3167
  "GyMMMEd": "E d. M. y G",
3245
3168
  "GyMMMMd": "d. M. y G",
3246
- "h": "h a",
3169
+ "h": "ha",
3247
3170
  "H": "H",
3248
- "hm": "h:mm a",
3171
+ "hm": "h:mma",
3249
3172
  "Hm": "H:mm",
3250
- "hms": "h:mm:ss a",
3173
+ "hms": "h:mm:ssa",
3251
3174
  "Hms": "H:mm:ss",
3252
3175
  "M": "M.",
3253
3176
  "Md": "d. M.",
@@ -3286,148 +3209,148 @@
3286
3209
  "Year": "{1} {0}"
3287
3210
  },
3288
3211
  "intervalFormats": {
3289
- "intervalFormatFallback": "{0} {1}",
3212
+ "intervalFormatFallback": "{0}{1}",
3290
3213
  "Bh": {
3291
3214
  "B": "h B – h B",
3292
- "h": "h h B"
3215
+ "h": "hh B"
3293
3216
  },
3294
3217
  "Bhm": {
3295
3218
  "B": "h:mm B – h:mm B",
3296
- "h": "h:mm h:mm B",
3297
- "m": "h:mm h:mm B"
3219
+ "h": "h:mmh:mm B",
3220
+ "m": "h:mmh:mm B"
3298
3221
  },
3299
3222
  "d": {
3300
- "d": "d. d."
3223
+ "d": "d.d."
3301
3224
  },
3302
3225
  "Gy": {
3303
- "G": "y G y G",
3304
- "y": "y y G"
3226
+ "G": "y Gy G",
3227
+ "y": "yy G"
3305
3228
  },
3306
3229
  "GyM": {
3307
- "G": "M/y GGGGG M/y GGGGG",
3308
- "M": "M/y M/y GGGGG",
3309
- "y": "M/y M/y GGGGG"
3230
+ "G": "M/y GGGGGM/y GGGGG",
3231
+ "M": "M/yM/y GGGGG",
3232
+ "y": "M/yM/y GGGGG"
3310
3233
  },
3311
3234
  "GyMd": {
3312
- "d": "d. M. y d. M. y GGGGG",
3313
- "G": "d. M. y GGGGG d. M. y GGGGG",
3314
- "M": "d. M. y d. M. y GGGGG",
3315
- "y": "d. M. y d. M. y GGGGG"
3235
+ "d": "d. M. yd. M. y GGGGG",
3236
+ "G": "d. M. y GGGGGd. M. y GGGGG",
3237
+ "M": "d. M. yd. M. y GGGGG",
3238
+ "y": "d. M. yd. M. y GGGGG"
3316
3239
  },
3317
3240
  "GyMEd": {
3318
- "d": "E d. M. y E d. M. y GGGGG",
3319
- "G": "E d. M. y GGGGG E d. M. y GGGGG",
3320
- "M": "E d. M. y E d. M. y GGGGG",
3321
- "y": "E d. M. y E d. M. y GGGGG"
3241
+ "d": "E d. M. yE d. M. y GGGGG",
3242
+ "G": "E d. M. y GGGGGE d. M. y GGGGG",
3243
+ "M": "E d. M. yE d. M. y GGGGG",
3244
+ "y": "E d. M. yE d. M. y GGGGG"
3322
3245
  },
3323
3246
  "GyMMM": {
3324
- "G": "LLL y G LLL y G",
3325
- "M": "LLL LLL y G",
3326
- "y": "LLL y LLL y G"
3247
+ "G": "LLL y GLLL y G",
3248
+ "M": "LLLLLL y G",
3249
+ "y": "LLL yLLL y G"
3327
3250
  },
3328
3251
  "GyMMMd": {
3329
- "d": "d. d. M. y G",
3330
- "G": "d. M. y G d. M. y G",
3331
- "M": "d. M. d. M. y G",
3332
- "y": "d. M. y d. M. y G"
3252
+ "d": "d.d. M. y G",
3253
+ "G": "d. M. y Gd. M. y G",
3254
+ "M": "d. M.d. M. y G",
3255
+ "y": "d. M. yd. M. y G"
3333
3256
  },
3334
3257
  "GyMMMEd": {
3335
- "d": "E d. M. E d. M. y G",
3336
- "G": "E d. M. y G E d. M. y G",
3337
- "M": "E d. M. E d. M. y G",
3338
- "y": "E d. M. y E d. M. y G"
3258
+ "d": "E d. M.E d. M. y G",
3259
+ "G": "E d. M. y GE d. M. y G",
3260
+ "M": "E d. M.E d. M. y G",
3261
+ "y": "E d. M. yE d. M. y G"
3339
3262
  },
3340
3263
  "h": {
3341
- "a": "h a h a",
3342
- "h": "h h a"
3264
+ "a": "haha",
3265
+ "h": "hha"
3343
3266
  },
3344
3267
  "H": {
3345
- "H": "HH HH"
3268
+ "H": "HHHH"
3346
3269
  },
3347
3270
  "hm": {
3348
- "a": "h:mm a h:mm a",
3349
- "h": "h:mm h:mm a",
3350
- "m": "h:mm h:mm a"
3271
+ "a": "h:mmah:mma",
3272
+ "h": "h:mmh:mma",
3273
+ "m": "h:mmh:mma"
3351
3274
  },
3352
3275
  "Hm": {
3353
- "H": "H:mm H:mm",
3354
- "m": "H:mm H:mm"
3276
+ "H": "H:mmH:mm",
3277
+ "m": "H:mmH:mm"
3355
3278
  },
3356
3279
  "hmv": {
3357
- "a": "h:mm a h:mm a v",
3358
- "h": "h:mm h:mm a v",
3359
- "m": "h:mm h:mm a v"
3280
+ "a": "h:mmah:mma v",
3281
+ "h": "h:mmh:mma v",
3282
+ "m": "h:mmh:mma v"
3360
3283
  },
3361
3284
  "Hmv": {
3362
- "H": "H:mm H:mm v",
3363
- "m": "H:mm H:mm v"
3285
+ "H": "H:mmH:mm v",
3286
+ "m": "H:mmH:mm v"
3364
3287
  },
3365
3288
  "hv": {
3366
- "a": "h a h a v",
3367
- "h": "h h a v"
3289
+ "a": "haha v",
3290
+ "h": "hha v"
3368
3291
  },
3369
3292
  "Hv": {
3370
- "H": "HH HH v"
3293
+ "H": "HHHH v"
3371
3294
  },
3372
3295
  "M": {
3373
- "M": "M. M."
3296
+ "M": "M.M."
3374
3297
  },
3375
3298
  "Md": {
3376
- "d": "d. M. d. M.",
3377
- "M": "d. M. d. M."
3299
+ "d": "d. M.d. M.",
3300
+ "M": "d. M.d. M."
3378
3301
  },
3379
3302
  "MEd": {
3380
- "d": "E d. M. E d. M.",
3381
- "M": "E d. M. E d. M."
3303
+ "d": "E d. M.E d. M.",
3304
+ "M": "E d. M.E d. M."
3382
3305
  },
3383
3306
  "MMM": {
3384
- "M": "LLL LLL"
3307
+ "M": "LLLLLL"
3385
3308
  },
3386
3309
  "MMMd": {
3387
- "d": "d. d. M.",
3388
- "M": "d. M. d. M."
3310
+ "d": "d.d. M.",
3311
+ "M": "d. M.d. M."
3389
3312
  },
3390
3313
  "MMMEd": {
3391
- "d": "E d. E d. M.",
3392
- "M": "E d. M. E d. M."
3314
+ "d": "E d.E d. M.",
3315
+ "M": "E d. M.E d. M."
3393
3316
  },
3394
3317
  "MMMM": {
3395
- "M": "LLLL LLLL"
3318
+ "M": "LLLLLLLL"
3396
3319
  },
3397
3320
  "y": {
3398
- "y": "y y G"
3321
+ "y": "yy G"
3399
3322
  },
3400
3323
  "yM": {
3401
- "M": "M/y M/y GGGGG",
3402
- "y": "M/y M/y GGGGG"
3324
+ "M": "M/yM/y GGGGG",
3325
+ "y": "M/yM/y GGGGG"
3403
3326
  },
3404
3327
  "yMd": {
3405
- "d": "d. M. y d. M. y G",
3406
- "M": "d. M. y d. M. y G",
3407
- "y": "d. M. y d. M. y G"
3328
+ "d": "d. M. yd. M. y G",
3329
+ "M": "d. M. yd. M. y G",
3330
+ "y": "d. M. yd. M. y G"
3408
3331
  },
3409
3332
  "yMEd": {
3410
- "d": "E d. M. y E d. M. y G",
3411
- "M": "E d. M. y E d. M. y G",
3412
- "y": "E d. M. y E d. M. y G"
3333
+ "d": "E d. M. yE d. M. y G",
3334
+ "M": "E d. M. yE d. M. y G",
3335
+ "y": "E d. M. yE d. M. y G"
3413
3336
  },
3414
3337
  "yMMM": {
3415
- "M": "LLL LLL y G",
3416
- "y": "LLL y LLL y G"
3338
+ "M": "LLLLLL y G",
3339
+ "y": "LLL yLLL y G"
3417
3340
  },
3418
3341
  "yMMMd": {
3419
- "d": "d. d. M. y G",
3420
- "M": "d. M. d. M. y G",
3421
- "y": "d. M. y d. M. y G"
3342
+ "d": "d.d. M. y G",
3343
+ "M": "d. M.d. M. y G",
3344
+ "y": "d. M. yd. M. y G"
3422
3345
  },
3423
3346
  "yMMMEd": {
3424
- "d": "E d. E d. M. y G",
3425
- "M": "E d. M. E d. M. y G",
3426
- "y": "E d. M. y E d. M. y G"
3347
+ "d": "E d.E d. M. y G",
3348
+ "M": "E d. M.E d. M. y G",
3349
+ "y": "E d. M. yE d. M. y G"
3427
3350
  },
3428
3351
  "yMMMM": {
3429
- "M": "LLLL LLLL y G",
3430
- "y": "LLLL y LLLL y G"
3352
+ "M": "LLLLLLLL y G",
3353
+ "y": "LLLL yLLLL y G"
3431
3354
  }
3432
3355
  }
3433
3356
  },
@@ -4272,6 +4195,7 @@
4272
4195
  "Cayman": "Kajmanie ostrovy",
4273
4196
  "Chicago": "Chicago",
4274
4197
  "Chihuahua": "Chihuahua",
4198
+ "Ciudad_Juarez": "Ciudad Juárez",
4275
4199
  "Costa_Rica": "Kostarika",
4276
4200
  "Creston": "Creston",
4277
4201
  "Cuiaba": "Cuiabá",
@@ -4965,10 +4889,16 @@
4965
4889
  },
4966
4890
  "power2": {
4967
4891
  "compoundUnitPattern1": "{0}²",
4892
+ "compoundUnitPattern1-count-one": "{0}²",
4893
+ "compoundUnitPattern1-count-few": "{0}²",
4894
+ "compoundUnitPattern1-count-many": "{0}²",
4968
4895
  "compoundUnitPattern1-count-other": "{0}²"
4969
4896
  },
4970
4897
  "power3": {
4971
4898
  "compoundUnitPattern1": "{0}³",
4899
+ "compoundUnitPattern1-count-one": "{0}³",
4900
+ "compoundUnitPattern1-count-few": "{0}³",
4901
+ "compoundUnitPattern1-count-many": "{0}³",
4972
4902
  "compoundUnitPattern1-count-other": "{0}³"
4973
4903
  },
4974
4904
  "times": {
@@ -5288,6 +5218,14 @@
5288
5218
  "unitPattern-count-other": "{0} r.",
5289
5219
  "perUnitPattern": "{0}/r."
5290
5220
  },
5221
+ "duration-quarter": {
5222
+ "displayName": "štvrťrok",
5223
+ "unitPattern-count-one": "{0} štvrťrok",
5224
+ "unitPattern-count-few": "{0} štvrťroky",
5225
+ "unitPattern-count-many": "{0} štvrťroka",
5226
+ "unitPattern-count-other": "{0} štvrťrokov",
5227
+ "perUnitPattern": "{0}/štvrťrok"
5228
+ },
5291
5229
  "duration-month": {
5292
5230
  "displayName": "mes.",
5293
5231
  "unitPattern-count-one": "{0} mes.",
@@ -5464,6 +5402,9 @@
5464
5402
  },
5465
5403
  "force-kilowatt-hour-per-100-kilometer": {
5466
5404
  "displayName": "kWh/100km",
5405
+ "unitPattern-count-one": "{0} kWh/100km",
5406
+ "unitPattern-count-few": "{0} kWh/100km",
5407
+ "unitPattern-count-many": "{0} kWh/100km",
5467
5408
  "unitPattern-count-other": "{0} kWh/100km"
5468
5409
  },
5469
5410
  "frequency-gigahertz": {
@@ -5552,6 +5493,9 @@
5552
5493
  },
5553
5494
  "length-earth-radius": {
5554
5495
  "displayName": "R⊕",
5496
+ "unitPattern-count-one": "{0} R⊕",
5497
+ "unitPattern-count-few": "{0} R⊕",
5498
+ "unitPattern-count-many": "{0} R⊕",
5555
5499
  "unitPattern-count-other": "{0} R⊕"
5556
5500
  },
5557
5501
  "length-kilometer": {
@@ -5734,7 +5678,7 @@
5734
5678
  "unitPattern-count-many": "{0} L☉",
5735
5679
  "unitPattern-count-other": "{0} L☉"
5736
5680
  },
5737
- "mass-metric-ton": {
5681
+ "mass-tonne": {
5738
5682
  "displayName": "t",
5739
5683
  "unitPattern-count-one": "{0} t",
5740
5684
  "unitPattern-count-few": "{0} t",
@@ -5908,6 +5852,9 @@
5908
5852
  },
5909
5853
  "pressure-bar": {
5910
5854
  "displayName": "bar",
5855
+ "unitPattern-count-one": "{0} bar",
5856
+ "unitPattern-count-few": "{0} bar",
5857
+ "unitPattern-count-many": "{0} bar",
5911
5858
  "unitPattern-count-other": "{0} bar"
5912
5859
  },
5913
5860
  "pressure-millibar": {
@@ -5926,6 +5873,9 @@
5926
5873
  },
5927
5874
  "pressure-pascal": {
5928
5875
  "displayName": "Pa",
5876
+ "unitPattern-count-one": "{0} Pa",
5877
+ "unitPattern-count-few": "{0} Pa",
5878
+ "unitPattern-count-many": "{0} Pa",
5929
5879
  "unitPattern-count-other": "{0} Pa"
5930
5880
  },
5931
5881
  "pressure-hectopascal": {
@@ -6397,41 +6347,56 @@
6397
6347
  },
6398
6348
  "eras-gregorian": {
6399
6349
  "0": {
6350
+ "_code": "gregory-inverse",
6351
+ "_aliases": "bc bce",
6400
6352
  "_end": "0-12-31"
6401
6353
  },
6402
6354
  "1": {
6355
+ "_code": "gregory",
6356
+ "_aliases": "ad ce",
6403
6357
  "_start": "1-01-01"
6404
6358
  }
6405
6359
  },
6406
6360
  "eras-islamic": {
6407
6361
  "0": {
6362
+ "_code": "islamic",
6363
+ "_aliases": "ah",
6408
6364
  "_start": "622-7-15"
6409
6365
  }
6410
6366
  },
6411
6367
  "eras-persian": {
6412
6368
  "0": {
6369
+ "_code": "persian",
6370
+ "_aliases": "ap",
6413
6371
  "_start": "622-01-01"
6414
6372
  }
6415
6373
  },
6416
6374
  "eras-buddhist": {
6417
6375
  "0": {
6376
+ "_code": "buddhist",
6377
+ "_aliases": "be",
6418
6378
  "_start": "-542-01-01"
6419
6379
  }
6420
6380
  },
6421
6381
  "eras-japanese": {
6422
6382
  "232": {
6383
+ "_code": "meiji",
6423
6384
  "_start": "1868-9-8"
6424
6385
  },
6425
6386
  "233": {
6387
+ "_code": "taisho",
6426
6388
  "_start": "1912-7-30"
6427
6389
  },
6428
6390
  "234": {
6391
+ "_code": "showa",
6429
6392
  "_start": "1926-12-25"
6430
6393
  },
6431
6394
  "235": {
6395
+ "_code": "heisei",
6432
6396
  "_start": "1989-1-8"
6433
6397
  },
6434
6398
  "236": {
6399
+ "_code": "reiwa",
6435
6400
  "_start": "2019-5-1"
6436
6401
  }
6437
6402
  },