@openui5/sap.ui.core 1.120.10 → 1.121.1
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 +7 -5
- 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 +14 -13
- 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 +1 -1
- package/src/sap/ui/core/Control.js +34 -19
- package/src/sap/ui/core/Core.js +42 -37
- 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 +19 -12
- 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 +14 -10
- 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 -37
- 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 +155 -14
- 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 +30 -49
- 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 -43
- 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.controls.qunit.js +2 -1
- 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 -510
- 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": "afarski",
|
|
7
7
|
"ab": "abhaski",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"bem": "bemba",
|
|
49
49
|
"bez": "bena",
|
|
50
50
|
"bg": "bugarski",
|
|
51
|
+
"bgc": "harijanski",
|
|
51
52
|
"bgn": "zapadni belučki",
|
|
52
53
|
"bho": "bodžpuri",
|
|
53
54
|
"bi": "bislama",
|
|
@@ -854,6 +855,8 @@
|
|
|
854
855
|
"IM": "Ostrvo Man",
|
|
855
856
|
"IN": "Indija",
|
|
856
857
|
"IO": "Britanska teritorija Indijskog okeana",
|
|
858
|
+
"IO-alt-biot": "Britanska teritorija Indijskog okeana",
|
|
859
|
+
"IO-alt-chagos": "arhipelag Čagos",
|
|
857
860
|
"IQ": "Irak",
|
|
858
861
|
"IR": "Iran",
|
|
859
862
|
"IS": "Island",
|
|
@@ -1245,18 +1248,54 @@
|
|
|
1245
1248
|
"months": {
|
|
1246
1249
|
"format": {
|
|
1247
1250
|
"abbreviated": [
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1251
|
+
[
|
|
1252
|
+
"jan",
|
|
1253
|
+
"јан"
|
|
1254
|
+
],
|
|
1255
|
+
[
|
|
1256
|
+
"feb",
|
|
1257
|
+
"феб"
|
|
1258
|
+
],
|
|
1259
|
+
[
|
|
1260
|
+
"mart",
|
|
1261
|
+
"март"
|
|
1262
|
+
],
|
|
1263
|
+
[
|
|
1264
|
+
"apr",
|
|
1265
|
+
"апр"
|
|
1266
|
+
],
|
|
1267
|
+
[
|
|
1268
|
+
"maj",
|
|
1269
|
+
"мај"
|
|
1270
|
+
],
|
|
1271
|
+
[
|
|
1272
|
+
"jun",
|
|
1273
|
+
"јун"
|
|
1274
|
+
],
|
|
1275
|
+
[
|
|
1276
|
+
"jul",
|
|
1277
|
+
"јул"
|
|
1278
|
+
],
|
|
1279
|
+
[
|
|
1280
|
+
"avg",
|
|
1281
|
+
"авг"
|
|
1282
|
+
],
|
|
1283
|
+
[
|
|
1284
|
+
"sept",
|
|
1285
|
+
"септ"
|
|
1286
|
+
],
|
|
1287
|
+
[
|
|
1288
|
+
"okt",
|
|
1289
|
+
"окт"
|
|
1290
|
+
],
|
|
1291
|
+
[
|
|
1292
|
+
"nov",
|
|
1293
|
+
"нов"
|
|
1294
|
+
],
|
|
1295
|
+
[
|
|
1296
|
+
"dec",
|
|
1297
|
+
"дец"
|
|
1298
|
+
]
|
|
1260
1299
|
],
|
|
1261
1300
|
"narrow": [
|
|
1262
1301
|
"j",
|
|
@@ -1289,18 +1328,54 @@
|
|
|
1289
1328
|
},
|
|
1290
1329
|
"stand-alone": {
|
|
1291
1330
|
"abbreviated": [
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1331
|
+
[
|
|
1332
|
+
"jan",
|
|
1333
|
+
"јан"
|
|
1334
|
+
],
|
|
1335
|
+
[
|
|
1336
|
+
"feb",
|
|
1337
|
+
"феб"
|
|
1338
|
+
],
|
|
1339
|
+
[
|
|
1340
|
+
"mart",
|
|
1341
|
+
"март"
|
|
1342
|
+
],
|
|
1343
|
+
[
|
|
1344
|
+
"apr",
|
|
1345
|
+
"апр"
|
|
1346
|
+
],
|
|
1347
|
+
[
|
|
1348
|
+
"maj",
|
|
1349
|
+
"мај"
|
|
1350
|
+
],
|
|
1351
|
+
[
|
|
1352
|
+
"jun",
|
|
1353
|
+
"јун"
|
|
1354
|
+
],
|
|
1355
|
+
[
|
|
1356
|
+
"jul",
|
|
1357
|
+
"јул"
|
|
1358
|
+
],
|
|
1359
|
+
[
|
|
1360
|
+
"avg",
|
|
1361
|
+
"авг"
|
|
1362
|
+
],
|
|
1363
|
+
[
|
|
1364
|
+
"sept",
|
|
1365
|
+
"септ"
|
|
1366
|
+
],
|
|
1367
|
+
[
|
|
1368
|
+
"okt",
|
|
1369
|
+
"окт"
|
|
1370
|
+
],
|
|
1371
|
+
[
|
|
1372
|
+
"nov",
|
|
1373
|
+
"нов"
|
|
1374
|
+
],
|
|
1375
|
+
[
|
|
1376
|
+
"dec",
|
|
1377
|
+
"дец"
|
|
1378
|
+
]
|
|
1304
1379
|
],
|
|
1305
1380
|
"narrow": [
|
|
1306
1381
|
"j",
|
|
@@ -1459,8 +1534,8 @@
|
|
|
1459
1534
|
"po podne"
|
|
1460
1535
|
],
|
|
1461
1536
|
"narrow": [
|
|
1462
|
-
"
|
|
1463
|
-
"
|
|
1537
|
+
"prije podne",
|
|
1538
|
+
"po podne"
|
|
1464
1539
|
],
|
|
1465
1540
|
"wide": [
|
|
1466
1541
|
"prije podne",
|
|
@@ -1503,9 +1578,9 @@
|
|
|
1503
1578
|
"wide": {
|
|
1504
1579
|
"midnight": "ponoć",
|
|
1505
1580
|
"noon": "podne",
|
|
1506
|
-
"morning1": "
|
|
1507
|
-
"afternoon1": "po
|
|
1508
|
-
"evening1": "
|
|
1581
|
+
"morning1": "jutro",
|
|
1582
|
+
"afternoon1": "po pod.",
|
|
1583
|
+
"evening1": "veče",
|
|
1509
1584
|
"night1": "noću"
|
|
1510
1585
|
}
|
|
1511
1586
|
},
|
|
@@ -1775,18 +1850,54 @@
|
|
|
1775
1850
|
"months": {
|
|
1776
1851
|
"format": {
|
|
1777
1852
|
"abbreviated": [
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1853
|
+
[
|
|
1854
|
+
"Muh.",
|
|
1855
|
+
"Мух."
|
|
1856
|
+
],
|
|
1857
|
+
[
|
|
1858
|
+
"Saf.",
|
|
1859
|
+
"Саф."
|
|
1860
|
+
],
|
|
1861
|
+
[
|
|
1862
|
+
"Reb. 1",
|
|
1863
|
+
"Реб. 1"
|
|
1864
|
+
],
|
|
1865
|
+
[
|
|
1866
|
+
"Reb. 2",
|
|
1867
|
+
"Реб. 2"
|
|
1868
|
+
],
|
|
1869
|
+
[
|
|
1870
|
+
"Džum. 1",
|
|
1871
|
+
"Џум. 1"
|
|
1872
|
+
],
|
|
1873
|
+
[
|
|
1874
|
+
"Džum. 2",
|
|
1875
|
+
"Џум. 2"
|
|
1876
|
+
],
|
|
1877
|
+
[
|
|
1878
|
+
"Redž.",
|
|
1879
|
+
"Реџ."
|
|
1880
|
+
],
|
|
1881
|
+
[
|
|
1882
|
+
"Ša.",
|
|
1883
|
+
"Ша."
|
|
1884
|
+
],
|
|
1885
|
+
[
|
|
1886
|
+
"Ram.",
|
|
1887
|
+
"Рам."
|
|
1888
|
+
],
|
|
1889
|
+
[
|
|
1890
|
+
"Še.",
|
|
1891
|
+
"Ше."
|
|
1892
|
+
],
|
|
1893
|
+
[
|
|
1894
|
+
"Zul-k.",
|
|
1895
|
+
"Зул-к."
|
|
1896
|
+
],
|
|
1897
|
+
[
|
|
1898
|
+
"Zul-h.",
|
|
1899
|
+
"Зул-х."
|
|
1900
|
+
]
|
|
1790
1901
|
],
|
|
1791
1902
|
"narrow": [
|
|
1792
1903
|
"1",
|
|
@@ -1819,18 +1930,54 @@
|
|
|
1819
1930
|
},
|
|
1820
1931
|
"stand-alone": {
|
|
1821
1932
|
"abbreviated": [
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1933
|
+
[
|
|
1934
|
+
"Muh.",
|
|
1935
|
+
"Мух."
|
|
1936
|
+
],
|
|
1937
|
+
[
|
|
1938
|
+
"Saf.",
|
|
1939
|
+
"Саф."
|
|
1940
|
+
],
|
|
1941
|
+
[
|
|
1942
|
+
"Reb. 1",
|
|
1943
|
+
"Реб. 1"
|
|
1944
|
+
],
|
|
1945
|
+
[
|
|
1946
|
+
"Reb. 2",
|
|
1947
|
+
"Реб. 2"
|
|
1948
|
+
],
|
|
1949
|
+
[
|
|
1950
|
+
"Džum. 1",
|
|
1951
|
+
"Џум. 1"
|
|
1952
|
+
],
|
|
1953
|
+
[
|
|
1954
|
+
"Džum. 2",
|
|
1955
|
+
"Џум. 2"
|
|
1956
|
+
],
|
|
1957
|
+
[
|
|
1958
|
+
"Redž.",
|
|
1959
|
+
"Реџ."
|
|
1960
|
+
],
|
|
1961
|
+
[
|
|
1962
|
+
"Ša.",
|
|
1963
|
+
"Ша."
|
|
1964
|
+
],
|
|
1965
|
+
[
|
|
1966
|
+
"Ram.",
|
|
1967
|
+
"Рам."
|
|
1968
|
+
],
|
|
1969
|
+
[
|
|
1970
|
+
"Še.",
|
|
1971
|
+
"Ше."
|
|
1972
|
+
],
|
|
1973
|
+
[
|
|
1974
|
+
"Zul-k.",
|
|
1975
|
+
"Зул-к."
|
|
1976
|
+
],
|
|
1977
|
+
[
|
|
1978
|
+
"Zul-h.",
|
|
1979
|
+
"Зул-х."
|
|
1980
|
+
]
|
|
1834
1981
|
],
|
|
1835
1982
|
"narrow": [
|
|
1836
1983
|
"1",
|
|
@@ -1989,8 +2136,8 @@
|
|
|
1989
2136
|
"po podne"
|
|
1990
2137
|
],
|
|
1991
2138
|
"narrow": [
|
|
1992
|
-
"
|
|
1993
|
-
"
|
|
2139
|
+
"prije podne",
|
|
2140
|
+
"po podne"
|
|
1994
2141
|
],
|
|
1995
2142
|
"wide": [
|
|
1996
2143
|
"prije podne",
|
|
@@ -2033,9 +2180,9 @@
|
|
|
2033
2180
|
"wide": {
|
|
2034
2181
|
"midnight": "ponoć",
|
|
2035
2182
|
"noon": "podne",
|
|
2036
|
-
"morning1": "
|
|
2037
|
-
"afternoon1": "po
|
|
2038
|
-
"evening1": "
|
|
2183
|
+
"morning1": "jutro",
|
|
2184
|
+
"afternoon1": "po pod.",
|
|
2185
|
+
"evening1": "veče",
|
|
2039
2186
|
"night1": "noću"
|
|
2040
2187
|
}
|
|
2041
2188
|
},
|
|
@@ -2310,18 +2457,54 @@
|
|
|
2310
2457
|
"months": {
|
|
2311
2458
|
"format": {
|
|
2312
2459
|
"abbreviated": [
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2460
|
+
[
|
|
2461
|
+
"jan",
|
|
2462
|
+
"јан"
|
|
2463
|
+
],
|
|
2464
|
+
[
|
|
2465
|
+
"feb",
|
|
2466
|
+
"феб"
|
|
2467
|
+
],
|
|
2468
|
+
[
|
|
2469
|
+
"mart",
|
|
2470
|
+
"март"
|
|
2471
|
+
],
|
|
2472
|
+
[
|
|
2473
|
+
"apr",
|
|
2474
|
+
"апр"
|
|
2475
|
+
],
|
|
2476
|
+
[
|
|
2477
|
+
"maj",
|
|
2478
|
+
"мај"
|
|
2479
|
+
],
|
|
2480
|
+
[
|
|
2481
|
+
"jun",
|
|
2482
|
+
"јун"
|
|
2483
|
+
],
|
|
2484
|
+
[
|
|
2485
|
+
"jul",
|
|
2486
|
+
"јул"
|
|
2487
|
+
],
|
|
2488
|
+
[
|
|
2489
|
+
"avg",
|
|
2490
|
+
"авг"
|
|
2491
|
+
],
|
|
2492
|
+
[
|
|
2493
|
+
"sept",
|
|
2494
|
+
"септ"
|
|
2495
|
+
],
|
|
2496
|
+
[
|
|
2497
|
+
"okt",
|
|
2498
|
+
"окт"
|
|
2499
|
+
],
|
|
2500
|
+
[
|
|
2501
|
+
"nov",
|
|
2502
|
+
"нов"
|
|
2503
|
+
],
|
|
2504
|
+
[
|
|
2505
|
+
"dec",
|
|
2506
|
+
"дец"
|
|
2507
|
+
]
|
|
2325
2508
|
],
|
|
2326
2509
|
"narrow": [
|
|
2327
2510
|
"j",
|
|
@@ -2354,18 +2537,54 @@
|
|
|
2354
2537
|
},
|
|
2355
2538
|
"stand-alone": {
|
|
2356
2539
|
"abbreviated": [
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2540
|
+
[
|
|
2541
|
+
"jan",
|
|
2542
|
+
"јан"
|
|
2543
|
+
],
|
|
2544
|
+
[
|
|
2545
|
+
"feb",
|
|
2546
|
+
"феб"
|
|
2547
|
+
],
|
|
2548
|
+
[
|
|
2549
|
+
"mart",
|
|
2550
|
+
"март"
|
|
2551
|
+
],
|
|
2552
|
+
[
|
|
2553
|
+
"apr",
|
|
2554
|
+
"апр"
|
|
2555
|
+
],
|
|
2556
|
+
[
|
|
2557
|
+
"maj",
|
|
2558
|
+
"мај"
|
|
2559
|
+
],
|
|
2560
|
+
[
|
|
2561
|
+
"jun",
|
|
2562
|
+
"јун"
|
|
2563
|
+
],
|
|
2564
|
+
[
|
|
2565
|
+
"jul",
|
|
2566
|
+
"јул"
|
|
2567
|
+
],
|
|
2568
|
+
[
|
|
2569
|
+
"avg",
|
|
2570
|
+
"авг"
|
|
2571
|
+
],
|
|
2572
|
+
[
|
|
2573
|
+
"sept",
|
|
2574
|
+
"септ"
|
|
2575
|
+
],
|
|
2576
|
+
[
|
|
2577
|
+
"okt",
|
|
2578
|
+
"окт"
|
|
2579
|
+
],
|
|
2580
|
+
[
|
|
2581
|
+
"nov",
|
|
2582
|
+
"нов"
|
|
2583
|
+
],
|
|
2584
|
+
[
|
|
2585
|
+
"dec",
|
|
2586
|
+
"дец"
|
|
2587
|
+
]
|
|
2369
2588
|
],
|
|
2370
2589
|
"narrow": [
|
|
2371
2590
|
"j",
|
|
@@ -2524,8 +2743,8 @@
|
|
|
2524
2743
|
"po podne"
|
|
2525
2744
|
],
|
|
2526
2745
|
"narrow": [
|
|
2527
|
-
"
|
|
2528
|
-
"
|
|
2746
|
+
"prije podne",
|
|
2747
|
+
"po podne"
|
|
2529
2748
|
],
|
|
2530
2749
|
"wide": [
|
|
2531
2750
|
"prije podne",
|
|
@@ -2568,9 +2787,9 @@
|
|
|
2568
2787
|
"wide": {
|
|
2569
2788
|
"midnight": "ponoć",
|
|
2570
2789
|
"noon": "podne",
|
|
2571
|
-
"morning1": "
|
|
2572
|
-
"afternoon1": "po
|
|
2573
|
-
"evening1": "
|
|
2790
|
+
"morning1": "jutro",
|
|
2791
|
+
"afternoon1": "po pod.",
|
|
2792
|
+
"evening1": "veče",
|
|
2574
2793
|
"night1": "noću"
|
|
2575
2794
|
}
|
|
2576
2795
|
},
|
|
@@ -2849,18 +3068,54 @@
|
|
|
2849
3068
|
"months": {
|
|
2850
3069
|
"format": {
|
|
2851
3070
|
"abbreviated": [
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
3071
|
+
[
|
|
3072
|
+
"Faravadin",
|
|
3073
|
+
"Фаравадин"
|
|
3074
|
+
],
|
|
3075
|
+
[
|
|
3076
|
+
"Ordibehešt",
|
|
3077
|
+
"Ордибехешт"
|
|
3078
|
+
],
|
|
3079
|
+
[
|
|
3080
|
+
"Kordad",
|
|
3081
|
+
"Кордад"
|
|
3082
|
+
],
|
|
3083
|
+
[
|
|
3084
|
+
"Tir",
|
|
3085
|
+
"Тир"
|
|
3086
|
+
],
|
|
3087
|
+
[
|
|
3088
|
+
"Mordad",
|
|
3089
|
+
"Мордад"
|
|
3090
|
+
],
|
|
3091
|
+
[
|
|
3092
|
+
"Šahrivar",
|
|
3093
|
+
"Шахривар"
|
|
3094
|
+
],
|
|
3095
|
+
[
|
|
3096
|
+
"Mehr",
|
|
3097
|
+
"Мехр"
|
|
3098
|
+
],
|
|
3099
|
+
[
|
|
3100
|
+
"Aban",
|
|
3101
|
+
"Абан"
|
|
3102
|
+
],
|
|
3103
|
+
[
|
|
3104
|
+
"Azar",
|
|
3105
|
+
"Азар"
|
|
3106
|
+
],
|
|
3107
|
+
[
|
|
3108
|
+
"Dej",
|
|
3109
|
+
"Деј"
|
|
3110
|
+
],
|
|
3111
|
+
[
|
|
3112
|
+
"Bahman",
|
|
3113
|
+
"Бахман"
|
|
3114
|
+
],
|
|
3115
|
+
[
|
|
3116
|
+
"Esfand",
|
|
3117
|
+
"Есфанд"
|
|
3118
|
+
]
|
|
2864
3119
|
],
|
|
2865
3120
|
"narrow": [
|
|
2866
3121
|
"1",
|
|
@@ -2893,18 +3148,54 @@
|
|
|
2893
3148
|
},
|
|
2894
3149
|
"stand-alone": {
|
|
2895
3150
|
"abbreviated": [
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
3151
|
+
[
|
|
3152
|
+
"Faravadin",
|
|
3153
|
+
"Фаравадин"
|
|
3154
|
+
],
|
|
3155
|
+
[
|
|
3156
|
+
"Ordibehešt",
|
|
3157
|
+
"Ордибехешт"
|
|
3158
|
+
],
|
|
3159
|
+
[
|
|
3160
|
+
"Kordad",
|
|
3161
|
+
"Кордад"
|
|
3162
|
+
],
|
|
3163
|
+
[
|
|
3164
|
+
"Tir",
|
|
3165
|
+
"Тир"
|
|
3166
|
+
],
|
|
3167
|
+
[
|
|
3168
|
+
"Mordad",
|
|
3169
|
+
"Мордад"
|
|
3170
|
+
],
|
|
3171
|
+
[
|
|
3172
|
+
"Šahrivar",
|
|
3173
|
+
"Шахривар"
|
|
3174
|
+
],
|
|
3175
|
+
[
|
|
3176
|
+
"Mehr",
|
|
3177
|
+
"Мехр"
|
|
3178
|
+
],
|
|
3179
|
+
[
|
|
3180
|
+
"Aban",
|
|
3181
|
+
"Абан"
|
|
3182
|
+
],
|
|
3183
|
+
[
|
|
3184
|
+
"Azar",
|
|
3185
|
+
"Азар"
|
|
3186
|
+
],
|
|
3187
|
+
[
|
|
3188
|
+
"Dej",
|
|
3189
|
+
"Деј"
|
|
3190
|
+
],
|
|
3191
|
+
[
|
|
3192
|
+
"Bahman",
|
|
3193
|
+
"Бахман"
|
|
3194
|
+
],
|
|
3195
|
+
[
|
|
3196
|
+
"Esfand",
|
|
3197
|
+
"Есфанд"
|
|
3198
|
+
]
|
|
2908
3199
|
],
|
|
2909
3200
|
"narrow": [
|
|
2910
3201
|
"1",
|
|
@@ -3063,8 +3354,8 @@
|
|
|
3063
3354
|
"po podne"
|
|
3064
3355
|
],
|
|
3065
3356
|
"narrow": [
|
|
3066
|
-
"
|
|
3067
|
-
"
|
|
3357
|
+
"prije podne",
|
|
3358
|
+
"po podne"
|
|
3068
3359
|
],
|
|
3069
3360
|
"wide": [
|
|
3070
3361
|
"prije podne",
|
|
@@ -3107,9 +3398,9 @@
|
|
|
3107
3398
|
"wide": {
|
|
3108
3399
|
"midnight": "ponoć",
|
|
3109
3400
|
"noon": "podne",
|
|
3110
|
-
"morning1": "
|
|
3111
|
-
"afternoon1": "po
|
|
3112
|
-
"evening1": "
|
|
3401
|
+
"morning1": "jutro",
|
|
3402
|
+
"afternoon1": "po pod.",
|
|
3403
|
+
"evening1": "veče",
|
|
3113
3404
|
"night1": "noću"
|
|
3114
3405
|
}
|
|
3115
3406
|
},
|
|
@@ -3376,18 +3667,54 @@
|
|
|
3376
3667
|
"months": {
|
|
3377
3668
|
"format": {
|
|
3378
3669
|
"abbreviated": [
|
|
3379
|
-
|
|
3380
|
-
|
|
3381
|
-
|
|
3382
|
-
|
|
3383
|
-
|
|
3384
|
-
|
|
3385
|
-
|
|
3386
|
-
|
|
3387
|
-
|
|
3388
|
-
|
|
3389
|
-
|
|
3390
|
-
|
|
3670
|
+
[
|
|
3671
|
+
"jan",
|
|
3672
|
+
"јан"
|
|
3673
|
+
],
|
|
3674
|
+
[
|
|
3675
|
+
"feb",
|
|
3676
|
+
"феб"
|
|
3677
|
+
],
|
|
3678
|
+
[
|
|
3679
|
+
"mart",
|
|
3680
|
+
"март"
|
|
3681
|
+
],
|
|
3682
|
+
[
|
|
3683
|
+
"apr",
|
|
3684
|
+
"апр"
|
|
3685
|
+
],
|
|
3686
|
+
[
|
|
3687
|
+
"maj",
|
|
3688
|
+
"мај"
|
|
3689
|
+
],
|
|
3690
|
+
[
|
|
3691
|
+
"jun",
|
|
3692
|
+
"јун"
|
|
3693
|
+
],
|
|
3694
|
+
[
|
|
3695
|
+
"jul",
|
|
3696
|
+
"јул"
|
|
3697
|
+
],
|
|
3698
|
+
[
|
|
3699
|
+
"avg",
|
|
3700
|
+
"авг"
|
|
3701
|
+
],
|
|
3702
|
+
[
|
|
3703
|
+
"sept",
|
|
3704
|
+
"септ"
|
|
3705
|
+
],
|
|
3706
|
+
[
|
|
3707
|
+
"okt",
|
|
3708
|
+
"окт"
|
|
3709
|
+
],
|
|
3710
|
+
[
|
|
3711
|
+
"nov",
|
|
3712
|
+
"нов"
|
|
3713
|
+
],
|
|
3714
|
+
[
|
|
3715
|
+
"dec",
|
|
3716
|
+
"дец"
|
|
3717
|
+
]
|
|
3391
3718
|
],
|
|
3392
3719
|
"narrow": [
|
|
3393
3720
|
"j",
|
|
@@ -3420,18 +3747,54 @@
|
|
|
3420
3747
|
},
|
|
3421
3748
|
"stand-alone": {
|
|
3422
3749
|
"abbreviated": [
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3429
|
-
|
|
3430
|
-
|
|
3431
|
-
|
|
3432
|
-
|
|
3433
|
-
|
|
3434
|
-
|
|
3750
|
+
[
|
|
3751
|
+
"jan",
|
|
3752
|
+
"јан"
|
|
3753
|
+
],
|
|
3754
|
+
[
|
|
3755
|
+
"feb",
|
|
3756
|
+
"феб"
|
|
3757
|
+
],
|
|
3758
|
+
[
|
|
3759
|
+
"mart",
|
|
3760
|
+
"март"
|
|
3761
|
+
],
|
|
3762
|
+
[
|
|
3763
|
+
"apr",
|
|
3764
|
+
"апр"
|
|
3765
|
+
],
|
|
3766
|
+
[
|
|
3767
|
+
"maj",
|
|
3768
|
+
"мај"
|
|
3769
|
+
],
|
|
3770
|
+
[
|
|
3771
|
+
"jun",
|
|
3772
|
+
"јун"
|
|
3773
|
+
],
|
|
3774
|
+
[
|
|
3775
|
+
"jul",
|
|
3776
|
+
"јул"
|
|
3777
|
+
],
|
|
3778
|
+
[
|
|
3779
|
+
"avg",
|
|
3780
|
+
"авг"
|
|
3781
|
+
],
|
|
3782
|
+
[
|
|
3783
|
+
"sept",
|
|
3784
|
+
"септ"
|
|
3785
|
+
],
|
|
3786
|
+
[
|
|
3787
|
+
"okt",
|
|
3788
|
+
"окт"
|
|
3789
|
+
],
|
|
3790
|
+
[
|
|
3791
|
+
"nov",
|
|
3792
|
+
"нов"
|
|
3793
|
+
],
|
|
3794
|
+
[
|
|
3795
|
+
"dec",
|
|
3796
|
+
"дец"
|
|
3797
|
+
]
|
|
3435
3798
|
],
|
|
3436
3799
|
"narrow": [
|
|
3437
3800
|
"j",
|
|
@@ -3590,8 +3953,8 @@
|
|
|
3590
3953
|
"po podne"
|
|
3591
3954
|
],
|
|
3592
3955
|
"narrow": [
|
|
3593
|
-
"
|
|
3594
|
-
"
|
|
3956
|
+
"prije podne",
|
|
3957
|
+
"po podne"
|
|
3595
3958
|
],
|
|
3596
3959
|
"wide": [
|
|
3597
3960
|
"prije podne",
|
|
@@ -3634,9 +3997,9 @@
|
|
|
3634
3997
|
"wide": {
|
|
3635
3998
|
"midnight": "ponoć",
|
|
3636
3999
|
"noon": "podne",
|
|
3637
|
-
"morning1": "
|
|
3638
|
-
"afternoon1": "po
|
|
3639
|
-
"evening1": "
|
|
4000
|
+
"morning1": "jutro",
|
|
4001
|
+
"afternoon1": "po pod.",
|
|
4002
|
+
"evening1": "veče",
|
|
3640
4003
|
"night1": "noću"
|
|
3641
4004
|
}
|
|
3642
4005
|
},
|
|
@@ -4576,40 +4939,28 @@
|
|
|
4576
4939
|
},
|
|
4577
4940
|
"decimalFormat-short": {
|
|
4578
4941
|
"1000-one": "0 hilj'.'",
|
|
4579
|
-
"1000-few": "0 hilj'.'",
|
|
4580
4942
|
"1000-other": "0 hilj'.'",
|
|
4581
4943
|
"10000-one": "00 hilj'.'",
|
|
4582
|
-
"10000-few": "00 hilj'.'",
|
|
4583
4944
|
"10000-other": "00 hilj'.'",
|
|
4584
4945
|
"100000-one": "000 hilj'.'",
|
|
4585
|
-
"100000-few": "000 hilj'.'",
|
|
4586
4946
|
"100000-other": "000 hilj'.'",
|
|
4587
4947
|
"1000000-one": "0 mil'.'",
|
|
4588
|
-
"1000000-few": "0 mil'.'",
|
|
4589
4948
|
"1000000-other": "0 mil'.'",
|
|
4590
4949
|
"10000000-one": "00 mil'.'",
|
|
4591
|
-
"10000000-few": "00 mil'.'",
|
|
4592
4950
|
"10000000-other": "00 mil'.'",
|
|
4593
4951
|
"100000000-one": "000 mil'.'",
|
|
4594
|
-
"100000000-few": "000 mil'.'",
|
|
4595
4952
|
"100000000-other": "000 mil'.'",
|
|
4596
4953
|
"1000000000-one": "0 mlrd'.'",
|
|
4597
|
-
"1000000000-few": "0 mlrd'.'",
|
|
4598
4954
|
"1000000000-other": "0 mlrd'.'",
|
|
4599
4955
|
"10000000000-one": "00 mlrd'.'",
|
|
4600
|
-
"10000000000-few": "00 mlrd'.'",
|
|
4601
4956
|
"10000000000-other": "00 mlrd'.'",
|
|
4602
4957
|
"100000000000-one": "000 mlrd'.'",
|
|
4603
|
-
"100000000000-few": "000 mlrd'.'",
|
|
4604
4958
|
"100000000000-other": "000 mlrd'.'",
|
|
4605
4959
|
"1000000000000-one": "0 bil'.'",
|
|
4606
|
-
"1000000000000-few": "0 bil'.'",
|
|
4607
4960
|
"1000000000000-other": "0 bil'.'",
|
|
4608
4961
|
"10000000000000-one": "00 bil'.'",
|
|
4609
|
-
"10000000000000-few": "00 bil'.'",
|
|
4610
4962
|
"10000000000000-other": "00 bil'.'",
|
|
4611
4963
|
"100000000000000-one": "000 bil'.'",
|
|
4612
|
-
"100000000000000-few": "000 bil'.'",
|
|
4613
4964
|
"100000000000000-other": "000 bil'.'"
|
|
4614
4965
|
},
|
|
4615
4966
|
"scientificFormat": {
|
|
@@ -4770,6 +5121,12 @@
|
|
|
4770
5121
|
"10p-24": {
|
|
4771
5122
|
"unitPrefixPattern": "y{0}"
|
|
4772
5123
|
},
|
|
5124
|
+
"10p-27": {
|
|
5125
|
+
"unitPrefixPattern": "r{0}"
|
|
5126
|
+
},
|
|
5127
|
+
"10p-30": {
|
|
5128
|
+
"unitPrefixPattern": "q{0}"
|
|
5129
|
+
},
|
|
4773
5130
|
"10p1": {
|
|
4774
5131
|
"unitPrefixPattern": "da{0}"
|
|
4775
5132
|
},
|
|
@@ -4800,6 +5157,12 @@
|
|
|
4800
5157
|
"10p24": {
|
|
4801
5158
|
"unitPrefixPattern": "Y{0}"
|
|
4802
5159
|
},
|
|
5160
|
+
"10p27": {
|
|
5161
|
+
"unitPrefixPattern": "R{0}"
|
|
5162
|
+
},
|
|
5163
|
+
"10p30": {
|
|
5164
|
+
"unitPrefixPattern": "Q{0}"
|
|
5165
|
+
},
|
|
4803
5166
|
"1024p1": {
|
|
4804
5167
|
"unitPrefixPattern": "Ki{0}"
|
|
4805
5168
|
},
|
|
@@ -4829,14 +5192,10 @@
|
|
|
4829
5192
|
},
|
|
4830
5193
|
"power2": {
|
|
4831
5194
|
"compoundUnitPattern1": "{0}²",
|
|
4832
|
-
"compoundUnitPattern1-count-one": "{0}²",
|
|
4833
|
-
"compoundUnitPattern1-count-few": "{0}²",
|
|
4834
5195
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4835
5196
|
},
|
|
4836
5197
|
"power3": {
|
|
4837
5198
|
"compoundUnitPattern1": "{0}³",
|
|
4838
|
-
"compoundUnitPattern1-count-one": "{0}³",
|
|
4839
|
-
"compoundUnitPattern1-count-few": "{0}³",
|
|
4840
5199
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4841
5200
|
},
|
|
4842
5201
|
"times": {
|
|
@@ -4844,102 +5203,70 @@
|
|
|
4844
5203
|
},
|
|
4845
5204
|
"acceleration-g-force": {
|
|
4846
5205
|
"displayName": "ge sila",
|
|
4847
|
-
"unitPattern-count-one": "{0} G",
|
|
4848
|
-
"unitPattern-count-few": "{0} G",
|
|
4849
5206
|
"unitPattern-count-other": "{0} G"
|
|
4850
5207
|
},
|
|
4851
5208
|
"acceleration-meter-per-square-second": {
|
|
4852
5209
|
"displayName": "m/s²",
|
|
4853
|
-
"unitPattern-count-one": "{0} m/s²",
|
|
4854
|
-
"unitPattern-count-few": "{0} m/s²",
|
|
4855
5210
|
"unitPattern-count-other": "{0} m/s²"
|
|
4856
5211
|
},
|
|
4857
5212
|
"angle-revolution": {
|
|
4858
5213
|
"displayName": "rev",
|
|
4859
|
-
"unitPattern-count-one": "{0} rev",
|
|
4860
|
-
"unitPattern-count-few": "{0} rev",
|
|
4861
5214
|
"unitPattern-count-other": "{0} rev"
|
|
4862
5215
|
},
|
|
4863
5216
|
"angle-radian": {
|
|
4864
5217
|
"displayName": "rad",
|
|
4865
|
-
"unitPattern-count-one": "{0} rad",
|
|
4866
|
-
"unitPattern-count-few": "{0} rad",
|
|
4867
5218
|
"unitPattern-count-other": "{0} rad"
|
|
4868
5219
|
},
|
|
4869
5220
|
"angle-degree": {
|
|
4870
5221
|
"displayName": "stepeni",
|
|
4871
|
-
"unitPattern-count-one": "{0}°",
|
|
4872
|
-
"unitPattern-count-few": "{0}°",
|
|
4873
5222
|
"unitPattern-count-other": "{0}°"
|
|
4874
5223
|
},
|
|
4875
5224
|
"angle-arc-minute": {
|
|
4876
5225
|
"displayName": "lučni min",
|
|
4877
|
-
"unitPattern-count-one": "{0}′",
|
|
4878
|
-
"unitPattern-count-few": "{0}′",
|
|
4879
5226
|
"unitPattern-count-other": "{0}′"
|
|
4880
5227
|
},
|
|
4881
5228
|
"angle-arc-second": {
|
|
4882
5229
|
"displayName": "lučne sek",
|
|
4883
|
-
"unitPattern-count-one": "{0}″",
|
|
4884
|
-
"unitPattern-count-few": "{0}″",
|
|
4885
5230
|
"unitPattern-count-other": "{0}″"
|
|
4886
5231
|
},
|
|
4887
5232
|
"area-square-kilometer": {
|
|
4888
5233
|
"displayName": "kvadratni kilometri",
|
|
4889
|
-
"unitPattern-count-one": "{0} km²",
|
|
4890
|
-
"unitPattern-count-few": "{0} km²",
|
|
4891
5234
|
"unitPattern-count-other": "{0} km²",
|
|
4892
5235
|
"perUnitPattern": "{0}/km²"
|
|
4893
5236
|
},
|
|
4894
5237
|
"area-hectare": {
|
|
4895
5238
|
"displayName": "hektari",
|
|
4896
|
-
"unitPattern-count-one": "{0} ha",
|
|
4897
|
-
"unitPattern-count-few": "{0} ha",
|
|
4898
5239
|
"unitPattern-count-other": "{0} ha"
|
|
4899
5240
|
},
|
|
4900
5241
|
"area-square-meter": {
|
|
4901
5242
|
"displayName": "kvadratni metri",
|
|
4902
|
-
"unitPattern-count-one": "{0} m²",
|
|
4903
|
-
"unitPattern-count-few": "{0} m²",
|
|
4904
5243
|
"unitPattern-count-other": "{0} m²",
|
|
4905
5244
|
"perUnitPattern": "{0}/m²"
|
|
4906
5245
|
},
|
|
4907
5246
|
"area-square-centimeter": {
|
|
4908
5247
|
"displayName": "cm²",
|
|
4909
|
-
"unitPattern-count-one": "{0} cm²",
|
|
4910
|
-
"unitPattern-count-few": "{0} cm²",
|
|
4911
5248
|
"unitPattern-count-other": "{0} cm²",
|
|
4912
5249
|
"perUnitPattern": "{0}/cm²"
|
|
4913
5250
|
},
|
|
4914
5251
|
"area-square-mile": {
|
|
4915
5252
|
"displayName": "mi²",
|
|
4916
|
-
"unitPattern-count-one": "{0} mi²",
|
|
4917
|
-
"unitPattern-count-few": "{0} mi²",
|
|
4918
5253
|
"unitPattern-count-other": "{0} mi²",
|
|
4919
5254
|
"perUnitPattern": "{0}/mi²"
|
|
4920
5255
|
},
|
|
4921
5256
|
"area-acre": {
|
|
4922
5257
|
"displayName": "akeri",
|
|
4923
|
-
"unitPattern-count-one": "{0} ac",
|
|
4924
|
-
"unitPattern-count-few": "{0} ac",
|
|
4925
5258
|
"unitPattern-count-other": "{0} ac"
|
|
4926
5259
|
},
|
|
4927
5260
|
"area-square-yard": {
|
|
4928
5261
|
"displayName": "yd²",
|
|
4929
|
-
"unitPattern-count-one": "{0} yd²",
|
|
4930
|
-
"unitPattern-count-few": "{0} yd²",
|
|
4931
5262
|
"unitPattern-count-other": "{0} yd²"
|
|
4932
5263
|
},
|
|
4933
5264
|
"area-square-foot": {
|
|
4934
5265
|
"displayName": "kvadratne stope",
|
|
4935
|
-
"unitPattern-count-one": "{0} ft²",
|
|
4936
|
-
"unitPattern-count-few": "{0} ft²",
|
|
4937
5266
|
"unitPattern-count-other": "{0} ft²"
|
|
4938
5267
|
},
|
|
4939
5268
|
"area-square-inch": {
|
|
4940
5269
|
"displayName": "in²",
|
|
4941
|
-
"unitPattern-count-one": "{0} in²",
|
|
4942
|
-
"unitPattern-count-few": "{0} in²",
|
|
4943
5270
|
"unitPattern-count-other": "{0} in²",
|
|
4944
5271
|
"perUnitPattern": "{0}/in²"
|
|
4945
5272
|
},
|
|
@@ -4951,20 +5278,14 @@
|
|
|
4951
5278
|
},
|
|
4952
5279
|
"concentr-karat": {
|
|
4953
5280
|
"displayName": "kt",
|
|
4954
|
-
"unitPattern-count-one": "{0} kt",
|
|
4955
|
-
"unitPattern-count-few": "{0} kt",
|
|
4956
5281
|
"unitPattern-count-other": "{0} kt"
|
|
4957
5282
|
},
|
|
4958
5283
|
"concentr-milligram-ofglucose-per-deciliter": {
|
|
4959
5284
|
"displayName": "mg/dL",
|
|
4960
|
-
"unitPattern-count-one": "{0} mg/dL",
|
|
4961
|
-
"unitPattern-count-few": "{0} mg/dL",
|
|
4962
5285
|
"unitPattern-count-other": "{0} mg/dL"
|
|
4963
5286
|
},
|
|
4964
5287
|
"concentr-millimole-per-liter": {
|
|
4965
5288
|
"displayName": "mmol/L",
|
|
4966
|
-
"unitPattern-count-one": "{0} mmol/L",
|
|
4967
|
-
"unitPattern-count-few": "{0} mmol/L",
|
|
4968
5289
|
"unitPattern-count-other": "{0} mmol/L"
|
|
4969
5290
|
},
|
|
4970
5291
|
"concentr-item": {
|
|
@@ -4975,38 +5296,26 @@
|
|
|
4975
5296
|
},
|
|
4976
5297
|
"concentr-permillion": {
|
|
4977
5298
|
"displayName": "ppm",
|
|
4978
|
-
"unitPattern-count-one": "{0} ppm",
|
|
4979
|
-
"unitPattern-count-few": "{0} ppm",
|
|
4980
5299
|
"unitPattern-count-other": "{0} ppm"
|
|
4981
5300
|
},
|
|
4982
5301
|
"concentr-percent": {
|
|
4983
5302
|
"displayName": "procenat",
|
|
4984
|
-
"unitPattern-count-one": "{0}%",
|
|
4985
|
-
"unitPattern-count-few": "{0}%",
|
|
4986
5303
|
"unitPattern-count-other": "{0}%"
|
|
4987
5304
|
},
|
|
4988
5305
|
"concentr-permille": {
|
|
4989
5306
|
"displayName": "promil",
|
|
4990
|
-
"unitPattern-count-one": "{0}‰",
|
|
4991
|
-
"unitPattern-count-few": "{0}‰",
|
|
4992
5307
|
"unitPattern-count-other": "{0}‰"
|
|
4993
5308
|
},
|
|
4994
5309
|
"concentr-permyriad": {
|
|
4995
5310
|
"displayName": "‱",
|
|
4996
|
-
"unitPattern-count-one": "{0}‱",
|
|
4997
|
-
"unitPattern-count-few": "{0}‱",
|
|
4998
5311
|
"unitPattern-count-other": "{0}‱"
|
|
4999
5312
|
},
|
|
5000
5313
|
"concentr-mole": {
|
|
5001
5314
|
"displayName": "mol",
|
|
5002
|
-
"unitPattern-count-one": "{0} mol",
|
|
5003
|
-
"unitPattern-count-few": "{0} mol",
|
|
5004
5315
|
"unitPattern-count-other": "{0} mol"
|
|
5005
5316
|
},
|
|
5006
5317
|
"consumption-liter-per-kilometer": {
|
|
5007
5318
|
"displayName": "L/km",
|
|
5008
|
-
"unitPattern-count-one": "{0} L/km",
|
|
5009
|
-
"unitPattern-count-few": "{0} L/km",
|
|
5010
5319
|
"unitPattern-count-other": "{0} L/km"
|
|
5011
5320
|
},
|
|
5012
5321
|
"consumption-liter-per-100-kilometer": {
|
|
@@ -5023,62 +5332,42 @@
|
|
|
5023
5332
|
},
|
|
5024
5333
|
"consumption-mile-per-gallon-imperial": {
|
|
5025
5334
|
"displayName": "mpg Imp.",
|
|
5026
|
-
"unitPattern-count-one": "{0} mpg Imp.",
|
|
5027
|
-
"unitPattern-count-few": "{0} mpg Imp.",
|
|
5028
5335
|
"unitPattern-count-other": "{0} mpg Imp."
|
|
5029
5336
|
},
|
|
5030
5337
|
"digital-petabyte": {
|
|
5031
5338
|
"displayName": "PB",
|
|
5032
|
-
"unitPattern-count-one": "{0} PB",
|
|
5033
|
-
"unitPattern-count-few": "{0} PB",
|
|
5034
5339
|
"unitPattern-count-other": "{0} PB"
|
|
5035
5340
|
},
|
|
5036
5341
|
"digital-terabyte": {
|
|
5037
5342
|
"displayName": "TB",
|
|
5038
|
-
"unitPattern-count-one": "{0} TB",
|
|
5039
|
-
"unitPattern-count-few": "{0} TB",
|
|
5040
5343
|
"unitPattern-count-other": "{0} TB"
|
|
5041
5344
|
},
|
|
5042
5345
|
"digital-terabit": {
|
|
5043
5346
|
"displayName": "Tb",
|
|
5044
|
-
"unitPattern-count-one": "{0} Tb",
|
|
5045
|
-
"unitPattern-count-few": "{0} Tb",
|
|
5046
5347
|
"unitPattern-count-other": "{0} Tb"
|
|
5047
5348
|
},
|
|
5048
5349
|
"digital-gigabyte": {
|
|
5049
5350
|
"displayName": "GB",
|
|
5050
|
-
"unitPattern-count-one": "{0} GB",
|
|
5051
|
-
"unitPattern-count-few": "{0} GB",
|
|
5052
5351
|
"unitPattern-count-other": "{0} GB"
|
|
5053
5352
|
},
|
|
5054
5353
|
"digital-gigabit": {
|
|
5055
5354
|
"displayName": "Gb",
|
|
5056
|
-
"unitPattern-count-one": "{0} Gb",
|
|
5057
|
-
"unitPattern-count-few": "{0} Gb",
|
|
5058
5355
|
"unitPattern-count-other": "{0} Gb"
|
|
5059
5356
|
},
|
|
5060
5357
|
"digital-megabyte": {
|
|
5061
5358
|
"displayName": "MB",
|
|
5062
|
-
"unitPattern-count-one": "{0} MB",
|
|
5063
|
-
"unitPattern-count-few": "{0} MB",
|
|
5064
5359
|
"unitPattern-count-other": "{0} MB"
|
|
5065
5360
|
},
|
|
5066
5361
|
"digital-megabit": {
|
|
5067
5362
|
"displayName": "Mb",
|
|
5068
|
-
"unitPattern-count-one": "{0} Mb",
|
|
5069
|
-
"unitPattern-count-few": "{0} Mb",
|
|
5070
5363
|
"unitPattern-count-other": "{0} Mb"
|
|
5071
5364
|
},
|
|
5072
5365
|
"digital-kilobyte": {
|
|
5073
5366
|
"displayName": "kB",
|
|
5074
|
-
"unitPattern-count-one": "{0} kB",
|
|
5075
|
-
"unitPattern-count-few": "{0} kB",
|
|
5076
5367
|
"unitPattern-count-other": "{0} kB"
|
|
5077
5368
|
},
|
|
5078
5369
|
"digital-kilobit": {
|
|
5079
5370
|
"displayName": "kb",
|
|
5080
|
-
"unitPattern-count-one": "{0} kb",
|
|
5081
|
-
"unitPattern-count-few": "{0} kb",
|
|
5082
5371
|
"unitPattern-count-other": "{0} kb"
|
|
5083
5372
|
},
|
|
5084
5373
|
"digital-byte": {
|
|
@@ -5163,56 +5452,38 @@
|
|
|
5163
5452
|
},
|
|
5164
5453
|
"duration-millisecond": {
|
|
5165
5454
|
"displayName": "ms",
|
|
5166
|
-
"unitPattern-count-one": "{0} ms",
|
|
5167
|
-
"unitPattern-count-few": "{0} ms",
|
|
5168
5455
|
"unitPattern-count-other": "{0} ms"
|
|
5169
5456
|
},
|
|
5170
5457
|
"duration-microsecond": {
|
|
5171
5458
|
"displayName": "μs",
|
|
5172
|
-
"unitPattern-count-one": "{0} μs",
|
|
5173
|
-
"unitPattern-count-few": "{0} μs",
|
|
5174
5459
|
"unitPattern-count-other": "{0} μs"
|
|
5175
5460
|
},
|
|
5176
5461
|
"duration-nanosecond": {
|
|
5177
5462
|
"displayName": "ns",
|
|
5178
|
-
"unitPattern-count-one": "{0} ns",
|
|
5179
|
-
"unitPattern-count-few": "{0} ns",
|
|
5180
5463
|
"unitPattern-count-other": "{0} ns"
|
|
5181
5464
|
},
|
|
5182
5465
|
"electric-ampere": {
|
|
5183
5466
|
"displayName": "A",
|
|
5184
|
-
"unitPattern-count-one": "{0} A",
|
|
5185
|
-
"unitPattern-count-few": "{0} A",
|
|
5186
5467
|
"unitPattern-count-other": "{0} A"
|
|
5187
5468
|
},
|
|
5188
5469
|
"electric-milliampere": {
|
|
5189
5470
|
"displayName": "mA",
|
|
5190
|
-
"unitPattern-count-one": "{0} mA",
|
|
5191
|
-
"unitPattern-count-few": "{0} mA",
|
|
5192
5471
|
"unitPattern-count-other": "{0} mA"
|
|
5193
5472
|
},
|
|
5194
5473
|
"electric-ohm": {
|
|
5195
5474
|
"displayName": "Ω",
|
|
5196
|
-
"unitPattern-count-one": "{0} Ω",
|
|
5197
|
-
"unitPattern-count-few": "{0} Ω",
|
|
5198
5475
|
"unitPattern-count-other": "{0} Ω"
|
|
5199
5476
|
},
|
|
5200
5477
|
"electric-volt": {
|
|
5201
5478
|
"displayName": "V",
|
|
5202
|
-
"unitPattern-count-one": "{0} V",
|
|
5203
|
-
"unitPattern-count-few": "{0} V",
|
|
5204
5479
|
"unitPattern-count-other": "{0} V"
|
|
5205
5480
|
},
|
|
5206
5481
|
"energy-kilocalorie": {
|
|
5207
5482
|
"displayName": "kcal",
|
|
5208
|
-
"unitPattern-count-one": "{0} kcal",
|
|
5209
|
-
"unitPattern-count-few": "{0} kcal",
|
|
5210
5483
|
"unitPattern-count-other": "{0} kcal"
|
|
5211
5484
|
},
|
|
5212
5485
|
"energy-calorie": {
|
|
5213
5486
|
"displayName": "cal",
|
|
5214
|
-
"unitPattern-count-one": "{0} cal",
|
|
5215
|
-
"unitPattern-count-few": "{0} cal",
|
|
5216
5487
|
"unitPattern-count-other": "{0} cal"
|
|
5217
5488
|
},
|
|
5218
5489
|
"energy-foodcalorie": {
|
|
@@ -5223,32 +5494,22 @@
|
|
|
5223
5494
|
},
|
|
5224
5495
|
"energy-kilojoule": {
|
|
5225
5496
|
"displayName": "kJ",
|
|
5226
|
-
"unitPattern-count-one": "{0} kJ",
|
|
5227
|
-
"unitPattern-count-few": "{0} kJ",
|
|
5228
5497
|
"unitPattern-count-other": "{0} kJ"
|
|
5229
5498
|
},
|
|
5230
5499
|
"energy-joule": {
|
|
5231
5500
|
"displayName": "J",
|
|
5232
|
-
"unitPattern-count-one": "{0} J",
|
|
5233
|
-
"unitPattern-count-few": "{0} J",
|
|
5234
5501
|
"unitPattern-count-other": "{0} J"
|
|
5235
5502
|
},
|
|
5236
5503
|
"energy-kilowatt-hour": {
|
|
5237
5504
|
"displayName": "kWh",
|
|
5238
|
-
"unitPattern-count-one": "{0} kWh",
|
|
5239
|
-
"unitPattern-count-few": "{0} kWh",
|
|
5240
5505
|
"unitPattern-count-other": "{0} kWh"
|
|
5241
5506
|
},
|
|
5242
5507
|
"energy-electronvolt": {
|
|
5243
5508
|
"displayName": "elektronvolt",
|
|
5244
|
-
"unitPattern-count-one": "{0} eV",
|
|
5245
|
-
"unitPattern-count-few": "{0} eV",
|
|
5246
5509
|
"unitPattern-count-other": "{0} eV"
|
|
5247
5510
|
},
|
|
5248
5511
|
"energy-british-thermal-unit": {
|
|
5249
5512
|
"displayName": "Btu",
|
|
5250
|
-
"unitPattern-count-one": "{0} Btu",
|
|
5251
|
-
"unitPattern-count-few": "{0} Btu",
|
|
5252
5513
|
"unitPattern-count-other": "{0} Btu"
|
|
5253
5514
|
},
|
|
5254
5515
|
"energy-therm-us": {
|
|
@@ -5259,74 +5520,50 @@
|
|
|
5259
5520
|
},
|
|
5260
5521
|
"force-pound-force": {
|
|
5261
5522
|
"displayName": "lbf",
|
|
5262
|
-
"unitPattern-count-one": "{0} lbf",
|
|
5263
|
-
"unitPattern-count-few": "{0} lbf",
|
|
5264
5523
|
"unitPattern-count-other": "{0} lbf"
|
|
5265
5524
|
},
|
|
5266
5525
|
"force-newton": {
|
|
5267
5526
|
"displayName": "njutn",
|
|
5268
|
-
"unitPattern-count-one": "{0} N",
|
|
5269
|
-
"unitPattern-count-few": "{0} N",
|
|
5270
5527
|
"unitPattern-count-other": "{0} N"
|
|
5271
5528
|
},
|
|
5272
5529
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5273
5530
|
"displayName": "kWh/100km",
|
|
5274
|
-
"unitPattern-count-one": "{0} kWh/100km",
|
|
5275
|
-
"unitPattern-count-few": "{0} kWh/100km",
|
|
5276
5531
|
"unitPattern-count-other": "{0} kWh/100km"
|
|
5277
5532
|
},
|
|
5278
5533
|
"frequency-gigahertz": {
|
|
5279
5534
|
"displayName": "GHz",
|
|
5280
|
-
"unitPattern-count-one": "{0} GHz",
|
|
5281
|
-
"unitPattern-count-few": "{0} GHz",
|
|
5282
5535
|
"unitPattern-count-other": "{0} GHz"
|
|
5283
5536
|
},
|
|
5284
5537
|
"frequency-megahertz": {
|
|
5285
5538
|
"displayName": "MHz",
|
|
5286
|
-
"unitPattern-count-one": "{0} MHz",
|
|
5287
|
-
"unitPattern-count-few": "{0} MHz",
|
|
5288
5539
|
"unitPattern-count-other": "{0} MHz"
|
|
5289
5540
|
},
|
|
5290
5541
|
"frequency-kilohertz": {
|
|
5291
5542
|
"displayName": "kHz",
|
|
5292
|
-
"unitPattern-count-one": "{0} kHz",
|
|
5293
|
-
"unitPattern-count-few": "{0} kHz",
|
|
5294
5543
|
"unitPattern-count-other": "{0} kHz"
|
|
5295
5544
|
},
|
|
5296
5545
|
"frequency-hertz": {
|
|
5297
5546
|
"displayName": "Hz",
|
|
5298
|
-
"unitPattern-count-one": "{0} Hz",
|
|
5299
|
-
"unitPattern-count-few": "{0} Hz",
|
|
5300
5547
|
"unitPattern-count-other": "{0} Hz"
|
|
5301
5548
|
},
|
|
5302
5549
|
"graphics-em": {
|
|
5303
5550
|
"displayName": "em",
|
|
5304
|
-
"unitPattern-count-one": "{0} em",
|
|
5305
|
-
"unitPattern-count-few": "{0} em",
|
|
5306
5551
|
"unitPattern-count-other": "{0} em"
|
|
5307
5552
|
},
|
|
5308
5553
|
"graphics-pixel": {
|
|
5309
5554
|
"displayName": "px",
|
|
5310
|
-
"unitPattern-count-one": "{0} px",
|
|
5311
|
-
"unitPattern-count-few": "{0} px",
|
|
5312
5555
|
"unitPattern-count-other": "{0} px"
|
|
5313
5556
|
},
|
|
5314
5557
|
"graphics-megapixel": {
|
|
5315
5558
|
"displayName": "MP",
|
|
5316
|
-
"unitPattern-count-one": "{0} MP",
|
|
5317
|
-
"unitPattern-count-few": "{0} MP",
|
|
5318
5559
|
"unitPattern-count-other": "{0} MP"
|
|
5319
5560
|
},
|
|
5320
5561
|
"graphics-pixel-per-centimeter": {
|
|
5321
5562
|
"displayName": "ppcm",
|
|
5322
|
-
"unitPattern-count-one": "{0} ppcm",
|
|
5323
|
-
"unitPattern-count-few": "{0} ppcm",
|
|
5324
5563
|
"unitPattern-count-other": "{0} ppcm"
|
|
5325
5564
|
},
|
|
5326
5565
|
"graphics-pixel-per-inch": {
|
|
5327
5566
|
"displayName": "ppi",
|
|
5328
|
-
"unitPattern-count-one": "{0} ppi",
|
|
5329
|
-
"unitPattern-count-few": "{0} ppi",
|
|
5330
5567
|
"unitPattern-count-other": "{0} ppi"
|
|
5331
5568
|
},
|
|
5332
5569
|
"graphics-dot-per-centimeter": {
|
|
@@ -5349,65 +5586,45 @@
|
|
|
5349
5586
|
},
|
|
5350
5587
|
"length-earth-radius": {
|
|
5351
5588
|
"displayName": "R⊕",
|
|
5352
|
-
"unitPattern-count-one": "{0} R⊕",
|
|
5353
|
-
"unitPattern-count-few": "{0} R⊕",
|
|
5354
5589
|
"unitPattern-count-other": "{0} R⊕"
|
|
5355
5590
|
},
|
|
5356
5591
|
"length-kilometer": {
|
|
5357
5592
|
"displayName": "km",
|
|
5358
|
-
"unitPattern-count-one": "{0} km",
|
|
5359
|
-
"unitPattern-count-few": "{0} km",
|
|
5360
5593
|
"unitPattern-count-other": "{0} km",
|
|
5361
5594
|
"perUnitPattern": "{0}/km"
|
|
5362
5595
|
},
|
|
5363
5596
|
"length-meter": {
|
|
5364
5597
|
"displayName": "m",
|
|
5365
|
-
"unitPattern-count-one": "{0} m",
|
|
5366
|
-
"unitPattern-count-few": "{0} m",
|
|
5367
5598
|
"unitPattern-count-other": "{0} m",
|
|
5368
5599
|
"perUnitPattern": "{0}/m"
|
|
5369
5600
|
},
|
|
5370
5601
|
"length-decimeter": {
|
|
5371
5602
|
"displayName": "dm",
|
|
5372
|
-
"unitPattern-count-one": "{0} dm",
|
|
5373
|
-
"unitPattern-count-few": "{0} dm",
|
|
5374
5603
|
"unitPattern-count-other": "{0} dm"
|
|
5375
5604
|
},
|
|
5376
5605
|
"length-centimeter": {
|
|
5377
5606
|
"displayName": "cm",
|
|
5378
|
-
"unitPattern-count-one": "{0} cm",
|
|
5379
|
-
"unitPattern-count-few": "{0} cm",
|
|
5380
5607
|
"unitPattern-count-other": "{0} cm",
|
|
5381
5608
|
"perUnitPattern": "{0}/cm"
|
|
5382
5609
|
},
|
|
5383
5610
|
"length-millimeter": {
|
|
5384
5611
|
"displayName": "mm",
|
|
5385
|
-
"unitPattern-count-one": "{0} mm",
|
|
5386
|
-
"unitPattern-count-few": "{0} mm",
|
|
5387
5612
|
"unitPattern-count-other": "{0} mm"
|
|
5388
5613
|
},
|
|
5389
5614
|
"length-micrometer": {
|
|
5390
5615
|
"displayName": "μm",
|
|
5391
|
-
"unitPattern-count-one": "{0} μm",
|
|
5392
|
-
"unitPattern-count-few": "{0} μm",
|
|
5393
5616
|
"unitPattern-count-other": "{0} μm"
|
|
5394
5617
|
},
|
|
5395
5618
|
"length-nanometer": {
|
|
5396
5619
|
"displayName": "nm",
|
|
5397
|
-
"unitPattern-count-one": "{0} nm",
|
|
5398
|
-
"unitPattern-count-few": "{0} nm",
|
|
5399
5620
|
"unitPattern-count-other": "{0} nm"
|
|
5400
5621
|
},
|
|
5401
5622
|
"length-picometer": {
|
|
5402
5623
|
"displayName": "pikometri",
|
|
5403
|
-
"unitPattern-count-one": "{0} pm",
|
|
5404
|
-
"unitPattern-count-few": "{0} pm",
|
|
5405
5624
|
"unitPattern-count-other": "{0} pm"
|
|
5406
5625
|
},
|
|
5407
5626
|
"length-mile": {
|
|
5408
5627
|
"displayName": "milje",
|
|
5409
|
-
"unitPattern-count-one": "{0} mi",
|
|
5410
|
-
"unitPattern-count-few": "{0} mi",
|
|
5411
5628
|
"unitPattern-count-other": "{0} mi"
|
|
5412
5629
|
},
|
|
5413
5630
|
"length-yard": {
|
|
@@ -5418,8 +5635,6 @@
|
|
|
5418
5635
|
},
|
|
5419
5636
|
"length-foot": {
|
|
5420
5637
|
"displayName": "ft",
|
|
5421
|
-
"unitPattern-count-one": "{0} ft",
|
|
5422
|
-
"unitPattern-count-few": "{0} ft",
|
|
5423
5638
|
"unitPattern-count-other": "{0} ft",
|
|
5424
5639
|
"perUnitPattern": "{0}/ft"
|
|
5425
5640
|
},
|
|
@@ -5432,8 +5647,6 @@
|
|
|
5432
5647
|
},
|
|
5433
5648
|
"length-parsec": {
|
|
5434
5649
|
"displayName": "parseci",
|
|
5435
|
-
"unitPattern-count-one": "{0} pc",
|
|
5436
|
-
"unitPattern-count-few": "{0} pc",
|
|
5437
5650
|
"unitPattern-count-other": "{0} pc"
|
|
5438
5651
|
},
|
|
5439
5652
|
"length-light-year": {
|
|
@@ -5450,417 +5663,287 @@
|
|
|
5450
5663
|
},
|
|
5451
5664
|
"length-furlong": {
|
|
5452
5665
|
"displayName": "furlonzi",
|
|
5453
|
-
"unitPattern-count-one": "{0} fur",
|
|
5454
|
-
"unitPattern-count-few": "{0} fur",
|
|
5455
5666
|
"unitPattern-count-other": "{0} fur"
|
|
5456
5667
|
},
|
|
5457
5668
|
"length-fathom": {
|
|
5458
5669
|
"displayName": "hv",
|
|
5459
|
-
"unitPattern-count-one": "{0} fth",
|
|
5460
|
-
"unitPattern-count-few": "{0} fth",
|
|
5461
5670
|
"unitPattern-count-other": "{0} fth"
|
|
5462
5671
|
},
|
|
5463
5672
|
"length-nautical-mile": {
|
|
5464
5673
|
"displayName": "nmi",
|
|
5465
|
-
"unitPattern-count-one": "{0} nmi",
|
|
5466
|
-
"unitPattern-count-few": "{0} nmi",
|
|
5467
5674
|
"unitPattern-count-other": "{0} nmi"
|
|
5468
5675
|
},
|
|
5469
5676
|
"length-mile-scandinavian": {
|
|
5470
5677
|
"displayName": "smi",
|
|
5471
|
-
"unitPattern-count-one": "{0} smi",
|
|
5472
|
-
"unitPattern-count-few": "{0} smi",
|
|
5473
5678
|
"unitPattern-count-other": "{0} smi"
|
|
5474
5679
|
},
|
|
5475
5680
|
"length-point": {
|
|
5476
5681
|
"displayName": "pt",
|
|
5477
|
-
"unitPattern-count-one": "{0} pt",
|
|
5478
|
-
"unitPattern-count-few": "{0} pt",
|
|
5479
5682
|
"unitPattern-count-other": "{0} pt"
|
|
5480
5683
|
},
|
|
5481
5684
|
"length-solar-radius": {
|
|
5482
5685
|
"displayName": "R☉",
|
|
5483
|
-
"unitPattern-count-one": "{0} R☉",
|
|
5484
|
-
"unitPattern-count-few": "{0} R☉",
|
|
5485
5686
|
"unitPattern-count-other": "{0} R☉"
|
|
5486
5687
|
},
|
|
5487
5688
|
"light-lux": {
|
|
5488
5689
|
"displayName": "lx",
|
|
5489
|
-
"unitPattern-count-one": "{0} lx",
|
|
5490
|
-
"unitPattern-count-few": "{0} lx",
|
|
5491
5690
|
"unitPattern-count-other": "{0} lx"
|
|
5492
5691
|
},
|
|
5493
5692
|
"light-candela": {
|
|
5494
5693
|
"displayName": "cd",
|
|
5495
|
-
"unitPattern-count-one": "{0} cd",
|
|
5496
|
-
"unitPattern-count-few": "{0} cd",
|
|
5497
5694
|
"unitPattern-count-other": "{0} cd"
|
|
5498
5695
|
},
|
|
5499
5696
|
"light-lumen": {
|
|
5500
5697
|
"displayName": "lm",
|
|
5501
|
-
"unitPattern-count-one": "{0} lm",
|
|
5502
|
-
"unitPattern-count-few": "{0} lm",
|
|
5503
5698
|
"unitPattern-count-other": "{0} lm"
|
|
5504
5699
|
},
|
|
5505
5700
|
"light-solar-luminosity": {
|
|
5506
5701
|
"displayName": "L☉",
|
|
5507
|
-
"unitPattern-count-one": "{0} L☉",
|
|
5508
|
-
"unitPattern-count-few": "{0} L☉",
|
|
5509
5702
|
"unitPattern-count-other": "{0} L☉"
|
|
5510
5703
|
},
|
|
5511
5704
|
"mass-tonne": {
|
|
5512
5705
|
"displayName": "t",
|
|
5513
|
-
"unitPattern-count-one": "{0} t",
|
|
5514
|
-
"unitPattern-count-few": "{0} t",
|
|
5515
5706
|
"unitPattern-count-other": "{0} t"
|
|
5516
5707
|
},
|
|
5517
5708
|
"mass-kilogram": {
|
|
5518
5709
|
"displayName": "kg",
|
|
5519
|
-
"unitPattern-count-one": "{0} kg",
|
|
5520
|
-
"unitPattern-count-few": "{0} kg",
|
|
5521
5710
|
"unitPattern-count-other": "{0} kg",
|
|
5522
5711
|
"perUnitPattern": "{0}/kg"
|
|
5523
5712
|
},
|
|
5524
5713
|
"mass-gram": {
|
|
5525
5714
|
"displayName": "grami",
|
|
5526
|
-
"unitPattern-count-one": "{0} g",
|
|
5527
|
-
"unitPattern-count-few": "{0} g",
|
|
5528
5715
|
"unitPattern-count-other": "{0} g",
|
|
5529
5716
|
"perUnitPattern": "{0}/g"
|
|
5530
5717
|
},
|
|
5531
5718
|
"mass-milligram": {
|
|
5532
5719
|
"displayName": "mg",
|
|
5533
|
-
"unitPattern-count-one": "{0} mg",
|
|
5534
|
-
"unitPattern-count-few": "{0} mg",
|
|
5535
5720
|
"unitPattern-count-other": "{0} mg"
|
|
5536
5721
|
},
|
|
5537
5722
|
"mass-microgram": {
|
|
5538
5723
|
"displayName": "μg",
|
|
5539
|
-
"unitPattern-count-one": "{0} μg",
|
|
5540
|
-
"unitPattern-count-few": "{0} μg",
|
|
5541
5724
|
"unitPattern-count-other": "{0} μg"
|
|
5542
5725
|
},
|
|
5543
5726
|
"mass-ton": {
|
|
5544
5727
|
"displayName": "tn",
|
|
5545
|
-
"unitPattern-count-one": "{0} tn",
|
|
5546
|
-
"unitPattern-count-few": "{0} tn",
|
|
5547
5728
|
"unitPattern-count-other": "{0} tn"
|
|
5548
5729
|
},
|
|
5549
5730
|
"mass-stone": {
|
|
5550
5731
|
"displayName": "st",
|
|
5551
|
-
"unitPattern-count-one": "{0} st",
|
|
5552
|
-
"unitPattern-count-few": "{0} st",
|
|
5553
5732
|
"unitPattern-count-other": "{0} st"
|
|
5554
5733
|
},
|
|
5555
5734
|
"mass-pound": {
|
|
5556
5735
|
"displayName": "lb",
|
|
5557
|
-
"unitPattern-count-one": "{0} lb",
|
|
5558
|
-
"unitPattern-count-few": "{0} lb",
|
|
5559
5736
|
"unitPattern-count-other": "{0} lb",
|
|
5560
5737
|
"perUnitPattern": "{0}/lb"
|
|
5561
5738
|
},
|
|
5562
5739
|
"mass-ounce": {
|
|
5563
5740
|
"displayName": "oz",
|
|
5564
|
-
"unitPattern-count-one": "{0} oz",
|
|
5565
|
-
"unitPattern-count-few": "{0} oz",
|
|
5566
5741
|
"unitPattern-count-other": "{0} oz",
|
|
5567
5742
|
"perUnitPattern": "{0}/oz"
|
|
5568
5743
|
},
|
|
5569
5744
|
"mass-ounce-troy": {
|
|
5570
5745
|
"displayName": "oz t",
|
|
5571
|
-
"unitPattern-count-one": "{0} oz t",
|
|
5572
|
-
"unitPattern-count-few": "{0} oz t",
|
|
5573
5746
|
"unitPattern-count-other": "{0} oz t"
|
|
5574
5747
|
},
|
|
5575
5748
|
"mass-carat": {
|
|
5576
5749
|
"displayName": "karati",
|
|
5577
|
-
"unitPattern-count-one": "{0} CD",
|
|
5578
|
-
"unitPattern-count-few": "{0} CD",
|
|
5579
5750
|
"unitPattern-count-other": "{0} CD"
|
|
5580
5751
|
},
|
|
5581
5752
|
"mass-dalton": {
|
|
5582
5753
|
"displayName": "Da",
|
|
5583
|
-
"unitPattern-count-one": "{0} Da",
|
|
5584
|
-
"unitPattern-count-few": "{0} Da",
|
|
5585
5754
|
"unitPattern-count-other": "{0} Da"
|
|
5586
5755
|
},
|
|
5587
5756
|
"mass-earth-mass": {
|
|
5588
5757
|
"displayName": "M⊕",
|
|
5589
|
-
"unitPattern-count-one": "{0} M⊕",
|
|
5590
|
-
"unitPattern-count-few": "{0} M⊕",
|
|
5591
5758
|
"unitPattern-count-other": "{0} M⊕"
|
|
5592
5759
|
},
|
|
5593
5760
|
"mass-solar-mass": {
|
|
5594
5761
|
"displayName": "M☉",
|
|
5595
|
-
"unitPattern-count-one": "{0} M☉",
|
|
5596
|
-
"unitPattern-count-few": "{0} M☉",
|
|
5597
5762
|
"unitPattern-count-other": "{0} M☉"
|
|
5598
5763
|
},
|
|
5599
5764
|
"mass-grain": {
|
|
5600
5765
|
"displayName": "grejn",
|
|
5601
|
-
"unitPattern-count-one": "{0} grain",
|
|
5602
|
-
"unitPattern-count-few": "{0} grain",
|
|
5603
5766
|
"unitPattern-count-other": "{0} grain"
|
|
5604
5767
|
},
|
|
5605
5768
|
"power-gigawatt": {
|
|
5606
5769
|
"displayName": "GW",
|
|
5607
|
-
"unitPattern-count-one": "{0} GW",
|
|
5608
|
-
"unitPattern-count-few": "{0} GW",
|
|
5609
5770
|
"unitPattern-count-other": "{0} GW"
|
|
5610
5771
|
},
|
|
5611
5772
|
"power-megawatt": {
|
|
5612
5773
|
"displayName": "MW",
|
|
5613
|
-
"unitPattern-count-one": "{0} MW",
|
|
5614
|
-
"unitPattern-count-few": "{0} MW",
|
|
5615
5774
|
"unitPattern-count-other": "{0} MW"
|
|
5616
5775
|
},
|
|
5617
5776
|
"power-kilowatt": {
|
|
5618
5777
|
"displayName": "kW",
|
|
5619
|
-
"unitPattern-count-one": "{0} kW",
|
|
5620
|
-
"unitPattern-count-few": "{0} kW",
|
|
5621
5778
|
"unitPattern-count-other": "{0} kW"
|
|
5622
5779
|
},
|
|
5623
5780
|
"power-watt": {
|
|
5624
5781
|
"displayName": "W",
|
|
5625
|
-
"unitPattern-count-one": "{0} W",
|
|
5626
|
-
"unitPattern-count-few": "{0} W",
|
|
5627
5782
|
"unitPattern-count-other": "{0} W"
|
|
5628
5783
|
},
|
|
5629
5784
|
"power-milliwatt": {
|
|
5630
5785
|
"displayName": "mW",
|
|
5631
|
-
"unitPattern-count-one": "{0} mW",
|
|
5632
|
-
"unitPattern-count-few": "{0} mW",
|
|
5633
5786
|
"unitPattern-count-other": "{0} mW"
|
|
5634
5787
|
},
|
|
5635
5788
|
"power-horsepower": {
|
|
5636
5789
|
"displayName": "hp",
|
|
5637
|
-
"unitPattern-count-one": "{0} hp",
|
|
5638
|
-
"unitPattern-count-few": "{0} hp",
|
|
5639
5790
|
"unitPattern-count-other": "{0} hp"
|
|
5640
5791
|
},
|
|
5641
5792
|
"pressure-millimeter-ofhg": {
|
|
5642
5793
|
"displayName": "mm Hg",
|
|
5643
|
-
"unitPattern-count-one": "{0} mm Hg",
|
|
5644
|
-
"unitPattern-count-few": "{0} mm Hg",
|
|
5645
5794
|
"unitPattern-count-other": "{0} mm Hg"
|
|
5646
5795
|
},
|
|
5647
5796
|
"pressure-pound-force-per-square-inch": {
|
|
5648
5797
|
"displayName": "psi",
|
|
5649
|
-
"unitPattern-count-one": "{0} psi",
|
|
5650
|
-
"unitPattern-count-few": "{0} psi",
|
|
5651
5798
|
"unitPattern-count-other": "{0} psi"
|
|
5652
5799
|
},
|
|
5653
5800
|
"pressure-inch-ofhg": {
|
|
5654
5801
|
"displayName": "inHg",
|
|
5655
|
-
"unitPattern-count-one": "{0} inHg",
|
|
5656
|
-
"unitPattern-count-few": "{0} inHg",
|
|
5657
5802
|
"unitPattern-count-other": "{0} inHg"
|
|
5658
5803
|
},
|
|
5659
5804
|
"pressure-bar": {
|
|
5660
5805
|
"displayName": "bar",
|
|
5661
|
-
"unitPattern-count-one": "{0} bar",
|
|
5662
|
-
"unitPattern-count-few": "{0} bar",
|
|
5663
5806
|
"unitPattern-count-other": "{0} bar"
|
|
5664
5807
|
},
|
|
5665
5808
|
"pressure-millibar": {
|
|
5666
5809
|
"displayName": "mbar",
|
|
5667
|
-
"unitPattern-count-one": "{0} mbar",
|
|
5668
|
-
"unitPattern-count-few": "{0} mbar",
|
|
5669
5810
|
"unitPattern-count-other": "{0} mbar"
|
|
5670
5811
|
},
|
|
5671
5812
|
"pressure-atmosphere": {
|
|
5672
5813
|
"displayName": "atm",
|
|
5673
|
-
"unitPattern-count-one": "{0} atm",
|
|
5674
|
-
"unitPattern-count-few": "{0} atm",
|
|
5675
5814
|
"unitPattern-count-other": "{0} atm"
|
|
5676
5815
|
},
|
|
5677
5816
|
"pressure-pascal": {
|
|
5678
5817
|
"displayName": "Pa",
|
|
5679
|
-
"unitPattern-count-one": "{0} Pa",
|
|
5680
|
-
"unitPattern-count-few": "{0} Pa",
|
|
5681
5818
|
"unitPattern-count-other": "{0} Pa"
|
|
5682
5819
|
},
|
|
5683
5820
|
"pressure-hectopascal": {
|
|
5684
5821
|
"displayName": "hPa",
|
|
5685
|
-
"unitPattern-count-one": "{0} hPa",
|
|
5686
|
-
"unitPattern-count-few": "{0} hPa",
|
|
5687
5822
|
"unitPattern-count-other": "{0} hPa"
|
|
5688
5823
|
},
|
|
5689
5824
|
"pressure-kilopascal": {
|
|
5690
5825
|
"displayName": "kPa",
|
|
5691
|
-
"unitPattern-count-one": "{0} kPa",
|
|
5692
|
-
"unitPattern-count-few": "{0} kPa",
|
|
5693
5826
|
"unitPattern-count-other": "{0} kPa"
|
|
5694
5827
|
},
|
|
5695
5828
|
"pressure-megapascal": {
|
|
5696
5829
|
"displayName": "MPa",
|
|
5697
|
-
"unitPattern-count-one": "{0} MPa",
|
|
5698
|
-
"unitPattern-count-few": "{0} MPa",
|
|
5699
5830
|
"unitPattern-count-other": "{0} MPa"
|
|
5700
5831
|
},
|
|
5701
5832
|
"speed-kilometer-per-hour": {
|
|
5702
5833
|
"displayName": "km/h",
|
|
5703
|
-
"unitPattern-count-one": "{0} km/h",
|
|
5704
|
-
"unitPattern-count-few": "{0} km/h",
|
|
5705
5834
|
"unitPattern-count-other": "{0} km/h"
|
|
5706
5835
|
},
|
|
5707
5836
|
"speed-meter-per-second": {
|
|
5708
5837
|
"displayName": "metri u sekundi",
|
|
5709
|
-
"unitPattern-count-one": "{0} m/s",
|
|
5710
|
-
"unitPattern-count-few": "{0} m/s",
|
|
5711
5838
|
"unitPattern-count-other": "{0} m/s"
|
|
5712
5839
|
},
|
|
5713
5840
|
"speed-mile-per-hour": {
|
|
5714
5841
|
"displayName": "milje na sat",
|
|
5715
|
-
"unitPattern-count-one": "{0} mi/h",
|
|
5716
|
-
"unitPattern-count-few": "{0} mi/h",
|
|
5717
5842
|
"unitPattern-count-other": "{0} mi/h"
|
|
5718
5843
|
},
|
|
5719
5844
|
"speed-knot": {
|
|
5720
5845
|
"displayName": "kn",
|
|
5721
|
-
"unitPattern-count-one": "{0} kn",
|
|
5722
|
-
"unitPattern-count-few": "{0} kn",
|
|
5723
5846
|
"unitPattern-count-other": "{0} kn"
|
|
5724
5847
|
},
|
|
5848
|
+
"speed-beaufort": {
|
|
5849
|
+
"displayName": "Bf",
|
|
5850
|
+
"unitPattern-count-one": "B {0}",
|
|
5851
|
+
"unitPattern-count-few": "B {0}",
|
|
5852
|
+
"unitPattern-count-other": "B {0}"
|
|
5853
|
+
},
|
|
5725
5854
|
"temperature-generic": {
|
|
5726
5855
|
"displayName": "°",
|
|
5727
|
-
"unitPattern-count-one": "{0}°",
|
|
5728
|
-
"unitPattern-count-few": "{0}°",
|
|
5729
5856
|
"unitPattern-count-other": "{0}°"
|
|
5730
5857
|
},
|
|
5731
5858
|
"temperature-celsius": {
|
|
5732
5859
|
"displayName": "°C",
|
|
5733
|
-
"unitPattern-count-one": "{0}°C",
|
|
5734
|
-
"unitPattern-count-few": "{0}°C",
|
|
5735
5860
|
"unitPattern-count-other": "{0}°C"
|
|
5736
5861
|
},
|
|
5737
5862
|
"temperature-fahrenheit": {
|
|
5738
5863
|
"displayName": "stepeni Farenhajta",
|
|
5739
|
-
"unitPattern-count-one": "{0}°F",
|
|
5740
|
-
"unitPattern-count-few": "{0}°F",
|
|
5741
5864
|
"unitPattern-count-other": "{0}°F"
|
|
5742
5865
|
},
|
|
5743
5866
|
"temperature-kelvin": {
|
|
5744
5867
|
"displayName": "K",
|
|
5745
|
-
"unitPattern-count-one": "{0} K",
|
|
5746
|
-
"unitPattern-count-few": "{0} K",
|
|
5747
5868
|
"unitPattern-count-other": "{0} K"
|
|
5748
5869
|
},
|
|
5749
5870
|
"torque-pound-force-foot": {
|
|
5750
5871
|
"displayName": "lbf⋅ft",
|
|
5751
|
-
"unitPattern-count-one": "{0} lbf⋅ft",
|
|
5752
|
-
"unitPattern-count-few": "{0} lbf⋅ft",
|
|
5753
5872
|
"unitPattern-count-other": "{0} lbf⋅ft"
|
|
5754
5873
|
},
|
|
5755
5874
|
"torque-newton-meter": {
|
|
5756
5875
|
"displayName": "N⋅m",
|
|
5757
|
-
"unitPattern-count-one": "{0} N⋅m",
|
|
5758
|
-
"unitPattern-count-few": "{0} N⋅m",
|
|
5759
5876
|
"unitPattern-count-other": "{0} N⋅m"
|
|
5760
5877
|
},
|
|
5761
5878
|
"volume-cubic-kilometer": {
|
|
5762
5879
|
"displayName": "km³",
|
|
5763
|
-
"unitPattern-count-one": "{0} km³",
|
|
5764
|
-
"unitPattern-count-few": "{0} km³",
|
|
5765
5880
|
"unitPattern-count-other": "{0} km³"
|
|
5766
5881
|
},
|
|
5767
5882
|
"volume-cubic-meter": {
|
|
5768
5883
|
"displayName": "m³",
|
|
5769
|
-
"unitPattern-count-one": "{0} m³",
|
|
5770
|
-
"unitPattern-count-few": "{0} m³",
|
|
5771
5884
|
"unitPattern-count-other": "{0} m³",
|
|
5772
5885
|
"perUnitPattern": "{0}/m³"
|
|
5773
5886
|
},
|
|
5774
5887
|
"volume-cubic-centimeter": {
|
|
5775
5888
|
"displayName": "cm³",
|
|
5776
|
-
"unitPattern-count-one": "{0} cm³",
|
|
5777
|
-
"unitPattern-count-few": "{0} cm³",
|
|
5778
5889
|
"unitPattern-count-other": "{0} cm³",
|
|
5779
5890
|
"perUnitPattern": "{0}/cm³"
|
|
5780
5891
|
},
|
|
5781
5892
|
"volume-cubic-mile": {
|
|
5782
5893
|
"displayName": "mi³",
|
|
5783
|
-
"unitPattern-count-one": "{0} mi³",
|
|
5784
|
-
"unitPattern-count-few": "{0} mi³",
|
|
5785
5894
|
"unitPattern-count-other": "{0} mi³"
|
|
5786
5895
|
},
|
|
5787
5896
|
"volume-cubic-yard": {
|
|
5788
5897
|
"displayName": "yd³",
|
|
5789
|
-
"unitPattern-count-one": "{0} yd³",
|
|
5790
|
-
"unitPattern-count-few": "{0} yd³",
|
|
5791
5898
|
"unitPattern-count-other": "{0} yd³"
|
|
5792
5899
|
},
|
|
5793
5900
|
"volume-cubic-foot": {
|
|
5794
5901
|
"displayName": "ft³",
|
|
5795
|
-
"unitPattern-count-one": "{0} ft³",
|
|
5796
|
-
"unitPattern-count-few": "{0} ft³",
|
|
5797
5902
|
"unitPattern-count-other": "{0} ft³"
|
|
5798
5903
|
},
|
|
5799
5904
|
"volume-cubic-inch": {
|
|
5800
5905
|
"displayName": "in³",
|
|
5801
|
-
"unitPattern-count-one": "{0} in³",
|
|
5802
|
-
"unitPattern-count-few": "{0} in³",
|
|
5803
5906
|
"unitPattern-count-other": "{0} in³"
|
|
5804
5907
|
},
|
|
5805
5908
|
"volume-megaliter": {
|
|
5806
5909
|
"displayName": "ML",
|
|
5807
|
-
"unitPattern-count-one": "{0} ML",
|
|
5808
|
-
"unitPattern-count-few": "{0} ML",
|
|
5809
5910
|
"unitPattern-count-other": "{0} ML"
|
|
5810
5911
|
},
|
|
5811
5912
|
"volume-hectoliter": {
|
|
5812
5913
|
"displayName": "hL",
|
|
5813
|
-
"unitPattern-count-one": "{0} hL",
|
|
5814
|
-
"unitPattern-count-few": "{0} hL",
|
|
5815
5914
|
"unitPattern-count-other": "{0} hL"
|
|
5816
5915
|
},
|
|
5817
5916
|
"volume-liter": {
|
|
5818
5917
|
"displayName": "litri",
|
|
5819
|
-
"unitPattern-count-one": "{0} l",
|
|
5820
|
-
"unitPattern-count-few": "{0} l",
|
|
5821
5918
|
"unitPattern-count-other": "{0} l",
|
|
5822
5919
|
"perUnitPattern": "{0}/l"
|
|
5823
5920
|
},
|
|
5824
5921
|
"volume-deciliter": {
|
|
5825
5922
|
"displayName": "dL",
|
|
5826
|
-
"unitPattern-count-one": "{0} dL",
|
|
5827
|
-
"unitPattern-count-few": "{0} dL",
|
|
5828
5923
|
"unitPattern-count-other": "{0} dL"
|
|
5829
5924
|
},
|
|
5830
5925
|
"volume-centiliter": {
|
|
5831
5926
|
"displayName": "cL",
|
|
5832
|
-
"unitPattern-count-one": "{0} cL",
|
|
5833
|
-
"unitPattern-count-few": "{0} cL",
|
|
5834
5927
|
"unitPattern-count-other": "{0} cL"
|
|
5835
5928
|
},
|
|
5836
5929
|
"volume-milliliter": {
|
|
5837
5930
|
"displayName": "mL",
|
|
5838
|
-
"unitPattern-count-one": "{0} mL",
|
|
5839
|
-
"unitPattern-count-few": "{0} mL",
|
|
5840
5931
|
"unitPattern-count-other": "{0} mL"
|
|
5841
5932
|
},
|
|
5842
5933
|
"volume-pint-metric": {
|
|
5843
5934
|
"displayName": "mpt",
|
|
5844
|
-
"unitPattern-count-one": "{0} mpt",
|
|
5845
|
-
"unitPattern-count-few": "{0} mpt",
|
|
5846
5935
|
"unitPattern-count-other": "{0} mpt"
|
|
5847
5936
|
},
|
|
5848
5937
|
"volume-cup-metric": {
|
|
5849
5938
|
"displayName": "mcup",
|
|
5850
|
-
"unitPattern-count-one": "{0} mc",
|
|
5851
|
-
"unitPattern-count-few": "{0} mc",
|
|
5852
5939
|
"unitPattern-count-other": "{0} mc"
|
|
5853
5940
|
},
|
|
5854
5941
|
"volume-acre-foot": {
|
|
5855
5942
|
"displayName": "ac ft",
|
|
5856
|
-
"unitPattern-count-one": "{0} ac ft",
|
|
5857
|
-
"unitPattern-count-few": "{0} ac ft",
|
|
5858
5943
|
"unitPattern-count-other": "{0} ac ft"
|
|
5859
5944
|
},
|
|
5860
5945
|
"volume-bushel": {
|
|
5861
5946
|
"displayName": "bu",
|
|
5862
|
-
"unitPattern-count-one": "{0} bu",
|
|
5863
|
-
"unitPattern-count-few": "{0} bu",
|
|
5864
5947
|
"unitPattern-count-other": "{0} bu"
|
|
5865
5948
|
},
|
|
5866
5949
|
"volume-gallon": {
|
|
@@ -5872,21 +5955,15 @@
|
|
|
5872
5955
|
},
|
|
5873
5956
|
"volume-gallon-imperial": {
|
|
5874
5957
|
"displayName": "Imp. gal",
|
|
5875
|
-
"unitPattern-count-one": "{0} gal Imp.",
|
|
5876
|
-
"unitPattern-count-few": "{0} gal Imp.",
|
|
5877
5958
|
"unitPattern-count-other": "{0} gal Imp.",
|
|
5878
5959
|
"perUnitPattern": "{0}/gal Imp."
|
|
5879
5960
|
},
|
|
5880
5961
|
"volume-quart": {
|
|
5881
5962
|
"displayName": "qt",
|
|
5882
|
-
"unitPattern-count-one": "{0} qt",
|
|
5883
|
-
"unitPattern-count-few": "{0} qt",
|
|
5884
5963
|
"unitPattern-count-other": "{0} qt"
|
|
5885
5964
|
},
|
|
5886
5965
|
"volume-pint": {
|
|
5887
5966
|
"displayName": "pt",
|
|
5888
|
-
"unitPattern-count-one": "{0} pt",
|
|
5889
|
-
"unitPattern-count-few": "{0} pt",
|
|
5890
5967
|
"unitPattern-count-other": "{0} pt"
|
|
5891
5968
|
},
|
|
5892
5969
|
"volume-cup": {
|
|
@@ -5903,8 +5980,6 @@
|
|
|
5903
5980
|
},
|
|
5904
5981
|
"volume-fluid-ounce-imperial": {
|
|
5905
5982
|
"displayName": "Imp. fl oz",
|
|
5906
|
-
"unitPattern-count-one": "{0} fl oz Imp.",
|
|
5907
|
-
"unitPattern-count-few": "{0} fl oz Imp.",
|
|
5908
5983
|
"unitPattern-count-other": "{0} fl oz Imp."
|
|
5909
5984
|
},
|
|
5910
5985
|
"volume-tablespoon": {
|
|
@@ -5921,21 +5996,19 @@
|
|
|
5921
5996
|
},
|
|
5922
5997
|
"volume-barrel": {
|
|
5923
5998
|
"displayName": "bbl",
|
|
5924
|
-
"unitPattern-count-one": "{0} bbl",
|
|
5925
|
-
"unitPattern-count-few": "{0} bbl",
|
|
5926
5999
|
"unitPattern-count-other": "{0} bbl"
|
|
5927
6000
|
},
|
|
5928
6001
|
"volume-dessert-spoon": {
|
|
5929
|
-
"displayName": "
|
|
5930
|
-
"unitPattern-count-one": "{0}
|
|
5931
|
-
"unitPattern-count-few": "{0}
|
|
5932
|
-
"unitPattern-count-other": "{0}
|
|
6002
|
+
"displayName": "des. kaš.",
|
|
6003
|
+
"unitPattern-count-one": "{0} des. kaš.",
|
|
6004
|
+
"unitPattern-count-few": "{0} des. kaš.",
|
|
6005
|
+
"unitPattern-count-other": "{0} des. kaš."
|
|
5933
6006
|
},
|
|
5934
6007
|
"volume-dessert-spoon-imperial": {
|
|
5935
|
-
"displayName": "
|
|
5936
|
-
"unitPattern-count-one": "{0}
|
|
5937
|
-
"unitPattern-count-few": "{0}
|
|
5938
|
-
"unitPattern-count-other": "{0}
|
|
6008
|
+
"displayName": "imp. des. kaš.",
|
|
6009
|
+
"unitPattern-count-one": "{0} imp. des. kaš.",
|
|
6010
|
+
"unitPattern-count-few": "{0} imp. des. kaš.",
|
|
6011
|
+
"unitPattern-count-other": "{0} imp. des. kaš."
|
|
5939
6012
|
},
|
|
5940
6013
|
"volume-drop": {
|
|
5941
6014
|
"displayName": "kap",
|
|
@@ -5945,26 +6018,22 @@
|
|
|
5945
6018
|
},
|
|
5946
6019
|
"volume-dram": {
|
|
5947
6020
|
"displayName": "dram tečnosti",
|
|
5948
|
-
"unitPattern-count-one": "{0} dram fl",
|
|
5949
|
-
"unitPattern-count-few": "{0} dram fl",
|
|
5950
6021
|
"unitPattern-count-other": "{0} dram fl"
|
|
5951
6022
|
},
|
|
5952
6023
|
"volume-jigger": {
|
|
5953
6024
|
"displayName": "džiger",
|
|
5954
|
-
"unitPattern-count-one": "{0}
|
|
5955
|
-
"unitPattern-count-few": "{0}
|
|
5956
|
-
"unitPattern-count-other": "{0}
|
|
6025
|
+
"unitPattern-count-one": "{0} džiger",
|
|
6026
|
+
"unitPattern-count-few": "{0} džigera",
|
|
6027
|
+
"unitPattern-count-other": "{0} džigera"
|
|
5957
6028
|
},
|
|
5958
6029
|
"volume-pinch": {
|
|
5959
6030
|
"displayName": "prstohvat",
|
|
5960
|
-
"unitPattern-count-one": "{0}
|
|
5961
|
-
"unitPattern-count-few": "{0}
|
|
5962
|
-
"unitPattern-count-other": "{0}
|
|
6031
|
+
"unitPattern-count-one": "{0} prstohvat",
|
|
6032
|
+
"unitPattern-count-few": "{0} prstohvata",
|
|
6033
|
+
"unitPattern-count-other": "{0} prstohvata"
|
|
5963
6034
|
},
|
|
5964
6035
|
"volume-quart-imperial": {
|
|
5965
6036
|
"displayName": "qt Imp",
|
|
5966
|
-
"unitPattern-count-one": "{0} qt Imp.",
|
|
5967
|
-
"unitPattern-count-few": "{0} qt Imp.",
|
|
5968
6037
|
"unitPattern-count-other": "{0} qt Imp."
|
|
5969
6038
|
},
|
|
5970
6039
|
"coordinateUnit": {
|
|
@@ -5977,9 +6046,9 @@
|
|
|
5977
6046
|
}
|
|
5978
6047
|
},
|
|
5979
6048
|
"lenient-scope-number": {
|
|
5980
|
-
"minusSign": "
|
|
5981
|
-
"commaSign": "
|
|
5982
|
-
"plusSign": "
|
|
6049
|
+
"minusSign": "--﹣ ‑‒−⁻₋➖",
|
|
6050
|
+
"commaSign": ",,﹐︐ ⹁،٫、﹑、︑",
|
|
6051
|
+
"plusSign": "++﬩﹢⁺₊ ➕"
|
|
5983
6052
|
},
|
|
5984
6053
|
"currencyFormat-sap-short": {
|
|
5985
6054
|
"1000-one": "0 hilj'.' ¤",
|