@openui5/sap.ui.core 1.120.7 → 1.121.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/.eslintrc.json +5 -3
- package/.reuse/dep5 +23 -21
- package/THIRDPARTY.txt +6 -43
- package/package.json +1 -1
- package/src/jquery.sap.global.js +7 -7
- 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/jquery.sap.trace.js +1 -1
- 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/future.js +57 -0
- package/src/sap/base/i18n/Formatting.js +24 -19
- package/src/sap/base/i18n/LanguageTag.js +2 -2
- package/src/sap/base/i18n/Localization.js +2 -2
- package/src/sap/base/i18n/ResourceBundle.js +115 -9
- package/src/sap/base/i18n/date/TimezoneUtils.js +5 -6
- package/src/sap/base/util/now.js +8 -13
- 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/ui/Device.js +6 -3
- package/src/sap/ui/Global.js +16 -15
- package/src/sap/ui/VersionInfo.js +15 -3
- package/src/sap/ui/base/BindingParser.js +25 -15
- package/src/sap/ui/base/DataType.js +21 -13
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +5 -0
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +25 -14
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +28 -13
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +8 -7
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +133 -56
- package/src/sap/ui/core/ComponentContainer.js +14 -17
- package/src/sap/ui/core/ComponentMetadata.js +7 -3
- package/src/sap/ui/core/ComponentSupport.js +32 -13
- package/src/sap/ui/core/Configuration.js +69 -67
- package/src/sap/ui/core/Control.js +34 -19
- package/src/sap/ui/core/Core.js +49 -45
- 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 +6 -8
- package/src/sap/ui/core/ElementMetadata.js +35 -20
- package/src/sap/ui/core/EnabledPropagator.js +1 -1
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/ExtensionPoint.js +18 -11
- package/src/sap/ui/core/Fragment.js +69 -28
- package/src/sap/ui/core/HTML.js +3 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- 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 +145 -125
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +6 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +9 -2
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +22 -13
- 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 +2 -2
- package/src/sap/ui/core/LocaleData.js +16 -15
- package/src/sap/ui/core/Manifest.js +28 -28
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Messaging.js +4 -4
- package/src/sap/ui/core/Popup.js +1 -47
- package/src/sap/ui/core/RenderManager.js +1 -1
- package/src/sap/ui/core/Renderer.js +12 -7
- package/src/sap/ui/core/Rendering.js +49 -42
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +7 -7
- package/src/sap/ui/core/ScrollBarRenderer.js +3 -3
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +1 -0
- package/src/sap/ui/core/ShortcutHintsMixin.js +1 -1
- package/src/sap/ui/core/StashedControlSupport.js +39 -40
- package/src/sap/ui/core/Theming.js +15 -25
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +4 -3
- package/src/sap/ui/core/UIArea.js +5 -3
- package/src/sap/ui/core/UIComponent.js +6 -4
- 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 +2 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +44 -23
- package/src/sap/ui/core/cache/CacheManagerNOP.js +0 -1
- package/src/sap/ui/core/cldr/ar.json +47 -88
- package/src/sap/ui/core/cldr/ar_EG.json +47 -88
- package/src/sap/ui/core/cldr/ar_SA.json +48 -89
- package/src/sap/ui/core/cldr/bg.json +44 -156
- package/src/sap/ui/core/cldr/ca.json +265 -370
- package/src/sap/ui/core/cldr/cnr.json +545 -476
- package/src/sap/ui/core/cldr/cs.json +33 -467
- package/src/sap/ui/core/cldr/cy.json +36 -762
- package/src/sap/ui/core/cldr/da.json +43 -146
- package/src/sap/ui/core/cldr/de.json +47 -149
- package/src/sap/ui/core/cldr/de_AT.json +48 -150
- package/src/sap/ui/core/cldr/de_CH.json +86 -187
- package/src/sap/ui/core/cldr/el.json +28 -96
- package/src/sap/ui/core/cldr/el_CY.json +28 -96
- package/src/sap/ui/core/cldr/en.json +66 -27
- package/src/sap/ui/core/cldr/en_AU.json +314 -171
- package/src/sap/ui/core/cldr/en_GB.json +167 -33
- package/src/sap/ui/core/cldr/en_HK.json +57 -30
- package/src/sap/ui/core/cldr/en_IE.json +54 -27
- package/src/sap/ui/core/cldr/en_IN.json +139 -28
- package/src/sap/ui/core/cldr/en_NZ.json +55 -28
- package/src/sap/ui/core/cldr/en_PG.json +49 -22
- package/src/sap/ui/core/cldr/en_SG.json +51 -24
- package/src/sap/ui/core/cldr/en_ZA.json +61 -34
- package/src/sap/ui/core/cldr/es.json +25 -130
- package/src/sap/ui/core/cldr/es_AR.json +90 -191
- package/src/sap/ui/core/cldr/es_BO.json +63 -165
- package/src/sap/ui/core/cldr/es_CL.json +100 -202
- package/src/sap/ui/core/cldr/es_CO.json +54 -156
- package/src/sap/ui/core/cldr/es_MX.json +163 -258
- package/src/sap/ui/core/cldr/es_PE.json +65 -167
- package/src/sap/ui/core/cldr/es_UY.json +65 -167
- package/src/sap/ui/core/cldr/es_VE.json +43 -145
- package/src/sap/ui/core/cldr/et.json +44 -144
- package/src/sap/ui/core/cldr/fa.json +75 -80
- package/src/sap/ui/core/cldr/fi.json +38 -142
- package/src/sap/ui/core/cldr/fr.json +28 -22
- package/src/sap/ui/core/cldr/fr_BE.json +31 -25
- package/src/sap/ui/core/cldr/fr_CA.json +76 -69
- package/src/sap/ui/core/cldr/fr_CH.json +41 -35
- package/src/sap/ui/core/cldr/fr_LU.json +28 -22
- package/src/sap/ui/core/cldr/he.json +37 -426
- package/src/sap/ui/core/cldr/hi.json +40 -83
- package/src/sap/ui/core/cldr/hr.json +31 -286
- package/src/sap/ui/core/cldr/hu.json +46 -140
- package/src/sap/ui/core/cldr/id.json +31 -13
- package/src/sap/ui/core/cldr/it.json +59 -182
- package/src/sap/ui/core/cldr/it_CH.json +65 -188
- package/src/sap/ui/core/cldr/ja.json +103 -13
- package/src/sap/ui/core/cldr/kk.json +79 -67
- package/src/sap/ui/core/cldr/ko.json +29 -10
- package/src/sap/ui/core/cldr/lt.json +24 -366
- package/src/sap/ui/core/cldr/lv.json +30 -277
- package/src/sap/ui/core/cldr/mk.json +103 -198
- package/src/sap/ui/core/cldr/ms.json +30 -10
- package/src/sap/ui/core/cldr/nb.json +32 -133
- package/src/sap/ui/core/cldr/nl.json +37 -167
- package/src/sap/ui/core/cldr/nl_BE.json +108 -238
- package/src/sap/ui/core/cldr/pl.json +27 -384
- package/src/sap/ui/core/cldr/pt.json +37 -145
- package/src/sap/ui/core/cldr/pt_PT.json +32 -133
- package/src/sap/ui/core/cldr/ro.json +30 -289
- package/src/sap/ui/core/cldr/ru.json +27 -75
- package/src/sap/ui/core/cldr/ru_UA.json +27 -75
- package/src/sap/ui/core/cldr/sk.json +32 -438
- package/src/sap/ui/core/cldr/sl.json +131 -535
- package/src/sap/ui/core/cldr/sr.json +41 -332
- package/src/sap/ui/core/cldr/sr_Latn.json +192 -483
- package/src/sap/ui/core/cldr/sv.json +49 -137
- package/src/sap/ui/core/cldr/th.json +39 -20
- package/src/sap/ui/core/cldr/tr.json +33 -125
- package/src/sap/ui/core/cldr/uk.json +310 -252
- package/src/sap/ui/core/cldr/vi.json +458 -331
- package/src/sap/ui/core/cldr/zh_CN.json +39 -17
- package/src/sap/ui/core/cldr/zh_HK.json +49 -27
- package/src/sap/ui/core/cldr/zh_SG.json +53 -31
- package/src/sap/ui/core/cldr/zh_TW.json +31 -14
- package/src/sap/ui/core/date/CalendarUtils.js +11 -9
- package/src/sap/ui/core/date/Islamic.js +7 -2
- package/src/sap/ui/core/date/UI5Date.js +86 -34
- package/src/sap/ui/core/date/UniversalDate.js +16 -26
- package/src/sap/ui/core/date/UniversalDateUtils.js +14 -14
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragAndDrop.js +4 -4
- 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/format/DateFormat.js +37 -45
- package/src/sap/ui/core/format/FileSizeFormat.js +15 -16
- package/src/sap/ui/core/format/FormatUtils.js +36 -0
- package/src/sap/ui/core/format/ListFormat.js +4 -4
- package/src/sap/ui/core/format/NumberFormat.js +288 -125
- 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 +16 -15
- package/src/sap/ui/core/library.js +26 -9
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +5 -5
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageMixin.js +1 -1
- 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_mk.properties +1 -1
- package/src/sap/ui/core/mvc/Controller.js +49 -19
- package/src/sap/ui/core/mvc/ControllerExtension.js +5 -4
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +2 -2
- package/src/sap/ui/core/mvc/ControllerMetadata.js +3 -3
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +6 -8
- 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 +8 -5
- package/src/sap/ui/core/mvc/XMLView.js +7 -5
- 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 +5 -3
- package/src/sap/ui/core/postmessage/confirmationDialog.js +3 -3
- package/src/sap/ui/core/routing/HashChanger.js +21 -10
- package/src/sap/ui/core/routing/History.js +5 -5
- package/src/sap/ui/core/routing/Route.js +9 -7
- package/src/sap/ui/core/routing/Router.js +13 -7
- package/src/sap/ui/core/routing/Target.js +1 -1
- package/src/sap/ui/core/routing/Targets.js +5 -4
- package/src/sap/ui/core/routing/async/Target.js +10 -7
- package/src/sap/ui/core/routing/async/Targets.js +3 -3
- package/src/sap/ui/core/routing/sync/Target.js +4 -1
- package/src/sap/ui/core/rules/Config.support.js +3 -3
- 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/RuleEngineOpaExtension.js +9 -12
- package/src/sap/ui/core/support/Support.js +2 -2
- package/src/sap/ui/core/support/ToolsAPI.js +19 -6
- package/src/sap/ui/core/support/controls/InteractionTree.js +7 -7
- package/src/sap/ui/core/support/plugins/Breakpoint.js +8 -5
- package/src/sap/ui/core/support/plugins/ControlTree.js +26 -15
- package/src/sap/ui/core/support/plugins/Debugging.js +9 -6
- package/src/sap/ui/core/support/plugins/Interaction.js +9 -7
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +6 -6
- 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 +4 -3
- package/src/sap/ui/core/support/plugins/ViewInfo.js +4 -2
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +4 -4
- package/src/sap/ui/core/support/trace/E2eTraceLib.js +5 -5
- package/src/sap/ui/core/themes/base/Icon.less +2 -1
- package/src/sap/ui/core/themes/base/base.less +370 -371
- package/src/sap/ui/core/theming/Parameters.js +9 -8
- package/src/sap/ui/core/theming/ThemeHelper.js +4 -3
- package/src/sap/ui/core/theming/ThemeManager.js +8 -6
- 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 +6 -3
- 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 +23 -13
- package/src/sap/ui/core/util/PasteHelper.js +3 -3
- package/src/sap/ui/core/util/_LocalizationHelper.js +10 -1
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +51 -5
- package/src/sap/ui/core/util/reflection/JsControlTreeModifier.js +2 -2
- package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +1 -0
- 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 +6 -6
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/dom/isBehindOtherElement.js +0 -1
- package/src/sap/ui/events/isMouseEventDelayed.js +6 -12
- package/src/sap/ui/events/jquery/EventSimulation.js +4 -3
- package/src/sap/ui/events/jquery/EventTriggerHook.js +2 -3
- package/src/sap/ui/model/Binding.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +2 -0
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +1 -0
- 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/Filter.js +34 -4
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +6 -3
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +6 -2
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/Sorter.js +4 -4
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/_Helper.js +4 -2
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -0
- package/src/sap/ui/model/json/JSONModel.js +6 -2
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +12 -7
- package/src/sap/ui/model/odata/ODataAnnotations.js +4 -4
- package/src/sap/ui/model/odata/ODataMessageParser.js +4 -3
- package/src/sap/ui/model/odata/ODataMetaModel.js +2 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +34 -4
- package/src/sap/ui/model/odata/ODataModel.js +5 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +1 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +4 -2
- package/src/sap/ui/model/odata/ODataUtils.js +166 -131
- package/src/sap/ui/model/odata/type/Boolean.js +9 -7
- 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 +5 -4
- package/src/sap/ui/model/odata/type/DateTime.js +2 -2
- package/src/sap/ui/model/odata/type/DateTimeBase.js +4 -4
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +4 -3
- package/src/sap/ui/model/odata/type/Decimal.js +5 -5
- package/src/sap/ui/model/odata/type/Double.js +4 -3
- package/src/sap/ui/model/odata/type/Guid.js +4 -3
- package/src/sap/ui/model/odata/type/Int.js +4 -4
- 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 +4 -4
- 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 +4 -3
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +6 -5
- package/src/sap/ui/model/odata/type/Time.js +4 -4
- package/src/sap/ui/model/odata/type/TimeOfDay.js +5 -4
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/type/UnitMixin.js +3 -2
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +4 -4
- package/src/sap/ui/model/odata/v2/ODataModel.js +55 -25
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +5 -4
- package/src/sap/ui/model/odata/v4/Context.js +20 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +11 -5
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +8 -5
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +56 -33
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +7 -4
- package/src/sap/ui/model/odata/v4/ODataModel.js +25 -15
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +10 -8
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +9 -2
- package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +4 -4
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +195 -59
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +16 -6
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +22 -15
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +19 -11
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +20 -11
- package/src/sap/ui/model/odata/v4/lib/_TreeState.js +122 -0
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +4 -4
- package/src/sap/ui/model/type/Currency.js +5 -5
- package/src/sap/ui/model/type/Date.js +5 -5
- package/src/sap/ui/model/type/DateInterval.js +6 -5
- 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 +5 -4
- package/src/sap/ui/model/type/Float.js +5 -5
- package/src/sap/ui/model/type/Integer.js +6 -6
- package/src/sap/ui/model/type/String.js +4 -3
- 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 +8 -7
- package/src/sap/ui/model/xml/XMLModel.js +11 -3
- package/src/sap/ui/performance/trace/Interaction.js +8 -16
- package/src/sap/ui/performance/trace/initTraces.js +1 -1
- package/src/sap/ui/qunit/qunit-junit.js +415 -49
- package/src/sap/ui/qunit/utils/ControlIterator.js +4 -4
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +3 -2
- package/src/sap/ui/qunit/utils/nextUIUpdate.js +15 -5
- package/src/sap/ui/test/OpaBuilder.js +3 -1
- package/src/sap/ui/test/OpaPlugin.js +103 -10
- package/src/sap/ui/test/autowaiter/_UIUpdatesWaiter.js +4 -4
- package/src/sap/ui/test/autowaiter/_navigationContainerWaiter.js +3 -3
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/launchers/iFrameLauncher.js +18 -6
- package/src/sap/ui/test/matchers/Descendant.js +2 -1
- package/src/sap/ui/test/matchers/I18NText.js +6 -2
- package/src/sap/ui/test/matchers/Interactable.js +2 -3
- package/src/sap/ui/test/matchers/LabelFor.js +5 -3
- package/src/sap/ui/test/matchers/Matcher.js +20 -0
- package/src/sap/ui/test/matchers/Sibling.js +2 -1
- package/src/sap/ui/test/matchers/_Visitor.js +2 -4
- package/src/sap/ui/test/qunitPause.js +6 -4
- package/src/sap/ui/test/selectors/_ControlSelectorGenerator.js +4 -3
- package/src/sap/ui/test/selectors/_Selector.js +3 -3
- package/src/sap/ui/test/starter/_setupAndStart.js +5 -18
- package/src/sap/ui/test/starter/_utils.js +15 -1
- package/src/sap/ui/test/starter/createSuite.js +2 -0
- package/src/sap/ui/thirdparty/RequestRecorder.js +1 -1
- package/src/sap/ui/thirdparty/crossroads.js +3 -0
- package/src/sap/ui/thirdparty/qunit-2.js +1 -2
- package/src/sap/ui/thirdparty/qunit-reporter-junit.js +30 -8
- package/src/sap/ui/thirdparty/qunit.js +1 -2
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +18 -4
- package/src/ui5loader.js +15 -4
- package/test/sap/ui/core/DateFormat.controller.js +3 -3
- package/test/sap/ui/core/ILabelableInterface.html +21 -0
- package/test/sap/ui/core/ILabelableInterface.js +81 -0
- package/test/sap/ui/core/NumberFormat.controller.js +4 -4
- package/test/sap/ui/core/Strings.controller.js +4 -4
- package/test/sap/ui/core/demokit/docuindex.json +8 -2
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/css/style.css +3 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/categories/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/products/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/suppliers/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/Component.js +20 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Home.controller.js +14 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Next.controller.js +21 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/manifest.json +94 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentDesktop.fragment.js +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentMobile.fragment.js +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeView.js +45 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/Next.view.xml +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/RootView.js +22 -0
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Opa.qunit.js +5 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Opa.qunit.js +8 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/ValueHelp.js +38 -35
- package/test/sap/ui/core/demokit/sample/common/Helper.js +7 -7
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +1 -1
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +5 -3
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTime/DateTime.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTimeOffset/DateTimeOffset.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v2/Time/Time.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/Date/Date.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/DateTimeOffset/DateTimeOffset.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/TimeOfDay/TimeOfDay.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +10 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.view.xml +3 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.controller.js +1 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.view.xml +6 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/formatRowHighlight.js +20 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +30 -24
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +10 -8
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/Main.controller.js +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Opa.qunit.js +6 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +16 -17
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +8 -14
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +65 -31
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/pages/Main.js +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersRTATest/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +1 -1
- package/test/sap/ui/core/internal/samples/odata/twoFields/Main.controller.js +3 -1
- package/test/sap/ui/core/internal/samples/odata/twoFields/tests/pages/Main.js +3 -2
- package/test/sap/ui/core/internal/samples/odata/v2/Products/Opa.qunit.js +5 -4
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.controller.js +4 -6
- package/test/sap/ui/core/internal/samples/odata/v2/TreeTable/Main.controller.js +6 -5
- package/test/sap/ui/core/qunit/AppCacheBuster.qunit.js +5 -5
- package/test/sap/ui/core/qunit/BindingParser.qunit.js +158 -24
- package/test/sap/ui/core/qunit/BlockLayerUtils.qunit.js +3 -6
- package/test/sap/ui/core/qunit/CalculatedFields.qunit.js +70 -81
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +13 -13
- package/test/sap/ui/core/qunit/ControlDefinition.qunit.js +5 -4
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Core.qunit.js +42 -57
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +10 -2
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +2 -2
- package/test/sap/ui/core/qunit/Core_libraryTerminologies.qunit.js +4 -3
- package/test/sap/ui/core/qunit/CustomThemeFallback.qunit.js +2 -3
- package/test/sap/ui/core/qunit/DataBinding.qunit.js +125 -65
- package/test/sap/ui/core/qunit/Element_base.qunit.js +4 -1
- package/test/sap/ui/core/qunit/Element_destroy.qunit.js +6 -10
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +54 -43
- package/test/sap/ui/core/qunit/Element_metadata_selector.qunit.js +1 -1
- package/test/sap/ui/core/qunit/EnabledPropagator.qunit.js +3 -2
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +5 -2
- package/test/sap/ui/core/qunit/FieldGroup.qunit.js +3 -2
- package/test/sap/ui/core/qunit/Fragment.qunit.js +18 -2
- package/test/sap/ui/core/qunit/HTML.qunit.js +3 -2
- package/test/sap/ui/core/qunit/Hyphenation.qunit.js +30 -6
- package/test/sap/ui/core/qunit/Icon.qunit.js +4 -3
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +6 -5
- package/test/sap/ui/core/qunit/Lib.qunit.js +156 -15
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +7 -42
- package/test/sap/ui/core/qunit/QUnit.qunit.js +6 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +13 -10
- package/test/sap/ui/core/qunit/{CoreEvents.qunit.js → Rendering.qunit.js} +68 -7
- package/test/sap/ui/core/qunit/ScrollBar.qunit.js +8 -7
- package/test/sap/ui/core/qunit/StashedControlSupport.qunit.js +65 -90
- package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.qunit.js +706 -0
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +49 -37
- package/test/sap/ui/core/qunit/ThemeManager.qunit.js +15 -11
- package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +5 -5
- package/test/sap/ui/core/qunit/ThemeParameters_legacyAPIs.qunit.js +7 -7
- package/test/sap/ui/core/qunit/Theming.qunit.js +174 -1
- package/test/sap/ui/core/qunit/VersionInfo.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/AnalyticalBinding.qunit.js +58 -0
- package/test/sap/ui/core/qunit/analytics/o4aMetadata.js +3 -0
- package/test/sap/ui/core/qunit/app/ThemeClassParameters.qunit.js +4 -4
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +1 -1
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +276 -44
- package/test/sap/ui/core/qunit/base/i18n/Localization.qunit.js +173 -26
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +408 -3
- package/test/sap/ui/core/qunit/base/util/now.qunit.js +2 -30
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +6 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +15 -6
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.beforeBootstrap.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithNoJQuery.qunit.js +2 -1
- package/test/sap/ui/core/qunit/bootstrap/CalendarClassLoadingWithCustomBootTask.beforeBootstrap.qunit.js +8 -4
- package/test/sap/ui/core/qunit/bootstrap/{CalendarClassLoadingWithCustomBootTaskAndPreload.beforeBootstrap.qunit.js → CalendarClassLoadingWithCustomBootTask.beforeBootstrap_legacy.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +32 -28
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.html → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.js → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.html → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.js → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.html → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.js → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration_language_via_URL.qunit.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.beforeBootstrap.qunit.js +2 -2
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.qunit.js +8 -8
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +11 -10
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +2 -2
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +68 -13
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.html +0 -1
- package/test/sap/ui/core/qunit/component/Component.qunit.js +40 -21
- package/test/sap/ui/core/qunit/component/ComponentSupport.qunit.js +65 -39
- package/test/sap/ui/core/qunit/component/Component_containedInLibrary.qunit.js +25 -6
- package/test/sap/ui/core/qunit/component/Manifest.qunit.js +9 -9
- package/test/sap/ui/core/qunit/component/Metadata.qunit.js +5 -5
- package/test/sap/ui/core/qunit/component/Metadata_unavoidablySync.qunit.js +1 -2
- package/test/sap/ui/core/qunit/component/Models.qunit.js +295 -157
- package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/i18n/i18n.properties +3 -0
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/manifest.json +3 -1
- package/test/sap/ui/core/qunit/component/testdata/v2models/parent/Component.js +1 -4
- package/test/sap/ui/core/qunit/component/testdata/v4models/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/cacheTokens/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/unsupportedVersion/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/verticalLayout/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/view/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/composite/XMLComposite.qunit.js +3 -2
- package/test/sap/ui/core/qunit/csp/ContentSecurityPolicy.qunit.js +0 -1
- package/test/sap/ui/core/qunit/dnd/DragAndDrop.qunit.js +3 -3
- package/test/sap/ui/core/qunit/dnd/DragInfo.qunit.js +2 -1
- package/test/sap/ui/core/qunit/format/FormatUtils.qunit.js +36 -0
- package/test/sap/ui/core/qunit/generic/ControlMemoryLeaks.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/DuplicateIdCheck.qunit.js +2 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +6 -6
- package/test/sap/ui/core/qunit/i18n/CalendarUtils.qunit.js +3 -3
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +29 -29
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +6 -6
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +92 -78
- package/test/sap/ui/core/qunit/i18n/UI5Date.qunit.js +199 -33
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +111 -119
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +12 -38
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +1 -1
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +29 -28
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +3 -9
- package/test/sap/ui/core/qunit/internal/testsuite.models.qunit.js +7 -0
- package/test/sap/ui/core/qunit/jquery.sap.events.qunit.js +4 -68
- package/test/sap/ui/core/qunit/json/JSONBinding.qunit.js +4 -6
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +0 -1
- package/test/sap/ui/core/qunit/json/JSONModel.qunit.js +5 -18
- package/test/sap/ui/core/qunit/json/JSONPropertyBinding.qunit.js +15 -23
- package/test/sap/ui/core/qunit/json/JSONTreeBinding.qunit.js +6 -8
- package/test/sap/ui/core/qunit/json/JSONTwoWay.qunit.js +11 -13
- package/test/sap/ui/core/qunit/loader/asyncMode.qunit.html +0 -2
- package/test/sap/ui/core/qunit/loader/asyncMode.qunit.js +40 -34
- package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.html → asyncMode_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.js → asyncMode_legacyAPIs.qunit.js} +33 -4
- package/test/sap/ui/core/qunit/loader/conflictWithRequire.qunit.js +16 -16
- package/test/sap/ui/core/qunit/loader/testsuite.loader.qunit.js +2 -2
- package/test/sap/ui/core/qunit/messages/MessageMixin.qunit.js +46 -2
- package/test/sap/ui/core/qunit/mockserver/MockServer.qunit.js +859 -245
- package/test/sap/ui/core/qunit/mockserver/testsuite.mockserver.qunit.js +8 -0
- package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata.xml +3 -0
- package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata_ItemCustomer.xml +5 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +135 -44
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +10 -10
- package/test/sap/ui/core/qunit/model/_Helper.qunit.js +3 -1
- package/test/sap/ui/core/qunit/mvc/AnyViewAsync.qunit.js +11 -3
- package/test/sap/ui/core/qunit/mvc/AsyncXMLView.qunit.js +5 -5
- package/test/sap/ui/core/qunit/mvc/EventHandlerResolver.qunit.js +73 -47
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +0 -4
- package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +78 -7
- package/test/sap/ui/core/qunit/mvc/testdata/inner.view.xml +3 -0
- package/test/sap/ui/core/qunit/mvc/testdata/middle.view.xml +8 -0
- package/test/sap/ui/core/qunit/mvc/testdata/outer.view.xml +5 -0
- package/test/sap/ui/core/qunit/mvc/testdata/test.controller.js +1 -1
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +3 -3
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncHTMLView_legacyAPIs.qunit.js +6 -7
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncXMLView_legacyAPIs.qunit.js +5 -7
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/View_legacyAPIs.qunit.js +46 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLTemplateProcessorRequireXML_legacyAPIs.qunit.js +0 -4
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLView_legacyAPIs.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +60 -62
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/ODataMessageParser.qunit.js +12 -46
- package/test/sap/ui/core/qunit/odata/ODataMessageParserNoFakeService.qunit.js +4 -3
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +7 -0
- package/test/sap/ui/core/qunit/odata/ODataMetadataNoFakeService.qunit.js +40 -0
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +365 -13
- package/test/sap/ui/core/qunit/odata/_AnnotationHelperExpression.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Boolean.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/type/Currency.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/type/Date.qunit.js +11 -11
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +54 -55
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +8 -8
- package/test/sap/ui/core/qunit/odata/type/Decimal.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Double.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Int.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Int64.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Single.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +12 -12
- package/test/sap/ui/core/qunit/odata/type/Unit.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v2/CanonicalRequests.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +580 -130
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +79 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +23 -18
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +24 -0
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +25 -203
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModel.qunit.js +55 -192
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelB.qunit.js +47 -261
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/AnnotationHelper.qunit.js +4 -1
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +43 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +15 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +7 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +142 -30
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +8 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +2317 -470
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +12 -4
- package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +75 -40
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +43 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataUtils.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/v4/data/metadata_special_cases.xml +4 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +381 -182
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +46 -29
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +38 -26
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +38 -10
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +45 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_TreeState.qunit.js +134 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2Requestor.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/v4/testsuite.odatav4.qunit.js +1 -0
- package/test/sap/ui/core/qunit/opa/OpaBuilder.qunit.js +3 -1
- package/test/sap/ui/core/qunit/opa/RecordReplay.qunit.js +0 -1
- package/test/sap/ui/core/qunit/opa/_ControlFinder.qunit.js +5 -1
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +0 -1
- package/test/sap/ui/core/qunit/opa/actions/Press.qunit.js +4 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_XHRWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_navigationContainerWaiter.js +5 -5
- package/test/sap/ui/core/qunit/opa/fixture/bindingPath.js +20 -12
- package/test/sap/ui/core/qunit/opa/fixture/busyAfterStart.html +4 -4
- package/test/sap/ui/core/qunit/opa/fixture/emptySite.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/emptySiteWithOpaExtensions.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit1.html +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit2.html +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest.js +6 -3
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.html +5 -5
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit1.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit2.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit1.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit2.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit1.html +3 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit2.html +3 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause.qunit.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.html +4 -3
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +4 -1
- package/test/sap/ui/core/qunit/opa/matchers/I18NText.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/LabelFor.qunit.js +2 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Busy.qunit.js +2 -1
- package/test/sap/ui/core/qunit/opa/opa5/iFrame.qunit.js +6 -5
- package/test/sap/ui/core/qunit/opa/opa5/iFrameLogging.qunit.js +26 -6
- package/test/sap/ui/core/qunit/opa/opa5/matchersInFrame.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_BindingPath.js +2 -2
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorGenerator.js +3 -3
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorValidator.js +5 -2
- package/test/sap/ui/core/qunit/opa/selectors/_DropdownItem.js +3 -2
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +28 -18
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +26 -12
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +5 -8
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +71 -64
- package/test/sap/ui/core/qunit/routing/async/Router.qunit.js +55 -2
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/manifest.json +5 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/manifest.json +5 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/ParentExtended/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/Component.js +15 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/manifest.json +37 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/MyView1.view.xml +3 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/RootView.view.xml +3 -0
- package/test/sap/ui/core/qunit/rule/app/syncXHR.qunit.js +9 -0
- package/test/sap/ui/core/qunit/rule/model/modelSupport.qunit.js +4 -7
- package/test/sap/ui/core/qunit/security/Security.qunit.js +133 -0
- package/test/sap/ui/core/qunit/service/Service.qunit.js +13 -10
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/custom-bundle.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib2/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib3/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/customCss/lib1/library.js +3 -4
- package/test/sap/ui/core/qunit/testdata/libraries/make.js +4 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library-preload.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library-preload.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/absoluteBundleUrl/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/notLoadedYet/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib1/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib10/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib11/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib12/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib13/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib14/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib15/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib16/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib17/library.js +6 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib3/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib4/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib5/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib6/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib7/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib8/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib9/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require.view.xml +0 -1
- package/test/sap/ui/core/qunit/testsuite.qunit.js +2 -2
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +35 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.eventing.qunit.js +0 -11
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +7 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +4 -0
- package/test/sap/ui/core/qunit/types/Date.qunit.js +5 -5
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +92 -99
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +50 -50
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +5 -5
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +74 -4
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +332 -166
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +60 -24
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +21 -21
- package/test/sap/ui/core/qunit/types/Types.qunit.js +51 -48
- package/test/sap/ui/core/qunit/types/ValidationHooks.qunit.js +151 -78
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +7 -17
- package/test/sap/ui/core/qunit/{types → ui5classes}/DataType.qunit.js +174 -17
- package/test/sap/ui/core/qunit/{ManagedObjectMetadata.qunit.js → ui5classes/ManagedObjectMetadata.qunit.js} +0 -1
- package/test/sap/ui/core/qunit/ui5classes/ManagedObjectRegistry.qunit.js +1 -1
- package/test/sap/ui/core/qunit/{ManagedObject_BindingParser.qunit.js → ui5classes/ManagedObject_BindingParser.qunit.js} +1 -1
- package/test/sap/ui/core/qunit/ui5classes/testsuite.ui5classes.qunit.html +11 -0
- package/test/sap/ui/core/qunit/util/LabelEnablement.qunit.js +62 -0
- package/test/sap/ui/core/qunit/util/PasteHelper.qunit.js +5 -5
- package/test/sap/ui/core/qunit/util/Popup.qunit.js +3 -71
- package/test/sap/ui/core/qunit/util/ValueStateSupport.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +6 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.measure.qunit.js +31 -16
- package/test/sap/ui/core/qunit/util/jquery.sap.trace.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/postmessage/ConfirmationDialog.qunit.js +4 -6
- package/test/sap/ui/core/qunit/util/reflection/BaseTreeModifier.qunit.js +11 -2
- package/test/sap/ui/core/qunit/util/reflection/JsControlTreeModifier.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/reflection/XmlTreeModifier.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/support/SupportTool.qunit.js +3 -2
- package/test/sap/ui/core/qunit/util/support/TechnicalInfo.opa.qunit.js +22 -83
- package/test/sap/ui/core/qunit/util/support/TechnicalInfo.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/support/TechnicalInfoDebugModules.opa.qunit.js +22 -83
- package/test/sap/ui/core/qunit/xml/XMLBinding.qunit.js +0 -2
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -4
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +12 -14
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +4 -6
- package/test/sap/ui/core/qunit/xml/XMLTwoWay.qunit.js +8 -10
- package/test/sap/ui/core/relnotes/changes-1.120.json +0 -500
- package/test/sap/ui/core/relnotes/changes-1.121.json +604 -0
- package/test/sap/ui/core/samples/components/config/modelPreloadAndEarlyRequests/manifest.json +3 -5
- package/test/sap/ui/core/samples/databinding/UnitTable.controller.js +5 -5
- package/test/sap/ui/core/terminologies/App.controller.js +3 -4
- package/test/sap/ui/core/terminologies/main.js +4 -4
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/firstItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/initial.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/lastItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/leftDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/myButtonSample-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/rightDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/qunit/testrunner.html +5 -2
- package/test/testsuite/js/samples.js +5 -4
- package/test/testsuite/js/settings.js +1 -1
- package/test/testsuite/js/testframe.js +1 -1
- package/test/testsuite/welcome.html +1 -1
- package/LICENSES/BSD-2-Clause.txt +0 -22
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Formatter.js +0 -22
- package/test/sap/ui/core/qunit/ManagedObjectRegistry.qunit.js +0 -150
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/.library +0 -17
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButton.js +0 -85
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButtonRenderer.js +0 -63
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/library.js +0 -24
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/themes/base/library.css +0 -26
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.html +0 -12
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +0 -76
- /package/test/sap/ui/core/qunit/bootstrap/{DebugMode.qunit.html → DebugModeSync.qunit.html} +0 -0
- /package/test/sap/ui/core/qunit/{types → ui5classes}/AlternativeTypes.qunit.js +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject.qunit.js → ui5classes/ManagedObject.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObjectObserver.qunit.js → ui5classes/ManagedObjectObserver.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject_forwardAggregation.qunit.js → ui5classes/ManagedObject_forwardAggregation.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject_isPropertyInitial.qunit.js → ui5classes/ManagedObject_isPropertyInitial.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Metadata.qunit.js → ui5classes/Metadata.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Object.qunit.js → ui5classes/Object.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Object_legacyAPIs.qunit.js → ui5classes/Object_legacyAPIs.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{testdata → ui5classes/fixture}/customboot/common.configure.ui5.js +0 -0
|
@@ -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": "44.0.0",
|
|
4
|
+
"__buildtime": "2024-01-12T14:24:50.280Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "афарська",
|
|
7
7
|
"ab": "абхазька",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"bfd": "бафут",
|
|
62
62
|
"bfq": "бадага",
|
|
63
63
|
"bg": "болгарська",
|
|
64
|
+
"bgc": "харʼянві",
|
|
64
65
|
"bgn": "східнобелуджійська",
|
|
65
66
|
"bho": "бходжпурі",
|
|
66
67
|
"bi": "біслама",
|
|
@@ -129,6 +130,7 @@
|
|
|
129
130
|
"dar": "даргінська",
|
|
130
131
|
"dav": "таїта",
|
|
131
132
|
"de": "німецька",
|
|
133
|
+
"de_CH": "верхньонімецька (Швейцарія)",
|
|
132
134
|
"del": "делаварська",
|
|
133
135
|
"den": "слейв",
|
|
134
136
|
"dgr": "догрибська",
|
|
@@ -152,13 +154,9 @@
|
|
|
152
154
|
"elx": "еламська",
|
|
153
155
|
"en": "англійська",
|
|
154
156
|
"en_GB-alt-short": "англійська (Брит.)",
|
|
155
|
-
"en_US-alt-short": "англійська (США)",
|
|
156
157
|
"enm": "середньоанглійська",
|
|
157
158
|
"eo": "есперанто",
|
|
158
159
|
"es": "іспанська",
|
|
159
|
-
"es_419": "латиноамериканська іспанська",
|
|
160
|
-
"es_ES": "європейська іспанська",
|
|
161
|
-
"es_MX": "мексиканська іспанська",
|
|
162
160
|
"et": "естонська",
|
|
163
161
|
"eu": "баскська",
|
|
164
162
|
"ewo": "евондо",
|
|
@@ -199,7 +197,7 @@
|
|
|
199
197
|
"got": "готська",
|
|
200
198
|
"grb": "гребо",
|
|
201
199
|
"grc": "давньогрецька",
|
|
202
|
-
"gsw": "
|
|
200
|
+
"gsw": "німецька (Швейцарія)",
|
|
203
201
|
"gu": "гуджараті",
|
|
204
202
|
"guz": "гусії",
|
|
205
203
|
"gv": "менкська",
|
|
@@ -427,8 +425,6 @@
|
|
|
427
425
|
"pro": "давньопровансальська",
|
|
428
426
|
"ps": "пушту",
|
|
429
427
|
"pt": "португальська",
|
|
430
|
-
"pt_BR": "бразильська португальська",
|
|
431
|
-
"pt_PT": "європейська португальська",
|
|
432
428
|
"qu": "кечуа",
|
|
433
429
|
"quc": "кіче",
|
|
434
430
|
"raj": "раджастхані",
|
|
@@ -561,7 +557,7 @@
|
|
|
561
557
|
"was": "вашо",
|
|
562
558
|
"wbp": "валпірі",
|
|
563
559
|
"wo": "волоф",
|
|
564
|
-
"wuu": "уська
|
|
560
|
+
"wuu": "китайська уська",
|
|
565
561
|
"xal": "калмицька",
|
|
566
562
|
"xh": "кхоса",
|
|
567
563
|
"xog": "сога",
|
|
@@ -895,7 +891,9 @@
|
|
|
895
891
|
"IL": "Ізраїль",
|
|
896
892
|
"IM": "Острів Мен",
|
|
897
893
|
"IN": "Індія",
|
|
898
|
-
"IO": "Британська територія в Індійському
|
|
894
|
+
"IO": "Британська територія в Індійському океані",
|
|
895
|
+
"IO-alt-biot": "Британська територія в Індійському океані",
|
|
896
|
+
"IO-alt-chagos": "архіпелаг Чагос",
|
|
899
897
|
"IQ": "Ірак",
|
|
900
898
|
"IR": "Іран",
|
|
901
899
|
"IS": "Ісландія",
|
|
@@ -1327,18 +1325,54 @@
|
|
|
1327
1325
|
},
|
|
1328
1326
|
"stand-alone": {
|
|
1329
1327
|
"abbreviated": [
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1328
|
+
[
|
|
1329
|
+
"січ.",
|
|
1330
|
+
"січ"
|
|
1331
|
+
],
|
|
1332
|
+
[
|
|
1333
|
+
"лют.",
|
|
1334
|
+
"лют"
|
|
1335
|
+
],
|
|
1336
|
+
[
|
|
1337
|
+
"бер.",
|
|
1338
|
+
"бер"
|
|
1339
|
+
],
|
|
1340
|
+
[
|
|
1341
|
+
"квіт.",
|
|
1342
|
+
"кві"
|
|
1343
|
+
],
|
|
1344
|
+
[
|
|
1345
|
+
"трав.",
|
|
1346
|
+
"тра"
|
|
1347
|
+
],
|
|
1348
|
+
[
|
|
1349
|
+
"черв.",
|
|
1350
|
+
"чер"
|
|
1351
|
+
],
|
|
1352
|
+
[
|
|
1353
|
+
"лип.",
|
|
1354
|
+
"лип"
|
|
1355
|
+
],
|
|
1356
|
+
[
|
|
1357
|
+
"серп.",
|
|
1358
|
+
"сер"
|
|
1359
|
+
],
|
|
1360
|
+
[
|
|
1361
|
+
"вер.",
|
|
1362
|
+
"вер"
|
|
1363
|
+
],
|
|
1364
|
+
[
|
|
1365
|
+
"жовт.",
|
|
1366
|
+
"жов"
|
|
1367
|
+
],
|
|
1368
|
+
[
|
|
1369
|
+
"лист.",
|
|
1370
|
+
"лис"
|
|
1371
|
+
],
|
|
1372
|
+
[
|
|
1373
|
+
"груд.",
|
|
1374
|
+
"гру"
|
|
1375
|
+
]
|
|
1342
1376
|
],
|
|
1343
1377
|
"narrow": [
|
|
1344
1378
|
"С",
|
|
@@ -1400,13 +1434,13 @@
|
|
|
1400
1434
|
"сб"
|
|
1401
1435
|
],
|
|
1402
1436
|
"wide": [
|
|
1403
|
-
"
|
|
1437
|
+
"неділю",
|
|
1404
1438
|
"понеділок",
|
|
1405
1439
|
"вівторок",
|
|
1406
|
-
"
|
|
1440
|
+
"середу",
|
|
1407
1441
|
"четвер",
|
|
1408
|
-
"
|
|
1409
|
-
"
|
|
1442
|
+
"пʼятницю",
|
|
1443
|
+
"суботу"
|
|
1410
1444
|
]
|
|
1411
1445
|
},
|
|
1412
1446
|
"stand-alone": {
|
|
@@ -1524,15 +1558,15 @@
|
|
|
1524
1558
|
"format": {
|
|
1525
1559
|
"abbreviated": {
|
|
1526
1560
|
"midnight": "опівночі",
|
|
1527
|
-
"noon": "
|
|
1561
|
+
"noon": "опівдні",
|
|
1528
1562
|
"morning1": "ранку",
|
|
1529
1563
|
"afternoon1": "дня",
|
|
1530
1564
|
"evening1": "вечора",
|
|
1531
1565
|
"night1": "ночі"
|
|
1532
1566
|
},
|
|
1533
1567
|
"narrow": {
|
|
1534
|
-
"midnight": "
|
|
1535
|
-
"noon": "
|
|
1568
|
+
"midnight": "ночі",
|
|
1569
|
+
"noon": "дня",
|
|
1536
1570
|
"morning1": "ранку",
|
|
1537
1571
|
"afternoon1": "дня",
|
|
1538
1572
|
"evening1": "вечора",
|
|
@@ -1540,7 +1574,7 @@
|
|
|
1540
1574
|
},
|
|
1541
1575
|
"wide": {
|
|
1542
1576
|
"midnight": "опівночі",
|
|
1543
|
-
"noon": "
|
|
1577
|
+
"noon": "опівдні",
|
|
1544
1578
|
"morning1": "ранку",
|
|
1545
1579
|
"afternoon1": "дня",
|
|
1546
1580
|
"evening1": "вечора",
|
|
@@ -1926,13 +1960,13 @@
|
|
|
1926
1960
|
"сб"
|
|
1927
1961
|
],
|
|
1928
1962
|
"wide": [
|
|
1929
|
-
"
|
|
1963
|
+
"неділю",
|
|
1930
1964
|
"понеділок",
|
|
1931
1965
|
"вівторок",
|
|
1932
|
-
"
|
|
1966
|
+
"середу",
|
|
1933
1967
|
"четвер",
|
|
1934
|
-
"
|
|
1935
|
-
"
|
|
1968
|
+
"пʼятницю",
|
|
1969
|
+
"суботу"
|
|
1936
1970
|
]
|
|
1937
1971
|
},
|
|
1938
1972
|
"stand-alone": {
|
|
@@ -2050,15 +2084,15 @@
|
|
|
2050
2084
|
"format": {
|
|
2051
2085
|
"abbreviated": {
|
|
2052
2086
|
"midnight": "опівночі",
|
|
2053
|
-
"noon": "
|
|
2087
|
+
"noon": "опівдні",
|
|
2054
2088
|
"morning1": "ранку",
|
|
2055
2089
|
"afternoon1": "дня",
|
|
2056
2090
|
"evening1": "вечора",
|
|
2057
2091
|
"night1": "ночі"
|
|
2058
2092
|
},
|
|
2059
2093
|
"narrow": {
|
|
2060
|
-
"midnight": "
|
|
2061
|
-
"noon": "
|
|
2094
|
+
"midnight": "ночі",
|
|
2095
|
+
"noon": "дня",
|
|
2062
2096
|
"morning1": "ранку",
|
|
2063
2097
|
"afternoon1": "дня",
|
|
2064
2098
|
"evening1": "вечора",
|
|
@@ -2066,7 +2100,7 @@
|
|
|
2066
2100
|
},
|
|
2067
2101
|
"wide": {
|
|
2068
2102
|
"midnight": "опівночі",
|
|
2069
|
-
"noon": "
|
|
2103
|
+
"noon": "опівдні",
|
|
2070
2104
|
"morning1": "ранку",
|
|
2071
2105
|
"afternoon1": "дня",
|
|
2072
2106
|
"evening1": "вечора",
|
|
@@ -2376,18 +2410,54 @@
|
|
|
2376
2410
|
},
|
|
2377
2411
|
"stand-alone": {
|
|
2378
2412
|
"abbreviated": [
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2413
|
+
[
|
|
2414
|
+
"січ.",
|
|
2415
|
+
"січ"
|
|
2416
|
+
],
|
|
2417
|
+
[
|
|
2418
|
+
"лют.",
|
|
2419
|
+
"лют"
|
|
2420
|
+
],
|
|
2421
|
+
[
|
|
2422
|
+
"бер.",
|
|
2423
|
+
"бер"
|
|
2424
|
+
],
|
|
2425
|
+
[
|
|
2426
|
+
"квіт.",
|
|
2427
|
+
"кві"
|
|
2428
|
+
],
|
|
2429
|
+
[
|
|
2430
|
+
"трав.",
|
|
2431
|
+
"тра"
|
|
2432
|
+
],
|
|
2433
|
+
[
|
|
2434
|
+
"черв.",
|
|
2435
|
+
"чер"
|
|
2436
|
+
],
|
|
2437
|
+
[
|
|
2438
|
+
"лип.",
|
|
2439
|
+
"лип"
|
|
2440
|
+
],
|
|
2441
|
+
[
|
|
2442
|
+
"серп.",
|
|
2443
|
+
"сер"
|
|
2444
|
+
],
|
|
2445
|
+
[
|
|
2446
|
+
"вер.",
|
|
2447
|
+
"вер"
|
|
2448
|
+
],
|
|
2449
|
+
[
|
|
2450
|
+
"жовт.",
|
|
2451
|
+
"жов"
|
|
2452
|
+
],
|
|
2453
|
+
[
|
|
2454
|
+
"лист.",
|
|
2455
|
+
"лис"
|
|
2456
|
+
],
|
|
2457
|
+
[
|
|
2458
|
+
"груд.",
|
|
2459
|
+
"гру"
|
|
2460
|
+
]
|
|
2391
2461
|
],
|
|
2392
2462
|
"narrow": [
|
|
2393
2463
|
"С",
|
|
@@ -2449,13 +2519,13 @@
|
|
|
2449
2519
|
"сб"
|
|
2450
2520
|
],
|
|
2451
2521
|
"wide": [
|
|
2452
|
-
"
|
|
2522
|
+
"неділю",
|
|
2453
2523
|
"понеділок",
|
|
2454
2524
|
"вівторок",
|
|
2455
|
-
"
|
|
2525
|
+
"середу",
|
|
2456
2526
|
"четвер",
|
|
2457
|
-
"
|
|
2458
|
-
"
|
|
2527
|
+
"пʼятницю",
|
|
2528
|
+
"суботу"
|
|
2459
2529
|
]
|
|
2460
2530
|
},
|
|
2461
2531
|
"stand-alone": {
|
|
@@ -2573,15 +2643,15 @@
|
|
|
2573
2643
|
"format": {
|
|
2574
2644
|
"abbreviated": {
|
|
2575
2645
|
"midnight": "опівночі",
|
|
2576
|
-
"noon": "
|
|
2646
|
+
"noon": "опівдні",
|
|
2577
2647
|
"morning1": "ранку",
|
|
2578
2648
|
"afternoon1": "дня",
|
|
2579
2649
|
"evening1": "вечора",
|
|
2580
2650
|
"night1": "ночі"
|
|
2581
2651
|
},
|
|
2582
2652
|
"narrow": {
|
|
2583
|
-
"midnight": "
|
|
2584
|
-
"noon": "
|
|
2653
|
+
"midnight": "ночі",
|
|
2654
|
+
"noon": "дня",
|
|
2585
2655
|
"morning1": "ранку",
|
|
2586
2656
|
"afternoon1": "дня",
|
|
2587
2657
|
"evening1": "вечора",
|
|
@@ -2589,7 +2659,7 @@
|
|
|
2589
2659
|
},
|
|
2590
2660
|
"wide": {
|
|
2591
2661
|
"midnight": "опівночі",
|
|
2592
|
-
"noon": "
|
|
2662
|
+
"noon": "опівдні",
|
|
2593
2663
|
"morning1": "ранку",
|
|
2594
2664
|
"afternoon1": "дня",
|
|
2595
2665
|
"evening1": "вечора",
|
|
@@ -2984,13 +3054,13 @@
|
|
|
2984
3054
|
"сб"
|
|
2985
3055
|
],
|
|
2986
3056
|
"wide": [
|
|
2987
|
-
"
|
|
3057
|
+
"неділю",
|
|
2988
3058
|
"понеділок",
|
|
2989
3059
|
"вівторок",
|
|
2990
|
-
"
|
|
3060
|
+
"середу",
|
|
2991
3061
|
"четвер",
|
|
2992
|
-
"
|
|
2993
|
-
"
|
|
3062
|
+
"пʼятницю",
|
|
3063
|
+
"суботу"
|
|
2994
3064
|
]
|
|
2995
3065
|
},
|
|
2996
3066
|
"stand-alone": {
|
|
@@ -3108,15 +3178,15 @@
|
|
|
3108
3178
|
"format": {
|
|
3109
3179
|
"abbreviated": {
|
|
3110
3180
|
"midnight": "опівночі",
|
|
3111
|
-
"noon": "
|
|
3181
|
+
"noon": "опівдні",
|
|
3112
3182
|
"morning1": "ранку",
|
|
3113
3183
|
"afternoon1": "дня",
|
|
3114
3184
|
"evening1": "вечора",
|
|
3115
3185
|
"night1": "ночі"
|
|
3116
3186
|
},
|
|
3117
3187
|
"narrow": {
|
|
3118
|
-
"midnight": "
|
|
3119
|
-
"noon": "
|
|
3188
|
+
"midnight": "ночі",
|
|
3189
|
+
"noon": "дня",
|
|
3120
3190
|
"morning1": "ранку",
|
|
3121
3191
|
"afternoon1": "дня",
|
|
3122
3192
|
"evening1": "вечора",
|
|
@@ -3124,7 +3194,7 @@
|
|
|
3124
3194
|
},
|
|
3125
3195
|
"wide": {
|
|
3126
3196
|
"midnight": "опівночі",
|
|
3127
|
-
"noon": "
|
|
3197
|
+
"noon": "опівдні",
|
|
3128
3198
|
"morning1": "ранку",
|
|
3129
3199
|
"afternoon1": "дня",
|
|
3130
3200
|
"evening1": "вечора",
|
|
@@ -3434,18 +3504,54 @@
|
|
|
3434
3504
|
},
|
|
3435
3505
|
"stand-alone": {
|
|
3436
3506
|
"abbreviated": [
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3442
|
-
|
|
3443
|
-
|
|
3444
|
-
|
|
3445
|
-
|
|
3446
|
-
|
|
3447
|
-
|
|
3448
|
-
|
|
3507
|
+
[
|
|
3508
|
+
"січ.",
|
|
3509
|
+
"січ"
|
|
3510
|
+
],
|
|
3511
|
+
[
|
|
3512
|
+
"лют.",
|
|
3513
|
+
"лют"
|
|
3514
|
+
],
|
|
3515
|
+
[
|
|
3516
|
+
"бер.",
|
|
3517
|
+
"бер"
|
|
3518
|
+
],
|
|
3519
|
+
[
|
|
3520
|
+
"квіт.",
|
|
3521
|
+
"кві"
|
|
3522
|
+
],
|
|
3523
|
+
[
|
|
3524
|
+
"трав.",
|
|
3525
|
+
"тра"
|
|
3526
|
+
],
|
|
3527
|
+
[
|
|
3528
|
+
"черв.",
|
|
3529
|
+
"чер"
|
|
3530
|
+
],
|
|
3531
|
+
[
|
|
3532
|
+
"лип.",
|
|
3533
|
+
"лип"
|
|
3534
|
+
],
|
|
3535
|
+
[
|
|
3536
|
+
"серп.",
|
|
3537
|
+
"сер"
|
|
3538
|
+
],
|
|
3539
|
+
[
|
|
3540
|
+
"вер.",
|
|
3541
|
+
"вер"
|
|
3542
|
+
],
|
|
3543
|
+
[
|
|
3544
|
+
"жовт.",
|
|
3545
|
+
"жов"
|
|
3546
|
+
],
|
|
3547
|
+
[
|
|
3548
|
+
"лист.",
|
|
3549
|
+
"лис"
|
|
3550
|
+
],
|
|
3551
|
+
[
|
|
3552
|
+
"груд.",
|
|
3553
|
+
"гру"
|
|
3554
|
+
]
|
|
3449
3555
|
],
|
|
3450
3556
|
"narrow": [
|
|
3451
3557
|
"С",
|
|
@@ -3507,13 +3613,13 @@
|
|
|
3507
3613
|
"сб"
|
|
3508
3614
|
],
|
|
3509
3615
|
"wide": [
|
|
3510
|
-
"
|
|
3616
|
+
"неділю",
|
|
3511
3617
|
"понеділок",
|
|
3512
3618
|
"вівторок",
|
|
3513
|
-
"
|
|
3619
|
+
"середу",
|
|
3514
3620
|
"четвер",
|
|
3515
|
-
"
|
|
3516
|
-
"
|
|
3621
|
+
"пʼятницю",
|
|
3622
|
+
"суботу"
|
|
3517
3623
|
]
|
|
3518
3624
|
},
|
|
3519
3625
|
"stand-alone": {
|
|
@@ -3631,15 +3737,15 @@
|
|
|
3631
3737
|
"format": {
|
|
3632
3738
|
"abbreviated": {
|
|
3633
3739
|
"midnight": "опівночі",
|
|
3634
|
-
"noon": "
|
|
3740
|
+
"noon": "опівдні",
|
|
3635
3741
|
"morning1": "ранку",
|
|
3636
3742
|
"afternoon1": "дня",
|
|
3637
3743
|
"evening1": "вечора",
|
|
3638
3744
|
"night1": "ночі"
|
|
3639
3745
|
},
|
|
3640
3746
|
"narrow": {
|
|
3641
|
-
"midnight": "
|
|
3642
|
-
"noon": "
|
|
3747
|
+
"midnight": "ночі",
|
|
3748
|
+
"noon": "дня",
|
|
3643
3749
|
"morning1": "ранку",
|
|
3644
3750
|
"afternoon1": "дня",
|
|
3645
3751
|
"evening1": "вечора",
|
|
@@ -3647,7 +3753,7 @@
|
|
|
3647
3753
|
},
|
|
3648
3754
|
"wide": {
|
|
3649
3755
|
"midnight": "опівночі",
|
|
3650
|
-
"noon": "
|
|
3756
|
+
"noon": "опівдні",
|
|
3651
3757
|
"morning1": "ранку",
|
|
3652
3758
|
"afternoon1": "дня",
|
|
3653
3759
|
"evening1": "вечора",
|
|
@@ -3962,10 +4068,10 @@
|
|
|
3962
4068
|
"relative-type-1": "завтра",
|
|
3963
4069
|
"relative-type-2": "післязавтра",
|
|
3964
4070
|
"relativeTime-type-future": {
|
|
3965
|
-
"relativeTimePattern-count-one": "за {0}
|
|
3966
|
-
"relativeTimePattern-count-few": "за {0}
|
|
3967
|
-
"relativeTimePattern-count-many": "за {0}
|
|
3968
|
-
"relativeTimePattern-count-other": "за {0}
|
|
4071
|
+
"relativeTimePattern-count-one": "за {0} дн.",
|
|
4072
|
+
"relativeTimePattern-count-few": "за {0} дн.",
|
|
4073
|
+
"relativeTimePattern-count-many": "за {0} дн.",
|
|
4074
|
+
"relativeTimePattern-count-other": "за {0} дн."
|
|
3969
4075
|
},
|
|
3970
4076
|
"relativeTime-type-past": {
|
|
3971
4077
|
"relativeTimePattern-count-one": "{0} дн. тому",
|
|
@@ -4446,11 +4552,11 @@
|
|
|
4446
4552
|
"_parent": "Азія"
|
|
4447
4553
|
},
|
|
4448
4554
|
"Atlantic": {
|
|
4449
|
-
"Azores": "Азорські
|
|
4555
|
+
"Azores": "Азорські острови",
|
|
4450
4556
|
"Bermuda": "Бермуди",
|
|
4451
|
-
"Canary": "Канарські
|
|
4557
|
+
"Canary": "Канарські острови",
|
|
4452
4558
|
"Cape_Verde": "Кабо-Верде",
|
|
4453
|
-
"Faroe": "Фарерські
|
|
4559
|
+
"Faroe": "Фарерські острови",
|
|
4454
4560
|
"Madeira": "Мадейра",
|
|
4455
4561
|
"Reykjavik": "Рейкʼявік",
|
|
4456
4562
|
"South_Georgia": "Південна Джорджія",
|
|
@@ -4525,7 +4631,7 @@
|
|
|
4525
4631
|
"Stockholm": "Стокгольм",
|
|
4526
4632
|
"Tallinn": "Таллінн",
|
|
4527
4633
|
"Tirane": "Тирана",
|
|
4528
|
-
"Ulyanovsk": "
|
|
4634
|
+
"Ulyanovsk": "Ульянівськ",
|
|
4529
4635
|
"Uzhgorod": "Ужгород",
|
|
4530
4636
|
"Vaduz": "Вадуц",
|
|
4531
4637
|
"Vatican": "Ватикан",
|
|
@@ -4542,7 +4648,7 @@
|
|
|
4542
4648
|
"Antananarivo": "Антананаріву",
|
|
4543
4649
|
"Chagos": "Чаґос",
|
|
4544
4650
|
"Christmas": "Острів Різдва",
|
|
4545
|
-
"Cocos": "Кокосові
|
|
4651
|
+
"Cocos": "Кокосові острови",
|
|
4546
4652
|
"Comoro": "Комори",
|
|
4547
4653
|
"Kerguelen": "Керґелен",
|
|
4548
4654
|
"Mahe": "Махе",
|
|
@@ -4650,52 +4756,28 @@
|
|
|
4650
4756
|
},
|
|
4651
4757
|
"decimalFormat-short": {
|
|
4652
4758
|
"1000-one": "0 тис'.'",
|
|
4653
|
-
"1000-few": "0 тис'.'",
|
|
4654
|
-
"1000-many": "0 тис'.'",
|
|
4655
4759
|
"1000-other": "0 тис'.'",
|
|
4656
4760
|
"10000-one": "00 тис'.'",
|
|
4657
|
-
"10000-few": "00 тис'.'",
|
|
4658
|
-
"10000-many": "00 тис'.'",
|
|
4659
4761
|
"10000-other": "00 тис'.'",
|
|
4660
4762
|
"100000-one": "000 тис'.'",
|
|
4661
|
-
"100000-few": "000 тис'.'",
|
|
4662
|
-
"100000-many": "000 тис'.'",
|
|
4663
4763
|
"100000-other": "000 тис'.'",
|
|
4664
4764
|
"1000000-one": "0 млн",
|
|
4665
|
-
"1000000-few": "0 млн",
|
|
4666
|
-
"1000000-many": "0 млн",
|
|
4667
4765
|
"1000000-other": "0 млн",
|
|
4668
4766
|
"10000000-one": "00 млн",
|
|
4669
|
-
"10000000-few": "00 млн",
|
|
4670
|
-
"10000000-many": "00 млн",
|
|
4671
4767
|
"10000000-other": "00 млн",
|
|
4672
4768
|
"100000000-one": "000 млн",
|
|
4673
|
-
"100000000-few": "000 млн",
|
|
4674
|
-
"100000000-many": "000 млн",
|
|
4675
4769
|
"100000000-other": "000 млн",
|
|
4676
4770
|
"1000000000-one": "0 млрд",
|
|
4677
|
-
"1000000000-few": "0 млрд",
|
|
4678
|
-
"1000000000-many": "0 млрд",
|
|
4679
4771
|
"1000000000-other": "0 млрд",
|
|
4680
4772
|
"10000000000-one": "00 млрд",
|
|
4681
|
-
"10000000000-few": "00 млрд",
|
|
4682
|
-
"10000000000-many": "00 млрд",
|
|
4683
4773
|
"10000000000-other": "00 млрд",
|
|
4684
4774
|
"100000000000-one": "000 млрд",
|
|
4685
|
-
"100000000000-few": "000 млрд",
|
|
4686
|
-
"100000000000-many": "000 млрд",
|
|
4687
4775
|
"100000000000-other": "000 млрд",
|
|
4688
4776
|
"1000000000000-one": "0 трлн",
|
|
4689
|
-
"1000000000000-few": "0 трлн",
|
|
4690
|
-
"1000000000000-many": "0 трлн",
|
|
4691
4777
|
"1000000000000-other": "0 трлн",
|
|
4692
4778
|
"10000000000000-one": "00 трлн",
|
|
4693
|
-
"10000000000000-few": "00 трлн",
|
|
4694
|
-
"10000000000000-many": "00 трлн",
|
|
4695
4779
|
"10000000000000-other": "00 трлн",
|
|
4696
4780
|
"100000000000000-one": "000 трлн",
|
|
4697
|
-
"100000000000000-few": "000 трлн",
|
|
4698
|
-
"100000000000000-many": "000 трлн",
|
|
4699
4781
|
"100000000000000-other": "000 трлн"
|
|
4700
4782
|
},
|
|
4701
4783
|
"scientificFormat": {
|
|
@@ -4857,6 +4939,12 @@
|
|
|
4857
4939
|
"10p-24": {
|
|
4858
4940
|
"unitPrefixPattern": "й{0}"
|
|
4859
4941
|
},
|
|
4942
|
+
"10p-27": {
|
|
4943
|
+
"unitPrefixPattern": "р{0}"
|
|
4944
|
+
},
|
|
4945
|
+
"10p-30": {
|
|
4946
|
+
"unitPrefixPattern": "кв{0}"
|
|
4947
|
+
},
|
|
4860
4948
|
"10p1": {
|
|
4861
4949
|
"unitPrefixPattern": "да{0}"
|
|
4862
4950
|
},
|
|
@@ -4887,6 +4975,12 @@
|
|
|
4887
4975
|
"10p24": {
|
|
4888
4976
|
"unitPrefixPattern": "Й{0}"
|
|
4889
4977
|
},
|
|
4978
|
+
"10p27": {
|
|
4979
|
+
"unitPrefixPattern": "Р{0}"
|
|
4980
|
+
},
|
|
4981
|
+
"10p30": {
|
|
4982
|
+
"unitPrefixPattern": "Кв{0}"
|
|
4983
|
+
},
|
|
4890
4984
|
"1024p1": {
|
|
4891
4985
|
"unitPrefixPattern": "Кі{0}"
|
|
4892
4986
|
},
|
|
@@ -4916,16 +5010,10 @@
|
|
|
4916
5010
|
},
|
|
4917
5011
|
"power2": {
|
|
4918
5012
|
"compoundUnitPattern1": "{0}²",
|
|
4919
|
-
"compoundUnitPattern1-count-one": "{0}²",
|
|
4920
|
-
"compoundUnitPattern1-count-few": "{0}²",
|
|
4921
|
-
"compoundUnitPattern1-count-many": "{0}²",
|
|
4922
5013
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4923
5014
|
},
|
|
4924
5015
|
"power3": {
|
|
4925
5016
|
"compoundUnitPattern1": "{0}³",
|
|
4926
|
-
"compoundUnitPattern1-count-one": "{0}³",
|
|
4927
|
-
"compoundUnitPattern1-count-few": "{0}³",
|
|
4928
|
-
"compoundUnitPattern1-count-many": "{0}³",
|
|
4929
5017
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4930
5018
|
},
|
|
4931
5019
|
"times": {
|
|
@@ -4961,9 +5049,6 @@
|
|
|
4961
5049
|
},
|
|
4962
5050
|
"angle-degree": {
|
|
4963
5051
|
"displayName": "градуси",
|
|
4964
|
-
"unitPattern-count-one": "{0}°",
|
|
4965
|
-
"unitPattern-count-few": "{0}°",
|
|
4966
|
-
"unitPattern-count-many": "{0}°",
|
|
4967
5052
|
"unitPattern-count-other": "{0}°"
|
|
4968
5053
|
},
|
|
4969
5054
|
"angle-arc-minute": {
|
|
@@ -5092,23 +5177,14 @@
|
|
|
5092
5177
|
},
|
|
5093
5178
|
"concentr-percent": {
|
|
5094
5179
|
"displayName": "відсоток",
|
|
5095
|
-
"unitPattern-count-one": "{0}%",
|
|
5096
|
-
"unitPattern-count-few": "{0}%",
|
|
5097
|
-
"unitPattern-count-many": "{0}%",
|
|
5098
5180
|
"unitPattern-count-other": "{0}%"
|
|
5099
5181
|
},
|
|
5100
5182
|
"concentr-permille": {
|
|
5101
5183
|
"displayName": "проміле",
|
|
5102
|
-
"unitPattern-count-one": "{0}‰",
|
|
5103
|
-
"unitPattern-count-few": "{0}‰",
|
|
5104
|
-
"unitPattern-count-many": "{0}‰",
|
|
5105
5184
|
"unitPattern-count-other": "{0}‰"
|
|
5106
5185
|
},
|
|
5107
5186
|
"concentr-permyriad": {
|
|
5108
5187
|
"displayName": "проміріада",
|
|
5109
|
-
"unitPattern-count-one": "{0}‱",
|
|
5110
|
-
"unitPattern-count-few": "{0}‱",
|
|
5111
|
-
"unitPattern-count-many": "{0}‱",
|
|
5112
5188
|
"unitPattern-count-other": "{0}‱"
|
|
5113
5189
|
},
|
|
5114
5190
|
"concentr-mole": {
|
|
@@ -5235,7 +5311,7 @@
|
|
|
5235
5311
|
"unitPattern-count-one": "{0} 10-річчя",
|
|
5236
5312
|
"unitPattern-count-few": "{0} 10-річчя",
|
|
5237
5313
|
"unitPattern-count-many": "{0} 10-річ",
|
|
5238
|
-
"unitPattern-count-other": "{0} 10
|
|
5314
|
+
"unitPattern-count-other": "{0} 10-річ"
|
|
5239
5315
|
},
|
|
5240
5316
|
"duration-year": {
|
|
5241
5317
|
"displayName": "р.",
|
|
@@ -5251,7 +5327,7 @@
|
|
|
5251
5327
|
"unitPattern-count-few": "{0} кв.",
|
|
5252
5328
|
"unitPattern-count-many": "{0} кв.",
|
|
5253
5329
|
"unitPattern-count-other": "{0} кв.",
|
|
5254
|
-
"perUnitPattern": "{0}
|
|
5330
|
+
"perUnitPattern": "{0}/кв"
|
|
5255
5331
|
},
|
|
5256
5332
|
"duration-month": {
|
|
5257
5333
|
"displayName": "міс.",
|
|
@@ -5259,7 +5335,7 @@
|
|
|
5259
5335
|
"unitPattern-count-few": "{0} міс.",
|
|
5260
5336
|
"unitPattern-count-many": "{0} міс.",
|
|
5261
5337
|
"unitPattern-count-other": "{0} міс.",
|
|
5262
|
-
"perUnitPattern": "{0}
|
|
5338
|
+
"perUnitPattern": "{0}/міс"
|
|
5263
5339
|
},
|
|
5264
5340
|
"duration-week": {
|
|
5265
5341
|
"displayName": "тиж.",
|
|
@@ -5275,7 +5351,7 @@
|
|
|
5275
5351
|
"unitPattern-count-few": "{0} дн.",
|
|
5276
5352
|
"unitPattern-count-many": "{0} дн.",
|
|
5277
5353
|
"unitPattern-count-other": "{0} дн.",
|
|
5278
|
-
"perUnitPattern": "{0}
|
|
5354
|
+
"perUnitPattern": "{0}/дн"
|
|
5279
5355
|
},
|
|
5280
5356
|
"duration-hour": {
|
|
5281
5357
|
"displayName": "год",
|
|
@@ -5337,14 +5413,14 @@
|
|
|
5337
5413
|
"unitPattern-count-other": "{0} мА"
|
|
5338
5414
|
},
|
|
5339
5415
|
"electric-ohm": {
|
|
5340
|
-
"displayName": "
|
|
5416
|
+
"displayName": "Ом",
|
|
5341
5417
|
"unitPattern-count-one": "{0} Ом",
|
|
5342
5418
|
"unitPattern-count-few": "{0} Ом",
|
|
5343
5419
|
"unitPattern-count-many": "{0} Ом",
|
|
5344
5420
|
"unitPattern-count-other": "{0} Ом"
|
|
5345
5421
|
},
|
|
5346
5422
|
"electric-volt": {
|
|
5347
|
-
"displayName": "
|
|
5423
|
+
"displayName": "В",
|
|
5348
5424
|
"unitPattern-count-one": "{0} В",
|
|
5349
5425
|
"unitPattern-count-few": "{0} В",
|
|
5350
5426
|
"unitPattern-count-many": "{0} В",
|
|
@@ -5364,22 +5440,15 @@
|
|
|
5364
5440
|
"unitPattern-count-many": "{0} кал",
|
|
5365
5441
|
"unitPattern-count-other": "{0} кал"
|
|
5366
5442
|
},
|
|
5367
|
-
"energy-foodcalorie": {
|
|
5368
|
-
"displayName": "ккал",
|
|
5369
|
-
"unitPattern-count-one": "{0} ккал",
|
|
5370
|
-
"unitPattern-count-few": "{0} ккал",
|
|
5371
|
-
"unitPattern-count-many": "{0} ккал",
|
|
5372
|
-
"unitPattern-count-other": "{0} ккал"
|
|
5373
|
-
},
|
|
5374
5443
|
"energy-kilojoule": {
|
|
5375
|
-
"displayName": "
|
|
5444
|
+
"displayName": "кДж",
|
|
5376
5445
|
"unitPattern-count-one": "{0} кДж",
|
|
5377
5446
|
"unitPattern-count-few": "{0} кДж",
|
|
5378
5447
|
"unitPattern-count-many": "{0} кДж",
|
|
5379
5448
|
"unitPattern-count-other": "{0} кДж"
|
|
5380
5449
|
},
|
|
5381
5450
|
"energy-joule": {
|
|
5382
|
-
"displayName": "
|
|
5451
|
+
"displayName": "Дж",
|
|
5383
5452
|
"unitPattern-count-one": "{0} Дж",
|
|
5384
5453
|
"unitPattern-count-few": "{0} Дж",
|
|
5385
5454
|
"unitPattern-count-many": "{0} Дж",
|
|
@@ -5393,18 +5462,18 @@
|
|
|
5393
5462
|
"unitPattern-count-other": "{0} кВт⋅год"
|
|
5394
5463
|
},
|
|
5395
5464
|
"energy-electronvolt": {
|
|
5396
|
-
"displayName": "
|
|
5465
|
+
"displayName": "еВ",
|
|
5397
5466
|
"unitPattern-count-one": "{0} еВ",
|
|
5398
5467
|
"unitPattern-count-few": "{0} еВ",
|
|
5399
5468
|
"unitPattern-count-many": "{0} еВ",
|
|
5400
5469
|
"unitPattern-count-other": "{0} еВ"
|
|
5401
5470
|
},
|
|
5402
5471
|
"energy-british-thermal-unit": {
|
|
5403
|
-
"displayName": "
|
|
5404
|
-
"unitPattern-count-one": "{0}
|
|
5405
|
-
"unitPattern-count-few": "{0}
|
|
5406
|
-
"unitPattern-count-many": "{0}
|
|
5407
|
-
"unitPattern-count-other": "{0}
|
|
5472
|
+
"displayName": "БТО",
|
|
5473
|
+
"unitPattern-count-one": "{0} БТО",
|
|
5474
|
+
"unitPattern-count-few": "{0} БТО",
|
|
5475
|
+
"unitPattern-count-many": "{0} БТО",
|
|
5476
|
+
"unitPattern-count-other": "{0} БТО"
|
|
5408
5477
|
},
|
|
5409
5478
|
"energy-therm-us": {
|
|
5410
5479
|
"displayName": "ам. терми",
|
|
@@ -5477,39 +5546,39 @@
|
|
|
5477
5546
|
"unitPattern-count-other": "{0} пкс"
|
|
5478
5547
|
},
|
|
5479
5548
|
"graphics-megapixel": {
|
|
5480
|
-
"displayName": "
|
|
5481
|
-
"unitPattern-count-one": "{0}
|
|
5482
|
-
"unitPattern-count-few": "{0}
|
|
5483
|
-
"unitPattern-count-many": "{0}
|
|
5484
|
-
"unitPattern-count-other": "{0}
|
|
5549
|
+
"displayName": "Мпкс",
|
|
5550
|
+
"unitPattern-count-one": "{0} Мпкс",
|
|
5551
|
+
"unitPattern-count-few": "{0} Мпкс",
|
|
5552
|
+
"unitPattern-count-many": "{0} Мпкс",
|
|
5553
|
+
"unitPattern-count-other": "{0} Мпкс"
|
|
5485
5554
|
},
|
|
5486
5555
|
"graphics-pixel-per-centimeter": {
|
|
5487
|
-
"displayName": "
|
|
5488
|
-
"unitPattern-count-one": "{0}
|
|
5489
|
-
"unitPattern-count-few": "{0}
|
|
5490
|
-
"unitPattern-count-many": "{0}
|
|
5491
|
-
"unitPattern-count-other": "{0}
|
|
5556
|
+
"displayName": "пкс на см",
|
|
5557
|
+
"unitPattern-count-one": "{0} пкс/см",
|
|
5558
|
+
"unitPattern-count-few": "{0} пкс/см",
|
|
5559
|
+
"unitPattern-count-many": "{0} пкс/см",
|
|
5560
|
+
"unitPattern-count-other": "{0} пкс/см"
|
|
5492
5561
|
},
|
|
5493
5562
|
"graphics-pixel-per-inch": {
|
|
5494
|
-
"displayName": "
|
|
5495
|
-
"unitPattern-count-one": "{0}
|
|
5496
|
-
"unitPattern-count-few": "{0}
|
|
5497
|
-
"unitPattern-count-many": "{0}
|
|
5498
|
-
"unitPattern-count-other": "{0}
|
|
5563
|
+
"displayName": "пкс на дюйм",
|
|
5564
|
+
"unitPattern-count-one": "{0} пкс/“",
|
|
5565
|
+
"unitPattern-count-few": "{0} пкс/“",
|
|
5566
|
+
"unitPattern-count-many": "{0} пкс/“",
|
|
5567
|
+
"unitPattern-count-other": "{0} пкс/“"
|
|
5499
5568
|
},
|
|
5500
5569
|
"graphics-dot-per-centimeter": {
|
|
5501
5570
|
"displayName": "точки на см",
|
|
5502
5571
|
"unitPattern-count-one": "{0} точка на см",
|
|
5503
5572
|
"unitPattern-count-few": "{0} точки на см",
|
|
5504
5573
|
"unitPattern-count-many": "{0} точок на см",
|
|
5505
|
-
"unitPattern-count-other": "{0}
|
|
5574
|
+
"unitPattern-count-other": "{0} точки на см"
|
|
5506
5575
|
},
|
|
5507
5576
|
"graphics-dot-per-inch": {
|
|
5508
|
-
"displayName": "
|
|
5509
|
-
"unitPattern-count-one": "{0}
|
|
5510
|
-
"unitPattern-count-few": "{0}
|
|
5511
|
-
"unitPattern-count-many": "{0}
|
|
5512
|
-
"unitPattern-count-other": "{0}
|
|
5577
|
+
"displayName": "тчк/дюйм",
|
|
5578
|
+
"unitPattern-count-one": "{0} тчк/дюйм",
|
|
5579
|
+
"unitPattern-count-few": "{0} тчк/дюйм",
|
|
5580
|
+
"unitPattern-count-many": "{0} тчк/дюйм",
|
|
5581
|
+
"unitPattern-count-other": "{0} тчк/дюйм"
|
|
5513
5582
|
},
|
|
5514
5583
|
"graphics-dot": {
|
|
5515
5584
|
"displayName": "тчк",
|
|
@@ -5520,9 +5589,6 @@
|
|
|
5520
5589
|
},
|
|
5521
5590
|
"length-earth-radius": {
|
|
5522
5591
|
"displayName": "R⊕",
|
|
5523
|
-
"unitPattern-count-one": "{0} R⊕",
|
|
5524
|
-
"unitPattern-count-few": "{0} R⊕",
|
|
5525
|
-
"unitPattern-count-many": "{0} R⊕",
|
|
5526
5592
|
"unitPattern-count-other": "{0} R⊕"
|
|
5527
5593
|
},
|
|
5528
5594
|
"length-kilometer": {
|
|
@@ -5622,7 +5688,7 @@
|
|
|
5622
5688
|
"unitPattern-count-other": "{0} пк"
|
|
5623
5689
|
},
|
|
5624
5690
|
"length-light-year": {
|
|
5625
|
-
"displayName": "св.
|
|
5691
|
+
"displayName": "св. роки",
|
|
5626
5692
|
"unitPattern-count-one": "{0} св. р.",
|
|
5627
5693
|
"unitPattern-count-few": "{0} св. р.",
|
|
5628
5694
|
"unitPattern-count-many": "{0} св. р.",
|
|
@@ -5637,10 +5703,10 @@
|
|
|
5637
5703
|
},
|
|
5638
5704
|
"length-furlong": {
|
|
5639
5705
|
"displayName": "фурлонги",
|
|
5640
|
-
"unitPattern-count-one": "{0}
|
|
5641
|
-
"unitPattern-count-few": "{0}
|
|
5642
|
-
"unitPattern-count-many": "{0}
|
|
5643
|
-
"unitPattern-count-other": "{0}
|
|
5706
|
+
"unitPattern-count-one": "{0} фрл",
|
|
5707
|
+
"unitPattern-count-few": "{0} фрл",
|
|
5708
|
+
"unitPattern-count-many": "{0} фрл",
|
|
5709
|
+
"unitPattern-count-other": "{0} фрл"
|
|
5644
5710
|
},
|
|
5645
5711
|
"length-fathom": {
|
|
5646
5712
|
"displayName": "фатоми",
|
|
@@ -5657,7 +5723,7 @@
|
|
|
5657
5723
|
"unitPattern-count-other": "{0} м. милі"
|
|
5658
5724
|
},
|
|
5659
5725
|
"length-mile-scandinavian": {
|
|
5660
|
-
"displayName": "сканд.
|
|
5726
|
+
"displayName": "сканд. милі",
|
|
5661
5727
|
"unitPattern-count-one": "{0} сканд. миля",
|
|
5662
5728
|
"unitPattern-count-few": "{0} сканд. милі",
|
|
5663
5729
|
"unitPattern-count-many": "{0} сканд. миль",
|
|
@@ -5671,10 +5737,7 @@
|
|
|
5671
5737
|
"unitPattern-count-other": "{0} пт"
|
|
5672
5738
|
},
|
|
5673
5739
|
"length-solar-radius": {
|
|
5674
|
-
"displayName": "
|
|
5675
|
-
"unitPattern-count-one": "{0} R☉",
|
|
5676
|
-
"unitPattern-count-few": "{0} R☉",
|
|
5677
|
-
"unitPattern-count-many": "{0} R☉",
|
|
5740
|
+
"displayName": "R☉",
|
|
5678
5741
|
"unitPattern-count-other": "{0} R☉"
|
|
5679
5742
|
},
|
|
5680
5743
|
"light-lux": {
|
|
@@ -5700,9 +5763,6 @@
|
|
|
5700
5763
|
},
|
|
5701
5764
|
"light-solar-luminosity": {
|
|
5702
5765
|
"displayName": "світності Сонця",
|
|
5703
|
-
"unitPattern-count-one": "{0} L☉",
|
|
5704
|
-
"unitPattern-count-few": "{0} L☉",
|
|
5705
|
-
"unitPattern-count-many": "{0} L☉",
|
|
5706
5766
|
"unitPattern-count-other": "{0} L☉"
|
|
5707
5767
|
},
|
|
5708
5768
|
"mass-tonne": {
|
|
@@ -5743,25 +5803,25 @@
|
|
|
5743
5803
|
"unitPattern-count-other": "{0} мкг"
|
|
5744
5804
|
},
|
|
5745
5805
|
"mass-ton": {
|
|
5746
|
-
"displayName": "
|
|
5806
|
+
"displayName": "т",
|
|
5747
5807
|
"unitPattern-count-one": "{0} т",
|
|
5748
5808
|
"unitPattern-count-few": "{0} т",
|
|
5749
5809
|
"unitPattern-count-many": "{0} т",
|
|
5750
5810
|
"unitPattern-count-other": "{0} т"
|
|
5751
5811
|
},
|
|
5752
5812
|
"mass-stone": {
|
|
5753
|
-
"displayName": "
|
|
5813
|
+
"displayName": "стн",
|
|
5754
5814
|
"unitPattern-count-one": "{0} стн",
|
|
5755
5815
|
"unitPattern-count-few": "{0} стн",
|
|
5756
5816
|
"unitPattern-count-many": "{0} стн",
|
|
5757
5817
|
"unitPattern-count-other": "{0} стн"
|
|
5758
5818
|
},
|
|
5759
5819
|
"mass-pound": {
|
|
5760
|
-
"displayName": "
|
|
5761
|
-
"unitPattern-count-one": "{0}
|
|
5762
|
-
"unitPattern-count-few": "{0}
|
|
5763
|
-
"unitPattern-count-many": "{0}
|
|
5764
|
-
"unitPattern-count-other": "{0}
|
|
5820
|
+
"displayName": "фнт",
|
|
5821
|
+
"unitPattern-count-one": "{0} фнт",
|
|
5822
|
+
"unitPattern-count-few": "{0} фнт",
|
|
5823
|
+
"unitPattern-count-many": "{0} фнт",
|
|
5824
|
+
"unitPattern-count-other": "{0} фнт",
|
|
5765
5825
|
"perUnitPattern": "{0}/фунт"
|
|
5766
5826
|
},
|
|
5767
5827
|
"mass-ounce": {
|
|
@@ -5795,16 +5855,10 @@
|
|
|
5795
5855
|
},
|
|
5796
5856
|
"mass-earth-mass": {
|
|
5797
5857
|
"displayName": "маси Землі",
|
|
5798
|
-
"unitPattern-count-one": "{0} M⊕",
|
|
5799
|
-
"unitPattern-count-few": "{0} M⊕",
|
|
5800
|
-
"unitPattern-count-many": "{0} M⊕",
|
|
5801
5858
|
"unitPattern-count-other": "{0} M⊕"
|
|
5802
5859
|
},
|
|
5803
5860
|
"mass-solar-mass": {
|
|
5804
5861
|
"displayName": "маси Сонця",
|
|
5805
|
-
"unitPattern-count-one": "{0} M☉",
|
|
5806
|
-
"unitPattern-count-few": "{0} M☉",
|
|
5807
|
-
"unitPattern-count-many": "{0} M☉",
|
|
5808
5862
|
"unitPattern-count-other": "{0} M☉"
|
|
5809
5863
|
},
|
|
5810
5864
|
"mass-grain": {
|
|
@@ -5836,7 +5890,7 @@
|
|
|
5836
5890
|
"unitPattern-count-other": "{0} кВт"
|
|
5837
5891
|
},
|
|
5838
5892
|
"power-watt": {
|
|
5839
|
-
"displayName": "
|
|
5893
|
+
"displayName": "Вт",
|
|
5840
5894
|
"unitPattern-count-one": "{0} Вт",
|
|
5841
5895
|
"unitPattern-count-few": "{0} Вт",
|
|
5842
5896
|
"unitPattern-count-many": "{0} Вт",
|
|
@@ -5948,17 +6002,21 @@
|
|
|
5948
6002
|
"unitPattern-count-other": "{0} милі/год"
|
|
5949
6003
|
},
|
|
5950
6004
|
"speed-knot": {
|
|
5951
|
-
"displayName": "
|
|
5952
|
-
"unitPattern-count-one": "{0}
|
|
5953
|
-
"unitPattern-count-few": "{0}
|
|
5954
|
-
"unitPattern-count-many": "{0}
|
|
5955
|
-
"unitPattern-count-other": "{0}
|
|
6005
|
+
"displayName": "вуз.",
|
|
6006
|
+
"unitPattern-count-one": "{0} вуз.",
|
|
6007
|
+
"unitPattern-count-few": "{0} вуз.",
|
|
6008
|
+
"unitPattern-count-many": "{0} вуз.",
|
|
6009
|
+
"unitPattern-count-other": "{0} вуз."
|
|
6010
|
+
},
|
|
6011
|
+
"speed-beaufort": {
|
|
6012
|
+
"displayName": "бали Бофорта",
|
|
6013
|
+
"unitPattern-count-one": "{0} бал Бофорта",
|
|
6014
|
+
"unitPattern-count-few": "{0} бали Бофорта",
|
|
6015
|
+
"unitPattern-count-many": "{0} балів Бофорта",
|
|
6016
|
+
"unitPattern-count-other": "{0} бала Бофорта"
|
|
5956
6017
|
},
|
|
5957
6018
|
"temperature-generic": {
|
|
5958
6019
|
"displayName": "°",
|
|
5959
|
-
"unitPattern-count-one": "{0}°",
|
|
5960
|
-
"unitPattern-count-few": "{0}°",
|
|
5961
|
-
"unitPattern-count-many": "{0}°",
|
|
5962
6020
|
"unitPattern-count-other": "{0}°"
|
|
5963
6021
|
},
|
|
5964
6022
|
"temperature-celsius": {
|
|
@@ -5976,7 +6034,7 @@
|
|
|
5976
6034
|
"unitPattern-count-other": "{0} °F"
|
|
5977
6035
|
},
|
|
5978
6036
|
"temperature-kelvin": {
|
|
5979
|
-
"displayName": "
|
|
6037
|
+
"displayName": "К",
|
|
5980
6038
|
"unitPattern-count-one": "{0} К",
|
|
5981
6039
|
"unitPattern-count-few": "{0} К",
|
|
5982
6040
|
"unitPattern-count-many": "{0} К",
|
|
@@ -6036,9 +6094,9 @@
|
|
|
6036
6094
|
"volume-cubic-foot": {
|
|
6037
6095
|
"displayName": "фути³",
|
|
6038
6096
|
"unitPattern-count-one": "{0} фут³",
|
|
6039
|
-
"unitPattern-count-few": "{0}
|
|
6040
|
-
"unitPattern-count-many": "{0}
|
|
6041
|
-
"unitPattern-count-other": "{0}
|
|
6097
|
+
"unitPattern-count-few": "{0} фт³",
|
|
6098
|
+
"unitPattern-count-many": "{0} фт³",
|
|
6099
|
+
"unitPattern-count-other": "{0} фт³"
|
|
6042
6100
|
},
|
|
6043
6101
|
"volume-cubic-inch": {
|
|
6044
6102
|
"displayName": "дюйми³",
|
|
@@ -6106,10 +6164,10 @@
|
|
|
6106
6164
|
},
|
|
6107
6165
|
"volume-acre-foot": {
|
|
6108
6166
|
"displayName": "акр-фути",
|
|
6109
|
-
"unitPattern-count-one": "{0}
|
|
6110
|
-
"unitPattern-count-few": "{0}
|
|
6111
|
-
"unitPattern-count-many": "{0}
|
|
6112
|
-
"unitPattern-count-other": "{0}
|
|
6167
|
+
"unitPattern-count-one": "{0} акр-фт",
|
|
6168
|
+
"unitPattern-count-few": "{0} акр-фт",
|
|
6169
|
+
"unitPattern-count-many": "{0} акр-фт",
|
|
6170
|
+
"unitPattern-count-other": "{0} акр-фт"
|
|
6113
6171
|
},
|
|
6114
6172
|
"volume-bushel": {
|
|
6115
6173
|
"displayName": "бушелі",
|
|
@@ -6127,7 +6185,7 @@
|
|
|
6127
6185
|
"perUnitPattern": "{0}/гал."
|
|
6128
6186
|
},
|
|
6129
6187
|
"volume-gallon-imperial": {
|
|
6130
|
-
"displayName": "англ.
|
|
6188
|
+
"displayName": "англ. галони",
|
|
6131
6189
|
"unitPattern-count-one": "{0} англ. галон",
|
|
6132
6190
|
"unitPattern-count-few": "{0} англ. галони",
|
|
6133
6191
|
"unitPattern-count-many": "{0} англ. галонів",
|
|
@@ -6149,14 +6207,14 @@
|
|
|
6149
6207
|
"unitPattern-count-other": "{0} пінти"
|
|
6150
6208
|
},
|
|
6151
6209
|
"volume-cup": {
|
|
6152
|
-
"displayName": "
|
|
6153
|
-
"unitPattern-count-one": "{0}
|
|
6154
|
-
"unitPattern-count-few": "{0}
|
|
6155
|
-
"unitPattern-count-many": "{0}
|
|
6156
|
-
"unitPattern-count-other": "{0}
|
|
6210
|
+
"displayName": "чашки",
|
|
6211
|
+
"unitPattern-count-one": "{0} чаш.",
|
|
6212
|
+
"unitPattern-count-few": "{0} чаш.",
|
|
6213
|
+
"unitPattern-count-many": "{0} чаш.",
|
|
6214
|
+
"unitPattern-count-other": "{0} чаш."
|
|
6157
6215
|
},
|
|
6158
6216
|
"volume-fluid-ounce": {
|
|
6159
|
-
"displayName": "рід.
|
|
6217
|
+
"displayName": "рід. унції",
|
|
6160
6218
|
"unitPattern-count-one": "{0} рід. унція",
|
|
6161
6219
|
"unitPattern-count-few": "{0} рід. унції",
|
|
6162
6220
|
"unitPattern-count-many": "{0} рід. унцій",
|
|
@@ -6170,32 +6228,32 @@
|
|
|
6170
6228
|
"unitPattern-count-other": "{0} англ. рід. унції"
|
|
6171
6229
|
},
|
|
6172
6230
|
"volume-tablespoon": {
|
|
6173
|
-
"displayName": "ст.
|
|
6231
|
+
"displayName": "ст. ложки",
|
|
6174
6232
|
"unitPattern-count-one": "{0} ст. ложка",
|
|
6175
6233
|
"unitPattern-count-few": "{0} ст. ложки",
|
|
6176
6234
|
"unitPattern-count-many": "{0} ст. ложок",
|
|
6177
6235
|
"unitPattern-count-other": "{0} ст. ложки"
|
|
6178
6236
|
},
|
|
6179
6237
|
"volume-teaspoon": {
|
|
6180
|
-
"displayName": "ч.
|
|
6181
|
-
"unitPattern-count-one": "{0} ч.
|
|
6182
|
-
"unitPattern-count-few": "{0} ч.
|
|
6183
|
-
"unitPattern-count-many": "{0} ч.
|
|
6184
|
-
"unitPattern-count-other": "{0} ч.
|
|
6238
|
+
"displayName": "ч. ложки",
|
|
6239
|
+
"unitPattern-count-one": "{0} ч. ложка",
|
|
6240
|
+
"unitPattern-count-few": "{0} ч. ложки",
|
|
6241
|
+
"unitPattern-count-many": "{0} ч. ложок",
|
|
6242
|
+
"unitPattern-count-other": "{0} ч. ложки"
|
|
6185
6243
|
},
|
|
6186
6244
|
"volume-barrel": {
|
|
6187
|
-
"displayName": "
|
|
6245
|
+
"displayName": "барелі",
|
|
6188
6246
|
"unitPattern-count-one": "{0} брл",
|
|
6189
6247
|
"unitPattern-count-few": "{0} брл",
|
|
6190
6248
|
"unitPattern-count-many": "{0} брл",
|
|
6191
6249
|
"unitPattern-count-other": "{0} брл"
|
|
6192
6250
|
},
|
|
6193
6251
|
"volume-dessert-spoon": {
|
|
6194
|
-
"displayName": "дес.
|
|
6195
|
-
"unitPattern-count-one": "{0} дес.
|
|
6196
|
-
"unitPattern-count-few": "{0} дес.
|
|
6197
|
-
"unitPattern-count-many": "{0} дес.
|
|
6198
|
-
"unitPattern-count-other": "{0} дес.
|
|
6252
|
+
"displayName": "дес. ложки",
|
|
6253
|
+
"unitPattern-count-one": "{0} дес. ложка",
|
|
6254
|
+
"unitPattern-count-few": "{0} дес. ложки",
|
|
6255
|
+
"unitPattern-count-many": "{0} дес. ложок",
|
|
6256
|
+
"unitPattern-count-other": "{0} дес. ложки"
|
|
6199
6257
|
},
|
|
6200
6258
|
"volume-dessert-spoon-imperial": {
|
|
6201
6259
|
"displayName": "англ. дес. ложки",
|
|
@@ -6205,28 +6263,28 @@
|
|
|
6205
6263
|
"unitPattern-count-other": "{0} англ. дес. ложки"
|
|
6206
6264
|
},
|
|
6207
6265
|
"volume-drop": {
|
|
6208
|
-
"displayName": "
|
|
6266
|
+
"displayName": "краплі",
|
|
6209
6267
|
"unitPattern-count-one": "{0} крапля",
|
|
6210
6268
|
"unitPattern-count-few": "{0} краплі",
|
|
6211
6269
|
"unitPattern-count-many": "{0} крапель",
|
|
6212
6270
|
"unitPattern-count-other": "{0} краплі"
|
|
6213
6271
|
},
|
|
6214
6272
|
"volume-dram": {
|
|
6215
|
-
"displayName": "рід.
|
|
6273
|
+
"displayName": "рід. драхми",
|
|
6216
6274
|
"unitPattern-count-one": "{0} рід. драхма",
|
|
6217
6275
|
"unitPattern-count-few": "{0} рід. драхми",
|
|
6218
6276
|
"unitPattern-count-many": "{0} рід. драхм",
|
|
6219
6277
|
"unitPattern-count-other": "{0} рід. драхми"
|
|
6220
6278
|
},
|
|
6221
6279
|
"volume-jigger": {
|
|
6222
|
-
"displayName": "
|
|
6280
|
+
"displayName": "мірки",
|
|
6223
6281
|
"unitPattern-count-one": "{0} мірка",
|
|
6224
6282
|
"unitPattern-count-few": "{0} мірки",
|
|
6225
6283
|
"unitPattern-count-many": "{0} мірок",
|
|
6226
6284
|
"unitPattern-count-other": "{0} мірки"
|
|
6227
6285
|
},
|
|
6228
6286
|
"volume-pinch": {
|
|
6229
|
-
"displayName": "
|
|
6287
|
+
"displayName": "дрібки",
|
|
6230
6288
|
"unitPattern-count-one": "{0} дрібка",
|
|
6231
6289
|
"unitPattern-count-few": "{0} дрібки",
|
|
6232
6290
|
"unitPattern-count-many": "{0} дрібок",
|
|
@@ -6249,9 +6307,9 @@
|
|
|
6249
6307
|
}
|
|
6250
6308
|
},
|
|
6251
6309
|
"lenient-scope-number": {
|
|
6252
|
-
"minusSign": "
|
|
6253
|
-
"commaSign": "
|
|
6254
|
-
"plusSign": "
|
|
6310
|
+
"minusSign": "--﹣ ‑‒−⁻₋➖",
|
|
6311
|
+
"commaSign": ",,﹐︐ ،٫、﹑、︑",
|
|
6312
|
+
"plusSign": "++﬩﹢⁺₊ ➕"
|
|
6255
6313
|
},
|
|
6256
6314
|
"currencyFormat-sap-short": {
|
|
6257
6315
|
"1000-one": "0 тис'.' ¤",
|