@openui5/sap.ui.core 1.132.1 → 1.134.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 (393) hide show
  1. package/.dtsgenrc +5 -0
  2. package/.eslintrc.json +4 -0
  3. package/.reuse/dep5 +2 -9
  4. package/LICENSES/LicenseRef-Unicode-3.0.txt +39 -0
  5. package/THIRDPARTY.txt +45 -78
  6. package/package.json +1 -1
  7. package/src/jquery.sap.global.js +1 -1
  8. package/src/jquery.sap.properties.js +1 -1
  9. package/src/jquery.sap.resources.js +1 -1
  10. package/src/jquery.sap.script.js +1 -1
  11. package/src/jquery.sap.storage.js +3 -3
  12. package/src/sap/base/Event.js +1 -1
  13. package/src/sap/base/Eventing.js +1 -1
  14. package/src/sap/base/config.js +1 -1
  15. package/src/sap/base/i18n/LanguageTag.js +1 -1
  16. package/src/sap/base/i18n/date/TimezoneUtils.js +159 -12
  17. package/src/sap/base/util/JSTokenizer.js +25 -18
  18. package/src/sap/base/util/LoaderExtensions.js +2 -8
  19. package/src/sap/base/util/mixedFetch.js +0 -1
  20. package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
  21. package/src/sap/base/util/restricted/_castArray.js +1 -1
  22. package/src/sap/base/util/restricted/_compact.js +1 -1
  23. package/src/sap/base/util/restricted/_curry.js +1 -1
  24. package/src/sap/base/util/restricted/_debounce.js +1 -1
  25. package/src/sap/base/util/restricted/_difference.js +1 -1
  26. package/src/sap/base/util/restricted/_differenceBy.js +1 -1
  27. package/src/sap/base/util/restricted/_differenceWith.js +1 -1
  28. package/src/sap/base/util/restricted/_flatMap.js +1 -1
  29. package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
  30. package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
  31. package/src/sap/base/util/restricted/_flatten.js +1 -1
  32. package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
  33. package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
  34. package/src/sap/base/util/restricted/_intersection.js +1 -1
  35. package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
  36. package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
  37. package/src/sap/base/util/restricted/_isEqual.js +1 -1
  38. package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
  39. package/src/sap/base/util/restricted/_isNil.js +1 -1
  40. package/src/sap/base/util/restricted/_max.js +1 -1
  41. package/src/sap/base/util/restricted/_merge.js +1 -1
  42. package/src/sap/base/util/restricted/_mergeWith.js +1 -1
  43. package/src/sap/base/util/restricted/_min.js +1 -1
  44. package/src/sap/base/util/restricted/_omit.js +1 -1
  45. package/src/sap/base/util/restricted/_pick.js +1 -1
  46. package/src/sap/base/util/restricted/_pickBy.js +1 -1
  47. package/src/sap/base/util/restricted/_throttle.js +1 -1
  48. package/src/sap/base/util/restricted/_toArray.js +1 -1
  49. package/src/sap/base/util/restricted/_union.js +1 -1
  50. package/src/sap/base/util/restricted/_unionBy.js +1 -1
  51. package/src/sap/base/util/restricted/_unionWith.js +1 -1
  52. package/src/sap/base/util/restricted/_uniq.js +1 -1
  53. package/src/sap/base/util/restricted/_uniqBy.js +1 -1
  54. package/src/sap/base/util/restricted/_uniqWith.js +1 -1
  55. package/src/sap/base/util/restricted/_without.js +1 -1
  56. package/src/sap/base/util/restricted/_xor.js +1 -1
  57. package/src/sap/base/util/restricted/_xorBy.js +1 -1
  58. package/src/sap/base/util/restricted/_xorWith.js +1 -1
  59. package/src/sap/base/util/restricted/_zipObject.js +1 -1
  60. package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
  61. package/src/sap/base/util/syncFetch.js +0 -1
  62. package/src/sap/ui/Device.js +3 -3
  63. package/src/sap/ui/Global.js +3 -3
  64. package/src/sap/ui/base/Event.js +1 -1
  65. package/src/sap/ui/base/EventProvider.js +1 -1
  66. package/src/sap/ui/base/Interface.js +1 -1
  67. package/src/sap/ui/base/ManagedObject.js +14 -11
  68. package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
  69. package/src/sap/ui/base/Metadata.js +1 -1
  70. package/src/sap/ui/base/Object.js +1 -1
  71. package/src/sap/ui/base/ObjectPool.js +1 -1
  72. package/src/sap/ui/base/SyncPromise.js +136 -25
  73. package/src/sap/ui/core/.library +5 -10
  74. package/src/sap/ui/core/AppCacheBuster.js +4 -9
  75. package/src/sap/ui/core/BusyIndicator.js +1 -1
  76. package/src/sap/ui/core/Component.js +1 -1
  77. package/src/sap/ui/core/ComponentContainer.js +1 -1
  78. package/src/sap/ui/core/ComponentMetadata.js +1 -1
  79. package/src/sap/ui/core/ComponentSupport.js +1 -1
  80. package/src/sap/ui/core/Configuration.js +1 -1
  81. package/src/sap/ui/core/Control.js +1 -1
  82. package/src/sap/ui/core/Core.js +2 -2
  83. package/src/sap/ui/core/CustomData.js +1 -1
  84. package/src/sap/ui/core/DeclarativeSupport.js +1 -1
  85. package/src/sap/ui/core/Element.js +3 -1
  86. package/src/sap/ui/core/ElementMetadata.js +1 -1
  87. package/src/sap/ui/core/EnabledPropagator.js +1 -1
  88. package/src/sap/ui/core/EventBus.js +1 -1
  89. package/src/sap/ui/core/Fragment.js +1 -1
  90. package/src/sap/ui/core/HTML.js +1 -1
  91. package/src/sap/ui/core/History.js +1 -1
  92. package/src/sap/ui/core/Icon.js +1 -1
  93. package/src/sap/ui/core/IconPool.js +20 -3
  94. package/src/sap/ui/core/IndicationColorSupport.js +1 -1
  95. package/src/sap/ui/core/IntervalTrigger.js +1 -1
  96. package/src/sap/ui/core/InvisibleMessage.js +1 -1
  97. package/src/sap/ui/core/InvisibleRenderer.js +1 -1
  98. package/src/sap/ui/core/InvisibleText.js +1 -1
  99. package/src/sap/ui/core/Item.js +1 -1
  100. package/src/sap/ui/core/LabelEnablement.js +1 -1
  101. package/src/sap/ui/core/LayoutData.js +1 -1
  102. package/src/sap/ui/core/ListItem.js +1 -1
  103. package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
  104. package/src/sap/ui/core/Locale.js +1 -1
  105. package/src/sap/ui/core/LocaleData.js +101 -79
  106. package/src/sap/ui/core/Manifest.js +1 -1
  107. package/src/sap/ui/core/Message.js +1 -1
  108. package/src/sap/ui/core/RenderManager.js +1 -1
  109. package/src/sap/ui/core/Renderer.js +1 -1
  110. package/src/sap/ui/core/ResizeHandler.js +1 -1
  111. package/src/sap/ui/core/ScrollBar.js +1 -1
  112. package/src/sap/ui/core/SeparatorItem.js +1 -1
  113. package/src/sap/ui/core/Title.js +1 -1
  114. package/src/sap/ui/core/TooltipBase.js +1 -1
  115. package/src/sap/ui/core/UIArea.js +1 -1
  116. package/src/sap/ui/core/UIComponent.js +1 -1
  117. package/src/sap/ui/core/UIComponentMetadata.js +1 -1
  118. package/src/sap/ui/core/ValueStateSupport.js +1 -1
  119. package/src/sap/ui/core/VariantLayoutData.js +1 -1
  120. package/src/sap/ui/core/XMLComposite.js +1 -1
  121. package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
  122. package/src/sap/ui/core/XMLTemplateProcessor.js +22 -3
  123. package/src/sap/ui/core/_IconRegistry.js +2 -0
  124. package/src/sap/ui/core/boot/_bootConfig.js +134 -105
  125. package/src/sap/ui/core/cldr/Unicode-Data-Files-LICENSE.txt +36 -24
  126. package/src/sap/ui/core/cldr/ar.json +106 -98
  127. package/src/sap/ui/core/cldr/ar_EG.json +106 -98
  128. package/src/sap/ui/core/cldr/ar_SA.json +106 -98
  129. package/src/sap/ui/core/cldr/bg.json +44 -38
  130. package/src/sap/ui/core/cldr/ca.json +65 -65
  131. package/src/sap/ui/core/cldr/cnr.json +182 -170
  132. package/src/sap/ui/core/cldr/cs.json +39 -31
  133. package/src/sap/ui/core/cldr/cy.json +319 -233
  134. package/src/sap/ui/core/cldr/da.json +36 -32
  135. package/src/sap/ui/core/cldr/de.json +134 -135
  136. package/src/sap/ui/core/cldr/de_AT.json +134 -135
  137. package/src/sap/ui/core/cldr/de_CH.json +135 -136
  138. package/src/sap/ui/core/cldr/el.json +44 -37
  139. package/src/sap/ui/core/cldr/el_CY.json +44 -37
  140. package/src/sap/ui/core/cldr/en.json +91 -53
  141. package/src/sap/ui/core/cldr/en_AU.json +108 -70
  142. package/src/sap/ui/core/cldr/en_GB.json +123 -85
  143. package/src/sap/ui/core/cldr/en_HK.json +102 -64
  144. package/src/sap/ui/core/cldr/en_IE.json +102 -64
  145. package/src/sap/ui/core/cldr/en_IN.json +207 -67
  146. package/src/sap/ui/core/cldr/en_NZ.json +102 -64
  147. package/src/sap/ui/core/cldr/en_PG.json +102 -64
  148. package/src/sap/ui/core/cldr/en_SG.json +102 -64
  149. package/src/sap/ui/core/cldr/en_ZA.json +106 -66
  150. package/src/sap/ui/core/cldr/es.json +43 -39
  151. package/src/sap/ui/core/cldr/es_AR.json +92 -64
  152. package/src/sap/ui/core/cldr/es_BO.json +92 -64
  153. package/src/sap/ui/core/cldr/es_CL.json +92 -64
  154. package/src/sap/ui/core/cldr/es_CO.json +92 -64
  155. package/src/sap/ui/core/cldr/es_MX.json +131 -83
  156. package/src/sap/ui/core/cldr/es_PE.json +69 -41
  157. package/src/sap/ui/core/cldr/es_UY.json +93 -65
  158. package/src/sap/ui/core/cldr/es_VE.json +92 -64
  159. package/src/sap/ui/core/cldr/et.json +60 -59
  160. package/src/sap/ui/core/cldr/fa.json +122 -116
  161. package/src/sap/ui/core/cldr/fi.json +186 -82
  162. package/src/sap/ui/core/cldr/fr.json +57 -56
  163. package/src/sap/ui/core/cldr/fr_BE.json +56 -55
  164. package/src/sap/ui/core/cldr/fr_CA.json +139 -89
  165. package/src/sap/ui/core/cldr/fr_CH.json +47 -46
  166. package/src/sap/ui/core/cldr/fr_LU.json +57 -56
  167. package/src/sap/ui/core/cldr/he.json +458 -381
  168. package/src/sap/ui/core/cldr/hi.json +204 -170
  169. package/src/sap/ui/core/cldr/hr.json +64 -57
  170. package/src/sap/ui/core/cldr/hu.json +145 -148
  171. package/src/sap/ui/core/cldr/id.json +72 -62
  172. package/src/sap/ui/core/cldr/it.json +76 -75
  173. package/src/sap/ui/core/cldr/it_CH.json +76 -75
  174. package/src/sap/ui/core/cldr/ja.json +62 -44
  175. package/src/sap/ui/core/cldr/kk.json +171 -146
  176. package/src/sap/ui/core/cldr/ko.json +91 -73
  177. package/src/sap/ui/core/cldr/lt.json +134 -135
  178. package/src/sap/ui/core/cldr/lv.json +119 -111
  179. package/src/sap/ui/core/cldr/mk.json +316 -314
  180. package/src/sap/ui/core/cldr/ms.json +91 -75
  181. package/src/sap/ui/core/cldr/nb.json +37 -37
  182. package/src/sap/ui/core/cldr/nl.json +45 -48
  183. package/src/sap/ui/core/cldr/nl_BE.json +45 -48
  184. package/src/sap/ui/core/cldr/pl.json +47 -42
  185. package/src/sap/ui/core/cldr/pt.json +129 -124
  186. package/src/sap/ui/core/cldr/pt_PT.json +43 -38
  187. package/src/sap/ui/core/cldr/ro.json +42 -37
  188. package/src/sap/ui/core/cldr/ru.json +59 -51
  189. package/src/sap/ui/core/cldr/ru_UA.json +59 -51
  190. package/src/sap/ui/core/cldr/sk.json +55 -46
  191. package/src/sap/ui/core/cldr/sl.json +45 -31
  192. package/src/sap/ui/core/cldr/sr.json +189 -177
  193. package/src/sap/ui/core/cldr/sr_Latn.json +189 -177
  194. package/src/sap/ui/core/cldr/sv.json +42 -41
  195. package/src/sap/ui/core/cldr/th.json +104 -90
  196. package/src/sap/ui/core/cldr/tr.json +40 -39
  197. package/src/sap/ui/core/cldr/uk.json +143 -123
  198. package/src/sap/ui/core/cldr/vi.json +136 -133
  199. package/src/sap/ui/core/cldr/zh_CN.json +47 -41
  200. package/src/sap/ui/core/cldr/zh_HK.json +47 -41
  201. package/src/sap/ui/core/cldr/zh_SG.json +47 -41
  202. package/src/sap/ui/core/cldr/zh_TW.json +163 -160
  203. package/src/sap/ui/core/date/Buddhist.js +2 -2
  204. package/src/sap/ui/core/date/CalendarUtils.js +4 -4
  205. package/src/sap/ui/core/date/Gregorian.js +2 -2
  206. package/src/sap/ui/core/date/Islamic.js +2 -2
  207. package/src/sap/ui/core/date/Japanese.js +2 -2
  208. package/src/sap/ui/core/date/Persian.js +2 -2
  209. package/src/sap/ui/core/date/UI5Date.js +1 -1
  210. package/src/sap/ui/core/date/UniversalDate.js +12 -12
  211. package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
  212. package/src/sap/ui/core/delegate/ScrollEnablement.js +7 -5
  213. package/src/sap/ui/core/dnd/DragAndDrop.js +14 -7
  214. package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
  215. package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
  216. package/src/sap/ui/core/dnd/DragInfo.js +1 -1
  217. package/src/sap/ui/core/dnd/DropInfo.js +1 -1
  218. package/src/sap/ui/core/fieldhelp/FieldHelp.js +355 -53
  219. package/src/sap/ui/core/fieldhelp/FieldHelpUtil.js +10 -8
  220. package/src/sap/ui/core/format/DateFormat.js +18 -16
  221. package/src/sap/ui/core/format/FormatUtils.js +1 -1
  222. package/src/sap/ui/core/format/NumberFormat.js +346 -364
  223. package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
  224. package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
  225. package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
  226. package/src/sap/ui/core/library.js +36 -5
  227. package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
  228. package/src/sap/ui/core/message/Message.js +1 -1
  229. package/src/sap/ui/core/message/MessageManager.js +1 -1
  230. package/src/sap/ui/core/message/MessageMixin.js +12 -4
  231. package/src/sap/ui/core/message/MessageParser.js +1 -1
  232. package/src/sap/ui/core/message/MessageProcessor.js +1 -1
  233. package/src/sap/ui/core/messagebundle_ko.properties +1 -1
  234. package/src/sap/ui/core/messagebundle_sv.properties +1 -1
  235. package/src/sap/ui/core/mvc/HTMLView.js +1 -1
  236. package/src/sap/ui/core/mvc/JSONView.js +1 -1
  237. package/src/sap/ui/core/mvc/JSView.js +1 -1
  238. package/src/sap/ui/core/mvc/TemplateView.js +1 -1
  239. package/src/sap/ui/core/mvc/View.js +1 -1
  240. package/src/sap/ui/core/mvc/XMLView.js +1 -1
  241. package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
  242. package/src/sap/ui/core/plugin/LessSupport.js +1 -1
  243. package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
  244. package/src/sap/ui/core/postmessage/Bus.js +1 -1
  245. package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
  246. package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
  247. package/src/sap/ui/core/search/SearchProvider.js +1 -1
  248. package/src/sap/ui/core/service/Service.js +1 -1
  249. package/src/sap/ui/core/service/ServiceFactory.js +1 -1
  250. package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
  251. package/src/sap/ui/core/support/Plugin.js +1 -1
  252. package/src/sap/ui/core/support/Support.js +1 -1
  253. package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
  254. package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
  255. package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
  256. package/src/sap/ui/core/support/plugins/Performance.js +1 -1
  257. package/src/sap/ui/core/support/plugins/Selector.js +1 -1
  258. package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
  259. package/src/sap/ui/core/support/plugins/Trace.js +1 -1
  260. package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
  261. package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
  262. package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
  263. package/src/sap/ui/core/theming/Parameters.js +1 -6
  264. package/src/sap/ui/core/theming/ThemeManager.js +84 -33
  265. package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
  266. package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
  267. package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
  268. package/src/sap/ui/core/tmpl/Template.js +1 -1
  269. package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
  270. package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
  271. package/src/sap/ui/core/util/Export.js +1 -1
  272. package/src/sap/ui/core/util/ExportCell.js +1 -1
  273. package/src/sap/ui/core/util/ExportColumn.js +1 -1
  274. package/src/sap/ui/core/util/ExportRow.js +1 -1
  275. package/src/sap/ui/core/util/ExportType.js +1 -1
  276. package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
  277. package/src/sap/ui/core/util/File.js +1 -1
  278. package/src/sap/ui/core/util/LibraryInfo.js +1 -1
  279. package/src/sap/ui/core/util/MockServer.js +5 -2
  280. package/src/sap/ui/core/util/PasteHelper.js +1 -1
  281. package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
  282. package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
  283. package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
  284. package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
  285. package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
  286. package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
  287. package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
  288. package/src/sap/ui/core/webc/WebComponent.js +1 -1
  289. package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
  290. package/src/sap/ui/core/ws/ReadyState.js +1 -1
  291. package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
  292. package/src/sap/ui/core/ws/WebSocket.js +1 -1
  293. package/src/sap/ui/debug/ControlTree.js +1 -1
  294. package/src/sap/ui/debug/DebugEnv.js +1 -1
  295. package/src/sap/ui/debug/PropertyList.js +1 -1
  296. package/src/sap/ui/model/ClientModel.js +1 -1
  297. package/src/sap/ui/model/ClientTreeBinding.js +5 -1
  298. package/src/sap/ui/model/CompositeDataState.js +1 -1
  299. package/src/sap/ui/model/CompositeType.js +1 -1
  300. package/src/sap/ui/model/DataState.js +1 -1
  301. package/src/sap/ui/model/ManagedObjectBindingSupport.js +21 -12
  302. package/src/sap/ui/model/MetaModel.js +1 -1
  303. package/src/sap/ui/model/Model.js +1 -1
  304. package/src/sap/ui/model/SelectionModel.js +1 -1
  305. package/src/sap/ui/model/SimpleType.js +1 -1
  306. package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
  307. package/src/sap/ui/model/Type.js +1 -1
  308. package/src/sap/ui/model/analytics/AnalyticalBinding.js +1 -1
  309. package/src/sap/ui/model/analytics/AnalyticalTreeBindingAdapter.js +51 -13
  310. package/src/sap/ui/model/base/ManagedObjectModel.js +5 -2
  311. package/src/sap/ui/model/json/JSONModel.js +1 -1
  312. package/src/sap/ui/model/message/MessageModel.js +1 -1
  313. package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
  314. package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
  315. package/src/sap/ui/model/odata/ODataMetaModel.js +46 -14
  316. package/src/sap/ui/model/odata/ODataMetadata.js +2 -2
  317. package/src/sap/ui/model/odata/ODataModel.js +2 -2
  318. package/src/sap/ui/model/odata/ODataUtils.js +2 -2
  319. package/src/sap/ui/model/odata/UpdateMethod.js +18 -1
  320. package/src/sap/ui/model/odata/_AnnotationHelperExpression.js +2 -2
  321. package/src/sap/ui/model/odata/type/Boolean.js +1 -1
  322. package/src/sap/ui/model/odata/type/Byte.js +1 -1
  323. package/src/sap/ui/model/odata/type/Currency.js +1 -1
  324. package/src/sap/ui/model/odata/type/Date.js +3 -3
  325. package/src/sap/ui/model/odata/type/DateTime.js +1 -1
  326. package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
  327. package/src/sap/ui/model/odata/type/DateTimeOffset.js +2 -2
  328. package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
  329. package/src/sap/ui/model/odata/type/Decimal.js +1 -1
  330. package/src/sap/ui/model/odata/type/Double.js +1 -1
  331. package/src/sap/ui/model/odata/type/Guid.js +1 -1
  332. package/src/sap/ui/model/odata/type/Int.js +1 -1
  333. package/src/sap/ui/model/odata/type/Int16.js +1 -1
  334. package/src/sap/ui/model/odata/type/Int32.js +1 -1
  335. package/src/sap/ui/model/odata/type/Int64.js +1 -1
  336. package/src/sap/ui/model/odata/type/ODataType.js +1 -1
  337. package/src/sap/ui/model/odata/type/Raw.js +1 -1
  338. package/src/sap/ui/model/odata/type/SByte.js +1 -1
  339. package/src/sap/ui/model/odata/type/Single.js +1 -1
  340. package/src/sap/ui/model/odata/type/Stream.js +1 -1
  341. package/src/sap/ui/model/odata/type/String.js +1 -1
  342. package/src/sap/ui/model/odata/type/Time.js +1 -1
  343. package/src/sap/ui/model/odata/type/TimeOfDay.js +3 -3
  344. package/src/sap/ui/model/odata/type/Unit.js +1 -1
  345. package/src/sap/ui/model/odata/v2/Context.js +1 -1
  346. package/src/sap/ui/model/odata/v2/ODataAnnotations.js +4 -3
  347. package/src/sap/ui/model/odata/v2/ODataListBinding.js +2 -2
  348. package/src/sap/ui/model/odata/v2/ODataModel.js +63 -37
  349. package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
  350. package/src/sap/ui/model/odata/v4/Context.js +52 -23
  351. package/src/sap/ui/model/odata/v4/ODataBinding.js +9 -6
  352. package/src/sap/ui/model/odata/v4/ODataContextBinding.js +5 -4
  353. package/src/sap/ui/model/odata/v4/ODataListBinding.js +137 -56
  354. package/src/sap/ui/model/odata/v4/ODataMetaModel.js +19 -8
  355. package/src/sap/ui/model/odata/v4/ODataModel.js +54 -33
  356. package/src/sap/ui/model/odata/v4/ODataParentBinding.js +10 -3
  357. package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +3 -4
  358. package/src/sap/ui/model/odata/v4/ODataUtils.js +1 -1
  359. package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +33 -9
  360. package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +13 -16
  361. package/src/sap/ui/model/odata/v4/lib/_Cache.js +334 -139
  362. package/src/sap/ui/model/odata/v4/lib/_Helper.js +20 -0
  363. package/src/sap/ui/model/odata/v4/lib/_Requestor.js +26 -4
  364. package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
  365. package/src/sap/ui/model/resource/ResourceModel.js +1 -1
  366. package/src/sap/ui/model/type/Boolean.js +1 -1
  367. package/src/sap/ui/model/type/Currency.js +1 -1
  368. package/src/sap/ui/model/type/Date.js +1 -1
  369. package/src/sap/ui/model/type/DateInterval.js +1 -1
  370. package/src/sap/ui/model/type/DateTime.js +1 -1
  371. package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
  372. package/src/sap/ui/model/type/FileSize.js +1 -1
  373. package/src/sap/ui/model/type/Float.js +1 -1
  374. package/src/sap/ui/model/type/Integer.js +1 -1
  375. package/src/sap/ui/model/type/String.js +1 -1
  376. package/src/sap/ui/model/type/Time.js +1 -1
  377. package/src/sap/ui/model/type/TimeInterval.js +1 -1
  378. package/src/sap/ui/model/type/Unit.js +1 -1
  379. package/src/sap/ui/model/xml/XMLModel.js +1 -1
  380. package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
  381. package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
  382. package/src/sap/ui/test/BranchTracking.js +1 -1
  383. package/src/sap/ui/test/TestUtils.js +82 -14
  384. package/src/sap/ui/test/actions/EnterText.js +2 -20
  385. package/src/sap/ui/test/generic/TestBase.js +1 -1
  386. package/src/sap/ui/test/starter/_setupAndStart.js +12 -3
  387. package/src/sap/ui/test/starter/_utils.js +0 -1
  388. package/src/sap/ui/thirdparty/jquery-compat.js +1 -1
  389. package/src/sap/ui/util/Storage.js +1 -1
  390. package/src/ui5loader.js +4 -1
  391. package/test/sap/ui/qunit/TestRunner.js +10 -11
  392. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +0 -5
  393. package/LICENSES/Unicode-DFS-2015.txt +0 -51
@@ -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": "44.0.0",
4
- "__buildtime": "2024-01-12T14:24:50.280Z",
3
+ "__version": "46.1.0",
4
+ "__buildtime": "2025-01-28T09:40:27.437Z",
5
5
  "languages": {
6
6
  "aa": "Affareg",
7
7
  "ab": "Abchaseg",
@@ -46,7 +46,7 @@
46
46
  "awa": "Awadhi",
47
47
  "ay": "Aymareg",
48
48
  "az": "Aserbaijaneg",
49
- "az_alt-short": "Aseri",
49
+ "az_alt-short": "Aserbaijaneg",
50
50
  "az_Arab": "Aserbaijaneg Deheuol",
51
51
  "ba": "Bashcorteg",
52
52
  "bal": "Balwtsi",
@@ -67,6 +67,7 @@
67
67
  "bin": "Bini",
68
68
  "bkm": "Comeg",
69
69
  "bla": "Siksika",
70
+ "blo": "Anii",
70
71
  "bm": "Bambareg",
71
72
  "bn": "Bengaleg",
72
73
  "bo": "Tibeteg",
@@ -282,6 +283,7 @@
282
283
  "kv": "Comi",
283
284
  "kw": "Cernyweg",
284
285
  "kwk": "Kwakʼwala",
286
+ "kxv": "Kuvi",
285
287
  "ky": "Cirgiseg",
286
288
  "la": "Lladin",
287
289
  "lad": "Iddew-Sbaeneg",
@@ -292,6 +294,7 @@
292
294
  "lez": "Lezgheg",
293
295
  "lg": "Ganda",
294
296
  "li": "Limbwrgeg",
297
+ "lij": "Ligwreg",
295
298
  "lil": "Lillooet",
296
299
  "lkt": "Lakota",
297
300
  "lmo": "Lombardeg",
@@ -553,6 +556,7 @@
553
556
  "vep": "Feps",
554
557
  "vi": "Fietnameg",
555
558
  "vls": "Fflemeg Gorllewinol",
559
+ "vmw": "Macua",
556
560
  "vo": "Folapük",
557
561
  "vot": "Foteg",
558
562
  "vun": "Funjo",
@@ -566,6 +570,7 @@
566
570
  "wuu": "Wu Tsieineaidd",
567
571
  "xal": "Calmyceg",
568
572
  "xh": "Xhosa",
573
+ "xnr": "Kangri",
569
574
  "xog": "Soga",
570
575
  "yav": "Iangben",
571
576
  "ybb": "Iembaeg",
@@ -574,6 +579,7 @@
574
579
  "yrl": "Nheengatu",
575
580
  "yue": "Cantoneeg",
576
581
  "yue_alt-menu": "Tsieinëeg, Cantoneg",
582
+ "za": "Zhuang",
577
583
  "zap": "Zapoteceg",
578
584
  "zbl": "Blisssymbols",
579
585
  "zea": "Zêlandeg",
@@ -617,7 +623,6 @@
617
623
  "Hebr": "Hebreig",
618
624
  "Hira": "Hiragana",
619
625
  "Hrkt": "Syllwyddor Japaneaidd",
620
- "Jamo": "Jamo",
621
626
  "Jpan": "Japaneaidd",
622
627
  "Kana": "Catacana",
623
628
  "Khmr": "Chmeraidd",
@@ -1049,11 +1054,11 @@
1049
1054
  "intervalFormats": {
1050
1055
  "intervalFormatFallback": "{0} – {1}",
1051
1056
  "Bh": {
1052
- "B": "h B h B",
1057
+ "B": "h Bh B",
1053
1058
  "h": "h–h B"
1054
1059
  },
1055
1060
  "Bhm": {
1056
- "B": "h:mm B h:mm B",
1061
+ "B": "h:mm Bh:mm B",
1057
1062
  "h": "h:mm–h:mm B",
1058
1063
  "m": "h:mm–h:mm B"
1059
1064
  },
@@ -1061,42 +1066,42 @@
1061
1066
  "d": "d–d"
1062
1067
  },
1063
1068
  "Gy": {
1064
- "G": "G y G y",
1069
+ "G": "G yG y",
1065
1070
  "y": "G y–y"
1066
1071
  },
1067
1072
  "GyM": {
1068
- "G": "GGGGG y-MM GGGGG y-MM",
1069
- "M": "GGGGG y-MM y-MM",
1070
- "y": "GGGGG y-MM y-MM"
1073
+ "G": "GGGGG y-MMGGGGG y-MM",
1074
+ "M": "GGGGG y-MMy-MM",
1075
+ "y": "GGGGG y-MMy-MM"
1071
1076
  },
1072
1077
  "GyMd": {
1073
- "d": "GGGGG y-MM-dd y-MM-dd",
1074
- "G": "GGGGG y-MM-dd GGGGG y-MM-dd",
1075
- "M": "GGGGG y-MM-dd y-MM-dd",
1076
- "y": "GGGGG y-MM-dd y-MM-dd"
1078
+ "d": "GGGGG y-MM-ddy-MM-dd",
1079
+ "G": "GGGGG y-MM-ddGGGGG y-MM-dd",
1080
+ "M": "GGGGG y-MM-ddy-MM-dd",
1081
+ "y": "GGGGG y-MM-ddy-MM-dd"
1077
1082
  },
1078
1083
  "GyMEd": {
1079
- "d": "GGGGG y-MM-dd, E y-MM-dd, E",
1080
- "G": "GGGGG y-MM-dd, E GGGGG y-MM-dd, E",
1081
- "M": "GGGGG y-MM-dd, E y-MM-dd, E",
1082
- "y": "GGGGG y-MM-dd, E y-MM-dd, E"
1084
+ "d": "GGGGG y-MM-dd, Ey-MM-dd, E",
1085
+ "G": "GGGGG y-MM-dd, EGGGGG y-MM-dd, E",
1086
+ "M": "GGGGG y-MM-dd, Ey-MM-dd, E",
1087
+ "y": "GGGGG y-MM-dd, Ey-MM-dd, E"
1083
1088
  },
1084
1089
  "GyMMM": {
1085
- "G": "G y MMM G y MMM",
1090
+ "G": "G y MMMG y MMM",
1086
1091
  "M": "G y MMM–MMM",
1087
- "y": "G y MMM y MMM"
1092
+ "y": "G y MMMy MMM"
1088
1093
  },
1089
1094
  "GyMMMd": {
1090
1095
  "d": "G y MMM d–d",
1091
- "G": "G y MMM d G y MMM d",
1092
- "M": "G y MMM d MMM d",
1093
- "y": "G y MMM d y MMM d"
1096
+ "G": "G y MMM dG y MMM d",
1097
+ "M": "G y MMM dMMM d",
1098
+ "y": "G y MMM dy MMM d"
1094
1099
  },
1095
1100
  "GyMMMEd": {
1096
- "d": "G y MMM d, E MMM d, E",
1097
- "G": "G y MMM d, E G y MMM d, E",
1098
- "M": "G y MMM d, E MMM d, E",
1099
- "y": "G y MMM d, E y MMM d, E"
1101
+ "d": "G y MMM d, EMMM d, E",
1102
+ "G": "G y MMM d, EG y MMM d, E",
1103
+ "M": "G y MMM d, EMMM d, E",
1104
+ "y": "G y MMM d, Ey MMM d, E"
1100
1105
  },
1101
1106
  "h": {
1102
1107
  "a": "h a – h a",
@@ -1544,7 +1549,7 @@
1544
1549
  "MMM": "LLL",
1545
1550
  "MMMd": "d MMM",
1546
1551
  "MMMEd": "E, d MMM",
1547
- "MMMMd": "MMMM d",
1552
+ "MMMMd": "d MMMM",
1548
1553
  "ms": "mm:ss",
1549
1554
  "y": "y G",
1550
1555
  "yyyy": "y G",
@@ -1574,11 +1579,11 @@
1574
1579
  "intervalFormats": {
1575
1580
  "intervalFormatFallback": "{0} – {1}",
1576
1581
  "Bh": {
1577
- "B": "h B h B",
1582
+ "B": "h Bh B",
1578
1583
  "h": "h–h B"
1579
1584
  },
1580
1585
  "Bhm": {
1581
- "B": "h:mm B h:mm B",
1586
+ "B": "h:mm Bh:mm B",
1582
1587
  "h": "h:mm–h:mm B",
1583
1588
  "m": "h:mm–h:mm B"
1584
1589
  },
@@ -1586,42 +1591,42 @@
1586
1591
  "d": "d – d"
1587
1592
  },
1588
1593
  "Gy": {
1589
- "G": "G y G y",
1594
+ "G": "G yG y",
1590
1595
  "y": "G y–y"
1591
1596
  },
1592
1597
  "GyM": {
1593
- "G": "GGGGG y-MM GGGGG y-MM",
1594
- "M": "GGGGG y-MM y-MM",
1595
- "y": "GGGGG y-MM y-MM"
1598
+ "G": "GGGGG y-MMGGGGG y-MM",
1599
+ "M": "GGGGG y-MMy-MM",
1600
+ "y": "GGGGG y-MMy-MM"
1596
1601
  },
1597
1602
  "GyMd": {
1598
- "d": "GGGGG y-MM-dd y-MM-dd",
1599
- "G": "GGGGG y-MM-dd GGGGG y-MM-dd",
1600
- "M": "GGGGG y-MM-dd y-MM-dd",
1601
- "y": "GGGGG y-MM-dd y-MM-dd"
1603
+ "d": "GGGGG y-MM-ddy-MM-dd",
1604
+ "G": "GGGGG y-MM-ddGGGGG y-MM-dd",
1605
+ "M": "GGGGG y-MM-ddy-MM-dd",
1606
+ "y": "GGGGG y-MM-ddy-MM-dd"
1602
1607
  },
1603
1608
  "GyMEd": {
1604
- "d": "GGGGG y-MM-dd, E y-MM-dd, E",
1605
- "G": "GGGGG y-MM-dd, E GGGGG y-MM-dd, E",
1606
- "M": "GGGGG y-MM-dd, E y-MM-dd, E",
1607
- "y": "GGGGG y-MM-dd, E y-MM-dd, E"
1609
+ "d": "GGGGG y-MM-dd, Ey-MM-dd, E",
1610
+ "G": "GGGGG y-MM-dd, EGGGGG y-MM-dd, E",
1611
+ "M": "GGGGG y-MM-dd, Ey-MM-dd, E",
1612
+ "y": "GGGGG y-MM-dd, Ey-MM-dd, E"
1608
1613
  },
1609
1614
  "GyMMM": {
1610
- "G": "G y MMM G y MMM",
1615
+ "G": "G y MMMG y MMM",
1611
1616
  "M": "G y MMM–MMM",
1612
- "y": "G y MMM y MMM"
1617
+ "y": "G y MMMy MMM"
1613
1618
  },
1614
1619
  "GyMMMd": {
1615
1620
  "d": "G y MMM d–d",
1616
- "G": "G y MMM d G y MMM d",
1617
- "M": "G y MMM d MMM d",
1618
- "y": "G y MMM d y MMM d"
1621
+ "G": "G y MMM dG y MMM d",
1622
+ "M": "G y MMM dMMM d",
1623
+ "y": "G y MMM dy MMM d"
1619
1624
  },
1620
1625
  "GyMMMEd": {
1621
- "d": "G y MMM d, E MMM d, E",
1622
- "G": "G y MMM d, E G y MMM d, E",
1623
- "M": "G y MMM d, E MMM d, E",
1624
- "y": "G y MMM d, E y MMM d, E"
1626
+ "d": "G y MMM d, EMMM d, E",
1627
+ "G": "G y MMM d, EG y MMM d, E",
1628
+ "M": "G y MMM d, EMMM d, E",
1629
+ "y": "G y MMM d, Ey MMM d, E"
1625
1630
  },
1626
1631
  "h": {
1627
1632
  "a": "h a – h a",
@@ -2063,7 +2068,7 @@
2063
2068
  "MMM": "LLL",
2064
2069
  "MMMd": "d MMM",
2065
2070
  "MMMEd": "E, d MMM",
2066
- "MMMMd": "MMMM d",
2071
+ "MMMMd": "d MMMM",
2067
2072
  "ms": "mm:ss",
2068
2073
  "y": "y G",
2069
2074
  "yyyy": "y G",
@@ -2093,11 +2098,11 @@
2093
2098
  "intervalFormats": {
2094
2099
  "intervalFormatFallback": "{0} – {1}",
2095
2100
  "Bh": {
2096
- "B": "h B h B",
2101
+ "B": "h Bh B",
2097
2102
  "h": "h–h B"
2098
2103
  },
2099
2104
  "Bhm": {
2100
- "B": "h:mm B h:mm B",
2105
+ "B": "h:mm Bh:mm B",
2101
2106
  "h": "h:mm–h:mm B",
2102
2107
  "m": "h:mm–h:mm B"
2103
2108
  },
@@ -2105,42 +2110,42 @@
2105
2110
  "d": "d – d"
2106
2111
  },
2107
2112
  "Gy": {
2108
- "G": "G y G y",
2113
+ "G": "G yG y",
2109
2114
  "y": "G y–y"
2110
2115
  },
2111
2116
  "GyM": {
2112
- "G": "GGGGG y-MM GGGGG y-MM",
2113
- "M": "GGGGG y-MM y-MM",
2114
- "y": "GGGGG y-MM y-MM"
2117
+ "G": "GGGGG y-MMGGGGG y-MM",
2118
+ "M": "GGGGG y-MMy-MM",
2119
+ "y": "GGGGG y-MMy-MM"
2115
2120
  },
2116
2121
  "GyMd": {
2117
- "d": "GGGGG y-MM-dd y-MM-dd",
2118
- "G": "GGGGG y-MM-dd GGGGG y-MM-dd",
2119
- "M": "GGGGG y-MM-dd y-MM-dd",
2120
- "y": "GGGGG y-MM-dd y-MM-dd"
2122
+ "d": "GGGGG y-MM-ddy-MM-dd",
2123
+ "G": "GGGGG y-MM-ddGGGGG y-MM-dd",
2124
+ "M": "GGGGG y-MM-ddy-MM-dd",
2125
+ "y": "GGGGG y-MM-ddy-MM-dd"
2121
2126
  },
2122
2127
  "GyMEd": {
2123
- "d": "GGGGG y-MM-dd, E y-MM-dd, E",
2124
- "G": "GGGGG y-MM-dd, E GGGGG y-MM-dd, E",
2125
- "M": "GGGGG y-MM-dd, E y-MM-dd, E",
2126
- "y": "GGGGG y-MM-dd, E y-MM-dd, E"
2128
+ "d": "GGGGG y-MM-dd, Ey-MM-dd, E",
2129
+ "G": "GGGGG y-MM-dd, EGGGGG y-MM-dd, E",
2130
+ "M": "GGGGG y-MM-dd, Ey-MM-dd, E",
2131
+ "y": "GGGGG y-MM-dd, Ey-MM-dd, E"
2127
2132
  },
2128
2133
  "GyMMM": {
2129
- "G": "G y MMM G y MMM",
2134
+ "G": "G y MMMG y MMM",
2130
2135
  "M": "G y MMM–MMM",
2131
- "y": "G y MMM y MMM"
2136
+ "y": "G y MMMy MMM"
2132
2137
  },
2133
2138
  "GyMMMd": {
2134
2139
  "d": "G y MMM d–d",
2135
- "G": "G y MMM d G y MMM d",
2136
- "M": "G y MMM d MMM d",
2137
- "y": "G y MMM d y MMM d"
2140
+ "G": "G y MMM dG y MMM d",
2141
+ "M": "G y MMM dMMM d",
2142
+ "y": "G y MMM dy MMM d"
2138
2143
  },
2139
2144
  "GyMMMEd": {
2140
- "d": "G y MMM d, E MMM d, E",
2141
- "G": "G y MMM d, E G y MMM d, E",
2142
- "M": "G y MMM d, E MMM d, E",
2143
- "y": "G y MMM d, E y MMM d, E"
2145
+ "d": "G y MMM d, EMMM d, E",
2146
+ "G": "G y MMM d, EG y MMM d, E",
2147
+ "M": "G y MMM d, EMMM d, E",
2148
+ "y": "G y MMM d, Ey MMM d, E"
2144
2149
  },
2145
2150
  "h": {
2146
2151
  "a": "h a – h a",
@@ -2605,7 +2610,7 @@
2605
2610
  "MMM": "LLL",
2606
2611
  "MMMd": "d MMM",
2607
2612
  "MMMEd": "E, d MMM",
2608
- "MMMMd": "MMMM d",
2613
+ "MMMMd": "d MMMM",
2609
2614
  "ms": "mm:ss",
2610
2615
  "y": "y G",
2611
2616
  "yyyy": "y G",
@@ -2635,11 +2640,11 @@
2635
2640
  "intervalFormats": {
2636
2641
  "intervalFormatFallback": "{0} – {1}",
2637
2642
  "Bh": {
2638
- "B": "h B h B",
2643
+ "B": "h Bh B",
2639
2644
  "h": "h–h B"
2640
2645
  },
2641
2646
  "Bhm": {
2642
- "B": "h:mm B h:mm B",
2647
+ "B": "h:mm Bh:mm B",
2643
2648
  "h": "h:mm–h:mm B",
2644
2649
  "m": "h:mm–h:mm B"
2645
2650
  },
@@ -2647,42 +2652,42 @@
2647
2652
  "d": "d – d"
2648
2653
  },
2649
2654
  "Gy": {
2650
- "G": "G y G y",
2655
+ "G": "G yG y",
2651
2656
  "y": "G y–y"
2652
2657
  },
2653
2658
  "GyM": {
2654
- "G": "GGGGG y-MM GGGGG y-MM",
2655
- "M": "GGGGG y-MM y-MM",
2656
- "y": "GGGGG y-MM y-MM"
2659
+ "G": "GGGGG y-MMGGGGG y-MM",
2660
+ "M": "GGGGG y-MMy-MM",
2661
+ "y": "GGGGG y-MMy-MM"
2657
2662
  },
2658
2663
  "GyMd": {
2659
- "d": "GGGGG y-MM-dd y-MM-dd",
2660
- "G": "GGGGG y-MM-dd GGGGG y-MM-dd",
2661
- "M": "GGGGG y-MM-dd y-MM-dd",
2662
- "y": "GGGGG y-MM-dd y-MM-dd"
2664
+ "d": "GGGGG y-MM-ddy-MM-dd",
2665
+ "G": "GGGGG y-MM-ddGGGGG y-MM-dd",
2666
+ "M": "GGGGG y-MM-ddy-MM-dd",
2667
+ "y": "GGGGG y-MM-ddy-MM-dd"
2663
2668
  },
2664
2669
  "GyMEd": {
2665
- "d": "GGGGG y-MM-dd, E y-MM-dd, E",
2666
- "G": "GGGGG y-MM-dd, E GGGGG y-MM-dd, E",
2667
- "M": "GGGGG y-MM-dd, E y-MM-dd, E",
2668
- "y": "GGGGG y-MM-dd, E y-MM-dd, E"
2670
+ "d": "GGGGG y-MM-dd, Ey-MM-dd, E",
2671
+ "G": "GGGGG y-MM-dd, EGGGGG y-MM-dd, E",
2672
+ "M": "GGGGG y-MM-dd, Ey-MM-dd, E",
2673
+ "y": "GGGGG y-MM-dd, Ey-MM-dd, E"
2669
2674
  },
2670
2675
  "GyMMM": {
2671
- "G": "G y MMM G y MMM",
2676
+ "G": "G y MMMG y MMM",
2672
2677
  "M": "G y MMM–MMM",
2673
- "y": "G y MMM y MMM"
2678
+ "y": "G y MMMy MMM"
2674
2679
  },
2675
2680
  "GyMMMd": {
2676
2681
  "d": "G y MMM d–d",
2677
- "G": "G y MMM d G y MMM d",
2678
- "M": "G y MMM d MMM d",
2679
- "y": "G y MMM d y MMM d"
2682
+ "G": "G y MMM dG y MMM d",
2683
+ "M": "G y MMM dMMM d",
2684
+ "y": "G y MMM dy MMM d"
2680
2685
  },
2681
2686
  "GyMMMEd": {
2682
- "d": "G y MMM d, E MMM d, E",
2683
- "G": "G y MMM d, E G y MMM d, E",
2684
- "M": "G y MMM d, E MMM d, E",
2685
- "y": "G y MMM d, E y MMM d, E"
2687
+ "d": "G y MMM d, EMMM d, E",
2688
+ "G": "G y MMM d, EG y MMM d, E",
2689
+ "M": "G y MMM d, EMMM d, E",
2690
+ "y": "G y MMM d, Ey MMM d, E"
2686
2691
  },
2687
2692
  "h": {
2688
2693
  "a": "h a – h a",
@@ -3124,7 +3129,7 @@
3124
3129
  "MMM": "LLL",
3125
3130
  "MMMd": "d MMM",
3126
3131
  "MMMEd": "E, d MMM",
3127
- "MMMMd": "MMMM d",
3132
+ "MMMMd": "d MMMM",
3128
3133
  "ms": "mm:ss",
3129
3134
  "y": "y G",
3130
3135
  "yyyy": "y G",
@@ -3154,11 +3159,11 @@
3154
3159
  "intervalFormats": {
3155
3160
  "intervalFormatFallback": "{0} – {1}",
3156
3161
  "Bh": {
3157
- "B": "h B h B",
3162
+ "B": "h Bh B",
3158
3163
  "h": "h–h B"
3159
3164
  },
3160
3165
  "Bhm": {
3161
- "B": "h:mm B h:mm B",
3166
+ "B": "h:mm Bh:mm B",
3162
3167
  "h": "h:mm–h:mm B",
3163
3168
  "m": "h:mm–h:mm B"
3164
3169
  },
@@ -3166,42 +3171,42 @@
3166
3171
  "d": "d – d"
3167
3172
  },
3168
3173
  "Gy": {
3169
- "G": "G y G y",
3174
+ "G": "G yG y",
3170
3175
  "y": "G y–y"
3171
3176
  },
3172
3177
  "GyM": {
3173
- "G": "GGGGG y-MM GGGGG y-MM",
3174
- "M": "GGGGG y-MM y-MM",
3175
- "y": "GGGGG y-MM y-MM"
3178
+ "G": "GGGGG y-MMGGGGG y-MM",
3179
+ "M": "GGGGG y-MMy-MM",
3180
+ "y": "GGGGG y-MMy-MM"
3176
3181
  },
3177
3182
  "GyMd": {
3178
- "d": "GGGGG y-MM-dd y-MM-dd",
3179
- "G": "GGGGG y-MM-dd GGGGG y-MM-dd",
3180
- "M": "GGGGG y-MM-dd y-MM-dd",
3181
- "y": "GGGGG y-MM-dd y-MM-dd"
3183
+ "d": "GGGGG y-MM-ddy-MM-dd",
3184
+ "G": "GGGGG y-MM-ddGGGGG y-MM-dd",
3185
+ "M": "GGGGG y-MM-ddy-MM-dd",
3186
+ "y": "GGGGG y-MM-ddy-MM-dd"
3182
3187
  },
3183
3188
  "GyMEd": {
3184
- "d": "GGGGG y-MM-dd, E y-MM-dd, E",
3185
- "G": "GGGGG y-MM-dd, E GGGGG y-MM-dd, E",
3186
- "M": "GGGGG y-MM-dd, E y-MM-dd, E",
3187
- "y": "GGGGG y-MM-dd, E y-MM-dd, E"
3189
+ "d": "GGGGG y-MM-dd, Ey-MM-dd, E",
3190
+ "G": "GGGGG y-MM-dd, EGGGGG y-MM-dd, E",
3191
+ "M": "GGGGG y-MM-dd, Ey-MM-dd, E",
3192
+ "y": "GGGGG y-MM-dd, Ey-MM-dd, E"
3188
3193
  },
3189
3194
  "GyMMM": {
3190
- "G": "G y MMM G y MMM",
3195
+ "G": "G y MMMG y MMM",
3191
3196
  "M": "G y MMM–MMM",
3192
- "y": "G y MMM y MMM"
3197
+ "y": "G y MMMy MMM"
3193
3198
  },
3194
3199
  "GyMMMd": {
3195
3200
  "d": "G y MMM d–d",
3196
- "G": "G y MMM d G y MMM d",
3197
- "M": "G y MMM d MMM d",
3198
- "y": "G y MMM d y MMM d"
3201
+ "G": "G y MMM dG y MMM d",
3202
+ "M": "G y MMM dMMM d",
3203
+ "y": "G y MMM dy MMM d"
3199
3204
  },
3200
3205
  "GyMMMEd": {
3201
- "d": "G y MMM d, E MMM d, E",
3202
- "G": "G y MMM d, E G y MMM d, E",
3203
- "M": "G y MMM d, E MMM d, E",
3204
- "y": "G y MMM d, E y MMM d, E"
3206
+ "d": "G y MMM d, EMMM d, E",
3207
+ "G": "G y MMM d, EG y MMM d, E",
3208
+ "M": "G y MMM d, EMMM d, E",
3209
+ "y": "G y MMM d, Ey MMM d, E"
3205
3210
  },
3206
3211
  "h": {
3207
3212
  "a": "h a – h a",
@@ -3608,7 +3613,7 @@
3608
3613
  "relative-type-0": "eleni",
3609
3614
  "relative-type-1": "blwyddyn nesaf",
3610
3615
  "relativeTime-type-future": {
3611
- "relativeTimePattern-count-zero": "ymhen {0} mlynedd",
3616
+ "relativeTimePattern-count-zero": "ymhen {0} o flynyddoedd",
3612
3617
  "relativeTimePattern-count-one": "ymhen blwyddyn",
3613
3618
  "relativeTimePattern-count-two": "ymhen {0} flynedd",
3614
3619
  "relativeTimePattern-count-few": "ymhen {0} blynedd",
@@ -3619,8 +3624,8 @@
3619
3624
  "relativeTimePattern-count-zero": "{0} o flynyddoedd yn ôl",
3620
3625
  "relativeTimePattern-count-one": "blwyddyn yn ôl",
3621
3626
  "relativeTimePattern-count-two": "{0} flynedd yn ôl",
3622
- "relativeTimePattern-count-few": "{0} blynedd yn ôl",
3623
- "relativeTimePattern-count-many": "{0} blynedd yn ôl",
3627
+ "relativeTimePattern-count-few": "{0} o flynyddoedd yn ôl",
3628
+ "relativeTimePattern-count-many": "{0} o flynyddoedd yn ôl",
3624
3629
  "relativeTimePattern-count-other": "{0} o flynyddoedd yn ôl"
3625
3630
  }
3626
3631
  },
@@ -3630,20 +3635,20 @@
3630
3635
  "relative-type-0": "eleni",
3631
3636
  "relative-type-1": "blwyddyn nesaf",
3632
3637
  "relativeTime-type-future": {
3633
- "relativeTimePattern-count-zero": "ymhen {0} mlynedd",
3638
+ "relativeTimePattern-count-zero": "ymhen {0} o flynyddoedd",
3634
3639
  "relativeTimePattern-count-one": "ymhen blwyddyn",
3635
3640
  "relativeTimePattern-count-two": "ymhen {0} flynedd",
3636
3641
  "relativeTimePattern-count-few": "ymhen {0} blynedd",
3637
3642
  "relativeTimePattern-count-many": "ymhen {0} blynedd",
3638
- "relativeTimePattern-count-other": "ymhen {0} mlynedd"
3643
+ "relativeTimePattern-count-other": "ymhen {0} o flynyddoedd"
3639
3644
  },
3640
3645
  "relativeTime-type-past": {
3641
3646
  "relativeTimePattern-count-zero": "{0} o flynyddoedd yn ôl",
3642
3647
  "relativeTimePattern-count-one": "{0} bl. yn ôl",
3643
3648
  "relativeTimePattern-count-two": "{0} flynedd yn ôl",
3644
- "relativeTimePattern-count-few": "{0} blynedd yn ôl",
3645
- "relativeTimePattern-count-many": "{0} blynedd yn ôl",
3646
- "relativeTimePattern-count-other": "{0} bl. yn ôl"
3649
+ "relativeTimePattern-count-few": "{0} o flynyddoedd yn ôl",
3650
+ "relativeTimePattern-count-many": "{0} o flynyddoedd yn ôl",
3651
+ "relativeTimePattern-count-other": "{0} o flynyddoedd yn ôl"
3647
3652
  }
3648
3653
  },
3649
3654
  "year-narrow": {
@@ -3652,20 +3657,20 @@
3652
3657
  "relative-type-0": "eleni",
3653
3658
  "relative-type-1": "bl. nesaf",
3654
3659
  "relativeTime-type-future": {
3655
- "relativeTimePattern-count-zero": "ymhen {0} mlynedd",
3660
+ "relativeTimePattern-count-zero": "ymhen {0} o flynyddoedd",
3656
3661
  "relativeTimePattern-count-one": "ymhen bl.",
3657
3662
  "relativeTimePattern-count-two": "ymhen {0} flynedd",
3658
3663
  "relativeTimePattern-count-few": "ymhen {0} blynedd",
3659
3664
  "relativeTimePattern-count-many": "ymhen {0} blynedd",
3660
- "relativeTimePattern-count-other": "ymhen {0} mlynedd"
3665
+ "relativeTimePattern-count-other": "ymhen {0} o flynyddoedd"
3661
3666
  },
3662
3667
  "relativeTime-type-past": {
3663
3668
  "relativeTimePattern-count-zero": "{0} o flynyddoedd yn ôl",
3664
3669
  "relativeTimePattern-count-one": "blwyddyn yn ôl",
3665
3670
  "relativeTimePattern-count-two": "{0} flynedd yn ôl",
3666
- "relativeTimePattern-count-few": "{0} blynedd yn ôl",
3667
- "relativeTimePattern-count-many": "{0} blynedd yn ôl",
3668
- "relativeTimePattern-count-other": "{0} bl. yn ôl"
3671
+ "relativeTimePattern-count-few": "{0} o flynyddoedd yn ôl",
3672
+ "relativeTimePattern-count-many": "{0} o flynyddoedd yn ôl",
3673
+ "relativeTimePattern-count-other": "{0} o flynyddoedd yn ôl"
3669
3674
  }
3670
3675
  },
3671
3676
  "quarter-wide": {
@@ -4293,7 +4298,6 @@
4293
4298
  "Montserrat": "Montserrat",
4294
4299
  "Nassau": "Nassau",
4295
4300
  "New_York": "Efrog Newydd",
4296
- "Nipigon": "Nipigon",
4297
4301
  "Nome": "Nome",
4298
4302
  "Noronha": "Noronha",
4299
4303
  "North_Dakota": {
@@ -4304,7 +4308,6 @@
4304
4308
  "Nuuk": "Nuuk",
4305
4309
  "Ojinaga": "Ojinaga",
4306
4310
  "Panama": "Panama",
4307
- "Pangnirtung": "Pangnirtung",
4308
4311
  "Paramaribo": "Paramaribo",
4309
4312
  "Phoenix": "Phoenix",
4310
4313
  "Port-au-Prince": "Port-au-Prince",
@@ -4312,13 +4315,11 @@
4312
4315
  "Porto_Velho": "Porto Velho",
4313
4316
  "Puerto_Rico": "Puerto Rico",
4314
4317
  "Punta_Arenas": "Punta Arenas",
4315
- "Rainy_River": "Rainy River",
4316
4318
  "Rankin_Inlet": "Rankin Inlet",
4317
4319
  "Recife": "Recife",
4318
4320
  "Regina": "Regina",
4319
4321
  "Resolute": "Resolute",
4320
4322
  "Rio_Branco": "Rio Branco",
4321
- "Santa_Isabel": "Santa Isabel",
4322
4323
  "Santarem": "Santarem",
4323
4324
  "Santiago": "Santiago",
4324
4325
  "Santo_Domingo": "Santo Domingo",
@@ -4334,7 +4335,6 @@
4334
4335
  "Swift_Current": "Swift Current",
4335
4336
  "Tegucigalpa": "Tegucigalpa",
4336
4337
  "Thule": "Thule",
4337
- "Thunder_Bay": "Thunder Bay",
4338
4338
  "Tijuana": "Tijuana",
4339
4339
  "Toronto": "Toronto",
4340
4340
  "Tortola": "Tortola",
@@ -4342,7 +4342,6 @@
4342
4342
  "Whitehorse": "Whitehorse",
4343
4343
  "Winnipeg": "Winnipeg",
4344
4344
  "Yakutat": "Yakutat",
4345
- "Yellowknife": "Yellowknife",
4346
4345
  "_parent": "Yr Amerig"
4347
4346
  },
4348
4347
  "Antarctica": {
@@ -4380,7 +4379,6 @@
4380
4379
  "Bishkek": "Bishkek",
4381
4380
  "Brunei": "Brunei",
4382
4381
  "Chita": "Chita",
4383
- "Choibalsan": "Choibalsan",
4384
4382
  "Colombo": "Colombo",
4385
4383
  "Damascus": "Damascus",
4386
4384
  "Dhaka": "Dhaka",
@@ -4529,7 +4527,6 @@
4529
4527
  "Tallinn": "Tallinn",
4530
4528
  "Tirane": "Tirane",
4531
4529
  "Ulyanovsk": "Ulyanovsk",
4532
- "Uzhgorod": "Uzhhorod",
4533
4530
  "Vaduz": "Vaduz",
4534
4531
  "Vatican": "Y Fatican",
4535
4532
  "Vienna": "Fienna",
@@ -4537,7 +4534,6 @@
4537
4534
  "Volgograd": "Volgograd",
4538
4535
  "Warsaw": "Warsaw",
4539
4536
  "Zagreb": "Zagreb",
4540
- "Zaporozhye": "Zaporozhye",
4541
4537
  "Zurich": "Zurich",
4542
4538
  "_parent": "Ewrop"
4543
4539
  },
@@ -4664,21 +4660,15 @@
4664
4660
  },
4665
4661
  "currencyFormat": {
4666
4662
  "standard": "¤#,##0.00",
4663
+ "standard-noCurrency": "#,##0.00",
4667
4664
  "accounting": "¤#,##0.00;(¤#,##0.00)",
4668
- "currencySpacing": {
4669
- "beforeCurrency": {
4670
- "currencyMatch": "[[:^S:]&[:^Z:]]",
4671
- "surroundingMatch": "[:digit:]",
4672
- "insertBetween": " "
4673
- },
4674
- "afterCurrency": {
4675
- "currencyMatch": "[[:^S:]&[:^Z:]]",
4676
- "surroundingMatch": "[:digit:]",
4677
- "insertBetween": " "
4678
- }
4679
- },
4665
+ "accounting-alphaNextToNumber": "¤ #,##0.00;(¤ #,##0.00)",
4666
+ "accounting-noCurrency": "#,##0.00;(#,##0.00)",
4680
4667
  "sap-standard": "#,##0.00¤",
4681
- "sap-accounting": "#,##0.00¤;(#,##0.00¤)"
4668
+ "sap-accounting": "#,##0.00¤;(#,##0.00¤)",
4669
+ "sap-accounting-alphaNextToNumber": "#,##0.00 ¤;(#,##0.00 ¤)",
4670
+ "sap-standard-noCurrency": "#,##0.00",
4671
+ "sap-accounting-noCurrency": "#,##0.00;(#,##0.00)"
4682
4672
  },
4683
4673
  "miscPattern": {
4684
4674
  "approximately": "~{0}",
@@ -4687,78 +4677,150 @@
4687
4677
  "range": "{0}–{1}"
4688
4678
  },
4689
4679
  "currencyFormat-short": {
4690
- "1000-zero": "¤ 0K",
4691
- "1000-one": "¤ 0K",
4692
- "1000-two": "¤ 0K",
4693
- "1000-few": "¤ 0K",
4694
- "1000-many": "¤ 0K",
4695
- "1000-other": "¤ 0K",
4696
- "10000-zero": "¤ 00K",
4697
- "10000-one": "¤ 00K",
4698
- "10000-two": "¤ 00K",
4699
- "10000-few": "¤ 00K",
4700
- "10000-many": "¤ 00K",
4701
- "10000-other": "¤ 00K",
4702
- "100000-zero": "¤ 000K",
4703
- "100000-one": "¤ 000K",
4704
- "100000-two": "¤ 000K",
4705
- "100000-few": "¤ 000K",
4706
- "100000-many": "¤ 000K",
4707
- "100000-other": "¤ 000K",
4708
- "1000000-zero": "¤ 0M",
4709
- "1000000-one": "¤ 0M",
4710
- "1000000-two": "¤ 0M",
4711
- "1000000-few": "¤ 0M",
4712
- "1000000-many": "¤ 0M",
4713
- "1000000-other": "¤ 0M",
4714
- "10000000-zero": "¤ 00M",
4715
- "10000000-one": "¤ 00M",
4716
- "10000000-two": "¤ 00M",
4717
- "10000000-few": "¤ 00M",
4718
- "10000000-many": "¤ 00M",
4719
- "10000000-other": "¤ 00M",
4720
- "100000000-zero": "¤ 000M",
4721
- "100000000-one": "¤ 000M",
4722
- "100000000-two": "¤ 000M",
4723
- "100000000-few": "¤ 000M",
4724
- "100000000-many": "¤ 000M",
4725
- "100000000-other": "¤ 000M",
4726
- "1000000000-zero": "¤ 0B",
4727
- "1000000000-one": "¤ 0B",
4728
- "1000000000-two": "¤ 0B",
4729
- "1000000000-few": "¤ 0B",
4730
- "1000000000-many": "¤ 0B",
4731
- "1000000000-other": "¤ 0B",
4732
- "10000000000-zero": "¤ 00B",
4733
- "10000000000-one": "¤ 00B",
4734
- "10000000000-two": "¤ 00B",
4735
- "10000000000-few": "¤ 00B",
4736
- "10000000000-many": "¤ 00B",
4737
- "10000000000-other": "¤ 00B",
4738
- "100000000000-zero": "¤ 000B",
4739
- "100000000000-one": "¤ 000B",
4740
- "100000000000-two": "¤ 000B",
4741
- "100000000000-few": "¤ 000B",
4742
- "100000000000-many": "¤ 000B",
4743
- "100000000000-other": "¤ 000B",
4744
- "1000000000000-zero": "¤ 0T",
4745
- "1000000000000-one": "¤ 0T",
4746
- "1000000000000-two": "¤ 0T",
4747
- "1000000000000-few": "¤ 0T",
4748
- "1000000000000-many": "¤ 0T",
4749
- "1000000000000-other": "¤ 0T",
4750
- "10000000000000-zero": "¤ 00T",
4751
- "10000000000000-one": "¤ 00T",
4752
- "10000000000000-two": "¤ 00T",
4753
- "10000000000000-few": "¤ 00T",
4754
- "10000000000000-many": "¤ 00T",
4755
- "10000000000000-other": "¤ 00T",
4756
- "100000000000000-zero": "¤ 000T",
4757
- "100000000000000-one": "¤ 000T",
4758
- "100000000000000-two": "¤ 000T",
4759
- "100000000000000-few": "¤ 000T",
4760
- "100000000000000-many": "¤ 000T",
4761
- "100000000000000-other": "¤ 000T"
4680
+ "1000-zero": "¤0K",
4681
+ "1000-zero-alphaNextToNumber": "¤ 0K",
4682
+ "1000-one": "¤0K",
4683
+ "1000-one-alphaNextToNumber": "¤ 0K",
4684
+ "1000-two": "¤0K",
4685
+ "1000-two-alphaNextToNumber": "¤ 0K",
4686
+ "1000-few": "¤0K",
4687
+ "1000-few-alphaNextToNumber": "¤ 0K",
4688
+ "1000-many": "¤0K",
4689
+ "1000-many-alphaNextToNumber": "¤ 0K",
4690
+ "1000-other": "¤0K",
4691
+ "1000-other-alphaNextToNumber": "¤ 0K",
4692
+ "10000-zero": "¤00K",
4693
+ "10000-zero-alphaNextToNumber": "¤ 00K",
4694
+ "10000-one": "¤00K",
4695
+ "10000-one-alphaNextToNumber": "¤ 00K",
4696
+ "10000-two": "¤00K",
4697
+ "10000-two-alphaNextToNumber": "¤ 00K",
4698
+ "10000-few": "¤00K",
4699
+ "10000-few-alphaNextToNumber": "¤ 00K",
4700
+ "10000-many": "¤00K",
4701
+ "10000-many-alphaNextToNumber": "¤ 00K",
4702
+ "10000-other": "¤00K",
4703
+ "10000-other-alphaNextToNumber": "¤ 00K",
4704
+ "100000-zero": "¤000K",
4705
+ "100000-zero-alphaNextToNumber": "¤ 000K",
4706
+ "100000-one": "¤000K",
4707
+ "100000-one-alphaNextToNumber": "¤ 000K",
4708
+ "100000-two": "¤000K",
4709
+ "100000-two-alphaNextToNumber": "¤ 000K",
4710
+ "100000-few": "¤000K",
4711
+ "100000-few-alphaNextToNumber": "¤ 000K",
4712
+ "100000-many": "¤000K",
4713
+ "100000-many-alphaNextToNumber": "¤ 000K",
4714
+ "100000-other": "¤000K",
4715
+ "100000-other-alphaNextToNumber": "¤ 000K",
4716
+ "1000000-zero": "¤0M",
4717
+ "1000000-zero-alphaNextToNumber": "¤ 0M",
4718
+ "1000000-one": "¤0M",
4719
+ "1000000-one-alphaNextToNumber": "¤ 0M",
4720
+ "1000000-two": "¤0M",
4721
+ "1000000-two-alphaNextToNumber": "¤ 0M",
4722
+ "1000000-few": "¤0M",
4723
+ "1000000-few-alphaNextToNumber": "¤ 0M",
4724
+ "1000000-many": "¤0M",
4725
+ "1000000-many-alphaNextToNumber": "¤ 0M",
4726
+ "1000000-other": "¤0M",
4727
+ "1000000-other-alphaNextToNumber": "¤ 0M",
4728
+ "10000000-zero": "¤00M",
4729
+ "10000000-zero-alphaNextToNumber": "¤ 00M",
4730
+ "10000000-one": "¤00M",
4731
+ "10000000-one-alphaNextToNumber": "¤ 00M",
4732
+ "10000000-two": "¤00M",
4733
+ "10000000-two-alphaNextToNumber": "¤ 00M",
4734
+ "10000000-few": "¤00M",
4735
+ "10000000-few-alphaNextToNumber": "¤ 00M",
4736
+ "10000000-many": "¤00M",
4737
+ "10000000-many-alphaNextToNumber": "¤ 00M",
4738
+ "10000000-other": "¤00M",
4739
+ "10000000-other-alphaNextToNumber": "¤ 00M",
4740
+ "100000000-zero": "¤000M",
4741
+ "100000000-zero-alphaNextToNumber": "¤ 000M",
4742
+ "100000000-one": "¤000M",
4743
+ "100000000-one-alphaNextToNumber": "¤ 000M",
4744
+ "100000000-two": "¤000M",
4745
+ "100000000-two-alphaNextToNumber": "¤ 000M",
4746
+ "100000000-few": "¤000M",
4747
+ "100000000-few-alphaNextToNumber": "¤ 000M",
4748
+ "100000000-many": "¤000M",
4749
+ "100000000-many-alphaNextToNumber": "¤ 000M",
4750
+ "100000000-other": "¤000M",
4751
+ "100000000-other-alphaNextToNumber": "¤ 000M",
4752
+ "1000000000-zero": "¤0B",
4753
+ "1000000000-zero-alphaNextToNumber": "¤ 0B",
4754
+ "1000000000-one": "¤0B",
4755
+ "1000000000-one-alphaNextToNumber": "¤ 0B",
4756
+ "1000000000-two": "¤0B",
4757
+ "1000000000-two-alphaNextToNumber": "¤ 0B",
4758
+ "1000000000-few": "¤0B",
4759
+ "1000000000-few-alphaNextToNumber": "¤ 0B",
4760
+ "1000000000-many": "¤0B",
4761
+ "1000000000-many-alphaNextToNumber": "¤ 0B",
4762
+ "1000000000-other": "¤0B",
4763
+ "1000000000-other-alphaNextToNumber": "¤ 0B",
4764
+ "10000000000-zero": "¤00B",
4765
+ "10000000000-zero-alphaNextToNumber": "¤ 00B",
4766
+ "10000000000-one": "¤00B",
4767
+ "10000000000-one-alphaNextToNumber": "¤ 00B",
4768
+ "10000000000-two": "¤00B",
4769
+ "10000000000-two-alphaNextToNumber": "¤ 00B",
4770
+ "10000000000-few": "¤00B",
4771
+ "10000000000-few-alphaNextToNumber": "¤ 00B",
4772
+ "10000000000-many": "¤00B",
4773
+ "10000000000-many-alphaNextToNumber": "¤ 00B",
4774
+ "10000000000-other": "¤00B",
4775
+ "10000000000-other-alphaNextToNumber": "¤ 00B",
4776
+ "100000000000-zero": "¤000B",
4777
+ "100000000000-zero-alphaNextToNumber": "¤ 000B",
4778
+ "100000000000-one": "¤000B",
4779
+ "100000000000-one-alphaNextToNumber": "¤ 000B",
4780
+ "100000000000-two": "¤000B",
4781
+ "100000000000-two-alphaNextToNumber": "¤ 000B",
4782
+ "100000000000-few": "¤000B",
4783
+ "100000000000-few-alphaNextToNumber": "¤ 000B",
4784
+ "100000000000-many": "¤000B",
4785
+ "100000000000-many-alphaNextToNumber": "¤ 000B",
4786
+ "100000000000-other": "¤000B",
4787
+ "100000000000-other-alphaNextToNumber": "¤ 000B",
4788
+ "1000000000000-zero": "¤0T",
4789
+ "1000000000000-zero-alphaNextToNumber": "¤ 0T",
4790
+ "1000000000000-one": "¤0T",
4791
+ "1000000000000-one-alphaNextToNumber": "¤ 0T",
4792
+ "1000000000000-two": "¤0T",
4793
+ "1000000000000-two-alphaNextToNumber": "¤ 0T",
4794
+ "1000000000000-few": "¤0T",
4795
+ "1000000000000-few-alphaNextToNumber": "¤ 0T",
4796
+ "1000000000000-many": "¤0T",
4797
+ "1000000000000-many-alphaNextToNumber": "¤ 0T",
4798
+ "1000000000000-other": "¤0T",
4799
+ "1000000000000-other-alphaNextToNumber": "¤ 0T",
4800
+ "10000000000000-zero": "¤00T",
4801
+ "10000000000000-zero-alphaNextToNumber": "¤ 00T",
4802
+ "10000000000000-one": "¤00T",
4803
+ "10000000000000-one-alphaNextToNumber": "¤ 00T",
4804
+ "10000000000000-two": "¤00T",
4805
+ "10000000000000-two-alphaNextToNumber": "¤ 00T",
4806
+ "10000000000000-few": "¤00T",
4807
+ "10000000000000-few-alphaNextToNumber": "¤ 00T",
4808
+ "10000000000000-many": "¤00T",
4809
+ "10000000000000-many-alphaNextToNumber": "¤ 00T",
4810
+ "10000000000000-other": "¤00T",
4811
+ "10000000000000-other-alphaNextToNumber": "¤ 00T",
4812
+ "100000000000000-zero": "¤000T",
4813
+ "100000000000000-zero-alphaNextToNumber": "¤ 000T",
4814
+ "100000000000000-one": "¤000T",
4815
+ "100000000000000-one-alphaNextToNumber": "¤ 000T",
4816
+ "100000000000000-two": "¤000T",
4817
+ "100000000000000-two-alphaNextToNumber": "¤ 000T",
4818
+ "100000000000000-few": "¤000T",
4819
+ "100000000000000-few-alphaNextToNumber": "¤ 000T",
4820
+ "100000000000000-many": "¤000T",
4821
+ "100000000000000-many-alphaNextToNumber": "¤ 000T",
4822
+ "100000000000000-other": "¤000T",
4823
+ "100000000000000-other-alphaNextToNumber": "¤ 000T"
4762
4824
  },
4763
4825
  "symbols-latn-decimal": ".",
4764
4826
  "symbols-latn-group": ",",
@@ -4792,6 +4854,7 @@
4792
4854
  "VND": "₫",
4793
4855
  "XAF": "FCFA",
4794
4856
  "XCD": "EC$",
4857
+ "XCG": "Cg.",
4795
4858
  "XOF": "F CFA",
4796
4859
  "XPF": "CFPF"
4797
4860
  },
@@ -5969,6 +6032,29 @@
5969
6032
  "unitPattern-count-many": "{0} cht Imp.",
5970
6033
  "unitPattern-count-other": "{0} cht Imp."
5971
6034
  },
6035
+ "speed-light-speed": {
6036
+ "displayName": "golau",
6037
+ "unitPattern-count-zero": "golau",
6038
+ "unitPattern-count-one": "{0} golau",
6039
+ "unitPattern-count-two": "{0} golau",
6040
+ "unitPattern-count-few": "{0} golau",
6041
+ "unitPattern-count-many": "{0} golau",
6042
+ "unitPattern-count-other": "{0} golau"
6043
+ },
6044
+ "concentr-portion-per-1e9": {
6045
+ "displayName": "rhannau/biliwn",
6046
+ "unitPattern-count-other": "{0} ppb"
6047
+ },
6048
+ "duration-night": {
6049
+ "displayName": "nosau",
6050
+ "unitPattern-count-zero": "{0} noson",
6051
+ "unitPattern-count-one": "{0} noson",
6052
+ "unitPattern-count-two": "{0} noson",
6053
+ "unitPattern-count-few": "{0} noson",
6054
+ "unitPattern-count-many": "{0} noson",
6055
+ "unitPattern-count-other": "{0} noson",
6056
+ "perUnitPattern": "{0}/noson"
6057
+ },
5972
6058
  "coordinateUnit": {
5973
6059
  "displayName": "cyfeiriad",
5974
6060
  "east": "{0} dn",
@@ -5979,9 +6065,9 @@
5979
6065
  }
5980
6066
  },
5981
6067
  "lenient-scope-number": {
5982
- "minusSign": "--﹣ ‐‑‒–−⁻₋➖",
5983
- "commaSign": ",,﹐︐ ⹁،٫、﹑、︑",
5984
- "plusSign": "++﬩﹢⁺₊ ➕"
6068
+ "minusSign": "--﹣‐‑‒–−⁻₋➖",
6069
+ "commaSign": ",,﹐︐⹁،٫、﹑、︑",
6070
+ "plusSign": "++﬩﹢⁺₊➕"
5985
6071
  },
5986
6072
  "currencyFormat-sap-short": {
5987
6073
  "1000-zero": "0K ¤",