@openui5/sap.ui.core 1.119.0 → 1.120.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (828) hide show
  1. package/THIRDPARTY.txt +6 -6
  2. package/package.json +1 -1
  3. package/src/jquery.sap.global.js +40 -111
  4. package/src/jquery.sap.properties.js +7 -1
  5. package/src/jquery.sap.resources.js +1 -1
  6. package/src/jquery.sap.script.js +5 -3
  7. package/src/jquery.sap.storage.js +6 -3
  8. package/src/sap/base/Event.js +32 -78
  9. package/src/sap/base/Eventing.js +114 -271
  10. package/src/sap/base/Log.js +21 -1
  11. package/src/sap/base/config.js +14 -9
  12. package/src/sap/base/i18n/Formatting.js +378 -250
  13. package/src/sap/base/i18n/LanguageTag.js +64 -66
  14. package/src/sap/base/i18n/Localization.js +124 -85
  15. package/src/sap/base/i18n/ResourceBundle.js +1 -1
  16. package/src/sap/base/i18n/date/CalendarType.js +2 -2
  17. package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
  18. package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
  19. package/src/sap/base/util/LoaderExtensions.js +8 -2
  20. package/src/sap/base/util/mixedFetch.js +1 -0
  21. package/src/sap/base/util/resolveReference.js +31 -13
  22. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  23. package/src/sap/base/util/restricted/_castArray.js +1 -1
  24. package/src/sap/base/util/restricted/_compact.js +1 -1
  25. package/src/sap/base/util/restricted/_curry.js +1 -1
  26. package/src/sap/base/util/restricted/_debounce.js +1 -1
  27. package/src/sap/base/util/restricted/_difference.js +1 -1
  28. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  29. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  30. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  31. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  32. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  33. package/src/sap/base/util/restricted/_flatten.js +1 -1
  34. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  35. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  36. package/src/sap/base/util/restricted/_intersection.js +1 -1
  37. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  38. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  39. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  40. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  41. package/src/sap/base/util/restricted/_isNil.js +1 -1
  42. package/src/sap/base/util/restricted/_max.js +1 -1
  43. package/src/sap/base/util/restricted/_merge.js +1 -1
  44. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  45. package/src/sap/base/util/restricted/_min.js +1 -1
  46. package/src/sap/base/util/restricted/_omit.js +1 -1
  47. package/src/sap/base/util/restricted/_pick.js +1 -1
  48. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  49. package/src/sap/base/util/restricted/_throttle.js +1 -1
  50. package/src/sap/base/util/restricted/_toArray.js +1 -1
  51. package/src/sap/base/util/restricted/_union.js +1 -1
  52. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  53. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  54. package/src/sap/base/util/restricted/_uniq.js +1 -1
  55. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  56. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  57. package/src/sap/base/util/restricted/_without.js +1 -1
  58. package/src/sap/base/util/restricted/_xor.js +1 -1
  59. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  60. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  61. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  62. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  63. package/src/sap/base/util/syncFetch.js +1 -0
  64. package/src/sap/ui/Device.js +3 -3
  65. package/src/sap/ui/Global.js +6 -7
  66. package/src/sap/ui/base/BindingInfo.js +3 -3
  67. package/src/sap/ui/base/BindingParser.js +5 -2
  68. package/src/sap/ui/base/DataType.js +57 -1
  69. package/src/sap/ui/base/DesignTime.js +69 -0
  70. package/src/sap/ui/base/Event.js +2 -2
  71. package/src/sap/ui/base/EventProvider.js +1 -1
  72. package/src/sap/ui/base/ExpressionParser.js +25 -4
  73. package/src/sap/ui/base/Interface.js +1 -1
  74. package/src/sap/ui/base/ManagedObject.js +102 -29
  75. package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
  76. package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
  77. package/src/sap/ui/base/Metadata.js +3 -3
  78. package/src/sap/ui/base/Object.js +19 -1
  79. package/src/sap/ui/base/ObjectPool.js +1 -1
  80. package/src/sap/ui/core/.library +3 -3
  81. package/src/sap/ui/core/AnimationMode.js +2 -2
  82. package/src/sap/ui/core/AppCacheBuster.js +30 -18
  83. package/src/sap/ui/core/BusyIndicator.js +1 -1
  84. package/src/sap/ui/core/CalendarType.js +6 -0
  85. package/src/sap/ui/core/Component.js +150 -80
  86. package/src/sap/ui/core/ComponentContainer.js +4 -3
  87. package/src/sap/ui/core/ComponentMetadata.js +3 -4
  88. package/src/sap/ui/core/ComponentSupport.js +1 -1
  89. package/src/sap/ui/core/Configuration.js +390 -706
  90. package/src/sap/ui/core/Control.js +1 -1
  91. package/src/sap/ui/core/ControlBehavior.js +37 -28
  92. package/src/sap/ui/core/Core.js +327 -151
  93. package/src/sap/ui/core/CustomData.js +1 -1
  94. package/src/sap/ui/core/DeclarativeSupport.js +3 -1
  95. package/src/sap/ui/core/Element.js +18 -8
  96. package/src/sap/ui/core/ElementMetadata.js +1 -1
  97. package/src/sap/ui/core/EnabledPropagator.js +3 -2
  98. package/src/sap/ui/core/EventBus.js +1 -1
  99. package/src/sap/ui/core/Fragment.js +1 -1
  100. package/src/sap/ui/core/HTML.js +1 -1
  101. package/src/sap/ui/core/History.js +1 -1
  102. package/src/sap/ui/core/Icon.js +1 -1
  103. package/src/sap/ui/core/IndicationColorSupport.js +13 -1
  104. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  105. package/src/sap/ui/core/InvisibleMessage.js +2 -3
  106. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  107. package/src/sap/ui/core/InvisibleText.js +17 -1
  108. package/src/sap/ui/core/Item.js +1 -1
  109. package/src/sap/ui/core/LabelEnablement.js +8 -1
  110. package/src/sap/ui/core/LayoutData.js +1 -1
  111. package/src/sap/ui/core/Lib.js +195 -29
  112. package/src/sap/ui/core/ListItem.js +1 -1
  113. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  114. package/src/sap/ui/core/Locale.js +1 -1
  115. package/src/sap/ui/core/LocaleData.js +118 -32
  116. package/src/sap/ui/core/Manifest.js +4 -2
  117. package/src/sap/ui/core/Message.js +1 -1
  118. package/src/sap/ui/core/Placeholder.js +18 -0
  119. package/src/sap/ui/core/Popup.js +5 -0
  120. package/src/sap/ui/core/RenderManager.js +21 -17
  121. package/src/sap/ui/core/Renderer.js +1 -1
  122. package/src/sap/ui/core/Rendering.js +51 -47
  123. package/src/sap/ui/core/ResizeHandler.js +2 -2
  124. package/src/sap/ui/core/ScrollBar.js +1 -1
  125. package/src/sap/ui/core/SeparatorItem.js +1 -1
  126. package/src/sap/ui/core/Shortcut.js +5 -3
  127. package/src/sap/ui/core/Supportability.js +146 -0
  128. package/src/sap/ui/core/Theming.js +130 -88
  129. package/src/sap/ui/core/Title.js +1 -1
  130. package/src/sap/ui/core/TooltipBase.js +4 -3
  131. package/src/sap/ui/core/UIArea.js +1 -4
  132. package/src/sap/ui/core/UIComponent.js +38 -12
  133. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  134. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  135. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  136. package/src/sap/ui/core/XMLComposite.js +1 -1
  137. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  138. package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
  139. package/src/sap/ui/core/_IconRegistry.js +13 -6
  140. package/src/sap/ui/core/cldr/ar.json +143 -137
  141. package/src/sap/ui/core/cldr/ar_EG.json +143 -137
  142. package/src/sap/ui/core/cldr/ar_SA.json +143 -137
  143. package/src/sap/ui/core/cldr/bg.json +423 -423
  144. package/src/sap/ui/core/cldr/ca.json +541 -494
  145. package/src/sap/ui/core/cldr/cs.json +475 -364
  146. package/src/sap/ui/core/cldr/cy.json +656 -477
  147. package/src/sap/ui/core/cldr/da.json +334 -275
  148. package/src/sap/ui/core/cldr/de.json +388 -291
  149. package/src/sap/ui/core/cldr/de_AT.json +388 -291
  150. package/src/sap/ui/core/cldr/de_CH.json +394 -297
  151. package/src/sap/ui/core/cldr/el.json +169 -166
  152. package/src/sap/ui/core/cldr/el_CY.json +169 -166
  153. package/src/sap/ui/core/cldr/en.json +558 -521
  154. package/src/sap/ui/core/cldr/en_AU.json +558 -520
  155. package/src/sap/ui/core/cldr/en_GB.json +476 -439
  156. package/src/sap/ui/core/cldr/en_HK.json +520 -482
  157. package/src/sap/ui/core/cldr/en_IE.json +486 -448
  158. package/src/sap/ui/core/cldr/en_IN.json +466 -428
  159. package/src/sap/ui/core/cldr/en_NZ.json +506 -468
  160. package/src/sap/ui/core/cldr/en_PG.json +506 -468
  161. package/src/sap/ui/core/cldr/en_SG.json +506 -468
  162. package/src/sap/ui/core/cldr/en_ZA.json +486 -448
  163. package/src/sap/ui/core/cldr/es.json +473 -468
  164. package/src/sap/ui/core/cldr/es_AR.json +445 -440
  165. package/src/sap/ui/core/cldr/es_BO.json +479 -474
  166. package/src/sap/ui/core/cldr/es_CL.json +469 -464
  167. package/src/sap/ui/core/cldr/es_CO.json +387 -381
  168. package/src/sap/ui/core/cldr/es_MX.json +502 -497
  169. package/src/sap/ui/core/cldr/es_PE.json +455 -450
  170. package/src/sap/ui/core/cldr/es_UY.json +479 -474
  171. package/src/sap/ui/core/cldr/es_VE.json +499 -494
  172. package/src/sap/ui/core/cldr/et.json +378 -320
  173. package/src/sap/ui/core/cldr/fa.json +104 -104
  174. package/src/sap/ui/core/cldr/fi.json +401 -315
  175. package/src/sap/ui/core/cldr/fr.json +391 -385
  176. package/src/sap/ui/core/cldr/fr_BE.json +391 -385
  177. package/src/sap/ui/core/cldr/fr_CA.json +499 -493
  178. package/src/sap/ui/core/cldr/fr_CH.json +334 -328
  179. package/src/sap/ui/core/cldr/fr_LU.json +391 -385
  180. package/src/sap/ui/core/cldr/he.json +291 -159
  181. package/src/sap/ui/core/cldr/hi.json +157 -128
  182. package/src/sap/ui/core/cldr/hr.json +514 -461
  183. package/src/sap/ui/core/cldr/hu.json +287 -257
  184. package/src/sap/ui/core/cldr/id.json +463 -416
  185. package/src/sap/ui/core/cldr/it.json +468 -413
  186. package/src/sap/ui/core/cldr/it_CH.json +468 -413
  187. package/src/sap/ui/core/cldr/ja.json +98 -61
  188. package/src/sap/ui/core/cldr/kk.json +631 -571
  189. package/src/sap/ui/core/cldr/ko.json +79 -71
  190. package/src/sap/ui/core/cldr/lt.json +361 -270
  191. package/src/sap/ui/core/cldr/lv.json +234 -242
  192. package/src/sap/ui/core/cldr/ms.json +463 -408
  193. package/src/sap/ui/core/cldr/nb.json +176 -143
  194. package/src/sap/ui/core/cldr/nl.json +463 -393
  195. package/src/sap/ui/core/cldr/nl_BE.json +463 -393
  196. package/src/sap/ui/core/cldr/pl.json +633 -344
  197. package/src/sap/ui/core/cldr/pt.json +447 -336
  198. package/src/sap/ui/core/cldr/pt_PT.json +488 -449
  199. package/src/sap/ui/core/cldr/ro.json +477 -383
  200. package/src/sap/ui/core/cldr/ru.json +367 -332
  201. package/src/sap/ui/core/cldr/ru_UA.json +361 -326
  202. package/src/sap/ui/core/cldr/sk.json +502 -537
  203. package/src/sap/ui/core/cldr/sl.json +168 -161
  204. package/src/sap/ui/core/cldr/sr.json +276 -225
  205. package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
  206. package/src/sap/ui/core/cldr/sv.json +420 -346
  207. package/src/sap/ui/core/cldr/th.json +117 -94
  208. package/src/sap/ui/core/cldr/tr.json +413 -359
  209. package/src/sap/ui/core/cldr/uk.json +395 -368
  210. package/src/sap/ui/core/cldr/vi.json +392 -379
  211. package/src/sap/ui/core/cldr/zh_CN.json +91 -33
  212. package/src/sap/ui/core/cldr/zh_HK.json +90 -32
  213. package/src/sap/ui/core/cldr/zh_SG.json +90 -32
  214. package/src/sap/ui/core/cldr/zh_TW.json +75 -51
  215. package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
  216. package/src/sap/ui/core/date/UI5Date.js +1 -1
  217. package/src/sap/ui/core/date/_Calendars.js +5 -2
  218. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  219. package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
  220. package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
  221. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  222. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  223. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  224. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  225. package/src/sap/ui/core/format/DateFormat.js +33 -21
  226. package/src/sap/ui/core/format/NumberFormat.js +3 -2
  227. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  228. package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
  229. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  230. package/src/sap/ui/core/library.js +128 -8
  231. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  232. package/src/sap/ui/core/message/Message.js +2 -2
  233. package/src/sap/ui/core/message/MessageManager.js +1 -1
  234. package/src/sap/ui/core/message/MessageParser.js +1 -1
  235. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  236. package/src/sap/ui/core/message/MessageType.js +2 -1
  237. package/src/sap/ui/core/messagebundle.properties +24 -0
  238. package/src/sap/ui/core/messagebundle_ar.properties +15 -3
  239. package/src/sap/ui/core/messagebundle_bg.properties +14 -2
  240. package/src/sap/ui/core/messagebundle_ca.properties +13 -1
  241. package/src/sap/ui/core/messagebundle_cs.properties +15 -3
  242. package/src/sap/ui/core/messagebundle_cy.properties +16 -4
  243. package/src/sap/ui/core/messagebundle_da.properties +15 -3
  244. package/src/sap/ui/core/messagebundle_de.properties +15 -3
  245. package/src/sap/ui/core/messagebundle_el.properties +16 -4
  246. package/src/sap/ui/core/messagebundle_en.properties +12 -0
  247. package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
  248. package/src/sap/ui/core/messagebundle_es.properties +15 -3
  249. package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
  250. package/src/sap/ui/core/messagebundle_et.properties +15 -3
  251. package/src/sap/ui/core/messagebundle_fi.properties +15 -3
  252. package/src/sap/ui/core/messagebundle_fr.properties +15 -3
  253. package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
  254. package/src/sap/ui/core/messagebundle_hi.properties +16 -4
  255. package/src/sap/ui/core/messagebundle_hr.properties +14 -2
  256. package/src/sap/ui/core/messagebundle_hu.properties +16 -4
  257. package/src/sap/ui/core/messagebundle_id.properties +15 -3
  258. package/src/sap/ui/core/messagebundle_it.properties +17 -5
  259. package/src/sap/ui/core/messagebundle_iw.properties +15 -3
  260. package/src/sap/ui/core/messagebundle_ja.properties +25 -13
  261. package/src/sap/ui/core/messagebundle_kk.properties +15 -3
  262. package/src/sap/ui/core/messagebundle_ko.properties +14 -2
  263. package/src/sap/ui/core/messagebundle_lt.properties +15 -3
  264. package/src/sap/ui/core/messagebundle_lv.properties +15 -3
  265. package/src/sap/ui/core/messagebundle_mk.properties +352 -0
  266. package/src/sap/ui/core/messagebundle_ms.properties +15 -3
  267. package/src/sap/ui/core/messagebundle_nl.properties +15 -3
  268. package/src/sap/ui/core/messagebundle_no.properties +14 -2
  269. package/src/sap/ui/core/messagebundle_pl.properties +15 -3
  270. package/src/sap/ui/core/messagebundle_pt.properties +15 -3
  271. package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
  272. package/src/sap/ui/core/messagebundle_ro.properties +15 -3
  273. package/src/sap/ui/core/messagebundle_ru.properties +15 -3
  274. package/src/sap/ui/core/messagebundle_sh.properties +43 -31
  275. package/src/sap/ui/core/messagebundle_sk.properties +16 -4
  276. package/src/sap/ui/core/messagebundle_sl.properties +15 -3
  277. package/src/sap/ui/core/messagebundle_sv.properties +22 -10
  278. package/src/sap/ui/core/messagebundle_th.properties +15 -3
  279. package/src/sap/ui/core/messagebundle_tr.properties +15 -3
  280. package/src/sap/ui/core/messagebundle_uk.properties +18 -6
  281. package/src/sap/ui/core/messagebundle_vi.properties +18 -6
  282. package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
  283. package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
  284. package/src/sap/ui/core/mvc/Controller.js +22 -16
  285. package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
  286. package/src/sap/ui/core/mvc/HTMLView.js +2 -2
  287. package/src/sap/ui/core/mvc/JSONView.js +4 -1
  288. package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
  289. package/src/sap/ui/core/mvc/JSView.js +1 -1
  290. package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
  291. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  292. package/src/sap/ui/core/mvc/View.js +24 -14
  293. package/src/sap/ui/core/mvc/ViewType.js +2 -0
  294. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  295. package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
  296. package/src/sap/ui/core/plugin/LessSupport.js +3 -1
  297. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  298. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  299. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  300. package/src/sap/ui/core/routing/Router.js +2 -4
  301. package/src/sap/ui/core/routing/Target.js +1 -3
  302. package/src/sap/ui/core/routing/Targets.js +2 -3
  303. package/src/sap/ui/core/routing/Views.js +2 -3
  304. package/src/sap/ui/core/routing/async/Target.js +1 -1
  305. package/src/sap/ui/core/rules/Config.support.js +11 -17
  306. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  307. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  308. package/src/sap/ui/core/service/Service.js +1 -1
  309. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  310. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  311. package/src/sap/ui/core/support/Hotkeys.js +5 -3
  312. package/src/sap/ui/core/support/Plugin.js +1 -1
  313. package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
  314. package/src/sap/ui/core/support/Support.js +3 -5
  315. package/src/sap/ui/core/support/ToolsAPI.js +15 -11
  316. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  317. package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
  318. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  319. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  320. package/src/sap/ui/core/support/plugins/Selector.js +7 -5
  321. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  322. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  323. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  324. package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
  325. package/src/sap/ui/core/syncStyleClass.js +2 -2
  326. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  327. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  328. package/src/sap/ui/core/themes/base/global.less +9 -9
  329. package/src/sap/ui/core/theming/Parameters.js +18 -19
  330. package/src/sap/ui/core/theming/ThemeManager.js +23 -4
  331. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  332. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  333. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  334. package/src/sap/ui/core/tmpl/Template.js +1 -1
  335. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  336. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  337. package/src/sap/ui/core/util/Export.js +1 -1
  338. package/src/sap/ui/core/util/ExportCell.js +1 -1
  339. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  340. package/src/sap/ui/core/util/ExportRow.js +1 -1
  341. package/src/sap/ui/core/util/ExportType.js +1 -1
  342. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  343. package/src/sap/ui/core/util/File.js +1 -1
  344. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  345. package/src/sap/ui/core/util/MockServer.js +1 -1
  346. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  347. package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
  348. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  349. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  350. package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
  351. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  352. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  353. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  354. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  355. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  356. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  357. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  358. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  359. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  360. package/src/sap/ui/debug/ControlTree.js +1 -1
  361. package/src/sap/ui/debug/DebugEnv.js +29 -7
  362. package/src/sap/ui/debug/PropertyList.js +1 -1
  363. package/src/sap/ui/model/ClientListBinding.js +3 -1
  364. package/src/sap/ui/model/ClientModel.js +1 -1
  365. package/src/sap/ui/model/ClientTreeBinding.js +3 -1
  366. package/src/sap/ui/model/CompositeDataState.js +1 -1
  367. package/src/sap/ui/model/CompositeType.js +1 -1
  368. package/src/sap/ui/model/DataState.js +2 -2
  369. package/src/sap/ui/model/Filter.js +39 -1
  370. package/src/sap/ui/model/FilterProcessor.js +12 -2
  371. package/src/sap/ui/model/ListBinding.js +5 -0
  372. package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
  373. package/src/sap/ui/model/MetaModel.js +1 -1
  374. package/src/sap/ui/model/Model.js +5 -1
  375. package/src/sap/ui/model/SelectionModel.js +1 -1
  376. package/src/sap/ui/model/SimpleType.js +1 -1
  377. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  378. package/src/sap/ui/model/TreeBinding.js +3 -0
  379. package/src/sap/ui/model/Type.js +1 -1
  380. package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
  381. package/src/sap/ui/model/json/JSONListBinding.js +3 -1
  382. package/src/sap/ui/model/json/JSONModel.js +1 -1
  383. package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
  384. package/src/sap/ui/model/message/MessageListBinding.js +3 -0
  385. package/src/sap/ui/model/message/MessageModel.js +1 -1
  386. package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
  387. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  388. package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
  389. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  390. package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
  391. package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
  392. package/src/sap/ui/model/odata/ODataModel.js +9 -5
  393. package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
  394. package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
  395. package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
  396. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  397. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  398. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  399. package/src/sap/ui/model/odata/type/Date.js +1 -1
  400. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  401. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  402. package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
  403. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  404. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  405. package/src/sap/ui/model/odata/type/Double.js +1 -1
  406. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  407. package/src/sap/ui/model/odata/type/Int.js +1 -1
  408. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  409. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  410. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  411. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  412. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  413. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  414. package/src/sap/ui/model/odata/type/Single.js +1 -1
  415. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  416. package/src/sap/ui/model/odata/type/String.js +1 -1
  417. package/src/sap/ui/model/odata/type/Time.js +1 -1
  418. package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
  419. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  420. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  421. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
  422. package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
  423. package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
  424. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
  425. package/src/sap/ui/model/odata/v4/Context.js +81 -7
  426. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
  427. package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
  428. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
  429. package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
  430. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
  431. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
  432. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
  433. package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
  434. package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
  435. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
  436. package/src/sap/ui/model/resource/ResourceModel.js +5 -6
  437. package/src/sap/ui/model/type/Boolean.js +1 -1
  438. package/src/sap/ui/model/type/Currency.js +1 -1
  439. package/src/sap/ui/model/type/Date.js +1 -1
  440. package/src/sap/ui/model/type/DateInterval.js +1 -1
  441. package/src/sap/ui/model/type/DateTime.js +1 -1
  442. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  443. package/src/sap/ui/model/type/FileSize.js +1 -1
  444. package/src/sap/ui/model/type/Float.js +1 -1
  445. package/src/sap/ui/model/type/Integer.js +1 -1
  446. package/src/sap/ui/model/type/String.js +1 -1
  447. package/src/sap/ui/model/type/Time.js +1 -1
  448. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  449. package/src/sap/ui/model/type/Unit.js +1 -1
  450. package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
  451. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  452. package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
  453. package/src/sap/ui/performance/BeaconRequest.js +2 -2
  454. package/src/sap/ui/qunit/QUnitUtils.js +64 -45
  455. package/src/sap/ui/qunit/qunit-coverage.js +6 -0
  456. package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
  457. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  458. package/src/sap/ui/security/Security.js +128 -0
  459. package/src/sap/ui/test/BlanketReporter.js +2 -3
  460. package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
  461. package/src/sap/ui/test/BranchTracking.js +2 -3
  462. package/src/sap/ui/test/ModuleTracking.js +48 -20
  463. package/src/sap/ui/test/OpaExtension.js +3 -3
  464. package/src/sap/ui/test/OpaPlugin.js +16 -6
  465. package/src/sap/ui/test/TestUtils.js +7 -4
  466. package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
  467. package/src/sap/ui/test/_ControlFinder.js +3 -2
  468. package/src/sap/ui/test/_LogCollector.js +1 -0
  469. package/src/sap/ui/test/_UsageReport.js +115 -114
  470. package/src/sap/ui/test/actions/EnterText.js +20 -2
  471. package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
  472. package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
  473. package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
  474. package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
  475. package/src/sap/ui/test/generic/TestBase.js +1 -1
  476. package/src/sap/ui/test/generic/Utils.js +1 -1
  477. package/src/sap/ui/test/matchers/LabelFor.js +2 -12
  478. package/src/sap/ui/test/matchers/Matcher.js +1 -1
  479. package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
  480. package/src/sap/ui/test/selectors/_Selector.js +1 -1
  481. package/src/sap/ui/util/Storage.js +1 -1
  482. package/src/ui5loader-autoconfig.js +84 -11
  483. package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
  484. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
  485. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
  486. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
  487. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
  488. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
  489. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
  490. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
  491. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
  492. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
  493. package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
  494. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
  495. package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
  496. package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
  497. package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
  498. package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
  499. package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
  500. package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
  501. package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
  502. package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
  503. package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
  504. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
  505. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
  506. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
  507. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
  508. package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
  509. package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
  510. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
  511. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
  512. package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
  513. package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
  514. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
  515. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
  516. package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
  517. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
  518. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
  519. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
  520. package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
  521. package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
  522. package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
  523. package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
  524. package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
  525. package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
  526. package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
  527. package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
  528. package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
  529. package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
  530. package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
  531. package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
  532. package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
  533. package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
  534. package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
  535. package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
  536. package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
  537. package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
  538. package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
  539. package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
  540. package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
  541. package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
  542. package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
  543. package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
  544. package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
  545. package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
  546. package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
  547. package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
  548. package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
  549. package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
  550. package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
  551. package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
  552. package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
  553. package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
  554. package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
  555. package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
  556. package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
  557. package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
  558. package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
  559. package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
  560. package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
  561. package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
  562. package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
  563. package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
  564. package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
  565. package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
  566. package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
  567. package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
  568. package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
  569. package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
  570. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
  571. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
  572. package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
  573. package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
  574. package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
  575. package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
  576. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
  577. package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
  578. package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
  579. package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
  580. package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
  581. package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
  582. package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
  583. package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
  584. package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
  585. package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
  586. package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
  587. package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
  588. package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
  589. package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
  590. package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
  591. package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
  592. package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
  593. package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
  594. package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
  595. package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
  596. package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
  597. package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
  598. package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
  599. package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
  600. package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
  601. package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
  602. package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
  603. package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
  604. package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
  605. package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
  606. package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
  607. package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
  608. package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
  609. package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
  610. package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
  611. package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
  612. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
  613. package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
  614. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
  615. package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
  616. package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
  617. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
  618. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
  619. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
  620. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
  621. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
  622. package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
  623. package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
  624. package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
  625. package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
  626. package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
  627. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
  628. package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
  629. package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
  630. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
  631. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
  632. package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
  633. package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
  634. package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
  635. package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
  636. package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
  637. package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
  638. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
  639. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
  640. package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
  641. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
  642. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
  643. package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
  644. package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
  645. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
  646. package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
  647. package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
  648. package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
  649. package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
  650. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
  651. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
  652. package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
  653. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
  654. package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
  655. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
  656. package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
  657. package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
  658. package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
  659. package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
  660. package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
  661. package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
  662. package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
  663. package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
  664. package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
  665. package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
  666. package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
  667. package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
  668. package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
  669. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
  670. package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
  671. package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
  672. package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
  673. package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
  674. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
  675. package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
  676. package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
  677. package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
  678. package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
  679. package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
  680. package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
  681. package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
  682. package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
  683. package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
  684. package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
  685. package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
  686. package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
  687. package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
  688. package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
  689. package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
  690. package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
  691. package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
  692. package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
  693. package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
  694. package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
  695. package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
  696. package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
  697. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
  698. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
  699. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
  700. package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
  701. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
  702. package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
  703. package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
  704. package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
  705. package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
  706. package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
  707. package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
  708. package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
  709. package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
  710. package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
  711. package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
  712. package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
  713. package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
  714. package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
  715. package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
  716. package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
  717. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
  718. package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
  719. package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
  720. package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
  721. package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
  722. package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
  723. package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
  724. package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
  725. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
  726. package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
  727. package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
  728. package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
  729. package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
  730. package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
  731. package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
  732. package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
  733. package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
  734. package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
  735. package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
  736. package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
  737. package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
  738. package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
  739. package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
  740. package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
  741. package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
  742. package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
  743. package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
  744. package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
  745. package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
  746. package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
  747. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
  748. package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
  749. package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
  750. package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
  751. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
  752. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
  753. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
  754. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
  755. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
  756. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
  757. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
  758. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
  759. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
  760. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
  761. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
  762. package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
  763. package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
  764. package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
  765. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
  766. package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
  767. package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
  768. package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
  769. package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
  770. package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
  771. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
  772. package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
  773. package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
  774. package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
  775. package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
  776. package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
  777. package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
  778. package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
  779. package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
  780. package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
  781. package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
  782. package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
  783. package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
  784. package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
  785. package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
  786. package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
  787. package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
  788. package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
  789. package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
  790. package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
  791. package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
  792. package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
  793. package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
  794. package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
  795. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
  796. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
  797. package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
  798. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
  799. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
  800. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
  801. package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
  802. package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
  803. package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
  804. package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
  805. package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
  806. package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
  807. package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
  808. package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
  809. package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
  810. package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
  811. package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
  812. package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
  813. package/test/sap/ui/core/terminologies/App.controller.js +2 -3
  814. package/test/sap/ui/core/terminologies/main.js +2 -3
  815. package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
  816. package/src/sap/ui/core/ConfigTest.js +0 -17
  817. package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
  818. package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
  819. package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
  820. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
  821. package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
  822. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
  823. package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
  824. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
  825. package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
  826. package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
  827. package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
  828. package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
3
- "__version": "41.0.0",
4
- "__buildtime": "2022-12-19T09:41:25.319Z",
3
+ "__version": "43.0.0",
4
+ "__buildtime": "2023-09-28T11:39:07.908Z",
5
5
  "languages": {
6
6
  "aa": "afar",
7
7
  "ab": "abchaski",
@@ -24,6 +24,7 @@
24
24
  "am": "amharski",
25
25
  "an": "aragoński",
26
26
  "ang": "staroangielski",
27
+ "ann": "obolo",
27
28
  "anp": "angika",
28
29
  "ar": "arabski",
29
30
  "ar_001": "współczesny arabski",
@@ -40,6 +41,7 @@
40
41
  "asa": "asu",
41
42
  "ase": "amerykański język migowy",
42
43
  "ast": "asturyjski",
44
+ "atj": "atikamekw",
43
45
  "av": "awarski",
44
46
  "avk": "kotava",
45
47
  "awa": "awadhi",
@@ -108,14 +110,22 @@
108
110
  "ckb": "sorani",
109
111
  "ckb_alt-menu": "kurdyjski sorani",
110
112
  "ckb_alt-variant": "sorani",
113
+ "clc": "chilcotin",
111
114
  "co": "korsykański",
112
115
  "cop": "koptyjski",
113
116
  "cps": "capiznon",
114
117
  "cr": "kri",
118
+ "crg": "miszif",
115
119
  "crh": "krymskotatarski",
120
+ "crj": "kri południowo-wschodni",
121
+ "crk": "kri równinny",
122
+ "crl": "kri północno-wschodni",
123
+ "crm": "kri Moose",
124
+ "crr": "algonkiński (Karolina Północna)",
116
125
  "crs": "kreolski seszelski",
117
126
  "cs": "czeski",
118
127
  "csb": "kaszubski",
128
+ "csw": "kri bagienny",
119
129
  "cu": "cerkiewnosłowiański",
120
130
  "cv": "czuwaski",
121
131
  "cy": "walijski",
@@ -153,9 +163,9 @@
153
163
  "en_AU": "angielski australijski",
154
164
  "en_CA": "angielski kanadyjski",
155
165
  "en_GB": "angielski brytyjski",
156
- "en_GB-alt-short": "angielski brytyjski",
166
+ "en_GB-alt-short": "angielski (Wlk. Bryt.)",
157
167
  "en_US": "angielski amerykański",
158
- "en_US-alt-short": "angielski amerykański",
168
+ "en_US-alt-short": "angielski (USA)",
159
169
  "enm": "średnioangielski",
160
170
  "eo": "esperanto",
161
171
  "es": "hiszpański",
@@ -221,8 +231,11 @@
221
231
  "hai": "haida",
222
232
  "hak": "hakka",
223
233
  "haw": "hawajski",
234
+ "hax": "haida południowy",
224
235
  "he": "hebrajski",
225
236
  "hi": "hindi",
237
+ "hi_Latn": "hindi (alfabet łaciński)",
238
+ "hi_Latn-alt-variant": "hinglish",
226
239
  "hif": "hindi fidżyjskie",
227
240
  "hil": "hiligaynon",
228
241
  "hit": "hetycki",
@@ -234,6 +247,7 @@
234
247
  "ht": "kreolski haitański",
235
248
  "hu": "węgierski",
236
249
  "hup": "hupa",
250
+ "hur": "halkomelem",
237
251
  "hy": "ormiański",
238
252
  "hz": "herero",
239
253
  "ia": "interlingua",
@@ -244,6 +258,7 @@
244
258
  "ig": "igbo",
245
259
  "ii": "syczuański",
246
260
  "ik": "inupiak",
261
+ "ikt": "inuktitut zachodniokanadyjski",
247
262
  "ilo": "ilokano",
248
263
  "inh": "inguski",
249
264
  "io": "ido",
@@ -310,6 +325,7 @@
310
325
  "kut": "kutenai",
311
326
  "kv": "komi",
312
327
  "kw": "kornijski",
328
+ "kwk": "kwakiutl",
313
329
  "ky": "kirgiski",
314
330
  "la": "łaciński",
315
331
  "lad": "ladyński",
@@ -322,6 +338,7 @@
322
338
  "lg": "ganda",
323
339
  "li": "limburski",
324
340
  "lij": "liguryjski",
341
+ "lil": "lillooet",
325
342
  "liv": "liwski",
326
343
  "lkt": "lakota",
327
344
  "lmo": "lombardzki",
@@ -331,6 +348,7 @@
331
348
  "lou": "kreolski luizjański",
332
349
  "loz": "lozi",
333
350
  "lrc": "luryjski północny",
351
+ "lsm": "saamia",
334
352
  "lt": "litewski",
335
353
  "ltg": "łatgalski",
336
354
  "lu": "luba-katanga",
@@ -369,6 +387,7 @@
369
387
  "mn": "mongolski",
370
388
  "mnc": "manchu",
371
389
  "mni": "manipuri",
390
+ "moe": "innu-aimun",
372
391
  "moh": "mohawk",
373
392
  "mos": "mossi",
374
393
  "mr": "marathi",
@@ -421,6 +440,11 @@
421
440
  "nzi": "nzema",
422
441
  "oc": "oksytański",
423
442
  "oj": "odżibwa",
443
+ "ojb": "odżibwe północno-zachodni",
444
+ "ojc": "odżibwe centralny",
445
+ "ojs": "odżi-kri",
446
+ "ojw": "odżibwe zachodni",
447
+ "oka": "okanagan",
424
448
  "om": "oromo",
425
449
  "or": "orija",
426
450
  "os": "osetyjski",
@@ -440,10 +464,12 @@
440
464
  "pfl": "palatynacki",
441
465
  "phn": "fenicki",
442
466
  "pi": "palijski",
467
+ "pis": "pijin",
443
468
  "pl": "polski",
444
469
  "pms": "piemoncki",
445
470
  "pnt": "pontyjski",
446
471
  "pon": "ponpejski",
472
+ "pqm": "malecite-passamaquoddy",
447
473
  "prg": "pruski",
448
474
  "pro": "staroprowansalski",
449
475
  "ps": "paszto",
@@ -506,6 +532,7 @@
506
532
  "sid": "sidamo",
507
533
  "sk": "słowacki",
508
534
  "sl": "słoweński",
535
+ "slh": "lushootseed południowy",
509
536
  "sli": "dolnośląski",
510
537
  "sly": "selayar",
511
538
  "sm": "samoański",
@@ -525,6 +552,7 @@
525
552
  "ssy": "saho",
526
553
  "st": "sotho południowy",
527
554
  "stq": "fryzyjski saterlandzki",
555
+ "str": "salisz",
528
556
  "su": "sundajski",
529
557
  "suk": "sukuma",
530
558
  "sus": "susu",
@@ -537,6 +565,7 @@
537
565
  "syr": "syryjski",
538
566
  "szl": "śląski",
539
567
  "ta": "tamilski",
568
+ "tce": "tutchone południowy",
540
569
  "tcy": "tulu",
541
570
  "te": "telugu",
542
571
  "tem": "temne",
@@ -544,7 +573,9 @@
544
573
  "ter": "tereno",
545
574
  "tet": "tetum",
546
575
  "tg": "tadżycki",
576
+ "tgx": "tagish",
547
577
  "th": "tajski",
578
+ "tht": "tahltan",
548
579
  "ti": "tigrinia",
549
580
  "tig": "tigre",
550
581
  "tiv": "tiw",
@@ -559,6 +590,7 @@
559
590
  "tn": "setswana",
560
591
  "to": "tonga",
561
592
  "tog": "tonga (Niasa)",
593
+ "tok": "toki pona",
562
594
  "tpi": "tok pisin",
563
595
  "tr": "turecki",
564
596
  "tru": "turoyo",
@@ -567,6 +599,7 @@
567
599
  "tsd": "cakoński",
568
600
  "tsi": "tsimshian",
569
601
  "tt": "tatarski",
602
+ "ttm": "tutchone północny",
570
603
  "ttt": "tacki",
571
604
  "tum": "tumbuka",
572
605
  "tvl": "tuvalu",
@@ -633,9 +666,7 @@
633
666
  "zza": "zazaki"
634
667
  },
635
668
  "scripts": {
636
- "Adlm": "Adlm",
637
- "Aghb": "Aghb",
638
- "Ahom": "Ahom",
669
+ "Adlm": "adlam",
639
670
  "Arab": "arabskie",
640
671
  "Arab-alt-variant": "perso-arabskie",
641
672
  "Aran": "nastaliq",
@@ -644,10 +675,8 @@
644
675
  "Avst": "awestyjskie",
645
676
  "Bali": "balijskie",
646
677
  "Bamu": "bamun",
647
- "Bass": "Bass",
648
678
  "Batk": "batak",
649
679
  "Beng": "bengalskie",
650
- "Bhks": "Bhks",
651
680
  "Blis": "symbole Blissa",
652
681
  "Bopo": "bopomofo",
653
682
  "Brah": "brahmi",
@@ -658,32 +687,22 @@
658
687
  "Cans": "zunifikowane symbole kanadyjskich autochtonów",
659
688
  "Cari": "karyjskie",
660
689
  "Cham": "czamskie",
661
- "Cher": "czirokeski",
662
- "Chrs": "Chrs",
690
+ "Cher": "czirokeskie",
663
691
  "Cirt": "cirth",
664
692
  "Copt": "koptyjskie",
665
- "Cpmn": "Cpmn",
666
693
  "Cprt": "cypryjskie",
667
694
  "Cyrl": "cyrylica",
668
695
  "Cyrs": "cyrylica staro-cerkiewno-słowiańska",
669
696
  "Deva": "dewanagari",
670
- "Diak": "Diak",
671
- "Dogr": "Dogr",
672
697
  "Dsrt": "deseret",
673
- "Dupl": "Dupl",
674
698
  "Egyd": "egipskie demotyczne",
675
699
  "Egyh": "egipskie hieratyczne",
676
700
  "Egyp": "hieroglify egipskie",
677
- "Elba": "Elba",
678
- "Elym": "Elym",
679
701
  "Ethi": "etiopskie",
680
702
  "Geok": "gruzińskie chucuri",
681
703
  "Geor": "gruzińskie",
682
704
  "Glag": "głagolica",
683
- "Gong": "Gong",
684
- "Gonm": "Gonm",
685
705
  "Goth": "gotyckie",
686
- "Gran": "Gran",
687
706
  "Grek": "greckie",
688
707
  "Gujr": "gudżarati",
689
708
  "Guru": "gurmukhi",
@@ -695,12 +714,9 @@
695
714
  "Hans-alt-stand-alone": "chińskie uproszczone",
696
715
  "Hant": "tradycyjne",
697
716
  "Hant-alt-stand-alone": "chińskie tradycyjne",
698
- "Hatr": "Hatr",
699
717
  "Hebr": "hebrajskie",
700
718
  "Hira": "hiragana",
701
- "Hluw": "Hluw",
702
719
  "Hmng": "pahawh hmong",
703
- "Hmnp": "Hmnp",
704
720
  "Hrkt": "sylabariusze japońskie",
705
721
  "Hung": "starowęgierskie",
706
722
  "Inds": "indus",
@@ -710,11 +726,8 @@
710
726
  "Jpan": "japońskie",
711
727
  "Kali": "kayah li",
712
728
  "Kana": "katakana",
713
- "Kawi": "Kawi",
714
729
  "Khar": "charosti",
715
730
  "Khmr": "khmerskie",
716
- "Khoj": "Khoj",
717
- "Kits": "Kits",
718
731
  "Knda": "kannada",
719
732
  "Kore": "koreańskie",
720
733
  "Kthi": "kaithi",
@@ -727,43 +740,23 @@
727
740
  "Limb": "limbu",
728
741
  "Lina": "linearne A",
729
742
  "Linb": "linearne B",
730
- "Lisu": "Lisu",
731
743
  "Lyci": "likijskie",
732
744
  "Lydi": "lidyjskie",
733
- "Mahj": "Mahj",
734
- "Maka": "Maka",
735
745
  "Mand": "mandejskie",
736
746
  "Mani": "manichejskie",
737
- "Marc": "Marc",
738
747
  "Maya": "hieroglify Majów",
739
- "Medf": "Medf",
740
- "Mend": "Mend",
741
- "Merc": "Merc",
742
748
  "Mero": "meroickie",
743
749
  "Mlym": "malajalam",
744
- "Modi": "Modi",
745
750
  "Mong": "mongolskie",
746
751
  "Moon": "Moon’a",
747
- "Mroo": "Mroo",
748
752
  "Mtei": "meitei mayek",
749
- "Mult": "Mult",
750
753
  "Mymr": "birmańskie",
751
- "Nagm": "Nagm",
752
- "Nand": "Nand",
753
- "Narb": "Narb",
754
- "Nbat": "Nbat",
755
- "Newa": "Newa",
756
754
  "Nkoo": "n’ko",
757
- "Nshu": "Nshu",
758
755
  "Ogam": "ogham",
759
- "Olck": "ol chiki",
756
+ "Olck": "ol ciki",
760
757
  "Orkh": "orchońskie",
761
758
  "Orya": "orija",
762
- "Osge": "Osge",
763
759
  "Osma": "osmanya",
764
- "Ougr": "Ougr",
765
- "Palm": "Palm",
766
- "Pauc": "Pauc",
767
760
  "Perm": "staropermskie",
768
761
  "Phag": "phags-pa",
769
762
  "Phli": "inskrypcyjne pahlawi",
@@ -774,35 +767,25 @@
774
767
  "Prti": "partyjski inskrypcyjny",
775
768
  "Qaag": "zawgyi",
776
769
  "Rjng": "rejang",
777
- "Rohg": "Rohg",
770
+ "Rohg": "hanifi",
778
771
  "Roro": "rongorongo",
779
772
  "Runr": "runiczne",
780
773
  "Samr": "samarytański",
781
774
  "Sara": "sarati",
782
- "Sarb": "Sarb",
783
775
  "Saur": "saurashtra",
784
776
  "Sgnw": "pismo znakowe",
785
777
  "Shaw": "shawa",
786
- "Shrd": "Shrd",
787
- "Sidd": "Sidd",
788
- "Sind": "Sind",
789
778
  "Sinh": "syngaleskie",
790
- "Sogd": "Sogd",
791
- "Sogo": "Sogo",
792
- "Sora": "Sora",
793
- "Soyo": "Soyo",
794
779
  "Sund": "sundajskie",
795
780
  "Sylo": "syloti nagri",
796
- "Syrc": "syryjski",
781
+ "Syrc": "syryjskie",
797
782
  "Syre": "syriacki estrangelo",
798
783
  "Syrj": "syryjski (odmiana zachodnia)",
799
784
  "Syrn": "syryjski (odmiana wschodnia)",
800
785
  "Tagb": "tagbanwa",
801
- "Takr": "Takr",
802
786
  "Tale": "tai le",
803
787
  "Talu": "nowy tai lue",
804
788
  "Taml": "tamilskie",
805
- "Tang": "Tang",
806
789
  "Tavt": "tai viet",
807
790
  "Telu": "telugu",
808
791
  "Teng": "tengwar",
@@ -811,20 +794,12 @@
811
794
  "Thaa": "taana",
812
795
  "Thai": "tajskie",
813
796
  "Tibt": "tybetańskie",
814
- "Tirh": "Tirh",
815
- "Tnsa": "Tnsa",
816
- "Toto": "Toto",
817
797
  "Ugar": "ugaryckie",
818
798
  "Vaii": "vai",
819
799
  "Visp": "Visible Speech",
820
- "Vith": "Vith",
821
- "Wara": "Wara",
822
- "Wcho": "Wcho",
823
800
  "Xpeo": "staroperskie",
824
801
  "Xsux": "klinowe sumero-akadyjskie",
825
- "Yezi": "Yezi",
826
802
  "Yiii": "yi",
827
- "Zanb": "Zanb",
828
803
  "Zinh": "dziedziczone",
829
804
  "Zmth": "notacja matematyczna",
830
805
  "Zsye": "emoji",
@@ -1051,6 +1026,7 @@
1051
1026
  "NR": "Nauru",
1052
1027
  "NU": "Niue",
1053
1028
  "NZ": "Nowa Zelandia",
1029
+ "NZ-alt-variant": "Nowa Zelandia",
1054
1030
  "OM": "Oman",
1055
1031
  "PA": "Panama",
1056
1032
  "PE": "Peru",
@@ -1110,6 +1086,7 @@
1110
1086
  "TN": "Tunezja",
1111
1087
  "TO": "Tonga",
1112
1088
  "TR": "Turcja",
1089
+ "TR-alt-variant": "Turcja",
1113
1090
  "TT": "Trynidad i Tobago",
1114
1091
  "TV": "Tuvalu",
1115
1092
  "TW": "Tajwan",
@@ -1170,9 +1147,9 @@
1170
1147
  "EBhm": "E h:mm B",
1171
1148
  "EBhms": "E h:mm:ss B",
1172
1149
  "Ed": "E, d",
1173
- "Ehm": "E, h:mm a",
1150
+ "Ehm": "E, h:mma",
1174
1151
  "EHm": "E, HH:mm",
1175
- "Ehms": "E, h:mm:ss a",
1152
+ "Ehms": "E, h:mm:ssa",
1176
1153
  "EHms": "E, HH:mm:ss",
1177
1154
  "Gy": "y G",
1178
1155
  "GyMd": "d.MM.y GGGGG",
@@ -1182,15 +1159,15 @@
1182
1159
  "GyMMMM": "LLLL y G",
1183
1160
  "GyMMMMd": "d MMMM y G",
1184
1161
  "GyMMMMEd": "E, d MMMM y G",
1185
- "h": "h a",
1162
+ "h": "ha",
1186
1163
  "H": "HH",
1187
- "hm": "h:mm a",
1164
+ "hm": "h:mma",
1188
1165
  "Hm": "HH:mm",
1189
- "hms": "h:mm:ss a",
1166
+ "hms": "h:mm:ssa",
1190
1167
  "Hms": "HH:mm:ss",
1191
- "hmsv": "h:mm:ss a v",
1168
+ "hmsv": "h:mm:ssa v",
1192
1169
  "Hmsv": "HH:mm:ss v",
1193
- "hmv": "h:mm a v",
1170
+ "hmv": "h:mma v",
1194
1171
  "Hmv": "HH:mm v",
1195
1172
  "M": "L",
1196
1173
  "Md": "d.MM",
@@ -1230,13 +1207,13 @@
1230
1207
  "Year": "{1} {0}"
1231
1208
  },
1232
1209
  "intervalFormats": {
1233
- "intervalFormatFallback": "{0} {1}",
1210
+ "intervalFormatFallback": "{0}{1}",
1234
1211
  "Bh": {
1235
- "B": "h B h B",
1212
+ "B": "h Bh B",
1236
1213
  "h": "h–h B"
1237
1214
  },
1238
1215
  "Bhm": {
1239
- "B": "h:mm B h:mm B",
1216
+ "B": "h:mm Bh:mm B",
1240
1217
  "h": "h:mm–h:mm B",
1241
1218
  "m": "h:mm–h:mm B"
1242
1219
  },
@@ -1244,71 +1221,71 @@
1244
1221
  "d": "d–d"
1245
1222
  },
1246
1223
  "Gy": {
1247
- "G": "y G y G",
1224
+ "G": "y Gy G",
1248
1225
  "y": "y–y G"
1249
1226
  },
1250
1227
  "GyM": {
1251
- "G": "M.y GGGGG M.y GGGGG",
1252
- "M": "M.y M.y GGGGG",
1253
- "y": "M.y M.y GGGGG"
1228
+ "G": "M.y GGGGGM.y GGGGG",
1229
+ "M": "M.yM.y GGGGG",
1230
+ "y": "M.yM.y GGGGG"
1254
1231
  },
1255
1232
  "GyMd": {
1256
- "d": "d.M.y d.M.y GGGGG",
1257
- "G": "d.M.y GGGGG d.M.y GGGGG",
1258
- "M": "d.M.y d.M.y GGGGG",
1259
- "y": "d.M.y d.M.y GGGGG"
1233
+ "d": "d.M.yd.M.y GGGGG",
1234
+ "G": "d.M.y GGGGGd.M.y GGGGG",
1235
+ "M": "d.M.yd.M.y GGGGG",
1236
+ "y": "d.M.yd.M.y GGGGG"
1260
1237
  },
1261
1238
  "GyMEd": {
1262
- "d": "E, d.M.y E, d.M.y GGGGG",
1263
- "G": "E, d.M.y GGGGG E, d.M.y GGGGG",
1264
- "M": "E, d.M.y E, d.M.y GGGGG",
1265
- "y": "E, d.M.y E, d.M.y GGGGG"
1239
+ "d": "E, d.M.yE, d.M.y GGGGG",
1240
+ "G": "E, d.M.y GGGGGE, d.M.y GGGGG",
1241
+ "M": "E, d.M.yE, d.M.y GGGGG",
1242
+ "y": "E, d.M.yE, d.M.y GGGGG"
1266
1243
  },
1267
1244
  "GyMMM": {
1268
- "G": "MMM y G MMM y G",
1269
- "M": "MMM MMM y G",
1270
- "y": "MMM y MMM y G"
1245
+ "G": "MMM y GMMM y G",
1246
+ "M": "MMMMMM y G",
1247
+ "y": "MMM yMMM y G"
1271
1248
  },
1272
1249
  "GyMMMd": {
1273
1250
  "d": "d–d MMM y G",
1274
- "G": "d MMM y G d MMM y G",
1275
- "M": "d MMM d MMM y G",
1276
- "y": "d MMM y d MMM y G"
1251
+ "G": "d MMM y Gd MMM y G",
1252
+ "M": "d MMMd MMM y G",
1253
+ "y": "d MMM yd MMM y G"
1277
1254
  },
1278
1255
  "GyMMMEd": {
1279
- "d": "E, d MMM E, d MMM y G",
1280
- "G": "E, d MMM y G E, d MMM y G",
1281
- "M": "E, d MMM E, d MMM y G",
1282
- "y": "E, d MMM y E, d MMM y G"
1256
+ "d": "E, d MMME, d MMM y G",
1257
+ "G": "E, d MMM y GE, d MMM y G",
1258
+ "M": "E, d MMME, d MMM y G",
1259
+ "y": "E, d MMM yE, d MMM y G"
1283
1260
  },
1284
1261
  "h": {
1285
- "a": "h a–h a",
1286
- "h": "h–h a"
1262
+ "a": "ha–ha",
1263
+ "h": "h–ha"
1287
1264
  },
1288
1265
  "H": {
1289
1266
  "H": "HH–HH"
1290
1267
  },
1291
1268
  "hm": {
1292
- "a": "h:mm a–h:mm a",
1293
- "h": "h:mm–h:mm a",
1294
- "m": "h:mm–h:mm a"
1269
+ "a": "h:mma–h:mma",
1270
+ "h": "h:mm–h:mma",
1271
+ "m": "h:mm–h:mma"
1295
1272
  },
1296
1273
  "Hm": {
1297
1274
  "H": "HH:mm–HH:mm",
1298
1275
  "m": "HH:mm–HH:mm"
1299
1276
  },
1300
1277
  "hmv": {
1301
- "a": "h:mm a–h:mm a v",
1302
- "h": "h:mm–h:mm a v",
1303
- "m": "h:mm–h:mm a v"
1278
+ "a": "h:mma–h:mma v",
1279
+ "h": "h:mm–h:mma v",
1280
+ "m": "h:mm–h:mma v"
1304
1281
  },
1305
1282
  "Hmv": {
1306
1283
  "H": "HH:mm–HH:mm v",
1307
1284
  "m": "HH:mm–HH:mm v"
1308
1285
  },
1309
1286
  "hv": {
1310
- "a": "h a h a v",
1311
- "h": "h–h a v"
1287
+ "a": "haha v",
1288
+ "h": "h–ha v"
1312
1289
  },
1313
1290
  "Hv": {
1314
1291
  "H": "HH–HH v"
@@ -1337,11 +1314,11 @@
1337
1314
  },
1338
1315
  "MMMMd": {
1339
1316
  "d": "d–d MMMM",
1340
- "M": "d MMMM d MMMM"
1317
+ "M": "d MMMMd MMMM"
1341
1318
  },
1342
1319
  "MMMMEd": {
1343
- "d": "E, d MMMM E, d MMMM",
1344
- "M": "E, d MMMM E, d MMMM"
1320
+ "d": "E, d MMMME, d MMMM",
1321
+ "M": "E, d MMMME, d MMMM"
1345
1322
  },
1346
1323
  "y": {
1347
1324
  "y": "y–y"
@@ -1380,13 +1357,13 @@
1380
1357
  },
1381
1358
  "yMMMMd": {
1382
1359
  "d": "d–d MMMM y",
1383
- "M": "d MMMM d MMMM y",
1384
- "y": "d MMMM y d MMMM y"
1360
+ "M": "d MMMMd MMMM y",
1361
+ "y": "d MMMM yd MMMM y"
1385
1362
  },
1386
1363
  "yMMMMEd": {
1387
- "d": "E, d MMMM E, d MMMM y",
1388
- "M": "E, d MMMM E, d MMMM y",
1389
- "y": "E, d MMMM y E, d MMMM y"
1364
+ "d": "E, d MMMME, d MMMM y",
1365
+ "M": "E, d MMMME, d MMMM y",
1366
+ "y": "E, d MMMM yE, d MMMM y"
1390
1367
  }
1391
1368
  }
1392
1369
  },
@@ -1739,11 +1716,11 @@
1739
1716
  "GyMMM": "LLL y G",
1740
1717
  "GyMMMd": "d MMM y G",
1741
1718
  "GyMMMEd": "E, d MMM y G",
1742
- "h": "hh a",
1719
+ "h": "h a",
1743
1720
  "H": "HH",
1744
- "hm": "hh:mm a",
1721
+ "hm": "h:mm a",
1745
1722
  "Hm": "HH:mm",
1746
- "hms": "hh:mm:ss a",
1723
+ "hms": "h:mm:ss a",
1747
1724
  "Hms": "HH:mm:ss",
1748
1725
  "M": "L",
1749
1726
  "Md": "d.MM",
@@ -1781,13 +1758,13 @@
1781
1758
  "Year": "{1} {0}"
1782
1759
  },
1783
1760
  "intervalFormats": {
1784
- "intervalFormatFallback": "{0} {1}",
1761
+ "intervalFormatFallback": "{0}{1}",
1785
1762
  "Bh": {
1786
- "B": "h B h B",
1763
+ "B": "h Bh B",
1787
1764
  "h": "h–h B"
1788
1765
  },
1789
1766
  "Bhm": {
1790
- "B": "h:mm B h:mm B",
1767
+ "B": "h:mm Bh:mm B",
1791
1768
  "h": "h:mm–h:mm B",
1792
1769
  "m": "h:mm–h:mm B"
1793
1770
  },
@@ -1795,71 +1772,71 @@
1795
1772
  "d": "d–d"
1796
1773
  },
1797
1774
  "Gy": {
1798
- "G": "y G y G",
1775
+ "G": "y Gy G",
1799
1776
  "y": "y–y G"
1800
1777
  },
1801
1778
  "GyM": {
1802
- "G": "MM.y GGGGG MM.y GGGGG",
1803
- "M": "MM.y MM.y GGGGG",
1804
- "y": "MM.y MM.y GGGGG"
1779
+ "G": "MM.y GGGGGMM.y GGGGG",
1780
+ "M": "MM.yMM.y GGGGG",
1781
+ "y": "MM.yMM.y GGGGG"
1805
1782
  },
1806
1783
  "GyMd": {
1807
- "d": "dd.MM.y dd.MM.y GGGGG",
1808
- "G": "dd.MM.y GGGGG dd.MM.y GGGGG",
1809
- "M": "dd.MM.y dd.MM.y GGGGG",
1810
- "y": "dd.MM.y dd.MM.y GGGGG"
1784
+ "d": "dd.MM.ydd.MM.y GGGGG",
1785
+ "G": "dd.MM.y GGGGGdd.MM.y GGGGG",
1786
+ "M": "dd.MM.ydd.MM.y GGGGG",
1787
+ "y": "dd.MM.ydd.MM.y GGGGG"
1811
1788
  },
1812
1789
  "GyMEd": {
1813
- "d": "E, dd.MM.y E, dd.MM.y GGGGG",
1814
- "G": "E, dd.MM.y GGGGG E, dd.MM.y GGGGG",
1815
- "M": "E, dd.MM.y E, dd.MM.y GGGGG",
1816
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
1790
+ "d": "E, dd.MM.yE, dd.MM.y GGGGG",
1791
+ "G": "E, dd.MM.y GGGGGE, dd.MM.y GGGGG",
1792
+ "M": "E, dd.MM.yE, dd.MM.y GGGGG",
1793
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
1817
1794
  },
1818
1795
  "GyMMM": {
1819
- "G": "MMM y G MMM y G",
1820
- "M": "MMM MMM y G",
1821
- "y": "MMM y MMM y G"
1796
+ "G": "MMM y GMMM y G",
1797
+ "M": "MMMMMM y G",
1798
+ "y": "MMM yMMM y G"
1822
1799
  },
1823
1800
  "GyMMMd": {
1824
1801
  "d": "d–d MMM y G",
1825
- "G": "d MMM y G d MMM y G",
1826
- "M": "d MMM d MMM y G",
1827
- "y": "d MMM y d MMM y G"
1802
+ "G": "d MMM y Gd MMM y G",
1803
+ "M": "d MMMd MMM y G",
1804
+ "y": "d MMM yd MMM y G"
1828
1805
  },
1829
1806
  "GyMMMEd": {
1830
- "d": "E, d MMM E, d MMM y G",
1831
- "G": "E, d MMM y G E, d MMM y G",
1832
- "M": "E, d MMM E, d MMM y G",
1833
- "y": "E, d MMM y E, d MMM y G"
1807
+ "d": "E, d MMME, d MMM y G",
1808
+ "G": "E, d MMM y GE, d MMM y G",
1809
+ "M": "E, d MMME, d MMM y G",
1810
+ "y": "E, d MMM yE, d MMM y G"
1834
1811
  },
1835
1812
  "h": {
1836
- "a": "h a h a",
1837
- "h": "h–h a"
1813
+ "a": "haha",
1814
+ "h": "h–ha"
1838
1815
  },
1839
1816
  "H": {
1840
1817
  "H": "HH–HH"
1841
1818
  },
1842
1819
  "hm": {
1843
- "a": "h:mm a h:mm a",
1844
- "h": "h:mm–h:mm a",
1845
- "m": "h:mm–h:mm a"
1820
+ "a": "h:mmah:mma",
1821
+ "h": "h:mm–h:mma",
1822
+ "m": "h:mm–h:mma"
1846
1823
  },
1847
1824
  "Hm": {
1848
1825
  "H": "HH:mm–HH:mm",
1849
1826
  "m": "HH:mm–HH:mm"
1850
1827
  },
1851
1828
  "hmv": {
1852
- "a": "h:mm a h:mm a v",
1853
- "h": "h:mm–h:mm a v",
1854
- "m": "h:mm–h:mm a v"
1829
+ "a": "h:mmah:mma v",
1830
+ "h": "h:mm–h:mma v",
1831
+ "m": "h:mm–h:mma v"
1855
1832
  },
1856
1833
  "Hmv": {
1857
1834
  "H": "HH:mm–HH:mm v",
1858
1835
  "m": "HH:mm–HH:mm v"
1859
1836
  },
1860
1837
  "hv": {
1861
- "a": "h a h a v",
1862
- "h": "h–h a v"
1838
+ "a": "haha v",
1839
+ "h": "h–ha v"
1863
1840
  },
1864
1841
  "Hv": {
1865
1842
  "H": "HH–HH v"
@@ -1872,26 +1849,26 @@
1872
1849
  "M": "dd.MM–dd.MM"
1873
1850
  },
1874
1851
  "MEd": {
1875
- "d": "E, dd.MM E, dd.MM",
1876
- "M": "E, dd.MM E, dd.MM"
1852
+ "d": "E, dd.MME, dd.MM",
1853
+ "M": "E, dd.MME, dd.MM"
1877
1854
  },
1878
1855
  "MMM": {
1879
1856
  "M": "LLL–LLL"
1880
1857
  },
1881
1858
  "MMMd": {
1882
1859
  "d": "d–d MMM",
1883
- "M": "d MMM d MMM"
1860
+ "M": "d MMMd MMM"
1884
1861
  },
1885
1862
  "MMMEd": {
1886
- "d": "E, d MMM E, d MMM",
1887
- "M": "E, d MMM E, d MMM"
1863
+ "d": "E, d MMME, d MMM",
1864
+ "M": "E, d MMME, d MMM"
1888
1865
  },
1889
1866
  "y": {
1890
1867
  "y": "y–y G"
1891
1868
  },
1892
1869
  "yM": {
1893
- "M": "MM.y MM.y GGGGG",
1894
- "y": "MM.y MM.y GGGGG"
1870
+ "M": "MM.yMM.y GGGGG",
1871
+ "y": "MM.yMM.y GGGGG"
1895
1872
  },
1896
1873
  "yMd": {
1897
1874
  "d": "dd–dd.MM.y GGGGG",
@@ -1899,27 +1876,27 @@
1899
1876
  "y": "dd.MM.y–dd.MM.y G"
1900
1877
  },
1901
1878
  "yMEd": {
1902
- "d": "E, dd.MM.y E, dd.MM.y G",
1903
- "M": "E, dd.MM.y E, dd.MM.y G",
1904
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
1879
+ "d": "E, dd.MM.yE, dd.MM.y G",
1880
+ "M": "E, dd.MM.yE, dd.MM.y G",
1881
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
1905
1882
  },
1906
1883
  "yMMM": {
1907
1884
  "M": "LLL–LLL y G",
1908
- "y": "LLL y LLL y G"
1885
+ "y": "LLL yLLL y G"
1909
1886
  },
1910
1887
  "yMMMd": {
1911
1888
  "d": "d–d MMM y G",
1912
- "M": "d MMM d MMM y G",
1913
- "y": "d MMM y d MMM y G"
1889
+ "M": "d MMMd MMM y G",
1890
+ "y": "d MMM yd MMM y G"
1914
1891
  },
1915
1892
  "yMMMEd": {
1916
- "d": "E, d E, d MMM y G",
1917
- "M": "E, d MMM E, d MMM y G",
1918
- "y": "E, d MMM y E, d MMM y G"
1893
+ "d": "E, dE, d MMM y G",
1894
+ "M": "E, d MMME, d MMM y G",
1895
+ "y": "E, d MMM yE, d MMM y G"
1919
1896
  },
1920
1897
  "yMMMM": {
1921
1898
  "M": "LLLL–LLLL y G",
1922
- "y": "LLLL y LLLL y G"
1899
+ "y": "LLLL yLLLL y G"
1923
1900
  }
1924
1901
  }
1925
1902
  },
@@ -2269,11 +2246,11 @@
2269
2246
  "GyMMM": "LLL y G",
2270
2247
  "GyMMMd": "d MMM y G",
2271
2248
  "GyMMMEd": "E, d MMM y G",
2272
- "h": "hh a",
2249
+ "h": "h a",
2273
2250
  "H": "HH",
2274
- "hm": "hh:mm a",
2251
+ "hm": "h:mm a",
2275
2252
  "Hm": "HH:mm",
2276
- "hms": "hh:mm:ss a",
2253
+ "hms": "h:mm:ss a",
2277
2254
  "Hms": "HH:mm:ss",
2278
2255
  "M": "L",
2279
2256
  "Md": "d.MM",
@@ -2311,13 +2288,13 @@
2311
2288
  "Year": "{1} {0}"
2312
2289
  },
2313
2290
  "intervalFormats": {
2314
- "intervalFormatFallback": "{0} {1}",
2291
+ "intervalFormatFallback": "{0}{1}",
2315
2292
  "Bh": {
2316
- "B": "h B h B",
2293
+ "B": "h Bh B",
2317
2294
  "h": "h–h B"
2318
2295
  },
2319
2296
  "Bhm": {
2320
- "B": "h:mm B h:mm B",
2297
+ "B": "h:mm Bh:mm B",
2321
2298
  "h": "h:mm–h:mm B",
2322
2299
  "m": "h:mm–h:mm B"
2323
2300
  },
@@ -2325,71 +2302,71 @@
2325
2302
  "d": "d–d"
2326
2303
  },
2327
2304
  "Gy": {
2328
- "G": "y G y G",
2305
+ "G": "y Gy G",
2329
2306
  "y": "y–y G"
2330
2307
  },
2331
2308
  "GyM": {
2332
- "G": "MM.y GGGGG MM.y GGGGG",
2333
- "M": "MM.y MM.y GGGGG",
2334
- "y": "MM.y MM.y GGGGG"
2309
+ "G": "MM.y GGGGGMM.y GGGGG",
2310
+ "M": "MM.yMM.y GGGGG",
2311
+ "y": "MM.yMM.y GGGGG"
2335
2312
  },
2336
2313
  "GyMd": {
2337
- "d": "dd.MM.y dd.MM.y GGGGG",
2338
- "G": "dd.MM.y GGGGG dd.MM.y GGGGG",
2339
- "M": "dd.MM.y dd.MM.y GGGGG",
2340
- "y": "dd.MM.y dd.MM.y GGGGG"
2314
+ "d": "dd.MM.ydd.MM.y GGGGG",
2315
+ "G": "dd.MM.y GGGGGdd.MM.y GGGGG",
2316
+ "M": "dd.MM.ydd.MM.y GGGGG",
2317
+ "y": "dd.MM.ydd.MM.y GGGGG"
2341
2318
  },
2342
2319
  "GyMEd": {
2343
- "d": "E, dd.MM.y E, dd.MM.y GGGGG",
2344
- "G": "E, dd.MM.y GGGGG E, dd.MM.y GGGGG",
2345
- "M": "E, dd.MM.y E, dd.MM.y GGGGG",
2346
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
2320
+ "d": "E, dd.MM.yE, dd.MM.y GGGGG",
2321
+ "G": "E, dd.MM.y GGGGGE, dd.MM.y GGGGG",
2322
+ "M": "E, dd.MM.yE, dd.MM.y GGGGG",
2323
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
2347
2324
  },
2348
2325
  "GyMMM": {
2349
- "G": "MMM y G MMM y G",
2350
- "M": "MMM MMM y G",
2351
- "y": "MMM y MMM y G"
2326
+ "G": "MMM y GMMM y G",
2327
+ "M": "MMMMMM y G",
2328
+ "y": "MMM yMMM y G"
2352
2329
  },
2353
2330
  "GyMMMd": {
2354
2331
  "d": "d–d MMM y G",
2355
- "G": "d MMM y G d MMM y G",
2356
- "M": "d MMM d MMM y G",
2357
- "y": "d MMM y d MMM y G"
2332
+ "G": "d MMM y Gd MMM y G",
2333
+ "M": "d MMMd MMM y G",
2334
+ "y": "d MMM yd MMM y G"
2358
2335
  },
2359
2336
  "GyMMMEd": {
2360
- "d": "E, d MMM E, d MMM y G",
2361
- "G": "E, d MMM y G E, d MMM y G",
2362
- "M": "E, d MMM E, d MMM y G",
2363
- "y": "E, d MMM y E, d MMM y G"
2337
+ "d": "E, d MMME, d MMM y G",
2338
+ "G": "E, d MMM y GE, d MMM y G",
2339
+ "M": "E, d MMME, d MMM y G",
2340
+ "y": "E, d MMM yE, d MMM y G"
2364
2341
  },
2365
2342
  "h": {
2366
- "a": "h a h a",
2367
- "h": "h–h a"
2343
+ "a": "haha",
2344
+ "h": "h–ha"
2368
2345
  },
2369
2346
  "H": {
2370
2347
  "H": "HH–HH"
2371
2348
  },
2372
2349
  "hm": {
2373
- "a": "h:mm a h:mm a",
2374
- "h": "h:mm–h:mm a",
2375
- "m": "h:mm–h:mm a"
2350
+ "a": "h:mmah:mma",
2351
+ "h": "h:mm–h:mma",
2352
+ "m": "h:mm–h:mma"
2376
2353
  },
2377
2354
  "Hm": {
2378
2355
  "H": "HH:mm–HH:mm",
2379
2356
  "m": "HH:mm–HH:mm"
2380
2357
  },
2381
2358
  "hmv": {
2382
- "a": "h:mm a h:mm a v",
2383
- "h": "h:mm–h:mm a v",
2384
- "m": "h:mm–h:mm a v"
2359
+ "a": "h:mmah:mma v",
2360
+ "h": "h:mm–h:mma v",
2361
+ "m": "h:mm–h:mma v"
2385
2362
  },
2386
2363
  "Hmv": {
2387
2364
  "H": "HH:mm–HH:mm v",
2388
2365
  "m": "HH:mm–HH:mm v"
2389
2366
  },
2390
2367
  "hv": {
2391
- "a": "h a h a v",
2392
- "h": "h–h a v"
2368
+ "a": "haha v",
2369
+ "h": "h–ha v"
2393
2370
  },
2394
2371
  "Hv": {
2395
2372
  "H": "HH–HH v"
@@ -2402,28 +2379,28 @@
2402
2379
  "M": "dd.MM–dd.MM"
2403
2380
  },
2404
2381
  "MEd": {
2405
- "d": "E, dd.MM E, dd.MM",
2406
- "M": "E, dd.MM E, dd.MM"
2382
+ "d": "E, dd.MME, dd.MM",
2383
+ "M": "E, dd.MME, dd.MM"
2407
2384
  },
2408
2385
  "MMM": {
2409
2386
  "M": "LLL–LLL"
2410
2387
  },
2411
2388
  "MMMd": {
2412
2389
  "d": "d–d MMM",
2413
- "M": "d MMM d MMM"
2390
+ "M": "d MMMd MMM"
2414
2391
  },
2415
2392
  "MMMEd": {
2416
- "d": "E, d MMM E, d MMM",
2417
- "M": "E, d MMM E, d MMM"
2393
+ "d": "E, d MMME, d MMM",
2394
+ "M": "E, d MMME, d MMM"
2418
2395
  },
2419
2396
  "y": {
2420
2397
  "y": "y–y G",
2421
2398
  "G": "y G–y G"
2422
2399
  },
2423
2400
  "yM": {
2424
- "M": "MM.y MM.y GGGGG",
2425
- "y": "MM.y MM.y GGGGG",
2426
- "G": "MM.y GGGGG MM.y GGGGG"
2401
+ "M": "MM.yMM.y GGGGG",
2402
+ "y": "MM.yMM.y GGGGG",
2403
+ "G": "MM.y GGGGGMM.y GGGGG"
2427
2404
  },
2428
2405
  "yMd": {
2429
2406
  "d": "dd–dd.MM.y GGGGG",
@@ -2432,32 +2409,32 @@
2432
2409
  "G": "dd.MM.y G–dd.MM.y G"
2433
2410
  },
2434
2411
  "yMEd": {
2435
- "d": "E, dd.MM.y E, dd.MM.y G",
2436
- "M": "E, dd.MM.y E, dd.MM.y G",
2437
- "y": "E, dd.MM.y E, dd.MM.y GGGGG",
2438
- "G": "E, dd.MM.y GGGGG E, dd.MM.y GGGGG"
2412
+ "d": "E, dd.MM.yE, dd.MM.y G",
2413
+ "M": "E, dd.MM.yE, dd.MM.y G",
2414
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG",
2415
+ "G": "E, dd.MM.y GGGGGE, dd.MM.y GGGGG"
2439
2416
  },
2440
2417
  "yMMM": {
2441
2418
  "M": "LLL–LLL y G",
2442
- "y": "LLL y LLL y G",
2443
- "G": "LLL y G LLL y G"
2419
+ "y": "LLL yLLL y G",
2420
+ "G": "LLL y GLLL y G"
2444
2421
  },
2445
2422
  "yMMMd": {
2446
2423
  "d": "d–d MMM y G",
2447
- "M": "d MMM d MMM y G",
2448
- "y": "d MMM y d MMM y G",
2449
- "G": "d MMM y G d MMM y G"
2424
+ "M": "d MMMd MMM y G",
2425
+ "y": "d MMM yd MMM y G",
2426
+ "G": "d MMM y Gd MMM y G"
2450
2427
  },
2451
2428
  "yMMMEd": {
2452
- "d": "E, d E, d MMM y G",
2453
- "M": "E, d MMM E, d MMM y G",
2454
- "y": "E, d MMM y E, d MMM y G",
2455
- "G": "E, d MMM y G E, d MMM y G"
2429
+ "d": "E, dE, d MMM y G",
2430
+ "M": "E, d MMME, d MMM y G",
2431
+ "y": "E, d MMM yE, d MMM y G",
2432
+ "G": "E, d MMM y GE, d MMM y G"
2456
2433
  },
2457
2434
  "yMMMM": {
2458
2435
  "M": "LLLL–LLLL y G",
2459
- "y": "LLLL y LLLL y G",
2460
- "G": "LLLL y G LLLL y G"
2436
+ "y": "LLLL yLLLL y G",
2437
+ "G": "LLLL y GLLLL y G"
2461
2438
  }
2462
2439
  }
2463
2440
  },
@@ -2819,11 +2796,11 @@
2819
2796
  "GyMMM": "LLL y G",
2820
2797
  "GyMMMd": "d MMM y G",
2821
2798
  "GyMMMEd": "E, d MMM y G",
2822
- "h": "hh a",
2799
+ "h": "h a",
2823
2800
  "H": "HH",
2824
- "hm": "hh:mm a",
2801
+ "hm": "h:mm a",
2825
2802
  "Hm": "HH:mm",
2826
- "hms": "hh:mm:ss a",
2803
+ "hms": "h:mm:ss a",
2827
2804
  "Hms": "HH:mm:ss",
2828
2805
  "M": "L",
2829
2806
  "Md": "d.MM",
@@ -2861,13 +2838,13 @@
2861
2838
  "Year": "{1} {0}"
2862
2839
  },
2863
2840
  "intervalFormats": {
2864
- "intervalFormatFallback": "{0} {1}",
2841
+ "intervalFormatFallback": "{0}{1}",
2865
2842
  "Bh": {
2866
- "B": "h B h B",
2843
+ "B": "h Bh B",
2867
2844
  "h": "h–h B"
2868
2845
  },
2869
2846
  "Bhm": {
2870
- "B": "h:mm B h:mm B",
2847
+ "B": "h:mm Bh:mm B",
2871
2848
  "h": "h:mm–h:mm B",
2872
2849
  "m": "h:mm–h:mm B"
2873
2850
  },
@@ -2875,71 +2852,71 @@
2875
2852
  "d": "d–d"
2876
2853
  },
2877
2854
  "Gy": {
2878
- "G": "y G y G",
2855
+ "G": "y Gy G",
2879
2856
  "y": "y–y G"
2880
2857
  },
2881
2858
  "GyM": {
2882
- "G": "MM.y GGGGG MM.y GGGGG",
2883
- "M": "MM.y MM.y GGGGG",
2884
- "y": "MM.y MM.y GGGGG"
2859
+ "G": "MM.y GGGGGMM.y GGGGG",
2860
+ "M": "MM.yMM.y GGGGG",
2861
+ "y": "MM.yMM.y GGGGG"
2885
2862
  },
2886
2863
  "GyMd": {
2887
- "d": "dd.MM.y dd.MM.y GGGGG",
2888
- "G": "dd.MM.y GGGGG dd.MM.y GGGGG",
2889
- "M": "dd.MM.y dd.MM.y GGGGG",
2890
- "y": "dd.MM.y dd.MM.y GGGGG"
2864
+ "d": "dd.MM.ydd.MM.y GGGGG",
2865
+ "G": "dd.MM.y GGGGGdd.MM.y GGGGG",
2866
+ "M": "dd.MM.ydd.MM.y GGGGG",
2867
+ "y": "dd.MM.ydd.MM.y GGGGG"
2891
2868
  },
2892
2869
  "GyMEd": {
2893
- "d": "E, dd.MM.y E, dd.MM.y GGGGG",
2894
- "G": "E, dd.MM.y GGGGG E, dd.MM.y GGGGG",
2895
- "M": "E, dd.MM.y E, dd.MM.y GGGGG",
2896
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
2870
+ "d": "E, dd.MM.yE, dd.MM.y GGGGG",
2871
+ "G": "E, dd.MM.y GGGGGE, dd.MM.y GGGGG",
2872
+ "M": "E, dd.MM.yE, dd.MM.y GGGGG",
2873
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
2897
2874
  },
2898
2875
  "GyMMM": {
2899
- "G": "MMM y G MMM y G",
2900
- "M": "MMM MMM y G",
2901
- "y": "MMM y MMM y G"
2876
+ "G": "MMM y GMMM y G",
2877
+ "M": "MMMMMM y G",
2878
+ "y": "MMM yMMM y G"
2902
2879
  },
2903
2880
  "GyMMMd": {
2904
2881
  "d": "d–d MMM y G",
2905
- "G": "d MMM y G d MMM y G",
2906
- "M": "d MMM d MMM y G",
2907
- "y": "d MMM y d MMM y G"
2882
+ "G": "d MMM y Gd MMM y G",
2883
+ "M": "d MMMd MMM y G",
2884
+ "y": "d MMM yd MMM y G"
2908
2885
  },
2909
2886
  "GyMMMEd": {
2910
- "d": "E, d MMM E, d MMM y G",
2911
- "G": "E, d MMM y G E, d MMM y G",
2912
- "M": "E, d MMM E, d MMM y G",
2913
- "y": "E, d MMM y E, d MMM y G"
2887
+ "d": "E, d MMME, d MMM y G",
2888
+ "G": "E, d MMM y GE, d MMM y G",
2889
+ "M": "E, d MMME, d MMM y G",
2890
+ "y": "E, d MMM yE, d MMM y G"
2914
2891
  },
2915
2892
  "h": {
2916
- "a": "h a h a",
2917
- "h": "h–h a"
2893
+ "a": "haha",
2894
+ "h": "h–ha"
2918
2895
  },
2919
2896
  "H": {
2920
2897
  "H": "HH–HH"
2921
2898
  },
2922
2899
  "hm": {
2923
- "a": "h:mm a h:mm a",
2924
- "h": "h:mm–h:mm a",
2925
- "m": "h:mm–h:mm a"
2900
+ "a": "h:mmah:mma",
2901
+ "h": "h:mm–h:mma",
2902
+ "m": "h:mm–h:mma"
2926
2903
  },
2927
2904
  "Hm": {
2928
2905
  "H": "HH:mm–HH:mm",
2929
2906
  "m": "HH:mm–HH:mm"
2930
2907
  },
2931
2908
  "hmv": {
2932
- "a": "h:mm a h:mm a v",
2933
- "h": "h:mm–h:mm a v",
2934
- "m": "h:mm–h:mm a v"
2909
+ "a": "h:mmah:mma v",
2910
+ "h": "h:mm–h:mma v",
2911
+ "m": "h:mm–h:mma v"
2935
2912
  },
2936
2913
  "Hmv": {
2937
2914
  "H": "HH:mm–HH:mm v",
2938
2915
  "m": "HH:mm–HH:mm v"
2939
2916
  },
2940
2917
  "hv": {
2941
- "a": "h a h a v",
2942
- "h": "h–h a v"
2918
+ "a": "haha v",
2919
+ "h": "h–ha v"
2943
2920
  },
2944
2921
  "Hv": {
2945
2922
  "H": "HH–HH v"
@@ -2952,26 +2929,26 @@
2952
2929
  "M": "dd.MM–dd.MM"
2953
2930
  },
2954
2931
  "MEd": {
2955
- "d": "E, dd.MM E, dd.MM",
2956
- "M": "E, dd.MM E, dd.MM"
2932
+ "d": "E, dd.MME, dd.MM",
2933
+ "M": "E, dd.MME, dd.MM"
2957
2934
  },
2958
2935
  "MMM": {
2959
2936
  "M": "LLL–LLL"
2960
2937
  },
2961
2938
  "MMMd": {
2962
2939
  "d": "d–d MMM",
2963
- "M": "d MMM d MMM"
2940
+ "M": "d MMMd MMM"
2964
2941
  },
2965
2942
  "MMMEd": {
2966
- "d": "E, d MMM E, d MMM",
2967
- "M": "E, d MMM E, d MMM"
2943
+ "d": "E, d MMME, d MMM",
2944
+ "M": "E, d MMME, d MMM"
2968
2945
  },
2969
2946
  "y": {
2970
2947
  "y": "y–y G"
2971
2948
  },
2972
2949
  "yM": {
2973
- "M": "MM.y MM.y GGGGG",
2974
- "y": "MM.y MM.y GGGGG"
2950
+ "M": "MM.yMM.y GGGGG",
2951
+ "y": "MM.yMM.y GGGGG"
2975
2952
  },
2976
2953
  "yMd": {
2977
2954
  "d": "dd–dd.MM.y GGGGG",
@@ -2979,27 +2956,27 @@
2979
2956
  "y": "dd.MM.y–dd.MM.y G"
2980
2957
  },
2981
2958
  "yMEd": {
2982
- "d": "E, dd.MM.y E, dd.MM.y G",
2983
- "M": "E, dd.MM.y E, dd.MM.y G",
2984
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
2959
+ "d": "E, dd.MM.yE, dd.MM.y G",
2960
+ "M": "E, dd.MM.yE, dd.MM.y G",
2961
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
2985
2962
  },
2986
2963
  "yMMM": {
2987
2964
  "M": "LLL–LLL y G",
2988
- "y": "LLL y LLL y G"
2965
+ "y": "LLL yLLL y G"
2989
2966
  },
2990
2967
  "yMMMd": {
2991
2968
  "d": "d–d MMM y G",
2992
- "M": "d MMM d MMM y G",
2993
- "y": "d MMM y d MMM y G"
2969
+ "M": "d MMMd MMM y G",
2970
+ "y": "d MMM yd MMM y G"
2994
2971
  },
2995
2972
  "yMMMEd": {
2996
- "d": "E, d E, d MMM y G",
2997
- "M": "E, d MMM E, d MMM y G",
2998
- "y": "E, d MMM y E, d MMM y G"
2973
+ "d": "E, dE, d MMM y G",
2974
+ "M": "E, d MMME, d MMM y G",
2975
+ "y": "E, d MMM yE, d MMM y G"
2999
2976
  },
3000
2977
  "yMMMM": {
3001
2978
  "M": "LLLL–LLLL y G",
3002
- "y": "LLLL y LLLL y G"
2979
+ "y": "LLLL yLLLL y G"
3003
2980
  }
3004
2981
  }
3005
2982
  },
@@ -3349,11 +3326,11 @@
3349
3326
  "GyMMM": "LLL y G",
3350
3327
  "GyMMMd": "d MMM y G",
3351
3328
  "GyMMMEd": "E, d MMM y G",
3352
- "h": "hh a",
3329
+ "h": "h a",
3353
3330
  "H": "HH",
3354
- "hm": "hh:mm a",
3331
+ "hm": "h:mm a",
3355
3332
  "Hm": "HH:mm",
3356
- "hms": "hh:mm:ss a",
3333
+ "hms": "h:mm:ss a",
3357
3334
  "Hms": "HH:mm:ss",
3358
3335
  "M": "L",
3359
3336
  "Md": "d.MM",
@@ -3391,13 +3368,13 @@
3391
3368
  "Year": "{1} {0}"
3392
3369
  },
3393
3370
  "intervalFormats": {
3394
- "intervalFormatFallback": "{0} {1}",
3371
+ "intervalFormatFallback": "{0}{1}",
3395
3372
  "Bh": {
3396
- "B": "h B h B",
3373
+ "B": "h Bh B",
3397
3374
  "h": "h–h B"
3398
3375
  },
3399
3376
  "Bhm": {
3400
- "B": "h:mm B h:mm B",
3377
+ "B": "h:mm Bh:mm B",
3401
3378
  "h": "h:mm–h:mm B",
3402
3379
  "m": "h:mm–h:mm B"
3403
3380
  },
@@ -3405,71 +3382,71 @@
3405
3382
  "d": "d–d"
3406
3383
  },
3407
3384
  "Gy": {
3408
- "G": "y G y G",
3385
+ "G": "y Gy G",
3409
3386
  "y": "y–y G"
3410
3387
  },
3411
3388
  "GyM": {
3412
- "G": "MM.y GGGGG MM.y GGGGG",
3413
- "M": "MM.y MM.y GGGGG",
3414
- "y": "MM.y MM.y GGGGG"
3389
+ "G": "MM.y GGGGGMM.y GGGGG",
3390
+ "M": "MM.yMM.y GGGGG",
3391
+ "y": "MM.yMM.y GGGGG"
3415
3392
  },
3416
3393
  "GyMd": {
3417
- "d": "dd.MM.y dd.MM.y GGGGG",
3418
- "G": "dd.MM.y GGGGG dd.MM.y GGGGG",
3419
- "M": "dd.MM.y dd.MM.y GGGGG",
3420
- "y": "dd.MM.y dd.MM.y GGGGG"
3394
+ "d": "dd.MM.ydd.MM.y GGGGG",
3395
+ "G": "dd.MM.y GGGGGdd.MM.y GGGGG",
3396
+ "M": "dd.MM.ydd.MM.y GGGGG",
3397
+ "y": "dd.MM.ydd.MM.y GGGGG"
3421
3398
  },
3422
3399
  "GyMEd": {
3423
- "d": "E, dd.MM.y E, dd.MM.y GGGGG",
3424
- "G": "E, dd.MM.y GGGGG E, dd.MM.y GGGGG",
3425
- "M": "E, dd.MM.y E, dd.MM.y GGGGG",
3426
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
3400
+ "d": "E, dd.MM.yE, dd.MM.y GGGGG",
3401
+ "G": "E, dd.MM.y GGGGGE, dd.MM.y GGGGG",
3402
+ "M": "E, dd.MM.yE, dd.MM.y GGGGG",
3403
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
3427
3404
  },
3428
3405
  "GyMMM": {
3429
- "G": "MMM y G MMM y G",
3430
- "M": "MMM MMM y G",
3431
- "y": "MMM y MMM y G"
3406
+ "G": "MMM y GMMM y G",
3407
+ "M": "MMMMMM y G",
3408
+ "y": "MMM yMMM y G"
3432
3409
  },
3433
3410
  "GyMMMd": {
3434
3411
  "d": "d–d MMM y G",
3435
- "G": "d MMM y G d MMM y G",
3436
- "M": "d MMM d MMM y G",
3437
- "y": "d MMM y d MMM y G"
3412
+ "G": "d MMM y Gd MMM y G",
3413
+ "M": "d MMMd MMM y G",
3414
+ "y": "d MMM yd MMM y G"
3438
3415
  },
3439
3416
  "GyMMMEd": {
3440
- "d": "E, d MMM E, d MMM y G",
3441
- "G": "E, d MMM y G E, d MMM y G",
3442
- "M": "E, d MMM E, d MMM y G",
3443
- "y": "E, d MMM y E, d MMM y G"
3417
+ "d": "E, d MMME, d MMM y G",
3418
+ "G": "E, d MMM y GE, d MMM y G",
3419
+ "M": "E, d MMME, d MMM y G",
3420
+ "y": "E, d MMM yE, d MMM y G"
3444
3421
  },
3445
3422
  "h": {
3446
- "a": "h a h a",
3447
- "h": "h–h a"
3423
+ "a": "haha",
3424
+ "h": "h–ha"
3448
3425
  },
3449
3426
  "H": {
3450
3427
  "H": "HH–HH"
3451
3428
  },
3452
3429
  "hm": {
3453
- "a": "h:mm a h:mm a",
3454
- "h": "h:mm–h:mm a",
3455
- "m": "h:mm–h:mm a"
3430
+ "a": "h:mmah:mma",
3431
+ "h": "h:mm–h:mma",
3432
+ "m": "h:mm–h:mma"
3456
3433
  },
3457
3434
  "Hm": {
3458
3435
  "H": "HH:mm–HH:mm",
3459
3436
  "m": "HH:mm–HH:mm"
3460
3437
  },
3461
3438
  "hmv": {
3462
- "a": "h:mm a h:mm a v",
3463
- "h": "h:mm–h:mm a v",
3464
- "m": "h:mm–h:mm a v"
3439
+ "a": "h:mmah:mma v",
3440
+ "h": "h:mm–h:mma v",
3441
+ "m": "h:mm–h:mma v"
3465
3442
  },
3466
3443
  "Hmv": {
3467
3444
  "H": "HH:mm–HH:mm v",
3468
3445
  "m": "HH:mm–HH:mm v"
3469
3446
  },
3470
3447
  "hv": {
3471
- "a": "h a h a v",
3472
- "h": "h–h a v"
3448
+ "a": "haha v",
3449
+ "h": "h–ha v"
3473
3450
  },
3474
3451
  "Hv": {
3475
3452
  "H": "HH–HH v"
@@ -3482,26 +3459,26 @@
3482
3459
  "M": "dd.MM–dd.MM"
3483
3460
  },
3484
3461
  "MEd": {
3485
- "d": "E, dd.MM E, dd.MM",
3486
- "M": "E, dd.MM E, dd.MM"
3462
+ "d": "E, dd.MME, dd.MM",
3463
+ "M": "E, dd.MME, dd.MM"
3487
3464
  },
3488
3465
  "MMM": {
3489
3466
  "M": "LLL–LLL"
3490
3467
  },
3491
3468
  "MMMd": {
3492
3469
  "d": "d–d MMM",
3493
- "M": "d MMM d MMM"
3470
+ "M": "d MMMd MMM"
3494
3471
  },
3495
3472
  "MMMEd": {
3496
- "d": "E, d MMM E, d MMM",
3497
- "M": "E, d MMM E, d MMM"
3473
+ "d": "E, d MMME, d MMM",
3474
+ "M": "E, d MMME, d MMM"
3498
3475
  },
3499
3476
  "y": {
3500
3477
  "y": "y–y G"
3501
3478
  },
3502
3479
  "yM": {
3503
- "M": "MM.y MM.y GGGGG",
3504
- "y": "MM.y MM.y GGGGG"
3480
+ "M": "MM.yMM.y GGGGG",
3481
+ "y": "MM.yMM.y GGGGG"
3505
3482
  },
3506
3483
  "yMd": {
3507
3484
  "d": "dd–dd.MM.y GGGGG",
@@ -3509,27 +3486,27 @@
3509
3486
  "y": "dd.MM.y–dd.MM.y G"
3510
3487
  },
3511
3488
  "yMEd": {
3512
- "d": "E, dd.MM.y E, dd.MM.y G",
3513
- "M": "E, dd.MM.y E, dd.MM.y G",
3514
- "y": "E, dd.MM.y E, dd.MM.y GGGGG"
3489
+ "d": "E, dd.MM.yE, dd.MM.y G",
3490
+ "M": "E, dd.MM.yE, dd.MM.y G",
3491
+ "y": "E, dd.MM.yE, dd.MM.y GGGGG"
3515
3492
  },
3516
3493
  "yMMM": {
3517
3494
  "M": "LLL–LLL y G",
3518
- "y": "LLL y LLL y G"
3495
+ "y": "LLL yLLL y G"
3519
3496
  },
3520
3497
  "yMMMd": {
3521
3498
  "d": "d–d MMM y G",
3522
- "M": "d MMM d MMM y G",
3523
- "y": "d MMM y d MMM y G"
3499
+ "M": "d MMMd MMM y G",
3500
+ "y": "d MMM yd MMM y G"
3524
3501
  },
3525
3502
  "yMMMEd": {
3526
- "d": "E, d E, d MMM y G",
3527
- "M": "E, d MMM E, d MMM y G",
3528
- "y": "E, d MMM y E, d MMM y G"
3503
+ "d": "E, dE, d MMM y G",
3504
+ "M": "E, d MMME, d MMM y G",
3505
+ "y": "E, d MMM yE, d MMM y G"
3529
3506
  },
3530
3507
  "yMMMM": {
3531
3508
  "M": "LLLL–LLLL y G",
3532
- "y": "LLLL y LLLL y G"
3509
+ "y": "LLLL yLLLL y G"
3533
3510
  }
3534
3511
  }
3535
3512
  },
@@ -4374,6 +4351,7 @@
4374
4351
  "Cayman": "Kajmany",
4375
4352
  "Chicago": "Chicago",
4376
4353
  "Chihuahua": "Chihuahua",
4354
+ "Ciudad_Juarez": "Ciudad Juárez",
4377
4355
  "Costa_Rica": "Kostaryka",
4378
4356
  "Creston": "Creston",
4379
4357
  "Cuiaba": "Cuiabá",
@@ -5068,10 +5046,16 @@
5068
5046
  },
5069
5047
  "power2": {
5070
5048
  "compoundUnitPattern1": "{0}²",
5049
+ "compoundUnitPattern1-count-one": "{0}²",
5050
+ "compoundUnitPattern1-count-few": "{0}²",
5051
+ "compoundUnitPattern1-count-many": "{0}²",
5071
5052
  "compoundUnitPattern1-count-other": "{0}²"
5072
5053
  },
5073
5054
  "power3": {
5074
5055
  "compoundUnitPattern1": "{0}³",
5056
+ "compoundUnitPattern1-count-one": "{0}³",
5057
+ "compoundUnitPattern1-count-few": "{0}³",
5058
+ "compoundUnitPattern1-count-many": "{0}³",
5075
5059
  "compoundUnitPattern1-count-other": "{0}³"
5076
5060
  },
5077
5061
  "times": {
@@ -5079,10 +5063,16 @@
5079
5063
  },
5080
5064
  "acceleration-g-force": {
5081
5065
  "displayName": "G",
5066
+ "unitPattern-count-one": "{0} G",
5067
+ "unitPattern-count-few": "{0} G",
5068
+ "unitPattern-count-many": "{0} G",
5082
5069
  "unitPattern-count-other": "{0} G"
5083
5070
  },
5084
5071
  "acceleration-meter-per-square-second": {
5085
5072
  "displayName": "m/s²",
5073
+ "unitPattern-count-one": "{0} m/s²",
5074
+ "unitPattern-count-few": "{0} m/s²",
5075
+ "unitPattern-count-many": "{0} m/s²",
5086
5076
  "unitPattern-count-other": "{0} m/s²"
5087
5077
  },
5088
5078
  "angle-revolution": {
@@ -5094,36 +5084,60 @@
5094
5084
  },
5095
5085
  "angle-radian": {
5096
5086
  "displayName": "rad",
5087
+ "unitPattern-count-one": "{0} rad",
5088
+ "unitPattern-count-few": "{0} rad",
5089
+ "unitPattern-count-many": "{0} rad",
5097
5090
  "unitPattern-count-other": "{0} rad"
5098
5091
  },
5099
5092
  "angle-degree": {
5100
5093
  "displayName": "stopnie",
5094
+ "unitPattern-count-one": "{0}°",
5095
+ "unitPattern-count-few": "{0}°",
5096
+ "unitPattern-count-many": "{0}°",
5101
5097
  "unitPattern-count-other": "{0}°"
5102
5098
  },
5103
5099
  "angle-arc-minute": {
5104
5100
  "displayName": "minuty",
5101
+ "unitPattern-count-one": "{0}′",
5102
+ "unitPattern-count-few": "{0}′",
5103
+ "unitPattern-count-many": "{0}′",
5105
5104
  "unitPattern-count-other": "{0}′"
5106
5105
  },
5107
5106
  "angle-arc-second": {
5108
5107
  "displayName": "sekundy",
5108
+ "unitPattern-count-one": "{0}″",
5109
+ "unitPattern-count-few": "{0}″",
5110
+ "unitPattern-count-many": "{0}″",
5109
5111
  "unitPattern-count-other": "{0}″"
5110
5112
  },
5111
5113
  "area-square-kilometer": {
5112
5114
  "displayName": "km²",
5115
+ "unitPattern-count-one": "{0} km²",
5116
+ "unitPattern-count-few": "{0} km²",
5117
+ "unitPattern-count-many": "{0} km²",
5113
5118
  "unitPattern-count-other": "{0} km²",
5114
5119
  "perUnitPattern": "{0}/km²"
5115
5120
  },
5116
5121
  "area-hectare": {
5117
5122
  "displayName": "ha",
5123
+ "unitPattern-count-one": "{0} ha",
5124
+ "unitPattern-count-few": "{0} ha",
5125
+ "unitPattern-count-many": "{0} ha",
5118
5126
  "unitPattern-count-other": "{0} ha"
5119
5127
  },
5120
5128
  "area-square-meter": {
5121
5129
  "displayName": "m²",
5130
+ "unitPattern-count-one": "{0} m²",
5131
+ "unitPattern-count-few": "{0} m²",
5132
+ "unitPattern-count-many": "{0} m²",
5122
5133
  "unitPattern-count-other": "{0} m²",
5123
5134
  "perUnitPattern": "{0}/m²"
5124
5135
  },
5125
5136
  "area-square-centimeter": {
5126
5137
  "displayName": "cm²",
5138
+ "unitPattern-count-one": "{0} cm²",
5139
+ "unitPattern-count-few": "{0} cm²",
5140
+ "unitPattern-count-many": "{0} cm²",
5127
5141
  "unitPattern-count-other": "{0} cm²",
5128
5142
  "perUnitPattern": "{0}/cm²"
5129
5143
  },
@@ -5173,6 +5187,9 @@
5173
5187
  },
5174
5188
  "concentr-karat": {
5175
5189
  "displayName": "karaty",
5190
+ "unitPattern-count-one": "{0} kt",
5191
+ "unitPattern-count-few": "{0} kt",
5192
+ "unitPattern-count-many": "{0} kt",
5176
5193
  "unitPattern-count-other": "{0} kt"
5177
5194
  },
5178
5195
  "concentr-milligram-ofglucose-per-deciliter": {
@@ -5198,14 +5215,23 @@
5198
5215
  },
5199
5216
  "concentr-permillion": {
5200
5217
  "displayName": "ppm",
5218
+ "unitPattern-count-one": "{0} ppm",
5219
+ "unitPattern-count-few": "{0} ppm",
5220
+ "unitPattern-count-many": "{0} ppm",
5201
5221
  "unitPattern-count-other": "{0} ppm"
5202
5222
  },
5203
5223
  "concentr-percent": {
5204
5224
  "displayName": "%",
5225
+ "unitPattern-count-one": "{0}%",
5226
+ "unitPattern-count-few": "{0}%",
5227
+ "unitPattern-count-many": "{0}%",
5205
5228
  "unitPattern-count-other": "{0}%"
5206
5229
  },
5207
5230
  "concentr-permille": {
5208
5231
  "displayName": "‰",
5232
+ "unitPattern-count-one": "{0}‰",
5233
+ "unitPattern-count-few": "{0}‰",
5234
+ "unitPattern-count-many": "{0}‰",
5209
5235
  "unitPattern-count-other": "{0}‰"
5210
5236
  },
5211
5237
  "concentr-permyriad": {
@@ -5252,38 +5278,65 @@
5252
5278
  },
5253
5279
  "digital-petabyte": {
5254
5280
  "displayName": "PB",
5281
+ "unitPattern-count-one": "{0} PB",
5282
+ "unitPattern-count-few": "{0} PB",
5283
+ "unitPattern-count-many": "{0} PB",
5255
5284
  "unitPattern-count-other": "{0} PB"
5256
5285
  },
5257
5286
  "digital-terabyte": {
5258
5287
  "displayName": "TB",
5288
+ "unitPattern-count-one": "{0} TB",
5289
+ "unitPattern-count-few": "{0} TB",
5290
+ "unitPattern-count-many": "{0} TB",
5259
5291
  "unitPattern-count-other": "{0} TB"
5260
5292
  },
5261
5293
  "digital-terabit": {
5262
5294
  "displayName": "Tb",
5295
+ "unitPattern-count-one": "{0} Tb",
5296
+ "unitPattern-count-few": "{0} Tb",
5297
+ "unitPattern-count-many": "{0} Tb",
5263
5298
  "unitPattern-count-other": "{0} Tb"
5264
5299
  },
5265
5300
  "digital-gigabyte": {
5266
5301
  "displayName": "GB",
5302
+ "unitPattern-count-one": "{0} GB",
5303
+ "unitPattern-count-few": "{0} GB",
5304
+ "unitPattern-count-many": "{0} GB",
5267
5305
  "unitPattern-count-other": "{0} GB"
5268
5306
  },
5269
5307
  "digital-gigabit": {
5270
5308
  "displayName": "Gb",
5309
+ "unitPattern-count-one": "{0} Gb",
5310
+ "unitPattern-count-few": "{0} Gb",
5311
+ "unitPattern-count-many": "{0} Gb",
5271
5312
  "unitPattern-count-other": "{0} Gb"
5272
5313
  },
5273
5314
  "digital-megabyte": {
5274
5315
  "displayName": "MB",
5316
+ "unitPattern-count-one": "{0} MB",
5317
+ "unitPattern-count-few": "{0} MB",
5318
+ "unitPattern-count-many": "{0} MB",
5275
5319
  "unitPattern-count-other": "{0} MB"
5276
5320
  },
5277
5321
  "digital-megabit": {
5278
5322
  "displayName": "Mb",
5323
+ "unitPattern-count-one": "{0} Mb",
5324
+ "unitPattern-count-few": "{0} Mb",
5325
+ "unitPattern-count-many": "{0} Mb",
5279
5326
  "unitPattern-count-other": "{0} Mb"
5280
5327
  },
5281
5328
  "digital-kilobyte": {
5282
5329
  "displayName": "kB",
5330
+ "unitPattern-count-one": "{0} kB",
5331
+ "unitPattern-count-few": "{0} kB",
5332
+ "unitPattern-count-many": "{0} kB",
5283
5333
  "unitPattern-count-other": "{0} kB"
5284
5334
  },
5285
5335
  "digital-kilobit": {
5286
5336
  "displayName": "kb",
5337
+ "unitPattern-count-one": "{0} kb",
5338
+ "unitPattern-count-few": "{0} kb",
5339
+ "unitPattern-count-many": "{0} kb",
5287
5340
  "unitPattern-count-other": "{0} kb"
5288
5341
  },
5289
5342
  "digital-byte": {
@@ -5322,6 +5375,14 @@
5322
5375
  "unitPattern-count-other": "{0} roku",
5323
5376
  "perUnitPattern": "{0}/rok"
5324
5377
  },
5378
+ "duration-quarter": {
5379
+ "displayName": "kw.",
5380
+ "unitPattern-count-one": "{0} kw.",
5381
+ "unitPattern-count-few": "{0} kw.",
5382
+ "unitPattern-count-many": "{0} kw.",
5383
+ "unitPattern-count-other": "{0} kw.",
5384
+ "perUnitPattern": "{0}/kw."
5385
+ },
5325
5386
  "duration-month": {
5326
5387
  "displayName": "miesiące",
5327
5388
  "unitPattern-count-one": "{0} mies.",
@@ -5356,6 +5417,9 @@
5356
5417
  },
5357
5418
  "duration-minute": {
5358
5419
  "displayName": "min",
5420
+ "unitPattern-count-one": "{0} min",
5421
+ "unitPattern-count-few": "{0} min",
5422
+ "unitPattern-count-many": "{0} min",
5359
5423
  "unitPattern-count-other": "{0} min",
5360
5424
  "perUnitPattern": "{0}/min"
5361
5425
  },
@@ -5369,38 +5433,65 @@
5369
5433
  },
5370
5434
  "duration-millisecond": {
5371
5435
  "displayName": "ms",
5436
+ "unitPattern-count-one": "{0} ms",
5437
+ "unitPattern-count-few": "{0} ms",
5438
+ "unitPattern-count-many": "{0} ms",
5372
5439
  "unitPattern-count-other": "{0} ms"
5373
5440
  },
5374
5441
  "duration-microsecond": {
5375
5442
  "displayName": "μs",
5443
+ "unitPattern-count-one": "{0} μs",
5444
+ "unitPattern-count-few": "{0} μs",
5445
+ "unitPattern-count-many": "{0} μs",
5376
5446
  "unitPattern-count-other": "{0} μs"
5377
5447
  },
5378
5448
  "duration-nanosecond": {
5379
5449
  "displayName": "ns",
5450
+ "unitPattern-count-one": "{0} ns",
5451
+ "unitPattern-count-few": "{0} ns",
5452
+ "unitPattern-count-many": "{0} ns",
5380
5453
  "unitPattern-count-other": "{0} ns"
5381
5454
  },
5382
5455
  "electric-ampere": {
5383
5456
  "displayName": "A",
5457
+ "unitPattern-count-one": "{0} A",
5458
+ "unitPattern-count-few": "{0} A",
5459
+ "unitPattern-count-many": "{0} A",
5384
5460
  "unitPattern-count-other": "{0} A"
5385
5461
  },
5386
5462
  "electric-milliampere": {
5387
5463
  "displayName": "mA",
5464
+ "unitPattern-count-one": "{0} mA",
5465
+ "unitPattern-count-few": "{0} mA",
5466
+ "unitPattern-count-many": "{0} mA",
5388
5467
  "unitPattern-count-other": "{0} mA"
5389
5468
  },
5390
5469
  "electric-ohm": {
5391
5470
  "displayName": "Ω",
5471
+ "unitPattern-count-one": "{0} Ω",
5472
+ "unitPattern-count-few": "{0} Ω",
5473
+ "unitPattern-count-many": "{0} Ω",
5392
5474
  "unitPattern-count-other": "{0} Ω"
5393
5475
  },
5394
5476
  "electric-volt": {
5395
5477
  "displayName": "V",
5478
+ "unitPattern-count-one": "{0} V",
5479
+ "unitPattern-count-few": "{0} V",
5480
+ "unitPattern-count-many": "{0} V",
5396
5481
  "unitPattern-count-other": "{0} V"
5397
5482
  },
5398
5483
  "energy-kilocalorie": {
5399
5484
  "displayName": "kcal",
5485
+ "unitPattern-count-one": "{0} kcal",
5486
+ "unitPattern-count-few": "{0} kcal",
5487
+ "unitPattern-count-many": "{0} kcal",
5400
5488
  "unitPattern-count-other": "{0} kcal"
5401
5489
  },
5402
5490
  "energy-calorie": {
5403
5491
  "displayName": "cal",
5492
+ "unitPattern-count-one": "{0} cal",
5493
+ "unitPattern-count-few": "{0} cal",
5494
+ "unitPattern-count-many": "{0} cal",
5404
5495
  "unitPattern-count-other": "{0} cal"
5405
5496
  },
5406
5497
  "energy-foodcalorie": {
@@ -5412,14 +5503,23 @@
5412
5503
  },
5413
5504
  "energy-kilojoule": {
5414
5505
  "displayName": "kJ",
5506
+ "unitPattern-count-one": "{0} kJ",
5507
+ "unitPattern-count-few": "{0} kJ",
5508
+ "unitPattern-count-many": "{0} kJ",
5415
5509
  "unitPattern-count-other": "{0} kJ"
5416
5510
  },
5417
5511
  "energy-joule": {
5418
5512
  "displayName": "J",
5513
+ "unitPattern-count-one": "{0} J",
5514
+ "unitPattern-count-few": "{0} J",
5515
+ "unitPattern-count-many": "{0} J",
5419
5516
  "unitPattern-count-other": "{0} J"
5420
5517
  },
5421
5518
  "energy-kilowatt-hour": {
5422
5519
  "displayName": "kWh",
5520
+ "unitPattern-count-one": "{0} kWh",
5521
+ "unitPattern-count-few": "{0} kWh",
5522
+ "unitPattern-count-many": "{0} kWh",
5423
5523
  "unitPattern-count-other": "{0} kWh"
5424
5524
  },
5425
5525
  "energy-electronvolt": {
@@ -5459,22 +5559,37 @@
5459
5559
  },
5460
5560
  "force-kilowatt-hour-per-100-kilometer": {
5461
5561
  "displayName": "kWh/100km",
5562
+ "unitPattern-count-one": "{0} kWh/100km",
5563
+ "unitPattern-count-few": "{0} kWh/100km",
5564
+ "unitPattern-count-many": "{0} kWh/100km",
5462
5565
  "unitPattern-count-other": "{0} kWh/100km"
5463
5566
  },
5464
5567
  "frequency-gigahertz": {
5465
5568
  "displayName": "GHz",
5569
+ "unitPattern-count-one": "{0} GHz",
5570
+ "unitPattern-count-few": "{0} GHz",
5571
+ "unitPattern-count-many": "{0} GHz",
5466
5572
  "unitPattern-count-other": "{0} GHz"
5467
5573
  },
5468
5574
  "frequency-megahertz": {
5469
5575
  "displayName": "MHz",
5576
+ "unitPattern-count-one": "{0} MHz",
5577
+ "unitPattern-count-few": "{0} MHz",
5578
+ "unitPattern-count-many": "{0} MHz",
5470
5579
  "unitPattern-count-other": "{0} MHz"
5471
5580
  },
5472
5581
  "frequency-kilohertz": {
5473
5582
  "displayName": "kHz",
5583
+ "unitPattern-count-one": "{0} kHz",
5584
+ "unitPattern-count-few": "{0} kHz",
5585
+ "unitPattern-count-many": "{0} kHz",
5474
5586
  "unitPattern-count-other": "{0} kHz"
5475
5587
  },
5476
5588
  "frequency-hertz": {
5477
5589
  "displayName": "Hz",
5590
+ "unitPattern-count-one": "{0} Hz",
5591
+ "unitPattern-count-few": "{0} Hz",
5592
+ "unitPattern-count-many": "{0} Hz",
5478
5593
  "unitPattern-count-other": "{0} Hz"
5479
5594
  },
5480
5595
  "graphics-em": {
@@ -5486,57 +5601,117 @@
5486
5601
  },
5487
5602
  "graphics-pixel": {
5488
5603
  "displayName": "px",
5604
+ "unitPattern-count-one": "{0} px",
5605
+ "unitPattern-count-few": "{0} px",
5606
+ "unitPattern-count-many": "{0} px",
5489
5607
  "unitPattern-count-other": "{0} px"
5490
5608
  },
5491
5609
  "graphics-megapixel": {
5492
5610
  "displayName": "MP",
5611
+ "unitPattern-count-one": "{0} MP",
5612
+ "unitPattern-count-few": "{0} MP",
5613
+ "unitPattern-count-many": "{0} MP",
5493
5614
  "unitPattern-count-other": "{0} MP"
5494
5615
  },
5495
5616
  "graphics-pixel-per-centimeter": {
5496
5617
  "displayName": "ppcm",
5618
+ "unitPattern-count-one": "{0} ppcm",
5619
+ "unitPattern-count-few": "{0} ppcm",
5620
+ "unitPattern-count-many": "{0} ppcm",
5497
5621
  "unitPattern-count-other": "{0} ppcm"
5498
5622
  },
5499
5623
  "graphics-pixel-per-inch": {
5500
5624
  "displayName": "ppi",
5625
+ "unitPattern-count-one": "{0} ppi",
5626
+ "unitPattern-count-few": "{0} ppi",
5627
+ "unitPattern-count-many": "{0} ppi",
5628
+ "unitPattern-count-other": "{0} ppi"
5629
+ },
5630
+ "graphics-dot-per-centimeter": {
5631
+ "displayName": "ppcm",
5632
+ "unitPattern-count-one": "{0} ppcm",
5633
+ "unitPattern-count-few": "{0} ppcm",
5634
+ "unitPattern-count-many": "{0} ppcm",
5635
+ "unitPattern-count-other": "{0} ppcm"
5636
+ },
5637
+ "graphics-dot-per-inch": {
5638
+ "displayName": "ppi",
5639
+ "unitPattern-count-one": "{0} ppi",
5640
+ "unitPattern-count-few": "{0} ppi",
5641
+ "unitPattern-count-many": "{0} ppi",
5501
5642
  "unitPattern-count-other": "{0} ppi"
5502
5643
  },
5644
+ "graphics-dot": {
5645
+ "displayName": "px",
5646
+ "unitPattern-count-one": "{0} px",
5647
+ "unitPattern-count-few": "{0} px",
5648
+ "unitPattern-count-many": "{0} px",
5649
+ "unitPattern-count-other": "{0} px"
5650
+ },
5503
5651
  "length-earth-radius": {
5504
5652
  "displayName": "R⊕",
5653
+ "unitPattern-count-one": "{0} R⊕",
5654
+ "unitPattern-count-few": "{0} R⊕",
5655
+ "unitPattern-count-many": "{0} R⊕",
5505
5656
  "unitPattern-count-other": "{0} R⊕"
5506
5657
  },
5507
5658
  "length-kilometer": {
5508
5659
  "displayName": "km",
5660
+ "unitPattern-count-one": "{0} km",
5661
+ "unitPattern-count-few": "{0} km",
5662
+ "unitPattern-count-many": "{0} km",
5509
5663
  "unitPattern-count-other": "{0} km",
5510
5664
  "perUnitPattern": "{0}/km"
5511
5665
  },
5512
5666
  "length-meter": {
5513
5667
  "displayName": "m",
5668
+ "unitPattern-count-one": "{0} m",
5669
+ "unitPattern-count-few": "{0} m",
5670
+ "unitPattern-count-many": "{0} m",
5514
5671
  "unitPattern-count-other": "{0} m",
5515
5672
  "perUnitPattern": "{0}/m"
5516
5673
  },
5517
5674
  "length-decimeter": {
5518
5675
  "displayName": "dm",
5676
+ "unitPattern-count-one": "{0} dm",
5677
+ "unitPattern-count-few": "{0} dm",
5678
+ "unitPattern-count-many": "{0} dm",
5519
5679
  "unitPattern-count-other": "{0} dm"
5520
5680
  },
5521
5681
  "length-centimeter": {
5522
5682
  "displayName": "cm",
5683
+ "unitPattern-count-one": "{0} cm",
5684
+ "unitPattern-count-few": "{0} cm",
5685
+ "unitPattern-count-many": "{0} cm",
5523
5686
  "unitPattern-count-other": "{0} cm",
5524
5687
  "perUnitPattern": "{0}/cm"
5525
5688
  },
5526
5689
  "length-millimeter": {
5527
5690
  "displayName": "mm",
5691
+ "unitPattern-count-one": "{0} mm",
5692
+ "unitPattern-count-few": "{0} mm",
5693
+ "unitPattern-count-many": "{0} mm",
5528
5694
  "unitPattern-count-other": "{0} mm"
5529
5695
  },
5530
5696
  "length-micrometer": {
5531
5697
  "displayName": "μm",
5698
+ "unitPattern-count-one": "{0} μm",
5699
+ "unitPattern-count-few": "{0} μm",
5700
+ "unitPattern-count-many": "{0} μm",
5532
5701
  "unitPattern-count-other": "{0} μm"
5533
5702
  },
5534
5703
  "length-nanometer": {
5535
5704
  "displayName": "nm",
5705
+ "unitPattern-count-one": "{0} nm",
5706
+ "unitPattern-count-few": "{0} nm",
5707
+ "unitPattern-count-many": "{0} nm",
5536
5708
  "unitPattern-count-other": "{0} nm"
5537
5709
  },
5538
5710
  "length-picometer": {
5539
5711
  "displayName": "pm",
5712
+ "unitPattern-count-one": "{0} pm",
5713
+ "unitPattern-count-few": "{0} pm",
5714
+ "unitPattern-count-many": "{0} pm",
5540
5715
  "unitPattern-count-other": "{0} pm"
5541
5716
  },
5542
5717
  "length-mile": {
@@ -5571,10 +5746,16 @@
5571
5746
  },
5572
5747
  "length-parsec": {
5573
5748
  "displayName": "pc",
5749
+ "unitPattern-count-one": "{0} pc",
5750
+ "unitPattern-count-few": "{0} pc",
5751
+ "unitPattern-count-many": "{0} pc",
5574
5752
  "unitPattern-count-other": "{0} pc"
5575
5753
  },
5576
5754
  "length-light-year": {
5577
5755
  "displayName": "ly",
5756
+ "unitPattern-count-one": "{0} ly",
5757
+ "unitPattern-count-few": "{0} ly",
5758
+ "unitPattern-count-many": "{0} ly",
5578
5759
  "unitPattern-count-other": "{0} ly"
5579
5760
  },
5580
5761
  "length-astronomical-unit": {
@@ -5586,6 +5767,9 @@
5586
5767
  },
5587
5768
  "length-furlong": {
5588
5769
  "displayName": "fur",
5770
+ "unitPattern-count-one": "{0} fur",
5771
+ "unitPattern-count-few": "{0} fur",
5772
+ "unitPattern-count-many": "{0} fur",
5589
5773
  "unitPattern-count-other": "{0} fur"
5590
5774
  },
5591
5775
  "length-fathom": {
@@ -5604,6 +5788,9 @@
5604
5788
  },
5605
5789
  "length-mile-scandinavian": {
5606
5790
  "displayName": "smi",
5791
+ "unitPattern-count-one": "{0} smi",
5792
+ "unitPattern-count-few": "{0} smi",
5793
+ "unitPattern-count-many": "{0} smi",
5607
5794
  "unitPattern-count-other": "{0} smi"
5608
5795
  },
5609
5796
  "length-point": {
@@ -5622,6 +5809,9 @@
5622
5809
  },
5623
5810
  "light-lux": {
5624
5811
  "displayName": "lx",
5812
+ "unitPattern-count-one": "{0} lx",
5813
+ "unitPattern-count-few": "{0} lx",
5814
+ "unitPattern-count-many": "{0} lx",
5625
5815
  "unitPattern-count-other": "{0} lx"
5626
5816
  },
5627
5817
  "light-candela": {
@@ -5645,26 +5835,41 @@
5645
5835
  "unitPattern-count-many": "{0} L☉",
5646
5836
  "unitPattern-count-other": "{0} L☉"
5647
5837
  },
5648
- "mass-metric-ton": {
5838
+ "mass-tonne": {
5649
5839
  "displayName": "t",
5840
+ "unitPattern-count-one": "{0} t",
5841
+ "unitPattern-count-few": "{0} t",
5842
+ "unitPattern-count-many": "{0} t",
5650
5843
  "unitPattern-count-other": "{0} t"
5651
5844
  },
5652
5845
  "mass-kilogram": {
5653
5846
  "displayName": "kg",
5847
+ "unitPattern-count-one": "{0} kg",
5848
+ "unitPattern-count-few": "{0} kg",
5849
+ "unitPattern-count-many": "{0} kg",
5654
5850
  "unitPattern-count-other": "{0} kg",
5655
5851
  "perUnitPattern": "{0}/kg"
5656
5852
  },
5657
5853
  "mass-gram": {
5658
5854
  "displayName": "g",
5855
+ "unitPattern-count-one": "{0} g",
5856
+ "unitPattern-count-few": "{0} g",
5857
+ "unitPattern-count-many": "{0} g",
5659
5858
  "unitPattern-count-other": "{0} g",
5660
5859
  "perUnitPattern": "{0}/g"
5661
5860
  },
5662
5861
  "mass-milligram": {
5663
5862
  "displayName": "mg",
5863
+ "unitPattern-count-one": "{0} mg",
5864
+ "unitPattern-count-few": "{0} mg",
5865
+ "unitPattern-count-many": "{0} mg",
5664
5866
  "unitPattern-count-other": "{0} mg"
5665
5867
  },
5666
5868
  "mass-microgram": {
5667
5869
  "displayName": "μg",
5870
+ "unitPattern-count-one": "{0} μg",
5871
+ "unitPattern-count-few": "{0} μg",
5872
+ "unitPattern-count-many": "{0} μg",
5668
5873
  "unitPattern-count-other": "{0} μg"
5669
5874
  },
5670
5875
  "mass-ton": {
@@ -5691,11 +5896,17 @@
5691
5896
  },
5692
5897
  "mass-ounce": {
5693
5898
  "displayName": "oz",
5899
+ "unitPattern-count-one": "{0} oz",
5900
+ "unitPattern-count-few": "{0} oz",
5901
+ "unitPattern-count-many": "{0} oz",
5694
5902
  "unitPattern-count-other": "{0} oz",
5695
5903
  "perUnitPattern": "{0}/oz"
5696
5904
  },
5697
5905
  "mass-ounce-troy": {
5698
5906
  "displayName": "oz t",
5907
+ "unitPattern-count-one": "{0} oz t",
5908
+ "unitPattern-count-few": "{0} oz t",
5909
+ "unitPattern-count-many": "{0} oz t",
5699
5910
  "unitPattern-count-other": "{0} oz t"
5700
5911
  },
5701
5912
  "mass-carat": {
@@ -5735,22 +5946,37 @@
5735
5946
  },
5736
5947
  "power-gigawatt": {
5737
5948
  "displayName": "GW",
5949
+ "unitPattern-count-one": "{0} GW",
5950
+ "unitPattern-count-few": "{0} GW",
5951
+ "unitPattern-count-many": "{0} GW",
5738
5952
  "unitPattern-count-other": "{0} GW"
5739
5953
  },
5740
5954
  "power-megawatt": {
5741
5955
  "displayName": "MW",
5956
+ "unitPattern-count-one": "{0} MW",
5957
+ "unitPattern-count-few": "{0} MW",
5958
+ "unitPattern-count-many": "{0} MW",
5742
5959
  "unitPattern-count-other": "{0} MW"
5743
5960
  },
5744
5961
  "power-kilowatt": {
5745
5962
  "displayName": "kW",
5963
+ "unitPattern-count-one": "{0} kW",
5964
+ "unitPattern-count-few": "{0} kW",
5965
+ "unitPattern-count-many": "{0} kW",
5746
5966
  "unitPattern-count-other": "{0} kW"
5747
5967
  },
5748
5968
  "power-watt": {
5749
5969
  "displayName": "waty",
5970
+ "unitPattern-count-one": "{0} W",
5971
+ "unitPattern-count-few": "{0} W",
5972
+ "unitPattern-count-many": "{0} W",
5750
5973
  "unitPattern-count-other": "{0} W"
5751
5974
  },
5752
5975
  "power-milliwatt": {
5753
5976
  "displayName": "mW",
5977
+ "unitPattern-count-one": "{0} mW",
5978
+ "unitPattern-count-few": "{0} mW",
5979
+ "unitPattern-count-many": "{0} mW",
5754
5980
  "unitPattern-count-other": "{0} mW"
5755
5981
  },
5756
5982
  "power-horsepower": {
@@ -5769,30 +5995,51 @@
5769
5995
  },
5770
5996
  "pressure-pound-force-per-square-inch": {
5771
5997
  "displayName": "psi",
5998
+ "unitPattern-count-one": "{0} psi",
5999
+ "unitPattern-count-few": "{0} psi",
6000
+ "unitPattern-count-many": "{0} psi",
5772
6001
  "unitPattern-count-other": "{0} psi"
5773
6002
  },
5774
6003
  "pressure-inch-ofhg": {
5775
6004
  "displayName": "inHg",
6005
+ "unitPattern-count-one": "{0} inHg",
6006
+ "unitPattern-count-few": "{0} inHg",
6007
+ "unitPattern-count-many": "{0} inHg",
5776
6008
  "unitPattern-count-other": "{0} inHg"
5777
6009
  },
5778
6010
  "pressure-bar": {
5779
6011
  "displayName": "bar",
6012
+ "unitPattern-count-one": "{0} bar",
6013
+ "unitPattern-count-few": "{0} bar",
6014
+ "unitPattern-count-many": "{0} bar",
5780
6015
  "unitPattern-count-other": "{0} bar"
5781
6016
  },
5782
6017
  "pressure-millibar": {
5783
6018
  "displayName": "mbar",
6019
+ "unitPattern-count-one": "{0} mbar",
6020
+ "unitPattern-count-few": "{0} mbar",
6021
+ "unitPattern-count-many": "{0} mbar",
5784
6022
  "unitPattern-count-other": "{0} mbar"
5785
6023
  },
5786
6024
  "pressure-atmosphere": {
5787
6025
  "displayName": "atm",
6026
+ "unitPattern-count-one": "{0} atm",
6027
+ "unitPattern-count-few": "{0} atm",
6028
+ "unitPattern-count-many": "{0} atm",
5788
6029
  "unitPattern-count-other": "{0} atm"
5789
6030
  },
5790
6031
  "pressure-pascal": {
5791
6032
  "displayName": "Pa",
6033
+ "unitPattern-count-one": "{0} Pa",
6034
+ "unitPattern-count-few": "{0} Pa",
6035
+ "unitPattern-count-many": "{0} Pa",
5792
6036
  "unitPattern-count-other": "{0} Pa"
5793
6037
  },
5794
6038
  "pressure-hectopascal": {
5795
6039
  "displayName": "hPa",
6040
+ "unitPattern-count-one": "{0} hPa",
6041
+ "unitPattern-count-few": "{0} hPa",
6042
+ "unitPattern-count-many": "{0} hPa",
5796
6043
  "unitPattern-count-other": "{0} hPa"
5797
6044
  },
5798
6045
  "pressure-kilopascal": {
@@ -5818,6 +6065,9 @@
5818
6065
  },
5819
6066
  "speed-meter-per-second": {
5820
6067
  "displayName": "m/s",
6068
+ "unitPattern-count-one": "{0} m/s",
6069
+ "unitPattern-count-few": "{0} m/s",
6070
+ "unitPattern-count-many": "{0} m/s",
5821
6071
  "unitPattern-count-other": "{0} m/s"
5822
6072
  },
5823
6073
  "speed-mile-per-hour": {
@@ -5836,6 +6086,9 @@
5836
6086
  },
5837
6087
  "temperature-generic": {
5838
6088
  "displayName": "°",
6089
+ "unitPattern-count-one": "{0}°",
6090
+ "unitPattern-count-few": "{0}°",
6091
+ "unitPattern-count-many": "{0}°",
5839
6092
  "unitPattern-count-other": "{0}°"
5840
6093
  },
5841
6094
  "temperature-celsius": {
@@ -5847,10 +6100,16 @@
5847
6100
  },
5848
6101
  "temperature-fahrenheit": {
5849
6102
  "displayName": "°F",
6103
+ "unitPattern-count-one": "{0}°F",
6104
+ "unitPattern-count-few": "{0}°F",
6105
+ "unitPattern-count-many": "{0}°F",
5850
6106
  "unitPattern-count-other": "{0}°F"
5851
6107
  },
5852
6108
  "temperature-kelvin": {
5853
6109
  "displayName": "K",
6110
+ "unitPattern-count-one": "{0} K",
6111
+ "unitPattern-count-few": "{0} K",
6112
+ "unitPattern-count-many": "{0} K",
5854
6113
  "unitPattern-count-other": "{0} K"
5855
6114
  },
5856
6115
  "torque-pound-force-foot": {
@@ -5869,15 +6128,24 @@
5869
6128
  },
5870
6129
  "volume-cubic-kilometer": {
5871
6130
  "displayName": "km³",
6131
+ "unitPattern-count-one": "{0} km³",
6132
+ "unitPattern-count-few": "{0} km³",
6133
+ "unitPattern-count-many": "{0} km³",
5872
6134
  "unitPattern-count-other": "{0} km³"
5873
6135
  },
5874
6136
  "volume-cubic-meter": {
5875
6137
  "displayName": "m³",
6138
+ "unitPattern-count-one": "{0} m³",
6139
+ "unitPattern-count-few": "{0} m³",
6140
+ "unitPattern-count-many": "{0} m³",
5876
6141
  "unitPattern-count-other": "{0} m³",
5877
6142
  "perUnitPattern": "{0}/m³"
5878
6143
  },
5879
6144
  "volume-cubic-centimeter": {
5880
6145
  "displayName": "cm³",
6146
+ "unitPattern-count-one": "{0} cm³",
6147
+ "unitPattern-count-few": "{0} cm³",
6148
+ "unitPattern-count-many": "{0} cm³",
5881
6149
  "unitPattern-count-other": "{0} cm³",
5882
6150
  "perUnitPattern": "{0}/cm³"
5883
6151
  },
@@ -5925,6 +6193,9 @@
5925
6193
  },
5926
6194
  "volume-liter": {
5927
6195
  "displayName": "litry",
6196
+ "unitPattern-count-one": "{0} l",
6197
+ "unitPattern-count-few": "{0} l",
6198
+ "unitPattern-count-many": "{0} l",
5928
6199
  "unitPattern-count-other": "{0} l",
5929
6200
  "perUnitPattern": "{0}/l"
5930
6201
  },
@@ -5972,6 +6243,9 @@
5972
6243
  },
5973
6244
  "volume-bushel": {
5974
6245
  "displayName": "bu",
6246
+ "unitPattern-count-one": "{0} bu",
6247
+ "unitPattern-count-few": "{0} bu",
6248
+ "unitPattern-count-many": "{0} bu",
5975
6249
  "unitPattern-count-other": "{0} bu"
5976
6250
  },
5977
6251
  "volume-gallon": {
@@ -6230,41 +6504,56 @@
6230
6504
  },
6231
6505
  "eras-gregorian": {
6232
6506
  "0": {
6507
+ "_code": "gregory-inverse",
6508
+ "_aliases": "bc bce",
6233
6509
  "_end": "0-12-31"
6234
6510
  },
6235
6511
  "1": {
6512
+ "_code": "gregory",
6513
+ "_aliases": "ad ce",
6236
6514
  "_start": "1-01-01"
6237
6515
  }
6238
6516
  },
6239
6517
  "eras-islamic": {
6240
6518
  "0": {
6519
+ "_code": "islamic",
6520
+ "_aliases": "ah",
6241
6521
  "_start": "622-7-15"
6242
6522
  }
6243
6523
  },
6244
6524
  "eras-persian": {
6245
6525
  "0": {
6526
+ "_code": "persian",
6527
+ "_aliases": "ap",
6246
6528
  "_start": "622-01-01"
6247
6529
  }
6248
6530
  },
6249
6531
  "eras-buddhist": {
6250
6532
  "0": {
6533
+ "_code": "buddhist",
6534
+ "_aliases": "be",
6251
6535
  "_start": "-542-01-01"
6252
6536
  }
6253
6537
  },
6254
6538
  "eras-japanese": {
6255
6539
  "232": {
6540
+ "_code": "meiji",
6256
6541
  "_start": "1868-9-8"
6257
6542
  },
6258
6543
  "233": {
6544
+ "_code": "taisho",
6259
6545
  "_start": "1912-7-30"
6260
6546
  },
6261
6547
  "234": {
6548
+ "_code": "showa",
6262
6549
  "_start": "1926-12-25"
6263
6550
  },
6264
6551
  "235": {
6552
+ "_code": "heisei",
6265
6553
  "_start": "1989-1-8"
6266
6554
  },
6267
6555
  "236": {
6556
+ "_code": "reiwa",
6268
6557
  "_start": "2019-5-1"
6269
6558
  }
6270
6559
  },