@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.
- package/.dtsgenrc +5 -0
- package/.eslintrc.json +4 -0
- package/.reuse/dep5 +2 -9
- package/LICENSES/LicenseRef-Unicode-3.0.txt +39 -0
- package/THIRDPARTY.txt +45 -78
- package/package.json +1 -1
- package/src/jquery.sap.global.js +1 -1
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +3 -3
- package/src/sap/base/Event.js +1 -1
- package/src/sap/base/Eventing.js +1 -1
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/i18n/LanguageTag.js +1 -1
- package/src/sap/base/i18n/date/TimezoneUtils.js +159 -12
- package/src/sap/base/util/JSTokenizer.js +25 -18
- package/src/sap/base/util/LoaderExtensions.js +2 -8
- package/src/sap/base/util/mixedFetch.js +0 -1
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/base/util/syncFetch.js +0 -1
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +3 -3
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +14 -11
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +1 -1
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/base/SyncPromise.js +136 -25
- package/src/sap/ui/core/.library +5 -10
- package/src/sap/ui/core/AppCacheBuster.js +4 -9
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +1 -1
- package/src/sap/ui/core/ComponentContainer.js +1 -1
- package/src/sap/ui/core/ComponentMetadata.js +1 -1
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +1 -1
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/Core.js +2 -2
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/Element.js +3 -1
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +1 -1
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IconPool.js +20 -3
- package/src/sap/ui/core/IndicationColorSupport.js +1 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +1 -1
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +1 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +1 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +101 -79
- package/src/sap/ui/core/Manifest.js +1 -1
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/RenderManager.js +1 -1
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +1 -1
- package/src/sap/ui/core/UIArea.js +1 -1
- package/src/sap/ui/core/UIComponent.js +1 -1
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +22 -3
- package/src/sap/ui/core/_IconRegistry.js +2 -0
- package/src/sap/ui/core/boot/_bootConfig.js +134 -105
- package/src/sap/ui/core/cldr/Unicode-Data-Files-LICENSE.txt +36 -24
- package/src/sap/ui/core/cldr/ar.json +106 -98
- package/src/sap/ui/core/cldr/ar_EG.json +106 -98
- package/src/sap/ui/core/cldr/ar_SA.json +106 -98
- package/src/sap/ui/core/cldr/bg.json +44 -38
- package/src/sap/ui/core/cldr/ca.json +65 -65
- package/src/sap/ui/core/cldr/cnr.json +182 -170
- package/src/sap/ui/core/cldr/cs.json +39 -31
- package/src/sap/ui/core/cldr/cy.json +319 -233
- package/src/sap/ui/core/cldr/da.json +36 -32
- package/src/sap/ui/core/cldr/de.json +134 -135
- package/src/sap/ui/core/cldr/de_AT.json +134 -135
- package/src/sap/ui/core/cldr/de_CH.json +135 -136
- package/src/sap/ui/core/cldr/el.json +44 -37
- package/src/sap/ui/core/cldr/el_CY.json +44 -37
- package/src/sap/ui/core/cldr/en.json +91 -53
- package/src/sap/ui/core/cldr/en_AU.json +108 -70
- package/src/sap/ui/core/cldr/en_GB.json +123 -85
- package/src/sap/ui/core/cldr/en_HK.json +102 -64
- package/src/sap/ui/core/cldr/en_IE.json +102 -64
- package/src/sap/ui/core/cldr/en_IN.json +207 -67
- package/src/sap/ui/core/cldr/en_NZ.json +102 -64
- package/src/sap/ui/core/cldr/en_PG.json +102 -64
- package/src/sap/ui/core/cldr/en_SG.json +102 -64
- package/src/sap/ui/core/cldr/en_ZA.json +106 -66
- package/src/sap/ui/core/cldr/es.json +43 -39
- package/src/sap/ui/core/cldr/es_AR.json +92 -64
- package/src/sap/ui/core/cldr/es_BO.json +92 -64
- package/src/sap/ui/core/cldr/es_CL.json +92 -64
- package/src/sap/ui/core/cldr/es_CO.json +92 -64
- package/src/sap/ui/core/cldr/es_MX.json +131 -83
- package/src/sap/ui/core/cldr/es_PE.json +69 -41
- package/src/sap/ui/core/cldr/es_UY.json +93 -65
- package/src/sap/ui/core/cldr/es_VE.json +92 -64
- package/src/sap/ui/core/cldr/et.json +60 -59
- package/src/sap/ui/core/cldr/fa.json +122 -116
- package/src/sap/ui/core/cldr/fi.json +186 -82
- package/src/sap/ui/core/cldr/fr.json +57 -56
- package/src/sap/ui/core/cldr/fr_BE.json +56 -55
- package/src/sap/ui/core/cldr/fr_CA.json +139 -89
- package/src/sap/ui/core/cldr/fr_CH.json +47 -46
- package/src/sap/ui/core/cldr/fr_LU.json +57 -56
- package/src/sap/ui/core/cldr/he.json +458 -381
- package/src/sap/ui/core/cldr/hi.json +204 -170
- package/src/sap/ui/core/cldr/hr.json +64 -57
- package/src/sap/ui/core/cldr/hu.json +145 -148
- package/src/sap/ui/core/cldr/id.json +72 -62
- package/src/sap/ui/core/cldr/it.json +76 -75
- package/src/sap/ui/core/cldr/it_CH.json +76 -75
- package/src/sap/ui/core/cldr/ja.json +62 -44
- package/src/sap/ui/core/cldr/kk.json +171 -146
- package/src/sap/ui/core/cldr/ko.json +91 -73
- package/src/sap/ui/core/cldr/lt.json +134 -135
- package/src/sap/ui/core/cldr/lv.json +119 -111
- package/src/sap/ui/core/cldr/mk.json +316 -314
- package/src/sap/ui/core/cldr/ms.json +91 -75
- package/src/sap/ui/core/cldr/nb.json +37 -37
- package/src/sap/ui/core/cldr/nl.json +45 -48
- package/src/sap/ui/core/cldr/nl_BE.json +45 -48
- package/src/sap/ui/core/cldr/pl.json +47 -42
- package/src/sap/ui/core/cldr/pt.json +129 -124
- package/src/sap/ui/core/cldr/pt_PT.json +43 -38
- package/src/sap/ui/core/cldr/ro.json +42 -37
- package/src/sap/ui/core/cldr/ru.json +59 -51
- package/src/sap/ui/core/cldr/ru_UA.json +59 -51
- package/src/sap/ui/core/cldr/sk.json +55 -46
- package/src/sap/ui/core/cldr/sl.json +45 -31
- package/src/sap/ui/core/cldr/sr.json +189 -177
- package/src/sap/ui/core/cldr/sr_Latn.json +189 -177
- package/src/sap/ui/core/cldr/sv.json +42 -41
- package/src/sap/ui/core/cldr/th.json +104 -90
- package/src/sap/ui/core/cldr/tr.json +40 -39
- package/src/sap/ui/core/cldr/uk.json +143 -123
- package/src/sap/ui/core/cldr/vi.json +136 -133
- package/src/sap/ui/core/cldr/zh_CN.json +47 -41
- package/src/sap/ui/core/cldr/zh_HK.json +47 -41
- package/src/sap/ui/core/cldr/zh_SG.json +47 -41
- package/src/sap/ui/core/cldr/zh_TW.json +163 -160
- package/src/sap/ui/core/date/Buddhist.js +2 -2
- package/src/sap/ui/core/date/CalendarUtils.js +4 -4
- package/src/sap/ui/core/date/Gregorian.js +2 -2
- package/src/sap/ui/core/date/Islamic.js +2 -2
- package/src/sap/ui/core/date/Japanese.js +2 -2
- package/src/sap/ui/core/date/Persian.js +2 -2
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/UniversalDate.js +12 -12
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +7 -5
- package/src/sap/ui/core/dnd/DragAndDrop.js +14 -7
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/fieldhelp/FieldHelp.js +355 -53
- package/src/sap/ui/core/fieldhelp/FieldHelpUtil.js +10 -8
- package/src/sap/ui/core/format/DateFormat.js +18 -16
- package/src/sap/ui/core/format/FormatUtils.js +1 -1
- package/src/sap/ui/core/format/NumberFormat.js +346 -364
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +36 -5
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +1 -1
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageMixin.js +12 -4
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/messagebundle_ko.properties +1 -1
- package/src/sap/ui/core/messagebundle_sv.properties +1 -1
- package/src/sap/ui/core/mvc/HTMLView.js +1 -1
- package/src/sap/ui/core/mvc/JSONView.js +1 -1
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +1 -1
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/plugin/LessSupport.js +1 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/Support.js +1 -1
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +1 -1
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +1 -1
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/theming/Parameters.js +1 -6
- package/src/sap/ui/core/theming/ThemeManager.js +84 -33
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +5 -2
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +5 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +1 -1
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +21 -12
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +1 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalTreeBindingAdapter.js +51 -13
- package/src/sap/ui/model/base/ManagedObjectModel.js +5 -2
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +46 -14
- package/src/sap/ui/model/odata/ODataMetadata.js +2 -2
- package/src/sap/ui/model/odata/ODataModel.js +2 -2
- package/src/sap/ui/model/odata/ODataUtils.js +2 -2
- package/src/sap/ui/model/odata/UpdateMethod.js +18 -1
- package/src/sap/ui/model/odata/_AnnotationHelperExpression.js +2 -2
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +3 -3
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +2 -2
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +3 -3
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +4 -3
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +2 -2
- package/src/sap/ui/model/odata/v2/ODataModel.js +63 -37
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/Context.js +52 -23
- package/src/sap/ui/model/odata/v4/ODataBinding.js +9 -6
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +5 -4
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +137 -56
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +19 -8
- package/src/sap/ui/model/odata/v4/ODataModel.js +54 -33
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +10 -3
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +3 -4
- package/src/sap/ui/model/odata/v4/ODataUtils.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +33 -9
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +13 -16
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +334 -139
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +20 -0
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +26 -4
- package/src/sap/ui/model/odata/v4/lib/_V2Requestor.js +1 -1
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/qunit/utils/ControlIterator.js +1 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/test/BranchTracking.js +1 -1
- package/src/sap/ui/test/TestUtils.js +82 -14
- package/src/sap/ui/test/actions/EnterText.js +2 -20
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/starter/_setupAndStart.js +12 -3
- package/src/sap/ui/test/starter/_utils.js +0 -1
- package/src/sap/ui/thirdparty/jquery-compat.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader.js +4 -1
- package/test/sap/ui/qunit/TestRunner.js +10 -11
- package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +0 -5
- 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": "
|
|
4
|
-
"__buildtime": "
|
|
3
|
+
"__version": "46.1.0",
|
|
4
|
+
"__buildtime": "2025-01-28T09:40:27.437Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "afar",
|
|
7
7
|
"ab": "abház",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"bin": "bini",
|
|
62
62
|
"bkm": "kom",
|
|
63
63
|
"bla": "siksika",
|
|
64
|
+
"blo": "anii",
|
|
64
65
|
"bm": "bambara",
|
|
65
66
|
"bn": "bangla",
|
|
66
67
|
"bo": "tibeti",
|
|
@@ -292,6 +293,7 @@
|
|
|
292
293
|
"kv": "komi",
|
|
293
294
|
"kw": "korni",
|
|
294
295
|
"kwk": "kwakʼwala",
|
|
296
|
+
"kxv": "kuvi",
|
|
295
297
|
"ky": "kirgiz",
|
|
296
298
|
"la": "latin",
|
|
297
299
|
"lad": "ladino",
|
|
@@ -318,7 +320,6 @@
|
|
|
318
320
|
"lua": "luba-lulua",
|
|
319
321
|
"lui": "luiseno",
|
|
320
322
|
"lun": "lunda",
|
|
321
|
-
"luo": "luo",
|
|
322
323
|
"lus": "lushai",
|
|
323
324
|
"luy": "lujia",
|
|
324
325
|
"lv": "lett",
|
|
@@ -547,10 +548,10 @@
|
|
|
547
548
|
"und": "ismeretlen nyelv",
|
|
548
549
|
"ur": "urdu",
|
|
549
550
|
"uz": "üzbég",
|
|
550
|
-
"vai": "vai",
|
|
551
551
|
"ve": "venda",
|
|
552
552
|
"vec": "velencei",
|
|
553
553
|
"vi": "vietnámi",
|
|
554
|
+
"vmw": "makua",
|
|
554
555
|
"vo": "volapük",
|
|
555
556
|
"vot": "votják",
|
|
556
557
|
"vun": "vunjo",
|
|
@@ -564,6 +565,7 @@
|
|
|
564
565
|
"wuu": "wu kínai",
|
|
565
566
|
"xal": "kalmük",
|
|
566
567
|
"xh": "xhosza",
|
|
568
|
+
"xnr": "kangri",
|
|
567
569
|
"xog": "szoga",
|
|
568
570
|
"yao": "jaó",
|
|
569
571
|
"yap": "japi",
|
|
@@ -593,7 +595,6 @@
|
|
|
593
595
|
"scripts": {
|
|
594
596
|
"Adlm": "Adlam",
|
|
595
597
|
"Aghb": "Kaukázusi albaniai",
|
|
596
|
-
"Arab": "Arab",
|
|
597
598
|
"Arab-alt-variant": "Perzsa-arab",
|
|
598
599
|
"Aran": "Nasztalik",
|
|
599
600
|
"Armi": "Birodalmi arámi",
|
|
@@ -647,7 +648,6 @@
|
|
|
647
648
|
"Hung": "Ómagyar",
|
|
648
649
|
"Inds": "Indus",
|
|
649
650
|
"Ital": "Régi olasz",
|
|
650
|
-
"Jamo": "Jamo",
|
|
651
651
|
"Java": "Jávai",
|
|
652
652
|
"Jpan": "Japán",
|
|
653
653
|
"Kali": "Kajah li",
|
|
@@ -722,7 +722,6 @@
|
|
|
722
722
|
"Tfng": "Berber",
|
|
723
723
|
"Tglg": "Tagalog",
|
|
724
724
|
"Thaa": "Thaana",
|
|
725
|
-
"Thai": "Thai",
|
|
726
725
|
"Tibt": "Tibeti",
|
|
727
726
|
"Ugar": "Ugari",
|
|
728
727
|
"Vaii": "Vai",
|
|
@@ -1137,11 +1136,11 @@
|
|
|
1137
1136
|
"intervalFormats": {
|
|
1138
1137
|
"intervalFormatFallback": "{0} – {1}",
|
|
1139
1138
|
"Bh": {
|
|
1140
|
-
"B": "h B
|
|
1139
|
+
"B": "h B – h B",
|
|
1141
1140
|
"h": "h–h B"
|
|
1142
1141
|
},
|
|
1143
1142
|
"Bhm": {
|
|
1144
|
-
"B": "h:mm B
|
|
1143
|
+
"B": "h:mm B – h:mm B",
|
|
1145
1144
|
"h": "h:mm–h:mm B",
|
|
1146
1145
|
"m": "h:mm–h:mm B"
|
|
1147
1146
|
},
|
|
@@ -1149,42 +1148,42 @@
|
|
|
1149
1148
|
"d": "d–d."
|
|
1150
1149
|
},
|
|
1151
1150
|
"Gy": {
|
|
1152
|
-
"G": "G y
|
|
1151
|
+
"G": "G y – G y",
|
|
1153
1152
|
"y": "G y–y"
|
|
1154
1153
|
},
|
|
1155
1154
|
"GyM": {
|
|
1156
|
-
"G": "GGGGG y-MM
|
|
1157
|
-
"M": "GGGGG y-MM
|
|
1158
|
-
"y": "GGGGG y-MM
|
|
1155
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
1156
|
+
"M": "GGGGG y-MM – y-MM",
|
|
1157
|
+
"y": "GGGGG y-MM – y-MM"
|
|
1159
1158
|
},
|
|
1160
1159
|
"GyMd": {
|
|
1161
|
-
"d": "GGGGG y-MM-dd
|
|
1162
|
-
"G": "GGGGG y-MM-dd
|
|
1163
|
-
"M": "GGGGG y-MM-dd
|
|
1164
|
-
"y": "GGGGG y-MM-dd
|
|
1160
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
1161
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
1162
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
1163
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
1165
1164
|
},
|
|
1166
1165
|
"GyMEd": {
|
|
1167
|
-
"d": "GGGGG y-MM-dd, E
|
|
1168
|
-
"G": "GGGGG y-MM-dd, E
|
|
1169
|
-
"M": "GGGGG y-MM-dd, E
|
|
1170
|
-
"y": "GGGGG y-MM-dd, E
|
|
1166
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1167
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
1168
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1169
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
1171
1170
|
},
|
|
1172
1171
|
"GyMMM": {
|
|
1173
|
-
"G": "G y MMM
|
|
1172
|
+
"G": "G y MMM – G y MMM",
|
|
1174
1173
|
"M": "G y MMM–MMM",
|
|
1175
|
-
"y": "G y MMM
|
|
1174
|
+
"y": "G y MMM – y MMM"
|
|
1176
1175
|
},
|
|
1177
1176
|
"GyMMMd": {
|
|
1178
1177
|
"d": "G y MMM d–d",
|
|
1179
|
-
"G": "G y MMM d
|
|
1180
|
-
"M": "G y MMM d
|
|
1181
|
-
"y": "G y MMM d
|
|
1178
|
+
"G": "G y MMM d – G y MMM d",
|
|
1179
|
+
"M": "G y MMM d – MMM d",
|
|
1180
|
+
"y": "G y MMM d – y MMM d"
|
|
1182
1181
|
},
|
|
1183
1182
|
"GyMMMEd": {
|
|
1184
|
-
"d": "G y MMM d, E
|
|
1185
|
-
"G": "G y MMM d, E
|
|
1186
|
-
"M": "G y MMM d, E
|
|
1187
|
-
"y": "G y MMM d, E
|
|
1183
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
1184
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
1185
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
1186
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
1188
1187
|
},
|
|
1189
1188
|
"h": {
|
|
1190
1189
|
"a": "a h – a h",
|
|
@@ -1674,11 +1673,11 @@
|
|
|
1674
1673
|
"intervalFormats": {
|
|
1675
1674
|
"intervalFormatFallback": "{0} – {1}",
|
|
1676
1675
|
"Bh": {
|
|
1677
|
-
"B": "h B
|
|
1676
|
+
"B": "h B – h B",
|
|
1678
1677
|
"h": "h–h B"
|
|
1679
1678
|
},
|
|
1680
1679
|
"Bhm": {
|
|
1681
|
-
"B": "h:mm B
|
|
1680
|
+
"B": "h:mm B – h:mm B",
|
|
1682
1681
|
"h": "h:mm–h:mm B",
|
|
1683
1682
|
"m": "h:mm – h:mm B"
|
|
1684
1683
|
},
|
|
@@ -1686,42 +1685,42 @@
|
|
|
1686
1685
|
"d": "d–d."
|
|
1687
1686
|
},
|
|
1688
1687
|
"Gy": {
|
|
1689
|
-
"G": "G y
|
|
1688
|
+
"G": "G y – G y",
|
|
1690
1689
|
"y": "G y–y"
|
|
1691
1690
|
},
|
|
1692
1691
|
"GyM": {
|
|
1693
|
-
"G": "GGGGG y-MM
|
|
1694
|
-
"M": "GGGGG y-MM
|
|
1695
|
-
"y": "GGGGG y-MM
|
|
1692
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
1693
|
+
"M": "GGGGG y-MM – y-MM",
|
|
1694
|
+
"y": "GGGGG y-MM – y-MM"
|
|
1696
1695
|
},
|
|
1697
1696
|
"GyMd": {
|
|
1698
|
-
"d": "GGGGG y-MM-dd
|
|
1699
|
-
"G": "GGGGG y-MM-dd
|
|
1700
|
-
"M": "GGGGG y-MM-dd
|
|
1701
|
-
"y": "GGGGG y-MM-dd
|
|
1697
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
1698
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
1699
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
1700
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
1702
1701
|
},
|
|
1703
1702
|
"GyMEd": {
|
|
1704
|
-
"d": "GGGGG y-MM-dd, E
|
|
1705
|
-
"G": "GGGGG y-MM-dd, E
|
|
1706
|
-
"M": "GGGGG y-MM-dd, E
|
|
1707
|
-
"y": "GGGGG y-MM-dd, E
|
|
1703
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1704
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
1705
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1706
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
1708
1707
|
},
|
|
1709
1708
|
"GyMMM": {
|
|
1710
|
-
"G": "G y MMM
|
|
1709
|
+
"G": "G y MMM – G y MMM",
|
|
1711
1710
|
"M": "G y MMM–MMM",
|
|
1712
|
-
"y": "G y MMM
|
|
1711
|
+
"y": "G y MMM – y MMM"
|
|
1713
1712
|
},
|
|
1714
1713
|
"GyMMMd": {
|
|
1715
1714
|
"d": "G y MMM d–d",
|
|
1716
|
-
"G": "G y MMM d
|
|
1717
|
-
"M": "G y MMM d
|
|
1718
|
-
"y": "G y MMM d
|
|
1715
|
+
"G": "G y MMM d – G y MMM d",
|
|
1716
|
+
"M": "G y MMM d – MMM d",
|
|
1717
|
+
"y": "G y MMM d – y MMM d"
|
|
1719
1718
|
},
|
|
1720
1719
|
"GyMMMEd": {
|
|
1721
|
-
"d": "G y MMM d, E
|
|
1722
|
-
"G": "G y MMM d, E
|
|
1723
|
-
"M": "G y MMM d, E
|
|
1724
|
-
"y": "G y MMM d, E
|
|
1720
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
1721
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
1722
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
1723
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
1725
1724
|
},
|
|
1726
1725
|
"h": {
|
|
1727
1726
|
"a": "a h – a h",
|
|
@@ -2208,11 +2207,11 @@
|
|
|
2208
2207
|
"intervalFormats": {
|
|
2209
2208
|
"intervalFormatFallback": "{0} – {1}",
|
|
2210
2209
|
"Bh": {
|
|
2211
|
-
"B": "h B
|
|
2210
|
+
"B": "h B – h B",
|
|
2212
2211
|
"h": "h–h B"
|
|
2213
2212
|
},
|
|
2214
2213
|
"Bhm": {
|
|
2215
|
-
"B": "h:mm B
|
|
2214
|
+
"B": "h:mm B – h:mm B",
|
|
2216
2215
|
"h": "h:mm–h:mm B",
|
|
2217
2216
|
"m": "h:mm – h:mm B"
|
|
2218
2217
|
},
|
|
@@ -2220,42 +2219,42 @@
|
|
|
2220
2219
|
"d": "d–d."
|
|
2221
2220
|
},
|
|
2222
2221
|
"Gy": {
|
|
2223
|
-
"G": "G y
|
|
2222
|
+
"G": "G y – G y",
|
|
2224
2223
|
"y": "G y–y"
|
|
2225
2224
|
},
|
|
2226
2225
|
"GyM": {
|
|
2227
|
-
"G": "GGGGG y-MM
|
|
2228
|
-
"M": "GGGGG y-MM
|
|
2229
|
-
"y": "GGGGG y-MM
|
|
2226
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
2227
|
+
"M": "GGGGG y-MM – y-MM",
|
|
2228
|
+
"y": "GGGGG y-MM – y-MM"
|
|
2230
2229
|
},
|
|
2231
2230
|
"GyMd": {
|
|
2232
|
-
"d": "GGGGG y-MM-dd
|
|
2233
|
-
"G": "GGGGG y-MM-dd
|
|
2234
|
-
"M": "GGGGG y-MM-dd
|
|
2235
|
-
"y": "GGGGG y-MM-dd
|
|
2231
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
2232
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
2233
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
2234
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
2236
2235
|
},
|
|
2237
2236
|
"GyMEd": {
|
|
2238
|
-
"d": "GGGGG y-MM-dd, E
|
|
2239
|
-
"G": "GGGGG y-MM-dd, E
|
|
2240
|
-
"M": "GGGGG y-MM-dd, E
|
|
2241
|
-
"y": "GGGGG y-MM-dd, E
|
|
2237
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2238
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
2239
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2240
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
2242
2241
|
},
|
|
2243
2242
|
"GyMMM": {
|
|
2244
|
-
"G": "G y MMM
|
|
2243
|
+
"G": "G y MMM – G y MMM",
|
|
2245
2244
|
"M": "G y MMM–MMM",
|
|
2246
|
-
"y": "G y MMM
|
|
2245
|
+
"y": "G y MMM – y MMM"
|
|
2247
2246
|
},
|
|
2248
2247
|
"GyMMMd": {
|
|
2249
2248
|
"d": "G y MMM d–d",
|
|
2250
|
-
"G": "G y MMM d
|
|
2251
|
-
"M": "G y MMM d
|
|
2252
|
-
"y": "G y MMM d
|
|
2249
|
+
"G": "G y MMM d – G y MMM d",
|
|
2250
|
+
"M": "G y MMM d – MMM d",
|
|
2251
|
+
"y": "G y MMM d – y MMM d"
|
|
2253
2252
|
},
|
|
2254
2253
|
"GyMMMEd": {
|
|
2255
|
-
"d": "G y MMM d, E
|
|
2256
|
-
"G": "G y MMM d, E
|
|
2257
|
-
"M": "G y MMM d, E
|
|
2258
|
-
"y": "G y MMM d, E
|
|
2254
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
2255
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
2256
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
2257
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
2259
2258
|
},
|
|
2260
2259
|
"h": {
|
|
2261
2260
|
"a": "a h – a h",
|
|
@@ -2762,11 +2761,11 @@
|
|
|
2762
2761
|
"intervalFormats": {
|
|
2763
2762
|
"intervalFormatFallback": "{0} – {1}",
|
|
2764
2763
|
"Bh": {
|
|
2765
|
-
"B": "h B
|
|
2764
|
+
"B": "h B – h B",
|
|
2766
2765
|
"h": "h–h B"
|
|
2767
2766
|
},
|
|
2768
2767
|
"Bhm": {
|
|
2769
|
-
"B": "h:mm B
|
|
2768
|
+
"B": "h:mm B – h:mm B",
|
|
2770
2769
|
"h": "h:mm–h:mm B",
|
|
2771
2770
|
"m": "h:mm – h:mm B"
|
|
2772
2771
|
},
|
|
@@ -2774,42 +2773,42 @@
|
|
|
2774
2773
|
"d": "d–d."
|
|
2775
2774
|
},
|
|
2776
2775
|
"Gy": {
|
|
2777
|
-
"G": "G y
|
|
2776
|
+
"G": "G y – G y",
|
|
2778
2777
|
"y": "G y–y"
|
|
2779
2778
|
},
|
|
2780
2779
|
"GyM": {
|
|
2781
|
-
"G": "GGGGG y-MM
|
|
2782
|
-
"M": "GGGGG y-MM
|
|
2783
|
-
"y": "GGGGG y-MM
|
|
2780
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
2781
|
+
"M": "GGGGG y-MM – y-MM",
|
|
2782
|
+
"y": "GGGGG y-MM – y-MM"
|
|
2784
2783
|
},
|
|
2785
2784
|
"GyMd": {
|
|
2786
|
-
"d": "GGGGG y-MM-dd
|
|
2787
|
-
"G": "GGGGG y-MM-dd
|
|
2788
|
-
"M": "GGGGG y-MM-dd
|
|
2789
|
-
"y": "GGGGG y-MM-dd
|
|
2785
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
2786
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
2787
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
2788
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
2790
2789
|
},
|
|
2791
2790
|
"GyMEd": {
|
|
2792
|
-
"d": "GGGGG y-MM-dd, E
|
|
2793
|
-
"G": "GGGGG y-MM-dd, E
|
|
2794
|
-
"M": "GGGGG y-MM-dd, E
|
|
2795
|
-
"y": "GGGGG y-MM-dd, E
|
|
2791
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2792
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
2793
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2794
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
2796
2795
|
},
|
|
2797
2796
|
"GyMMM": {
|
|
2798
|
-
"G": "G y MMM
|
|
2797
|
+
"G": "G y MMM – G y MMM",
|
|
2799
2798
|
"M": "G y MMM–MMM",
|
|
2800
|
-
"y": "G y MMM
|
|
2799
|
+
"y": "G y MMM – y MMM"
|
|
2801
2800
|
},
|
|
2802
2801
|
"GyMMMd": {
|
|
2803
2802
|
"d": "G y MMM d–d",
|
|
2804
|
-
"G": "G y MMM d
|
|
2805
|
-
"M": "G y MMM d
|
|
2806
|
-
"y": "G y MMM d
|
|
2803
|
+
"G": "G y MMM d – G y MMM d",
|
|
2804
|
+
"M": "G y MMM d – MMM d",
|
|
2805
|
+
"y": "G y MMM d – y MMM d"
|
|
2807
2806
|
},
|
|
2808
2807
|
"GyMMMEd": {
|
|
2809
|
-
"d": "G y MMM d, E
|
|
2810
|
-
"G": "G y MMM d, E
|
|
2811
|
-
"M": "G y MMM d, E
|
|
2812
|
-
"y": "G y MMM d, E
|
|
2808
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
2809
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
2810
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
2811
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
2813
2812
|
},
|
|
2814
2813
|
"h": {
|
|
2815
2814
|
"a": "a h – a h",
|
|
@@ -3296,11 +3295,11 @@
|
|
|
3296
3295
|
"intervalFormats": {
|
|
3297
3296
|
"intervalFormatFallback": "{0} – {1}",
|
|
3298
3297
|
"Bh": {
|
|
3299
|
-
"B": "h B
|
|
3298
|
+
"B": "h B – h B",
|
|
3300
3299
|
"h": "h–h B"
|
|
3301
3300
|
},
|
|
3302
3301
|
"Bhm": {
|
|
3303
|
-
"B": "h:mm B
|
|
3302
|
+
"B": "h:mm B – h:mm B",
|
|
3304
3303
|
"h": "h:mm–h:mm B",
|
|
3305
3304
|
"m": "h:mm – h:mm B"
|
|
3306
3305
|
},
|
|
@@ -3308,42 +3307,42 @@
|
|
|
3308
3307
|
"d": "d–d."
|
|
3309
3308
|
},
|
|
3310
3309
|
"Gy": {
|
|
3311
|
-
"G": "G y
|
|
3310
|
+
"G": "G y – G y",
|
|
3312
3311
|
"y": "G y–y"
|
|
3313
3312
|
},
|
|
3314
3313
|
"GyM": {
|
|
3315
|
-
"G": "GGGGG y-MM
|
|
3316
|
-
"M": "GGGGG y-MM
|
|
3317
|
-
"y": "GGGGG y-MM
|
|
3314
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
3315
|
+
"M": "GGGGG y-MM – y-MM",
|
|
3316
|
+
"y": "GGGGG y-MM – y-MM"
|
|
3318
3317
|
},
|
|
3319
3318
|
"GyMd": {
|
|
3320
|
-
"d": "GGGGG y-MM-dd
|
|
3321
|
-
"G": "GGGGG y-MM-dd
|
|
3322
|
-
"M": "GGGGG y-MM-dd
|
|
3323
|
-
"y": "GGGGG y-MM-dd
|
|
3319
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
3320
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
3321
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
3322
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
3324
3323
|
},
|
|
3325
3324
|
"GyMEd": {
|
|
3326
|
-
"d": "GGGGG y-MM-dd, E
|
|
3327
|
-
"G": "GGGGG y-MM-dd, E
|
|
3328
|
-
"M": "GGGGG y-MM-dd, E
|
|
3329
|
-
"y": "GGGGG y-MM-dd, E
|
|
3325
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
3326
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
3327
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
3328
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
3330
3329
|
},
|
|
3331
3330
|
"GyMMM": {
|
|
3332
|
-
"G": "G y MMM
|
|
3331
|
+
"G": "G y MMM – G y MMM",
|
|
3333
3332
|
"M": "G y MMM–MMM",
|
|
3334
|
-
"y": "G y MMM
|
|
3333
|
+
"y": "G y MMM – y MMM"
|
|
3335
3334
|
},
|
|
3336
3335
|
"GyMMMd": {
|
|
3337
3336
|
"d": "G y MMM d–d",
|
|
3338
|
-
"G": "G y MMM d
|
|
3339
|
-
"M": "G y MMM d
|
|
3340
|
-
"y": "G y MMM d
|
|
3337
|
+
"G": "G y MMM d – G y MMM d",
|
|
3338
|
+
"M": "G y MMM d – MMM d",
|
|
3339
|
+
"y": "G y MMM d – y MMM d"
|
|
3341
3340
|
},
|
|
3342
3341
|
"GyMMMEd": {
|
|
3343
|
-
"d": "G y MMM d, E
|
|
3344
|
-
"G": "G y MMM d, E
|
|
3345
|
-
"M": "G y MMM d, E
|
|
3346
|
-
"y": "G y MMM d, E
|
|
3342
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
3343
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
3344
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
3345
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
3347
3346
|
},
|
|
3348
3347
|
"h": {
|
|
3349
3348
|
"a": "a h – a h",
|
|
@@ -4096,7 +4095,7 @@
|
|
|
4096
4095
|
"Accra": "Accra",
|
|
4097
4096
|
"Addis_Ababa": "Addisz-Abeba",
|
|
4098
4097
|
"Algiers": "Algír",
|
|
4099
|
-
"Asmara": "
|
|
4098
|
+
"Asmara": "Aszmara",
|
|
4100
4099
|
"Bamako": "Bamako",
|
|
4101
4100
|
"Bangui": "Bangui",
|
|
4102
4101
|
"Banjul": "Banjul",
|
|
@@ -4255,7 +4254,6 @@
|
|
|
4255
4254
|
"Montserrat": "Montserrat",
|
|
4256
4255
|
"Nassau": "Nassau",
|
|
4257
4256
|
"New_York": "New York",
|
|
4258
|
-
"Nipigon": "Nipigon",
|
|
4259
4257
|
"Nome": "Nome",
|
|
4260
4258
|
"Noronha": "Noronha",
|
|
4261
4259
|
"North_Dakota": {
|
|
@@ -4266,7 +4264,6 @@
|
|
|
4266
4264
|
"Nuuk": "Nuuk",
|
|
4267
4265
|
"Ojinaga": "Ojinaga",
|
|
4268
4266
|
"Panama": "Panama",
|
|
4269
|
-
"Pangnirtung": "Pangnirtung",
|
|
4270
4267
|
"Paramaribo": "Paramaribo",
|
|
4271
4268
|
"Phoenix": "Phoenix",
|
|
4272
4269
|
"Port-au-Prince": "Port-au-Prince",
|
|
@@ -4274,13 +4271,11 @@
|
|
|
4274
4271
|
"Porto_Velho": "Porto Velho",
|
|
4275
4272
|
"Puerto_Rico": "Puerto Rico",
|
|
4276
4273
|
"Punta_Arenas": "Punta Arenas",
|
|
4277
|
-
"Rainy_River": "Rainy River",
|
|
4278
4274
|
"Rankin_Inlet": "Rankin Inlet",
|
|
4279
4275
|
"Recife": "Recife",
|
|
4280
4276
|
"Regina": "Regina",
|
|
4281
4277
|
"Resolute": "Resolute",
|
|
4282
4278
|
"Rio_Branco": "Río Branco",
|
|
4283
|
-
"Santa_Isabel": "Santa Isabel",
|
|
4284
4279
|
"Santarem": "Santarem",
|
|
4285
4280
|
"Santiago": "Santiago",
|
|
4286
4281
|
"Santo_Domingo": "Santo Domingo",
|
|
@@ -4296,7 +4291,6 @@
|
|
|
4296
4291
|
"Swift_Current": "Swift Current",
|
|
4297
4292
|
"Tegucigalpa": "Tegucigalpa",
|
|
4298
4293
|
"Thule": "Thule",
|
|
4299
|
-
"Thunder_Bay": "Thunder Bay",
|
|
4300
4294
|
"Tijuana": "Tijuana",
|
|
4301
4295
|
"Toronto": "Toronto",
|
|
4302
4296
|
"Tortola": "Tortola",
|
|
@@ -4304,7 +4298,6 @@
|
|
|
4304
4298
|
"Whitehorse": "Whitehorse",
|
|
4305
4299
|
"Winnipeg": "Winnipeg",
|
|
4306
4300
|
"Yakutat": "Yakutat",
|
|
4307
|
-
"Yellowknife": "Yellowknife",
|
|
4308
4301
|
"_parent": "Amerika"
|
|
4309
4302
|
},
|
|
4310
4303
|
"Antarctica": {
|
|
@@ -4342,7 +4335,6 @@
|
|
|
4342
4335
|
"Bishkek": "Biskek",
|
|
4343
4336
|
"Brunei": "Brunei",
|
|
4344
4337
|
"Chita": "Csita",
|
|
4345
|
-
"Choibalsan": "Csojbalszan",
|
|
4346
4338
|
"Colombo": "Colombo",
|
|
4347
4339
|
"Damascus": "Damaszkusz",
|
|
4348
4340
|
"Dhaka": "Dakka",
|
|
@@ -4491,7 +4483,6 @@
|
|
|
4491
4483
|
"Tallinn": "Tallin",
|
|
4492
4484
|
"Tirane": "Tirana",
|
|
4493
4485
|
"Ulyanovsk": "Uljanovszk",
|
|
4494
|
-
"Uzhgorod": "Ungvár",
|
|
4495
4486
|
"Vaduz": "Vaduz",
|
|
4496
4487
|
"Vatican": "Vatikán",
|
|
4497
4488
|
"Vienna": "Bécs",
|
|
@@ -4499,7 +4490,6 @@
|
|
|
4499
4490
|
"Volgograd": "Volgográd",
|
|
4500
4491
|
"Warsaw": "Varsó",
|
|
4501
4492
|
"Zagreb": "Zágráb",
|
|
4502
|
-
"Zaporozhye": "Zaporizzsja",
|
|
4503
4493
|
"Zurich": "Zürich",
|
|
4504
4494
|
"_parent": "Európa"
|
|
4505
4495
|
},
|
|
@@ -4623,21 +4613,13 @@
|
|
|
4623
4613
|
},
|
|
4624
4614
|
"currencyFormat": {
|
|
4625
4615
|
"standard": "#,##0.00 ¤",
|
|
4616
|
+
"standard-noCurrency": "#,##0.00",
|
|
4626
4617
|
"accounting": "#,##0.00 ¤",
|
|
4627
|
-
"
|
|
4628
|
-
"beforeCurrency": {
|
|
4629
|
-
"currencyMatch": "[[:^S:]&[:^Z:]]",
|
|
4630
|
-
"surroundingMatch": "[:digit:]",
|
|
4631
|
-
"insertBetween": " "
|
|
4632
|
-
},
|
|
4633
|
-
"afterCurrency": {
|
|
4634
|
-
"currencyMatch": "[[:^S:]&[:^Z:]]",
|
|
4635
|
-
"surroundingMatch": "[:digit:]",
|
|
4636
|
-
"insertBetween": " "
|
|
4637
|
-
}
|
|
4638
|
-
},
|
|
4618
|
+
"accounting-noCurrency": "#,##0.00",
|
|
4639
4619
|
"sap-standard": "#,##0.00 ¤",
|
|
4640
|
-
"sap-accounting": "#,##0.00 ¤"
|
|
4620
|
+
"sap-accounting": "#,##0.00 ¤",
|
|
4621
|
+
"sap-standard-noCurrency": "#,##0.00",
|
|
4622
|
+
"sap-accounting-noCurrency": "#,##0.00"
|
|
4641
4623
|
},
|
|
4642
4624
|
"miscPattern": {
|
|
4643
4625
|
"approximately": "~{0}",
|
|
@@ -4688,6 +4670,7 @@
|
|
|
4688
4670
|
"HUF": "Ft",
|
|
4689
4671
|
"JPY": "¥",
|
|
4690
4672
|
"XAF": "FCFA",
|
|
4673
|
+
"XCG": "Cg.",
|
|
4691
4674
|
"XOF": "F CFA",
|
|
4692
4675
|
"XPF": "CFPF",
|
|
4693
4676
|
"XXX": "¤"
|
|
@@ -5654,6 +5637,20 @@
|
|
|
5654
5637
|
"unitPattern-count-one": "{0} bir. qt",
|
|
5655
5638
|
"unitPattern-count-other": "{0} bir. qt"
|
|
5656
5639
|
},
|
|
5640
|
+
"speed-light-speed": {
|
|
5641
|
+
"displayName": "light",
|
|
5642
|
+
"unitPattern-count-other": "{0} light"
|
|
5643
|
+
},
|
|
5644
|
+
"concentr-portion-per-1e9": {
|
|
5645
|
+
"displayName": "ppb",
|
|
5646
|
+
"unitPattern-count-other": "{0} ppb"
|
|
5647
|
+
},
|
|
5648
|
+
"duration-night": {
|
|
5649
|
+
"displayName": "éjszakák",
|
|
5650
|
+
"unitPattern-count-one": "{0} éjszaka",
|
|
5651
|
+
"unitPattern-count-other": "{0} éjszaka",
|
|
5652
|
+
"perUnitPattern": "{0}/éjszaka"
|
|
5653
|
+
},
|
|
5657
5654
|
"coordinateUnit": {
|
|
5658
5655
|
"displayName": "irány",
|
|
5659
5656
|
"east": "{0} K",
|
|
@@ -5664,9 +5661,9 @@
|
|
|
5664
5661
|
}
|
|
5665
5662
|
},
|
|
5666
5663
|
"lenient-scope-number": {
|
|
5667
|
-
"minusSign": "
|
|
5668
|
-
"commaSign": "
|
|
5669
|
-
"plusSign": "
|
|
5664
|
+
"minusSign": "--﹣‑‒−⁻₋➖",
|
|
5665
|
+
"commaSign": ",,﹐︐،٫、﹑、︑",
|
|
5666
|
+
"plusSign": "++﬩﹢⁺₊➕"
|
|
5670
5667
|
},
|
|
5671
5668
|
"currencyFormat-sap-short": {
|
|
5672
5669
|
"1000-one": "0 E ¤",
|