@openui5/sap.ui.core 1.119.1 → 1.120.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/THIRDPARTY.txt +6 -6
- package/package.json +1 -1
- package/src/jquery.sap.global.js +40 -111
- package/src/jquery.sap.properties.js +7 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +5 -3
- package/src/jquery.sap.storage.js +6 -3
- package/src/sap/base/Event.js +32 -78
- package/src/sap/base/Eventing.js +114 -271
- package/src/sap/base/Log.js +21 -1
- package/src/sap/base/config.js +14 -9
- package/src/sap/base/i18n/Formatting.js +400 -256
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +125 -87
- package/src/sap/base/i18n/ResourceBundle.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +2 -2
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
- package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
- package/src/sap/base/util/LoaderExtensions.js +8 -2
- package/src/sap/base/util/mixedFetch.js +1 -0
- package/src/sap/base/util/resolveReference.js +31 -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/base/util/syncFetch.js +1 -0
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +6 -7
- package/src/sap/ui/base/BindingInfo.js +3 -3
- package/src/sap/ui/base/BindingParser.js +5 -2
- package/src/sap/ui/base/DataType.js +57 -1
- package/src/sap/ui/base/DesignTime.js +69 -0
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +25 -4
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +102 -85
- package/src/sap/ui/base/ManagedObjectMetadata.js +53 -31
- package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
- package/src/sap/ui/base/Metadata.js +3 -3
- package/src/sap/ui/base/Object.js +19 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/AnimationMode.js +2 -2
- package/src/sap/ui/core/AppCacheBuster.js +30 -18
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/CalendarType.js +6 -0
- package/src/sap/ui/core/Component.js +175 -86
- package/src/sap/ui/core/ComponentContainer.js +6 -5
- package/src/sap/ui/core/ComponentMetadata.js +3 -4
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +395 -709
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/ControlBehavior.js +37 -28
- package/src/sap/ui/core/Core.js +338 -216
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +3 -1
- package/src/sap/ui/core/Element.js +24 -10
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +3 -2
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +3 -3
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +13 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +2 -3
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +17 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +8 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +253 -57
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -32
- package/src/sap/ui/core/Manifest.js +4 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Placeholder.js +18 -0
- package/src/sap/ui/core/Popup.js +5 -0
- package/src/sap/ui/core/RenderManager.js +21 -17
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/Rendering.js +51 -47
- package/src/sap/ui/core/ResizeHandler.js +2 -2
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +5 -3
- package/src/sap/ui/core/Supportability.js +146 -0
- package/src/sap/ui/core/Theming.js +130 -88
- 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 -4
- package/src/sap/ui/core/UIComponent.js +38 -12
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
- package/src/sap/ui/core/_IconRegistry.js +13 -6
- package/src/sap/ui/core/cldr/ar.json +143 -137
- package/src/sap/ui/core/cldr/ar_EG.json +143 -137
- package/src/sap/ui/core/cldr/ar_SA.json +143 -137
- package/src/sap/ui/core/cldr/bg.json +423 -423
- package/src/sap/ui/core/cldr/ca.json +541 -494
- package/src/sap/ui/core/cldr/cs.json +475 -364
- package/src/sap/ui/core/cldr/cy.json +656 -477
- package/src/sap/ui/core/cldr/da.json +334 -275
- package/src/sap/ui/core/cldr/de.json +388 -291
- package/src/sap/ui/core/cldr/de_AT.json +388 -291
- package/src/sap/ui/core/cldr/de_CH.json +394 -297
- package/src/sap/ui/core/cldr/el.json +169 -166
- package/src/sap/ui/core/cldr/el_CY.json +169 -166
- package/src/sap/ui/core/cldr/en.json +558 -521
- package/src/sap/ui/core/cldr/en_AU.json +558 -520
- package/src/sap/ui/core/cldr/en_GB.json +476 -439
- package/src/sap/ui/core/cldr/en_HK.json +520 -482
- package/src/sap/ui/core/cldr/en_IE.json +486 -448
- package/src/sap/ui/core/cldr/en_IN.json +466 -428
- package/src/sap/ui/core/cldr/en_NZ.json +506 -468
- package/src/sap/ui/core/cldr/en_PG.json +506 -468
- package/src/sap/ui/core/cldr/en_SG.json +506 -468
- package/src/sap/ui/core/cldr/en_ZA.json +486 -448
- package/src/sap/ui/core/cldr/es.json +473 -468
- package/src/sap/ui/core/cldr/es_AR.json +445 -440
- package/src/sap/ui/core/cldr/es_BO.json +479 -474
- package/src/sap/ui/core/cldr/es_CL.json +469 -464
- package/src/sap/ui/core/cldr/es_CO.json +387 -381
- package/src/sap/ui/core/cldr/es_MX.json +502 -497
- package/src/sap/ui/core/cldr/es_PE.json +455 -450
- package/src/sap/ui/core/cldr/es_UY.json +479 -474
- package/src/sap/ui/core/cldr/es_VE.json +499 -494
- package/src/sap/ui/core/cldr/et.json +378 -320
- package/src/sap/ui/core/cldr/fa.json +104 -104
- package/src/sap/ui/core/cldr/fi.json +401 -315
- package/src/sap/ui/core/cldr/fr.json +391 -385
- package/src/sap/ui/core/cldr/fr_BE.json +391 -385
- package/src/sap/ui/core/cldr/fr_CA.json +499 -493
- package/src/sap/ui/core/cldr/fr_CH.json +334 -328
- package/src/sap/ui/core/cldr/fr_LU.json +391 -385
- package/src/sap/ui/core/cldr/he.json +291 -159
- package/src/sap/ui/core/cldr/hi.json +157 -128
- package/src/sap/ui/core/cldr/hr.json +514 -461
- package/src/sap/ui/core/cldr/hu.json +287 -257
- package/src/sap/ui/core/cldr/id.json +463 -416
- package/src/sap/ui/core/cldr/it.json +468 -413
- package/src/sap/ui/core/cldr/it_CH.json +468 -413
- package/src/sap/ui/core/cldr/ja.json +98 -61
- package/src/sap/ui/core/cldr/kk.json +631 -571
- package/src/sap/ui/core/cldr/ko.json +79 -71
- package/src/sap/ui/core/cldr/lt.json +361 -270
- package/src/sap/ui/core/cldr/lv.json +234 -242
- package/src/sap/ui/core/cldr/ms.json +463 -408
- package/src/sap/ui/core/cldr/nb.json +176 -143
- package/src/sap/ui/core/cldr/nl.json +463 -393
- package/src/sap/ui/core/cldr/nl_BE.json +463 -393
- package/src/sap/ui/core/cldr/pl.json +633 -344
- package/src/sap/ui/core/cldr/pt.json +447 -336
- package/src/sap/ui/core/cldr/pt_PT.json +488 -449
- package/src/sap/ui/core/cldr/ro.json +477 -383
- package/src/sap/ui/core/cldr/ru.json +367 -332
- package/src/sap/ui/core/cldr/ru_UA.json +361 -326
- package/src/sap/ui/core/cldr/sk.json +502 -537
- package/src/sap/ui/core/cldr/sl.json +168 -161
- package/src/sap/ui/core/cldr/sr.json +276 -225
- package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
- package/src/sap/ui/core/cldr/sv.json +420 -346
- package/src/sap/ui/core/cldr/th.json +117 -94
- package/src/sap/ui/core/cldr/tr.json +413 -359
- package/src/sap/ui/core/cldr/uk.json +395 -368
- package/src/sap/ui/core/cldr/vi.json +392 -379
- package/src/sap/ui/core/cldr/zh_CN.json +91 -33
- package/src/sap/ui/core/cldr/zh_HK.json +90 -32
- package/src/sap/ui/core/cldr/zh_SG.json +90 -32
- package/src/sap/ui/core/cldr/zh_TW.json +75 -51
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
- package/src/sap/ui/core/date/Islamic.js +4 -4
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/_Calendars.js +5 -2
- 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 +3 -2
- 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 +33 -21
- package/src/sap/ui/core/format/NumberFormat.js +3 -2
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +128 -8
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +2 -2
- package/src/sap/ui/core/message/MessageManager.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/message/MessageType.js +2 -1
- package/src/sap/ui/core/messagebundle.properties +24 -0
- package/src/sap/ui/core/messagebundle_ar.properties +15 -3
- package/src/sap/ui/core/messagebundle_bg.properties +14 -2
- package/src/sap/ui/core/messagebundle_ca.properties +13 -1
- package/src/sap/ui/core/messagebundle_cs.properties +15 -3
- package/src/sap/ui/core/messagebundle_cy.properties +16 -4
- package/src/sap/ui/core/messagebundle_da.properties +15 -3
- package/src/sap/ui/core/messagebundle_de.properties +15 -3
- package/src/sap/ui/core/messagebundle_el.properties +16 -4
- package/src/sap/ui/core/messagebundle_en.properties +12 -0
- package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
- package/src/sap/ui/core/messagebundle_es.properties +15 -3
- package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
- package/src/sap/ui/core/messagebundle_et.properties +15 -3
- package/src/sap/ui/core/messagebundle_fi.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
- package/src/sap/ui/core/messagebundle_hi.properties +16 -4
- package/src/sap/ui/core/messagebundle_hr.properties +14 -2
- package/src/sap/ui/core/messagebundle_hu.properties +16 -4
- package/src/sap/ui/core/messagebundle_id.properties +15 -3
- package/src/sap/ui/core/messagebundle_it.properties +17 -5
- package/src/sap/ui/core/messagebundle_iw.properties +15 -3
- package/src/sap/ui/core/messagebundle_ja.properties +25 -13
- package/src/sap/ui/core/messagebundle_kk.properties +15 -3
- package/src/sap/ui/core/messagebundle_ko.properties +14 -2
- package/src/sap/ui/core/messagebundle_lt.properties +15 -3
- package/src/sap/ui/core/messagebundle_lv.properties +15 -3
- package/src/sap/ui/core/messagebundle_mk.properties +352 -0
- package/src/sap/ui/core/messagebundle_ms.properties +15 -3
- package/src/sap/ui/core/messagebundle_nl.properties +15 -3
- package/src/sap/ui/core/messagebundle_no.properties +14 -2
- package/src/sap/ui/core/messagebundle_pl.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
- package/src/sap/ui/core/messagebundle_ro.properties +15 -3
- package/src/sap/ui/core/messagebundle_ru.properties +15 -3
- package/src/sap/ui/core/messagebundle_sh.properties +43 -31
- package/src/sap/ui/core/messagebundle_sk.properties +16 -4
- package/src/sap/ui/core/messagebundle_sl.properties +15 -3
- package/src/sap/ui/core/messagebundle_sv.properties +22 -10
- package/src/sap/ui/core/messagebundle_th.properties +15 -3
- package/src/sap/ui/core/messagebundle_tr.properties +15 -3
- package/src/sap/ui/core/messagebundle_uk.properties +18 -6
- package/src/sap/ui/core/messagebundle_vi.properties +18 -6
- package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
- package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
- package/src/sap/ui/core/mvc/Controller.js +22 -16
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +1 -1
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +4 -1
- package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +25 -15
- package/src/sap/ui/core/mvc/ViewType.js +2 -0
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
- package/src/sap/ui/core/plugin/LessSupport.js +3 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Router.js +2 -4
- package/src/sap/ui/core/routing/Target.js +1 -3
- package/src/sap/ui/core/routing/Targets.js +2 -3
- package/src/sap/ui/core/routing/Views.js +2 -3
- package/src/sap/ui/core/routing/async/Target.js +1 -1
- package/src/sap/ui/core/rules/Config.support.js +11 -17
- package/src/sap/ui/core/search/OpenSearchProvider.js +2 -1
- package/src/sap/ui/core/search/SearchProvider.js +2 -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/Hotkeys.js +5 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
- package/src/sap/ui/core/support/Support.js +3 -5
- package/src/sap/ui/core/support/ToolsAPI.js +15 -11
- package/src/sap/ui/core/support/plugins/ControlTree.js +2 -2
- package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +7 -5
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
- package/src/sap/ui/core/syncStyleClass.js +2 -2
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +9 -9
- package/src/sap/ui/core/theming/Parameters.js +18 -19
- package/src/sap/ui/core/theming/ThemeManager.js +23 -4
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
- package/src/sap/ui/core/util/_LocalizationHelper.js +122 -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 +4 -4
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +29 -7
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +9 -4
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +9 -4
- 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 +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +15 -5
- package/src/sap/ui/model/ListBinding.js +5 -0
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +14 -8
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/TreeBinding.js +3 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
- package/src/sap/ui/model/json/JSONListBinding.js +3 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
- package/src/sap/ui/model/message/MessageListBinding.js +3 -0
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +8 -2
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +9 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +40 -15
- package/src/sap/ui/model/odata/v2/ODataModel.js +26 -62
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +38 -4
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +3 -0
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +2 -2
- package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
- package/src/sap/ui/model/resource/ResourceModel.js +5 -6
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
- package/src/sap/ui/performance/BeaconRequest.js +2 -2
- package/src/sap/ui/performance/trace/Interaction.js +20 -16
- package/src/sap/ui/qunit/QUnitUtils.js +64 -45
- package/src/sap/ui/qunit/qunit-coverage.js +6 -0
- package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/security/Security.js +128 -0
- package/src/sap/ui/test/BlanketReporter.js +2 -3
- package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
- package/src/sap/ui/test/BranchTracking.js +2 -3
- package/src/sap/ui/test/ModuleTracking.js +48 -20
- package/src/sap/ui/test/OpaExtension.js +3 -3
- package/src/sap/ui/test/OpaPlugin.js +16 -6
- package/src/sap/ui/test/TestUtils.js +7 -4
- package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
- package/src/sap/ui/test/_ControlFinder.js +3 -2
- package/src/sap/ui/test/_LogCollector.js +1 -0
- package/src/sap/ui/test/_UsageReport.js +115 -114
- package/src/sap/ui/test/actions/EnterText.js +24 -2
- package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
- package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
- package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
- package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +1 -1
- package/src/sap/ui/test/matchers/LabelFor.js +2 -12
- package/src/sap/ui/test/matchers/Matcher.js +1 -1
- package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
- package/src/sap/ui/test/selectors/_Selector.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +84 -11
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/manifest.json +3 -10
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/tutorial/databinding/01/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/01/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/01/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/02/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/03/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/04/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/05/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/Component.js +9 -27
- package/test/sap/ui/core/demokit/tutorial/databinding/06/manifest.json +22 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/07/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/08/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/09/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/10/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/11/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/12/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/13/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/14/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/Component.js +9 -32
- package/test/sap/ui/core/demokit/tutorial/databinding/15/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/navigation/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/Component.js +9 -35
- package/test/sap/ui/core/demokit/tutorial/navigation/02/manifest.json +30 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/Component.js +9 -37
- package/test/sap/ui/core/demokit/tutorial/navigation/03/manifest.json +32 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/04/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/05/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/Component.js +9 -40
- package/test/sap/ui/core/demokit/tutorial/navigation/06/manifest.json +35 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/Component.js +9 -42
- package/test/sap/ui/core/demokit/tutorial/navigation/07/manifest.json +37 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/08/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/09/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/Component.js +9 -47
- package/test/sap/ui/core/demokit/tutorial/navigation/10/manifest.json +42 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/11/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/12/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/13/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/14/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/15/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/16/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/17/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
- package/test/sap/ui/core/qunit/ClientModel.qunit.js +28 -28
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
- package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
- package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
- package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
- package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
- package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
- package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Lib.qunit.js +64 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +90 -4
- package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
- package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
- package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
- package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +49 -30
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
- package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
- package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
- package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
- package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
- package/test/sap/ui/core/qunit/component/Component.qunit.js +100 -7
- package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
- package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
- package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
- package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
- package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +7 -4
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
- package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
- package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
- package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
- package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
- package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +5 -2
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +5 -2
- package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
- package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +68 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +46 -2
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
- package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
- package/test/sap/ui/core/qunit/odata/ODataModel_legacyAPIs.qunit.js +22 -22
- package/test/sap/ui/core/qunit/odata/ODataTreeBindingAdapter.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +52 -29
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +8 -15
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +211 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +32 -36
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +19 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1896 -407
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +66 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
- package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +11 -2
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +4 -7
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
- package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
- package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
- package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
- package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
- package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
- package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
- package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
- package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
- package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
- package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
- package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
- package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
- package/test/sap/ui/core/relnotes/changes-1.120.json +442 -0
- package/test/sap/ui/core/terminologies/App.controller.js +2 -3
- package/test/sap/ui/core/terminologies/main.js +2 -3
- package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
- package/src/sap/ui/core/ConfigTest.js +0 -17
- package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
- package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
- package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
- package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
- package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
|
@@ -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": "43.0.0",
|
|
4
|
+
"__buildtime": "2023-09-28T11:39:07.908Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "afar",
|
|
7
7
|
"ab": "abkhasisk",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"am": "amharisk",
|
|
22
22
|
"an": "aragonesisk",
|
|
23
23
|
"ang": "oldengelsk",
|
|
24
|
+
"ann": "obolo",
|
|
24
25
|
"anp": "angika",
|
|
25
26
|
"ar": "arabisk",
|
|
26
27
|
"ar_001": "moderne standardarabisk",
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
"as": "assamesisk",
|
|
34
35
|
"asa": "asu",
|
|
35
36
|
"ast": "asturisk",
|
|
37
|
+
"atj": "atikamekw",
|
|
36
38
|
"av": "avarisk",
|
|
37
39
|
"awa": "awadhi",
|
|
38
40
|
"ay": "aymara",
|
|
@@ -44,7 +46,7 @@
|
|
|
44
46
|
"bas": "basaa",
|
|
45
47
|
"bax": "bamun",
|
|
46
48
|
"bbj": "ghomala",
|
|
47
|
-
"be": "
|
|
49
|
+
"be": "belarusisk",
|
|
48
50
|
"bej": "beja",
|
|
49
51
|
"bem": "bemba",
|
|
50
52
|
"bez": "bena",
|
|
@@ -92,13 +94,21 @@
|
|
|
92
94
|
"ckb": "sorani",
|
|
93
95
|
"ckb_alt-menu": "kurdisk, sorani",
|
|
94
96
|
"ckb_alt-variant": "centralkurdisk",
|
|
97
|
+
"clc": "chilcotin",
|
|
95
98
|
"co": "korsikansk",
|
|
96
99
|
"cop": "koptisk",
|
|
97
100
|
"cr": "cree",
|
|
101
|
+
"crg": "michif",
|
|
98
102
|
"crh": "krimtatarisk",
|
|
103
|
+
"crj": "sydøstcree",
|
|
104
|
+
"crk": "plains cree",
|
|
105
|
+
"crl": "nordøstcree",
|
|
106
|
+
"crm": "Moose-cree",
|
|
107
|
+
"crr": "carolina algonquisk",
|
|
99
108
|
"crs": "seselwa (kreol-fransk)",
|
|
100
109
|
"cs": "tjekkisk",
|
|
101
110
|
"csb": "kasjubisk",
|
|
111
|
+
"csw": "swampy cree",
|
|
102
112
|
"cu": "kirkeslavisk",
|
|
103
113
|
"cv": "chuvash",
|
|
104
114
|
"cy": "walisisk",
|
|
@@ -193,8 +203,10 @@
|
|
|
193
203
|
"hai": "haida",
|
|
194
204
|
"hak": "hakka-kinesisk",
|
|
195
205
|
"haw": "hawaiiansk",
|
|
206
|
+
"hax": "sydhaida",
|
|
196
207
|
"he": "hebraisk",
|
|
197
208
|
"hi": "hindi",
|
|
209
|
+
"hi_Latn-alt-variant": "hinglish",
|
|
198
210
|
"hil": "hiligaynon",
|
|
199
211
|
"hit": "hittitisk",
|
|
200
212
|
"hmn": "hmong",
|
|
@@ -205,6 +217,7 @@
|
|
|
205
217
|
"ht": "haitisk",
|
|
206
218
|
"hu": "ungarsk",
|
|
207
219
|
"hup": "hupa",
|
|
220
|
+
"hur": "halkomelem",
|
|
208
221
|
"hy": "armensk",
|
|
209
222
|
"hz": "herero",
|
|
210
223
|
"ia": "interlingua",
|
|
@@ -215,6 +228,7 @@
|
|
|
215
228
|
"ig": "igbo",
|
|
216
229
|
"ii": "sichuan yi",
|
|
217
230
|
"ik": "inupiaq",
|
|
231
|
+
"ikt": "vestcanadisk inuktitut",
|
|
218
232
|
"ilo": "iloko",
|
|
219
233
|
"inh": "ingush",
|
|
220
234
|
"io": "ido",
|
|
@@ -242,7 +256,7 @@
|
|
|
242
256
|
"kea": "kapverdisk",
|
|
243
257
|
"kfo": "koro",
|
|
244
258
|
"kg": "kongo",
|
|
245
|
-
"kgp": "
|
|
259
|
+
"kgp": "kaingang",
|
|
246
260
|
"kha": "khasi",
|
|
247
261
|
"kho": "khotanesisk",
|
|
248
262
|
"khq": "koyra-chiini",
|
|
@@ -273,6 +287,7 @@
|
|
|
273
287
|
"kut": "kutenaj",
|
|
274
288
|
"kv": "komi",
|
|
275
289
|
"kw": "cornisk",
|
|
290
|
+
"kwk": "kwakʼwala",
|
|
276
291
|
"ky": "kirgisisk",
|
|
277
292
|
"la": "latin",
|
|
278
293
|
"lad": "ladino",
|
|
@@ -283,7 +298,7 @@
|
|
|
283
298
|
"lez": "lezghian",
|
|
284
299
|
"lg": "ganda",
|
|
285
300
|
"li": "limburgsk",
|
|
286
|
-
"
|
|
301
|
+
"lil": "lillooet",
|
|
287
302
|
"lkt": "lakota",
|
|
288
303
|
"ln": "lingala",
|
|
289
304
|
"lo": "lao",
|
|
@@ -291,6 +306,7 @@
|
|
|
291
306
|
"lou": "Louisiana-kreolsk",
|
|
292
307
|
"loz": "lozi",
|
|
293
308
|
"lrc": "nordluri",
|
|
309
|
+
"lsm": "saamia",
|
|
294
310
|
"lt": "litauisk",
|
|
295
311
|
"lu": "luba-Katanga",
|
|
296
312
|
"lua": "luba-Lulua",
|
|
@@ -326,6 +342,7 @@
|
|
|
326
342
|
"mn": "mongolsk",
|
|
327
343
|
"mnc": "manchu",
|
|
328
344
|
"mni": "manipuri",
|
|
345
|
+
"moe": "innu-aimun",
|
|
329
346
|
"moh": "mohawk",
|
|
330
347
|
"mos": "mossi",
|
|
331
348
|
"mr": "marathisk",
|
|
@@ -347,13 +364,12 @@
|
|
|
347
364
|
"nb": "bokmål",
|
|
348
365
|
"nd": "nordndebele",
|
|
349
366
|
"nds": "nedertysk",
|
|
350
|
-
"nds_NL": "nedertysk (Holland)",
|
|
351
367
|
"ne": "nepalesisk",
|
|
352
368
|
"new": "newari",
|
|
353
369
|
"ng": "ndonga",
|
|
354
370
|
"nia": "nias",
|
|
355
371
|
"niu": "niueansk",
|
|
356
|
-
"nl": "
|
|
372
|
+
"nl": "nederlandsk",
|
|
357
373
|
"nl_BE": "flamsk",
|
|
358
374
|
"nmg": "kwasio",
|
|
359
375
|
"nn": "nynorsk",
|
|
@@ -374,6 +390,11 @@
|
|
|
374
390
|
"nzi": "nzima",
|
|
375
391
|
"oc": "occitansk",
|
|
376
392
|
"oj": "ojibwa",
|
|
393
|
+
"ojb": "nordvestojibwa",
|
|
394
|
+
"ojc": "centralojibwa",
|
|
395
|
+
"ojs": "oji-cree",
|
|
396
|
+
"ojw": "vestojibwa",
|
|
397
|
+
"oka": "okanagan",
|
|
377
398
|
"om": "oromo",
|
|
378
399
|
"or": "oriya",
|
|
379
400
|
"os": "ossetisk",
|
|
@@ -389,8 +410,10 @@
|
|
|
389
410
|
"peo": "oldpersisk",
|
|
390
411
|
"phn": "fønikisk",
|
|
391
412
|
"pi": "pali",
|
|
413
|
+
"pis": "pijin",
|
|
392
414
|
"pl": "polsk",
|
|
393
415
|
"pon": "ponape",
|
|
416
|
+
"pqm": "maliseet-passamaquoddy",
|
|
394
417
|
"prg": "preussisk",
|
|
395
418
|
"pro": "oldprovencalsk",
|
|
396
419
|
"ps": "pashto",
|
|
@@ -443,6 +466,7 @@
|
|
|
443
466
|
"sid": "sidamo",
|
|
444
467
|
"sk": "slovakisk",
|
|
445
468
|
"sl": "slovensk",
|
|
469
|
+
"slh": "sydlushootseed",
|
|
446
470
|
"sm": "samoansk",
|
|
447
471
|
"sma": "sydsamisk",
|
|
448
472
|
"smj": "lulesamisk",
|
|
@@ -459,6 +483,7 @@
|
|
|
459
483
|
"ss": "swati",
|
|
460
484
|
"ssy": "saho",
|
|
461
485
|
"st": "sydsotho",
|
|
486
|
+
"str": "straits salish",
|
|
462
487
|
"su": "sundanesisk",
|
|
463
488
|
"suk": "sukuma",
|
|
464
489
|
"sus": "susu",
|
|
@@ -470,13 +495,16 @@
|
|
|
470
495
|
"syc": "klassisk syrisk",
|
|
471
496
|
"syr": "syrisk",
|
|
472
497
|
"ta": "tamil",
|
|
498
|
+
"tce": "sydtutchone",
|
|
473
499
|
"te": "telugu",
|
|
474
500
|
"tem": "temne",
|
|
475
501
|
"teo": "teso",
|
|
476
502
|
"ter": "tereno",
|
|
477
503
|
"tet": "tetum",
|
|
478
504
|
"tg": "tadsjikisk",
|
|
505
|
+
"tgx": "tagish",
|
|
479
506
|
"th": "thai",
|
|
507
|
+
"tht": "tahltan",
|
|
480
508
|
"ti": "tigrinya",
|
|
481
509
|
"tig": "tigre",
|
|
482
510
|
"tiv": "tivi",
|
|
@@ -489,12 +517,14 @@
|
|
|
489
517
|
"tn": "tswana",
|
|
490
518
|
"to": "tongansk",
|
|
491
519
|
"tog": "nyasa tongansk",
|
|
520
|
+
"tok": "toki pona",
|
|
492
521
|
"tpi": "tok pisin",
|
|
493
522
|
"tr": "tyrkisk",
|
|
494
523
|
"trv": "taroko",
|
|
495
524
|
"ts": "tsonga",
|
|
496
525
|
"tsi": "tsimshisk",
|
|
497
526
|
"tt": "tatarisk",
|
|
527
|
+
"ttm": "nordtutchone",
|
|
498
528
|
"tum": "tumbuka",
|
|
499
529
|
"tvl": "tuvaluansk",
|
|
500
530
|
"tw": "twi",
|
|
@@ -534,7 +564,7 @@
|
|
|
534
564
|
"ybb": "yemba",
|
|
535
565
|
"yi": "jiddisch",
|
|
536
566
|
"yo": "yoruba",
|
|
537
|
-
"yrl": "
|
|
567
|
+
"yrl": "nheengatu",
|
|
538
568
|
"yue": "kantonesisk",
|
|
539
569
|
"yue_alt-menu": "kantonesisk (Kina)",
|
|
540
570
|
"za": "zhuang",
|
|
@@ -554,10 +584,8 @@
|
|
|
554
584
|
"zza": "zaza"
|
|
555
585
|
},
|
|
556
586
|
"scripts": {
|
|
557
|
-
"Adlm": "
|
|
587
|
+
"Adlm": "adlam",
|
|
558
588
|
"Afak": "afaka",
|
|
559
|
-
"Aghb": "Aghb",
|
|
560
|
-
"Ahom": "Ahom",
|
|
561
589
|
"Arab": "arabisk",
|
|
562
590
|
"Arab-alt-variant": "persisk-arabisk",
|
|
563
591
|
"Aran": "nastaliq",
|
|
@@ -569,41 +597,32 @@
|
|
|
569
597
|
"Bass": "bassa",
|
|
570
598
|
"Batk": "batak",
|
|
571
599
|
"Beng": "bengali",
|
|
572
|
-
"Bhks": "Bhks",
|
|
573
600
|
"Blis": "blissymboler",
|
|
574
601
|
"Bopo": "bopomofo",
|
|
575
602
|
"Brah": "bramisk",
|
|
576
603
|
"Brai": "punktskrift",
|
|
577
604
|
"Bugi": "buginesisk",
|
|
578
605
|
"Buhd": "buhid",
|
|
579
|
-
"Cakm": "
|
|
606
|
+
"Cakm": "chakma",
|
|
580
607
|
"Cans": "oprindelige canadiske symboler",
|
|
581
608
|
"Cari": "kariansk",
|
|
582
609
|
"Cham": "cham",
|
|
583
610
|
"Cher": "cherokee",
|
|
584
|
-
"Chrs": "Chrs",
|
|
585
611
|
"Cirt": "cirt",
|
|
586
612
|
"Copt": "koptisk",
|
|
587
|
-
"Cpmn": "Cpmn",
|
|
588
613
|
"Cprt": "cypriotisk",
|
|
589
614
|
"Cyrl": "kyrillisk",
|
|
590
615
|
"Cyrs": "kyrillisk - oldkirkeslavisk variant",
|
|
591
616
|
"Deva": "devanagari",
|
|
592
|
-
"Diak": "Diak",
|
|
593
|
-
"Dogr": "Dogr",
|
|
594
617
|
"Dsrt": "deseret",
|
|
595
618
|
"Dupl": "Duploya-stenografi",
|
|
596
619
|
"Egyd": "egyptisk demotisk",
|
|
597
620
|
"Egyh": "egyptisk hieratisk",
|
|
598
621
|
"Egyp": "egyptiske hieroglyffer",
|
|
599
|
-
"Elba": "Elba",
|
|
600
|
-
"Elym": "Elym",
|
|
601
622
|
"Ethi": "etiopisk",
|
|
602
623
|
"Geok": "georgisk kutsuri",
|
|
603
624
|
"Geor": "georgisk",
|
|
604
625
|
"Glag": "glagolitisk",
|
|
605
|
-
"Gong": "Gong",
|
|
606
|
-
"Gonm": "Gonm",
|
|
607
626
|
"Goth": "gotisk",
|
|
608
627
|
"Gran": "grantha",
|
|
609
628
|
"Grek": "græsk",
|
|
@@ -617,12 +636,10 @@
|
|
|
617
636
|
"Hans-alt-stand-alone": "forenklet han",
|
|
618
637
|
"Hant": "traditionelt",
|
|
619
638
|
"Hant-alt-stand-alone": "traditionelt han",
|
|
620
|
-
"Hatr": "Hatr",
|
|
621
639
|
"Hebr": "hebraisk",
|
|
622
640
|
"Hira": "hiragana",
|
|
623
641
|
"Hluw": "anatolske hieroglyffer",
|
|
624
642
|
"Hmng": "pahawh hmong",
|
|
625
|
-
"Hmnp": "Hmnp",
|
|
626
643
|
"Hrkt": "japanske skrifttegn",
|
|
627
644
|
"Hung": "oldungarsk",
|
|
628
645
|
"Inds": "indus",
|
|
@@ -633,11 +650,9 @@
|
|
|
633
650
|
"Jurc": "jurchen",
|
|
634
651
|
"Kali": "kaya li",
|
|
635
652
|
"Kana": "katakana",
|
|
636
|
-
"Kawi": "Kawi",
|
|
637
653
|
"Khar": "kharoshti",
|
|
638
654
|
"Khmr": "khmer",
|
|
639
655
|
"Khoj": "khojki",
|
|
640
|
-
"Kits": "Kits",
|
|
641
656
|
"Knda": "kannada",
|
|
642
657
|
"Kore": "koreansk",
|
|
643
658
|
"Kpel": "kpelle",
|
|
@@ -655,29 +670,20 @@
|
|
|
655
670
|
"Loma": "loma",
|
|
656
671
|
"Lyci": "lykisk",
|
|
657
672
|
"Lydi": "lydisk",
|
|
658
|
-
"Mahj": "Mahj",
|
|
659
|
-
"Maka": "Maka",
|
|
660
673
|
"Mand": "mandaisk",
|
|
661
674
|
"Mani": "manikæisk",
|
|
662
|
-
"Marc": "Marc",
|
|
663
675
|
"Maya": "mayahieroglyffer",
|
|
664
|
-
"Medf": "Medf",
|
|
665
676
|
"Mend": "mende",
|
|
666
677
|
"Merc": "metroitisk sammenhængende",
|
|
667
678
|
"Mero": "meroitisk",
|
|
668
679
|
"Mlym": "malayalam",
|
|
669
|
-
"Modi": "Modi",
|
|
670
680
|
"Mong": "mongolsk",
|
|
671
681
|
"Moon": "moon",
|
|
672
682
|
"Mroo": "mroo",
|
|
673
683
|
"Mtei": "meitei-mayek",
|
|
674
|
-
"Mult": "Mult",
|
|
675
684
|
"Mymr": "burmesisk",
|
|
676
|
-
"Nagm": "Nagm",
|
|
677
|
-
"Nand": "Nand",
|
|
678
685
|
"Narb": "gammelt nordarabisk",
|
|
679
686
|
"Nbat": "nabateisk",
|
|
680
|
-
"Newa": "Newa",
|
|
681
687
|
"Nkgb": "nakhi geba",
|
|
682
688
|
"Nkoo": "n’ko",
|
|
683
689
|
"Nshu": "nüshu",
|
|
@@ -685,11 +691,8 @@
|
|
|
685
691
|
"Olck": "ol-chiki",
|
|
686
692
|
"Orkh": "orkhon",
|
|
687
693
|
"Orya": "oriya",
|
|
688
|
-
"Osge": "Osge",
|
|
689
694
|
"Osma": "osmannisk",
|
|
690
|
-
"Ougr": "Ougr",
|
|
691
695
|
"Palm": "palmyrensk",
|
|
692
|
-
"Pauc": "Pauc",
|
|
693
696
|
"Perm": "oldpermisk",
|
|
694
697
|
"Phag": "phags-pa",
|
|
695
698
|
"Phli": "phli",
|
|
@@ -700,7 +703,7 @@
|
|
|
700
703
|
"Prti": "prti",
|
|
701
704
|
"Qaag": "zawgyi",
|
|
702
705
|
"Rjng": "rejang",
|
|
703
|
-
"Rohg": "
|
|
706
|
+
"Rohg": "hanifi",
|
|
704
707
|
"Roro": "rongo-rongo",
|
|
705
708
|
"Runr": "runer",
|
|
706
709
|
"Samr": "samaritansk",
|
|
@@ -710,13 +713,9 @@
|
|
|
710
713
|
"Sgnw": "tegnskrift",
|
|
711
714
|
"Shaw": "shavisk",
|
|
712
715
|
"Shrd": "sharada",
|
|
713
|
-
"Sidd": "Sidd",
|
|
714
716
|
"Sind": "khudawadi",
|
|
715
717
|
"Sinh": "singalesisk",
|
|
716
|
-
"Sogd": "Sogd",
|
|
717
|
-
"Sogo": "Sogo",
|
|
718
718
|
"Sora": "sora",
|
|
719
|
-
"Soyo": "Soyo",
|
|
720
719
|
"Sund": "sundanesisk",
|
|
721
720
|
"Sylo": "syloti nagri",
|
|
722
721
|
"Syrc": "syrisk",
|
|
@@ -738,20 +737,14 @@
|
|
|
738
737
|
"Thai": "thailandsk",
|
|
739
738
|
"Tibt": "tibetansk",
|
|
740
739
|
"Tirh": "tirhuta",
|
|
741
|
-
"Tnsa": "Tnsa",
|
|
742
|
-
"Toto": "Toto",
|
|
743
740
|
"Ugar": "ugaritisk",
|
|
744
741
|
"Vaii": "vai",
|
|
745
742
|
"Visp": "synlig tale",
|
|
746
|
-
"Vith": "Vith",
|
|
747
743
|
"Wara": "varang kshiti",
|
|
748
|
-
"Wcho": "Wcho",
|
|
749
744
|
"Wole": "woleai",
|
|
750
745
|
"Xpeo": "oldpersisk",
|
|
751
746
|
"Xsux": "sumero-akkadisk cuneiform",
|
|
752
|
-
"Yezi": "Yezi",
|
|
753
747
|
"Yiii": "yi",
|
|
754
|
-
"Zanb": "Zanb",
|
|
755
748
|
"Zinh": "arvet",
|
|
756
749
|
"Zmth": "matematisk notation",
|
|
757
750
|
"Zsye": "emoji",
|
|
@@ -828,7 +821,7 @@
|
|
|
828
821
|
"BT": "Bhutan",
|
|
829
822
|
"BV": "Bouvetøen",
|
|
830
823
|
"BW": "Botswana",
|
|
831
|
-
"BY": "
|
|
824
|
+
"BY": "Belarus",
|
|
832
825
|
"BZ": "Belize",
|
|
833
826
|
"CA": "Canada",
|
|
834
827
|
"CC": "Cocosøerne",
|
|
@@ -972,12 +965,13 @@
|
|
|
972
965
|
"NF": "Norfolk Island",
|
|
973
966
|
"NG": "Nigeria",
|
|
974
967
|
"NI": "Nicaragua",
|
|
975
|
-
"NL": "
|
|
968
|
+
"NL": "Nederlandene",
|
|
976
969
|
"NO": "Norge",
|
|
977
970
|
"NP": "Nepal",
|
|
978
971
|
"NR": "Nauru",
|
|
979
972
|
"NU": "Niue",
|
|
980
973
|
"NZ": "New Zealand",
|
|
974
|
+
"NZ-alt-variant": "Aotearoa New Zealand",
|
|
981
975
|
"OM": "Oman",
|
|
982
976
|
"PA": "Panama",
|
|
983
977
|
"PE": "Peru",
|
|
@@ -1037,6 +1031,7 @@
|
|
|
1037
1031
|
"TN": "Tunesien",
|
|
1038
1032
|
"TO": "Tonga",
|
|
1039
1033
|
"TR": "Tyrkiet",
|
|
1034
|
+
"TR-alt-variant": "Tyrkiet",
|
|
1040
1035
|
"TT": "Trinidad og Tobago",
|
|
1041
1036
|
"TV": "Tuvalu",
|
|
1042
1037
|
"TW": "Taiwan",
|
|
@@ -1084,8 +1079,8 @@
|
|
|
1084
1079
|
"short": "HH.mm"
|
|
1085
1080
|
},
|
|
1086
1081
|
"dateTimeFormats": {
|
|
1087
|
-
"full": "{1}
|
|
1088
|
-
"long": "{1}
|
|
1082
|
+
"full": "{1} {0}",
|
|
1083
|
+
"long": "{1} {0}",
|
|
1089
1084
|
"medium": "{1} {0}",
|
|
1090
1085
|
"short": "{1} {0}",
|
|
1091
1086
|
"availableFormats": {
|
|
@@ -1097,24 +1092,24 @@
|
|
|
1097
1092
|
"EBhm": "E h.mm B",
|
|
1098
1093
|
"EBhms": "E h.mm.ss B",
|
|
1099
1094
|
"Ed": "E 'den' d.",
|
|
1100
|
-
"Ehm": "E h.mm
|
|
1095
|
+
"Ehm": "E h.mm a",
|
|
1101
1096
|
"EHm": "E HH.mm",
|
|
1102
|
-
"Ehms": "E h.mm.ss
|
|
1097
|
+
"Ehms": "E h.mm.ss a",
|
|
1103
1098
|
"EHms": "E HH.mm.ss",
|
|
1104
1099
|
"Gy": "y G",
|
|
1105
1100
|
"GyMd": "d.M.y GGGGG",
|
|
1106
1101
|
"GyMMM": "MMM y G",
|
|
1107
1102
|
"GyMMMd": "d. MMM y G",
|
|
1108
1103
|
"GyMMMEd": "E d. MMM y G",
|
|
1109
|
-
"h": "h
|
|
1104
|
+
"h": "h a",
|
|
1110
1105
|
"H": "HH",
|
|
1111
|
-
"hm": "h.mm
|
|
1106
|
+
"hm": "h.mm a",
|
|
1112
1107
|
"Hm": "HH.mm",
|
|
1113
|
-
"hms": "h.mm.ss
|
|
1108
|
+
"hms": "h.mm.ss a",
|
|
1114
1109
|
"Hms": "HH.mm.ss",
|
|
1115
|
-
"hmsv": "h.mm.ss
|
|
1110
|
+
"hmsv": "h.mm.ss a v",
|
|
1116
1111
|
"Hmsv": "HH.mm.ss v",
|
|
1117
|
-
"hmv": "h.mm
|
|
1112
|
+
"hmv": "h.mm a v",
|
|
1118
1113
|
"Hmv": "HH.mm v",
|
|
1119
1114
|
"M": "M",
|
|
1120
1115
|
"Md": "d.M",
|
|
@@ -1168,7 +1163,7 @@
|
|
|
1168
1163
|
"d": "d.–d."
|
|
1169
1164
|
},
|
|
1170
1165
|
"Gy": {
|
|
1171
|
-
"G": "y G
|
|
1166
|
+
"G": "y G – y G",
|
|
1172
1167
|
"y": "y–y G"
|
|
1173
1168
|
},
|
|
1174
1169
|
"GyM": {
|
|
@@ -1206,33 +1201,33 @@
|
|
|
1206
1201
|
"y": "E d. MMM y–E d. MMM y G"
|
|
1207
1202
|
},
|
|
1208
1203
|
"h": {
|
|
1209
|
-
"a": "h
|
|
1210
|
-
"h": "h–h
|
|
1204
|
+
"a": "h a–h a",
|
|
1205
|
+
"h": "h–h a"
|
|
1211
1206
|
},
|
|
1212
1207
|
"H": {
|
|
1213
1208
|
"H": "HH–HH"
|
|
1214
1209
|
},
|
|
1215
1210
|
"hm": {
|
|
1216
|
-
"a": "h.mm
|
|
1217
|
-
"h": "h.mm–h.mm
|
|
1218
|
-
"m": "h.mm–h.mm
|
|
1211
|
+
"a": "h.mm a–h.mm a",
|
|
1212
|
+
"h": "h.mm–h.mm a",
|
|
1213
|
+
"m": "h.mm–h.mm a"
|
|
1219
1214
|
},
|
|
1220
1215
|
"Hm": {
|
|
1221
1216
|
"H": "HH.mm–HH.mm",
|
|
1222
1217
|
"m": "HH.mm–HH.mm"
|
|
1223
1218
|
},
|
|
1224
1219
|
"hmv": {
|
|
1225
|
-
"a": "h.mm
|
|
1226
|
-
"h": "h.mm–h.mm
|
|
1227
|
-
"m": "h.mm–h.mm
|
|
1220
|
+
"a": "h.mm a–h.mm a v",
|
|
1221
|
+
"h": "h.mm–h.mm a v",
|
|
1222
|
+
"m": "h.mm–h.mm a v"
|
|
1228
1223
|
},
|
|
1229
1224
|
"Hmv": {
|
|
1230
1225
|
"H": "HH.mm–HH.mm v",
|
|
1231
1226
|
"m": "HH.mm–HH.mm v"
|
|
1232
1227
|
},
|
|
1233
1228
|
"hv": {
|
|
1234
|
-
"a": "h
|
|
1235
|
-
"h": "h–h
|
|
1229
|
+
"a": "h a–h a v",
|
|
1230
|
+
"h": "h–h a v"
|
|
1236
1231
|
},
|
|
1237
1232
|
"Hv": {
|
|
1238
1233
|
"H": "HH–HH v"
|
|
@@ -1391,9 +1386,9 @@
|
|
|
1391
1386
|
"abbreviated": [
|
|
1392
1387
|
"søn.",
|
|
1393
1388
|
"man.",
|
|
1394
|
-
"
|
|
1389
|
+
"tirs.",
|
|
1395
1390
|
"ons.",
|
|
1396
|
-
"
|
|
1391
|
+
"tors.",
|
|
1397
1392
|
"fre.",
|
|
1398
1393
|
"lør."
|
|
1399
1394
|
],
|
|
@@ -1407,13 +1402,13 @@
|
|
|
1407
1402
|
"L"
|
|
1408
1403
|
],
|
|
1409
1404
|
"short": [
|
|
1410
|
-
"
|
|
1411
|
-
"ma",
|
|
1412
|
-
"ti",
|
|
1413
|
-
"on",
|
|
1414
|
-
"to",
|
|
1415
|
-
"fr",
|
|
1416
|
-
"
|
|
1405
|
+
"sø.",
|
|
1406
|
+
"ma.",
|
|
1407
|
+
"ti.",
|
|
1408
|
+
"on.",
|
|
1409
|
+
"to.",
|
|
1410
|
+
"fr.",
|
|
1411
|
+
"lø."
|
|
1417
1412
|
],
|
|
1418
1413
|
"wide": [
|
|
1419
1414
|
"søndag",
|
|
@@ -1427,13 +1422,13 @@
|
|
|
1427
1422
|
},
|
|
1428
1423
|
"stand-alone": {
|
|
1429
1424
|
"abbreviated": [
|
|
1430
|
-
"søn",
|
|
1431
|
-
"man",
|
|
1432
|
-
"
|
|
1433
|
-
"ons",
|
|
1434
|
-
"
|
|
1435
|
-
"fre",
|
|
1436
|
-
"lør"
|
|
1425
|
+
"søn.",
|
|
1426
|
+
"man.",
|
|
1427
|
+
"tirs.",
|
|
1428
|
+
"ons.",
|
|
1429
|
+
"tors.",
|
|
1430
|
+
"fre.",
|
|
1431
|
+
"lør."
|
|
1437
1432
|
],
|
|
1438
1433
|
"narrow": [
|
|
1439
1434
|
"S",
|
|
@@ -1445,13 +1440,13 @@
|
|
|
1445
1440
|
"L"
|
|
1446
1441
|
],
|
|
1447
1442
|
"short": [
|
|
1448
|
-
"
|
|
1449
|
-
"ma",
|
|
1450
|
-
"ti",
|
|
1451
|
-
"on",
|
|
1452
|
-
"to",
|
|
1453
|
-
"fr",
|
|
1454
|
-
"
|
|
1443
|
+
"sø.",
|
|
1444
|
+
"ma.",
|
|
1445
|
+
"ti.",
|
|
1446
|
+
"on.",
|
|
1447
|
+
"to.",
|
|
1448
|
+
"fr.",
|
|
1449
|
+
"lø."
|
|
1455
1450
|
],
|
|
1456
1451
|
"wide": [
|
|
1457
1452
|
"søndag",
|
|
@@ -1591,8 +1586,8 @@
|
|
|
1591
1586
|
}
|
|
1592
1587
|
},
|
|
1593
1588
|
"era-wide": {
|
|
1594
|
-
"0": "
|
|
1595
|
-
"1": "
|
|
1589
|
+
"0": "før Kristus",
|
|
1590
|
+
"1": "efter Kristus"
|
|
1596
1591
|
},
|
|
1597
1592
|
"era-abbreviated": {
|
|
1598
1593
|
"0": "f.Kr.",
|
|
@@ -1608,7 +1603,7 @@
|
|
|
1608
1603
|
"full": "EEEE d. MMMM y G",
|
|
1609
1604
|
"long": "d. MMMM y G",
|
|
1610
1605
|
"medium": "d. MMM y G",
|
|
1611
|
-
"short": "d
|
|
1606
|
+
"short": "d.M.y"
|
|
1612
1607
|
},
|
|
1613
1608
|
"timeFormats": {
|
|
1614
1609
|
"full": "HH.mm.ss zzzz",
|
|
@@ -1630,24 +1625,24 @@
|
|
|
1630
1625
|
"EBhm": "E h.mm B",
|
|
1631
1626
|
"EBhms": "E h.mm.ss B",
|
|
1632
1627
|
"Ed": "E 'd'. d.",
|
|
1633
|
-
"Ehm": "E h.mm
|
|
1628
|
+
"Ehm": "E h.mm a",
|
|
1634
1629
|
"EHm": "E HH.mm",
|
|
1635
|
-
"Ehms": "E h.mm.ss
|
|
1630
|
+
"Ehms": "E h.mm.ss a",
|
|
1636
1631
|
"EHms": "E HH.mm.ss",
|
|
1637
1632
|
"Gy": "y G",
|
|
1638
|
-
"GyMd": "d
|
|
1633
|
+
"GyMd": "d.M.y GGGGG",
|
|
1639
1634
|
"GyMMM": "MMM y G",
|
|
1640
1635
|
"GyMMMd": "d. MMM y G",
|
|
1641
1636
|
"GyMMMEd": "E d. MMM y G",
|
|
1642
|
-
"h": "h
|
|
1637
|
+
"h": "h a",
|
|
1643
1638
|
"H": "HH",
|
|
1644
|
-
"hm": "h.mm
|
|
1639
|
+
"hm": "h.mm a",
|
|
1645
1640
|
"Hm": "HH.mm",
|
|
1646
|
-
"hms": "h.mm.ss
|
|
1641
|
+
"hms": "h.mm.ss a",
|
|
1647
1642
|
"Hms": "HH.mm.ss",
|
|
1648
1643
|
"M": "M",
|
|
1649
|
-
"Md": "d
|
|
1650
|
-
"MEd": "E d
|
|
1644
|
+
"Md": "d.M",
|
|
1645
|
+
"MEd": "E d.M",
|
|
1651
1646
|
"MMM": "MMM",
|
|
1652
1647
|
"MMMd": "d. MMM",
|
|
1653
1648
|
"MMMEd": "E d. MMM",
|
|
@@ -1656,9 +1651,9 @@
|
|
|
1656
1651
|
"ms": "mm.ss",
|
|
1657
1652
|
"y": "y G",
|
|
1658
1653
|
"yyyy": "y G",
|
|
1659
|
-
"yyyyM": "M
|
|
1660
|
-
"yyyyMd": "d
|
|
1661
|
-
"yyyyMEd": "E d
|
|
1654
|
+
"yyyyM": "M.y G",
|
|
1655
|
+
"yyyyMd": "d.M.y G",
|
|
1656
|
+
"yyyyMEd": "E d.M.y G",
|
|
1662
1657
|
"yyyyMMM": "MMM y G",
|
|
1663
1658
|
"yyyyMMMd": "d. MMM y G",
|
|
1664
1659
|
"yyyyMMMEd": "E d. MMM y G",
|
|
@@ -1732,33 +1727,33 @@
|
|
|
1732
1727
|
"y": "E 'den' d. MMM y–E 'den' d. MMM y G"
|
|
1733
1728
|
},
|
|
1734
1729
|
"h": {
|
|
1735
|
-
"a": "h
|
|
1736
|
-
"h": "h–h
|
|
1730
|
+
"a": "h a – h a",
|
|
1731
|
+
"h": "h–h a"
|
|
1737
1732
|
},
|
|
1738
1733
|
"H": {
|
|
1739
1734
|
"H": "HH–HH"
|
|
1740
1735
|
},
|
|
1741
1736
|
"hm": {
|
|
1742
|
-
"a": "h.mm
|
|
1743
|
-
"h": "h.mm–h.mm
|
|
1744
|
-
"m": "h.mm–h.mm
|
|
1737
|
+
"a": "h.mm a – h.mm a",
|
|
1738
|
+
"h": "h.mm–h.mm a",
|
|
1739
|
+
"m": "h.mm–h.mm a"
|
|
1745
1740
|
},
|
|
1746
1741
|
"Hm": {
|
|
1747
1742
|
"H": "HH.mm–HH.mm",
|
|
1748
1743
|
"m": "HH.mm–HH.mm"
|
|
1749
1744
|
},
|
|
1750
1745
|
"hmv": {
|
|
1751
|
-
"a": "h.mm
|
|
1752
|
-
"h": "h.mm–h.mm
|
|
1753
|
-
"m": "h.mm–h.mm
|
|
1746
|
+
"a": "h.mm a – h.mm a v",
|
|
1747
|
+
"h": "h.mm–h.mm a v",
|
|
1748
|
+
"m": "h.mm–h.mm a v"
|
|
1754
1749
|
},
|
|
1755
1750
|
"Hmv": {
|
|
1756
1751
|
"H": "HH.mm–HH.mm v",
|
|
1757
1752
|
"m": "HH.mm–HH.mm v"
|
|
1758
1753
|
},
|
|
1759
1754
|
"hv": {
|
|
1760
|
-
"a": "h
|
|
1761
|
-
"h": "h–h
|
|
1755
|
+
"a": "h a – h a v",
|
|
1756
|
+
"h": "h–h a v"
|
|
1762
1757
|
},
|
|
1763
1758
|
"Hv": {
|
|
1764
1759
|
"H": "HH–HH v"
|
|
@@ -1917,9 +1912,9 @@
|
|
|
1917
1912
|
"abbreviated": [
|
|
1918
1913
|
"søn.",
|
|
1919
1914
|
"man.",
|
|
1920
|
-
"
|
|
1915
|
+
"tirs.",
|
|
1921
1916
|
"ons.",
|
|
1922
|
-
"
|
|
1917
|
+
"tors.",
|
|
1923
1918
|
"fre.",
|
|
1924
1919
|
"lør."
|
|
1925
1920
|
],
|
|
@@ -1933,13 +1928,13 @@
|
|
|
1933
1928
|
"L"
|
|
1934
1929
|
],
|
|
1935
1930
|
"short": [
|
|
1936
|
-
"
|
|
1937
|
-
"ma",
|
|
1938
|
-
"ti",
|
|
1939
|
-
"on",
|
|
1940
|
-
"to",
|
|
1941
|
-
"fr",
|
|
1942
|
-
"
|
|
1931
|
+
"sø.",
|
|
1932
|
+
"ma.",
|
|
1933
|
+
"ti.",
|
|
1934
|
+
"on.",
|
|
1935
|
+
"to.",
|
|
1936
|
+
"fr.",
|
|
1937
|
+
"lø."
|
|
1943
1938
|
],
|
|
1944
1939
|
"wide": [
|
|
1945
1940
|
"søndag",
|
|
@@ -1953,13 +1948,13 @@
|
|
|
1953
1948
|
},
|
|
1954
1949
|
"stand-alone": {
|
|
1955
1950
|
"abbreviated": [
|
|
1956
|
-
"søn",
|
|
1957
|
-
"man",
|
|
1958
|
-
"
|
|
1959
|
-
"ons",
|
|
1960
|
-
"
|
|
1961
|
-
"fre",
|
|
1962
|
-
"lør"
|
|
1951
|
+
"søn.",
|
|
1952
|
+
"man.",
|
|
1953
|
+
"tirs.",
|
|
1954
|
+
"ons.",
|
|
1955
|
+
"tors.",
|
|
1956
|
+
"fre.",
|
|
1957
|
+
"lør."
|
|
1963
1958
|
],
|
|
1964
1959
|
"narrow": [
|
|
1965
1960
|
"S",
|
|
@@ -1971,13 +1966,13 @@
|
|
|
1971
1966
|
"L"
|
|
1972
1967
|
],
|
|
1973
1968
|
"short": [
|
|
1974
|
-
"
|
|
1975
|
-
"ma",
|
|
1976
|
-
"ti",
|
|
1977
|
-
"on",
|
|
1978
|
-
"to",
|
|
1979
|
-
"fr",
|
|
1980
|
-
"
|
|
1969
|
+
"sø.",
|
|
1970
|
+
"ma.",
|
|
1971
|
+
"ti.",
|
|
1972
|
+
"on.",
|
|
1973
|
+
"to.",
|
|
1974
|
+
"fr.",
|
|
1975
|
+
"lø."
|
|
1981
1976
|
],
|
|
1982
1977
|
"wide": [
|
|
1983
1978
|
"søndag",
|
|
@@ -2153,24 +2148,24 @@
|
|
|
2153
2148
|
"EBhm": "E h.mm B",
|
|
2154
2149
|
"EBhms": "E h.mm.ss B",
|
|
2155
2150
|
"Ed": "E 'd'. d.",
|
|
2156
|
-
"Ehm": "E h.mm
|
|
2151
|
+
"Ehm": "E h.mm a",
|
|
2157
2152
|
"EHm": "E HH.mm",
|
|
2158
|
-
"Ehms": "E h.mm.ss
|
|
2153
|
+
"Ehms": "E h.mm.ss a",
|
|
2159
2154
|
"EHms": "E HH.mm.ss",
|
|
2160
2155
|
"Gy": "y G",
|
|
2161
|
-
"GyMd": "d
|
|
2156
|
+
"GyMd": "d.M.y GGGGG",
|
|
2162
2157
|
"GyMMM": "MMM y G",
|
|
2163
2158
|
"GyMMMd": "d. MMM y G",
|
|
2164
2159
|
"GyMMMEd": "E d. MMM y G",
|
|
2165
|
-
"h": "h
|
|
2160
|
+
"h": "h a",
|
|
2166
2161
|
"H": "HH",
|
|
2167
|
-
"hm": "h.mm
|
|
2162
|
+
"hm": "h.mm a",
|
|
2168
2163
|
"Hm": "HH.mm",
|
|
2169
|
-
"hms": "h.mm.ss
|
|
2164
|
+
"hms": "h.mm.ss a",
|
|
2170
2165
|
"Hms": "HH.mm.ss",
|
|
2171
2166
|
"M": "M",
|
|
2172
|
-
"Md": "d
|
|
2173
|
-
"MEd": "E d
|
|
2167
|
+
"Md": "d.M",
|
|
2168
|
+
"MEd": "E d.M",
|
|
2174
2169
|
"MMM": "MMM",
|
|
2175
2170
|
"MMMd": "d. MMM",
|
|
2176
2171
|
"MMMEd": "E d. MMM",
|
|
@@ -2179,9 +2174,9 @@
|
|
|
2179
2174
|
"ms": "mm.ss",
|
|
2180
2175
|
"y": "y G",
|
|
2181
2176
|
"yyyy": "y G",
|
|
2182
|
-
"yyyyM": "M
|
|
2183
|
-
"yyyyMd": "d
|
|
2184
|
-
"yyyyMEd": "E d
|
|
2177
|
+
"yyyyM": "M.y G",
|
|
2178
|
+
"yyyyMd": "d.M.y G",
|
|
2179
|
+
"yyyyMEd": "E d.M.y G",
|
|
2185
2180
|
"yyyyMMM": "MMM y G",
|
|
2186
2181
|
"yyyyMMMd": "d. MMM y G",
|
|
2187
2182
|
"yyyyMMMEd": "E d. MMM y G",
|
|
@@ -2255,33 +2250,33 @@
|
|
|
2255
2250
|
"y": "E 'den' d. MMM y–E 'den' d. MMM y G"
|
|
2256
2251
|
},
|
|
2257
2252
|
"h": {
|
|
2258
|
-
"a": "h
|
|
2259
|
-
"h": "h–h
|
|
2253
|
+
"a": "h a – h a",
|
|
2254
|
+
"h": "h–h a"
|
|
2260
2255
|
},
|
|
2261
2256
|
"H": {
|
|
2262
2257
|
"H": "HH–HH"
|
|
2263
2258
|
},
|
|
2264
2259
|
"hm": {
|
|
2265
|
-
"a": "h.mm
|
|
2266
|
-
"h": "h.mm–h.mm
|
|
2267
|
-
"m": "h.mm–h.mm
|
|
2260
|
+
"a": "h.mm a – h.mm a",
|
|
2261
|
+
"h": "h.mm–h.mm a",
|
|
2262
|
+
"m": "h.mm–h.mm a"
|
|
2268
2263
|
},
|
|
2269
2264
|
"Hm": {
|
|
2270
2265
|
"H": "HH.mm–HH.mm",
|
|
2271
2266
|
"m": "HH.mm–HH.mm"
|
|
2272
2267
|
},
|
|
2273
2268
|
"hmv": {
|
|
2274
|
-
"a": "h.mm
|
|
2275
|
-
"h": "h.mm–h.mm
|
|
2276
|
-
"m": "h.mm–h.mm
|
|
2269
|
+
"a": "h.mm a – h.mm a v",
|
|
2270
|
+
"h": "h.mm–h.mm a v",
|
|
2271
|
+
"m": "h.mm–h.mm a v"
|
|
2277
2272
|
},
|
|
2278
2273
|
"Hmv": {
|
|
2279
2274
|
"H": "HH.mm–HH.mm v",
|
|
2280
2275
|
"m": "HH.mm–HH.mm v"
|
|
2281
2276
|
},
|
|
2282
2277
|
"hv": {
|
|
2283
|
-
"a": "h
|
|
2284
|
-
"h": "h–h
|
|
2278
|
+
"a": "h a – h a v",
|
|
2279
|
+
"h": "h–h a v"
|
|
2285
2280
|
},
|
|
2286
2281
|
"Hv": {
|
|
2287
2282
|
"H": "HH–HH v"
|
|
@@ -2448,9 +2443,9 @@
|
|
|
2448
2443
|
"abbreviated": [
|
|
2449
2444
|
"søn.",
|
|
2450
2445
|
"man.",
|
|
2451
|
-
"
|
|
2446
|
+
"tirs.",
|
|
2452
2447
|
"ons.",
|
|
2453
|
-
"
|
|
2448
|
+
"tors.",
|
|
2454
2449
|
"fre.",
|
|
2455
2450
|
"lør."
|
|
2456
2451
|
],
|
|
@@ -2464,13 +2459,13 @@
|
|
|
2464
2459
|
"L"
|
|
2465
2460
|
],
|
|
2466
2461
|
"short": [
|
|
2467
|
-
"
|
|
2468
|
-
"ma",
|
|
2469
|
-
"ti",
|
|
2470
|
-
"on",
|
|
2471
|
-
"to",
|
|
2472
|
-
"fr",
|
|
2473
|
-
"
|
|
2462
|
+
"sø.",
|
|
2463
|
+
"ma.",
|
|
2464
|
+
"ti.",
|
|
2465
|
+
"on.",
|
|
2466
|
+
"to.",
|
|
2467
|
+
"fr.",
|
|
2468
|
+
"lø."
|
|
2474
2469
|
],
|
|
2475
2470
|
"wide": [
|
|
2476
2471
|
"søndag",
|
|
@@ -2484,13 +2479,13 @@
|
|
|
2484
2479
|
},
|
|
2485
2480
|
"stand-alone": {
|
|
2486
2481
|
"abbreviated": [
|
|
2487
|
-
"søn",
|
|
2488
|
-
"man",
|
|
2489
|
-
"
|
|
2490
|
-
"ons",
|
|
2491
|
-
"
|
|
2492
|
-
"fre",
|
|
2493
|
-
"lør"
|
|
2482
|
+
"søn.",
|
|
2483
|
+
"man.",
|
|
2484
|
+
"tirs.",
|
|
2485
|
+
"ons.",
|
|
2486
|
+
"tors.",
|
|
2487
|
+
"fre.",
|
|
2488
|
+
"lør."
|
|
2494
2489
|
],
|
|
2495
2490
|
"narrow": [
|
|
2496
2491
|
"S",
|
|
@@ -2502,13 +2497,13 @@
|
|
|
2502
2497
|
"L"
|
|
2503
2498
|
],
|
|
2504
2499
|
"short": [
|
|
2505
|
-
"
|
|
2506
|
-
"ma",
|
|
2507
|
-
"ti",
|
|
2508
|
-
"on",
|
|
2509
|
-
"to",
|
|
2510
|
-
"fr",
|
|
2511
|
-
"
|
|
2500
|
+
"sø.",
|
|
2501
|
+
"ma.",
|
|
2502
|
+
"ti.",
|
|
2503
|
+
"on.",
|
|
2504
|
+
"to.",
|
|
2505
|
+
"fr.",
|
|
2506
|
+
"lø."
|
|
2512
2507
|
],
|
|
2513
2508
|
"wide": [
|
|
2514
2509
|
"søndag",
|
|
@@ -2674,7 +2669,7 @@
|
|
|
2674
2669
|
"full": "EEEE d. MMMM y G",
|
|
2675
2670
|
"long": "d. MMMM y G",
|
|
2676
2671
|
"medium": "d. MMM y G",
|
|
2677
|
-
"short": "d
|
|
2672
|
+
"short": "d.M.y"
|
|
2678
2673
|
},
|
|
2679
2674
|
"timeFormats": {
|
|
2680
2675
|
"full": "HH.mm.ss zzzz",
|
|
@@ -2696,24 +2691,24 @@
|
|
|
2696
2691
|
"EBhm": "E h.mm B",
|
|
2697
2692
|
"EBhms": "E h.mm.ss B",
|
|
2698
2693
|
"Ed": "E 'd'. d.",
|
|
2699
|
-
"Ehm": "E h.mm
|
|
2694
|
+
"Ehm": "E h.mm a",
|
|
2700
2695
|
"EHm": "E HH.mm",
|
|
2701
|
-
"Ehms": "E h.mm.ss
|
|
2696
|
+
"Ehms": "E h.mm.ss a",
|
|
2702
2697
|
"EHms": "E HH.mm.ss",
|
|
2703
2698
|
"Gy": "y G",
|
|
2704
|
-
"GyMd": "d
|
|
2699
|
+
"GyMd": "d.M.y GGGGG",
|
|
2705
2700
|
"GyMMM": "MMM y G",
|
|
2706
2701
|
"GyMMMd": "d. MMM y G",
|
|
2707
2702
|
"GyMMMEd": "E d. MMM y G",
|
|
2708
|
-
"h": "h
|
|
2703
|
+
"h": "h a",
|
|
2709
2704
|
"H": "HH",
|
|
2710
|
-
"hm": "h.mm
|
|
2705
|
+
"hm": "h.mm a",
|
|
2711
2706
|
"Hm": "HH.mm",
|
|
2712
|
-
"hms": "h.mm.ss
|
|
2707
|
+
"hms": "h.mm.ss a",
|
|
2713
2708
|
"Hms": "HH.mm.ss",
|
|
2714
2709
|
"M": "M",
|
|
2715
|
-
"Md": "d
|
|
2716
|
-
"MEd": "E d
|
|
2710
|
+
"Md": "d.M",
|
|
2711
|
+
"MEd": "E d.M",
|
|
2717
2712
|
"MMM": "MMM",
|
|
2718
2713
|
"MMMd": "d. MMM",
|
|
2719
2714
|
"MMMEd": "E d. MMM",
|
|
@@ -2722,9 +2717,9 @@
|
|
|
2722
2717
|
"ms": "mm.ss",
|
|
2723
2718
|
"y": "y G",
|
|
2724
2719
|
"yyyy": "y G",
|
|
2725
|
-
"yyyyM": "M
|
|
2726
|
-
"yyyyMd": "d
|
|
2727
|
-
"yyyyMEd": "E d
|
|
2720
|
+
"yyyyM": "M.y G",
|
|
2721
|
+
"yyyyMd": "d.M.y G",
|
|
2722
|
+
"yyyyMEd": "E d.M.y G",
|
|
2728
2723
|
"yyyyMMM": "MMM y G",
|
|
2729
2724
|
"yyyyMMMd": "d. MMM y G",
|
|
2730
2725
|
"yyyyMMMEd": "E d. MMM y G",
|
|
@@ -2798,33 +2793,33 @@
|
|
|
2798
2793
|
"y": "E 'den' d. MMM y–E 'den' d. MMM y G"
|
|
2799
2794
|
},
|
|
2800
2795
|
"h": {
|
|
2801
|
-
"a": "h
|
|
2802
|
-
"h": "h–h
|
|
2796
|
+
"a": "h a – h a",
|
|
2797
|
+
"h": "h–h a"
|
|
2803
2798
|
},
|
|
2804
2799
|
"H": {
|
|
2805
2800
|
"H": "HH–HH"
|
|
2806
2801
|
},
|
|
2807
2802
|
"hm": {
|
|
2808
|
-
"a": "h.mm
|
|
2809
|
-
"h": "h.mm–h.mm
|
|
2810
|
-
"m": "h.mm–h.mm
|
|
2803
|
+
"a": "h.mm a – h.mm a",
|
|
2804
|
+
"h": "h.mm–h.mm a",
|
|
2805
|
+
"m": "h.mm–h.mm a"
|
|
2811
2806
|
},
|
|
2812
2807
|
"Hm": {
|
|
2813
2808
|
"H": "HH.mm–HH.mm",
|
|
2814
2809
|
"m": "HH.mm–HH.mm"
|
|
2815
2810
|
},
|
|
2816
2811
|
"hmv": {
|
|
2817
|
-
"a": "h.mm
|
|
2818
|
-
"h": "h.mm–h.mm
|
|
2819
|
-
"m": "h.mm–h.mm
|
|
2812
|
+
"a": "h.mm a – h.mm a v",
|
|
2813
|
+
"h": "h.mm–h.mm a v",
|
|
2814
|
+
"m": "h.mm–h.mm a v"
|
|
2820
2815
|
},
|
|
2821
2816
|
"Hmv": {
|
|
2822
2817
|
"H": "HH.mm–HH.mm v",
|
|
2823
2818
|
"m": "HH.mm–HH.mm v"
|
|
2824
2819
|
},
|
|
2825
2820
|
"hv": {
|
|
2826
|
-
"a": "h
|
|
2827
|
-
"h": "h–h
|
|
2821
|
+
"a": "h a – h a v",
|
|
2822
|
+
"h": "h–h a v"
|
|
2828
2823
|
},
|
|
2829
2824
|
"Hv": {
|
|
2830
2825
|
"H": "HH–HH v"
|
|
@@ -2983,9 +2978,9 @@
|
|
|
2983
2978
|
"abbreviated": [
|
|
2984
2979
|
"søn.",
|
|
2985
2980
|
"man.",
|
|
2986
|
-
"
|
|
2981
|
+
"tirs.",
|
|
2987
2982
|
"ons.",
|
|
2988
|
-
"
|
|
2983
|
+
"tors.",
|
|
2989
2984
|
"fre.",
|
|
2990
2985
|
"lør."
|
|
2991
2986
|
],
|
|
@@ -2999,13 +2994,13 @@
|
|
|
2999
2994
|
"L"
|
|
3000
2995
|
],
|
|
3001
2996
|
"short": [
|
|
3002
|
-
"
|
|
3003
|
-
"ma",
|
|
3004
|
-
"ti",
|
|
3005
|
-
"on",
|
|
3006
|
-
"to",
|
|
3007
|
-
"fr",
|
|
3008
|
-
"
|
|
2997
|
+
"sø.",
|
|
2998
|
+
"ma.",
|
|
2999
|
+
"ti.",
|
|
3000
|
+
"on.",
|
|
3001
|
+
"to.",
|
|
3002
|
+
"fr.",
|
|
3003
|
+
"lø."
|
|
3009
3004
|
],
|
|
3010
3005
|
"wide": [
|
|
3011
3006
|
"søndag",
|
|
@@ -3019,13 +3014,13 @@
|
|
|
3019
3014
|
},
|
|
3020
3015
|
"stand-alone": {
|
|
3021
3016
|
"abbreviated": [
|
|
3022
|
-
"søn",
|
|
3023
|
-
"man",
|
|
3024
|
-
"
|
|
3025
|
-
"ons",
|
|
3026
|
-
"
|
|
3027
|
-
"fre",
|
|
3028
|
-
"lør"
|
|
3017
|
+
"søn.",
|
|
3018
|
+
"man.",
|
|
3019
|
+
"tirs.",
|
|
3020
|
+
"ons.",
|
|
3021
|
+
"tors.",
|
|
3022
|
+
"fre.",
|
|
3023
|
+
"lør."
|
|
3029
3024
|
],
|
|
3030
3025
|
"narrow": [
|
|
3031
3026
|
"S",
|
|
@@ -3037,13 +3032,13 @@
|
|
|
3037
3032
|
"L"
|
|
3038
3033
|
],
|
|
3039
3034
|
"short": [
|
|
3040
|
-
"
|
|
3041
|
-
"ma",
|
|
3042
|
-
"ti",
|
|
3043
|
-
"on",
|
|
3044
|
-
"to",
|
|
3045
|
-
"fr",
|
|
3046
|
-
"
|
|
3035
|
+
"sø.",
|
|
3036
|
+
"ma.",
|
|
3037
|
+
"ti.",
|
|
3038
|
+
"on.",
|
|
3039
|
+
"to.",
|
|
3040
|
+
"fr.",
|
|
3041
|
+
"lø."
|
|
3047
3042
|
],
|
|
3048
3043
|
"wide": [
|
|
3049
3044
|
"søndag",
|
|
@@ -3197,7 +3192,7 @@
|
|
|
3197
3192
|
"full": "EEEE d. MMMM y G",
|
|
3198
3193
|
"long": "d. MMMM y G",
|
|
3199
3194
|
"medium": "d. MMM y G",
|
|
3200
|
-
"short": "d
|
|
3195
|
+
"short": "d.M.y"
|
|
3201
3196
|
},
|
|
3202
3197
|
"timeFormats": {
|
|
3203
3198
|
"full": "HH.mm.ss zzzz",
|
|
@@ -3219,24 +3214,24 @@
|
|
|
3219
3214
|
"EBhm": "E h.mm B",
|
|
3220
3215
|
"EBhms": "E h.mm.ss B",
|
|
3221
3216
|
"Ed": "E 'd'. d.",
|
|
3222
|
-
"Ehm": "E h.mm
|
|
3217
|
+
"Ehm": "E h.mm a",
|
|
3223
3218
|
"EHm": "E HH.mm",
|
|
3224
|
-
"Ehms": "E h.mm.ss
|
|
3219
|
+
"Ehms": "E h.mm.ss a",
|
|
3225
3220
|
"EHms": "E HH.mm.ss",
|
|
3226
3221
|
"Gy": "y G",
|
|
3227
|
-
"GyMd": "d
|
|
3222
|
+
"GyMd": "d.M.y GGGGG",
|
|
3228
3223
|
"GyMMM": "MMM y G",
|
|
3229
3224
|
"GyMMMd": "d. MMM y G",
|
|
3230
3225
|
"GyMMMEd": "E d. MMM y G",
|
|
3231
|
-
"h": "h
|
|
3226
|
+
"h": "h a",
|
|
3232
3227
|
"H": "HH",
|
|
3233
|
-
"hm": "h.mm
|
|
3228
|
+
"hm": "h.mm a",
|
|
3234
3229
|
"Hm": "HH.mm",
|
|
3235
|
-
"hms": "h.mm.ss
|
|
3230
|
+
"hms": "h.mm.ss a",
|
|
3236
3231
|
"Hms": "HH.mm.ss",
|
|
3237
3232
|
"M": "M",
|
|
3238
|
-
"Md": "d
|
|
3239
|
-
"MEd": "E d
|
|
3233
|
+
"Md": "d.M",
|
|
3234
|
+
"MEd": "E d.M",
|
|
3240
3235
|
"MMM": "MMM",
|
|
3241
3236
|
"MMMd": "d. MMM",
|
|
3242
3237
|
"MMMEd": "E d. MMM",
|
|
@@ -3245,9 +3240,9 @@
|
|
|
3245
3240
|
"ms": "mm.ss",
|
|
3246
3241
|
"y": "y G",
|
|
3247
3242
|
"yyyy": "y G",
|
|
3248
|
-
"yyyyM": "M
|
|
3249
|
-
"yyyyMd": "d
|
|
3250
|
-
"yyyyMEd": "E d
|
|
3243
|
+
"yyyyM": "M.y G",
|
|
3244
|
+
"yyyyMd": "d.M.y G",
|
|
3245
|
+
"yyyyMEd": "E d.M.y G",
|
|
3251
3246
|
"yyyyMMM": "MMM y G",
|
|
3252
3247
|
"yyyyMMMd": "d. MMM y G",
|
|
3253
3248
|
"yyyyMMMEd": "E d. MMM y G",
|
|
@@ -3321,33 +3316,33 @@
|
|
|
3321
3316
|
"y": "E 'den' d. MMM y–E 'den' d. MMM y G"
|
|
3322
3317
|
},
|
|
3323
3318
|
"h": {
|
|
3324
|
-
"a": "h
|
|
3325
|
-
"h": "h–h
|
|
3319
|
+
"a": "h a – h a",
|
|
3320
|
+
"h": "h–h a"
|
|
3326
3321
|
},
|
|
3327
3322
|
"H": {
|
|
3328
3323
|
"H": "HH–HH"
|
|
3329
3324
|
},
|
|
3330
3325
|
"hm": {
|
|
3331
|
-
"a": "h.mm
|
|
3332
|
-
"h": "h.mm–h.mm
|
|
3333
|
-
"m": "h.mm–h.mm
|
|
3326
|
+
"a": "h.mm a – h.mm a",
|
|
3327
|
+
"h": "h.mm–h.mm a",
|
|
3328
|
+
"m": "h.mm–h.mm a"
|
|
3334
3329
|
},
|
|
3335
3330
|
"Hm": {
|
|
3336
3331
|
"H": "HH.mm–HH.mm",
|
|
3337
3332
|
"m": "HH.mm–HH.mm"
|
|
3338
3333
|
},
|
|
3339
3334
|
"hmv": {
|
|
3340
|
-
"a": "h.mm
|
|
3341
|
-
"h": "h.mm–h.mm
|
|
3342
|
-
"m": "h.mm–h.mm
|
|
3335
|
+
"a": "h.mm a – h.mm a v",
|
|
3336
|
+
"h": "h.mm–h.mm a v",
|
|
3337
|
+
"m": "h.mm–h.mm a v"
|
|
3343
3338
|
},
|
|
3344
3339
|
"Hmv": {
|
|
3345
3340
|
"H": "HH.mm–HH.mm v",
|
|
3346
3341
|
"m": "HH.mm–HH.mm v"
|
|
3347
3342
|
},
|
|
3348
3343
|
"hv": {
|
|
3349
|
-
"a": "h
|
|
3350
|
-
"h": "h–h
|
|
3344
|
+
"a": "h a – h a v",
|
|
3345
|
+
"h": "h–h a v"
|
|
3351
3346
|
},
|
|
3352
3347
|
"Hv": {
|
|
3353
3348
|
"H": "HH–HH v"
|
|
@@ -3506,9 +3501,9 @@
|
|
|
3506
3501
|
"abbreviated": [
|
|
3507
3502
|
"søn.",
|
|
3508
3503
|
"man.",
|
|
3509
|
-
"
|
|
3504
|
+
"tirs.",
|
|
3510
3505
|
"ons.",
|
|
3511
|
-
"
|
|
3506
|
+
"tors.",
|
|
3512
3507
|
"fre.",
|
|
3513
3508
|
"lør."
|
|
3514
3509
|
],
|
|
@@ -3522,13 +3517,13 @@
|
|
|
3522
3517
|
"L"
|
|
3523
3518
|
],
|
|
3524
3519
|
"short": [
|
|
3525
|
-
"
|
|
3526
|
-
"ma",
|
|
3527
|
-
"ti",
|
|
3528
|
-
"on",
|
|
3529
|
-
"to",
|
|
3530
|
-
"fr",
|
|
3531
|
-
"
|
|
3520
|
+
"sø.",
|
|
3521
|
+
"ma.",
|
|
3522
|
+
"ti.",
|
|
3523
|
+
"on.",
|
|
3524
|
+
"to.",
|
|
3525
|
+
"fr.",
|
|
3526
|
+
"lø."
|
|
3532
3527
|
],
|
|
3533
3528
|
"wide": [
|
|
3534
3529
|
"søndag",
|
|
@@ -3542,13 +3537,13 @@
|
|
|
3542
3537
|
},
|
|
3543
3538
|
"stand-alone": {
|
|
3544
3539
|
"abbreviated": [
|
|
3545
|
-
"søn",
|
|
3546
|
-
"man",
|
|
3547
|
-
"
|
|
3548
|
-
"ons",
|
|
3549
|
-
"
|
|
3550
|
-
"fre",
|
|
3551
|
-
"lør"
|
|
3540
|
+
"søn.",
|
|
3541
|
+
"man.",
|
|
3542
|
+
"tirs.",
|
|
3543
|
+
"ons.",
|
|
3544
|
+
"tors.",
|
|
3545
|
+
"fre.",
|
|
3546
|
+
"lør."
|
|
3552
3547
|
],
|
|
3553
3548
|
"narrow": [
|
|
3554
3549
|
"S",
|
|
@@ -3560,13 +3555,13 @@
|
|
|
3560
3555
|
"L"
|
|
3561
3556
|
],
|
|
3562
3557
|
"short": [
|
|
3563
|
-
"
|
|
3564
|
-
"ma",
|
|
3565
|
-
"ti",
|
|
3566
|
-
"on",
|
|
3567
|
-
"to",
|
|
3568
|
-
"fr",
|
|
3569
|
-
"
|
|
3558
|
+
"sø.",
|
|
3559
|
+
"ma.",
|
|
3560
|
+
"ti.",
|
|
3561
|
+
"on.",
|
|
3562
|
+
"to.",
|
|
3563
|
+
"fr.",
|
|
3564
|
+
"lø."
|
|
3570
3565
|
],
|
|
3571
3566
|
"wide": [
|
|
3572
3567
|
"søndag",
|
|
@@ -4150,6 +4145,7 @@
|
|
|
4150
4145
|
"Cayman": "Caymanøerne",
|
|
4151
4146
|
"Chicago": "Chicago",
|
|
4152
4147
|
"Chihuahua": "Chihuahua",
|
|
4148
|
+
"Ciudad_Juarez": "Ciudad Juárez",
|
|
4153
4149
|
"Costa_Rica": "Costa Rica",
|
|
4154
4150
|
"Creston": "Creston",
|
|
4155
4151
|
"Cuiaba": "Cuiaba",
|
|
@@ -4787,10 +4783,12 @@
|
|
|
4787
4783
|
},
|
|
4788
4784
|
"power2": {
|
|
4789
4785
|
"compoundUnitPattern1": "{0}²",
|
|
4786
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
4790
4787
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4791
4788
|
},
|
|
4792
4789
|
"power3": {
|
|
4793
4790
|
"compoundUnitPattern1": "{0}³",
|
|
4791
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
4794
4792
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4795
4793
|
},
|
|
4796
4794
|
"times": {
|
|
@@ -4883,6 +4881,7 @@
|
|
|
4883
4881
|
},
|
|
4884
4882
|
"area-dunam": {
|
|
4885
4883
|
"displayName": "dunam",
|
|
4884
|
+
"unitPattern-count-one": "{0} dunam",
|
|
4886
4885
|
"unitPattern-count-other": "{0} dunam"
|
|
4887
4886
|
},
|
|
4888
4887
|
"concentr-karat": {
|
|
@@ -4927,6 +4926,7 @@
|
|
|
4927
4926
|
},
|
|
4928
4927
|
"concentr-mole": {
|
|
4929
4928
|
"displayName": "mol",
|
|
4929
|
+
"unitPattern-count-one": "{0} mol",
|
|
4930
4930
|
"unitPattern-count-other": "{0} mol"
|
|
4931
4931
|
},
|
|
4932
4932
|
"consumption-liter-per-kilometer": {
|
|
@@ -5020,6 +5020,12 @@
|
|
|
5020
5020
|
"unitPattern-count-other": "{0} år",
|
|
5021
5021
|
"perUnitPattern": "{0}/år"
|
|
5022
5022
|
},
|
|
5023
|
+
"duration-quarter": {
|
|
5024
|
+
"displayName": "kvartaler",
|
|
5025
|
+
"unitPattern-count-one": "{0} kvt.",
|
|
5026
|
+
"unitPattern-count-other": "{0} kvt.",
|
|
5027
|
+
"perUnitPattern": "{0}/pr. kvt."
|
|
5028
|
+
},
|
|
5023
5029
|
"duration-month": {
|
|
5024
5030
|
"displayName": "måneder",
|
|
5025
5031
|
"unitPattern-count-one": "{0} md.",
|
|
@@ -5123,18 +5129,22 @@
|
|
|
5123
5129
|
},
|
|
5124
5130
|
"energy-electronvolt": {
|
|
5125
5131
|
"displayName": "elektronvolt",
|
|
5132
|
+
"unitPattern-count-one": "{0} eV",
|
|
5126
5133
|
"unitPattern-count-other": "{0} eV"
|
|
5127
5134
|
},
|
|
5128
5135
|
"energy-british-thermal-unit": {
|
|
5129
5136
|
"displayName": "Btu",
|
|
5137
|
+
"unitPattern-count-one": "{0} Btu",
|
|
5130
5138
|
"unitPattern-count-other": "{0} Btu"
|
|
5131
5139
|
},
|
|
5132
5140
|
"energy-therm-us": {
|
|
5133
5141
|
"displayName": "US therm",
|
|
5142
|
+
"unitPattern-count-one": "{0} US therm",
|
|
5134
5143
|
"unitPattern-count-other": "{0} US therm"
|
|
5135
5144
|
},
|
|
5136
5145
|
"force-pound-force": {
|
|
5137
5146
|
"displayName": "lbf",
|
|
5147
|
+
"unitPattern-count-one": "{0} lbf",
|
|
5138
5148
|
"unitPattern-count-other": "{0} lbf"
|
|
5139
5149
|
},
|
|
5140
5150
|
"force-newton": {
|
|
@@ -5144,6 +5154,7 @@
|
|
|
5144
5154
|
},
|
|
5145
5155
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5146
5156
|
"displayName": "kWh/100km",
|
|
5157
|
+
"unitPattern-count-one": "{0} kWh/100km",
|
|
5147
5158
|
"unitPattern-count-other": "{0} kWh/100km"
|
|
5148
5159
|
},
|
|
5149
5160
|
"frequency-gigahertz": {
|
|
@@ -5168,22 +5179,37 @@
|
|
|
5168
5179
|
},
|
|
5169
5180
|
"graphics-em": {
|
|
5170
5181
|
"displayName": "em",
|
|
5182
|
+
"unitPattern-count-one": "{0} em",
|
|
5171
5183
|
"unitPattern-count-other": "{0} em"
|
|
5172
5184
|
},
|
|
5173
5185
|
"graphics-pixel": {
|
|
5174
5186
|
"displayName": "px",
|
|
5187
|
+
"unitPattern-count-one": "{0} px",
|
|
5175
5188
|
"unitPattern-count-other": "{0} px"
|
|
5176
5189
|
},
|
|
5177
5190
|
"graphics-megapixel": {
|
|
5178
5191
|
"displayName": "MP",
|
|
5192
|
+
"unitPattern-count-one": "{0} MP",
|
|
5179
5193
|
"unitPattern-count-other": "{0} MP"
|
|
5180
5194
|
},
|
|
5181
5195
|
"graphics-pixel-per-centimeter": {
|
|
5182
5196
|
"displayName": "ppcm",
|
|
5197
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5183
5198
|
"unitPattern-count-other": "{0} ppcm"
|
|
5184
5199
|
},
|
|
5185
5200
|
"graphics-pixel-per-inch": {
|
|
5186
5201
|
"displayName": "ppi",
|
|
5202
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5203
|
+
"unitPattern-count-other": "{0} ppi"
|
|
5204
|
+
},
|
|
5205
|
+
"graphics-dot-per-centimeter": {
|
|
5206
|
+
"displayName": "ppcm",
|
|
5207
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5208
|
+
"unitPattern-count-other": "{0} ppcm"
|
|
5209
|
+
},
|
|
5210
|
+
"graphics-dot-per-inch": {
|
|
5211
|
+
"displayName": "ppi",
|
|
5212
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5187
5213
|
"unitPattern-count-other": "{0} ppi"
|
|
5188
5214
|
},
|
|
5189
5215
|
"graphics-dot": {
|
|
@@ -5193,6 +5219,7 @@
|
|
|
5193
5219
|
},
|
|
5194
5220
|
"length-earth-radius": {
|
|
5195
5221
|
"displayName": "R⊕",
|
|
5222
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5196
5223
|
"unitPattern-count-other": "{0} R⊕"
|
|
5197
5224
|
},
|
|
5198
5225
|
"length-kilometer": {
|
|
@@ -5277,6 +5304,7 @@
|
|
|
5277
5304
|
},
|
|
5278
5305
|
"length-furlong": {
|
|
5279
5306
|
"displayName": "fur",
|
|
5307
|
+
"unitPattern-count-one": "{0} fur",
|
|
5280
5308
|
"unitPattern-count-other": "{0} fur"
|
|
5281
5309
|
},
|
|
5282
5310
|
"length-fathom": {
|
|
@@ -5301,6 +5329,7 @@
|
|
|
5301
5329
|
},
|
|
5302
5330
|
"length-solar-radius": {
|
|
5303
5331
|
"displayName": "solradier",
|
|
5332
|
+
"unitPattern-count-one": "{0} R☉",
|
|
5304
5333
|
"unitPattern-count-other": "{0} R☉"
|
|
5305
5334
|
},
|
|
5306
5335
|
"light-lux": {
|
|
@@ -5310,17 +5339,20 @@
|
|
|
5310
5339
|
},
|
|
5311
5340
|
"light-candela": {
|
|
5312
5341
|
"displayName": "cd",
|
|
5342
|
+
"unitPattern-count-one": "{0} cd",
|
|
5313
5343
|
"unitPattern-count-other": "{0} cd"
|
|
5314
5344
|
},
|
|
5315
5345
|
"light-lumen": {
|
|
5316
5346
|
"displayName": "lm",
|
|
5347
|
+
"unitPattern-count-one": "{0} lm",
|
|
5317
5348
|
"unitPattern-count-other": "{0} lm"
|
|
5318
5349
|
},
|
|
5319
5350
|
"light-solar-luminosity": {
|
|
5320
5351
|
"displayName": "L☉",
|
|
5352
|
+
"unitPattern-count-one": "{0} L☉",
|
|
5321
5353
|
"unitPattern-count-other": "{0} L☉"
|
|
5322
5354
|
},
|
|
5323
|
-
"mass-
|
|
5355
|
+
"mass-tonne": {
|
|
5324
5356
|
"displayName": "t",
|
|
5325
5357
|
"unitPattern-count-one": "{0} t",
|
|
5326
5358
|
"unitPattern-count-other": "{0} t"
|
|
@@ -5354,6 +5386,7 @@
|
|
|
5354
5386
|
},
|
|
5355
5387
|
"mass-stone": {
|
|
5356
5388
|
"displayName": "st",
|
|
5389
|
+
"unitPattern-count-one": "{0} st",
|
|
5357
5390
|
"unitPattern-count-other": "{0} st"
|
|
5358
5391
|
},
|
|
5359
5392
|
"mass-pound": {
|
|
@@ -5380,14 +5413,17 @@
|
|
|
5380
5413
|
},
|
|
5381
5414
|
"mass-dalton": {
|
|
5382
5415
|
"displayName": "Da",
|
|
5416
|
+
"unitPattern-count-one": "{0} Da",
|
|
5383
5417
|
"unitPattern-count-other": "{0} Da"
|
|
5384
5418
|
},
|
|
5385
5419
|
"mass-earth-mass": {
|
|
5386
5420
|
"displayName": "M⊕",
|
|
5421
|
+
"unitPattern-count-one": "{0} M⊕",
|
|
5387
5422
|
"unitPattern-count-other": "{0} M⊕"
|
|
5388
5423
|
},
|
|
5389
5424
|
"mass-solar-mass": {
|
|
5390
5425
|
"displayName": "solmasser",
|
|
5426
|
+
"unitPattern-count-one": "{0} M☉",
|
|
5391
5427
|
"unitPattern-count-other": "{0} M☉"
|
|
5392
5428
|
},
|
|
5393
5429
|
"mass-grain": {
|
|
@@ -5442,6 +5478,7 @@
|
|
|
5442
5478
|
},
|
|
5443
5479
|
"pressure-bar": {
|
|
5444
5480
|
"displayName": "bar",
|
|
5481
|
+
"unitPattern-count-one": "{0} bar",
|
|
5445
5482
|
"unitPattern-count-other": "{0} bar"
|
|
5446
5483
|
},
|
|
5447
5484
|
"pressure-millibar": {
|
|
@@ -5456,6 +5493,7 @@
|
|
|
5456
5493
|
},
|
|
5457
5494
|
"pressure-pascal": {
|
|
5458
5495
|
"displayName": "Pa",
|
|
5496
|
+
"unitPattern-count-one": "{0} Pa",
|
|
5459
5497
|
"unitPattern-count-other": "{0} Pa"
|
|
5460
5498
|
},
|
|
5461
5499
|
"pressure-hectopascal": {
|
|
@@ -5465,10 +5503,12 @@
|
|
|
5465
5503
|
},
|
|
5466
5504
|
"pressure-kilopascal": {
|
|
5467
5505
|
"displayName": "kPa",
|
|
5506
|
+
"unitPattern-count-one": "{0} kPa",
|
|
5468
5507
|
"unitPattern-count-other": "{0} kPa"
|
|
5469
5508
|
},
|
|
5470
5509
|
"pressure-megapascal": {
|
|
5471
5510
|
"displayName": "MPa",
|
|
5511
|
+
"unitPattern-count-one": "{0} MPa",
|
|
5472
5512
|
"unitPattern-count-other": "{0} MPa"
|
|
5473
5513
|
},
|
|
5474
5514
|
"speed-kilometer-per-hour": {
|
|
@@ -5513,10 +5553,12 @@
|
|
|
5513
5553
|
},
|
|
5514
5554
|
"torque-pound-force-foot": {
|
|
5515
5555
|
"displayName": "lbf⋅ft",
|
|
5556
|
+
"unitPattern-count-one": "{0} lbf⋅ft",
|
|
5516
5557
|
"unitPattern-count-other": "{0} lbf⋅ft"
|
|
5517
5558
|
},
|
|
5518
5559
|
"torque-newton-meter": {
|
|
5519
5560
|
"displayName": "N⋅m",
|
|
5561
|
+
"unitPattern-count-one": "{0} N⋅m",
|
|
5520
5562
|
"unitPattern-count-other": "{0} N⋅m"
|
|
5521
5563
|
},
|
|
5522
5564
|
"volume-cubic-kilometer": {
|
|
@@ -5641,6 +5683,7 @@
|
|
|
5641
5683
|
},
|
|
5642
5684
|
"volume-fluid-ounce-imperial": {
|
|
5643
5685
|
"displayName": "Imp. fl oz",
|
|
5686
|
+
"unitPattern-count-one": "{0} fl oz Imp.",
|
|
5644
5687
|
"unitPattern-count-other": "{0} fl oz Imp."
|
|
5645
5688
|
},
|
|
5646
5689
|
"volume-tablespoon": {
|
|
@@ -5680,6 +5723,7 @@
|
|
|
5680
5723
|
},
|
|
5681
5724
|
"volume-jigger": {
|
|
5682
5725
|
"displayName": "jigger",
|
|
5726
|
+
"unitPattern-count-one": "{0} jigger",
|
|
5683
5727
|
"unitPattern-count-other": "{0} jigger"
|
|
5684
5728
|
},
|
|
5685
5729
|
"volume-pinch": {
|
|
@@ -5801,41 +5845,56 @@
|
|
|
5801
5845
|
},
|
|
5802
5846
|
"eras-gregorian": {
|
|
5803
5847
|
"0": {
|
|
5848
|
+
"_code": "gregory-inverse",
|
|
5849
|
+
"_aliases": "bc bce",
|
|
5804
5850
|
"_end": "0-12-31"
|
|
5805
5851
|
},
|
|
5806
5852
|
"1": {
|
|
5853
|
+
"_code": "gregory",
|
|
5854
|
+
"_aliases": "ad ce",
|
|
5807
5855
|
"_start": "1-01-01"
|
|
5808
5856
|
}
|
|
5809
5857
|
},
|
|
5810
5858
|
"eras-islamic": {
|
|
5811
5859
|
"0": {
|
|
5860
|
+
"_code": "islamic",
|
|
5861
|
+
"_aliases": "ah",
|
|
5812
5862
|
"_start": "622-7-15"
|
|
5813
5863
|
}
|
|
5814
5864
|
},
|
|
5815
5865
|
"eras-persian": {
|
|
5816
5866
|
"0": {
|
|
5867
|
+
"_code": "persian",
|
|
5868
|
+
"_aliases": "ap",
|
|
5817
5869
|
"_start": "622-01-01"
|
|
5818
5870
|
}
|
|
5819
5871
|
},
|
|
5820
5872
|
"eras-buddhist": {
|
|
5821
5873
|
"0": {
|
|
5874
|
+
"_code": "buddhist",
|
|
5875
|
+
"_aliases": "be",
|
|
5822
5876
|
"_start": "-542-01-01"
|
|
5823
5877
|
}
|
|
5824
5878
|
},
|
|
5825
5879
|
"eras-japanese": {
|
|
5826
5880
|
"232": {
|
|
5881
|
+
"_code": "meiji",
|
|
5827
5882
|
"_start": "1868-9-8"
|
|
5828
5883
|
},
|
|
5829
5884
|
"233": {
|
|
5885
|
+
"_code": "taisho",
|
|
5830
5886
|
"_start": "1912-7-30"
|
|
5831
5887
|
},
|
|
5832
5888
|
"234": {
|
|
5889
|
+
"_code": "showa",
|
|
5833
5890
|
"_start": "1926-12-25"
|
|
5834
5891
|
},
|
|
5835
5892
|
"235": {
|
|
5893
|
+
"_code": "heisei",
|
|
5836
5894
|
"_start": "1989-1-8"
|
|
5837
5895
|
},
|
|
5838
5896
|
"236": {
|
|
5897
|
+
"_code": "reiwa",
|
|
5839
5898
|
"_start": "2019-5-1"
|
|
5840
5899
|
}
|
|
5841
5900
|
},
|