@openui5/sap.ui.core 1.119.1 → 1.120.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (828) hide show
  1. package/THIRDPARTY.txt +6 -6
  2. package/package.json +1 -1
  3. package/src/jquery.sap.global.js +40 -111
  4. package/src/jquery.sap.properties.js +7 -1
  5. package/src/jquery.sap.resources.js +1 -1
  6. package/src/jquery.sap.script.js +5 -3
  7. package/src/jquery.sap.storage.js +6 -3
  8. package/src/sap/base/Event.js +32 -78
  9. package/src/sap/base/Eventing.js +114 -271
  10. package/src/sap/base/Log.js +21 -1
  11. package/src/sap/base/config.js +14 -9
  12. package/src/sap/base/i18n/Formatting.js +378 -250
  13. package/src/sap/base/i18n/LanguageTag.js +64 -66
  14. package/src/sap/base/i18n/Localization.js +124 -85
  15. package/src/sap/base/i18n/ResourceBundle.js +1 -1
  16. package/src/sap/base/i18n/date/CalendarType.js +2 -2
  17. package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
  18. package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
  19. package/src/sap/base/util/LoaderExtensions.js +8 -2
  20. package/src/sap/base/util/mixedFetch.js +1 -0
  21. package/src/sap/base/util/resolveReference.js +31 -13
  22. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  23. package/src/sap/base/util/restricted/_castArray.js +1 -1
  24. package/src/sap/base/util/restricted/_compact.js +1 -1
  25. package/src/sap/base/util/restricted/_curry.js +1 -1
  26. package/src/sap/base/util/restricted/_debounce.js +1 -1
  27. package/src/sap/base/util/restricted/_difference.js +1 -1
  28. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  29. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  30. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  31. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  32. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  33. package/src/sap/base/util/restricted/_flatten.js +1 -1
  34. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  35. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  36. package/src/sap/base/util/restricted/_intersection.js +1 -1
  37. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  38. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  39. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  40. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  41. package/src/sap/base/util/restricted/_isNil.js +1 -1
  42. package/src/sap/base/util/restricted/_max.js +1 -1
  43. package/src/sap/base/util/restricted/_merge.js +1 -1
  44. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  45. package/src/sap/base/util/restricted/_min.js +1 -1
  46. package/src/sap/base/util/restricted/_omit.js +1 -1
  47. package/src/sap/base/util/restricted/_pick.js +1 -1
  48. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  49. package/src/sap/base/util/restricted/_throttle.js +1 -1
  50. package/src/sap/base/util/restricted/_toArray.js +1 -1
  51. package/src/sap/base/util/restricted/_union.js +1 -1
  52. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  53. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  54. package/src/sap/base/util/restricted/_uniq.js +1 -1
  55. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  56. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  57. package/src/sap/base/util/restricted/_without.js +1 -1
  58. package/src/sap/base/util/restricted/_xor.js +1 -1
  59. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  60. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  61. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  62. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  63. package/src/sap/base/util/syncFetch.js +1 -0
  64. package/src/sap/ui/Device.js +3 -3
  65. package/src/sap/ui/Global.js +6 -7
  66. package/src/sap/ui/base/BindingInfo.js +3 -3
  67. package/src/sap/ui/base/BindingParser.js +5 -2
  68. package/src/sap/ui/base/DataType.js +57 -1
  69. package/src/sap/ui/base/DesignTime.js +69 -0
  70. package/src/sap/ui/base/Event.js +2 -2
  71. package/src/sap/ui/base/EventProvider.js +1 -1
  72. package/src/sap/ui/base/ExpressionParser.js +25 -4
  73. package/src/sap/ui/base/Interface.js +1 -1
  74. package/src/sap/ui/base/ManagedObject.js +102 -29
  75. package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
  76. package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
  77. package/src/sap/ui/base/Metadata.js +3 -3
  78. package/src/sap/ui/base/Object.js +19 -1
  79. package/src/sap/ui/base/ObjectPool.js +1 -1
  80. package/src/sap/ui/core/.library +3 -3
  81. package/src/sap/ui/core/AnimationMode.js +2 -2
  82. package/src/sap/ui/core/AppCacheBuster.js +30 -18
  83. package/src/sap/ui/core/BusyIndicator.js +1 -1
  84. package/src/sap/ui/core/CalendarType.js +6 -0
  85. package/src/sap/ui/core/Component.js +150 -80
  86. package/src/sap/ui/core/ComponentContainer.js +4 -3
  87. package/src/sap/ui/core/ComponentMetadata.js +3 -4
  88. package/src/sap/ui/core/ComponentSupport.js +1 -1
  89. package/src/sap/ui/core/Configuration.js +390 -706
  90. package/src/sap/ui/core/Control.js +1 -1
  91. package/src/sap/ui/core/ControlBehavior.js +37 -28
  92. package/src/sap/ui/core/Core.js +327 -151
  93. package/src/sap/ui/core/CustomData.js +1 -1
  94. package/src/sap/ui/core/DeclarativeSupport.js +3 -1
  95. package/src/sap/ui/core/Element.js +18 -8
  96. package/src/sap/ui/core/ElementMetadata.js +1 -1
  97. package/src/sap/ui/core/EnabledPropagator.js +3 -2
  98. package/src/sap/ui/core/EventBus.js +1 -1
  99. package/src/sap/ui/core/Fragment.js +1 -1
  100. package/src/sap/ui/core/HTML.js +1 -1
  101. package/src/sap/ui/core/History.js +1 -1
  102. package/src/sap/ui/core/Icon.js +1 -1
  103. package/src/sap/ui/core/IndicationColorSupport.js +13 -1
  104. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  105. package/src/sap/ui/core/InvisibleMessage.js +2 -3
  106. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  107. package/src/sap/ui/core/InvisibleText.js +17 -1
  108. package/src/sap/ui/core/Item.js +1 -1
  109. package/src/sap/ui/core/LabelEnablement.js +8 -1
  110. package/src/sap/ui/core/LayoutData.js +1 -1
  111. package/src/sap/ui/core/Lib.js +195 -29
  112. package/src/sap/ui/core/ListItem.js +1 -1
  113. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  114. package/src/sap/ui/core/Locale.js +1 -1
  115. package/src/sap/ui/core/LocaleData.js +118 -32
  116. package/src/sap/ui/core/Manifest.js +4 -2
  117. package/src/sap/ui/core/Message.js +1 -1
  118. package/src/sap/ui/core/Placeholder.js +18 -0
  119. package/src/sap/ui/core/Popup.js +5 -0
  120. package/src/sap/ui/core/RenderManager.js +21 -17
  121. package/src/sap/ui/core/Renderer.js +1 -1
  122. package/src/sap/ui/core/Rendering.js +51 -47
  123. package/src/sap/ui/core/ResizeHandler.js +2 -2
  124. package/src/sap/ui/core/ScrollBar.js +1 -1
  125. package/src/sap/ui/core/SeparatorItem.js +1 -1
  126. package/src/sap/ui/core/Shortcut.js +5 -3
  127. package/src/sap/ui/core/Supportability.js +146 -0
  128. package/src/sap/ui/core/Theming.js +130 -88
  129. package/src/sap/ui/core/Title.js +1 -1
  130. package/src/sap/ui/core/TooltipBase.js +4 -3
  131. package/src/sap/ui/core/UIArea.js +1 -4
  132. package/src/sap/ui/core/UIComponent.js +38 -12
  133. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  134. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  135. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  136. package/src/sap/ui/core/XMLComposite.js +1 -1
  137. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  138. package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
  139. package/src/sap/ui/core/_IconRegistry.js +13 -6
  140. package/src/sap/ui/core/cldr/ar.json +143 -137
  141. package/src/sap/ui/core/cldr/ar_EG.json +143 -137
  142. package/src/sap/ui/core/cldr/ar_SA.json +143 -137
  143. package/src/sap/ui/core/cldr/bg.json +423 -423
  144. package/src/sap/ui/core/cldr/ca.json +541 -494
  145. package/src/sap/ui/core/cldr/cs.json +475 -364
  146. package/src/sap/ui/core/cldr/cy.json +656 -477
  147. package/src/sap/ui/core/cldr/da.json +334 -275
  148. package/src/sap/ui/core/cldr/de.json +388 -291
  149. package/src/sap/ui/core/cldr/de_AT.json +388 -291
  150. package/src/sap/ui/core/cldr/de_CH.json +394 -297
  151. package/src/sap/ui/core/cldr/el.json +169 -166
  152. package/src/sap/ui/core/cldr/el_CY.json +169 -166
  153. package/src/sap/ui/core/cldr/en.json +558 -521
  154. package/src/sap/ui/core/cldr/en_AU.json +558 -520
  155. package/src/sap/ui/core/cldr/en_GB.json +476 -439
  156. package/src/sap/ui/core/cldr/en_HK.json +520 -482
  157. package/src/sap/ui/core/cldr/en_IE.json +486 -448
  158. package/src/sap/ui/core/cldr/en_IN.json +466 -428
  159. package/src/sap/ui/core/cldr/en_NZ.json +506 -468
  160. package/src/sap/ui/core/cldr/en_PG.json +506 -468
  161. package/src/sap/ui/core/cldr/en_SG.json +506 -468
  162. package/src/sap/ui/core/cldr/en_ZA.json +486 -448
  163. package/src/sap/ui/core/cldr/es.json +473 -468
  164. package/src/sap/ui/core/cldr/es_AR.json +445 -440
  165. package/src/sap/ui/core/cldr/es_BO.json +479 -474
  166. package/src/sap/ui/core/cldr/es_CL.json +469 -464
  167. package/src/sap/ui/core/cldr/es_CO.json +387 -381
  168. package/src/sap/ui/core/cldr/es_MX.json +502 -497
  169. package/src/sap/ui/core/cldr/es_PE.json +455 -450
  170. package/src/sap/ui/core/cldr/es_UY.json +479 -474
  171. package/src/sap/ui/core/cldr/es_VE.json +499 -494
  172. package/src/sap/ui/core/cldr/et.json +378 -320
  173. package/src/sap/ui/core/cldr/fa.json +104 -104
  174. package/src/sap/ui/core/cldr/fi.json +401 -315
  175. package/src/sap/ui/core/cldr/fr.json +391 -385
  176. package/src/sap/ui/core/cldr/fr_BE.json +391 -385
  177. package/src/sap/ui/core/cldr/fr_CA.json +499 -493
  178. package/src/sap/ui/core/cldr/fr_CH.json +334 -328
  179. package/src/sap/ui/core/cldr/fr_LU.json +391 -385
  180. package/src/sap/ui/core/cldr/he.json +291 -159
  181. package/src/sap/ui/core/cldr/hi.json +157 -128
  182. package/src/sap/ui/core/cldr/hr.json +514 -461
  183. package/src/sap/ui/core/cldr/hu.json +287 -257
  184. package/src/sap/ui/core/cldr/id.json +463 -416
  185. package/src/sap/ui/core/cldr/it.json +468 -413
  186. package/src/sap/ui/core/cldr/it_CH.json +468 -413
  187. package/src/sap/ui/core/cldr/ja.json +98 -61
  188. package/src/sap/ui/core/cldr/kk.json +631 -571
  189. package/src/sap/ui/core/cldr/ko.json +79 -71
  190. package/src/sap/ui/core/cldr/lt.json +361 -270
  191. package/src/sap/ui/core/cldr/lv.json +234 -242
  192. package/src/sap/ui/core/cldr/ms.json +463 -408
  193. package/src/sap/ui/core/cldr/nb.json +176 -143
  194. package/src/sap/ui/core/cldr/nl.json +463 -393
  195. package/src/sap/ui/core/cldr/nl_BE.json +463 -393
  196. package/src/sap/ui/core/cldr/pl.json +633 -344
  197. package/src/sap/ui/core/cldr/pt.json +447 -336
  198. package/src/sap/ui/core/cldr/pt_PT.json +488 -449
  199. package/src/sap/ui/core/cldr/ro.json +477 -383
  200. package/src/sap/ui/core/cldr/ru.json +367 -332
  201. package/src/sap/ui/core/cldr/ru_UA.json +361 -326
  202. package/src/sap/ui/core/cldr/sk.json +502 -537
  203. package/src/sap/ui/core/cldr/sl.json +168 -161
  204. package/src/sap/ui/core/cldr/sr.json +276 -225
  205. package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
  206. package/src/sap/ui/core/cldr/sv.json +420 -346
  207. package/src/sap/ui/core/cldr/th.json +117 -94
  208. package/src/sap/ui/core/cldr/tr.json +413 -359
  209. package/src/sap/ui/core/cldr/uk.json +395 -368
  210. package/src/sap/ui/core/cldr/vi.json +392 -379
  211. package/src/sap/ui/core/cldr/zh_CN.json +91 -33
  212. package/src/sap/ui/core/cldr/zh_HK.json +90 -32
  213. package/src/sap/ui/core/cldr/zh_SG.json +90 -32
  214. package/src/sap/ui/core/cldr/zh_TW.json +75 -51
  215. package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
  216. package/src/sap/ui/core/date/UI5Date.js +1 -1
  217. package/src/sap/ui/core/date/_Calendars.js +5 -2
  218. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  219. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  220. package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
  221. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  222. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  223. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  224. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  225. package/src/sap/ui/core/format/DateFormat.js +33 -21
  226. package/src/sap/ui/core/format/NumberFormat.js +3 -2
  227. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  228. package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
  229. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  230. package/src/sap/ui/core/library.js +128 -8
  231. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  232. package/src/sap/ui/core/message/Message.js +2 -2
  233. package/src/sap/ui/core/message/MessageManager.js +1 -1
  234. package/src/sap/ui/core/message/MessageParser.js +1 -1
  235. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  236. package/src/sap/ui/core/message/MessageType.js +2 -1
  237. package/src/sap/ui/core/messagebundle.properties +24 -0
  238. package/src/sap/ui/core/messagebundle_ar.properties +15 -3
  239. package/src/sap/ui/core/messagebundle_bg.properties +14 -2
  240. package/src/sap/ui/core/messagebundle_ca.properties +13 -1
  241. package/src/sap/ui/core/messagebundle_cs.properties +15 -3
  242. package/src/sap/ui/core/messagebundle_cy.properties +16 -4
  243. package/src/sap/ui/core/messagebundle_da.properties +15 -3
  244. package/src/sap/ui/core/messagebundle_de.properties +15 -3
  245. package/src/sap/ui/core/messagebundle_el.properties +16 -4
  246. package/src/sap/ui/core/messagebundle_en.properties +12 -0
  247. package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
  248. package/src/sap/ui/core/messagebundle_es.properties +15 -3
  249. package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
  250. package/src/sap/ui/core/messagebundle_et.properties +15 -3
  251. package/src/sap/ui/core/messagebundle_fi.properties +15 -3
  252. package/src/sap/ui/core/messagebundle_fr.properties +15 -3
  253. package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
  254. package/src/sap/ui/core/messagebundle_hi.properties +16 -4
  255. package/src/sap/ui/core/messagebundle_hr.properties +14 -2
  256. package/src/sap/ui/core/messagebundle_hu.properties +16 -4
  257. package/src/sap/ui/core/messagebundle_id.properties +15 -3
  258. package/src/sap/ui/core/messagebundle_it.properties +17 -5
  259. package/src/sap/ui/core/messagebundle_iw.properties +15 -3
  260. package/src/sap/ui/core/messagebundle_ja.properties +25 -13
  261. package/src/sap/ui/core/messagebundle_kk.properties +15 -3
  262. package/src/sap/ui/core/messagebundle_ko.properties +14 -2
  263. package/src/sap/ui/core/messagebundle_lt.properties +15 -3
  264. package/src/sap/ui/core/messagebundle_lv.properties +15 -3
  265. package/src/sap/ui/core/messagebundle_mk.properties +352 -0
  266. package/src/sap/ui/core/messagebundle_ms.properties +15 -3
  267. package/src/sap/ui/core/messagebundle_nl.properties +15 -3
  268. package/src/sap/ui/core/messagebundle_no.properties +14 -2
  269. package/src/sap/ui/core/messagebundle_pl.properties +15 -3
  270. package/src/sap/ui/core/messagebundle_pt.properties +15 -3
  271. package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
  272. package/src/sap/ui/core/messagebundle_ro.properties +15 -3
  273. package/src/sap/ui/core/messagebundle_ru.properties +15 -3
  274. package/src/sap/ui/core/messagebundle_sh.properties +43 -31
  275. package/src/sap/ui/core/messagebundle_sk.properties +16 -4
  276. package/src/sap/ui/core/messagebundle_sl.properties +15 -3
  277. package/src/sap/ui/core/messagebundle_sv.properties +22 -10
  278. package/src/sap/ui/core/messagebundle_th.properties +15 -3
  279. package/src/sap/ui/core/messagebundle_tr.properties +15 -3
  280. package/src/sap/ui/core/messagebundle_uk.properties +18 -6
  281. package/src/sap/ui/core/messagebundle_vi.properties +18 -6
  282. package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
  283. package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
  284. package/src/sap/ui/core/mvc/Controller.js +22 -16
  285. package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
  286. package/src/sap/ui/core/mvc/HTMLView.js +2 -2
  287. package/src/sap/ui/core/mvc/JSONView.js +4 -1
  288. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
  289. package/src/sap/ui/core/mvc/JSView.js +1 -1
  290. package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
  291. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  292. package/src/sap/ui/core/mvc/View.js +24 -14
  293. package/src/sap/ui/core/mvc/ViewType.js +2 -0
  294. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  295. package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
  296. package/src/sap/ui/core/plugin/LessSupport.js +3 -1
  297. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  298. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  299. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  300. package/src/sap/ui/core/routing/Router.js +2 -4
  301. package/src/sap/ui/core/routing/Target.js +1 -3
  302. package/src/sap/ui/core/routing/Targets.js +2 -3
  303. package/src/sap/ui/core/routing/Views.js +2 -3
  304. package/src/sap/ui/core/routing/async/Target.js +1 -1
  305. package/src/sap/ui/core/rules/Config.support.js +11 -17
  306. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  307. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  308. package/src/sap/ui/core/service/Service.js +1 -1
  309. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  310. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  311. package/src/sap/ui/core/support/Hotkeys.js +5 -3
  312. package/src/sap/ui/core/support/Plugin.js +1 -1
  313. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
  314. package/src/sap/ui/core/support/Support.js +3 -5
  315. package/src/sap/ui/core/support/ToolsAPI.js +15 -11
  316. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  317. package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
  318. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  319. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  320. package/src/sap/ui/core/support/plugins/Selector.js +7 -5
  321. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  322. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  323. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  324. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
  325. package/src/sap/ui/core/syncStyleClass.js +2 -2
  326. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  327. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  328. package/src/sap/ui/core/themes/base/global.less +9 -9
  329. package/src/sap/ui/core/theming/Parameters.js +18 -19
  330. package/src/sap/ui/core/theming/ThemeManager.js +23 -4
  331. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  332. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  333. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  334. package/src/sap/ui/core/tmpl/Template.js +1 -1
  335. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  336. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  337. package/src/sap/ui/core/util/Export.js +1 -1
  338. package/src/sap/ui/core/util/ExportCell.js +1 -1
  339. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  340. package/src/sap/ui/core/util/ExportRow.js +1 -1
  341. package/src/sap/ui/core/util/ExportType.js +1 -1
  342. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  343. package/src/sap/ui/core/util/File.js +1 -1
  344. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  345. package/src/sap/ui/core/util/MockServer.js +1 -1
  346. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  347. package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
  348. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  349. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  350. package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
  351. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  352. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  353. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  354. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  355. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  356. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  357. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  358. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  359. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  360. package/src/sap/ui/debug/ControlTree.js +1 -1
  361. package/src/sap/ui/debug/DebugEnv.js +29 -7
  362. package/src/sap/ui/debug/PropertyList.js +1 -1
  363. package/src/sap/ui/model/ClientListBinding.js +3 -1
  364. package/src/sap/ui/model/ClientModel.js +1 -1
  365. package/src/sap/ui/model/ClientTreeBinding.js +3 -1
  366. package/src/sap/ui/model/CompositeDataState.js +1 -1
  367. package/src/sap/ui/model/CompositeType.js +1 -1
  368. package/src/sap/ui/model/DataState.js +2 -2
  369. package/src/sap/ui/model/Filter.js +39 -1
  370. package/src/sap/ui/model/FilterProcessor.js +12 -2
  371. package/src/sap/ui/model/ListBinding.js +5 -0
  372. package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
  373. package/src/sap/ui/model/MetaModel.js +1 -1
  374. package/src/sap/ui/model/Model.js +5 -1
  375. package/src/sap/ui/model/SelectionModel.js +1 -1
  376. package/src/sap/ui/model/SimpleType.js +1 -1
  377. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  378. package/src/sap/ui/model/TreeBinding.js +3 -0
  379. package/src/sap/ui/model/Type.js +1 -1
  380. package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
  381. package/src/sap/ui/model/json/JSONListBinding.js +3 -1
  382. package/src/sap/ui/model/json/JSONModel.js +1 -1
  383. package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
  384. package/src/sap/ui/model/message/MessageListBinding.js +3 -0
  385. package/src/sap/ui/model/message/MessageModel.js +1 -1
  386. package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
  387. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  388. package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
  389. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  390. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  391. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  392. package/src/sap/ui/model/odata/ODataModel.js +9 -5
  393. package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
  394. package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
  395. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
  396. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  397. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  398. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  399. package/src/sap/ui/model/odata/type/Date.js +1 -1
  400. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  401. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  402. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  403. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  404. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  405. package/src/sap/ui/model/odata/type/Double.js +1 -1
  406. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  407. package/src/sap/ui/model/odata/type/Int.js +1 -1
  408. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  409. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  410. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  411. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  412. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  413. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  414. package/src/sap/ui/model/odata/type/Single.js +1 -1
  415. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  416. package/src/sap/ui/model/odata/type/String.js +1 -1
  417. package/src/sap/ui/model/odata/type/Time.js +1 -1
  418. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  419. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  420. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  421. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  422. package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
  423. package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
  424. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
  425. package/src/sap/ui/model/odata/v4/Context.js +81 -7
  426. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
  427. package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
  428. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
  429. package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
  430. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
  431. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
  432. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
  433. package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
  434. package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
  435. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
  436. package/src/sap/ui/model/resource/ResourceModel.js +5 -6
  437. package/src/sap/ui/model/type/Boolean.js +1 -1
  438. package/src/sap/ui/model/type/Currency.js +1 -1
  439. package/src/sap/ui/model/type/Date.js +1 -1
  440. package/src/sap/ui/model/type/DateInterval.js +1 -1
  441. package/src/sap/ui/model/type/DateTime.js +1 -1
  442. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  443. package/src/sap/ui/model/type/FileSize.js +1 -1
  444. package/src/sap/ui/model/type/Float.js +1 -1
  445. package/src/sap/ui/model/type/Integer.js +1 -1
  446. package/src/sap/ui/model/type/String.js +1 -1
  447. package/src/sap/ui/model/type/Time.js +1 -1
  448. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  449. package/src/sap/ui/model/type/Unit.js +1 -1
  450. package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
  451. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  452. package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
  453. package/src/sap/ui/performance/BeaconRequest.js +2 -2
  454. package/src/sap/ui/qunit/QUnitUtils.js +64 -45
  455. package/src/sap/ui/qunit/qunit-coverage.js +6 -0
  456. package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
  457. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  458. package/src/sap/ui/security/Security.js +128 -0
  459. package/src/sap/ui/test/BlanketReporter.js +2 -3
  460. package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
  461. package/src/sap/ui/test/BranchTracking.js +2 -3
  462. package/src/sap/ui/test/ModuleTracking.js +48 -20
  463. package/src/sap/ui/test/OpaExtension.js +3 -3
  464. package/src/sap/ui/test/OpaPlugin.js +16 -6
  465. package/src/sap/ui/test/TestUtils.js +7 -4
  466. package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
  467. package/src/sap/ui/test/_ControlFinder.js +3 -2
  468. package/src/sap/ui/test/_LogCollector.js +1 -0
  469. package/src/sap/ui/test/_UsageReport.js +115 -114
  470. package/src/sap/ui/test/actions/EnterText.js +20 -2
  471. package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
  472. package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
  473. package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
  474. package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
  475. package/src/sap/ui/test/generic/TestBase.js +1 -1
  476. package/src/sap/ui/test/generic/Utils.js +1 -1
  477. package/src/sap/ui/test/matchers/LabelFor.js +2 -12
  478. package/src/sap/ui/test/matchers/Matcher.js +1 -1
  479. package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
  480. package/src/sap/ui/test/selectors/_Selector.js +1 -1
  481. package/src/sap/ui/util/Storage.js +1 -1
  482. package/src/ui5loader-autoconfig.js +84 -11
  483. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
  484. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
  485. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
  486. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
  487. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
  488. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
  489. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
  490. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
  491. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
  492. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
  493. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
  494. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
  495. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
  496. package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
  497. package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
  498. package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
  499. package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
  500. package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
  501. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
  502. package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
  503. package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
  504. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
  505. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
  506. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
  507. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
  508. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
  509. package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
  510. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
  511. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
  512. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
  513. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
  514. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
  515. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
  516. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
  517. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
  518. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
  519. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
  520. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
  521. package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
  522. package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
  523. package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
  524. package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
  525. package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
  526. package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
  527. package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
  528. package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
  529. package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
  530. package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
  531. package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
  532. package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
  533. package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
  534. package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
  535. package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
  536. package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
  537. package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
  538. package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
  539. package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
  540. package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
  541. package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
  542. package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
  543. package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
  544. package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
  545. package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
  546. package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
  547. package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
  548. package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
  549. package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
  550. package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
  551. package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
  552. package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
  553. package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
  554. package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
  555. package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
  556. package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
  557. package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
  558. package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
  559. package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
  560. package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
  561. package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
  562. package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
  563. package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
  564. package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
  565. package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
  566. package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
  567. package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
  568. package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
  569. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
  570. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
  571. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
  572. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
  573. package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
  574. package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
  575. package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
  576. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
  577. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
  578. package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
  579. package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
  580. package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
  581. package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
  582. package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
  583. package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
  584. package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
  585. package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
  586. package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
  587. package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
  588. package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
  589. package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
  590. package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
  591. package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
  592. package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
  593. package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
  594. package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
  595. package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
  596. package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
  597. package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
  598. package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
  599. package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
  600. package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
  601. package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
  602. package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
  603. package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
  604. package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
  605. package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
  606. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
  607. package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
  608. package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
  609. package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
  610. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
  611. package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
  612. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
  613. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
  614. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
  615. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
  616. package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
  617. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
  618. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
  619. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
  620. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
  621. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
  622. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
  623. package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
  624. package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
  625. package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
  626. package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
  627. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
  628. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
  629. package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
  630. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
  631. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
  632. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
  633. package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
  634. package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
  635. package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
  636. package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
  637. package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
  638. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
  639. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
  640. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
  641. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
  642. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
  643. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
  644. package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
  645. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
  646. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
  647. package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
  648. package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
  649. package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
  650. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
  651. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
  652. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
  653. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
  654. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
  655. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
  656. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
  657. package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
  658. package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
  659. package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
  660. package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
  661. package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
  662. package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
  663. package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
  664. package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
  665. package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
  666. package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
  667. package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
  668. package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
  669. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
  670. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
  671. package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
  672. package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
  673. package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
  674. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
  675. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
  676. package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
  677. package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
  678. package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
  679. package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
  680. package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
  681. package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
  682. package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
  683. package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
  684. package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
  685. package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
  686. package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
  687. package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
  688. package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
  689. package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
  690. package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
  691. package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
  692. package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
  693. package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
  694. package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
  695. package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
  696. package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
  697. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
  698. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
  699. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
  700. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
  701. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
  702. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
  703. package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
  704. package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
  705. package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
  706. package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
  707. package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
  708. package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
  709. package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
  710. package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
  711. package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
  712. package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
  713. package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
  714. package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
  715. package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
  716. package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
  717. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
  718. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
  719. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
  720. package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
  721. package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
  722. package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
  723. package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
  724. package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
  725. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
  726. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
  727. package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
  728. package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
  729. package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
  730. package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
  731. package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
  732. package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
  733. package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
  734. package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
  735. package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
  736. package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
  737. package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
  738. package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
  739. package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
  740. package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
  741. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
  742. package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
  743. package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
  744. package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
  745. package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
  746. package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
  747. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
  748. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
  749. package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
  750. package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
  751. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
  752. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
  753. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
  754. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
  755. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
  756. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
  757. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
  758. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
  759. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
  760. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
  761. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
  762. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
  763. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
  764. package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
  765. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
  766. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
  767. package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
  768. package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
  769. package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
  770. package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
  771. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
  772. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
  773. package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
  774. package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
  775. package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
  776. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
  777. package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
  778. package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
  779. package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
  780. package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
  781. package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
  782. package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
  783. package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
  784. package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
  785. package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
  786. package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
  787. package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
  788. package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
  789. package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
  790. package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
  791. package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
  792. package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
  793. package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
  794. package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
  795. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
  796. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
  797. package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
  798. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
  799. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
  800. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
  801. package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
  802. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
  803. package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
  804. package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
  805. package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
  806. package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
  807. package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
  808. package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
  809. package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
  810. package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
  811. package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
  812. package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
  813. package/test/sap/ui/core/terminologies/App.controller.js +2 -3
  814. package/test/sap/ui/core/terminologies/main.js +2 -3
  815. package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
  816. package/src/sap/ui/core/ConfigTest.js +0 -17
  817. package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
  818. package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
  819. package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
  820. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
  821. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
  822. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
  823. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
  824. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
  825. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
  826. package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
  827. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
  828. package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
3
- "__version": "41.0.0",
4
- "__buildtime": "2022-12-19T09:41:25.319Z",
3
+ "__version": "43.0.0",
4
+ "__buildtime": "2023-09-28T11:39:07.908Z",
5
5
  "languages": {
6
6
  "aa": "afar",
7
7
  "ab": "abhaasi",
@@ -15,6 +15,7 @@
15
15
  "afh": "afrihili",
16
16
  "agq": "aghem",
17
17
  "ain": "ainu",
18
+ "ajp": "urduni",
18
19
  "ak": "akan",
19
20
  "akk": "akkadi",
20
21
  "akz": "alabama",
@@ -24,6 +25,7 @@
24
25
  "am": "amhara",
25
26
  "an": "aragonia",
26
27
  "ang": "muinaisenglanti",
28
+ "ann": "obolo",
27
29
  "anp": "angika",
28
30
  "ar": "arabia",
29
31
  "ar_001": "yleisarabia",
@@ -40,6 +42,7 @@
40
42
  "asa": "asu",
41
43
  "ase": "amerikkalainen viittomakieli",
42
44
  "ast": "asturia",
45
+ "atj": "atikamekw",
43
46
  "av": "avaari",
44
47
  "avk": "kotava",
45
48
  "awa": "awadhi",
@@ -62,6 +65,7 @@
62
65
  "bfd": "fut",
63
66
  "bfq": "badaga",
64
67
  "bg": "bulgaria",
68
+ "bgc": "haryanvi",
65
69
  "bgn": "länsibelutši",
66
70
  "bho": "bhodžpuri",
67
71
  "bi": "bislama",
@@ -108,15 +112,23 @@
108
112
  "ckb": "soranî",
109
113
  "ckb_alt-menu": "kurdi – soranî",
110
114
  "ckb_alt-variant": "soranî",
115
+ "clc": "chilcotin",
111
116
  "co": "korsika",
112
117
  "cop": "kopti",
113
118
  "cps": "capiznon",
114
119
  "cr": "cree",
120
+ "crg": "michif",
115
121
  "crh": "krimintataari",
116
122
  "crh_alt-secondary": "kriminturkki",
123
+ "crj": "east cree (eteläinen)",
124
+ "crk": "plains cree",
125
+ "crl": "east cree (pohjoinen)",
126
+ "crm": "moose cree",
127
+ "crr": "pamlico",
117
128
  "crs": "seychellienkreoli",
118
129
  "cs": "tšekki",
119
130
  "csb": "kašubi",
131
+ "csw": "swampy cree",
120
132
  "cu": "kirkkoslaavi",
121
133
  "cv": "tšuvassi",
122
134
  "cy": "kymri",
@@ -154,9 +166,9 @@
154
166
  "en_AU": "australianenglanti",
155
167
  "en_CA": "kanadanenglanti",
156
168
  "en_GB": "britannianenglanti",
157
- "en_GB-alt-short": "britannianenglanti",
169
+ "en_GB-alt-short": "englanti (Britannia)",
158
170
  "en_US": "amerikanenglanti",
159
- "en_US-alt-short": "amerikanenglanti",
171
+ "en_US-alt-short": "englanti (USA)",
160
172
  "enm": "keskienglanti",
161
173
  "eo": "esperanto",
162
174
  "es": "espanja",
@@ -222,8 +234,10 @@
222
234
  "hai": "haida",
223
235
  "hak": "hakka-kiina",
224
236
  "haw": "havaiji",
237
+ "hax": "haida (eteläinen)",
225
238
  "he": "heprea",
226
239
  "hi": "hindi",
240
+ "hi_Latn-alt-variant": "hinglish",
227
241
  "hif": "fidžinhindi",
228
242
  "hil": "hiligaino",
229
243
  "hit": "heetti",
@@ -235,6 +249,7 @@
235
249
  "ht": "haiti",
236
250
  "hu": "unkari",
237
251
  "hup": "hupa",
252
+ "hur": "halkomelem",
238
253
  "hy": "armenia",
239
254
  "hz": "herero",
240
255
  "ia": "interlingua",
@@ -245,6 +260,7 @@
245
260
  "ig": "igbo",
246
261
  "ii": "sichuanin-yi",
247
262
  "ik": "inupiaq",
263
+ "ikt": "Länsi-Kanadan inuktitut",
248
264
  "ilo": "iloko",
249
265
  "inh": "inguuši",
250
266
  "io": "ido",
@@ -312,6 +328,7 @@
312
328
  "kut": "kutenai",
313
329
  "kv": "komi",
314
330
  "kw": "korni",
331
+ "kwk": "kwakʼwala",
315
332
  "ky": "kirgiisi",
316
333
  "la": "latina",
317
334
  "lad": "ladino",
@@ -325,6 +342,7 @@
325
342
  "lg": "ganda",
326
343
  "li": "limburg",
327
344
  "lij": "liguuri",
345
+ "lil": "lillooet",
328
346
  "liv": "liivi",
329
347
  "lkt": "lakota",
330
348
  "lmo": "lombardi",
@@ -334,6 +352,7 @@
334
352
  "lou": "louisianankreoli",
335
353
  "loz": "lozi",
336
354
  "lrc": "pohjoisluri",
355
+ "lsm": "samia",
337
356
  "lt": "liettua",
338
357
  "ltg": "latgalli",
339
358
  "lu": "katanganluba",
@@ -372,6 +391,7 @@
372
391
  "mn": "mongoli",
373
392
  "mnc": "mantšu",
374
393
  "mni": "manipuri",
394
+ "moe": "innu-aimun",
375
395
  "moh": "mohawk",
376
396
  "mos": "mossi",
377
397
  "mr": "marathi",
@@ -424,6 +444,11 @@
424
444
  "nzi": "nzima",
425
445
  "oc": "oksitaani",
426
446
  "oj": "odžibwa",
447
+ "ojb": "luoteis-odžibwa",
448
+ "ojc": "keskiojibwa",
449
+ "ojs": "oji-cree",
450
+ "ojw": "länsi-odžibwa",
451
+ "oka": "okanagan",
427
452
  "om": "oromo",
428
453
  "or": "orija",
429
454
  "os": "osseetti",
@@ -443,10 +468,12 @@
443
468
  "pfl": "pfaltsi",
444
469
  "phn": "foinikia",
445
470
  "pi": "paali",
471
+ "pis": "pijin",
446
472
  "pl": "puola",
447
473
  "pms": "piemonte",
448
474
  "pnt": "pontoksenkreikka",
449
475
  "pon": "pohnpei",
476
+ "pqm": "maliseet-passamaquoddy",
450
477
  "prg": "muinaispreussi",
451
478
  "pro": "muinaisprovensaali",
452
479
  "ps": "paštu",
@@ -508,6 +535,7 @@
508
535
  "sid": "sidamo",
509
536
  "sk": "slovakki",
510
537
  "sl": "sloveeni",
538
+ "slh": "lushootseed (eteläinen)",
511
539
  "sli": "sleesiansaksa",
512
540
  "sly": "selayar",
513
541
  "sm": "samoa",
@@ -527,18 +555,20 @@
527
555
  "ssy": "saho",
528
556
  "st": "eteläsotho",
529
557
  "stq": "saterlandinfriisi",
558
+ "str": "straits-salish",
530
559
  "su": "sunda",
531
560
  "suk": "sukuma",
532
561
  "sus": "susu",
533
562
  "sux": "sumeri",
534
563
  "sv": "ruotsi",
535
564
  "sw": "swahili",
536
- "sw_CD": "kingwana",
565
+ "sw_CD": "kongonswahili",
537
566
  "swb": "komori",
538
567
  "syc": "muinaissyyria",
539
568
  "syr": "syyria",
540
569
  "szl": "sleesia",
541
570
  "ta": "tamili",
571
+ "tce": "etelätutchone",
542
572
  "tcy": "tulu",
543
573
  "te": "telugu",
544
574
  "tem": "temne",
@@ -546,7 +576,9 @@
546
576
  "ter": "tereno",
547
577
  "tet": "tetum",
548
578
  "tg": "tadžikki",
579
+ "tgx": "tagish",
549
580
  "th": "thai",
581
+ "tht": "tahlta",
550
582
  "ti": "tigrinja",
551
583
  "tig": "tigre",
552
584
  "tiv": "tiv",
@@ -561,6 +593,7 @@
561
593
  "tn": "tswana",
562
594
  "to": "tonga",
563
595
  "tog": "malawintonga",
596
+ "tok": "toki pona",
564
597
  "tpi": "tok-pisin",
565
598
  "tr": "turkki",
566
599
  "tru": "turojo",
@@ -569,6 +602,7 @@
569
602
  "tsd": "tsakonia",
570
603
  "tsi": "tsimši",
571
604
  "tt": "tataari",
605
+ "ttm": "pohjoinen tutchone",
572
606
  "ttt": "tati",
573
607
  "tum": "tumbuka",
574
608
  "tvl": "tuvalu",
@@ -625,9 +659,7 @@
625
659
  "zgh": "vakioitu tamazight",
626
660
  "zh": "kiina",
627
661
  "zh_alt-menu": "kiina (mandariini)",
628
- "zh_Hans": "kiina (yksinkertaistettu)",
629
662
  "zh_Hans-alt-long": "mandariinikiina (yksinkertaistettu)",
630
- "zh_Hant": "kiina (perinteinen)",
631
663
  "zh_Hant-alt-long": "mandariinikiina (perinteinen)",
632
664
  "zu": "zulu",
633
665
  "zun": "zuni",
@@ -717,7 +749,7 @@
717
749
  "Jurc": "džurtšen",
718
750
  "Kali": "kayah li",
719
751
  "Kana": "katakana",
720
- "Kawi": "Kawi",
752
+ "Kawi": "kawi",
721
753
  "Khar": "kharosthi",
722
754
  "Khmr": "khmeriläinen",
723
755
  "Khoj": "khojki",
@@ -758,7 +790,7 @@
758
790
  "Mtei-alt-secondary": "meitei mayek",
759
791
  "Mult": "multanilainen",
760
792
  "Mymr": "burmalainen",
761
- "Nagm": "Nagm",
793
+ "Nagm": "Nagin mundariaakkoset",
762
794
  "Nand": "nandinagari",
763
795
  "Narb": "muinaispohjoisarabialainen",
764
796
  "Nbat": "nabatealainen",
@@ -1064,6 +1096,7 @@
1064
1096
  "NR": "Nauru",
1065
1097
  "NU": "Niue",
1066
1098
  "NZ": "Uusi-Seelanti",
1099
+ "NZ-alt-variant": "Aotearoa",
1067
1100
  "OM": "Oman",
1068
1101
  "PA": "Panama",
1069
1102
  "PE": "Peru",
@@ -1123,6 +1156,7 @@
1123
1156
  "TN": "Tunisia",
1124
1157
  "TO": "Tonga",
1125
1158
  "TR": "Turkki",
1159
+ "TR-alt-variant": "Turkki",
1126
1160
  "TT": "Trinidad ja Tobago",
1127
1161
  "TV": "Tuvalu",
1128
1162
  "TW": "Taiwan",
@@ -1170,9 +1204,9 @@
1170
1204
  "short": "H.mm"
1171
1205
  },
1172
1206
  "dateTimeFormats": {
1173
- "full": "{1} 'klo' {0}",
1174
- "long": "{1} 'klo' {0}",
1175
- "medium": "{1} 'klo' {0}",
1207
+ "full": "{1} {0}",
1208
+ "long": "{1} {0}",
1209
+ "medium": "{1} {0}",
1176
1210
  "short": "{1} {0}",
1177
1211
  "availableFormats": {
1178
1212
  "Bh": "h B",
@@ -1183,9 +1217,9 @@
1183
1217
  "EBhm": "E h.mm B",
1184
1218
  "EBhms": "E h.mm.ss B",
1185
1219
  "Ed": "E d.",
1186
- "Ehm": "E h.mm a",
1220
+ "Ehm": "E h.mma",
1187
1221
  "EHm": "E H.mm",
1188
- "Ehms": "E h.mm.ss a",
1222
+ "Ehms": "E h.mm.ssa",
1189
1223
  "EHms": "E H.mm.ss",
1190
1224
  "Gy": "y G",
1191
1225
  "GyMd": "M.d.y G",
@@ -1194,15 +1228,15 @@
1194
1228
  "GyMMMEd": "E d. MMM y G",
1195
1229
  "GyMMMMd": "d. MMMM y G",
1196
1230
  "GyMMMMEd": "E d. MMMM y G",
1197
- "h": "h a",
1231
+ "h": "ha",
1198
1232
  "H": "H",
1199
- "hm": "h.mm a",
1233
+ "hm": "h.mma",
1200
1234
  "Hm": "H.mm",
1201
- "hms": "h.mm.ss a",
1235
+ "hms": "h.mm.ssa",
1202
1236
  "Hms": "H.mm.ss",
1203
- "hmsv": "h.mm.ss a v",
1237
+ "hmsv": "h.mm.ssa v",
1204
1238
  "Hmsv": "H.mm.ss v",
1205
- "hmv": "h.mm a v",
1239
+ "hmv": "h.mma v",
1206
1240
  "Hmv": "H.mm v",
1207
1241
  "M": "L",
1208
1242
  "Md": "d.M.",
@@ -1250,7 +1284,7 @@
1250
1284
  "h": "h–h B"
1251
1285
  },
1252
1286
  "Bhm": {
1253
- "B": "h.mm B h.mm B",
1287
+ "B": "h.mm Bh.mm B",
1254
1288
  "h": "h.mm–h.mm B",
1255
1289
  "m": "h.mm–h.mm B"
1256
1290
  },
@@ -1258,88 +1292,88 @@
1258
1292
  "d": "d.–d."
1259
1293
  },
1260
1294
  "Gy": {
1261
- "G": "y G y G",
1295
+ "G": "y Gy G",
1262
1296
  "y": "y–y G"
1263
1297
  },
1264
1298
  "GyM": {
1265
- "G": "M/y GGGGG M/y GGGGG",
1299
+ "G": "M/y GGGGGM/y GGGGG",
1266
1300
  "M": "M/y–M/y GGGGG",
1267
1301
  "y": "M/y–M/y GGGGG"
1268
1302
  },
1269
1303
  "GyMd": {
1270
1304
  "d": "d.M.y–d.M.y GGGGG",
1271
- "G": "d.M.y GGGGG d.M.y GGGGG",
1305
+ "G": "d.M.y GGGGGd.M.y GGGGG",
1272
1306
  "M": "d.M.y–d.M.y GGGGG",
1273
1307
  "y": "d.M.y–d.M.y GGGGG"
1274
1308
  },
1275
1309
  "GyMEd": {
1276
- "d": "E d.M.y E d.M.y GGGGG",
1277
- "G": "E d.M.y GGGGG E d.M.y GGGGG",
1278
- "M": "E d.M.y E d.M.y GGGGG",
1279
- "y": "E d.M.y E d.M.y GGGGG"
1310
+ "d": "E d.M.yE d.M.y GGGGG",
1311
+ "G": "E d.M.y GGGGGE d.M.y GGGGG",
1312
+ "M": "E d.M.yE d.M.y GGGGG",
1313
+ "y": "E d.M.yE d.M.y GGGGG"
1280
1314
  },
1281
1315
  "GyMMM": {
1282
- "G": "M.y G M.y G",
1316
+ "G": "M.y GM.y G",
1283
1317
  "M": "M.–M.y G",
1284
1318
  "y": "M.y–M.y G"
1285
1319
  },
1286
1320
  "GyMMMd": {
1287
1321
  "d": "d.–d.M.y G",
1288
- "G": "d.M.y. G d.M.y G",
1322
+ "G": "d.M.y. Gd.M.y G",
1289
1323
  "M": "d.M–d.M.y G",
1290
1324
  "y": "d.M.y–d.M.y G"
1291
1325
  },
1292
1326
  "GyMMMEd": {
1293
- "d": "E d.M E d.M.y G",
1294
- "G": "E d.M.y E d.M.y G",
1295
- "M": "E d.M. E d.M.y G",
1296
- "y": "E d.M.y E d.M.y G"
1327
+ "d": "E d.ME d.M.y G",
1328
+ "G": "E d.M.yE d.M.y G",
1329
+ "M": "E d.M.E d.M.y G",
1330
+ "y": "E d.M.yE d.M.y G"
1297
1331
  },
1298
1332
  "GyMMMM": {
1299
- "G": "LLLL y G LLLL y G",
1333
+ "G": "LLLL y GLLLL y G",
1300
1334
  "M": "LLLL–LLLL y G",
1301
- "y": "LLLL y LLLL y G"
1335
+ "y": "LLLL yLLLL y G"
1302
1336
  },
1303
1337
  "GyMMMMd": {
1304
1338
  "d": "d.–d. MMMM y G",
1305
- "G": "d. MMMM y G d. MMMM y G",
1306
- "M": "d. MMMM d. MMMM y G",
1307
- "y": "d. MMMM y d. MMMM y G"
1339
+ "G": "d. MMMM y Gd. MMMM y G",
1340
+ "M": "d. MMMMd. MMMM y G",
1341
+ "y": "d. MMMM yd. MMMM y G"
1308
1342
  },
1309
1343
  "GyMMMMEd": {
1310
- "d": "E d. E d. MMMM y G",
1311
- "G": "E d. MMMM y G E d. MMMM y G",
1312
- "M": "E d. MMMM E d. MMMM y G",
1313
- "y": "E d. MMMM y E d. MMMM y G"
1344
+ "d": "E d.E d. MMMM y G",
1345
+ "G": "E d. MMMM y GE d. MMMM y G",
1346
+ "M": "E d. MMMME d. MMMM y G",
1347
+ "y": "E d. MMMM yE d. MMMM y G"
1314
1348
  },
1315
1349
  "h": {
1316
- "a": "h a h a",
1317
- "h": "h–h a"
1350
+ "a": "haha",
1351
+ "h": "h–ha"
1318
1352
  },
1319
1353
  "H": {
1320
1354
  "H": "H–H"
1321
1355
  },
1322
1356
  "hm": {
1323
- "a": "h.mm a h.mm a",
1324
- "h": "h.mm–h.mm a",
1325
- "m": "h.mm–h.mm a"
1357
+ "a": "h.mmah.mma",
1358
+ "h": "h.mm–h.mma",
1359
+ "m": "h.mm–h.mma"
1326
1360
  },
1327
1361
  "Hm": {
1328
1362
  "H": "H.mm–H.mm",
1329
1363
  "m": "H.mm–H.mm"
1330
1364
  },
1331
1365
  "hmv": {
1332
- "a": "h.mm a h.mm a v",
1333
- "h": "h.mm–h.mm a v",
1334
- "m": "h.mm–h.mm a v"
1366
+ "a": "h.mmah.mma v",
1367
+ "h": "h.mm–h.mma v",
1368
+ "m": "h.mm–h.mma v"
1335
1369
  },
1336
1370
  "Hmv": {
1337
1371
  "H": "H.mm–H.mm v",
1338
1372
  "m": "H.mm–H.mm v"
1339
1373
  },
1340
1374
  "hv": {
1341
- "a": "h a h a v",
1342
- "h": "h–h a v"
1375
+ "a": "haha v",
1376
+ "h": "h–ha v"
1343
1377
  },
1344
1378
  "Hv": {
1345
1379
  "H": "H–H v"
@@ -1352,37 +1386,37 @@
1352
1386
  "M": "d.M.–d.M."
1353
1387
  },
1354
1388
  "MEd": {
1355
- "d": "E d. E d.M.",
1356
- "M": "E d.M. E d.M."
1389
+ "d": "E d.E d.M.",
1390
+ "M": "E d.M.E d.M."
1357
1391
  },
1358
1392
  "MMM": {
1359
1393
  "M": "LLL–LLLL"
1360
1394
  },
1361
1395
  "MMMd": {
1362
1396
  "d": "d.–d. MMMM",
1363
- "M": "d. MMMM d. MMMM"
1397
+ "M": "d. MMMMd. MMMM"
1364
1398
  },
1365
1399
  "MMMEd": {
1366
- "d": "E d. E d. MMMM",
1367
- "M": "E d. MMMM E d. MMMM"
1400
+ "d": "E d.E d. MMMM",
1401
+ "M": "E d. MMMME d. MMMM"
1368
1402
  },
1369
1403
  "MMMM": {
1370
1404
  "M": "LLL–LLLL"
1371
1405
  },
1372
1406
  "MMMMd": {
1373
1407
  "d": "d.–d. MMMM",
1374
- "M": "d. MMMM d. MMMM"
1408
+ "M": "d. MMMMd. MMMM"
1375
1409
  },
1376
1410
  "MMMMEd": {
1377
- "d": "E d. E d. MMMM",
1378
- "M": "E d. MMMM E d. MMMM"
1411
+ "d": "E d.E d. MMMM",
1412
+ "M": "E d. MMMME d. MMMM"
1379
1413
  },
1380
1414
  "y": {
1381
1415
  "y": "y–y"
1382
1416
  },
1383
1417
  "yM": {
1384
1418
  "M": "LLL–LLLL y",
1385
- "y": "LLLL y LLLL y"
1419
+ "y": "LLLL yLLLL y"
1386
1420
  },
1387
1421
  "yMd": {
1388
1422
  "d": "d.–d.M.y",
@@ -1390,37 +1424,37 @@
1390
1424
  "y": "d.M.y–d.M.y"
1391
1425
  },
1392
1426
  "yMEd": {
1393
- "d": "E d.M.y E d.M.y",
1394
- "M": "E d.M.y E d.M.y",
1395
- "y": "E d.M.y E d.M.y"
1427
+ "d": "E d.M.yE d.M.y",
1428
+ "M": "E d.M.yE d.M.y",
1429
+ "y": "E d.M.yE d.M.y"
1396
1430
  },
1397
1431
  "yMMM": {
1398
1432
  "M": "LLL–LLLL y",
1399
- "y": "LLLL y LLLL y"
1433
+ "y": "LLLL yLLLL y"
1400
1434
  },
1401
1435
  "yMMMd": {
1402
1436
  "d": "d.–d. MMMM y",
1403
- "M": "d. MMMM d. MMMM y",
1404
- "y": "d. MMMM y d. MMMM y"
1437
+ "M": "d. MMMMd. MMMM y",
1438
+ "y": "d. MMMM yd. MMMM y"
1405
1439
  },
1406
1440
  "yMMMEd": {
1407
- "d": "E d. E d. MMMM y",
1408
- "M": "E d. MMMM E d. MMMM y",
1409
- "y": "E d. MMMM y E d. MMMM y"
1441
+ "d": "E d.E d. MMMM y",
1442
+ "M": "E d. MMMME d. MMMM y",
1443
+ "y": "E d. MMMM yE d. MMMM y"
1410
1444
  },
1411
1445
  "yMMMM": {
1412
1446
  "M": "LLL–LLLL y",
1413
- "y": "LLLL y LLLL y"
1447
+ "y": "LLLL yLLLL y"
1414
1448
  },
1415
1449
  "yMMMMd": {
1416
1450
  "d": "d.–d. MMMM y",
1417
- "M": "d. MMMM d. MMMM y",
1418
- "y": "d. MMMM y d. MMMM y"
1451
+ "M": "d. MMMMd. MMMM y",
1452
+ "y": "d. MMMM yd. MMMM y"
1419
1453
  },
1420
1454
  "yMMMMEd": {
1421
- "d": "E d. E d. MMMM y",
1422
- "M": "E d. MMMM E d. MMMM y",
1423
- "y": "E d. MMMM y E d. MMMM y"
1455
+ "d": "E d.E d. MMMM y",
1456
+ "M": "E d. MMMME d. MMMM y",
1457
+ "y": "E d. MMMM yE d. MMMM y"
1424
1458
  }
1425
1459
  }
1426
1460
  },
@@ -1751,9 +1785,9 @@
1751
1785
  "short": "H.mm"
1752
1786
  },
1753
1787
  "dateTimeFormats": {
1754
- "full": "{1} 'klo' {0}",
1755
- "long": "{1} 'klo' {0}",
1756
- "medium": "{1} 'klo' {0}",
1788
+ "full": "{1} {0}",
1789
+ "long": "{1} {0}",
1790
+ "medium": "{1} {0}",
1757
1791
  "short": "{1} {0}",
1758
1792
  "availableFormats": {
1759
1793
  "Bh": "h B",
@@ -1764,20 +1798,20 @@
1764
1798
  "EBhm": "E h.mm B",
1765
1799
  "EBhms": "E h.mm.ss B",
1766
1800
  "Ed": "E d.",
1767
- "Ehm": "E h.mm a",
1801
+ "Ehm": "E h.mma",
1768
1802
  "EHm": "E HH.mm",
1769
- "Ehms": "E h.mm.ss a",
1803
+ "Ehms": "E h.mm.ssa",
1770
1804
  "EHms": "E HH.mm.ss",
1771
1805
  "Gy": "y G",
1772
1806
  "GyMd": "d.M.y G",
1773
1807
  "GyMMM": "LLL y G",
1774
1808
  "GyMMMd": "d. MMM y G",
1775
1809
  "GyMMMEd": "E d. MMM y G",
1776
- "h": "h a",
1810
+ "h": "ha",
1777
1811
  "H": "H",
1778
- "hm": "h.mm a",
1812
+ "hm": "h.mma",
1779
1813
  "Hm": "H.mm",
1780
- "hms": "h.mm.ss a",
1814
+ "hms": "h.mm.ssa",
1781
1815
  "Hms": "H.mm.ss",
1782
1816
  "M": "L",
1783
1817
  "Md": "d.M.",
@@ -1821,7 +1855,7 @@
1821
1855
  "h": "h–h B"
1822
1856
  },
1823
1857
  "Bhm": {
1824
- "B": "h.mm B h.mm B",
1858
+ "B": "h.mm Bh.mm B",
1825
1859
  "h": "h.mm–h.mm B",
1826
1860
  "m": "h.mm–h.mm B"
1827
1861
  },
@@ -1829,88 +1863,88 @@
1829
1863
  "d": "d.–d."
1830
1864
  },
1831
1865
  "Gy": {
1832
- "G": "y G y G",
1866
+ "G": "y Gy G",
1833
1867
  "y": "y–y G"
1834
1868
  },
1835
1869
  "GyM": {
1836
- "G": "M/y GGGGG M/y GGGGG",
1870
+ "G": "M/y GGGGGM/y GGGGG",
1837
1871
  "M": "M/y–M/y GGGGG",
1838
1872
  "y": "M/y–M/y GGGGG"
1839
1873
  },
1840
1874
  "GyMd": {
1841
1875
  "d": "d.M.y–d.M.y GGGGG",
1842
- "G": "d.M.y GGGGG d.M.y GGGGG",
1876
+ "G": "d.M.y GGGGGd.M.y GGGGG",
1843
1877
  "M": "d.M.y–d.M.y GGGGG",
1844
1878
  "y": "d.M.y–d.M.y GGGGG"
1845
1879
  },
1846
1880
  "GyMEd": {
1847
- "d": "E d.M.y E d.M.y GGGGG",
1848
- "G": "E d.M.y GGGGG E d.M.y GGGGG",
1849
- "M": "E d.M.y E d.M.y GGGGG",
1850
- "y": "E d.M.y E d.M.y GGGGG"
1881
+ "d": "E d.M.yE d.M.y GGGGG",
1882
+ "G": "E d.M.y GGGGGE d.M.y GGGGG",
1883
+ "M": "E d.M.yE d.M.y GGGGG",
1884
+ "y": "E d.M.yE d.M.y GGGGG"
1851
1885
  },
1852
1886
  "GyMMM": {
1853
- "G": "M.y G M.y G",
1887
+ "G": "M.y GM.y G",
1854
1888
  "M": "M.–M.y G",
1855
1889
  "y": "M.y–M.y G"
1856
1890
  },
1857
1891
  "GyMMMd": {
1858
1892
  "d": "d.–d.M.y G",
1859
- "G": "d.M.y G d.M.y G",
1893
+ "G": "d.M.y Gd.M.y G",
1860
1894
  "M": "d.M.–d.M.y G",
1861
- "y": "d.M.y d.M.y G"
1895
+ "y": "d.M.yd.M.y G"
1862
1896
  },
1863
1897
  "GyMMMEd": {
1864
- "d": "E d.M. E d.M.y G",
1865
- "G": "E d.M.y E d.M.y G",
1866
- "M": "E d.M. E d.M.y G",
1867
- "y": "E d.M.y E d.M.y G"
1898
+ "d": "E d.M.E d.M.y G",
1899
+ "G": "E d.M.yE d.M.y G",
1900
+ "M": "E d.M.E d.M.y G",
1901
+ "y": "E d.M.yE d.M.y G"
1868
1902
  },
1869
1903
  "GyMMMM": {
1870
- "G": "LLLL y G LLLL y G",
1904
+ "G": "LLLL y GLLLL y G",
1871
1905
  "M": "LLLL–LLLL y G",
1872
- "y": "LLLL y LLLL y G"
1906
+ "y": "LLLL yLLLL y G"
1873
1907
  },
1874
1908
  "GyMMMMd": {
1875
1909
  "d": "d.–d. MMMM y G",
1876
- "G": "d. MMMM y G d. MMMM y G",
1877
- "M": "d. MMMM d. MMMM y G",
1878
- "y": "d. MMMM y d. MMMM y G"
1910
+ "G": "d. MMMM y Gd. MMMM y G",
1911
+ "M": "d. MMMMd. MMMM y G",
1912
+ "y": "d. MMMM yd. MMMM y G"
1879
1913
  },
1880
1914
  "GyMMMMEd": {
1881
- "d": "E d. E d. MMMM y G",
1882
- "G": "E d. MMMM y G E d. MMMM y G",
1883
- "M": "E d. MMMM E d. MMMM y G",
1884
- "y": "E d. MMMM y E d. MMMM y G"
1915
+ "d": "E d.E d. MMMM y G",
1916
+ "G": "E d. MMMM y GE d. MMMM y G",
1917
+ "M": "E d. MMMME d. MMMM y G",
1918
+ "y": "E d. MMMM yE d. MMMM y G"
1885
1919
  },
1886
1920
  "h": {
1887
- "a": "h a h a",
1888
- "h": "h–h a"
1921
+ "a": "haha",
1922
+ "h": "h–ha"
1889
1923
  },
1890
1924
  "H": {
1891
1925
  "H": "H–H"
1892
1926
  },
1893
1927
  "hm": {
1894
- "a": "h.mm a h.mm a",
1895
- "h": "h.mm–h.mm a",
1896
- "m": "h.mm–h.mm a"
1928
+ "a": "h.mmah.mma",
1929
+ "h": "h.mm–h.mma",
1930
+ "m": "h.mm–h.mma"
1897
1931
  },
1898
1932
  "Hm": {
1899
1933
  "H": "H.mm–H.mm",
1900
1934
  "m": "H.mm–H.mm"
1901
1935
  },
1902
1936
  "hmv": {
1903
- "a": "h.mm a h.mm a v",
1904
- "h": "h.mm–h.mm a v",
1905
- "m": "h.mm–h.mm a v"
1937
+ "a": "h.mmah.mma v",
1938
+ "h": "h.mm–h.mma v",
1939
+ "m": "h.mm–h.mma v"
1906
1940
  },
1907
1941
  "Hmv": {
1908
1942
  "H": "H.mm–H.mm v",
1909
1943
  "m": "H.mm–H.mm v"
1910
1944
  },
1911
1945
  "hv": {
1912
- "a": "h a h a v",
1913
- "h": "h–h a v"
1946
+ "a": "haha v",
1947
+ "h": "h–ha v"
1914
1948
  },
1915
1949
  "Hv": {
1916
1950
  "H": "H–H v"
@@ -1923,19 +1957,19 @@
1923
1957
  "M": "d.M.–d.M."
1924
1958
  },
1925
1959
  "MEd": {
1926
- "d": "E d. E d.M.",
1927
- "M": "E d.M. E d.M."
1960
+ "d": "E d.E d.M.",
1961
+ "M": "E d.M.E d.M."
1928
1962
  },
1929
1963
  "MMM": {
1930
1964
  "M": "LLL–LLLL"
1931
1965
  },
1932
1966
  "MMMd": {
1933
1967
  "d": "d.–d. MMMM",
1934
- "M": "d. MMMM d. MMMM"
1968
+ "M": "d. MMMMd. MMMM"
1935
1969
  },
1936
1970
  "MMMEd": {
1937
- "d": "E d. E d. MMMM",
1938
- "M": "E d. MMMM E d. MMMM"
1971
+ "d": "E d.E d. MMMM",
1972
+ "M": "E d. MMMME d. MMMM"
1939
1973
  },
1940
1974
  "MMMM": {
1941
1975
  "M": "LLL–LLLL"
@@ -1945,7 +1979,7 @@
1945
1979
  },
1946
1980
  "yM": {
1947
1981
  "M": "LLL–LLLL y G",
1948
- "y": "LLLL y LLLL y G"
1982
+ "y": "LLLL yLLLL y G"
1949
1983
  },
1950
1984
  "yMd": {
1951
1985
  "d": "d.–d.M.y G",
@@ -1953,27 +1987,27 @@
1953
1987
  "y": "d.M.y–d.M.y G"
1954
1988
  },
1955
1989
  "yMEd": {
1956
- "d": "E d.M.y E d.M.y G",
1957
- "M": "E d.M.y E d.M.y G",
1958
- "y": "E d.M.y E d.M.y G"
1990
+ "d": "E d.M.yE d.M.y G",
1991
+ "M": "E d.M.yE d.M.y G",
1992
+ "y": "E d.M.yE d.M.y G"
1959
1993
  },
1960
1994
  "yMMM": {
1961
1995
  "M": "LLL–LLLL y G",
1962
- "y": "LLLL y LLLL y G"
1996
+ "y": "LLLL yLLLL y G"
1963
1997
  },
1964
1998
  "yMMMd": {
1965
1999
  "d": "d.–d. MMMM y G",
1966
- "M": "d. MMMM d. MMMM y G",
1967
- "y": "d. MMMM y d. MMMM y G"
2000
+ "M": "d. MMMMd. MMMM y G",
2001
+ "y": "d. MMMM yd. MMMM y G"
1968
2002
  },
1969
2003
  "yMMMEd": {
1970
- "d": "E d. E d. MMMM y G",
1971
- "M": "E d. MMMM E d. MMMM y G",
1972
- "y": "E d. MMMM y E d. MMMM y G"
2004
+ "d": "E d.E d. MMMM y G",
2005
+ "M": "E d. MMMME d. MMMM y G",
2006
+ "y": "E d. MMMM yE d. MMMM y G"
1973
2007
  },
1974
2008
  "yMMMM": {
1975
2009
  "M": "LLL–LLLL y G",
1976
- "y": "LLLL y LLLL y G"
2010
+ "y": "LLLL yLLLL y G"
1977
2011
  }
1978
2012
  }
1979
2013
  },
@@ -2301,9 +2335,9 @@
2301
2335
  "short": "H.mm"
2302
2336
  },
2303
2337
  "dateTimeFormats": {
2304
- "full": "{1} 'klo' {0}",
2305
- "long": "{1} 'klo' {0}",
2306
- "medium": "{1} 'klo' {0}",
2338
+ "full": "{1} {0}",
2339
+ "long": "{1} {0}",
2340
+ "medium": "{1} {0}",
2307
2341
  "short": "{1} {0}",
2308
2342
  "availableFormats": {
2309
2343
  "Bh": "h B",
@@ -2314,20 +2348,20 @@
2314
2348
  "EBhm": "E h.mm B",
2315
2349
  "EBhms": "E h.mm.ss B",
2316
2350
  "Ed": "E d.",
2317
- "Ehm": "E h.mm a",
2351
+ "Ehm": "E h.mma",
2318
2352
  "EHm": "E HH.mm",
2319
- "Ehms": "E h.mm.ss a",
2353
+ "Ehms": "E h.mm.ssa",
2320
2354
  "EHms": "E HH.mm.ss",
2321
2355
  "Gy": "y G",
2322
2356
  "GyMd": "d.M.y G",
2323
2357
  "GyMMM": "LLL y G",
2324
2358
  "GyMMMd": "d. MMM y G",
2325
2359
  "GyMMMEd": "E d. MMM y G",
2326
- "h": "h a",
2360
+ "h": "ha",
2327
2361
  "H": "H",
2328
- "hm": "h.mm a",
2362
+ "hm": "h.mma",
2329
2363
  "Hm": "H.mm",
2330
- "hms": "h.mm.ss a",
2364
+ "hms": "h.mm.ssa",
2331
2365
  "Hms": "H.mm.ss",
2332
2366
  "M": "L",
2333
2367
  "Md": "d.M.",
@@ -2371,7 +2405,7 @@
2371
2405
  "h": "h–h B"
2372
2406
  },
2373
2407
  "Bhm": {
2374
- "B": "h.mm B h.mm B",
2408
+ "B": "h.mm Bh.mm B",
2375
2409
  "h": "h.mm–h.mm B",
2376
2410
  "m": "h.mm–h.mm B"
2377
2411
  },
@@ -2379,88 +2413,88 @@
2379
2413
  "d": "d.–d."
2380
2414
  },
2381
2415
  "Gy": {
2382
- "G": "y G y G",
2416
+ "G": "y Gy G",
2383
2417
  "y": "y–y G"
2384
2418
  },
2385
2419
  "GyM": {
2386
- "G": "M/y GGGGG M/y GGGGG",
2420
+ "G": "M/y GGGGGM/y GGGGG",
2387
2421
  "M": "M/y–M/y GGGGG",
2388
2422
  "y": "M/y–M/y GGGGG"
2389
2423
  },
2390
2424
  "GyMd": {
2391
2425
  "d": "d.M.y–d.M.y GGGGG",
2392
- "G": "d.M.y GGGGG d.M.y GGGGG",
2426
+ "G": "d.M.y GGGGGd.M.y GGGGG",
2393
2427
  "M": "d.M.y–d.M.y GGGGG",
2394
2428
  "y": "d.M.y–d.M.y GGGGG"
2395
2429
  },
2396
2430
  "GyMEd": {
2397
- "d": "E d.M.y E d.M.y GGGGG",
2398
- "G": "E d.M.y GGGGG E d.M.y GGGGG",
2399
- "M": "E d.M.y E d.M.y GGGGG",
2400
- "y": "E d.M.y E d.M.y GGGGG"
2431
+ "d": "E d.M.yE d.M.y GGGGG",
2432
+ "G": "E d.M.y GGGGGE d.M.y GGGGG",
2433
+ "M": "E d.M.yE d.M.y GGGGG",
2434
+ "y": "E d.M.yE d.M.y GGGGG"
2401
2435
  },
2402
2436
  "GyMMM": {
2403
- "G": "M.y G M.y G",
2437
+ "G": "M.y GM.y G",
2404
2438
  "M": "M.–M.y G",
2405
2439
  "y": "M.y–M.y G"
2406
2440
  },
2407
2441
  "GyMMMd": {
2408
2442
  "d": "d.–d.M.y G",
2409
- "G": "d.M.y G d.M.y G",
2443
+ "G": "d.M.y Gd.M.y G",
2410
2444
  "M": "d.M.–d.M.y G",
2411
- "y": "d.M.y d.M.y G"
2445
+ "y": "d.M.yd.M.y G"
2412
2446
  },
2413
2447
  "GyMMMEd": {
2414
- "d": "E d.M. E d.M.y G",
2415
- "G": "E d.M.y E d.M.y G",
2416
- "M": "E d.M. E d.M.y G",
2417
- "y": "E d.M.y E d.M.y G"
2448
+ "d": "E d.M.E d.M.y G",
2449
+ "G": "E d.M.yE d.M.y G",
2450
+ "M": "E d.M.E d.M.y G",
2451
+ "y": "E d.M.yE d.M.y G"
2418
2452
  },
2419
2453
  "GyMMMM": {
2420
- "G": "LLLL y G LLLL y G",
2454
+ "G": "LLLL y GLLLL y G",
2421
2455
  "M": "LLLL–LLLL y G",
2422
- "y": "LLLL y LLLL y G"
2456
+ "y": "LLLL yLLLL y G"
2423
2457
  },
2424
2458
  "GyMMMMd": {
2425
2459
  "d": "d.–d. MMMM y G",
2426
- "G": "d. MMMM y G d. MMMM y G",
2427
- "M": "d. MMMM d. MMMM y G",
2428
- "y": "d. MMMM y d. MMMM y G"
2460
+ "G": "d. MMMM y Gd. MMMM y G",
2461
+ "M": "d. MMMMd. MMMM y G",
2462
+ "y": "d. MMMM yd. MMMM y G"
2429
2463
  },
2430
2464
  "GyMMMMEd": {
2431
- "d": "E d. E d. MMMM y G",
2432
- "G": "E d. MMMM y G E d. MMMM y G",
2433
- "M": "E d. MMMM E d. MMMM y G",
2434
- "y": "E d. MMMM y E d. MMMM y G"
2465
+ "d": "E d.E d. MMMM y G",
2466
+ "G": "E d. MMMM y GE d. MMMM y G",
2467
+ "M": "E d. MMMME d. MMMM y G",
2468
+ "y": "E d. MMMM yE d. MMMM y G"
2435
2469
  },
2436
2470
  "h": {
2437
- "a": "h a h a",
2438
- "h": "h–h a"
2471
+ "a": "haha",
2472
+ "h": "h–ha"
2439
2473
  },
2440
2474
  "H": {
2441
2475
  "H": "H–H"
2442
2476
  },
2443
2477
  "hm": {
2444
- "a": "h.mm a h.mm a",
2445
- "h": "h.mm–h.mm a",
2446
- "m": "h.mm–h.mm a"
2478
+ "a": "h.mmah.mma",
2479
+ "h": "h.mm–h.mma",
2480
+ "m": "h.mm–h.mma"
2447
2481
  },
2448
2482
  "Hm": {
2449
2483
  "H": "H.mm–H.mm",
2450
2484
  "m": "H.mm–H.mm"
2451
2485
  },
2452
2486
  "hmv": {
2453
- "a": "h.mm a h.mm a v",
2454
- "h": "h.mm–h.mm a v",
2455
- "m": "h.mm–h.mm a v"
2487
+ "a": "h.mmah.mma v",
2488
+ "h": "h.mm–h.mma v",
2489
+ "m": "h.mm–h.mma v"
2456
2490
  },
2457
2491
  "Hmv": {
2458
2492
  "H": "H.mm–H.mm v",
2459
2493
  "m": "H.mm–H.mm v"
2460
2494
  },
2461
2495
  "hv": {
2462
- "a": "h a h a v",
2463
- "h": "h–h a v"
2496
+ "a": "haha v",
2497
+ "h": "h–ha v"
2464
2498
  },
2465
2499
  "Hv": {
2466
2500
  "H": "H–H v"
@@ -2473,19 +2507,19 @@
2473
2507
  "M": "d.M.–d.M."
2474
2508
  },
2475
2509
  "MEd": {
2476
- "d": "E d. E d.M.",
2477
- "M": "E d.M. E d.M."
2510
+ "d": "E d.E d.M.",
2511
+ "M": "E d.M.E d.M."
2478
2512
  },
2479
2513
  "MMM": {
2480
2514
  "M": "LLL–LLLL"
2481
2515
  },
2482
2516
  "MMMd": {
2483
2517
  "d": "d.–d. MMMM",
2484
- "M": "d. MMMM d. MMMM"
2518
+ "M": "d. MMMMd. MMMM"
2485
2519
  },
2486
2520
  "MMMEd": {
2487
- "d": "E d. E d. MMMM",
2488
- "M": "E d. MMMM E d. MMMM"
2521
+ "d": "E d.E d. MMMM",
2522
+ "M": "E d. MMMME d. MMMM"
2489
2523
  },
2490
2524
  "MMMM": {
2491
2525
  "M": "LLL–LLLL"
@@ -2496,8 +2530,8 @@
2496
2530
  },
2497
2531
  "yM": {
2498
2532
  "M": "LLL–LLLL y G",
2499
- "y": "LLLL y LLLL y G",
2500
- "G": "LLLL y G LLLL y G"
2533
+ "y": "LLLL yLLLL y G",
2534
+ "G": "LLLL y GLLLL y G"
2501
2535
  },
2502
2536
  "yMd": {
2503
2537
  "d": "d.–d.M.y G",
@@ -2506,32 +2540,32 @@
2506
2540
  "G": "d.M.y G–d.M.y G"
2507
2541
  },
2508
2542
  "yMEd": {
2509
- "d": "E d.M.y E d.M.y G",
2510
- "M": "E d.M.y E d.M.y G",
2511
- "y": "E d.M.y E d.M.y G",
2512
- "G": "E d.M.y G E d.M.y G"
2543
+ "d": "E d.M.yE d.M.y G",
2544
+ "M": "E d.M.yE d.M.y G",
2545
+ "y": "E d.M.yE d.M.y G",
2546
+ "G": "E d.M.y GE d.M.y G"
2513
2547
  },
2514
2548
  "yMMM": {
2515
2549
  "M": "LLL–LLLL y G",
2516
- "y": "LLLL y LLLL y G",
2517
- "G": "LLLL y G LLLL y G"
2550
+ "y": "LLLL yLLLL y G",
2551
+ "G": "LLLL y GLLLL y G"
2518
2552
  },
2519
2553
  "yMMMd": {
2520
2554
  "d": "d.–d. MMMM y G",
2521
- "M": "d. MMMM d. MMMM y G",
2522
- "y": "d. MMMM y d. MMMM y G",
2523
- "G": "d. MMMM y G d. MMMM y G"
2555
+ "M": "d. MMMMd. MMMM y G",
2556
+ "y": "d. MMMM yd. MMMM y G",
2557
+ "G": "d. MMMM y Gd. MMMM y G"
2524
2558
  },
2525
2559
  "yMMMEd": {
2526
- "d": "E d. E d. MMMM y G",
2527
- "M": "E d. MMMM E d. MMMM y G",
2528
- "y": "E d. MMMM y E d. MMMM y G",
2529
- "G": "E d. MMMM y G E d. MMMM y G"
2560
+ "d": "E d.E d. MMMM y G",
2561
+ "M": "E d. MMMME d. MMMM y G",
2562
+ "y": "E d. MMMM yE d. MMMM y G",
2563
+ "G": "E d. MMMM y GE d. MMMM y G"
2530
2564
  },
2531
2565
  "yMMMM": {
2532
2566
  "M": "LLL–LLLL y G",
2533
- "y": "LLLL y LLLL y G",
2534
- "G": "LLLL y G LLLL y G"
2567
+ "y": "LLLL yLLLL y G",
2568
+ "G": "LLLL y GLLLL y G"
2535
2569
  }
2536
2570
  }
2537
2571
  },
@@ -2871,9 +2905,9 @@
2871
2905
  "short": "H.mm"
2872
2906
  },
2873
2907
  "dateTimeFormats": {
2874
- "full": "{1} 'klo' {0}",
2875
- "long": "{1} 'klo' {0}",
2876
- "medium": "{1} 'klo' {0}",
2908
+ "full": "{1} {0}",
2909
+ "long": "{1} {0}",
2910
+ "medium": "{1} {0}",
2877
2911
  "short": "{1} {0}",
2878
2912
  "availableFormats": {
2879
2913
  "Bh": "h B",
@@ -2884,20 +2918,20 @@
2884
2918
  "EBhm": "E h.mm B",
2885
2919
  "EBhms": "E h.mm.ss B",
2886
2920
  "Ed": "E d.",
2887
- "Ehm": "E h.mm a",
2921
+ "Ehm": "E h.mma",
2888
2922
  "EHm": "E HH.mm",
2889
- "Ehms": "E h.mm.ss a",
2923
+ "Ehms": "E h.mm.ssa",
2890
2924
  "EHms": "E HH.mm.ss",
2891
2925
  "Gy": "y G",
2892
2926
  "GyMd": "d.M.y G",
2893
2927
  "GyMMM": "LLL y G",
2894
2928
  "GyMMMd": "d. MMM y G",
2895
2929
  "GyMMMEd": "E d. MMM y G",
2896
- "h": "h a",
2930
+ "h": "ha",
2897
2931
  "H": "H",
2898
- "hm": "h.mm a",
2932
+ "hm": "h.mma",
2899
2933
  "Hm": "H.mm",
2900
- "hms": "h.mm.ss a",
2934
+ "hms": "h.mm.ssa",
2901
2935
  "Hms": "H.mm.ss",
2902
2936
  "M": "L",
2903
2937
  "Md": "d.M.",
@@ -2941,7 +2975,7 @@
2941
2975
  "h": "h–h B"
2942
2976
  },
2943
2977
  "Bhm": {
2944
- "B": "h.mm B h.mm B",
2978
+ "B": "h.mm Bh.mm B",
2945
2979
  "h": "h.mm–h.mm B",
2946
2980
  "m": "h.mm–h.mm B"
2947
2981
  },
@@ -2949,88 +2983,88 @@
2949
2983
  "d": "d.–d."
2950
2984
  },
2951
2985
  "Gy": {
2952
- "G": "y G y G",
2986
+ "G": "y Gy G",
2953
2987
  "y": "y–y G"
2954
2988
  },
2955
2989
  "GyM": {
2956
- "G": "M/y GGGGG M/y GGGGG",
2990
+ "G": "M/y GGGGGM/y GGGGG",
2957
2991
  "M": "M/y–M/y GGGGG",
2958
2992
  "y": "M/y–M/y GGGGG"
2959
2993
  },
2960
2994
  "GyMd": {
2961
2995
  "d": "d.M.y–d.M.y GGGGG",
2962
- "G": "d.M.y GGGGG d.M.y GGGGG",
2996
+ "G": "d.M.y GGGGGd.M.y GGGGG",
2963
2997
  "M": "d.M.y–d.M.y GGGGG",
2964
2998
  "y": "d.M.y–d.M.y GGGGG"
2965
2999
  },
2966
3000
  "GyMEd": {
2967
- "d": "E d.M.y E d.M.y GGGGG",
2968
- "G": "E d.M.y GGGGG E d.M.y GGGGG",
2969
- "M": "E d.M.y E d.M.y GGGGG",
2970
- "y": "E d.M.y E d.M.y GGGGG"
3001
+ "d": "E d.M.yE d.M.y GGGGG",
3002
+ "G": "E d.M.y GGGGGE d.M.y GGGGG",
3003
+ "M": "E d.M.yE d.M.y GGGGG",
3004
+ "y": "E d.M.yE d.M.y GGGGG"
2971
3005
  },
2972
3006
  "GyMMM": {
2973
- "G": "M.y G M.y G",
3007
+ "G": "M.y GM.y G",
2974
3008
  "M": "M.–M.y G",
2975
3009
  "y": "M.y–M.y G"
2976
3010
  },
2977
3011
  "GyMMMd": {
2978
3012
  "d": "d.–d.M.y G",
2979
- "G": "d.M.y G d.M.y G",
3013
+ "G": "d.M.y Gd.M.y G",
2980
3014
  "M": "d.M.–d.M.y G",
2981
- "y": "d.M.y d.M.y G"
3015
+ "y": "d.M.yd.M.y G"
2982
3016
  },
2983
3017
  "GyMMMEd": {
2984
- "d": "E d.M. E d.M.y G",
2985
- "G": "E d.M.y E d.M.y G",
2986
- "M": "E d.M. E d.M.y G",
2987
- "y": "E d.M.y E d.M.y G"
3018
+ "d": "E d.M.E d.M.y G",
3019
+ "G": "E d.M.yE d.M.y G",
3020
+ "M": "E d.M.E d.M.y G",
3021
+ "y": "E d.M.yE d.M.y G"
2988
3022
  },
2989
3023
  "GyMMMM": {
2990
- "G": "LLLL y G LLLL y G",
3024
+ "G": "LLLL y GLLLL y G",
2991
3025
  "M": "LLLL–LLLL y G",
2992
- "y": "LLLL y LLLL y G"
3026
+ "y": "LLLL yLLLL y G"
2993
3027
  },
2994
3028
  "GyMMMMd": {
2995
3029
  "d": "d.–d. MMMM y G",
2996
- "G": "d. MMMM y G d. MMMM y G",
2997
- "M": "d. MMMM d. MMMM y G",
2998
- "y": "d. MMMM y d. MMMM y G"
3030
+ "G": "d. MMMM y Gd. MMMM y G",
3031
+ "M": "d. MMMMd. MMMM y G",
3032
+ "y": "d. MMMM yd. MMMM y G"
2999
3033
  },
3000
3034
  "GyMMMMEd": {
3001
- "d": "E d. E d. MMMM y G",
3002
- "G": "E d. MMMM y G E d. MMMM y G",
3003
- "M": "E d. MMMM E d. MMMM y G",
3004
- "y": "E d. MMMM y E d. MMMM y G"
3035
+ "d": "E d.E d. MMMM y G",
3036
+ "G": "E d. MMMM y GE d. MMMM y G",
3037
+ "M": "E d. MMMME d. MMMM y G",
3038
+ "y": "E d. MMMM yE d. MMMM y G"
3005
3039
  },
3006
3040
  "h": {
3007
- "a": "h a h a",
3008
- "h": "h–h a"
3041
+ "a": "haha",
3042
+ "h": "h–ha"
3009
3043
  },
3010
3044
  "H": {
3011
3045
  "H": "H–H"
3012
3046
  },
3013
3047
  "hm": {
3014
- "a": "h.mm a h.mm a",
3015
- "h": "h.mm–h.mm a",
3016
- "m": "h.mm–h.mm a"
3048
+ "a": "h.mmah.mma",
3049
+ "h": "h.mm–h.mma",
3050
+ "m": "h.mm–h.mma"
3017
3051
  },
3018
3052
  "Hm": {
3019
3053
  "H": "H.mm–H.mm",
3020
3054
  "m": "H.mm–H.mm"
3021
3055
  },
3022
3056
  "hmv": {
3023
- "a": "h.mm a h.mm a v",
3024
- "h": "h.mm–h.mm a v",
3025
- "m": "h.mm–h.mm a v"
3057
+ "a": "h.mmah.mma v",
3058
+ "h": "h.mm–h.mma v",
3059
+ "m": "h.mm–h.mma v"
3026
3060
  },
3027
3061
  "Hmv": {
3028
3062
  "H": "H.mm–H.mm v",
3029
3063
  "m": "H.mm–H.mm v"
3030
3064
  },
3031
3065
  "hv": {
3032
- "a": "h a h a v",
3033
- "h": "h–h a v"
3066
+ "a": "haha v",
3067
+ "h": "h–ha v"
3034
3068
  },
3035
3069
  "Hv": {
3036
3070
  "H": "H–H v"
@@ -3043,19 +3077,19 @@
3043
3077
  "M": "d.M.–d.M."
3044
3078
  },
3045
3079
  "MEd": {
3046
- "d": "E d. E d.M.",
3047
- "M": "E d.M. E d.M."
3080
+ "d": "E d.E d.M.",
3081
+ "M": "E d.M.E d.M."
3048
3082
  },
3049
3083
  "MMM": {
3050
3084
  "M": "LLL–LLLL"
3051
3085
  },
3052
3086
  "MMMd": {
3053
3087
  "d": "d.–d. MMMM",
3054
- "M": "d. MMMM d. MMMM"
3088
+ "M": "d. MMMMd. MMMM"
3055
3089
  },
3056
3090
  "MMMEd": {
3057
- "d": "E d. E d. MMMM",
3058
- "M": "E d. MMMM E d. MMMM"
3091
+ "d": "E d.E d. MMMM",
3092
+ "M": "E d. MMMME d. MMMM"
3059
3093
  },
3060
3094
  "MMMM": {
3061
3095
  "M": "LLL–LLLL"
@@ -3065,7 +3099,7 @@
3065
3099
  },
3066
3100
  "yM": {
3067
3101
  "M": "LLL–LLLL y G",
3068
- "y": "LLLL y LLLL y G"
3102
+ "y": "LLLL yLLLL y G"
3069
3103
  },
3070
3104
  "yMd": {
3071
3105
  "d": "d.–d.M.y G",
@@ -3073,27 +3107,27 @@
3073
3107
  "y": "d.M.y–d.M.y G"
3074
3108
  },
3075
3109
  "yMEd": {
3076
- "d": "E d.M.y E d.M.y G",
3077
- "M": "E d.M.y E d.M.y G",
3078
- "y": "E d.M.y E d.M.y G"
3110
+ "d": "E d.M.yE d.M.y G",
3111
+ "M": "E d.M.yE d.M.y G",
3112
+ "y": "E d.M.yE d.M.y G"
3079
3113
  },
3080
3114
  "yMMM": {
3081
3115
  "M": "LLL–LLLL y G",
3082
- "y": "LLLL y LLLL y G"
3116
+ "y": "LLLL yLLLL y G"
3083
3117
  },
3084
3118
  "yMMMd": {
3085
3119
  "d": "d.–d. MMMM y G",
3086
- "M": "d. MMMM d. MMMM y G",
3087
- "y": "d. MMMM y d. MMMM y G"
3120
+ "M": "d. MMMMd. MMMM y G",
3121
+ "y": "d. MMMM yd. MMMM y G"
3088
3122
  },
3089
3123
  "yMMMEd": {
3090
- "d": "E d. E d. MMMM y G",
3091
- "M": "E d. MMMM E d. MMMM y G",
3092
- "y": "E d. MMMM y E d. MMMM y G"
3124
+ "d": "E d.E d. MMMM y G",
3125
+ "M": "E d. MMMME d. MMMM y G",
3126
+ "y": "E d. MMMM yE d. MMMM y G"
3093
3127
  },
3094
3128
  "yMMMM": {
3095
3129
  "M": "LLL–LLLL y G",
3096
- "y": "LLLL y LLLL y G"
3130
+ "y": "LLLL yLLLL y G"
3097
3131
  }
3098
3132
  }
3099
3133
  },
@@ -3421,9 +3455,9 @@
3421
3455
  "short": "H.mm"
3422
3456
  },
3423
3457
  "dateTimeFormats": {
3424
- "full": "{1} 'klo' {0}",
3425
- "long": "{1} 'klo' {0}",
3426
- "medium": "{1} 'klo' {0}",
3458
+ "full": "{1} {0}",
3459
+ "long": "{1} {0}",
3460
+ "medium": "{1} {0}",
3427
3461
  "short": "{1} {0}",
3428
3462
  "availableFormats": {
3429
3463
  "Bh": "h B",
@@ -3434,20 +3468,20 @@
3434
3468
  "EBhm": "E h.mm B",
3435
3469
  "EBhms": "E h.mm.ss B",
3436
3470
  "Ed": "E d.",
3437
- "Ehm": "E h.mm a",
3471
+ "Ehm": "E h.mma",
3438
3472
  "EHm": "E HH.mm",
3439
- "Ehms": "E h.mm.ss a",
3473
+ "Ehms": "E h.mm.ssa",
3440
3474
  "EHms": "E HH.mm.ss",
3441
3475
  "Gy": "y G",
3442
3476
  "GyMd": "d.M.y G",
3443
3477
  "GyMMM": "LLL y G",
3444
3478
  "GyMMMd": "d. MMM y G",
3445
3479
  "GyMMMEd": "E d. MMM y G",
3446
- "h": "h a",
3480
+ "h": "ha",
3447
3481
  "H": "H",
3448
- "hm": "h.mm a",
3482
+ "hm": "h.mma",
3449
3483
  "Hm": "H.mm",
3450
- "hms": "h.mm.ss a",
3484
+ "hms": "h.mm.ssa",
3451
3485
  "Hms": "H.mm.ss",
3452
3486
  "M": "L",
3453
3487
  "Md": "d.M.",
@@ -3491,7 +3525,7 @@
3491
3525
  "h": "h–h B"
3492
3526
  },
3493
3527
  "Bhm": {
3494
- "B": "h.mm B h.mm B",
3528
+ "B": "h.mm Bh.mm B",
3495
3529
  "h": "h.mm–h.mm B",
3496
3530
  "m": "h.mm–h.mm B"
3497
3531
  },
@@ -3499,88 +3533,88 @@
3499
3533
  "d": "d.–d."
3500
3534
  },
3501
3535
  "Gy": {
3502
- "G": "y G y G",
3536
+ "G": "y Gy G",
3503
3537
  "y": "y–y G"
3504
3538
  },
3505
3539
  "GyM": {
3506
- "G": "M/y GGGGG M/y GGGGG",
3540
+ "G": "M/y GGGGGM/y GGGGG",
3507
3541
  "M": "M/y–M/y GGGGG",
3508
3542
  "y": "M/y–M/y GGGGG"
3509
3543
  },
3510
3544
  "GyMd": {
3511
3545
  "d": "d.M.y–d.M.y GGGGG",
3512
- "G": "d.M.y GGGGG d.M.y GGGGG",
3546
+ "G": "d.M.y GGGGGd.M.y GGGGG",
3513
3547
  "M": "d.M.y–d.M.y GGGGG",
3514
3548
  "y": "d.M.y–d.M.y GGGGG"
3515
3549
  },
3516
3550
  "GyMEd": {
3517
- "d": "E d.M.y E d.M.y GGGGG",
3518
- "G": "E d.M.y GGGGG E d.M.y GGGGG",
3519
- "M": "E d.M.y E d.M.y GGGGG",
3520
- "y": "E d.M.y E d.M.y GGGGG"
3551
+ "d": "E d.M.yE d.M.y GGGGG",
3552
+ "G": "E d.M.y GGGGGE d.M.y GGGGG",
3553
+ "M": "E d.M.yE d.M.y GGGGG",
3554
+ "y": "E d.M.yE d.M.y GGGGG"
3521
3555
  },
3522
3556
  "GyMMM": {
3523
- "G": "M.y G M.y G",
3557
+ "G": "M.y GM.y G",
3524
3558
  "M": "M.–M.y G",
3525
3559
  "y": "M.y–M.y G"
3526
3560
  },
3527
3561
  "GyMMMd": {
3528
3562
  "d": "d.–d.M.y G",
3529
- "G": "d.M.y G d.M.y G",
3563
+ "G": "d.M.y Gd.M.y G",
3530
3564
  "M": "d.M.–d.M.y G",
3531
- "y": "d.M.y d.M.y G"
3565
+ "y": "d.M.yd.M.y G"
3532
3566
  },
3533
3567
  "GyMMMEd": {
3534
- "d": "E d.M. E d.M.y G",
3535
- "G": "E d.M.y E d.M.y G",
3536
- "M": "E d.M. E d.M.y G",
3537
- "y": "E d.M.y E d.M.y G"
3568
+ "d": "E d.M.E d.M.y G",
3569
+ "G": "E d.M.yE d.M.y G",
3570
+ "M": "E d.M.E d.M.y G",
3571
+ "y": "E d.M.yE d.M.y G"
3538
3572
  },
3539
3573
  "GyMMMM": {
3540
- "G": "LLLL y G LLLL y G",
3574
+ "G": "LLLL y GLLLL y G",
3541
3575
  "M": "LLLL–LLLL y G",
3542
- "y": "LLLL y LLLL y G"
3576
+ "y": "LLLL yLLLL y G"
3543
3577
  },
3544
3578
  "GyMMMMd": {
3545
3579
  "d": "d.–d. MMMM y G",
3546
- "G": "d. MMMM y G d. MMMM y G",
3547
- "M": "d. MMMM d. MMMM y G",
3548
- "y": "d. MMMM y d. MMMM y G"
3580
+ "G": "d. MMMM y Gd. MMMM y G",
3581
+ "M": "d. MMMMd. MMMM y G",
3582
+ "y": "d. MMMM yd. MMMM y G"
3549
3583
  },
3550
3584
  "GyMMMMEd": {
3551
- "d": "E d. E d. MMMM y G",
3552
- "G": "E d. MMMM y G E d. MMMM y G",
3553
- "M": "E d. MMMM E d. MMMM y G",
3554
- "y": "E d. MMMM y E d. MMMM y G"
3585
+ "d": "E d.E d. MMMM y G",
3586
+ "G": "E d. MMMM y GE d. MMMM y G",
3587
+ "M": "E d. MMMME d. MMMM y G",
3588
+ "y": "E d. MMMM yE d. MMMM y G"
3555
3589
  },
3556
3590
  "h": {
3557
- "a": "h a h a",
3558
- "h": "h–h a"
3591
+ "a": "haha",
3592
+ "h": "h–ha"
3559
3593
  },
3560
3594
  "H": {
3561
3595
  "H": "H–H"
3562
3596
  },
3563
3597
  "hm": {
3564
- "a": "h.mm a h.mm a",
3565
- "h": "h.mm–h.mm a",
3566
- "m": "h.mm–h.mm a"
3598
+ "a": "h.mmah.mma",
3599
+ "h": "h.mm–h.mma",
3600
+ "m": "h.mm–h.mma"
3567
3601
  },
3568
3602
  "Hm": {
3569
3603
  "H": "H.mm–H.mm",
3570
3604
  "m": "H.mm–H.mm"
3571
3605
  },
3572
3606
  "hmv": {
3573
- "a": "h.mm a h.mm a v",
3574
- "h": "h.mm–h.mm a v",
3575
- "m": "h.mm–h.mm a v"
3607
+ "a": "h.mmah.mma v",
3608
+ "h": "h.mm–h.mma v",
3609
+ "m": "h.mm–h.mma v"
3576
3610
  },
3577
3611
  "Hmv": {
3578
3612
  "H": "H.mm–H.mm v",
3579
3613
  "m": "H.mm–H.mm v"
3580
3614
  },
3581
3615
  "hv": {
3582
- "a": "h a h a v",
3583
- "h": "h–h a v"
3616
+ "a": "haha v",
3617
+ "h": "h–ha v"
3584
3618
  },
3585
3619
  "Hv": {
3586
3620
  "H": "H–H v"
@@ -3593,19 +3627,19 @@
3593
3627
  "M": "d.M.–d.M."
3594
3628
  },
3595
3629
  "MEd": {
3596
- "d": "E d. E d.M.",
3597
- "M": "E d.M. E d.M."
3630
+ "d": "E d.E d.M.",
3631
+ "M": "E d.M.E d.M."
3598
3632
  },
3599
3633
  "MMM": {
3600
3634
  "M": "LLL–LLLL"
3601
3635
  },
3602
3636
  "MMMd": {
3603
3637
  "d": "d.–d. MMMM",
3604
- "M": "d. MMMM d. MMMM"
3638
+ "M": "d. MMMMd. MMMM"
3605
3639
  },
3606
3640
  "MMMEd": {
3607
- "d": "E d. E d. MMMM",
3608
- "M": "E d. MMMM E d. MMMM"
3641
+ "d": "E d.E d. MMMM",
3642
+ "M": "E d. MMMME d. MMMM"
3609
3643
  },
3610
3644
  "MMMM": {
3611
3645
  "M": "LLL–LLLL"
@@ -3615,7 +3649,7 @@
3615
3649
  },
3616
3650
  "yM": {
3617
3651
  "M": "LLL–LLLL y G",
3618
- "y": "LLLL y LLLL y G"
3652
+ "y": "LLLL yLLLL y G"
3619
3653
  },
3620
3654
  "yMd": {
3621
3655
  "d": "d.–d.M.y G",
@@ -3623,27 +3657,27 @@
3623
3657
  "y": "d.M.y–d.M.y G"
3624
3658
  },
3625
3659
  "yMEd": {
3626
- "d": "E d.M.y E d.M.y G",
3627
- "M": "E d.M.y E d.M.y G",
3628
- "y": "E d.M.y E d.M.y G"
3660
+ "d": "E d.M.yE d.M.y G",
3661
+ "M": "E d.M.yE d.M.y G",
3662
+ "y": "E d.M.yE d.M.y G"
3629
3663
  },
3630
3664
  "yMMM": {
3631
3665
  "M": "LLL–LLLL y G",
3632
- "y": "LLLL y LLLL y G"
3666
+ "y": "LLLL yLLLL y G"
3633
3667
  },
3634
3668
  "yMMMd": {
3635
3669
  "d": "d.–d. MMMM y G",
3636
- "M": "d. MMMM d. MMMM y G",
3637
- "y": "d. MMMM y d. MMMM y G"
3670
+ "M": "d. MMMMd. MMMM y G",
3671
+ "y": "d. MMMM yd. MMMM y G"
3638
3672
  },
3639
3673
  "yMMMEd": {
3640
- "d": "E d. E d. MMMM y G",
3641
- "M": "E d. MMMM E d. MMMM y G",
3642
- "y": "E d. MMMM y E d. MMMM y G"
3674
+ "d": "E d.E d. MMMM y G",
3675
+ "M": "E d. MMMME d. MMMM y G",
3676
+ "y": "E d. MMMM yE d. MMMM y G"
3643
3677
  },
3644
3678
  "yMMMM": {
3645
3679
  "M": "LLL–LLLL y G",
3646
- "y": "LLLL y LLLL y G"
3680
+ "y": "LLLL yLLLL y G"
3647
3681
  }
3648
3682
  }
3649
3683
  },
@@ -4392,6 +4426,7 @@
4392
4426
  "Cayman": "Cayman",
4393
4427
  "Chicago": "Chicago",
4394
4428
  "Chihuahua": "Chihuahua",
4429
+ "Ciudad_Juarez": "Ciudad Juárez",
4395
4430
  "Costa_Rica": "Costa Rica",
4396
4431
  "Creston": "Creston",
4397
4432
  "Cuiaba": "Cuiabá",
@@ -5241,6 +5276,7 @@
5241
5276
  },
5242
5277
  "duration-decade": {
5243
5278
  "displayName": "dec",
5279
+ "unitPattern-count-one": "{0} dec",
5244
5280
  "unitPattern-count-other": "{0} dec"
5245
5281
  },
5246
5282
  "duration-year": {
@@ -5249,6 +5285,12 @@
5249
5285
  "unitPattern-count-other": "{0} v",
5250
5286
  "perUnitPattern": "{0}/v"
5251
5287
  },
5288
+ "duration-quarter": {
5289
+ "displayName": "q",
5290
+ "unitPattern-count-one": "{0} q",
5291
+ "unitPattern-count-other": "{0} q",
5292
+ "perUnitPattern": "{0}/q"
5293
+ },
5252
5294
  "duration-month": {
5253
5295
  "displayName": "kk",
5254
5296
  "unitPattern-count-one": "{0} kk",
@@ -5362,6 +5404,7 @@
5362
5404
  },
5363
5405
  "energy-therm-us": {
5364
5406
  "displayName": "US therm",
5407
+ "unitPattern-count-one": "{0} US therm",
5365
5408
  "unitPattern-count-other": "{0} US therm"
5366
5409
  },
5367
5410
  "force-pound-force": {
@@ -5371,6 +5414,7 @@
5371
5414
  },
5372
5415
  "force-newton": {
5373
5416
  "displayName": "newton",
5417
+ "unitPattern-count-one": "{0} N",
5374
5418
  "unitPattern-count-other": "{0} N"
5375
5419
  },
5376
5420
  "force-kilowatt-hour-per-100-kilometer": {
@@ -5400,22 +5444,37 @@
5400
5444
  },
5401
5445
  "graphics-em": {
5402
5446
  "displayName": "em",
5447
+ "unitPattern-count-one": "{0} em",
5403
5448
  "unitPattern-count-other": "{0} em"
5404
5449
  },
5405
5450
  "graphics-pixel": {
5406
5451
  "displayName": "px",
5452
+ "unitPattern-count-one": "{0} px",
5407
5453
  "unitPattern-count-other": "{0} px"
5408
5454
  },
5409
5455
  "graphics-megapixel": {
5410
5456
  "displayName": "MP",
5457
+ "unitPattern-count-one": "{0} MP",
5411
5458
  "unitPattern-count-other": "{0} MP"
5412
5459
  },
5413
5460
  "graphics-pixel-per-centimeter": {
5414
5461
  "displayName": "ppcm",
5462
+ "unitPattern-count-one": "{0} ppcm",
5415
5463
  "unitPattern-count-other": "{0} ppcm"
5416
5464
  },
5417
5465
  "graphics-pixel-per-inch": {
5418
5466
  "displayName": "ppi",
5467
+ "unitPattern-count-one": "{0} ppi",
5468
+ "unitPattern-count-other": "{0} ppi"
5469
+ },
5470
+ "graphics-dot-per-centimeter": {
5471
+ "displayName": "ppcm",
5472
+ "unitPattern-count-one": "{0} ppcm",
5473
+ "unitPattern-count-other": "{0} ppcm"
5474
+ },
5475
+ "graphics-dot-per-inch": {
5476
+ "displayName": "ppi",
5477
+ "unitPattern-count-one": "{0} ppi",
5419
5478
  "unitPattern-count-other": "{0} ppi"
5420
5479
  },
5421
5480
  "graphics-dot": {
@@ -5425,6 +5484,7 @@
5425
5484
  },
5426
5485
  "length-earth-radius": {
5427
5486
  "displayName": "R⊕",
5487
+ "unitPattern-count-one": "{0} R⊕",
5428
5488
  "unitPattern-count-other": "{0} R⊕"
5429
5489
  },
5430
5490
  "length-kilometer": {
@@ -5534,6 +5594,7 @@
5534
5594
  },
5535
5595
  "length-solar-radius": {
5536
5596
  "displayName": "auringon säteet",
5597
+ "unitPattern-count-one": "{0} R☉",
5537
5598
  "unitPattern-count-other": "{0} R☉"
5538
5599
  },
5539
5600
  "light-lux": {
@@ -5543,10 +5604,12 @@
5543
5604
  },
5544
5605
  "light-candela": {
5545
5606
  "displayName": "cd",
5607
+ "unitPattern-count-one": "{0} cd",
5546
5608
  "unitPattern-count-other": "{0} cd"
5547
5609
  },
5548
5610
  "light-lumen": {
5549
5611
  "displayName": "lm",
5612
+ "unitPattern-count-one": "{0} lm",
5550
5613
  "unitPattern-count-other": "{0} lm"
5551
5614
  },
5552
5615
  "light-solar-luminosity": {
@@ -5554,7 +5617,7 @@
5554
5617
  "unitPattern-count-one": "{0} L☉",
5555
5618
  "unitPattern-count-other": "{0} L☉"
5556
5619
  },
5557
- "mass-metric-ton": {
5620
+ "mass-tonne": {
5558
5621
  "displayName": "t",
5559
5622
  "unitPattern-count-one": "{0} t",
5560
5623
  "unitPattern-count-other": "{0} t"
@@ -5615,10 +5678,12 @@
5615
5678
  },
5616
5679
  "mass-dalton": {
5617
5680
  "displayName": "atomimassayksiköt",
5681
+ "unitPattern-count-one": "{0} Da",
5618
5682
  "unitPattern-count-other": "{0} Da"
5619
5683
  },
5620
5684
  "mass-earth-mass": {
5621
5685
  "displayName": "Maan massat",
5686
+ "unitPattern-count-one": "{0} M⊕",
5622
5687
  "unitPattern-count-other": "{0} M⊕"
5623
5688
  },
5624
5689
  "mass-solar-mass": {
@@ -5678,6 +5743,7 @@
5678
5743
  },
5679
5744
  "pressure-bar": {
5680
5745
  "displayName": "bar",
5746
+ "unitPattern-count-one": "{0} bar",
5681
5747
  "unitPattern-count-other": "{0} bar"
5682
5748
  },
5683
5749
  "pressure-millibar": {
@@ -5687,10 +5753,12 @@
5687
5753
  },
5688
5754
  "pressure-atmosphere": {
5689
5755
  "displayName": "atm",
5756
+ "unitPattern-count-one": "{0} atm",
5690
5757
  "unitPattern-count-other": "{0} atm"
5691
5758
  },
5692
5759
  "pressure-pascal": {
5693
5760
  "displayName": "Pa",
5761
+ "unitPattern-count-one": "{0} Pa",
5694
5762
  "unitPattern-count-other": "{0} Pa"
5695
5763
  },
5696
5764
  "pressure-hectopascal": {
@@ -5700,10 +5768,12 @@
5700
5768
  },
5701
5769
  "pressure-kilopascal": {
5702
5770
  "displayName": "kPa",
5771
+ "unitPattern-count-one": "{0} kPa",
5703
5772
  "unitPattern-count-other": "{0} kPa"
5704
5773
  },
5705
5774
  "pressure-megapascal": {
5706
5775
  "displayName": "MPa",
5776
+ "unitPattern-count-one": "{0} MPa",
5707
5777
  "unitPattern-count-other": "{0} MPa"
5708
5778
  },
5709
5779
  "speed-kilometer-per-hour": {
@@ -5893,6 +5963,7 @@
5893
5963
  },
5894
5964
  "volume-barrel": {
5895
5965
  "displayName": "barrelit",
5966
+ "unitPattern-count-one": "{0} bbl",
5896
5967
  "unitPattern-count-other": "{0} bbl"
5897
5968
  },
5898
5969
  "volume-dessert-spoon": {
@@ -6039,41 +6110,56 @@
6039
6110
  },
6040
6111
  "eras-gregorian": {
6041
6112
  "0": {
6113
+ "_code": "gregory-inverse",
6114
+ "_aliases": "bc bce",
6042
6115
  "_end": "0-12-31"
6043
6116
  },
6044
6117
  "1": {
6118
+ "_code": "gregory",
6119
+ "_aliases": "ad ce",
6045
6120
  "_start": "1-01-01"
6046
6121
  }
6047
6122
  },
6048
6123
  "eras-islamic": {
6049
6124
  "0": {
6125
+ "_code": "islamic",
6126
+ "_aliases": "ah",
6050
6127
  "_start": "622-7-15"
6051
6128
  }
6052
6129
  },
6053
6130
  "eras-persian": {
6054
6131
  "0": {
6132
+ "_code": "persian",
6133
+ "_aliases": "ap",
6055
6134
  "_start": "622-01-01"
6056
6135
  }
6057
6136
  },
6058
6137
  "eras-buddhist": {
6059
6138
  "0": {
6139
+ "_code": "buddhist",
6140
+ "_aliases": "be",
6060
6141
  "_start": "-542-01-01"
6061
6142
  }
6062
6143
  },
6063
6144
  "eras-japanese": {
6064
6145
  "232": {
6146
+ "_code": "meiji",
6065
6147
  "_start": "1868-9-8"
6066
6148
  },
6067
6149
  "233": {
6150
+ "_code": "taisho",
6068
6151
  "_start": "1912-7-30"
6069
6152
  },
6070
6153
  "234": {
6154
+ "_code": "showa",
6071
6155
  "_start": "1926-12-25"
6072
6156
  },
6073
6157
  "235": {
6158
+ "_code": "heisei",
6074
6159
  "_start": "1989-1-8"
6075
6160
  },
6076
6161
  "236": {
6162
+ "_code": "reiwa",
6077
6163
  "_start": "2019-5-1"
6078
6164
  }
6079
6165
  },