@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": "अफ़ार",
|
|
7
7
|
"ab": "अब्ख़ाज़ियन",
|
|
@@ -47,6 +47,7 @@
|
|
|
47
47
|
"be": "बेलारूसी",
|
|
48
48
|
"bej": "बेजा",
|
|
49
49
|
"bem": "बेम्बा",
|
|
50
|
+
"bew": "बेतावी",
|
|
50
51
|
"bez": "बेना",
|
|
51
52
|
"bg": "बुल्गारियाई",
|
|
52
53
|
"bgc": "हरियाणवी",
|
|
@@ -56,6 +57,7 @@
|
|
|
56
57
|
"bik": "बिकोल",
|
|
57
58
|
"bin": "बिनी",
|
|
58
59
|
"bla": "सिक्सिका",
|
|
60
|
+
"blo": "अनी",
|
|
59
61
|
"bm": "बाम्बारा",
|
|
60
62
|
"bn": "बंगाली",
|
|
61
63
|
"bo": "तिब्बती",
|
|
@@ -63,6 +65,7 @@
|
|
|
63
65
|
"bra": "ब्रज",
|
|
64
66
|
"brx": "बोडो",
|
|
65
67
|
"bs": "बोस्नियाई",
|
|
68
|
+
"bss": "अकूसे",
|
|
66
69
|
"bua": "बुरियात",
|
|
67
70
|
"bug": "बगिनीस",
|
|
68
71
|
"byn": "ब्लिन",
|
|
@@ -85,6 +88,7 @@
|
|
|
85
88
|
"chp": "शिपेव्यान",
|
|
86
89
|
"chr": "चेरोकी",
|
|
87
90
|
"chy": "शेयेन्न",
|
|
91
|
+
"cic": "चिकसॉ",
|
|
88
92
|
"ckb": "सोरानी कुर्दिश",
|
|
89
93
|
"ckb_alt-menu": "कुर्दी, सोरानी",
|
|
90
94
|
"ckb_alt-variant": "सोरानी कुर्दिश",
|
|
@@ -203,6 +207,7 @@
|
|
|
203
207
|
"hil": "हिलिगेनन",
|
|
204
208
|
"hit": "हिताइत",
|
|
205
209
|
"hmn": "ह्मॉंग",
|
|
210
|
+
"hnj": "हमोंग नजुआ",
|
|
206
211
|
"ho": "हिरी मोटू",
|
|
207
212
|
"hr": "क्रोएशियाई",
|
|
208
213
|
"hsb": "ऊपरी सॉर्बियन",
|
|
@@ -279,6 +284,7 @@
|
|
|
279
284
|
"kv": "कोमी",
|
|
280
285
|
"kw": "कोर्निश",
|
|
281
286
|
"kwk": "क्वॉकवाला",
|
|
287
|
+
"kxv": "कुवी",
|
|
282
288
|
"ky": "किर्गीज़",
|
|
283
289
|
"la": "लैटिन",
|
|
284
290
|
"lad": "लादीनो",
|
|
@@ -289,6 +295,7 @@
|
|
|
289
295
|
"lez": "लेज़्घीयन",
|
|
290
296
|
"lg": "गांडा",
|
|
291
297
|
"li": "लिंबर्गिश",
|
|
298
|
+
"lij": "लिगुरियन",
|
|
292
299
|
"lil": "लिलोएट",
|
|
293
300
|
"lkt": "लैकोटा",
|
|
294
301
|
"lmo": "लॉमबर्ड",
|
|
@@ -482,6 +489,7 @@
|
|
|
482
489
|
"swb": "कोमोरियन",
|
|
483
490
|
"syc": "क्लासिकल सिरिएक",
|
|
484
491
|
"syr": "सिरिएक",
|
|
492
|
+
"szl": "सायलिज़ियन",
|
|
485
493
|
"ta": "तमिल",
|
|
486
494
|
"tce": "दक्षिणी टशोनी",
|
|
487
495
|
"te": "तेलुगू",
|
|
@@ -530,7 +538,9 @@
|
|
|
530
538
|
"uz": "उज़्बेक",
|
|
531
539
|
"vai": "वाई",
|
|
532
540
|
"ve": "वेन्दा",
|
|
541
|
+
"vec": "वनीशन",
|
|
533
542
|
"vi": "वियतनामी",
|
|
543
|
+
"vmw": "मखुवा",
|
|
534
544
|
"vo": "वोलापुक",
|
|
535
545
|
"vot": "वॉटिक",
|
|
536
546
|
"vun": "वुंजो",
|
|
@@ -544,6 +554,7 @@
|
|
|
544
554
|
"wuu": "वू चीनी",
|
|
545
555
|
"xal": "काल्मिक",
|
|
546
556
|
"xh": "ख़ोसा",
|
|
557
|
+
"xnr": "कांगड़ी",
|
|
547
558
|
"xog": "सोगा",
|
|
548
559
|
"yao": "याओ",
|
|
549
560
|
"yap": "यापीस",
|
|
@@ -1062,7 +1073,7 @@
|
|
|
1062
1073
|
"GyMMM": "MMM G y",
|
|
1063
1074
|
"GyMMMd": "d MMM y G",
|
|
1064
1075
|
"GyMMMEd": "E, d MMM y G",
|
|
1065
|
-
"h": "h
|
|
1076
|
+
"h": "h a",
|
|
1066
1077
|
"H": "HH",
|
|
1067
1078
|
"hm": "h:mm a",
|
|
1068
1079
|
"Hm": "HH:mm",
|
|
@@ -1125,52 +1136,52 @@
|
|
|
1125
1136
|
"d": "d–d"
|
|
1126
1137
|
},
|
|
1127
1138
|
"Gy": {
|
|
1128
|
-
"G": "G y
|
|
1139
|
+
"G": "G y – G y",
|
|
1129
1140
|
"y": "G y–y"
|
|
1130
1141
|
},
|
|
1131
1142
|
"GyM": {
|
|
1132
|
-
"G": "GGGGG y-MM
|
|
1133
|
-
"M": "GGGGG y-MM
|
|
1134
|
-
"y": "GGGGG y-MM
|
|
1143
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
1144
|
+
"M": "GGGGG y-MM – y-MM",
|
|
1145
|
+
"y": "GGGGG y-MM – y-MM"
|
|
1135
1146
|
},
|
|
1136
1147
|
"GyMd": {
|
|
1137
|
-
"d": "GGGGG y-MM-dd
|
|
1138
|
-
"G": "GGGGG y-MM-dd
|
|
1139
|
-
"M": "GGGGG y-MM-dd
|
|
1140
|
-
"y": "GGGGG y-MM-dd
|
|
1148
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
1149
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
1150
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
1151
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
1141
1152
|
},
|
|
1142
1153
|
"GyMEd": {
|
|
1143
|
-
"d": "GGGGG y-MM-dd, E
|
|
1144
|
-
"G": "GGGGG y-MM-dd, E
|
|
1145
|
-
"M": "GGGGG y-MM-dd, E
|
|
1146
|
-
"y": "GGGGG y-MM-dd, E
|
|
1154
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1155
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
1156
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1157
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
1147
1158
|
},
|
|
1148
1159
|
"GyMMM": {
|
|
1149
|
-
"G": "G y MMM
|
|
1160
|
+
"G": "G y MMM – G y MMM",
|
|
1150
1161
|
"M": "G y MMM–MMM",
|
|
1151
|
-
"y": "G y MMM
|
|
1162
|
+
"y": "G y MMM – y MMM"
|
|
1152
1163
|
},
|
|
1153
1164
|
"GyMMMd": {
|
|
1154
1165
|
"d": "G y MMM d–d",
|
|
1155
|
-
"G": "G y MMM d
|
|
1156
|
-
"M": "G y MMM d
|
|
1157
|
-
"y": "G y MMM d
|
|
1166
|
+
"G": "G y MMM d – G y MMM d",
|
|
1167
|
+
"M": "G y MMM d – MMM d",
|
|
1168
|
+
"y": "G y MMM d – y MMM d"
|
|
1158
1169
|
},
|
|
1159
1170
|
"GyMMMEd": {
|
|
1160
|
-
"d": "G y MMM d, E
|
|
1161
|
-
"G": "G y MMM d, E
|
|
1162
|
-
"M": "G y MMM d, E
|
|
1163
|
-
"y": "G y MMM d, E
|
|
1171
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
1172
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
1173
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
1174
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
1164
1175
|
},
|
|
1165
1176
|
"h": {
|
|
1166
|
-
"a": "h
|
|
1167
|
-
"h": "h–h
|
|
1177
|
+
"a": "h a – h a",
|
|
1178
|
+
"h": "h–h a"
|
|
1168
1179
|
},
|
|
1169
1180
|
"H": {
|
|
1170
1181
|
"H": "HH–HH"
|
|
1171
1182
|
},
|
|
1172
1183
|
"hm": {
|
|
1173
|
-
"a": "h:mm a
|
|
1184
|
+
"a": "h:mm a – h:mm a",
|
|
1174
1185
|
"h": "h:mm–h:mm a",
|
|
1175
1186
|
"m": "h:mm–h:mm a"
|
|
1176
1187
|
},
|
|
@@ -1179,7 +1190,7 @@
|
|
|
1179
1190
|
"m": "HH:mm–HH:mm"
|
|
1180
1191
|
},
|
|
1181
1192
|
"hmv": {
|
|
1182
|
-
"a": "h:mm a
|
|
1193
|
+
"a": "h:mm a – h:mm a v",
|
|
1183
1194
|
"h": "h:mm–h:mm a v",
|
|
1184
1195
|
"m": "h:mm–h:mm a v"
|
|
1185
1196
|
},
|
|
@@ -1188,8 +1199,8 @@
|
|
|
1188
1199
|
"m": "HH:mm–HH:mm v"
|
|
1189
1200
|
},
|
|
1190
1201
|
"hv": {
|
|
1191
|
-
"a": "h
|
|
1192
|
-
"h": "h–h
|
|
1202
|
+
"a": "h a – h a v",
|
|
1203
|
+
"h": "h–h a v"
|
|
1193
1204
|
},
|
|
1194
1205
|
"Hv": {
|
|
1195
1206
|
"H": "HH–HH v"
|
|
@@ -1590,7 +1601,7 @@
|
|
|
1590
1601
|
"GyMMM": "G y MMM",
|
|
1591
1602
|
"GyMMMd": "G d MMM y",
|
|
1592
1603
|
"GyMMMEd": "G E, d MMM y",
|
|
1593
|
-
"h": "h
|
|
1604
|
+
"h": "h a",
|
|
1594
1605
|
"H": "HH",
|
|
1595
1606
|
"hm": "h:mm a",
|
|
1596
1607
|
"Hm": "HH:mm",
|
|
@@ -1646,52 +1657,52 @@
|
|
|
1646
1657
|
"d": "d–d"
|
|
1647
1658
|
},
|
|
1648
1659
|
"Gy": {
|
|
1649
|
-
"G": "G y
|
|
1660
|
+
"G": "G y – G y",
|
|
1650
1661
|
"y": "G y–y"
|
|
1651
1662
|
},
|
|
1652
1663
|
"GyM": {
|
|
1653
|
-
"G": "GGGGG y-MM
|
|
1654
|
-
"M": "GGGGG y-MM
|
|
1655
|
-
"y": "GGGGG y-MM
|
|
1664
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
1665
|
+
"M": "GGGGG y-MM – y-MM",
|
|
1666
|
+
"y": "GGGGG y-MM – y-MM"
|
|
1656
1667
|
},
|
|
1657
1668
|
"GyMd": {
|
|
1658
|
-
"d": "GGGGG y-MM-dd
|
|
1659
|
-
"G": "GGGGG y-MM-dd
|
|
1660
|
-
"M": "GGGGG y-MM-dd
|
|
1661
|
-
"y": "GGGGG y-MM-dd
|
|
1669
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
1670
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
1671
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
1672
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
1662
1673
|
},
|
|
1663
1674
|
"GyMEd": {
|
|
1664
|
-
"d": "GGGGG y-MM-dd, E
|
|
1665
|
-
"G": "GGGGG y-MM-dd, E
|
|
1666
|
-
"M": "GGGGG y-MM-dd, E
|
|
1667
|
-
"y": "GGGGG y-MM-dd, E
|
|
1675
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1676
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
1677
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1678
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
1668
1679
|
},
|
|
1669
1680
|
"GyMMM": {
|
|
1670
|
-
"G": "G y MMM
|
|
1681
|
+
"G": "G y MMM – G y MMM",
|
|
1671
1682
|
"M": "G y MMM–MMM",
|
|
1672
|
-
"y": "G y MMM
|
|
1683
|
+
"y": "G y MMM – y MMM"
|
|
1673
1684
|
},
|
|
1674
1685
|
"GyMMMd": {
|
|
1675
1686
|
"d": "G y MMM d–d",
|
|
1676
|
-
"G": "G y MMM d
|
|
1677
|
-
"M": "G y MMM d
|
|
1678
|
-
"y": "G y MMM d
|
|
1687
|
+
"G": "G y MMM d – G y MMM d",
|
|
1688
|
+
"M": "G y MMM d – MMM d",
|
|
1689
|
+
"y": "G y MMM d – y MMM d"
|
|
1679
1690
|
},
|
|
1680
1691
|
"GyMMMEd": {
|
|
1681
|
-
"d": "G y MMM d, E
|
|
1682
|
-
"G": "G y MMM d, E
|
|
1683
|
-
"M": "G y MMM d, E
|
|
1684
|
-
"y": "G y MMM d, E
|
|
1692
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
1693
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
1694
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
1695
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
1685
1696
|
},
|
|
1686
1697
|
"h": {
|
|
1687
|
-
"a": "h
|
|
1688
|
-
"h": "h–h
|
|
1698
|
+
"a": "h a – h a",
|
|
1699
|
+
"h": "h–h a"
|
|
1689
1700
|
},
|
|
1690
1701
|
"H": {
|
|
1691
1702
|
"H": "HH–HH"
|
|
1692
1703
|
},
|
|
1693
1704
|
"hm": {
|
|
1694
|
-
"a": "h:mm a
|
|
1705
|
+
"a": "h:mm a – h:mm a",
|
|
1695
1706
|
"h": "h:mm–h:mm a",
|
|
1696
1707
|
"m": "h:mm–h:mm a"
|
|
1697
1708
|
},
|
|
@@ -1700,7 +1711,7 @@
|
|
|
1700
1711
|
"m": "HH:mm–HH:mm"
|
|
1701
1712
|
},
|
|
1702
1713
|
"hmv": {
|
|
1703
|
-
"a": "h:mm a
|
|
1714
|
+
"a": "h:mm a – h:mm a v",
|
|
1704
1715
|
"h": "h:mm–h:mm a v",
|
|
1705
1716
|
"m": "h:mm–h:mm a v"
|
|
1706
1717
|
},
|
|
@@ -1709,8 +1720,8 @@
|
|
|
1709
1720
|
"m": "HH:mm–HH:mm v"
|
|
1710
1721
|
},
|
|
1711
1722
|
"hv": {
|
|
1712
|
-
"a": "h
|
|
1713
|
-
"h": "h–h
|
|
1723
|
+
"a": "h a – h a v",
|
|
1724
|
+
"h": "h–h a v"
|
|
1714
1725
|
},
|
|
1715
1726
|
"Hv": {
|
|
1716
1727
|
"H": "HH–HH v"
|
|
@@ -2108,7 +2119,7 @@
|
|
|
2108
2119
|
"GyMMM": "G y MMM",
|
|
2109
2120
|
"GyMMMd": "G d MMM y",
|
|
2110
2121
|
"GyMMMEd": "G E, d MMM y",
|
|
2111
|
-
"h": "h
|
|
2122
|
+
"h": "h a",
|
|
2112
2123
|
"H": "HH",
|
|
2113
2124
|
"hm": "h:mm a",
|
|
2114
2125
|
"Hm": "HH:mm",
|
|
@@ -2164,52 +2175,52 @@
|
|
|
2164
2175
|
"d": "d–d"
|
|
2165
2176
|
},
|
|
2166
2177
|
"Gy": {
|
|
2167
|
-
"G": "G y
|
|
2178
|
+
"G": "G y – G y",
|
|
2168
2179
|
"y": "G y–y"
|
|
2169
2180
|
},
|
|
2170
2181
|
"GyM": {
|
|
2171
|
-
"G": "GGGGG y-MM
|
|
2172
|
-
"M": "GGGGG y-MM
|
|
2173
|
-
"y": "GGGGG y-MM
|
|
2182
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
2183
|
+
"M": "GGGGG y-MM – y-MM",
|
|
2184
|
+
"y": "GGGGG y-MM – y-MM"
|
|
2174
2185
|
},
|
|
2175
2186
|
"GyMd": {
|
|
2176
|
-
"d": "GGGGG y-MM-dd
|
|
2177
|
-
"G": "GGGGG y-MM-dd
|
|
2178
|
-
"M": "GGGGG y-MM-dd
|
|
2179
|
-
"y": "GGGGG y-MM-dd
|
|
2187
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
2188
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
2189
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
2190
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
2180
2191
|
},
|
|
2181
2192
|
"GyMEd": {
|
|
2182
|
-
"d": "GGGGG y-MM-dd, E
|
|
2183
|
-
"G": "GGGGG y-MM-dd, E
|
|
2184
|
-
"M": "GGGGG y-MM-dd, E
|
|
2185
|
-
"y": "GGGGG y-MM-dd, E
|
|
2193
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2194
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
2195
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2196
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
2186
2197
|
},
|
|
2187
2198
|
"GyMMM": {
|
|
2188
|
-
"G": "G y MMM
|
|
2199
|
+
"G": "G y MMM – G y MMM",
|
|
2189
2200
|
"M": "G y MMM–MMM",
|
|
2190
|
-
"y": "G y MMM
|
|
2201
|
+
"y": "G y MMM – y MMM"
|
|
2191
2202
|
},
|
|
2192
2203
|
"GyMMMd": {
|
|
2193
2204
|
"d": "G y MMM d–d",
|
|
2194
|
-
"G": "G y MMM d
|
|
2195
|
-
"M": "G y MMM d
|
|
2196
|
-
"y": "G y MMM d
|
|
2205
|
+
"G": "G y MMM d – G y MMM d",
|
|
2206
|
+
"M": "G y MMM d – MMM d",
|
|
2207
|
+
"y": "G y MMM d – y MMM d"
|
|
2197
2208
|
},
|
|
2198
2209
|
"GyMMMEd": {
|
|
2199
|
-
"d": "G y MMM d, E
|
|
2200
|
-
"G": "G y MMM d, E
|
|
2201
|
-
"M": "G y MMM d, E
|
|
2202
|
-
"y": "G y MMM d, E
|
|
2210
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
2211
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
2212
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
2213
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
2203
2214
|
},
|
|
2204
2215
|
"h": {
|
|
2205
|
-
"a": "h
|
|
2206
|
-
"h": "h–h
|
|
2216
|
+
"a": "h a – h a",
|
|
2217
|
+
"h": "h–h a"
|
|
2207
2218
|
},
|
|
2208
2219
|
"H": {
|
|
2209
2220
|
"H": "HH–HH"
|
|
2210
2221
|
},
|
|
2211
2222
|
"hm": {
|
|
2212
|
-
"a": "h:mm a
|
|
2223
|
+
"a": "h:mm a – h:mm a",
|
|
2213
2224
|
"h": "h:mm–h:mm a",
|
|
2214
2225
|
"m": "h:mm–h:mm a"
|
|
2215
2226
|
},
|
|
@@ -2218,7 +2229,7 @@
|
|
|
2218
2229
|
"m": "HH:mm–HH:mm"
|
|
2219
2230
|
},
|
|
2220
2231
|
"hmv": {
|
|
2221
|
-
"a": "h:mm a
|
|
2232
|
+
"a": "h:mm a – h:mm a v",
|
|
2222
2233
|
"h": "h:mm–h:mm a v",
|
|
2223
2234
|
"m": "h:mm–h:mm a v"
|
|
2224
2235
|
},
|
|
@@ -2227,8 +2238,8 @@
|
|
|
2227
2238
|
"m": "HH:mm–HH:mm v"
|
|
2228
2239
|
},
|
|
2229
2240
|
"hv": {
|
|
2230
|
-
"a": "h
|
|
2231
|
-
"h": "h–h
|
|
2241
|
+
"a": "h a – h a v",
|
|
2242
|
+
"h": "h–h a v"
|
|
2232
2243
|
},
|
|
2233
2244
|
"Hv": {
|
|
2234
2245
|
"H": "HH–HH v"
|
|
@@ -2646,7 +2657,7 @@
|
|
|
2646
2657
|
"GyMMM": "G y MMM",
|
|
2647
2658
|
"GyMMMd": "G d MMM y",
|
|
2648
2659
|
"GyMMMEd": "G E, d MMM y",
|
|
2649
|
-
"h": "h
|
|
2660
|
+
"h": "h a",
|
|
2650
2661
|
"H": "HH",
|
|
2651
2662
|
"hm": "h:mm a",
|
|
2652
2663
|
"Hm": "HH:mm",
|
|
@@ -2702,52 +2713,52 @@
|
|
|
2702
2713
|
"d": "d–d"
|
|
2703
2714
|
},
|
|
2704
2715
|
"Gy": {
|
|
2705
|
-
"G": "G y
|
|
2716
|
+
"G": "G y – G y",
|
|
2706
2717
|
"y": "G y–y"
|
|
2707
2718
|
},
|
|
2708
2719
|
"GyM": {
|
|
2709
|
-
"G": "GGGGG y-MM
|
|
2710
|
-
"M": "GGGGG y-MM
|
|
2711
|
-
"y": "GGGGG y-MM
|
|
2720
|
+
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
2721
|
+
"M": "GGGGG y-MM – y-MM",
|
|
2722
|
+
"y": "GGGGG y-MM – y-MM"
|
|
2712
2723
|
},
|
|
2713
2724
|
"GyMd": {
|
|
2714
|
-
"d": "GGGGG y-MM-dd
|
|
2715
|
-
"G": "GGGGG y-MM-dd
|
|
2716
|
-
"M": "GGGGG y-MM-dd
|
|
2717
|
-
"y": "GGGGG y-MM-dd
|
|
2725
|
+
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
2726
|
+
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
2727
|
+
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
2728
|
+
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
2718
2729
|
},
|
|
2719
2730
|
"GyMEd": {
|
|
2720
|
-
"d": "GGGGG y-MM-dd, E
|
|
2721
|
-
"G": "GGGGG y-MM-dd, E
|
|
2722
|
-
"M": "GGGGG y-MM-dd, E
|
|
2723
|
-
"y": "GGGGG y-MM-dd, E
|
|
2731
|
+
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2732
|
+
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
2733
|
+
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2734
|
+
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
2724
2735
|
},
|
|
2725
2736
|
"GyMMM": {
|
|
2726
|
-
"G": "G y MMM
|
|
2737
|
+
"G": "G y MMM – G y MMM",
|
|
2727
2738
|
"M": "G y MMM–MMM",
|
|
2728
|
-
"y": "G y MMM
|
|
2739
|
+
"y": "G y MMM – y MMM"
|
|
2729
2740
|
},
|
|
2730
2741
|
"GyMMMd": {
|
|
2731
2742
|
"d": "G y MMM d–d",
|
|
2732
|
-
"G": "G y MMM d
|
|
2733
|
-
"M": "G y MMM d
|
|
2734
|
-
"y": "G y MMM d
|
|
2743
|
+
"G": "G y MMM d – G y MMM d",
|
|
2744
|
+
"M": "G y MMM d – MMM d",
|
|
2745
|
+
"y": "G y MMM d – y MMM d"
|
|
2735
2746
|
},
|
|
2736
2747
|
"GyMMMEd": {
|
|
2737
|
-
"d": "G y MMM d, E
|
|
2738
|
-
"G": "G y MMM d, E
|
|
2739
|
-
"M": "G y MMM d, E
|
|
2740
|
-
"y": "G y MMM d, E
|
|
2748
|
+
"d": "G y MMM d, E – MMM d, E",
|
|
2749
|
+
"G": "G y MMM d, E – G y MMM d, E",
|
|
2750
|
+
"M": "G y MMM d, E – MMM d, E",
|
|
2751
|
+
"y": "G y MMM d, E – y MMM d, E"
|
|
2741
2752
|
},
|
|
2742
2753
|
"h": {
|
|
2743
|
-
"a": "h
|
|
2744
|
-
"h": "h–h
|
|
2754
|
+
"a": "h a – h a",
|
|
2755
|
+
"h": "h–h a"
|
|
2745
2756
|
},
|
|
2746
2757
|
"H": {
|
|
2747
2758
|
"H": "HH–HH"
|
|
2748
2759
|
},
|
|
2749
2760
|
"hm": {
|
|
2750
|
-
"a": "h:mm a
|
|
2761
|
+
"a": "h:mm a – h:mm a",
|
|
2751
2762
|
"h": "h:mm–h:mm a",
|
|
2752
2763
|
"m": "h:mm–h:mm a"
|
|
2753
2764
|
},
|
|
@@ -2756,7 +2767,7 @@
|
|
|
2756
2767
|
"m": "HH:mm–HH:mm"
|
|
2757
2768
|
},
|
|
2758
2769
|
"hmv": {
|
|
2759
|
-
"a": "h:mm a
|
|
2770
|
+
"a": "h:mm a – h:mm a v",
|
|
2760
2771
|
"h": "h:mm–h:mm a v",
|
|
2761
2772
|
"m": "h:mm–h:mm a v"
|
|
2762
2773
|
},
|
|
@@ -2765,8 +2776,8 @@
|
|
|
2765
2776
|
"m": "HH:mm–HH:mm v"
|
|
2766
2777
|
},
|
|
2767
2778
|
"hv": {
|
|
2768
|
-
"a": "h
|
|
2769
|
-
"h": "h–h
|
|
2779
|
+
"a": "h a – h a v",
|
|
2780
|
+
"h": "h–h a v"
|
|
2770
2781
|
},
|
|
2771
2782
|
"Hv": {
|
|
2772
2783
|
"H": "HH–HH v"
|
|
@@ -3164,7 +3175,7 @@
|
|
|
3164
3175
|
"GyMMM": "MMM y G",
|
|
3165
3176
|
"GyMMMd": "d MMM y G",
|
|
3166
3177
|
"GyMMMEd": "E, d MMM y G",
|
|
3167
|
-
"h": "h
|
|
3178
|
+
"h": "h a",
|
|
3168
3179
|
"H": "HH",
|
|
3169
3180
|
"hm": "h:mm a",
|
|
3170
3181
|
"Hm": "HH:mm",
|
|
@@ -3220,7 +3231,7 @@
|
|
|
3220
3231
|
"d": "d–d"
|
|
3221
3232
|
},
|
|
3222
3233
|
"Gy": {
|
|
3223
|
-
"G": "G y
|
|
3234
|
+
"G": "G y – G y",
|
|
3224
3235
|
"y": "y – y G"
|
|
3225
3236
|
},
|
|
3226
3237
|
"GyM": {
|
|
@@ -3258,14 +3269,14 @@
|
|
|
3258
3269
|
"y": "E, d MMM y – E, d MMM y G"
|
|
3259
3270
|
},
|
|
3260
3271
|
"h": {
|
|
3261
|
-
"a": "h
|
|
3262
|
-
"h": "h–h
|
|
3272
|
+
"a": "h a – h a",
|
|
3273
|
+
"h": "h–h a"
|
|
3263
3274
|
},
|
|
3264
3275
|
"H": {
|
|
3265
3276
|
"H": "HH–HH"
|
|
3266
3277
|
},
|
|
3267
3278
|
"hm": {
|
|
3268
|
-
"a": "h:mm a
|
|
3279
|
+
"a": "h:mm a – h:mm a",
|
|
3269
3280
|
"h": "h:mm–h:mm a",
|
|
3270
3281
|
"m": "h:mm–h:mm a"
|
|
3271
3282
|
},
|
|
@@ -3274,7 +3285,7 @@
|
|
|
3274
3285
|
"m": "HH:mm–HH:mm"
|
|
3275
3286
|
},
|
|
3276
3287
|
"hmv": {
|
|
3277
|
-
"a": "h:mm a
|
|
3288
|
+
"a": "h:mm a – h:mm a v",
|
|
3278
3289
|
"h": "h:mm–h:mm a v",
|
|
3279
3290
|
"m": "h:mm–h:mm a v"
|
|
3280
3291
|
},
|
|
@@ -3283,8 +3294,8 @@
|
|
|
3283
3294
|
"m": "HH:mm–HH:mm v"
|
|
3284
3295
|
},
|
|
3285
3296
|
"hv": {
|
|
3286
|
-
"a": "h
|
|
3287
|
-
"h": "h–h
|
|
3297
|
+
"a": "h a – h a v",
|
|
3298
|
+
"h": "h–h a v"
|
|
3288
3299
|
},
|
|
3289
3300
|
"Hv": {
|
|
3290
3301
|
"H": "HH–HH v"
|
|
@@ -4149,7 +4160,6 @@
|
|
|
4149
4160
|
"Montserrat": "मोंटसेरात",
|
|
4150
4161
|
"Nassau": "नासाउ",
|
|
4151
4162
|
"New_York": "न्यूयॉर्क",
|
|
4152
|
-
"Nipigon": "निपिगन",
|
|
4153
4163
|
"Nome": "नोम",
|
|
4154
4164
|
"Noronha": "नोरोन्हा",
|
|
4155
4165
|
"North_Dakota": {
|
|
@@ -4160,7 +4170,6 @@
|
|
|
4160
4170
|
"Nuuk": "नुक",
|
|
4161
4171
|
"Ojinaga": "ओखाजीनागा",
|
|
4162
4172
|
"Panama": "पनामा",
|
|
4163
|
-
"Pangnirtung": "पांगनिर्टंग",
|
|
4164
4173
|
"Paramaribo": "पारामारिबो",
|
|
4165
4174
|
"Phoenix": "फ़ीनिक्स",
|
|
4166
4175
|
"Port-au-Prince": "पोर्ट-ऑ-प्रिंस",
|
|
@@ -4168,13 +4177,11 @@
|
|
|
4168
4177
|
"Porto_Velho": "पोर्टो वेल्हो",
|
|
4169
4178
|
"Puerto_Rico": "पोर्टो रिको",
|
|
4170
4179
|
"Punta_Arenas": "पुंटा एरिनास",
|
|
4171
|
-
"Rainy_River": "रेनी नदी",
|
|
4172
4180
|
"Rankin_Inlet": "रेंकिन इनलेट",
|
|
4173
4181
|
"Recife": "रेसाइफ़",
|
|
4174
4182
|
"Regina": "रेजिना",
|
|
4175
4183
|
"Resolute": "रिसोल्यूट",
|
|
4176
4184
|
"Rio_Branco": "रियो ब्रांको",
|
|
4177
|
-
"Santa_Isabel": "सांता इसाबेल",
|
|
4178
4185
|
"Santarem": "सैंटारेम",
|
|
4179
4186
|
"Santiago": "सैंटियागो",
|
|
4180
4187
|
"Santo_Domingo": "सेंटो डोमिंगो",
|
|
@@ -4190,7 +4197,6 @@
|
|
|
4190
4197
|
"Swift_Current": "स्विफ़्ट करंट",
|
|
4191
4198
|
"Tegucigalpa": "टेगुसिगल्पा",
|
|
4192
4199
|
"Thule": "थ्यूले",
|
|
4193
|
-
"Thunder_Bay": "थंडर खाड़ी",
|
|
4194
4200
|
"Tijuana": "तिजुआना",
|
|
4195
4201
|
"Toronto": "टोरंटो",
|
|
4196
4202
|
"Tortola": "टोर्टोला",
|
|
@@ -4198,7 +4204,6 @@
|
|
|
4198
4204
|
"Whitehorse": "व्हाइटहोर्स",
|
|
4199
4205
|
"Winnipeg": "विनीपेग",
|
|
4200
4206
|
"Yakutat": "याकूटाट",
|
|
4201
|
-
"Yellowknife": "येलोनाइफ़",
|
|
4202
4207
|
"_parent": "अमेरिकाज़"
|
|
4203
4208
|
},
|
|
4204
4209
|
"Antarctica": {
|
|
@@ -4236,7 +4241,6 @@
|
|
|
4236
4241
|
"Bishkek": "बिश्केक",
|
|
4237
4242
|
"Brunei": "ब्रूनेई",
|
|
4238
4243
|
"Chita": "त्शिता",
|
|
4239
|
-
"Choibalsan": "चोइबालसन",
|
|
4240
4244
|
"Colombo": "कोलंबो",
|
|
4241
4245
|
"Damascus": "दमास्कस",
|
|
4242
4246
|
"Dhaka": "ढाका",
|
|
@@ -4385,7 +4389,6 @@
|
|
|
4385
4389
|
"Tallinn": "तेलिन",
|
|
4386
4390
|
"Tirane": "टाइरेन",
|
|
4387
4391
|
"Ulyanovsk": "उल्यानोव्स्क",
|
|
4388
|
-
"Uzhgorod": "अज़्गोरोद",
|
|
4389
4392
|
"Vaduz": "वादुज़",
|
|
4390
4393
|
"Vatican": "वेटिकन",
|
|
4391
4394
|
"Vienna": "विएना",
|
|
@@ -4393,7 +4396,6 @@
|
|
|
4393
4396
|
"Volgograd": "वोल्गोग्राड",
|
|
4394
4397
|
"Warsaw": "वॉरसॉ",
|
|
4395
4398
|
"Zagreb": "ज़ाग्रेब",
|
|
4396
|
-
"Zaporozhye": "ज़ैपोरोज़ाई",
|
|
4397
4399
|
"Zurich": "ज़्यूरिख़",
|
|
4398
4400
|
"_parent": "यूरोप"
|
|
4399
4401
|
},
|
|
@@ -4517,21 +4519,13 @@
|
|
|
4517
4519
|
},
|
|
4518
4520
|
"currencyFormat": {
|
|
4519
4521
|
"standard": "¤#,##,##0.00",
|
|
4522
|
+
"standard-noCurrency": "#,##0.00",
|
|
4520
4523
|
"accounting": "¤#,##,##0.00",
|
|
4521
|
-
"
|
|
4522
|
-
"beforeCurrency": {
|
|
4523
|
-
"currencyMatch": "[[:^S:]&[:^Z:]]",
|
|
4524
|
-
"surroundingMatch": "[:digit:]",
|
|
4525
|
-
"insertBetween": " "
|
|
4526
|
-
},
|
|
4527
|
-
"afterCurrency": {
|
|
4528
|
-
"currencyMatch": "[[:^S:]&[:^Z:]]",
|
|
4529
|
-
"surroundingMatch": "[:digit:]",
|
|
4530
|
-
"insertBetween": " "
|
|
4531
|
-
}
|
|
4532
|
-
},
|
|
4524
|
+
"accounting-noCurrency": "#,##0.00",
|
|
4533
4525
|
"sap-standard": "#,##,##0.00¤",
|
|
4534
|
-
"sap-accounting": "#,##,##0.00¤"
|
|
4526
|
+
"sap-accounting": "#,##,##0.00¤",
|
|
4527
|
+
"sap-standard-noCurrency": "#,##0.00",
|
|
4528
|
+
"sap-accounting-noCurrency": "#,##0.00"
|
|
4535
4529
|
},
|
|
4536
4530
|
"miscPattern": {
|
|
4537
4531
|
"approximately": "~{0}",
|
|
@@ -4540,30 +4534,54 @@
|
|
|
4540
4534
|
"range": "{0}–{1}"
|
|
4541
4535
|
},
|
|
4542
4536
|
"currencyFormat-short": {
|
|
4543
|
-
"1000-one": "¤
|
|
4544
|
-
"1000-
|
|
4545
|
-
"
|
|
4546
|
-
"
|
|
4547
|
-
"
|
|
4548
|
-
"
|
|
4549
|
-
"
|
|
4550
|
-
"
|
|
4537
|
+
"1000-one": "¤0 हज़ार",
|
|
4538
|
+
"1000-one-alphaNextToNumber": "¤ 0 हज़ार",
|
|
4539
|
+
"1000-other": "¤0 हज़ार",
|
|
4540
|
+
"1000-other-alphaNextToNumber": "¤ 0 हज़ार",
|
|
4541
|
+
"10000-one": "¤00 हज़ार",
|
|
4542
|
+
"10000-one-alphaNextToNumber": "¤ 00 हज़ार",
|
|
4543
|
+
"10000-other": "¤00 हज़ार",
|
|
4544
|
+
"10000-other-alphaNextToNumber": "¤ 00 हज़ार",
|
|
4545
|
+
"100000-one": "¤0 लाख",
|
|
4546
|
+
"100000-one-alphaNextToNumber": "¤ 0 लाख",
|
|
4547
|
+
"100000-other": "¤0 लाख",
|
|
4548
|
+
"100000-other-alphaNextToNumber": "¤ 0 लाख",
|
|
4549
|
+
"1000000-one": "¤00 लाख",
|
|
4550
|
+
"1000000-one-alphaNextToNumber": "¤ 00 लाख",
|
|
4551
|
+
"1000000-other": "¤00 लाख",
|
|
4552
|
+
"1000000-other-alphaNextToNumber": "¤ 00 लाख",
|
|
4551
4553
|
"10000000-one": "¤0 क॰",
|
|
4552
|
-
"10000000-
|
|
4553
|
-
"
|
|
4554
|
-
"
|
|
4555
|
-
"
|
|
4556
|
-
"
|
|
4557
|
-
"
|
|
4558
|
-
"
|
|
4559
|
-
"
|
|
4560
|
-
"
|
|
4561
|
-
"
|
|
4562
|
-
"
|
|
4563
|
-
"
|
|
4564
|
-
"
|
|
4565
|
-
"
|
|
4566
|
-
"
|
|
4554
|
+
"10000000-one-alphaNextToNumber": "¤0 क॰",
|
|
4555
|
+
"10000000-other": "¤0 क॰",
|
|
4556
|
+
"10000000-other-alphaNextToNumber": "¤ 0 क॰",
|
|
4557
|
+
"100000000-one": "¤00 क॰",
|
|
4558
|
+
"100000000-one-alphaNextToNumber": "¤ 00 क॰",
|
|
4559
|
+
"100000000-other": "¤00 क॰",
|
|
4560
|
+
"100000000-other-alphaNextToNumber": "¤ 00 क॰",
|
|
4561
|
+
"1000000000-one": "¤0 अ॰",
|
|
4562
|
+
"1000000000-one-alphaNextToNumber": "¤ 0 अ॰",
|
|
4563
|
+
"1000000000-other": "¤0 अ॰",
|
|
4564
|
+
"1000000000-other-alphaNextToNumber": "¤ 0 अ॰",
|
|
4565
|
+
"10000000000-one": "¤00 अ॰",
|
|
4566
|
+
"10000000000-one-alphaNextToNumber": "¤ 00 अ॰",
|
|
4567
|
+
"10000000000-other": "¤00 अ॰",
|
|
4568
|
+
"10000000000-other-alphaNextToNumber": "¤ 00 अ॰",
|
|
4569
|
+
"100000000000-one": "¤0 ख॰",
|
|
4570
|
+
"100000000000-one-alphaNextToNumber": "¤ 0 ख॰",
|
|
4571
|
+
"100000000000-other": "¤0 ख॰",
|
|
4572
|
+
"100000000000-other-alphaNextToNumber": "¤ 0 ख॰",
|
|
4573
|
+
"1000000000000-one": "¤00 ख॰",
|
|
4574
|
+
"1000000000000-one-alphaNextToNumber": "¤ 00 ख॰",
|
|
4575
|
+
"1000000000000-other": "¤00 ख॰",
|
|
4576
|
+
"1000000000000-other-alphaNextToNumber": "¤ 00 ख॰",
|
|
4577
|
+
"10000000000000-one": "¤0 नील",
|
|
4578
|
+
"10000000000000-one-alphaNextToNumber": "¤ 0 नील",
|
|
4579
|
+
"10000000000000-other": "¤0 नील",
|
|
4580
|
+
"10000000000000-other-alphaNextToNumber": "¤ 0 नील",
|
|
4581
|
+
"100000000000000-one": "¤00 नील",
|
|
4582
|
+
"100000000000000-one-alphaNextToNumber": "¤ 00 नील",
|
|
4583
|
+
"100000000000000-other": "¤00 नील",
|
|
4584
|
+
"100000000000000-other-alphaNextToNumber": "¤ 00 नील"
|
|
4567
4585
|
},
|
|
4568
4586
|
"symbols-latn-decimal": ".",
|
|
4569
4587
|
"symbols-latn-group": ",",
|
|
@@ -4598,6 +4616,7 @@
|
|
|
4598
4616
|
"VND": "₫",
|
|
4599
4617
|
"XAF": "FCFA",
|
|
4600
4618
|
"XCD": "EC$",
|
|
4619
|
+
"XCG": "Cg.",
|
|
4601
4620
|
"XOF": "F CFA",
|
|
4602
4621
|
"XPF": "CFPF",
|
|
4603
4622
|
"XXX": "¤"
|
|
@@ -5626,6 +5645,21 @@
|
|
|
5626
5645
|
"unitPattern-count-one": "{0} क. इम्पी.",
|
|
5627
5646
|
"unitPattern-count-other": "{0} क. इम्पी."
|
|
5628
5647
|
},
|
|
5648
|
+
"speed-light-speed": {
|
|
5649
|
+
"displayName": "लाइट",
|
|
5650
|
+
"unitPattern-count-one": "{0} लाइट",
|
|
5651
|
+
"unitPattern-count-other": "{0} लाइट"
|
|
5652
|
+
},
|
|
5653
|
+
"concentr-portion-per-1e9": {
|
|
5654
|
+
"displayName": "पार्ट्स/बिलियन",
|
|
5655
|
+
"unitPattern-count-other": "{0} ppb"
|
|
5656
|
+
},
|
|
5657
|
+
"duration-night": {
|
|
5658
|
+
"displayName": "रातें",
|
|
5659
|
+
"unitPattern-count-one": "{0} रात",
|
|
5660
|
+
"unitPattern-count-other": "{0} रातें",
|
|
5661
|
+
"perUnitPattern": "{0}/रात"
|
|
5662
|
+
},
|
|
5629
5663
|
"coordinateUnit": {
|
|
5630
5664
|
"displayName": "दिशा",
|
|
5631
5665
|
"east": "{0}E",
|
|
@@ -5636,9 +5670,9 @@
|
|
|
5636
5670
|
}
|
|
5637
5671
|
},
|
|
5638
5672
|
"lenient-scope-number": {
|
|
5639
|
-
"minusSign": "
|
|
5640
|
-
"commaSign": "
|
|
5641
|
-
"plusSign": "
|
|
5673
|
+
"minusSign": "--﹣‑‒−⁻₋➖",
|
|
5674
|
+
"commaSign": ",,﹐︐،٫、﹑、︑",
|
|
5675
|
+
"plusSign": "++﬩﹢⁺₊➕"
|
|
5642
5676
|
},
|
|
5643
5677
|
"currencyFormat-sap-short": {
|
|
5644
5678
|
"1000-one": "0 हज़ार ¤",
|