@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": "Abhazca",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"af": "Afrikaanca",
|
|
15
15
|
"afh": "Afrihili",
|
|
16
16
|
"agq": "Aghem",
|
|
17
|
-
"ain": "
|
|
17
|
+
"ain": "Aynuca",
|
|
18
18
|
"ak": "Akan",
|
|
19
19
|
"akk": "Akad Dili",
|
|
20
20
|
"akz": "Alabamaca",
|
|
@@ -24,13 +24,14 @@
|
|
|
24
24
|
"am": "Amharca",
|
|
25
25
|
"an": "Aragonca",
|
|
26
26
|
"ang": "Eski İngilizce",
|
|
27
|
+
"ann": "Obolo dili",
|
|
27
28
|
"anp": "Angika",
|
|
28
29
|
"ar": "Arapça",
|
|
29
30
|
"ar_001": "Modern Standart Arapça",
|
|
30
31
|
"arc": "Aramice",
|
|
31
32
|
"arn": "Mapuçe dili",
|
|
32
33
|
"aro": "Araona",
|
|
33
|
-
"arp": "Arapaho
|
|
34
|
+
"arp": "Arapaho dili",
|
|
34
35
|
"arq": "Cezayir Arapçası",
|
|
35
36
|
"ars": "Necd Arapçası",
|
|
36
37
|
"ars_alt-menu": "Arapça, Necd",
|
|
@@ -41,7 +42,8 @@
|
|
|
41
42
|
"asa": "Asu",
|
|
42
43
|
"ase": "Amerikan İşaret Dili",
|
|
43
44
|
"ast": "Asturyasça",
|
|
44
|
-
"
|
|
45
|
+
"atj": "Atikamekçe",
|
|
46
|
+
"av": "Avar dili",
|
|
45
47
|
"avk": "Kotava",
|
|
46
48
|
"awa": "Awadhi",
|
|
47
49
|
"ay": "Aymara",
|
|
@@ -110,14 +112,22 @@
|
|
|
110
112
|
"ckb": "Orta Kürtçe",
|
|
111
113
|
"ckb_alt-menu": "Kürtçe, Orta",
|
|
112
114
|
"ckb_alt-variant": "Kürtçe, Sorani",
|
|
115
|
+
"clc": "Çilkotince",
|
|
113
116
|
"co": "Korsikaca",
|
|
114
117
|
"cop": "Kıptice",
|
|
115
118
|
"cps": "Capiznon",
|
|
116
119
|
"cr": "Krice",
|
|
120
|
+
"crg": "Michif dili",
|
|
117
121
|
"crh": "Kırım Tatarcası",
|
|
122
|
+
"crj": "Güney Doğu Kricesi",
|
|
123
|
+
"crk": "Ova Kricesi",
|
|
124
|
+
"crl": "Kuzey Doğu Kricesi",
|
|
125
|
+
"crm": "Moose Kricesi",
|
|
126
|
+
"crr": "Carolina Algonkin dili",
|
|
118
127
|
"crs": "Seselwa Kreole Fransızcası",
|
|
119
128
|
"cs": "Çekçe",
|
|
120
129
|
"csb": "Kashubian",
|
|
130
|
+
"csw": "Bataklık Kricesi",
|
|
121
131
|
"cu": "Kilise Slavcası",
|
|
122
132
|
"cv": "Çuvaşça",
|
|
123
133
|
"cy": "Galce",
|
|
@@ -223,8 +233,10 @@
|
|
|
223
233
|
"hai": "Haydaca",
|
|
224
234
|
"hak": "Hakka Çincesi",
|
|
225
235
|
"haw": "Hawaii dili",
|
|
236
|
+
"hax": "Güney Haydaca",
|
|
226
237
|
"he": "İbranice",
|
|
227
238
|
"hi": "Hintçe",
|
|
239
|
+
"hi_Latn-alt-variant": "Hindilizce",
|
|
228
240
|
"hif": "Fiji Hintçesi",
|
|
229
241
|
"hil": "Hiligaynon dili",
|
|
230
242
|
"hit": "Hititçe",
|
|
@@ -236,6 +248,7 @@
|
|
|
236
248
|
"ht": "Haiti Kreyolu",
|
|
237
249
|
"hu": "Macarca",
|
|
238
250
|
"hup": "Hupaca",
|
|
251
|
+
"hur": "Halkomelemce",
|
|
239
252
|
"hy": "Ermenice",
|
|
240
253
|
"hz": "Herero dili",
|
|
241
254
|
"ia": "İnterlingua",
|
|
@@ -246,6 +259,7 @@
|
|
|
246
259
|
"ig": "İbo dili",
|
|
247
260
|
"ii": "Sichuan Yi",
|
|
248
261
|
"ik": "İnyupikçe",
|
|
262
|
+
"ikt": "Batı Kanada İnuktitut dili",
|
|
249
263
|
"ilo": "Iloko",
|
|
250
264
|
"inh": "İnguşça",
|
|
251
265
|
"io": "Ido",
|
|
@@ -312,6 +326,7 @@
|
|
|
312
326
|
"kut": "Kutenai dili",
|
|
313
327
|
"kv": "Komi",
|
|
314
328
|
"kw": "Kernevekçe",
|
|
329
|
+
"kwk": "Kwakʼwala dili",
|
|
315
330
|
"ky": "Kırgızca",
|
|
316
331
|
"la": "Latince",
|
|
317
332
|
"lad": "Ladino",
|
|
@@ -324,6 +339,7 @@
|
|
|
324
339
|
"lg": "Ganda",
|
|
325
340
|
"li": "Limburgca",
|
|
326
341
|
"lij": "Ligurca",
|
|
342
|
+
"lil": "Lillooet dili",
|
|
327
343
|
"liv": "Livonca",
|
|
328
344
|
"lkt": "Lakotaca",
|
|
329
345
|
"lmo": "Lombardça",
|
|
@@ -333,6 +349,7 @@
|
|
|
333
349
|
"lou": "Louisiana Kreolcesi",
|
|
334
350
|
"loz": "Lozi",
|
|
335
351
|
"lrc": "Kuzey Luri",
|
|
352
|
+
"lsm": "Samia dili",
|
|
336
353
|
"lt": "Litvanca",
|
|
337
354
|
"ltg": "Latgalian",
|
|
338
355
|
"lu": "Luba-Katanga",
|
|
@@ -371,6 +388,7 @@
|
|
|
371
388
|
"mn": "Moğolca",
|
|
372
389
|
"mnc": "Mançurya dili",
|
|
373
390
|
"mni": "Manipuri dili",
|
|
391
|
+
"moe": "Doğu İnnucası",
|
|
374
392
|
"moh": "Mohavk dili",
|
|
375
393
|
"mos": "Mossi",
|
|
376
394
|
"mr": "Marathi dili",
|
|
@@ -423,6 +441,11 @@
|
|
|
423
441
|
"nzi": "Nzima dili",
|
|
424
442
|
"oc": "Oksitan dili",
|
|
425
443
|
"oj": "Ojibva dili",
|
|
444
|
+
"ojb": "Kuzeybatı Ojibwe dili",
|
|
445
|
+
"ojc": "Orta Ojibwe dili",
|
|
446
|
+
"ojs": "Anişininice",
|
|
447
|
+
"ojw": "Batı Ojibwe dili",
|
|
448
|
+
"oka": "Okanagan dili",
|
|
426
449
|
"om": "Oromo dili",
|
|
427
450
|
"or": "Oriya dili",
|
|
428
451
|
"os": "Osetçe",
|
|
@@ -442,10 +465,12 @@
|
|
|
442
465
|
"pfl": "Palatin Almancası",
|
|
443
466
|
"phn": "Fenike dili",
|
|
444
467
|
"pi": "Pali",
|
|
468
|
+
"pis": "Pijin dili",
|
|
445
469
|
"pl": "Lehçe",
|
|
446
470
|
"pms": "Piyemontece",
|
|
447
471
|
"pnt": "Kuzeybatı Kafkasya",
|
|
448
472
|
"pon": "Pohnpeian",
|
|
473
|
+
"pqm": "Malisetçe-Passamaquoddy",
|
|
449
474
|
"prg": "Prusyaca",
|
|
450
475
|
"pro": "Eski Provensal",
|
|
451
476
|
"ps": "Peştuca",
|
|
@@ -507,6 +532,7 @@
|
|
|
507
532
|
"sid": "Sidamo dili",
|
|
508
533
|
"sk": "Slovakça",
|
|
509
534
|
"sl": "Slovence",
|
|
535
|
+
"slh": "Güney Lushootseed",
|
|
510
536
|
"sli": "Aşağı Silezyaca",
|
|
511
537
|
"sly": "Selayar",
|
|
512
538
|
"sm": "Samoa dili",
|
|
@@ -526,6 +552,7 @@
|
|
|
526
552
|
"ssy": "Saho",
|
|
527
553
|
"st": "Güney Sotho dili",
|
|
528
554
|
"stq": "Saterland Frizcesi",
|
|
555
|
+
"str": "Boğazlar Saliş dili",
|
|
529
556
|
"su": "Sunda dili",
|
|
530
557
|
"suk": "Sukuma dili",
|
|
531
558
|
"sus": "Susu",
|
|
@@ -538,6 +565,7 @@
|
|
|
538
565
|
"syr": "Süryanice",
|
|
539
566
|
"szl": "Silezyaca",
|
|
540
567
|
"ta": "Tamilce",
|
|
568
|
+
"tce": "Güney Tuçoncası",
|
|
541
569
|
"tcy": "Tuluca",
|
|
542
570
|
"te": "Telugu dili",
|
|
543
571
|
"tem": "Timne",
|
|
@@ -545,7 +573,9 @@
|
|
|
545
573
|
"ter": "Tereno",
|
|
546
574
|
"tet": "Tetum",
|
|
547
575
|
"tg": "Tacikçe",
|
|
576
|
+
"tgx": "Tagişçe",
|
|
548
577
|
"th": "Tayca",
|
|
578
|
+
"tht": "Tahltanca",
|
|
549
579
|
"ti": "Tigrinya dili",
|
|
550
580
|
"tig": "Tigre",
|
|
551
581
|
"tiv": "Tiv",
|
|
@@ -554,12 +584,13 @@
|
|
|
554
584
|
"tkr": "Sahurca",
|
|
555
585
|
"tl": "Tagalogca",
|
|
556
586
|
"tlh": "Klingonca",
|
|
557
|
-
"tli": "
|
|
587
|
+
"tli": "Tlingitçe",
|
|
558
588
|
"tly": "Talışça",
|
|
559
589
|
"tmh": "Tamaşek",
|
|
560
590
|
"tn": "Setsvana",
|
|
561
591
|
"to": "Tonga dili",
|
|
562
592
|
"tog": "Nyasa Tonga",
|
|
593
|
+
"tok": "Toki Pona",
|
|
563
594
|
"tpi": "Tok Pisin",
|
|
564
595
|
"tr": "Türkçe",
|
|
565
596
|
"tru": "Turoyo",
|
|
@@ -568,6 +599,7 @@
|
|
|
568
599
|
"tsd": "Tsakonca",
|
|
569
600
|
"tsi": "Tsimshian",
|
|
570
601
|
"tt": "Tatarca",
|
|
602
|
+
"ttm": "Kuzey Tuçoncası",
|
|
571
603
|
"ttt": "Tatça",
|
|
572
604
|
"tum": "Tumbuka",
|
|
573
605
|
"tvl": "Tuvalyanca",
|
|
@@ -634,10 +666,9 @@
|
|
|
634
666
|
"zza": "Zazaca"
|
|
635
667
|
},
|
|
636
668
|
"scripts": {
|
|
637
|
-
"Adlm": "
|
|
669
|
+
"Adlm": "Adlam",
|
|
638
670
|
"Afak": "Afaka",
|
|
639
671
|
"Aghb": "Kafkas Albanyası",
|
|
640
|
-
"Ahom": "Ahom",
|
|
641
672
|
"Arab": "Arap",
|
|
642
673
|
"Arab-alt-variant": "Fars-Arap",
|
|
643
674
|
"Aran": "Nestâlik",
|
|
@@ -649,7 +680,6 @@
|
|
|
649
680
|
"Bass": "Bassa Vah",
|
|
650
681
|
"Batk": "Batak",
|
|
651
682
|
"Beng": "Bengal",
|
|
652
|
-
"Bhks": "Bhks",
|
|
653
683
|
"Blis": "Blis Sembolleri",
|
|
654
684
|
"Bopo": "Bopomofo",
|
|
655
685
|
"Brah": "Brahmi",
|
|
@@ -661,29 +691,22 @@
|
|
|
661
691
|
"Cari": "Karya",
|
|
662
692
|
"Cham": "Cham",
|
|
663
693
|
"Cher": "Çeroki",
|
|
664
|
-
"Chrs": "Chrs",
|
|
665
694
|
"Cirt": "Cirth",
|
|
666
695
|
"Copt": "Kıpti",
|
|
667
|
-
"Cpmn": "Cpmn",
|
|
668
696
|
"Cprt": "Kıbrıs",
|
|
669
697
|
"Cyrl": "Kiril",
|
|
670
698
|
"Cyrs": "Eski Kilise Slavcası Kiril",
|
|
671
699
|
"Deva": "Devanagari",
|
|
672
|
-
"Diak": "Diak",
|
|
673
|
-
"Dogr": "Dogr",
|
|
674
700
|
"Dsrt": "Deseret",
|
|
675
701
|
"Dupl": "Duployé Stenografi",
|
|
676
702
|
"Egyd": "Demotik Mısır",
|
|
677
703
|
"Egyh": "Hiyeratik Mısır",
|
|
678
704
|
"Egyp": "Mısır Hiyeroglifleri",
|
|
679
705
|
"Elba": "Elbasan",
|
|
680
|
-
"Elym": "Elym",
|
|
681
706
|
"Ethi": "Etiyopya",
|
|
682
707
|
"Geok": "Hutsuri Gürcü",
|
|
683
708
|
"Geor": "Gürcü",
|
|
684
709
|
"Glag": "Glagolit",
|
|
685
|
-
"Gong": "Gong",
|
|
686
|
-
"Gonm": "Gonm",
|
|
687
710
|
"Goth": "Gotik",
|
|
688
711
|
"Gran": "Grantha",
|
|
689
712
|
"Grek": "Yunan",
|
|
@@ -697,12 +720,10 @@
|
|
|
697
720
|
"Hans-alt-stand-alone": "Basitleştirilmiş Han",
|
|
698
721
|
"Hant": "Geleneksel",
|
|
699
722
|
"Hant-alt-stand-alone": "Geleneksel Han",
|
|
700
|
-
"Hatr": "Hatr",
|
|
701
723
|
"Hebr": "İbrani",
|
|
702
724
|
"Hira": "Hiragana",
|
|
703
725
|
"Hluw": "Anadolu Hiyeroglifleri",
|
|
704
726
|
"Hmng": "Pahavh Hmong",
|
|
705
|
-
"Hmnp": "Hmnp",
|
|
706
727
|
"Hrkt": "Japon hece alfabeleri",
|
|
707
728
|
"Hung": "Eski Macar",
|
|
708
729
|
"Inds": "Indus",
|
|
@@ -713,11 +734,9 @@
|
|
|
713
734
|
"Jurc": "Jurchen",
|
|
714
735
|
"Kali": "Kayah Li",
|
|
715
736
|
"Kana": "Katakana",
|
|
716
|
-
"Kawi": "Kawi",
|
|
717
737
|
"Khar": "Kharoshthi",
|
|
718
738
|
"Khmr": "Kmer",
|
|
719
739
|
"Khoj": "Khojki",
|
|
720
|
-
"Kits": "Kits",
|
|
721
740
|
"Knda": "Kannada",
|
|
722
741
|
"Kore": "Korece",
|
|
723
742
|
"Kpel": "Kpelle",
|
|
@@ -736,12 +755,8 @@
|
|
|
736
755
|
"Lyci": "Likya",
|
|
737
756
|
"Lydi": "Lidya",
|
|
738
757
|
"Mahj": "Mahajani",
|
|
739
|
-
"Maka": "Maka",
|
|
740
758
|
"Mand": "Manden",
|
|
741
|
-
"Mani": "Mani",
|
|
742
|
-
"Marc": "Marc",
|
|
743
759
|
"Maya": "Maya Hiyeroglifleri",
|
|
744
|
-
"Medf": "Medf",
|
|
745
760
|
"Mend": "Mende",
|
|
746
761
|
"Merc": "Meroitik El Yazısı",
|
|
747
762
|
"Mero": "Meroitik",
|
|
@@ -751,13 +766,9 @@
|
|
|
751
766
|
"Moon": "Moon",
|
|
752
767
|
"Mroo": "Mro",
|
|
753
768
|
"Mtei": "Meitei Mayek",
|
|
754
|
-
"Mult": "Mult",
|
|
755
769
|
"Mymr": "Burma",
|
|
756
|
-
"Nagm": "Nagm",
|
|
757
|
-
"Nand": "Nand",
|
|
758
770
|
"Narb": "Eski Kuzey Arap",
|
|
759
771
|
"Nbat": "Nebati",
|
|
760
|
-
"Newa": "Newa",
|
|
761
772
|
"Nkgb": "Naksi Geba",
|
|
762
773
|
"Nkoo": "N’Ko",
|
|
763
774
|
"Nshu": "Nüshu",
|
|
@@ -765,9 +776,7 @@
|
|
|
765
776
|
"Olck": "Ol Chiki",
|
|
766
777
|
"Orkh": "Orhun",
|
|
767
778
|
"Orya": "Oriya",
|
|
768
|
-
"Osge": "Osge",
|
|
769
779
|
"Osma": "Osmanya",
|
|
770
|
-
"Ougr": "Ougr",
|
|
771
780
|
"Palm": "Palmira",
|
|
772
781
|
"Pauc": "Pau Cin Hau",
|
|
773
782
|
"Perm": "Eski Permik",
|
|
@@ -780,7 +789,7 @@
|
|
|
780
789
|
"Prti": "Partça Kitabe Dili",
|
|
781
790
|
"Qaag": "Zawgyi",
|
|
782
791
|
"Rjng": "Rejang",
|
|
783
|
-
"Rohg": "
|
|
792
|
+
"Rohg": "Hanifi",
|
|
784
793
|
"Roro": "Rongorongo",
|
|
785
794
|
"Runr": "Runik",
|
|
786
795
|
"Samr": "Samarit",
|
|
@@ -793,10 +802,7 @@
|
|
|
793
802
|
"Sidd": "Siddham",
|
|
794
803
|
"Sind": "Khudabadi",
|
|
795
804
|
"Sinh": "Seylan",
|
|
796
|
-
"Sogd": "Sogd",
|
|
797
|
-
"Sogo": "Sogo",
|
|
798
805
|
"Sora": "Sora Sompeng",
|
|
799
|
-
"Soyo": "Soyo",
|
|
800
806
|
"Sund": "Sunda",
|
|
801
807
|
"Sylo": "Syloti Nagri",
|
|
802
808
|
"Syrc": "Süryani",
|
|
@@ -812,26 +818,20 @@
|
|
|
812
818
|
"Tavt": "Tai Viet",
|
|
813
819
|
"Telu": "Telugu",
|
|
814
820
|
"Teng": "Tengvar",
|
|
815
|
-
"Tfng": "
|
|
821
|
+
"Tfng": "Tifinag",
|
|
816
822
|
"Tglg": "Takalot",
|
|
817
823
|
"Thaa": "Thaana",
|
|
818
824
|
"Thai": "Tay",
|
|
819
825
|
"Tibt": "Tibet",
|
|
820
826
|
"Tirh": "Tirhuta",
|
|
821
|
-
"Tnsa": "Tnsa",
|
|
822
|
-
"Toto": "Toto",
|
|
823
827
|
"Ugar": "Ugarit Çivi Yazısı",
|
|
824
828
|
"Vaii": "Vai",
|
|
825
829
|
"Visp": "Konuşma Sesleri Çizimlemesi",
|
|
826
|
-
"Vith": "Vith",
|
|
827
830
|
"Wara": "Varang Kshiti",
|
|
828
|
-
"Wcho": "Wcho",
|
|
829
831
|
"Wole": "Woleai",
|
|
830
832
|
"Xpeo": "Eski Fars",
|
|
831
833
|
"Xsux": "Sümer-Akad Çivi Yazısı",
|
|
832
|
-
"Yezi": "Yezi",
|
|
833
834
|
"Yiii": "Yi",
|
|
834
|
-
"Zanb": "Zanb",
|
|
835
835
|
"Zinh": "Kalıtsal",
|
|
836
836
|
"Zmth": "Matematiksel Gösterim",
|
|
837
837
|
"Zsye": "Emoji",
|
|
@@ -1058,6 +1058,7 @@
|
|
|
1058
1058
|
"NR": "Nauru",
|
|
1059
1059
|
"NU": "Niue",
|
|
1060
1060
|
"NZ": "Yeni Zelanda",
|
|
1061
|
+
"NZ-alt-variant": "Aotearoa Yeni Zelanda",
|
|
1061
1062
|
"OM": "Umman",
|
|
1062
1063
|
"PA": "Panama",
|
|
1063
1064
|
"PE": "Peru",
|
|
@@ -1117,6 +1118,7 @@
|
|
|
1117
1118
|
"TN": "Tunus",
|
|
1118
1119
|
"TO": "Tonga",
|
|
1119
1120
|
"TR": "Türkiye",
|
|
1121
|
+
"TR-alt-variant": "Türkiye",
|
|
1120
1122
|
"TT": "Trinidad ve Tobago",
|
|
1121
1123
|
"TV": "Tuvalu",
|
|
1122
1124
|
"TW": "Tayvan",
|
|
@@ -1177,24 +1179,24 @@
|
|
|
1177
1179
|
"EBhm": "E B h:mm",
|
|
1178
1180
|
"EBhms": "E B h:mm:ss",
|
|
1179
1181
|
"Ed": "d E",
|
|
1180
|
-
"Ehm": "E a
|
|
1182
|
+
"Ehm": "E a h:mm",
|
|
1181
1183
|
"EHm": "E HH:mm",
|
|
1182
|
-
"Ehms": "E a
|
|
1184
|
+
"Ehms": "E a h:mm:ss",
|
|
1183
1185
|
"EHms": "E HH:mm:ss",
|
|
1184
1186
|
"Gy": "G y",
|
|
1185
1187
|
"GyMd": "d/M/y GGGGG",
|
|
1186
1188
|
"GyMMM": "G MMM y",
|
|
1187
1189
|
"GyMMMd": "G d MMM y",
|
|
1188
1190
|
"GyMMMEd": "G d MMM y E",
|
|
1189
|
-
"h": "a
|
|
1191
|
+
"h": "a h",
|
|
1190
1192
|
"H": "HH",
|
|
1191
|
-
"hm": "a
|
|
1193
|
+
"hm": "a h:mm",
|
|
1192
1194
|
"Hm": "HH:mm",
|
|
1193
|
-
"hms": "a
|
|
1195
|
+
"hms": "a h:mm:ss",
|
|
1194
1196
|
"Hms": "HH:mm:ss",
|
|
1195
|
-
"hmsv": "a
|
|
1197
|
+
"hmsv": "a h:mm:ss v",
|
|
1196
1198
|
"Hmsv": "HH:mm:ss v",
|
|
1197
|
-
"hmv": "a
|
|
1199
|
+
"hmv": "a h:mm v",
|
|
1198
1200
|
"Hmv": "HH:mm v",
|
|
1199
1201
|
"M": "L",
|
|
1200
1202
|
"Md": "d/M",
|
|
@@ -1234,13 +1236,13 @@
|
|
|
1234
1236
|
"Year": "{1} {0}"
|
|
1235
1237
|
},
|
|
1236
1238
|
"intervalFormats": {
|
|
1237
|
-
"intervalFormatFallback": "{0}
|
|
1239
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1238
1240
|
"Bh": {
|
|
1239
|
-
"B": "B h
|
|
1241
|
+
"B": "B h – B h",
|
|
1240
1242
|
"h": "B h–h"
|
|
1241
1243
|
},
|
|
1242
1244
|
"Bhm": {
|
|
1243
|
-
"B": "B h:mm
|
|
1245
|
+
"B": "B h:mm – B h:mm",
|
|
1244
1246
|
"h": "B h:mm–h:mm",
|
|
1245
1247
|
"m": "B h:mm–h:mm"
|
|
1246
1248
|
},
|
|
@@ -1252,127 +1254,127 @@
|
|
|
1252
1254
|
"y": "G y–y"
|
|
1253
1255
|
},
|
|
1254
1256
|
"GyM": {
|
|
1255
|
-
"G": "GGGGG MM.y
|
|
1256
|
-
"M": "GGGGG MM.y
|
|
1257
|
-
"y": "GGGGG MM.y
|
|
1257
|
+
"G": "GGGGG MM.y – GGGGG MM.y",
|
|
1258
|
+
"M": "GGGGG MM.y – MM.y",
|
|
1259
|
+
"y": "GGGGG MM.y – MM.y"
|
|
1258
1260
|
},
|
|
1259
1261
|
"GyMd": {
|
|
1260
|
-
"d": "GGGGG dd.MM.y
|
|
1261
|
-
"G": "GGGGG dd.MM.y
|
|
1262
|
-
"M": "GGGGG dd.MM.y
|
|
1263
|
-
"y": "GGGGG dd.MM.y
|
|
1262
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
1263
|
+
"G": "GGGGG dd.MM.y – GGGGG dd.MM.y",
|
|
1264
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
1265
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
1264
1266
|
},
|
|
1265
1267
|
"GyMEd": {
|
|
1266
|
-
"d": "GGGGG dd.MM.y E
|
|
1267
|
-
"G": "GGGGG dd.MM.y E
|
|
1268
|
-
"M": "GGGGG dd.MM.y E
|
|
1269
|
-
"y": "GGGGG dd.MM.y E
|
|
1268
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
1269
|
+
"G": "GGGGG dd.MM.y E – GGGGG dd.MM.y E",
|
|
1270
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
1271
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
1270
1272
|
},
|
|
1271
1273
|
"GyMMM": {
|
|
1272
|
-
"G": "G MMM y
|
|
1274
|
+
"G": "G MMM y – G MMM y",
|
|
1273
1275
|
"M": "G MMM–MMM y",
|
|
1274
|
-
"y": "G MMM y
|
|
1276
|
+
"y": "G MMM y – MMM y"
|
|
1275
1277
|
},
|
|
1276
1278
|
"GyMMMd": {
|
|
1277
1279
|
"d": "G d–d MMM y",
|
|
1278
|
-
"G": "G d MMM y
|
|
1279
|
-
"M": "G d MMM
|
|
1280
|
-
"y": "G d MMM y
|
|
1280
|
+
"G": "G d MMM y – G d MMM y",
|
|
1281
|
+
"M": "G d MMM – d MMM y",
|
|
1282
|
+
"y": "G d MMM y – d MMM y"
|
|
1281
1283
|
},
|
|
1282
1284
|
"GyMMMEd": {
|
|
1283
|
-
"d": "G d MMM E
|
|
1284
|
-
"G": "G d MMM y E
|
|
1285
|
-
"M": "G d MMM E
|
|
1286
|
-
"y": "G d MMM y E
|
|
1285
|
+
"d": "G d MMM E – d MMM E y",
|
|
1286
|
+
"G": "G d MMM y E – G d MMM y E",
|
|
1287
|
+
"M": "G d MMM E – d MMM E y",
|
|
1288
|
+
"y": "G d MMM y E – d MMM y E"
|
|
1287
1289
|
},
|
|
1288
1290
|
"h": {
|
|
1289
|
-
"a": "a
|
|
1290
|
-
"h": "a
|
|
1291
|
+
"a": "a h – a h",
|
|
1292
|
+
"h": "a h–h"
|
|
1291
1293
|
},
|
|
1292
1294
|
"H": {
|
|
1293
1295
|
"H": "HH–HH"
|
|
1294
1296
|
},
|
|
1295
1297
|
"hm": {
|
|
1296
|
-
"a": "a
|
|
1297
|
-
"h": "a
|
|
1298
|
-
"m": "a
|
|
1298
|
+
"a": "a h:mm – a h:mm",
|
|
1299
|
+
"h": "a h:mm–h:mm",
|
|
1300
|
+
"m": "a h:mm–h:mm"
|
|
1299
1301
|
},
|
|
1300
1302
|
"Hm": {
|
|
1301
1303
|
"H": "HH:mm–HH:mm",
|
|
1302
1304
|
"m": "HH:mm–HH:mm"
|
|
1303
1305
|
},
|
|
1304
1306
|
"hmv": {
|
|
1305
|
-
"a": "a
|
|
1306
|
-
"h": "a
|
|
1307
|
-
"m": "a
|
|
1307
|
+
"a": "a h:mm – a h:mm v",
|
|
1308
|
+
"h": "a h:mm–h:mm v",
|
|
1309
|
+
"m": "a h:mm–h:mm v"
|
|
1308
1310
|
},
|
|
1309
1311
|
"Hmv": {
|
|
1310
1312
|
"H": "HH:mm–HH:mm v",
|
|
1311
1313
|
"m": "HH:mm–HH:mm v"
|
|
1312
1314
|
},
|
|
1313
1315
|
"hv": {
|
|
1314
|
-
"a": "a
|
|
1315
|
-
"h": "a
|
|
1316
|
+
"a": "a h – a h v",
|
|
1317
|
+
"h": "a h–h v"
|
|
1316
1318
|
},
|
|
1317
1319
|
"Hv": {
|
|
1318
1320
|
"H": "HH–HH v"
|
|
1319
1321
|
},
|
|
1320
1322
|
"M": {
|
|
1321
|
-
"M": "M
|
|
1323
|
+
"M": "M – M"
|
|
1322
1324
|
},
|
|
1323
1325
|
"Md": {
|
|
1324
|
-
"d": "d.M
|
|
1325
|
-
"M": "d.M
|
|
1326
|
+
"d": "d.M – d.M",
|
|
1327
|
+
"M": "d.M – d.M"
|
|
1326
1328
|
},
|
|
1327
1329
|
"MEd": {
|
|
1328
|
-
"d": "d.M E
|
|
1329
|
-
"M": "d.M E
|
|
1330
|
+
"d": "d.M E – d.M E",
|
|
1331
|
+
"M": "d.M E – d.M E"
|
|
1330
1332
|
},
|
|
1331
1333
|
"MMM": {
|
|
1332
1334
|
"M": "MMM–MMM"
|
|
1333
1335
|
},
|
|
1334
1336
|
"MMMd": {
|
|
1335
|
-
"d": "d
|
|
1336
|
-
"M": "d MMM
|
|
1337
|
+
"d": "d – d MMM",
|
|
1338
|
+
"M": "d MMM – d MMM"
|
|
1337
1339
|
},
|
|
1338
1340
|
"MMMEd": {
|
|
1339
|
-
"d": "d MMM E
|
|
1340
|
-
"M": "d MMM E
|
|
1341
|
+
"d": "d MMM E – d MMM E",
|
|
1342
|
+
"M": "d MMM E – d MMM E"
|
|
1341
1343
|
},
|
|
1342
1344
|
"y": {
|
|
1343
1345
|
"y": "y–y"
|
|
1344
1346
|
},
|
|
1345
1347
|
"yM": {
|
|
1346
|
-
"M": "MM.y
|
|
1347
|
-
"y": "MM.y
|
|
1348
|
+
"M": "MM.y – MM.y",
|
|
1349
|
+
"y": "MM.y – MM.y"
|
|
1348
1350
|
},
|
|
1349
1351
|
"yMd": {
|
|
1350
|
-
"d": "dd.MM.y
|
|
1351
|
-
"M": "dd.MM.y
|
|
1352
|
-
"y": "dd.MM.y
|
|
1352
|
+
"d": "dd.MM.y – dd.MM.y",
|
|
1353
|
+
"M": "dd.MM.y – dd.MM.y",
|
|
1354
|
+
"y": "dd.MM.y – dd.MM.y"
|
|
1353
1355
|
},
|
|
1354
1356
|
"yMEd": {
|
|
1355
|
-
"d": "dd.MM.y E
|
|
1356
|
-
"M": "dd.MM.y E
|
|
1357
|
-
"y": "dd.MM.y E
|
|
1357
|
+
"d": "dd.MM.y E – dd.MM.y E",
|
|
1358
|
+
"M": "dd.MM.y E – dd.MM.y E",
|
|
1359
|
+
"y": "dd.MM.y E – dd.MM.y E"
|
|
1358
1360
|
},
|
|
1359
1361
|
"yMMM": {
|
|
1360
1362
|
"M": "MMM–MMM y",
|
|
1361
|
-
"y": "MMM y
|
|
1363
|
+
"y": "MMM y – MMM y"
|
|
1362
1364
|
},
|
|
1363
1365
|
"yMMMd": {
|
|
1364
1366
|
"d": "d–d MMM y",
|
|
1365
|
-
"M": "d MMM
|
|
1366
|
-
"y": "d MMM y
|
|
1367
|
+
"M": "d MMM – d MMM y",
|
|
1368
|
+
"y": "d MMM y – d MMM y"
|
|
1367
1369
|
},
|
|
1368
1370
|
"yMMMEd": {
|
|
1369
|
-
"d": "d MMM y E
|
|
1370
|
-
"M": "d MMM y E
|
|
1371
|
-
"y": "d MMM y E
|
|
1371
|
+
"d": "d MMM y E – d MMM y E",
|
|
1372
|
+
"M": "d MMM y E – d MMM y E",
|
|
1373
|
+
"y": "d MMM y E – d MMM y E"
|
|
1372
1374
|
},
|
|
1373
1375
|
"yMMMM": {
|
|
1374
|
-
"M": "MMMM
|
|
1375
|
-
"y": "MMMM y
|
|
1376
|
+
"M": "MMMM – MMMM y",
|
|
1377
|
+
"y": "MMMM y – MMMM y"
|
|
1376
1378
|
}
|
|
1377
1379
|
}
|
|
1378
1380
|
},
|
|
@@ -1722,20 +1724,20 @@
|
|
|
1722
1724
|
"EBhm": "E B h:mm",
|
|
1723
1725
|
"EBhms": "E B h:mm:ss",
|
|
1724
1726
|
"Ed": "d E",
|
|
1725
|
-
"Ehm": "E h:mm
|
|
1727
|
+
"Ehm": "E a h:mm",
|
|
1726
1728
|
"EHm": "E HH:mm",
|
|
1727
|
-
"Ehms": "E h:mm:ss
|
|
1729
|
+
"Ehms": "E a h:mm:ss",
|
|
1728
1730
|
"EHms": "E HH:mm:ss",
|
|
1729
1731
|
"Gy": "G y",
|
|
1730
1732
|
"GyMd": "d/M/y GGGGG",
|
|
1731
1733
|
"GyMMM": "G MMM y",
|
|
1732
1734
|
"GyMMMd": "G d MMM y",
|
|
1733
1735
|
"GyMMMEd": "G d MMM y E",
|
|
1734
|
-
"h": "h
|
|
1736
|
+
"h": "h a",
|
|
1735
1737
|
"H": "HH",
|
|
1736
|
-
"hm": "h:mm
|
|
1738
|
+
"hm": "h:mm a",
|
|
1737
1739
|
"Hm": "HH:mm",
|
|
1738
|
-
"hms": "h:mm:ss
|
|
1740
|
+
"hms": "h:mm:ss a",
|
|
1739
1741
|
"Hms": "HH:mm:ss",
|
|
1740
1742
|
"M": "L",
|
|
1741
1743
|
"Md": "dd/MM",
|
|
@@ -1774,13 +1776,13 @@
|
|
|
1774
1776
|
"Year": "{1} {0}"
|
|
1775
1777
|
},
|
|
1776
1778
|
"intervalFormats": {
|
|
1777
|
-
"intervalFormatFallback": "{0}
|
|
1779
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1778
1780
|
"Bh": {
|
|
1779
|
-
"B": "B h
|
|
1781
|
+
"B": "B h – B h",
|
|
1780
1782
|
"h": "B h–h"
|
|
1781
1783
|
},
|
|
1782
1784
|
"Bhm": {
|
|
1783
|
-
"B": "B h:mm
|
|
1785
|
+
"B": "B h:mm – B h:mm",
|
|
1784
1786
|
"h": "B h:mm–h:mm",
|
|
1785
1787
|
"m": "B h:mm–h:mm"
|
|
1786
1788
|
},
|
|
@@ -1792,67 +1794,67 @@
|
|
|
1792
1794
|
"y": "G y–y"
|
|
1793
1795
|
},
|
|
1794
1796
|
"GyM": {
|
|
1795
|
-
"G": "GGGGG MM.y
|
|
1796
|
-
"M": "GGGGG MM.y
|
|
1797
|
-
"y": "GGGGG MM.y
|
|
1797
|
+
"G": "GGGGG MM.y – GGGGG MM.y",
|
|
1798
|
+
"M": "GGGGG MM.y – MM.y",
|
|
1799
|
+
"y": "GGGGG MM.y – MM.y"
|
|
1798
1800
|
},
|
|
1799
1801
|
"GyMd": {
|
|
1800
|
-
"d": "GGGGG dd.MM.y
|
|
1802
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
1801
1803
|
"G": "GGGGG dd.MM.y GGGGG – dd.MM.y",
|
|
1802
|
-
"M": "GGGGG dd.MM.y
|
|
1803
|
-
"y": "GGGGG dd.MM.y
|
|
1804
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
1805
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
1804
1806
|
},
|
|
1805
1807
|
"GyMEd": {
|
|
1806
|
-
"d": "GGGGG dd.MM.y E
|
|
1807
|
-
"G": "GGGGG dd.MM.y E
|
|
1808
|
-
"M": "GGGGG dd.MM.y E
|
|
1809
|
-
"y": "GGGGG dd.MM.y E
|
|
1808
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
1809
|
+
"G": "GGGGG dd.MM.y E – GGGGG dd.MM.y E",
|
|
1810
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
1811
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
1810
1812
|
},
|
|
1811
1813
|
"GyMMM": {
|
|
1812
1814
|
"G": "G MMM y G – G MMM y",
|
|
1813
|
-
"M": "G MMM
|
|
1814
|
-
"y": "G MMM y
|
|
1815
|
+
"M": "G MMM – MMM y",
|
|
1816
|
+
"y": "G MMM y – MMM y"
|
|
1815
1817
|
},
|
|
1816
1818
|
"GyMMMd": {
|
|
1817
1819
|
"d": "G d–d MMM y",
|
|
1818
|
-
"G": "G d MMM y
|
|
1819
|
-
"M": "G d MMM
|
|
1820
|
-
"y": "G d MMM y
|
|
1820
|
+
"G": "G d MMM y – G d MMM y",
|
|
1821
|
+
"M": "G d MMM – d MMM y",
|
|
1822
|
+
"y": "G d MMM y – d MMM y"
|
|
1821
1823
|
},
|
|
1822
1824
|
"GyMMMEd": {
|
|
1823
|
-
"d": "G d MMM E
|
|
1824
|
-
"G": "G d MMM y E
|
|
1825
|
-
"M": "G d MMM E
|
|
1826
|
-
"y": "G d MMM y E
|
|
1825
|
+
"d": "G d MMM E – d MMM E y",
|
|
1826
|
+
"G": "G d MMM y E – G d MMM y E",
|
|
1827
|
+
"M": "G d MMM E – d MMM E y",
|
|
1828
|
+
"y": "G d MMM y E – d MMM y E"
|
|
1827
1829
|
},
|
|
1828
1830
|
"h": {
|
|
1829
|
-
"a": "h
|
|
1830
|
-
"h": "h–h
|
|
1831
|
+
"a": "h a – h a",
|
|
1832
|
+
"h": "h–h a"
|
|
1831
1833
|
},
|
|
1832
1834
|
"H": {
|
|
1833
1835
|
"H": "HH–HH"
|
|
1834
1836
|
},
|
|
1835
1837
|
"hm": {
|
|
1836
|
-
"a": "h:mm
|
|
1837
|
-
"h": "h:mm–h:mm
|
|
1838
|
-
"m": "h:mm–h:mm
|
|
1838
|
+
"a": "h:mm a – h:mm a",
|
|
1839
|
+
"h": "h:mm–h:mm a",
|
|
1840
|
+
"m": "h:mm–h:mm a"
|
|
1839
1841
|
},
|
|
1840
1842
|
"Hm": {
|
|
1841
1843
|
"H": "HH:mm–HH:mm",
|
|
1842
1844
|
"m": "HH:mm–HH:mm"
|
|
1843
1845
|
},
|
|
1844
1846
|
"hmv": {
|
|
1845
|
-
"a": "h:mm
|
|
1846
|
-
"h": "h:mm–h:mm
|
|
1847
|
-
"m": "h:mm–h:mm
|
|
1847
|
+
"a": "h:mm a – h:mm a v",
|
|
1848
|
+
"h": "h:mm–h:mm a v",
|
|
1849
|
+
"m": "h:mm–h:mm a v"
|
|
1848
1850
|
},
|
|
1849
1851
|
"Hmv": {
|
|
1850
1852
|
"H": "HH:mm–HH:mm v",
|
|
1851
1853
|
"m": "HH:mm–HH:mm v"
|
|
1852
1854
|
},
|
|
1853
1855
|
"hv": {
|
|
1854
|
-
"a": "h
|
|
1855
|
-
"h": "h–h
|
|
1856
|
+
"a": "h a – h a v",
|
|
1857
|
+
"h": "h–h a v"
|
|
1856
1858
|
},
|
|
1857
1859
|
"Hv": {
|
|
1858
1860
|
"H": "HH–HH v"
|
|
@@ -1861,58 +1863,58 @@
|
|
|
1861
1863
|
"M": "MM–MM"
|
|
1862
1864
|
},
|
|
1863
1865
|
"Md": {
|
|
1864
|
-
"d": "dd/MM
|
|
1865
|
-
"M": "dd/MM
|
|
1866
|
+
"d": "dd/MM – dd/MM",
|
|
1867
|
+
"M": "dd/MM – dd/MM"
|
|
1866
1868
|
},
|
|
1867
1869
|
"MEd": {
|
|
1868
|
-
"d": "dd/MM E
|
|
1869
|
-
"M": "dd/MM E
|
|
1870
|
+
"d": "dd/MM E – dd/MM E",
|
|
1871
|
+
"M": "dd/MM E – dd/MM E"
|
|
1870
1872
|
},
|
|
1871
1873
|
"MMM": {
|
|
1872
1874
|
"M": "MMM–MMM"
|
|
1873
1875
|
},
|
|
1874
1876
|
"MMMd": {
|
|
1875
|
-
"d": "d
|
|
1876
|
-
"M": "d MMM
|
|
1877
|
+
"d": "d – d MMM",
|
|
1878
|
+
"M": "d MMM – d MMM"
|
|
1877
1879
|
},
|
|
1878
1880
|
"MMMEd": {
|
|
1879
|
-
"d": "d MMM E
|
|
1880
|
-
"M": "d MMM E
|
|
1881
|
+
"d": "d MMM E – d MMM E",
|
|
1882
|
+
"M": "d MMM E – d MMM E"
|
|
1881
1883
|
},
|
|
1882
1884
|
"y": {
|
|
1883
1885
|
"y": "G y–y"
|
|
1884
1886
|
},
|
|
1885
1887
|
"yM": {
|
|
1886
|
-
"M": "GGGGG M/y
|
|
1887
|
-
"y": "GGGGG M/y
|
|
1888
|
+
"M": "GGGGG M/y – M/y",
|
|
1889
|
+
"y": "GGGGG M/y – M/y"
|
|
1888
1890
|
},
|
|
1889
1891
|
"yMd": {
|
|
1890
|
-
"d": "GGGGG dd.MM.y
|
|
1891
|
-
"M": "GGGGG dd.MM.y
|
|
1892
|
-
"y": "GGGGG dd.MM.y
|
|
1892
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
1893
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
1894
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
1893
1895
|
},
|
|
1894
1896
|
"yMEd": {
|
|
1895
|
-
"d": "GGGGG dd.MM.y E
|
|
1896
|
-
"M": "GGGGG dd.MM.y E
|
|
1897
|
-
"y": "GGGGG dd.MM.y E
|
|
1897
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
1898
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
1899
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
1898
1900
|
},
|
|
1899
1901
|
"yMMM": {
|
|
1900
1902
|
"M": "G MMM–MMM y",
|
|
1901
|
-
"y": "G MMM y
|
|
1903
|
+
"y": "G MMM y – MMM y"
|
|
1902
1904
|
},
|
|
1903
1905
|
"yMMMd": {
|
|
1904
1906
|
"d": "G d–d MMM y",
|
|
1905
|
-
"M": "G d MMM
|
|
1906
|
-
"y": "G d MMM y
|
|
1907
|
+
"M": "G d MMM – d MMM y",
|
|
1908
|
+
"y": "G d MMM y – d MMM y"
|
|
1907
1909
|
},
|
|
1908
1910
|
"yMMMEd": {
|
|
1909
|
-
"d": "G d MMM y E
|
|
1910
|
-
"M": "G d MMM y E
|
|
1911
|
-
"y": "G d MMM y E
|
|
1911
|
+
"d": "G d MMM y E – d MMM y E",
|
|
1912
|
+
"M": "G d MMM y E – d MMM y E",
|
|
1913
|
+
"y": "G d MMM y E – d MMM y E"
|
|
1912
1914
|
},
|
|
1913
1915
|
"yMMMM": {
|
|
1914
|
-
"M": "G MMMM
|
|
1915
|
-
"y": "G MMMM y
|
|
1916
|
+
"M": "G MMMM – MMMM y",
|
|
1917
|
+
"y": "G MMMM y – MMMM y"
|
|
1916
1918
|
}
|
|
1917
1919
|
}
|
|
1918
1920
|
},
|
|
@@ -2259,20 +2261,20 @@
|
|
|
2259
2261
|
"EBhm": "E B h:mm",
|
|
2260
2262
|
"EBhms": "E B h:mm:ss",
|
|
2261
2263
|
"Ed": "d E",
|
|
2262
|
-
"Ehm": "E h:mm
|
|
2264
|
+
"Ehm": "E a h:mm",
|
|
2263
2265
|
"EHm": "E HH:mm",
|
|
2264
|
-
"Ehms": "E h:mm:ss
|
|
2266
|
+
"Ehms": "E a h:mm:ss",
|
|
2265
2267
|
"EHms": "E HH:mm:ss",
|
|
2266
2268
|
"Gy": "G y",
|
|
2267
2269
|
"GyMd": "d/M/y GGGGG",
|
|
2268
2270
|
"GyMMM": "G MMM y",
|
|
2269
2271
|
"GyMMMd": "G d MMM y",
|
|
2270
2272
|
"GyMMMEd": "G d MMM y E",
|
|
2271
|
-
"h": "h
|
|
2273
|
+
"h": "h a",
|
|
2272
2274
|
"H": "HH",
|
|
2273
|
-
"hm": "h:mm
|
|
2275
|
+
"hm": "h:mm a",
|
|
2274
2276
|
"Hm": "HH:mm",
|
|
2275
|
-
"hms": "h:mm:ss
|
|
2277
|
+
"hms": "h:mm:ss a",
|
|
2276
2278
|
"Hms": "HH:mm:ss",
|
|
2277
2279
|
"M": "L",
|
|
2278
2280
|
"Md": "dd/MM",
|
|
@@ -2311,13 +2313,13 @@
|
|
|
2311
2313
|
"Year": "{1} {0}"
|
|
2312
2314
|
},
|
|
2313
2315
|
"intervalFormats": {
|
|
2314
|
-
"intervalFormatFallback": "{0}
|
|
2316
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2315
2317
|
"Bh": {
|
|
2316
|
-
"B": "B h
|
|
2318
|
+
"B": "B h – B h",
|
|
2317
2319
|
"h": "B h–h"
|
|
2318
2320
|
},
|
|
2319
2321
|
"Bhm": {
|
|
2320
|
-
"B": "B h:mm
|
|
2322
|
+
"B": "B h:mm – B h:mm",
|
|
2321
2323
|
"h": "B h:mm–h:mm",
|
|
2322
2324
|
"m": "B h:mm–h:mm"
|
|
2323
2325
|
},
|
|
@@ -2329,67 +2331,67 @@
|
|
|
2329
2331
|
"y": "G y–y"
|
|
2330
2332
|
},
|
|
2331
2333
|
"GyM": {
|
|
2332
|
-
"G": "GGGGG MM.y
|
|
2333
|
-
"M": "GGGGG MM.y
|
|
2334
|
-
"y": "GGGGG MM.y
|
|
2334
|
+
"G": "GGGGG MM.y – GGGGG MM.y",
|
|
2335
|
+
"M": "GGGGG MM.y – MM.y",
|
|
2336
|
+
"y": "GGGGG MM.y – MM.y"
|
|
2335
2337
|
},
|
|
2336
2338
|
"GyMd": {
|
|
2337
|
-
"d": "GGGGG dd.MM.y
|
|
2339
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
2338
2340
|
"G": "GGGGG dd.MM.y GGGGG – dd.MM.y",
|
|
2339
|
-
"M": "GGGGG dd.MM.y
|
|
2340
|
-
"y": "GGGGG dd.MM.y
|
|
2341
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
2342
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
2341
2343
|
},
|
|
2342
2344
|
"GyMEd": {
|
|
2343
|
-
"d": "GGGGG dd.MM.y E
|
|
2344
|
-
"G": "GGGGG dd.MM.y E
|
|
2345
|
-
"M": "GGGGG dd.MM.y E
|
|
2346
|
-
"y": "GGGGG dd.MM.y E
|
|
2345
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2346
|
+
"G": "GGGGG dd.MM.y E – GGGGG dd.MM.y E",
|
|
2347
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2348
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
2347
2349
|
},
|
|
2348
2350
|
"GyMMM": {
|
|
2349
2351
|
"G": "G MMM y G – G MMM y",
|
|
2350
|
-
"M": "G MMM
|
|
2351
|
-
"y": "G MMM y
|
|
2352
|
+
"M": "G MMM – MMM y",
|
|
2353
|
+
"y": "G MMM y – MMM y"
|
|
2352
2354
|
},
|
|
2353
2355
|
"GyMMMd": {
|
|
2354
2356
|
"d": "G d–d MMM y",
|
|
2355
|
-
"G": "G d MMM y
|
|
2356
|
-
"M": "G d MMM
|
|
2357
|
-
"y": "G d MMM y
|
|
2357
|
+
"G": "G d MMM y – G d MMM y",
|
|
2358
|
+
"M": "G d MMM – d MMM y",
|
|
2359
|
+
"y": "G d MMM y – d MMM y"
|
|
2358
2360
|
},
|
|
2359
2361
|
"GyMMMEd": {
|
|
2360
|
-
"d": "G d MMM E
|
|
2361
|
-
"G": "G d MMM y E
|
|
2362
|
-
"M": "G d MMM E
|
|
2363
|
-
"y": "G d MMM y E
|
|
2362
|
+
"d": "G d MMM E – d MMM E y",
|
|
2363
|
+
"G": "G d MMM y E – G d MMM y E",
|
|
2364
|
+
"M": "G d MMM E – d MMM E y",
|
|
2365
|
+
"y": "G d MMM y E – d MMM y E"
|
|
2364
2366
|
},
|
|
2365
2367
|
"h": {
|
|
2366
|
-
"a": "h
|
|
2367
|
-
"h": "h–h
|
|
2368
|
+
"a": "h a – h a",
|
|
2369
|
+
"h": "h–h a"
|
|
2368
2370
|
},
|
|
2369
2371
|
"H": {
|
|
2370
2372
|
"H": "HH–HH"
|
|
2371
2373
|
},
|
|
2372
2374
|
"hm": {
|
|
2373
|
-
"a": "h:mm
|
|
2374
|
-
"h": "h:mm–h:mm
|
|
2375
|
-
"m": "h:mm–h:mm
|
|
2375
|
+
"a": "h:mm a – h:mm a",
|
|
2376
|
+
"h": "h:mm–h:mm a",
|
|
2377
|
+
"m": "h:mm–h:mm a"
|
|
2376
2378
|
},
|
|
2377
2379
|
"Hm": {
|
|
2378
2380
|
"H": "HH:mm–HH:mm",
|
|
2379
2381
|
"m": "HH:mm–HH:mm"
|
|
2380
2382
|
},
|
|
2381
2383
|
"hmv": {
|
|
2382
|
-
"a": "h:mm
|
|
2383
|
-
"h": "h:mm–h:mm
|
|
2384
|
-
"m": "h:mm–h:mm
|
|
2384
|
+
"a": "h:mm a – h:mm a v",
|
|
2385
|
+
"h": "h:mm–h:mm a v",
|
|
2386
|
+
"m": "h:mm–h:mm a v"
|
|
2385
2387
|
},
|
|
2386
2388
|
"Hmv": {
|
|
2387
2389
|
"H": "HH:mm–HH:mm v",
|
|
2388
2390
|
"m": "HH:mm–HH:mm v"
|
|
2389
2391
|
},
|
|
2390
2392
|
"hv": {
|
|
2391
|
-
"a": "h
|
|
2392
|
-
"h": "h–h
|
|
2393
|
+
"a": "h a – h a v",
|
|
2394
|
+
"h": "h–h a v"
|
|
2393
2395
|
},
|
|
2394
2396
|
"Hv": {
|
|
2395
2397
|
"H": "HH–HH v"
|
|
@@ -2398,66 +2400,66 @@
|
|
|
2398
2400
|
"M": "MM–MM"
|
|
2399
2401
|
},
|
|
2400
2402
|
"Md": {
|
|
2401
|
-
"d": "dd/MM
|
|
2402
|
-
"M": "dd/MM
|
|
2403
|
+
"d": "dd/MM – dd/MM",
|
|
2404
|
+
"M": "dd/MM – dd/MM"
|
|
2403
2405
|
},
|
|
2404
2406
|
"MEd": {
|
|
2405
|
-
"d": "dd/MM E
|
|
2406
|
-
"M": "dd/MM E
|
|
2407
|
+
"d": "dd/MM E – dd/MM E",
|
|
2408
|
+
"M": "dd/MM E – dd/MM E"
|
|
2407
2409
|
},
|
|
2408
2410
|
"MMM": {
|
|
2409
2411
|
"M": "MMM–MMM"
|
|
2410
2412
|
},
|
|
2411
2413
|
"MMMd": {
|
|
2412
|
-
"d": "d
|
|
2413
|
-
"M": "d MMM
|
|
2414
|
+
"d": "d – d MMM",
|
|
2415
|
+
"M": "d MMM – d MMM"
|
|
2414
2416
|
},
|
|
2415
2417
|
"MMMEd": {
|
|
2416
|
-
"d": "d MMM E
|
|
2417
|
-
"M": "d MMM E
|
|
2418
|
+
"d": "d MMM E – d MMM E",
|
|
2419
|
+
"M": "d MMM E – d MMM E"
|
|
2418
2420
|
},
|
|
2419
2421
|
"y": {
|
|
2420
2422
|
"y": "G y–y",
|
|
2421
2423
|
"G": "G y–G y"
|
|
2422
2424
|
},
|
|
2423
2425
|
"yM": {
|
|
2424
|
-
"M": "GGGGG M/y
|
|
2425
|
-
"y": "GGGGG M/y
|
|
2426
|
-
"G": "GGGGG M/y
|
|
2426
|
+
"M": "GGGGG M/y – M/y",
|
|
2427
|
+
"y": "GGGGG M/y – M/y",
|
|
2428
|
+
"G": "GGGGG M/y – GGGGG M/y"
|
|
2427
2429
|
},
|
|
2428
2430
|
"yMd": {
|
|
2429
|
-
"d": "GGGGG dd.MM.y
|
|
2430
|
-
"M": "GGGGG dd.MM.y
|
|
2431
|
-
"y": "GGGGG dd.MM.y
|
|
2432
|
-
"G": "GGGGG dd.MM.y
|
|
2431
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
2432
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
2433
|
+
"y": "GGGGG dd.MM.y – dd.MM.y",
|
|
2434
|
+
"G": "GGGGG dd.MM.y – GGGGG dd.MM.y"
|
|
2433
2435
|
},
|
|
2434
2436
|
"yMEd": {
|
|
2435
|
-
"d": "GGGGG dd.MM.y E
|
|
2436
|
-
"M": "GGGGG dd.MM.y E
|
|
2437
|
-
"y": "GGGGG dd.MM.y E
|
|
2438
|
-
"G": "GGGGG dd.MM.y E
|
|
2437
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2438
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2439
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2440
|
+
"G": "GGGGG dd.MM.y E – GGGGG dd.MM.y E"
|
|
2439
2441
|
},
|
|
2440
2442
|
"yMMM": {
|
|
2441
2443
|
"M": "G MMM–MMM y",
|
|
2442
|
-
"y": "G MMM y
|
|
2443
|
-
"G": "G MMM y
|
|
2444
|
+
"y": "G MMM y – MMM y",
|
|
2445
|
+
"G": "G MMM y – G MMM y"
|
|
2444
2446
|
},
|
|
2445
2447
|
"yMMMd": {
|
|
2446
2448
|
"d": "G d–d MMM y",
|
|
2447
|
-
"M": "G d MMM
|
|
2448
|
-
"y": "G d MMM y
|
|
2449
|
-
"G": "G d MMM y
|
|
2449
|
+
"M": "G d MMM – d MMM y",
|
|
2450
|
+
"y": "G d MMM y – d MMM y",
|
|
2451
|
+
"G": "G d MMM y – G d MMM y"
|
|
2450
2452
|
},
|
|
2451
2453
|
"yMMMEd": {
|
|
2452
|
-
"d": "G d MMM y E
|
|
2453
|
-
"M": "G d MMM y E
|
|
2454
|
-
"y": "G d MMM y E
|
|
2455
|
-
"G": "G d MMM y E
|
|
2454
|
+
"d": "G d MMM y E – d MMM y E",
|
|
2455
|
+
"M": "G d MMM y E – d MMM y E",
|
|
2456
|
+
"y": "G d MMM y E – d MMM y E",
|
|
2457
|
+
"G": "G d MMM y E – G d MMM y E"
|
|
2456
2458
|
},
|
|
2457
2459
|
"yMMMM": {
|
|
2458
|
-
"M": "G MMMM
|
|
2459
|
-
"y": "G MMMM y
|
|
2460
|
-
"G": "G MMMM y
|
|
2460
|
+
"M": "G MMMM – MMMM y",
|
|
2461
|
+
"y": "G MMMM y – MMMM y",
|
|
2462
|
+
"G": "G MMMM y – G MMMM y"
|
|
2461
2463
|
}
|
|
2462
2464
|
}
|
|
2463
2465
|
},
|
|
@@ -2816,20 +2818,20 @@
|
|
|
2816
2818
|
"EBhm": "E B h:mm",
|
|
2817
2819
|
"EBhms": "E B h:mm:ss",
|
|
2818
2820
|
"Ed": "d E",
|
|
2819
|
-
"Ehm": "E h:mm
|
|
2821
|
+
"Ehm": "E a h:mm",
|
|
2820
2822
|
"EHm": "E HH:mm",
|
|
2821
|
-
"Ehms": "E h:mm:ss
|
|
2823
|
+
"Ehms": "E a h:mm:ss",
|
|
2822
2824
|
"EHms": "E HH:mm:ss",
|
|
2823
2825
|
"Gy": "G y",
|
|
2824
2826
|
"GyMd": "d/M/y GGGGG",
|
|
2825
2827
|
"GyMMM": "G MMM y",
|
|
2826
2828
|
"GyMMMd": "G d MMM y",
|
|
2827
2829
|
"GyMMMEd": "G d MMM y E",
|
|
2828
|
-
"h": "h
|
|
2830
|
+
"h": "h a",
|
|
2829
2831
|
"H": "HH",
|
|
2830
|
-
"hm": "h:mm
|
|
2832
|
+
"hm": "h:mm a",
|
|
2831
2833
|
"Hm": "HH:mm",
|
|
2832
|
-
"hms": "h:mm:ss
|
|
2834
|
+
"hms": "h:mm:ss a",
|
|
2833
2835
|
"Hms": "HH:mm:ss",
|
|
2834
2836
|
"M": "L",
|
|
2835
2837
|
"Md": "dd/MM",
|
|
@@ -2868,13 +2870,13 @@
|
|
|
2868
2870
|
"Year": "{1} {0}"
|
|
2869
2871
|
},
|
|
2870
2872
|
"intervalFormats": {
|
|
2871
|
-
"intervalFormatFallback": "{0}
|
|
2873
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2872
2874
|
"Bh": {
|
|
2873
|
-
"B": "B h
|
|
2875
|
+
"B": "B h – B h",
|
|
2874
2876
|
"h": "B h–h"
|
|
2875
2877
|
},
|
|
2876
2878
|
"Bhm": {
|
|
2877
|
-
"B": "B h:mm
|
|
2879
|
+
"B": "B h:mm – B h:mm",
|
|
2878
2880
|
"h": "B h:mm–h:mm",
|
|
2879
2881
|
"m": "B h:mm–h:mm"
|
|
2880
2882
|
},
|
|
@@ -2886,67 +2888,67 @@
|
|
|
2886
2888
|
"y": "G y–y"
|
|
2887
2889
|
},
|
|
2888
2890
|
"GyM": {
|
|
2889
|
-
"G": "GGGGG MM.y
|
|
2890
|
-
"M": "GGGGG MM.y
|
|
2891
|
-
"y": "GGGGG MM.y
|
|
2891
|
+
"G": "GGGGG MM.y – GGGGG MM.y",
|
|
2892
|
+
"M": "GGGGG MM.y – MM.y",
|
|
2893
|
+
"y": "GGGGG MM.y – MM.y"
|
|
2892
2894
|
},
|
|
2893
2895
|
"GyMd": {
|
|
2894
|
-
"d": "GGGGG dd.MM.y
|
|
2896
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
2895
2897
|
"G": "GGGGG dd.MM.y GGGGG – dd.MM.y",
|
|
2896
|
-
"M": "GGGGG dd.MM.y
|
|
2897
|
-
"y": "GGGGG dd.MM.y
|
|
2898
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
2899
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
2898
2900
|
},
|
|
2899
2901
|
"GyMEd": {
|
|
2900
|
-
"d": "GGGGG dd.MM.y E
|
|
2901
|
-
"G": "GGGGG dd.MM.y E
|
|
2902
|
-
"M": "GGGGG dd.MM.y E
|
|
2903
|
-
"y": "GGGGG dd.MM.y E
|
|
2902
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2903
|
+
"G": "GGGGG dd.MM.y E – GGGGG dd.MM.y E",
|
|
2904
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2905
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
2904
2906
|
},
|
|
2905
2907
|
"GyMMM": {
|
|
2906
2908
|
"G": "G MMM y G – G MMM y",
|
|
2907
|
-
"M": "G MMM
|
|
2908
|
-
"y": "G MMM y
|
|
2909
|
+
"M": "G MMM – MMM y",
|
|
2910
|
+
"y": "G MMM y – MMM y"
|
|
2909
2911
|
},
|
|
2910
2912
|
"GyMMMd": {
|
|
2911
2913
|
"d": "G d–d MMM y",
|
|
2912
|
-
"G": "G d MMM y
|
|
2913
|
-
"M": "G d MMM
|
|
2914
|
-
"y": "G d MMM y
|
|
2914
|
+
"G": "G d MMM y – G d MMM y",
|
|
2915
|
+
"M": "G d MMM – d MMM y",
|
|
2916
|
+
"y": "G d MMM y – d MMM y"
|
|
2915
2917
|
},
|
|
2916
2918
|
"GyMMMEd": {
|
|
2917
|
-
"d": "G d MMM E
|
|
2918
|
-
"G": "G d MMM y E
|
|
2919
|
-
"M": "G d MMM E
|
|
2920
|
-
"y": "G d MMM y E
|
|
2919
|
+
"d": "G d MMM E – d MMM E y",
|
|
2920
|
+
"G": "G d MMM y E – G d MMM y E",
|
|
2921
|
+
"M": "G d MMM E – d MMM E y",
|
|
2922
|
+
"y": "G d MMM y E – d MMM y E"
|
|
2921
2923
|
},
|
|
2922
2924
|
"h": {
|
|
2923
|
-
"a": "h
|
|
2924
|
-
"h": "h–h
|
|
2925
|
+
"a": "h a – h a",
|
|
2926
|
+
"h": "h–h a"
|
|
2925
2927
|
},
|
|
2926
2928
|
"H": {
|
|
2927
2929
|
"H": "HH–HH"
|
|
2928
2930
|
},
|
|
2929
2931
|
"hm": {
|
|
2930
|
-
"a": "h:mm
|
|
2931
|
-
"h": "h:mm–h:mm
|
|
2932
|
-
"m": "h:mm–h:mm
|
|
2932
|
+
"a": "h:mm a – h:mm a",
|
|
2933
|
+
"h": "h:mm–h:mm a",
|
|
2934
|
+
"m": "h:mm–h:mm a"
|
|
2933
2935
|
},
|
|
2934
2936
|
"Hm": {
|
|
2935
2937
|
"H": "HH:mm–HH:mm",
|
|
2936
2938
|
"m": "HH:mm–HH:mm"
|
|
2937
2939
|
},
|
|
2938
2940
|
"hmv": {
|
|
2939
|
-
"a": "h:mm
|
|
2940
|
-
"h": "h:mm–h:mm
|
|
2941
|
-
"m": "h:mm–h:mm
|
|
2941
|
+
"a": "h:mm a – h:mm a v",
|
|
2942
|
+
"h": "h:mm–h:mm a v",
|
|
2943
|
+
"m": "h:mm–h:mm a v"
|
|
2942
2944
|
},
|
|
2943
2945
|
"Hmv": {
|
|
2944
2946
|
"H": "HH:mm–HH:mm v",
|
|
2945
2947
|
"m": "HH:mm–HH:mm v"
|
|
2946
2948
|
},
|
|
2947
2949
|
"hv": {
|
|
2948
|
-
"a": "h
|
|
2949
|
-
"h": "h–h
|
|
2950
|
+
"a": "h a – h a v",
|
|
2951
|
+
"h": "h–h a v"
|
|
2950
2952
|
},
|
|
2951
2953
|
"Hv": {
|
|
2952
2954
|
"H": "HH–HH v"
|
|
@@ -2955,58 +2957,58 @@
|
|
|
2955
2957
|
"M": "MM–MM"
|
|
2956
2958
|
},
|
|
2957
2959
|
"Md": {
|
|
2958
|
-
"d": "dd/MM
|
|
2959
|
-
"M": "dd/MM
|
|
2960
|
+
"d": "dd/MM – dd/MM",
|
|
2961
|
+
"M": "dd/MM – dd/MM"
|
|
2960
2962
|
},
|
|
2961
2963
|
"MEd": {
|
|
2962
|
-
"d": "dd/MM E
|
|
2963
|
-
"M": "dd/MM E
|
|
2964
|
+
"d": "dd/MM E – dd/MM E",
|
|
2965
|
+
"M": "dd/MM E – dd/MM E"
|
|
2964
2966
|
},
|
|
2965
2967
|
"MMM": {
|
|
2966
2968
|
"M": "MMM–MMM"
|
|
2967
2969
|
},
|
|
2968
2970
|
"MMMd": {
|
|
2969
|
-
"d": "d
|
|
2970
|
-
"M": "d MMM
|
|
2971
|
+
"d": "d – d MMM",
|
|
2972
|
+
"M": "d MMM – d MMM"
|
|
2971
2973
|
},
|
|
2972
2974
|
"MMMEd": {
|
|
2973
|
-
"d": "d MMM E
|
|
2974
|
-
"M": "d MMM E
|
|
2975
|
+
"d": "d MMM E – d MMM E",
|
|
2976
|
+
"M": "d MMM E – d MMM E"
|
|
2975
2977
|
},
|
|
2976
2978
|
"y": {
|
|
2977
2979
|
"y": "G y–y"
|
|
2978
2980
|
},
|
|
2979
2981
|
"yM": {
|
|
2980
|
-
"M": "GGGGG M/y
|
|
2981
|
-
"y": "GGGGG M/y
|
|
2982
|
+
"M": "GGGGG M/y – M/y",
|
|
2983
|
+
"y": "GGGGG M/y – M/y"
|
|
2982
2984
|
},
|
|
2983
2985
|
"yMd": {
|
|
2984
|
-
"d": "GGGGG dd.MM.y
|
|
2985
|
-
"M": "GGGGG dd.MM.y
|
|
2986
|
-
"y": "GGGGG dd.MM.y
|
|
2986
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
2987
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
2988
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
2987
2989
|
},
|
|
2988
2990
|
"yMEd": {
|
|
2989
|
-
"d": "GGGGG dd.MM.y E
|
|
2990
|
-
"M": "GGGGG dd.MM.y E
|
|
2991
|
-
"y": "GGGGG dd.MM.y E
|
|
2991
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2992
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
2993
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
2992
2994
|
},
|
|
2993
2995
|
"yMMM": {
|
|
2994
2996
|
"M": "G MMM–MMM y",
|
|
2995
|
-
"y": "G MMM y
|
|
2997
|
+
"y": "G MMM y – MMM y"
|
|
2996
2998
|
},
|
|
2997
2999
|
"yMMMd": {
|
|
2998
3000
|
"d": "G d–d MMM y",
|
|
2999
|
-
"M": "G d MMM
|
|
3000
|
-
"y": "G d MMM y
|
|
3001
|
+
"M": "G d MMM – d MMM y",
|
|
3002
|
+
"y": "G d MMM y – d MMM y"
|
|
3001
3003
|
},
|
|
3002
3004
|
"yMMMEd": {
|
|
3003
|
-
"d": "G d MMM y E
|
|
3004
|
-
"M": "G d MMM y E
|
|
3005
|
-
"y": "G d MMM y E
|
|
3005
|
+
"d": "G d MMM y E – d MMM y E",
|
|
3006
|
+
"M": "G d MMM y E – d MMM y E",
|
|
3007
|
+
"y": "G d MMM y E – d MMM y E"
|
|
3006
3008
|
},
|
|
3007
3009
|
"yMMMM": {
|
|
3008
|
-
"M": "G MMMM
|
|
3009
|
-
"y": "G MMMM y
|
|
3010
|
+
"M": "G MMMM – MMMM y",
|
|
3011
|
+
"y": "G MMMM y – MMMM y"
|
|
3010
3012
|
}
|
|
3011
3013
|
}
|
|
3012
3014
|
},
|
|
@@ -3353,20 +3355,20 @@
|
|
|
3353
3355
|
"EBhm": "E B h:mm",
|
|
3354
3356
|
"EBhms": "E B h:mm:ss",
|
|
3355
3357
|
"Ed": "d E",
|
|
3356
|
-
"Ehm": "E h:mm
|
|
3358
|
+
"Ehm": "E a h:mm",
|
|
3357
3359
|
"EHm": "E HH:mm",
|
|
3358
|
-
"Ehms": "E h:mm:ss
|
|
3360
|
+
"Ehms": "E a h:mm:ss",
|
|
3359
3361
|
"EHms": "E HH:mm:ss",
|
|
3360
3362
|
"Gy": "G y",
|
|
3361
3363
|
"GyMd": "d/M/y GGGGG",
|
|
3362
3364
|
"GyMMM": "G MMM y",
|
|
3363
3365
|
"GyMMMd": "G d MMM y",
|
|
3364
3366
|
"GyMMMEd": "G d MMM y E",
|
|
3365
|
-
"h": "h
|
|
3367
|
+
"h": "h a",
|
|
3366
3368
|
"H": "HH",
|
|
3367
|
-
"hm": "h:mm
|
|
3369
|
+
"hm": "h:mm a",
|
|
3368
3370
|
"Hm": "HH:mm",
|
|
3369
|
-
"hms": "h:mm:ss
|
|
3371
|
+
"hms": "h:mm:ss a",
|
|
3370
3372
|
"Hms": "HH:mm:ss",
|
|
3371
3373
|
"M": "L",
|
|
3372
3374
|
"Md": "dd/MM",
|
|
@@ -3405,13 +3407,13 @@
|
|
|
3405
3407
|
"Year": "{1} {0}"
|
|
3406
3408
|
},
|
|
3407
3409
|
"intervalFormats": {
|
|
3408
|
-
"intervalFormatFallback": "{0}
|
|
3410
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
3409
3411
|
"Bh": {
|
|
3410
|
-
"B": "B h
|
|
3412
|
+
"B": "B h – B h",
|
|
3411
3413
|
"h": "B h–h"
|
|
3412
3414
|
},
|
|
3413
3415
|
"Bhm": {
|
|
3414
|
-
"B": "B h:mm
|
|
3416
|
+
"B": "B h:mm – B h:mm",
|
|
3415
3417
|
"h": "B h:mm–h:mm",
|
|
3416
3418
|
"m": "B h:mm–h:mm"
|
|
3417
3419
|
},
|
|
@@ -3423,67 +3425,67 @@
|
|
|
3423
3425
|
"y": "G y–y"
|
|
3424
3426
|
},
|
|
3425
3427
|
"GyM": {
|
|
3426
|
-
"G": "GGGGG MM.y
|
|
3427
|
-
"M": "GGGGG MM.y
|
|
3428
|
-
"y": "GGGGG MM.y
|
|
3428
|
+
"G": "GGGGG MM.y – GGGGG MM.y",
|
|
3429
|
+
"M": "GGGGG MM.y – MM.y",
|
|
3430
|
+
"y": "GGGGG MM.y – MM.y"
|
|
3429
3431
|
},
|
|
3430
3432
|
"GyMd": {
|
|
3431
|
-
"d": "GGGGG dd.MM.y
|
|
3433
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
3432
3434
|
"G": "GGGGG dd.MM.y GGGGG – dd.MM.y",
|
|
3433
|
-
"M": "GGGGG dd.MM.y
|
|
3434
|
-
"y": "GGGGG dd.MM.y
|
|
3435
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
3436
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
3435
3437
|
},
|
|
3436
3438
|
"GyMEd": {
|
|
3437
|
-
"d": "GGGGG dd.MM.y E
|
|
3438
|
-
"G": "GGGGG dd.MM.y E
|
|
3439
|
-
"M": "GGGGG dd.MM.y E
|
|
3440
|
-
"y": "GGGGG dd.MM.y E
|
|
3439
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
3440
|
+
"G": "GGGGG dd.MM.y E – GGGGG dd.MM.y E",
|
|
3441
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
3442
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
3441
3443
|
},
|
|
3442
3444
|
"GyMMM": {
|
|
3443
3445
|
"G": "G MMM y G – G MMM y",
|
|
3444
|
-
"M": "G MMM
|
|
3445
|
-
"y": "G MMM y
|
|
3446
|
+
"M": "G MMM – MMM y",
|
|
3447
|
+
"y": "G MMM y – MMM y"
|
|
3446
3448
|
},
|
|
3447
3449
|
"GyMMMd": {
|
|
3448
3450
|
"d": "G d–d MMM y",
|
|
3449
|
-
"G": "G d MMM y
|
|
3450
|
-
"M": "G d MMM
|
|
3451
|
-
"y": "G d MMM y
|
|
3451
|
+
"G": "G d MMM y – G d MMM y",
|
|
3452
|
+
"M": "G d MMM – d MMM y",
|
|
3453
|
+
"y": "G d MMM y – d MMM y"
|
|
3452
3454
|
},
|
|
3453
3455
|
"GyMMMEd": {
|
|
3454
|
-
"d": "G d MMM E
|
|
3455
|
-
"G": "G d MMM y E
|
|
3456
|
-
"M": "G d MMM E
|
|
3457
|
-
"y": "G d MMM y E
|
|
3456
|
+
"d": "G d MMM E – d MMM E y",
|
|
3457
|
+
"G": "G d MMM y E – G d MMM y E",
|
|
3458
|
+
"M": "G d MMM E – d MMM E y",
|
|
3459
|
+
"y": "G d MMM y E – d MMM y E"
|
|
3458
3460
|
},
|
|
3459
3461
|
"h": {
|
|
3460
|
-
"a": "h
|
|
3461
|
-
"h": "h–h
|
|
3462
|
+
"a": "h a – h a",
|
|
3463
|
+
"h": "h–h a"
|
|
3462
3464
|
},
|
|
3463
3465
|
"H": {
|
|
3464
3466
|
"H": "HH–HH"
|
|
3465
3467
|
},
|
|
3466
3468
|
"hm": {
|
|
3467
|
-
"a": "h:mm
|
|
3468
|
-
"h": "h:mm–h:mm
|
|
3469
|
-
"m": "h:mm–h:mm
|
|
3469
|
+
"a": "h:mm a – h:mm a",
|
|
3470
|
+
"h": "h:mm–h:mm a",
|
|
3471
|
+
"m": "h:mm–h:mm a"
|
|
3470
3472
|
},
|
|
3471
3473
|
"Hm": {
|
|
3472
3474
|
"H": "HH:mm–HH:mm",
|
|
3473
3475
|
"m": "HH:mm–HH:mm"
|
|
3474
3476
|
},
|
|
3475
3477
|
"hmv": {
|
|
3476
|
-
"a": "h:mm
|
|
3477
|
-
"h": "h:mm–h:mm
|
|
3478
|
-
"m": "h:mm–h:mm
|
|
3478
|
+
"a": "h:mm a – h:mm a v",
|
|
3479
|
+
"h": "h:mm–h:mm a v",
|
|
3480
|
+
"m": "h:mm–h:mm a v"
|
|
3479
3481
|
},
|
|
3480
3482
|
"Hmv": {
|
|
3481
3483
|
"H": "HH:mm–HH:mm v",
|
|
3482
3484
|
"m": "HH:mm–HH:mm v"
|
|
3483
3485
|
},
|
|
3484
3486
|
"hv": {
|
|
3485
|
-
"a": "h
|
|
3486
|
-
"h": "h–h
|
|
3487
|
+
"a": "h a – h a v",
|
|
3488
|
+
"h": "h–h a v"
|
|
3487
3489
|
},
|
|
3488
3490
|
"Hv": {
|
|
3489
3491
|
"H": "HH–HH v"
|
|
@@ -3492,58 +3494,58 @@
|
|
|
3492
3494
|
"M": "MM–MM"
|
|
3493
3495
|
},
|
|
3494
3496
|
"Md": {
|
|
3495
|
-
"d": "dd/MM
|
|
3496
|
-
"M": "dd/MM
|
|
3497
|
+
"d": "dd/MM – dd/MM",
|
|
3498
|
+
"M": "dd/MM – dd/MM"
|
|
3497
3499
|
},
|
|
3498
3500
|
"MEd": {
|
|
3499
|
-
"d": "dd/MM E
|
|
3500
|
-
"M": "dd/MM E
|
|
3501
|
+
"d": "dd/MM E – dd/MM E",
|
|
3502
|
+
"M": "dd/MM E – dd/MM E"
|
|
3501
3503
|
},
|
|
3502
3504
|
"MMM": {
|
|
3503
3505
|
"M": "MMM–MMM"
|
|
3504
3506
|
},
|
|
3505
3507
|
"MMMd": {
|
|
3506
|
-
"d": "d
|
|
3507
|
-
"M": "d MMM
|
|
3508
|
+
"d": "d – d MMM",
|
|
3509
|
+
"M": "d MMM – d MMM"
|
|
3508
3510
|
},
|
|
3509
3511
|
"MMMEd": {
|
|
3510
|
-
"d": "d MMM E
|
|
3511
|
-
"M": "d MMM E
|
|
3512
|
+
"d": "d MMM E – d MMM E",
|
|
3513
|
+
"M": "d MMM E – d MMM E"
|
|
3512
3514
|
},
|
|
3513
3515
|
"y": {
|
|
3514
3516
|
"y": "G y–y"
|
|
3515
3517
|
},
|
|
3516
3518
|
"yM": {
|
|
3517
|
-
"M": "GGGGG M/y
|
|
3518
|
-
"y": "GGGGG M/y
|
|
3519
|
+
"M": "GGGGG M/y – M/y",
|
|
3520
|
+
"y": "GGGGG M/y – M/y"
|
|
3519
3521
|
},
|
|
3520
3522
|
"yMd": {
|
|
3521
|
-
"d": "GGGGG dd.MM.y
|
|
3522
|
-
"M": "GGGGG dd.MM.y
|
|
3523
|
-
"y": "GGGGG dd.MM.y
|
|
3523
|
+
"d": "GGGGG dd.MM.y – dd.MM.y",
|
|
3524
|
+
"M": "GGGGG dd.MM.y – dd.MM.y",
|
|
3525
|
+
"y": "GGGGG dd.MM.y – dd.MM.y"
|
|
3524
3526
|
},
|
|
3525
3527
|
"yMEd": {
|
|
3526
|
-
"d": "GGGGG dd.MM.y E
|
|
3527
|
-
"M": "GGGGG dd.MM.y E
|
|
3528
|
-
"y": "GGGGG dd.MM.y E
|
|
3528
|
+
"d": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
3529
|
+
"M": "GGGGG dd.MM.y E – dd.MM.y E",
|
|
3530
|
+
"y": "GGGGG dd.MM.y E – dd.MM.y E"
|
|
3529
3531
|
},
|
|
3530
3532
|
"yMMM": {
|
|
3531
3533
|
"M": "G MMM–MMM y",
|
|
3532
|
-
"y": "G MMM y
|
|
3534
|
+
"y": "G MMM y – MMM y"
|
|
3533
3535
|
},
|
|
3534
3536
|
"yMMMd": {
|
|
3535
3537
|
"d": "G d–d MMM y",
|
|
3536
|
-
"M": "G d MMM
|
|
3537
|
-
"y": "G d MMM y
|
|
3538
|
+
"M": "G d MMM – d MMM y",
|
|
3539
|
+
"y": "G d MMM y – d MMM y"
|
|
3538
3540
|
},
|
|
3539
3541
|
"yMMMEd": {
|
|
3540
|
-
"d": "G d MMM y E
|
|
3541
|
-
"M": "G d MMM y E
|
|
3542
|
-
"y": "G d MMM y E
|
|
3542
|
+
"d": "G d MMM y E – d MMM y E",
|
|
3543
|
+
"M": "G d MMM y E – d MMM y E",
|
|
3544
|
+
"y": "G d MMM y E – d MMM y E"
|
|
3543
3545
|
},
|
|
3544
3546
|
"yMMMM": {
|
|
3545
|
-
"M": "G MMMM
|
|
3546
|
-
"y": "G MMMM y
|
|
3547
|
+
"M": "G MMMM – MMMM y",
|
|
3548
|
+
"y": "G MMMM y – MMMM y"
|
|
3547
3549
|
}
|
|
3548
3550
|
}
|
|
3549
3551
|
},
|
|
@@ -4298,6 +4300,7 @@
|
|
|
4298
4300
|
"Cayman": "Cayman",
|
|
4299
4301
|
"Chicago": "Chicago",
|
|
4300
4302
|
"Chihuahua": "Chihuahua",
|
|
4303
|
+
"Ciudad_Juarez": "Ciudad Juárez",
|
|
4301
4304
|
"Costa_Rica": "Kosta Rika",
|
|
4302
4305
|
"Creston": "Creston",
|
|
4303
4306
|
"Cuiaba": "Cuiaba",
|
|
@@ -4935,10 +4938,12 @@
|
|
|
4935
4938
|
},
|
|
4936
4939
|
"power2": {
|
|
4937
4940
|
"compoundUnitPattern1": "{0}²",
|
|
4941
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
4938
4942
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4939
4943
|
},
|
|
4940
4944
|
"power3": {
|
|
4941
4945
|
"compoundUnitPattern1": "{0}³",
|
|
4946
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
4942
4947
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4943
4948
|
},
|
|
4944
4949
|
"times": {
|
|
@@ -5076,6 +5081,7 @@
|
|
|
5076
5081
|
},
|
|
5077
5082
|
"concentr-mole": {
|
|
5078
5083
|
"displayName": "mol",
|
|
5084
|
+
"unitPattern-count-one": "{0} mol",
|
|
5079
5085
|
"unitPattern-count-other": "{0} mol"
|
|
5080
5086
|
},
|
|
5081
5087
|
"consumption-liter-per-kilometer": {
|
|
@@ -5169,6 +5175,12 @@
|
|
|
5169
5175
|
"unitPattern-count-other": "{0} yıl",
|
|
5170
5176
|
"perUnitPattern": "{0}/y"
|
|
5171
5177
|
},
|
|
5178
|
+
"duration-quarter": {
|
|
5179
|
+
"displayName": "çeyrek",
|
|
5180
|
+
"unitPattern-count-one": "{0} çey.",
|
|
5181
|
+
"unitPattern-count-other": "{0} çey.",
|
|
5182
|
+
"perUnitPattern": "{0}/çeyrek"
|
|
5183
|
+
},
|
|
5172
5184
|
"duration-month": {
|
|
5173
5185
|
"displayName": "ay",
|
|
5174
5186
|
"unitPattern-count-one": "{0} ay",
|
|
@@ -5292,6 +5304,7 @@
|
|
|
5292
5304
|
},
|
|
5293
5305
|
"force-newton": {
|
|
5294
5306
|
"displayName": "newton",
|
|
5307
|
+
"unitPattern-count-one": "{0} N",
|
|
5295
5308
|
"unitPattern-count-other": "{0} N"
|
|
5296
5309
|
},
|
|
5297
5310
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
@@ -5321,22 +5334,37 @@
|
|
|
5321
5334
|
},
|
|
5322
5335
|
"graphics-em": {
|
|
5323
5336
|
"displayName": "em",
|
|
5337
|
+
"unitPattern-count-one": "{0} em",
|
|
5324
5338
|
"unitPattern-count-other": "{0} em"
|
|
5325
5339
|
},
|
|
5326
5340
|
"graphics-pixel": {
|
|
5327
5341
|
"displayName": "piksel",
|
|
5342
|
+
"unitPattern-count-one": "{0} px",
|
|
5328
5343
|
"unitPattern-count-other": "{0} px"
|
|
5329
5344
|
},
|
|
5330
5345
|
"graphics-megapixel": {
|
|
5331
5346
|
"displayName": "megapiksel",
|
|
5347
|
+
"unitPattern-count-one": "{0} MP",
|
|
5332
5348
|
"unitPattern-count-other": "{0} MP"
|
|
5333
5349
|
},
|
|
5334
5350
|
"graphics-pixel-per-centimeter": {
|
|
5335
5351
|
"displayName": "ppcm",
|
|
5352
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5336
5353
|
"unitPattern-count-other": "{0} ppcm"
|
|
5337
5354
|
},
|
|
5338
5355
|
"graphics-pixel-per-inch": {
|
|
5339
5356
|
"displayName": "ppi",
|
|
5357
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5358
|
+
"unitPattern-count-other": "{0} ppi"
|
|
5359
|
+
},
|
|
5360
|
+
"graphics-dot-per-centimeter": {
|
|
5361
|
+
"displayName": "ppcm",
|
|
5362
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5363
|
+
"unitPattern-count-other": "{0} ppcm"
|
|
5364
|
+
},
|
|
5365
|
+
"graphics-dot-per-inch": {
|
|
5366
|
+
"displayName": "ppi",
|
|
5367
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5340
5368
|
"unitPattern-count-other": "{0} ppi"
|
|
5341
5369
|
},
|
|
5342
5370
|
"graphics-dot": {
|
|
@@ -5346,6 +5374,7 @@
|
|
|
5346
5374
|
},
|
|
5347
5375
|
"length-earth-radius": {
|
|
5348
5376
|
"displayName": "R⊕",
|
|
5377
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5349
5378
|
"unitPattern-count-other": "{0} R⊕"
|
|
5350
5379
|
},
|
|
5351
5380
|
"length-kilometer": {
|
|
@@ -5465,10 +5494,12 @@
|
|
|
5465
5494
|
},
|
|
5466
5495
|
"light-candela": {
|
|
5467
5496
|
"displayName": "cd",
|
|
5497
|
+
"unitPattern-count-one": "{0} cd",
|
|
5468
5498
|
"unitPattern-count-other": "{0} cd"
|
|
5469
5499
|
},
|
|
5470
5500
|
"light-lumen": {
|
|
5471
5501
|
"displayName": "lm",
|
|
5502
|
+
"unitPattern-count-one": "{0} lm",
|
|
5472
5503
|
"unitPattern-count-other": "{0} lm"
|
|
5473
5504
|
},
|
|
5474
5505
|
"light-solar-luminosity": {
|
|
@@ -5476,7 +5507,7 @@
|
|
|
5476
5507
|
"unitPattern-count-one": "{0} L☉",
|
|
5477
5508
|
"unitPattern-count-other": "{0} L☉"
|
|
5478
5509
|
},
|
|
5479
|
-
"mass-
|
|
5510
|
+
"mass-tonne": {
|
|
5480
5511
|
"displayName": "t",
|
|
5481
5512
|
"unitPattern-count-one": "{0} t",
|
|
5482
5513
|
"unitPattern-count-other": "{0} t"
|
|
@@ -5602,6 +5633,7 @@
|
|
|
5602
5633
|
},
|
|
5603
5634
|
"pressure-bar": {
|
|
5604
5635
|
"displayName": "bar",
|
|
5636
|
+
"unitPattern-count-one": "{0} bar",
|
|
5605
5637
|
"unitPattern-count-other": "{0} bar"
|
|
5606
5638
|
},
|
|
5607
5639
|
"pressure-millibar": {
|
|
@@ -5616,6 +5648,7 @@
|
|
|
5616
5648
|
},
|
|
5617
5649
|
"pressure-pascal": {
|
|
5618
5650
|
"displayName": "Pa",
|
|
5651
|
+
"unitPattern-count-one": "{0} Pa",
|
|
5619
5652
|
"unitPattern-count-other": "{0} Pa"
|
|
5620
5653
|
},
|
|
5621
5654
|
"pressure-hectopascal": {
|
|
@@ -5845,6 +5878,7 @@
|
|
|
5845
5878
|
},
|
|
5846
5879
|
"volume-jigger": {
|
|
5847
5880
|
"displayName": "jigger",
|
|
5881
|
+
"unitPattern-count-one": "{0} jigger",
|
|
5848
5882
|
"unitPattern-count-other": "{0} jigger"
|
|
5849
5883
|
},
|
|
5850
5884
|
"volume-pinch": {
|
|
@@ -5966,41 +6000,56 @@
|
|
|
5966
6000
|
},
|
|
5967
6001
|
"eras-gregorian": {
|
|
5968
6002
|
"0": {
|
|
6003
|
+
"_code": "gregory-inverse",
|
|
6004
|
+
"_aliases": "bc bce",
|
|
5969
6005
|
"_end": "0-12-31"
|
|
5970
6006
|
},
|
|
5971
6007
|
"1": {
|
|
6008
|
+
"_code": "gregory",
|
|
6009
|
+
"_aliases": "ad ce",
|
|
5972
6010
|
"_start": "1-01-01"
|
|
5973
6011
|
}
|
|
5974
6012
|
},
|
|
5975
6013
|
"eras-islamic": {
|
|
5976
6014
|
"0": {
|
|
6015
|
+
"_code": "islamic",
|
|
6016
|
+
"_aliases": "ah",
|
|
5977
6017
|
"_start": "622-7-15"
|
|
5978
6018
|
}
|
|
5979
6019
|
},
|
|
5980
6020
|
"eras-persian": {
|
|
5981
6021
|
"0": {
|
|
6022
|
+
"_code": "persian",
|
|
6023
|
+
"_aliases": "ap",
|
|
5982
6024
|
"_start": "622-01-01"
|
|
5983
6025
|
}
|
|
5984
6026
|
},
|
|
5985
6027
|
"eras-buddhist": {
|
|
5986
6028
|
"0": {
|
|
6029
|
+
"_code": "buddhist",
|
|
6030
|
+
"_aliases": "be",
|
|
5987
6031
|
"_start": "-542-01-01"
|
|
5988
6032
|
}
|
|
5989
6033
|
},
|
|
5990
6034
|
"eras-japanese": {
|
|
5991
6035
|
"232": {
|
|
6036
|
+
"_code": "meiji",
|
|
5992
6037
|
"_start": "1868-9-8"
|
|
5993
6038
|
},
|
|
5994
6039
|
"233": {
|
|
6040
|
+
"_code": "taisho",
|
|
5995
6041
|
"_start": "1912-7-30"
|
|
5996
6042
|
},
|
|
5997
6043
|
"234": {
|
|
6044
|
+
"_code": "showa",
|
|
5998
6045
|
"_start": "1926-12-25"
|
|
5999
6046
|
},
|
|
6000
6047
|
"235": {
|
|
6048
|
+
"_code": "heisei",
|
|
6001
6049
|
"_start": "1989-1-8"
|
|
6002
6050
|
},
|
|
6003
6051
|
"236": {
|
|
6052
|
+
"_code": "reiwa",
|
|
6004
6053
|
"_start": "2019-5-1"
|
|
6005
6054
|
}
|
|
6006
6055
|
},
|
|
@@ -6035,5 +6084,10 @@
|
|
|
6035
6084
|
"noon": {
|
|
6036
6085
|
"_at": "12:00"
|
|
6037
6086
|
}
|
|
6038
|
-
}
|
|
6087
|
+
},
|
|
6088
|
+
"calendarPreference": [
|
|
6089
|
+
"gregorian",
|
|
6090
|
+
"islamic-civil",
|
|
6091
|
+
"islamic-tbla"
|
|
6092
|
+
]
|
|
6039
6093
|
}
|