@openui5/sap.ui.core 1.119.0 → 1.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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 +378 -250
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +124 -85
- 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 -29
- package/src/sap/ui/base/ManagedObjectMetadata.js +29 -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 +150 -80
- package/src/sap/ui/core/ComponentContainer.js +4 -3
- 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 +390 -706
- 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 +327 -151
- 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 +18 -8
- 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 +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/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 +195 -29
- 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 +1 -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/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/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 +24 -14
- 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 +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/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 +1 -1
- 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/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 +3 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +3 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +12 -2
- 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 +5 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/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 +3 -0
- 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 +35 -13
- package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- 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 +1 -1
- 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/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 +20 -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/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/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/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- 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/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 +22 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
- 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 +30 -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 +74 -4
- 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 +3 -0
- 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 +3 -0
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
- 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 +40 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
- 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/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 +36 -13
- 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 +6 -4
- 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 +194 -3
- 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/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -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 +51 -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/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 +360 -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čina",
|
|
7
7
|
"ab": "abcházčina",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"am": "amharčina",
|
|
22
22
|
"an": "aragónčina",
|
|
23
23
|
"ang": "stará angličtina",
|
|
24
|
+
"ann": "obolo",
|
|
24
25
|
"anp": "angika",
|
|
25
26
|
"ar": "arabčina",
|
|
26
27
|
"ar_001": "arabčina (moderná štandardná)",
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
"as": "ásamčina",
|
|
33
34
|
"asa": "asu",
|
|
34
35
|
"ast": "astúrčina",
|
|
36
|
+
"atj": "atikamekwčina",
|
|
35
37
|
"av": "avarčina",
|
|
36
38
|
"awa": "awadhi",
|
|
37
39
|
"ay": "aymarčina",
|
|
@@ -91,13 +93,21 @@
|
|
|
91
93
|
"ckb": "kurdčina (sorání)",
|
|
92
94
|
"ckb_alt-menu": "kurdčina (sorání)",
|
|
93
95
|
"ckb_alt-variant": "kurdčina (sorání)",
|
|
96
|
+
"clc": "chilcotin",
|
|
94
97
|
"co": "korzičtina",
|
|
95
98
|
"cop": "koptčina",
|
|
96
99
|
"cr": "krí",
|
|
100
|
+
"crg": "michif",
|
|
97
101
|
"crh": "krymská tatárčina",
|
|
102
|
+
"crj": "cree (juhovýchod)",
|
|
103
|
+
"crk": "plains cree",
|
|
104
|
+
"crl": "northern east cree",
|
|
105
|
+
"crm": "moose cree",
|
|
106
|
+
"crr": "karolínska algonkčina",
|
|
98
107
|
"crs": "seychelská kreolčina",
|
|
99
108
|
"cs": "čeština",
|
|
100
109
|
"csb": "kašubčina",
|
|
110
|
+
"csw": "swampy cree",
|
|
101
111
|
"cu": "cirkevná slovančina",
|
|
102
112
|
"cv": "čuvaština",
|
|
103
113
|
"cy": "waleština",
|
|
@@ -190,6 +200,7 @@
|
|
|
190
200
|
"ha": "hauština",
|
|
191
201
|
"hai": "haida",
|
|
192
202
|
"haw": "havajčina",
|
|
203
|
+
"hax": "haida (juh)",
|
|
193
204
|
"he": "hebrejčina",
|
|
194
205
|
"hi": "hindčina",
|
|
195
206
|
"hil": "hiligajnončina",
|
|
@@ -201,6 +212,7 @@
|
|
|
201
212
|
"ht": "haitská kreolčina",
|
|
202
213
|
"hu": "maďarčina",
|
|
203
214
|
"hup": "hupčina",
|
|
215
|
+
"hur": "halkomelem",
|
|
204
216
|
"hy": "arménčina",
|
|
205
217
|
"hz": "herero",
|
|
206
218
|
"ia": "interlingua",
|
|
@@ -211,6 +223,7 @@
|
|
|
211
223
|
"ig": "igboština",
|
|
212
224
|
"ii": "s’čchuanská iovčina",
|
|
213
225
|
"ik": "inupik",
|
|
226
|
+
"ikt": "inuktitut (západná Kanada)",
|
|
214
227
|
"ilo": "ilokánčina",
|
|
215
228
|
"inh": "inguština",
|
|
216
229
|
"io": "ido",
|
|
@@ -238,7 +251,7 @@
|
|
|
238
251
|
"kea": "kapverdčina",
|
|
239
252
|
"kfo": "koro",
|
|
240
253
|
"kg": "kongčina",
|
|
241
|
-
"kgp": "
|
|
254
|
+
"kgp": "kaingang",
|
|
242
255
|
"kha": "khasijčina",
|
|
243
256
|
"kho": "chotančina",
|
|
244
257
|
"khq": "západná songhajčina",
|
|
@@ -269,6 +282,7 @@
|
|
|
269
282
|
"kut": "kutenajčina",
|
|
270
283
|
"kv": "komijčina",
|
|
271
284
|
"kw": "kornčina",
|
|
285
|
+
"kwk": "kwakʼwala",
|
|
272
286
|
"ky": "kirgizština",
|
|
273
287
|
"la": "latinčina",
|
|
274
288
|
"lad": "židovská španielčina",
|
|
@@ -279,7 +293,7 @@
|
|
|
279
293
|
"lez": "lezginčina",
|
|
280
294
|
"lg": "gandčina",
|
|
281
295
|
"li": "limburčina",
|
|
282
|
-
"
|
|
296
|
+
"lil": "lillooet",
|
|
283
297
|
"lkt": "lakotčina",
|
|
284
298
|
"ln": "lingalčina",
|
|
285
299
|
"lo": "laoština",
|
|
@@ -287,6 +301,7 @@
|
|
|
287
301
|
"lou": "kreolčina (Louisiana)",
|
|
288
302
|
"loz": "lozi",
|
|
289
303
|
"lrc": "severné luri",
|
|
304
|
+
"lsm": "saamia",
|
|
290
305
|
"lt": "litovčina",
|
|
291
306
|
"lu": "lubčina (katanžská)",
|
|
292
307
|
"lua": "lubčina (luluánska)",
|
|
@@ -322,6 +337,7 @@
|
|
|
322
337
|
"mn": "mongolčina",
|
|
323
338
|
"mnc": "mandžuština",
|
|
324
339
|
"mni": "manípurčina",
|
|
340
|
+
"moe": "innu-aimunčina",
|
|
325
341
|
"moh": "mohawkčina",
|
|
326
342
|
"mos": "mossi",
|
|
327
343
|
"mr": "maráthčina",
|
|
@@ -369,6 +385,11 @@
|
|
|
369
385
|
"nzi": "nzima",
|
|
370
386
|
"oc": "okcitánčina",
|
|
371
387
|
"oj": "odžibva",
|
|
388
|
+
"ojb": "northwestern ojibwa",
|
|
389
|
+
"ojc": "centrálna odžibvejčina",
|
|
390
|
+
"ojs": "oji-cree",
|
|
391
|
+
"ojw": "ojibwa (západ)",
|
|
392
|
+
"oka": "okanagan",
|
|
372
393
|
"om": "oromčina",
|
|
373
394
|
"or": "uríjčina",
|
|
374
395
|
"os": "osetčina",
|
|
@@ -384,8 +405,10 @@
|
|
|
384
405
|
"peo": "stará perzština",
|
|
385
406
|
"phn": "feničtina",
|
|
386
407
|
"pi": "pálí",
|
|
408
|
+
"pis": "pidžin",
|
|
387
409
|
"pl": "poľština",
|
|
388
410
|
"pon": "pohnpeiština",
|
|
411
|
+
"pqm": "maliseet-passamaquoddy",
|
|
389
412
|
"prg": "pruština",
|
|
390
413
|
"pro": "stará okcitánčina",
|
|
391
414
|
"ps": "paštčina",
|
|
@@ -437,6 +460,7 @@
|
|
|
437
460
|
"sid": "sidamo",
|
|
438
461
|
"sk": "slovenčina",
|
|
439
462
|
"sl": "slovinčina",
|
|
463
|
+
"slh": "lushootseed (juh)",
|
|
440
464
|
"sm": "samojčina",
|
|
441
465
|
"sma": "saamčina (južná)",
|
|
442
466
|
"smj": "saamčina (lulská)",
|
|
@@ -453,6 +477,7 @@
|
|
|
453
477
|
"ss": "svazijčina",
|
|
454
478
|
"ssy": "saho",
|
|
455
479
|
"st": "sothčina (južná)",
|
|
480
|
+
"str": "straits salish",
|
|
456
481
|
"su": "sundčina",
|
|
457
482
|
"suk": "sukuma",
|
|
458
483
|
"sus": "susu",
|
|
@@ -464,13 +489,16 @@
|
|
|
464
489
|
"syc": "sýrčina (klasická)",
|
|
465
490
|
"syr": "sýrčina",
|
|
466
491
|
"ta": "tamilčina",
|
|
492
|
+
"tce": "tutchone (juh)",
|
|
467
493
|
"te": "telugčina",
|
|
468
494
|
"tem": "temne",
|
|
469
495
|
"teo": "teso",
|
|
470
496
|
"ter": "terêna",
|
|
471
497
|
"tet": "tetumčina",
|
|
472
498
|
"tg": "tadžičtina",
|
|
499
|
+
"tgx": "tagiš",
|
|
473
500
|
"th": "thajčina",
|
|
501
|
+
"tht": "tahltan",
|
|
474
502
|
"ti": "tigriňa",
|
|
475
503
|
"tig": "tigrejčina",
|
|
476
504
|
"tiv": "tiv",
|
|
@@ -483,12 +511,14 @@
|
|
|
483
511
|
"tn": "tswančina",
|
|
484
512
|
"to": "tongčina",
|
|
485
513
|
"tog": "ňasa tonga",
|
|
514
|
+
"tok": "toki pona",
|
|
486
515
|
"tpi": "novoguinejský pidžin",
|
|
487
516
|
"tr": "turečtina",
|
|
488
517
|
"trv": "taroko",
|
|
489
518
|
"ts": "tsongčina",
|
|
490
519
|
"tsi": "cimšjančina",
|
|
491
520
|
"tt": "tatárčina",
|
|
521
|
+
"ttm": "northern tutchone",
|
|
492
522
|
"tum": "tumbuka",
|
|
493
523
|
"tvl": "tuvalčina",
|
|
494
524
|
"tw": "twi",
|
|
@@ -517,6 +547,7 @@
|
|
|
517
547
|
"was": "washo",
|
|
518
548
|
"wbp": "warlpiri",
|
|
519
549
|
"wo": "wolofčina",
|
|
550
|
+
"wuu": "čínština (wu)",
|
|
520
551
|
"xal": "kalmyčtina",
|
|
521
552
|
"xh": "xhoština",
|
|
522
553
|
"xog": "soga",
|
|
@@ -526,7 +557,7 @@
|
|
|
526
557
|
"ybb": "yemba",
|
|
527
558
|
"yi": "jidiš",
|
|
528
559
|
"yo": "jorubčina",
|
|
529
|
-
"yrl": "
|
|
560
|
+
"yrl": "nheengatu",
|
|
530
561
|
"yue": "kantončina",
|
|
531
562
|
"yue_alt-menu": "čínština (kantonská)",
|
|
532
563
|
"za": "čuangčina",
|
|
@@ -546,181 +577,71 @@
|
|
|
546
577
|
"zza": "zaza"
|
|
547
578
|
},
|
|
548
579
|
"scripts": {
|
|
549
|
-
"Adlm": "
|
|
550
|
-
"Aghb": "Aghb",
|
|
551
|
-
"Ahom": "Ahom",
|
|
580
|
+
"Adlm": "adlam",
|
|
552
581
|
"Arab": "arabské",
|
|
553
582
|
"Arab-alt-variant": "perzsko-arabské",
|
|
554
583
|
"Aran": "nastaliq",
|
|
555
|
-
"Armi": "Armi",
|
|
556
584
|
"Armn": "arménske",
|
|
557
|
-
"Avst": "Avst",
|
|
558
585
|
"Bali": "balijský",
|
|
559
|
-
"Bamu": "Bamu",
|
|
560
|
-
"Bass": "Bass",
|
|
561
|
-
"Batk": "Batk",
|
|
562
586
|
"Beng": "bengálske",
|
|
563
|
-
"Bhks": "Bhks",
|
|
564
587
|
"Bopo": "bopomofo",
|
|
565
|
-
"Brah": "Brah",
|
|
566
588
|
"Brai": "braillovo",
|
|
567
|
-
"
|
|
568
|
-
"
|
|
569
|
-
"
|
|
570
|
-
"Cans": "Cans",
|
|
571
|
-
"Cari": "Cari",
|
|
572
|
-
"Cham": "Cham",
|
|
573
|
-
"Cher": "Cher",
|
|
574
|
-
"Chrs": "Chrs",
|
|
575
|
-
"Copt": "Copt",
|
|
576
|
-
"Cpmn": "Cpmn",
|
|
577
|
-
"Cprt": "Cprt",
|
|
589
|
+
"Cakm": "čakma",
|
|
590
|
+
"Cans": "zjednotené kanadské domorodé slabiky",
|
|
591
|
+
"Cher": "čerokézčina",
|
|
578
592
|
"Cyrl": "cyrilika",
|
|
579
593
|
"Deva": "dévanágarí",
|
|
580
|
-
"Diak": "Diak",
|
|
581
|
-
"Dogr": "Dogr",
|
|
582
|
-
"Dsrt": "Dsrt",
|
|
583
|
-
"Dupl": "Dupl",
|
|
584
594
|
"Egyp": "egyptské hieroglyfy",
|
|
585
|
-
"Elba": "Elba",
|
|
586
|
-
"Elym": "Elym",
|
|
587
595
|
"Ethi": "etiópske",
|
|
588
596
|
"Geor": "gruzínske",
|
|
589
597
|
"Glag": "hlaholika",
|
|
590
|
-
"Gong": "Gong",
|
|
591
|
-
"Gonm": "Gonm",
|
|
592
598
|
"Goth": "gotický",
|
|
593
|
-
"Gran": "Gran",
|
|
594
599
|
"Grek": "grécke",
|
|
595
600
|
"Gujr": "gudžarátí",
|
|
596
601
|
"Guru": "gurmukhi",
|
|
597
602
|
"Hanb": "čínske a bopomofo",
|
|
598
603
|
"Hang": "hangul",
|
|
599
604
|
"Hani": "čínske",
|
|
600
|
-
"Hano": "Hano",
|
|
601
605
|
"Hans": "zjednodušené",
|
|
602
606
|
"Hans-alt-stand-alone": "čínske zjednodušené",
|
|
603
607
|
"Hant": "tradičné",
|
|
604
608
|
"Hant-alt-stand-alone": "čínske tradičné",
|
|
605
|
-
"Hatr": "Hatr",
|
|
606
609
|
"Hebr": "hebrejské",
|
|
607
610
|
"Hira": "hiragana",
|
|
608
|
-
"Hluw": "Hluw",
|
|
609
|
-
"Hmng": "Hmng",
|
|
610
|
-
"Hmnp": "Hmnp",
|
|
611
611
|
"Hrkt": "kana",
|
|
612
|
-
"Hung": "Hung",
|
|
613
|
-
"Ital": "Ital",
|
|
614
612
|
"Jamo": "jamo",
|
|
615
|
-
"Java": "Java",
|
|
616
613
|
"Jpan": "japonské",
|
|
617
|
-
"Kali": "Kali",
|
|
618
614
|
"Kana": "katakana",
|
|
619
|
-
"Kawi": "Kawi",
|
|
620
|
-
"Khar": "Khar",
|
|
621
615
|
"Khmr": "khmérske",
|
|
622
|
-
"Khoj": "Khoj",
|
|
623
|
-
"Kits": "Kits",
|
|
624
616
|
"Knda": "kannadské",
|
|
625
617
|
"Kore": "kórejské",
|
|
626
|
-
"Kthi": "Kthi",
|
|
627
|
-
"Lana": "Lana",
|
|
628
618
|
"Laoo": "laoské",
|
|
629
619
|
"Latn": "latinka",
|
|
630
|
-
"Lepc": "Lepc",
|
|
631
|
-
"Limb": "Limb",
|
|
632
620
|
"Lina": "lineárna A",
|
|
633
621
|
"Linb": "lineárna B",
|
|
634
|
-
"Lisu": "Lisu",
|
|
635
|
-
"Lyci": "Lyci",
|
|
636
|
-
"Lydi": "Lydi",
|
|
637
|
-
"Mahj": "Mahj",
|
|
638
|
-
"Maka": "Maka",
|
|
639
|
-
"Mand": "Mand",
|
|
640
|
-
"Mani": "Mani",
|
|
641
|
-
"Marc": "Marc",
|
|
642
622
|
"Maya": "mayské hieroglyfy",
|
|
643
|
-
"Medf": "Medf",
|
|
644
|
-
"Mend": "Mend",
|
|
645
|
-
"Merc": "Merc",
|
|
646
|
-
"Mero": "Mero",
|
|
647
623
|
"Mlym": "malajálamske",
|
|
648
|
-
"Modi": "Modi",
|
|
649
624
|
"Mong": "mongolské",
|
|
650
|
-
"Mroo": "Mroo",
|
|
651
625
|
"Mtei": "mejtej majek (manipurské)",
|
|
652
|
-
"Mult": "Mult",
|
|
653
626
|
"Mymr": "barmské",
|
|
654
|
-
"
|
|
655
|
-
"Nand": "Nand",
|
|
656
|
-
"Narb": "Narb",
|
|
657
|
-
"Nbat": "Nbat",
|
|
658
|
-
"Newa": "Newa",
|
|
659
|
-
"Nkoo": "Nkoo",
|
|
660
|
-
"Nshu": "Nshu",
|
|
661
|
-
"Ogam": "Ogam",
|
|
627
|
+
"Nkoo": "bambarčina",
|
|
662
628
|
"Olck": "santálske (ol chiki)",
|
|
663
|
-
"Orkh": "Orkh",
|
|
664
629
|
"Orya": "uríjske",
|
|
665
|
-
"Osge": "Osge",
|
|
666
630
|
"Osma": "osmanský",
|
|
667
|
-
"Ougr": "Ougr",
|
|
668
|
-
"Palm": "Palm",
|
|
669
|
-
"Pauc": "Pauc",
|
|
670
|
-
"Perm": "Perm",
|
|
671
|
-
"Phag": "Phag",
|
|
672
|
-
"Phli": "Phli",
|
|
673
|
-
"Phlp": "Phlp",
|
|
674
|
-
"Phnx": "Phnx",
|
|
675
|
-
"Plrd": "Plrd",
|
|
676
|
-
"Prti": "Prti",
|
|
677
631
|
"Qaag": "zawgyi",
|
|
678
|
-
"
|
|
679
|
-
"Rohg": "Rohg",
|
|
632
|
+
"Rohg": "hanifi",
|
|
680
633
|
"Runr": "Runové písmo",
|
|
681
|
-
"Samr": "Samr",
|
|
682
|
-
"Sarb": "Sarb",
|
|
683
|
-
"Saur": "Saur",
|
|
684
|
-
"Sgnw": "Sgnw",
|
|
685
|
-
"Shaw": "Shaw",
|
|
686
|
-
"Shrd": "Shrd",
|
|
687
|
-
"Sidd": "Sidd",
|
|
688
|
-
"Sind": "Sind",
|
|
689
634
|
"Sinh": "sinhálske",
|
|
690
|
-
"
|
|
691
|
-
"
|
|
692
|
-
"Sora": "Sora",
|
|
693
|
-
"Soyo": "Soyo",
|
|
694
|
-
"Sund": "Sund",
|
|
695
|
-
"Sylo": "Sylo",
|
|
696
|
-
"Syrc": "Syrc",
|
|
697
|
-
"Tagb": "Tagb",
|
|
698
|
-
"Takr": "Takr",
|
|
699
|
-
"Tale": "Tale",
|
|
700
|
-
"Talu": "Talu",
|
|
635
|
+
"Sund": "sundčina",
|
|
636
|
+
"Syrc": "sýrčina",
|
|
701
637
|
"Taml": "tamilské",
|
|
702
|
-
"Tang": "Tang",
|
|
703
|
-
"Tavt": "Tavt",
|
|
704
638
|
"Telu": "telugské",
|
|
705
|
-
"Tfng": "
|
|
706
|
-
"Tglg": "Tglg",
|
|
639
|
+
"Tfng": "tifinagh",
|
|
707
640
|
"Thaa": "tána",
|
|
708
641
|
"Thai": "thajské",
|
|
709
642
|
"Tibt": "tibetské",
|
|
710
|
-
"
|
|
711
|
-
"
|
|
712
|
-
"Toto": "Toto",
|
|
713
|
-
"Ugar": "Ugar",
|
|
714
|
-
"Vaii": "Vaii",
|
|
715
|
-
"Vith": "Vith",
|
|
716
|
-
"Wara": "Wara",
|
|
717
|
-
"Wcho": "Wcho",
|
|
718
|
-
"Xpeo": "Xpeo",
|
|
719
|
-
"Xsux": "Xsux",
|
|
720
|
-
"Yezi": "Yezi",
|
|
721
|
-
"Yiii": "Yiii",
|
|
722
|
-
"Zanb": "Zanb",
|
|
723
|
-
"Zinh": "Zinh",
|
|
643
|
+
"Vaii": "vai",
|
|
644
|
+
"Yiii": "yi",
|
|
724
645
|
"Zmth": "matematický zápis",
|
|
725
646
|
"Zsye": "emodži",
|
|
726
647
|
"Zsym": "symboly",
|
|
@@ -946,6 +867,7 @@
|
|
|
946
867
|
"NR": "Nauru",
|
|
947
868
|
"NU": "Niue",
|
|
948
869
|
"NZ": "Nový Zéland",
|
|
870
|
+
"NZ-alt-variant": "Nový Zéland",
|
|
949
871
|
"OM": "Omán",
|
|
950
872
|
"PA": "Panama",
|
|
951
873
|
"PE": "Peru",
|
|
@@ -1005,6 +927,7 @@
|
|
|
1005
927
|
"TN": "Tunisko",
|
|
1006
928
|
"TO": "Tonga",
|
|
1007
929
|
"TR": "Turecko",
|
|
930
|
+
"TR-alt-variant": "Turecko",
|
|
1008
931
|
"TT": "Trinidad a Tobago",
|
|
1009
932
|
"TV": "Tuvalu",
|
|
1010
933
|
"TW": "Taiwan",
|
|
@@ -1065,9 +988,9 @@
|
|
|
1065
988
|
"EBhm": "E h:mm B",
|
|
1066
989
|
"EBhms": "E h:mm:ss B",
|
|
1067
990
|
"Ed": "E d.",
|
|
1068
|
-
"Ehm": "E h:mm
|
|
991
|
+
"Ehm": "E h:mm a",
|
|
1069
992
|
"EHm": "E HH:mm",
|
|
1070
|
-
"Ehms": "E h:mm:ss
|
|
993
|
+
"Ehms": "E h:mm:ss a",
|
|
1071
994
|
"EHms": "E HH:mm:ss",
|
|
1072
995
|
"Gy": "y G",
|
|
1073
996
|
"GyMd": "d. M. y GGGGG",
|
|
@@ -1075,15 +998,15 @@
|
|
|
1075
998
|
"GyMMMd": "d. M. y G",
|
|
1076
999
|
"GyMMMEd": "E d. M. y G",
|
|
1077
1000
|
"GyMMMMd": "d. M. y G",
|
|
1078
|
-
"h": "h
|
|
1001
|
+
"h": "h a",
|
|
1079
1002
|
"H": "H",
|
|
1080
|
-
"hm": "h:mm
|
|
1003
|
+
"hm": "h:mm a",
|
|
1081
1004
|
"Hm": "H:mm",
|
|
1082
|
-
"hms": "h:mm:ss
|
|
1005
|
+
"hms": "h:mm:ss a",
|
|
1083
1006
|
"Hms": "H:mm:ss",
|
|
1084
|
-
"hmsv": "h:mm:ss
|
|
1007
|
+
"hmsv": "h:mm:ss a v",
|
|
1085
1008
|
"Hmsv": "H:mm:ss v",
|
|
1086
|
-
"hmv": "h:mm
|
|
1009
|
+
"hmv": "h:mm a v",
|
|
1087
1010
|
"Hmv": "H:mm v",
|
|
1088
1011
|
"M": "L.",
|
|
1089
1012
|
"Md": "d. M.",
|
|
@@ -1123,148 +1046,148 @@
|
|
|
1123
1046
|
"Year": "{1} {0}"
|
|
1124
1047
|
},
|
|
1125
1048
|
"intervalFormats": {
|
|
1126
|
-
"intervalFormatFallback": "{0}
|
|
1049
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1127
1050
|
"Bh": {
|
|
1128
1051
|
"B": "h B – h B",
|
|
1129
|
-
"h": "h
|
|
1052
|
+
"h": "h – h B"
|
|
1130
1053
|
},
|
|
1131
1054
|
"Bhm": {
|
|
1132
1055
|
"B": "h:mm B – h:mm B",
|
|
1133
|
-
"h": "h:mm
|
|
1134
|
-
"m": "h:mm
|
|
1056
|
+
"h": "h:mm – h:mm B",
|
|
1057
|
+
"m": "h:mm – h:mm B"
|
|
1135
1058
|
},
|
|
1136
1059
|
"d": {
|
|
1137
|
-
"d": "d.
|
|
1060
|
+
"d": "d. – d."
|
|
1138
1061
|
},
|
|
1139
1062
|
"Gy": {
|
|
1140
|
-
"G": "y G
|
|
1141
|
-
"y": "y
|
|
1063
|
+
"G": "y G – y G",
|
|
1064
|
+
"y": "y – y G"
|
|
1142
1065
|
},
|
|
1143
1066
|
"GyM": {
|
|
1144
|
-
"G": "M/y GGGGG
|
|
1145
|
-
"M": "M/y
|
|
1146
|
-
"y": "M/y
|
|
1067
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
1068
|
+
"M": "M/y – M/y GGGGG",
|
|
1069
|
+
"y": "M/y – M/y GGGGG"
|
|
1147
1070
|
},
|
|
1148
1071
|
"GyMd": {
|
|
1149
|
-
"d": "d. M. y
|
|
1150
|
-
"G": "d. M. y GGGGG
|
|
1151
|
-
"M": "d. M. y
|
|
1152
|
-
"y": "d. M. y
|
|
1072
|
+
"d": "d. M. y – d. M. y GGGGG",
|
|
1073
|
+
"G": "d. M. y GGGGG – d. M. y GGGGG",
|
|
1074
|
+
"M": "d. M. y – d. M. y GGGGG",
|
|
1075
|
+
"y": "d. M. y – d. M. y GGGGG"
|
|
1153
1076
|
},
|
|
1154
1077
|
"GyMEd": {
|
|
1155
|
-
"d": "E d. M. y
|
|
1156
|
-
"G": "E d. M. y GGGGG
|
|
1157
|
-
"M": "E d. M. y
|
|
1158
|
-
"y": "E d. M. y
|
|
1078
|
+
"d": "E d. M. y – E d. M. y GGGGG",
|
|
1079
|
+
"G": "E d. M. y GGGGG – E d. M. y GGGGG",
|
|
1080
|
+
"M": "E d. M. y – E d. M. y GGGGG",
|
|
1081
|
+
"y": "E d. M. y – E d. M. y GGGGG"
|
|
1159
1082
|
},
|
|
1160
1083
|
"GyMMM": {
|
|
1161
|
-
"G": "LLLL y G
|
|
1162
|
-
"M": "LLLL
|
|
1163
|
-
"y": "LLLL y
|
|
1084
|
+
"G": "LLLL y G – LLLL y G",
|
|
1085
|
+
"M": "LLLL – LLLL y G",
|
|
1086
|
+
"y": "LLLL y – LLLL y G"
|
|
1164
1087
|
},
|
|
1165
1088
|
"GyMMMd": {
|
|
1166
|
-
"d": "d.
|
|
1167
|
-
"G": "d. M. y G
|
|
1168
|
-
"M": "d. M.
|
|
1169
|
-
"y": "d. M. y
|
|
1089
|
+
"d": "d. – d. M. y G",
|
|
1090
|
+
"G": "d. M. y G – d. M. y G",
|
|
1091
|
+
"M": "d. M. – d. M. y G",
|
|
1092
|
+
"y": "d. M. y – d. M. y G"
|
|
1170
1093
|
},
|
|
1171
1094
|
"GyMMMEd": {
|
|
1172
|
-
"d": "E d. M.
|
|
1173
|
-
"G": "E d. M. y G
|
|
1174
|
-
"M": "E d. M.
|
|
1175
|
-
"y": "E d. M. y
|
|
1095
|
+
"d": "E d. M. – E d. M. y G",
|
|
1096
|
+
"G": "E d. M. y G – E d. M. y G",
|
|
1097
|
+
"M": "E d. M. – E d. M. y G",
|
|
1098
|
+
"y": "E d. M. y – E d. M. y G"
|
|
1176
1099
|
},
|
|
1177
1100
|
"h": {
|
|
1178
|
-
"a": "h
|
|
1179
|
-
"h": "h
|
|
1101
|
+
"a": "h a – h a",
|
|
1102
|
+
"h": "h – h a"
|
|
1180
1103
|
},
|
|
1181
1104
|
"H": {
|
|
1182
|
-
"H": "HH
|
|
1105
|
+
"H": "HH – HH"
|
|
1183
1106
|
},
|
|
1184
1107
|
"hm": {
|
|
1185
|
-
"a": "h:mm
|
|
1186
|
-
"h": "h:mm
|
|
1187
|
-
"m": "h:mm
|
|
1108
|
+
"a": "h:mm a – h:mm a",
|
|
1109
|
+
"h": "h:mm – h:mm a",
|
|
1110
|
+
"m": "h:mm – h:mm a"
|
|
1188
1111
|
},
|
|
1189
1112
|
"Hm": {
|
|
1190
|
-
"H": "H:mm
|
|
1191
|
-
"m": "H:mm
|
|
1113
|
+
"H": "H:mm – H:mm",
|
|
1114
|
+
"m": "H:mm – H:mm"
|
|
1192
1115
|
},
|
|
1193
1116
|
"hmv": {
|
|
1194
|
-
"a": "h:mm
|
|
1195
|
-
"h": "h:mm
|
|
1196
|
-
"m": "h:mm
|
|
1117
|
+
"a": "h:mm a – h:mm a v",
|
|
1118
|
+
"h": "h:mm – h:mm a v",
|
|
1119
|
+
"m": "h:mm – h:mm a v"
|
|
1197
1120
|
},
|
|
1198
1121
|
"Hmv": {
|
|
1199
|
-
"H": "H:mm
|
|
1200
|
-
"m": "H:mm
|
|
1122
|
+
"H": "H:mm – H:mm v",
|
|
1123
|
+
"m": "H:mm – H:mm v"
|
|
1201
1124
|
},
|
|
1202
1125
|
"hv": {
|
|
1203
|
-
"a": "h
|
|
1204
|
-
"h": "h
|
|
1126
|
+
"a": "h a – h a v",
|
|
1127
|
+
"h": "h – h a v"
|
|
1205
1128
|
},
|
|
1206
1129
|
"Hv": {
|
|
1207
|
-
"H": "HH
|
|
1130
|
+
"H": "HH – HH v"
|
|
1208
1131
|
},
|
|
1209
1132
|
"M": {
|
|
1210
|
-
"M": "M.
|
|
1133
|
+
"M": "M. – M."
|
|
1211
1134
|
},
|
|
1212
1135
|
"Md": {
|
|
1213
|
-
"d": "d. M.
|
|
1214
|
-
"M": "d. M.
|
|
1136
|
+
"d": "d. M. – d. M.",
|
|
1137
|
+
"M": "d. M. – d. M."
|
|
1215
1138
|
},
|
|
1216
1139
|
"MEd": {
|
|
1217
|
-
"d": "E d. M.
|
|
1218
|
-
"M": "E d. M.
|
|
1140
|
+
"d": "E d. M. – E d. M.",
|
|
1141
|
+
"M": "E d. M. – E d. M."
|
|
1219
1142
|
},
|
|
1220
1143
|
"MMM": {
|
|
1221
|
-
"M": "LLL
|
|
1144
|
+
"M": "LLL – LLL"
|
|
1222
1145
|
},
|
|
1223
1146
|
"MMMd": {
|
|
1224
|
-
"d": "d.
|
|
1225
|
-
"M": "d. M.
|
|
1147
|
+
"d": "d. – d. M.",
|
|
1148
|
+
"M": "d. M. – d. M."
|
|
1226
1149
|
},
|
|
1227
1150
|
"MMMEd": {
|
|
1228
|
-
"d": "E d.
|
|
1229
|
-
"M": "E d. M.
|
|
1151
|
+
"d": "E d. – E d. M.",
|
|
1152
|
+
"M": "E d. M. – E d. M."
|
|
1230
1153
|
},
|
|
1231
1154
|
"MMMM": {
|
|
1232
|
-
"M": "LLLL
|
|
1155
|
+
"M": "LLLL – LLLL"
|
|
1233
1156
|
},
|
|
1234
1157
|
"y": {
|
|
1235
|
-
"y": "y
|
|
1158
|
+
"y": "y – y"
|
|
1236
1159
|
},
|
|
1237
1160
|
"yM": {
|
|
1238
|
-
"M": "M/y
|
|
1239
|
-
"y": "M/y
|
|
1161
|
+
"M": "M/y – M/y",
|
|
1162
|
+
"y": "M/y – M/y"
|
|
1240
1163
|
},
|
|
1241
1164
|
"yMd": {
|
|
1242
|
-
"d": "d. M. y
|
|
1243
|
-
"M": "d. M. y
|
|
1244
|
-
"y": "d. M. y
|
|
1165
|
+
"d": "d. M. y – d. M. y",
|
|
1166
|
+
"M": "d. M. y – d. M. y",
|
|
1167
|
+
"y": "d. M. y – d. M. y"
|
|
1245
1168
|
},
|
|
1246
1169
|
"yMEd": {
|
|
1247
|
-
"d": "E d. M. y
|
|
1248
|
-
"M": "E d. M. y
|
|
1249
|
-
"y": "E d. M. y
|
|
1170
|
+
"d": "E d. M. y – E d. M. y",
|
|
1171
|
+
"M": "E d. M. y – E d. M. y",
|
|
1172
|
+
"y": "E d. M. y – E d. M. y"
|
|
1250
1173
|
},
|
|
1251
1174
|
"yMMM": {
|
|
1252
|
-
"M": "M
|
|
1253
|
-
"y": "M/y
|
|
1175
|
+
"M": "M – M/y",
|
|
1176
|
+
"y": "M/y – M/y"
|
|
1254
1177
|
},
|
|
1255
1178
|
"yMMMd": {
|
|
1256
|
-
"d": "d.
|
|
1257
|
-
"M": "d. M.
|
|
1258
|
-
"y": "d. M. y
|
|
1179
|
+
"d": "d. – d. M. y",
|
|
1180
|
+
"M": "d. M. – d. M. y",
|
|
1181
|
+
"y": "d. M. y – d. M. y"
|
|
1259
1182
|
},
|
|
1260
1183
|
"yMMMEd": {
|
|
1261
|
-
"d": "E d.
|
|
1262
|
-
"M": "E d. M.
|
|
1263
|
-
"y": "E d. M. y
|
|
1184
|
+
"d": "E d. – E d. M. y",
|
|
1185
|
+
"M": "E d. M. – E d. M. y",
|
|
1186
|
+
"y": "E d. M. y – E d. M. y"
|
|
1264
1187
|
},
|
|
1265
1188
|
"yMMMM": {
|
|
1266
|
-
"M": "LLLL
|
|
1267
|
-
"y": "LLLL y
|
|
1189
|
+
"M": "LLLL – LLLL y",
|
|
1190
|
+
"y": "LLLL y – LLLL y"
|
|
1268
1191
|
}
|
|
1269
1192
|
}
|
|
1270
1193
|
},
|
|
@@ -1608,9 +1531,9 @@
|
|
|
1608
1531
|
"EBhm": "E h:mm B",
|
|
1609
1532
|
"EBhms": "E h:mm:ss B",
|
|
1610
1533
|
"Ed": "E d.",
|
|
1611
|
-
"Ehm": "E h:mm
|
|
1534
|
+
"Ehm": "E h:mm a",
|
|
1612
1535
|
"EHm": "E H:mm",
|
|
1613
|
-
"Ehms": "E h:mm:ss
|
|
1536
|
+
"Ehms": "E h:mm:ss a",
|
|
1614
1537
|
"EHms": "E H:mm:ss",
|
|
1615
1538
|
"Gy": "y G",
|
|
1616
1539
|
"GyMd": "GGGGG y-MM-dd",
|
|
@@ -1618,11 +1541,11 @@
|
|
|
1618
1541
|
"GyMMMd": "d. M. y G",
|
|
1619
1542
|
"GyMMMEd": "E d. M. y G",
|
|
1620
1543
|
"GyMMMMd": "d. M. y G",
|
|
1621
|
-
"h": "h
|
|
1544
|
+
"h": "h a",
|
|
1622
1545
|
"H": "H",
|
|
1623
|
-
"hm": "h:mm
|
|
1546
|
+
"hm": "h:mm a",
|
|
1624
1547
|
"Hm": "H:mm",
|
|
1625
|
-
"hms": "h:mm:ss
|
|
1548
|
+
"hms": "h:mm:ss a",
|
|
1626
1549
|
"Hms": "H:mm:ss",
|
|
1627
1550
|
"M": "M.",
|
|
1628
1551
|
"Md": "d. M.",
|
|
@@ -1661,148 +1584,148 @@
|
|
|
1661
1584
|
"Year": "{1} {0}"
|
|
1662
1585
|
},
|
|
1663
1586
|
"intervalFormats": {
|
|
1664
|
-
"intervalFormatFallback": "{0}
|
|
1587
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1665
1588
|
"Bh": {
|
|
1666
1589
|
"B": "h B – h B",
|
|
1667
|
-
"h": "h
|
|
1590
|
+
"h": "h – h B"
|
|
1668
1591
|
},
|
|
1669
1592
|
"Bhm": {
|
|
1670
1593
|
"B": "h:mm B – h:mm B",
|
|
1671
|
-
"h": "h:mm
|
|
1672
|
-
"m": "h:mm
|
|
1594
|
+
"h": "h:mm – h:mm B",
|
|
1595
|
+
"m": "h:mm – h:mm B"
|
|
1673
1596
|
},
|
|
1674
1597
|
"d": {
|
|
1675
|
-
"d": "d.
|
|
1598
|
+
"d": "d. – d."
|
|
1676
1599
|
},
|
|
1677
1600
|
"Gy": {
|
|
1678
|
-
"G": "y G
|
|
1679
|
-
"y": "y
|
|
1601
|
+
"G": "y G – y G",
|
|
1602
|
+
"y": "y – y G"
|
|
1680
1603
|
},
|
|
1681
1604
|
"GyM": {
|
|
1682
|
-
"G": "M/y GGGGG
|
|
1683
|
-
"M": "M/y
|
|
1684
|
-
"y": "M/y
|
|
1605
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
1606
|
+
"M": "M/y – M/y GGGGG",
|
|
1607
|
+
"y": "M/y – M/y GGGGG"
|
|
1685
1608
|
},
|
|
1686
1609
|
"GyMd": {
|
|
1687
|
-
"d": "d. M. y
|
|
1688
|
-
"G": "d. M. y GGGGG
|
|
1689
|
-
"M": "d. M. y
|
|
1690
|
-
"y": "d. M. y
|
|
1610
|
+
"d": "d. M. y – d. M. y GGGGG",
|
|
1611
|
+
"G": "d. M. y GGGGG – d. M. y GGGGG",
|
|
1612
|
+
"M": "d. M. y – d. M. y GGGGG",
|
|
1613
|
+
"y": "d. M. y – d. M. y GGGGG"
|
|
1691
1614
|
},
|
|
1692
1615
|
"GyMEd": {
|
|
1693
|
-
"d": "E d. M. y
|
|
1694
|
-
"G": "E d. M. y GGGGG
|
|
1695
|
-
"M": "E d. M. y
|
|
1696
|
-
"y": "E d. M. y
|
|
1616
|
+
"d": "E d. M. y – E d. M. y GGGGG",
|
|
1617
|
+
"G": "E d. M. y GGGGG – E d. M. y GGGGG",
|
|
1618
|
+
"M": "E d. M. y – E d. M. y GGGGG",
|
|
1619
|
+
"y": "E d. M. y – E d. M. y GGGGG"
|
|
1697
1620
|
},
|
|
1698
1621
|
"GyMMM": {
|
|
1699
|
-
"G": "LLL y G
|
|
1700
|
-
"M": "LLL
|
|
1701
|
-
"y": "LLL y
|
|
1622
|
+
"G": "LLL y G – LLL y G",
|
|
1623
|
+
"M": "LLL – LLL y G",
|
|
1624
|
+
"y": "LLL y – LLL y G"
|
|
1702
1625
|
},
|
|
1703
1626
|
"GyMMMd": {
|
|
1704
|
-
"d": "d.
|
|
1705
|
-
"G": "d. M. y G
|
|
1706
|
-
"M": "d. M.
|
|
1707
|
-
"y": "d. M. y
|
|
1627
|
+
"d": "d. – d. M. y G",
|
|
1628
|
+
"G": "d. M. y G – d. M. y G",
|
|
1629
|
+
"M": "d. M. – d. M. y G",
|
|
1630
|
+
"y": "d. M. y – d. M. y G"
|
|
1708
1631
|
},
|
|
1709
1632
|
"GyMMMEd": {
|
|
1710
|
-
"d": "E d. M.
|
|
1711
|
-
"G": "E d. M. y G
|
|
1712
|
-
"M": "E d. M.
|
|
1713
|
-
"y": "E d. M. y
|
|
1633
|
+
"d": "E d. M. – E d. M. y G",
|
|
1634
|
+
"G": "E d. M. y G – E d. M. y G",
|
|
1635
|
+
"M": "E d. M. – E d. M. y G",
|
|
1636
|
+
"y": "E d. M. y – E d. M. y G"
|
|
1714
1637
|
},
|
|
1715
1638
|
"h": {
|
|
1716
|
-
"a": "h
|
|
1717
|
-
"h": "h
|
|
1639
|
+
"a": "h a – h a",
|
|
1640
|
+
"h": "h – h a"
|
|
1718
1641
|
},
|
|
1719
1642
|
"H": {
|
|
1720
|
-
"H": "HH
|
|
1643
|
+
"H": "HH – HH"
|
|
1721
1644
|
},
|
|
1722
1645
|
"hm": {
|
|
1723
|
-
"a": "h:mm
|
|
1724
|
-
"h": "h:mm
|
|
1725
|
-
"m": "h:mm
|
|
1646
|
+
"a": "h:mm a – h:mm a",
|
|
1647
|
+
"h": "h:mm – h:mm a",
|
|
1648
|
+
"m": "h:mm – h:mm a"
|
|
1726
1649
|
},
|
|
1727
1650
|
"Hm": {
|
|
1728
|
-
"H": "H:mm
|
|
1729
|
-
"m": "H:mm
|
|
1651
|
+
"H": "H:mm – H:mm",
|
|
1652
|
+
"m": "H:mm – H:mm"
|
|
1730
1653
|
},
|
|
1731
1654
|
"hmv": {
|
|
1732
|
-
"a": "h:mm
|
|
1733
|
-
"h": "h:mm
|
|
1734
|
-
"m": "h:mm
|
|
1655
|
+
"a": "h:mm a – h:mm a v",
|
|
1656
|
+
"h": "h:mm – h:mm a v",
|
|
1657
|
+
"m": "h:mm – h:mm a v"
|
|
1735
1658
|
},
|
|
1736
1659
|
"Hmv": {
|
|
1737
|
-
"H": "H:mm
|
|
1738
|
-
"m": "H:mm
|
|
1660
|
+
"H": "H:mm – H:mm v",
|
|
1661
|
+
"m": "H:mm – H:mm v"
|
|
1739
1662
|
},
|
|
1740
1663
|
"hv": {
|
|
1741
|
-
"a": "h
|
|
1742
|
-
"h": "h
|
|
1664
|
+
"a": "h a – h a v",
|
|
1665
|
+
"h": "h – h a v"
|
|
1743
1666
|
},
|
|
1744
1667
|
"Hv": {
|
|
1745
|
-
"H": "HH
|
|
1668
|
+
"H": "HH – HH v"
|
|
1746
1669
|
},
|
|
1747
1670
|
"M": {
|
|
1748
|
-
"M": "M.
|
|
1671
|
+
"M": "M. – M."
|
|
1749
1672
|
},
|
|
1750
1673
|
"Md": {
|
|
1751
|
-
"d": "d. M.
|
|
1752
|
-
"M": "d. M.
|
|
1674
|
+
"d": "d. M. – d. M.",
|
|
1675
|
+
"M": "d. M. – d. M."
|
|
1753
1676
|
},
|
|
1754
1677
|
"MEd": {
|
|
1755
|
-
"d": "E d. M.
|
|
1756
|
-
"M": "E d. M.
|
|
1678
|
+
"d": "E d. M. – E d. M.",
|
|
1679
|
+
"M": "E d. M. – E d. M."
|
|
1757
1680
|
},
|
|
1758
1681
|
"MMM": {
|
|
1759
|
-
"M": "LLL
|
|
1682
|
+
"M": "LLL – LLL"
|
|
1760
1683
|
},
|
|
1761
1684
|
"MMMd": {
|
|
1762
|
-
"d": "d.
|
|
1763
|
-
"M": "d. M.
|
|
1685
|
+
"d": "d. – d. M.",
|
|
1686
|
+
"M": "d. M. – d. M."
|
|
1764
1687
|
},
|
|
1765
1688
|
"MMMEd": {
|
|
1766
|
-
"d": "E d.
|
|
1767
|
-
"M": "E d. M.
|
|
1689
|
+
"d": "E d. – E d. M.",
|
|
1690
|
+
"M": "E d. M. – E d. M."
|
|
1768
1691
|
},
|
|
1769
1692
|
"MMMM": {
|
|
1770
|
-
"M": "LLLL
|
|
1693
|
+
"M": "LLLL – LLLL"
|
|
1771
1694
|
},
|
|
1772
1695
|
"y": {
|
|
1773
|
-
"y": "y
|
|
1696
|
+
"y": "y – y G"
|
|
1774
1697
|
},
|
|
1775
1698
|
"yM": {
|
|
1776
|
-
"M": "M/y
|
|
1777
|
-
"y": "M/y
|
|
1699
|
+
"M": "M/y – M/y GGGGG",
|
|
1700
|
+
"y": "M/y – M/y GGGGG"
|
|
1778
1701
|
},
|
|
1779
1702
|
"yMd": {
|
|
1780
|
-
"d": "d. M. y
|
|
1781
|
-
"M": "d. M. y
|
|
1782
|
-
"y": "d. M. y
|
|
1703
|
+
"d": "d. M. y – d. M. y G",
|
|
1704
|
+
"M": "d. M. y – d. M. y G",
|
|
1705
|
+
"y": "d. M. y – d. M. y G"
|
|
1783
1706
|
},
|
|
1784
1707
|
"yMEd": {
|
|
1785
|
-
"d": "E d. M. y
|
|
1786
|
-
"M": "E d. M. y
|
|
1787
|
-
"y": "E d. M. y
|
|
1708
|
+
"d": "E d. M. y – E d. M. y G",
|
|
1709
|
+
"M": "E d. M. y – E d. M. y G",
|
|
1710
|
+
"y": "E d. M. y – E d. M. y G"
|
|
1788
1711
|
},
|
|
1789
1712
|
"yMMM": {
|
|
1790
|
-
"M": "LLL
|
|
1791
|
-
"y": "LLL y
|
|
1713
|
+
"M": "LLL – LLL y G",
|
|
1714
|
+
"y": "LLL y – LLL y G"
|
|
1792
1715
|
},
|
|
1793
1716
|
"yMMMd": {
|
|
1794
|
-
"d": "d.
|
|
1795
|
-
"M": "d. M.
|
|
1796
|
-
"y": "d. M. y
|
|
1717
|
+
"d": "d. – d. M. y G",
|
|
1718
|
+
"M": "d. M. – d. M. y G",
|
|
1719
|
+
"y": "d. M. y – d. M. y G"
|
|
1797
1720
|
},
|
|
1798
1721
|
"yMMMEd": {
|
|
1799
|
-
"d": "E d.
|
|
1800
|
-
"M": "E d. M.
|
|
1801
|
-
"y": "E d. M. y
|
|
1722
|
+
"d": "E d. – E d. M. y G",
|
|
1723
|
+
"M": "E d. M. – E d. M. y G",
|
|
1724
|
+
"y": "E d. M. y – E d. M. y G"
|
|
1802
1725
|
},
|
|
1803
1726
|
"yMMMM": {
|
|
1804
|
-
"M": "LLLL
|
|
1805
|
-
"y": "LLLL y
|
|
1727
|
+
"M": "LLLL – LLLL y G",
|
|
1728
|
+
"y": "LLLL y – LLLL y G"
|
|
1806
1729
|
}
|
|
1807
1730
|
}
|
|
1808
1731
|
},
|
|
@@ -2143,9 +2066,9 @@
|
|
|
2143
2066
|
"EBhm": "E h:mm B",
|
|
2144
2067
|
"EBhms": "E h:mm:ss B",
|
|
2145
2068
|
"Ed": "E d.",
|
|
2146
|
-
"Ehm": "E h:mm
|
|
2069
|
+
"Ehm": "E h:mm a",
|
|
2147
2070
|
"EHm": "E H:mm",
|
|
2148
|
-
"Ehms": "E h:mm:ss
|
|
2071
|
+
"Ehms": "E h:mm:ss a",
|
|
2149
2072
|
"EHms": "E H:mm:ss",
|
|
2150
2073
|
"Gy": "y G",
|
|
2151
2074
|
"GyMd": "GGGGG y-MM-dd",
|
|
@@ -2153,11 +2076,11 @@
|
|
|
2153
2076
|
"GyMMMd": "d. M. y G",
|
|
2154
2077
|
"GyMMMEd": "E d. M. y G",
|
|
2155
2078
|
"GyMMMMd": "d. M. y G",
|
|
2156
|
-
"h": "h
|
|
2079
|
+
"h": "h a",
|
|
2157
2080
|
"H": "H",
|
|
2158
|
-
"hm": "h:mm
|
|
2081
|
+
"hm": "h:mm a",
|
|
2159
2082
|
"Hm": "H:mm",
|
|
2160
|
-
"hms": "h:mm:ss
|
|
2083
|
+
"hms": "h:mm:ss a",
|
|
2161
2084
|
"Hms": "H:mm:ss",
|
|
2162
2085
|
"M": "M.",
|
|
2163
2086
|
"Md": "d. M.",
|
|
@@ -2196,156 +2119,156 @@
|
|
|
2196
2119
|
"Year": "{1} {0}"
|
|
2197
2120
|
},
|
|
2198
2121
|
"intervalFormats": {
|
|
2199
|
-
"intervalFormatFallback": "{0}
|
|
2122
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2200
2123
|
"Bh": {
|
|
2201
2124
|
"B": "h B – h B",
|
|
2202
|
-
"h": "h
|
|
2125
|
+
"h": "h – h B"
|
|
2203
2126
|
},
|
|
2204
2127
|
"Bhm": {
|
|
2205
2128
|
"B": "h:mm B – h:mm B",
|
|
2206
|
-
"h": "h:mm
|
|
2207
|
-
"m": "h:mm
|
|
2129
|
+
"h": "h:mm – h:mm B",
|
|
2130
|
+
"m": "h:mm – h:mm B"
|
|
2208
2131
|
},
|
|
2209
2132
|
"d": {
|
|
2210
|
-
"d": "d.
|
|
2133
|
+
"d": "d. – d."
|
|
2211
2134
|
},
|
|
2212
2135
|
"Gy": {
|
|
2213
|
-
"G": "y G
|
|
2214
|
-
"y": "y
|
|
2136
|
+
"G": "y G – y G",
|
|
2137
|
+
"y": "y – y G"
|
|
2215
2138
|
},
|
|
2216
2139
|
"GyM": {
|
|
2217
|
-
"G": "M/y GGGGG
|
|
2218
|
-
"M": "M/y
|
|
2219
|
-
"y": "M/y
|
|
2140
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
2141
|
+
"M": "M/y – M/y GGGGG",
|
|
2142
|
+
"y": "M/y – M/y GGGGG"
|
|
2220
2143
|
},
|
|
2221
2144
|
"GyMd": {
|
|
2222
|
-
"d": "d. M. y
|
|
2223
|
-
"G": "d. M. y GGGGG
|
|
2224
|
-
"M": "d. M. y
|
|
2225
|
-
"y": "d. M. y
|
|
2145
|
+
"d": "d. M. y – d. M. y GGGGG",
|
|
2146
|
+
"G": "d. M. y GGGGG – d. M. y GGGGG",
|
|
2147
|
+
"M": "d. M. y – d. M. y GGGGG",
|
|
2148
|
+
"y": "d. M. y – d. M. y GGGGG"
|
|
2226
2149
|
},
|
|
2227
2150
|
"GyMEd": {
|
|
2228
|
-
"d": "E d. M. y
|
|
2229
|
-
"G": "E d. M. y GGGGG
|
|
2230
|
-
"M": "E d. M. y
|
|
2231
|
-
"y": "E d. M. y
|
|
2151
|
+
"d": "E d. M. y – E d. M. y GGGGG",
|
|
2152
|
+
"G": "E d. M. y GGGGG – E d. M. y GGGGG",
|
|
2153
|
+
"M": "E d. M. y – E d. M. y GGGGG",
|
|
2154
|
+
"y": "E d. M. y – E d. M. y GGGGG"
|
|
2232
2155
|
},
|
|
2233
2156
|
"GyMMM": {
|
|
2234
|
-
"G": "LLL y G
|
|
2235
|
-
"M": "LLL
|
|
2236
|
-
"y": "LLL y
|
|
2157
|
+
"G": "LLL y G – LLL y G",
|
|
2158
|
+
"M": "LLL – LLL y G",
|
|
2159
|
+
"y": "LLL y – LLL y G"
|
|
2237
2160
|
},
|
|
2238
2161
|
"GyMMMd": {
|
|
2239
|
-
"d": "d.
|
|
2240
|
-
"G": "d. M. y G
|
|
2241
|
-
"M": "d. M.
|
|
2242
|
-
"y": "d. M. y
|
|
2162
|
+
"d": "d. – d. M. y G",
|
|
2163
|
+
"G": "d. M. y G – d. M. y G",
|
|
2164
|
+
"M": "d. M. – d. M. y G",
|
|
2165
|
+
"y": "d. M. y – d. M. y G"
|
|
2243
2166
|
},
|
|
2244
2167
|
"GyMMMEd": {
|
|
2245
|
-
"d": "E d. M.
|
|
2246
|
-
"G": "E d. M. y G
|
|
2247
|
-
"M": "E d. M.
|
|
2248
|
-
"y": "E d. M. y
|
|
2168
|
+
"d": "E d. M. – E d. M. y G",
|
|
2169
|
+
"G": "E d. M. y G – E d. M. y G",
|
|
2170
|
+
"M": "E d. M. – E d. M. y G",
|
|
2171
|
+
"y": "E d. M. y – E d. M. y G"
|
|
2249
2172
|
},
|
|
2250
2173
|
"h": {
|
|
2251
|
-
"a": "h
|
|
2252
|
-
"h": "h
|
|
2174
|
+
"a": "h a – h a",
|
|
2175
|
+
"h": "h – h a"
|
|
2253
2176
|
},
|
|
2254
2177
|
"H": {
|
|
2255
|
-
"H": "HH
|
|
2178
|
+
"H": "HH – HH"
|
|
2256
2179
|
},
|
|
2257
2180
|
"hm": {
|
|
2258
|
-
"a": "h:mm
|
|
2259
|
-
"h": "h:mm
|
|
2260
|
-
"m": "h:mm
|
|
2181
|
+
"a": "h:mm a – h:mm a",
|
|
2182
|
+
"h": "h:mm – h:mm a",
|
|
2183
|
+
"m": "h:mm – h:mm a"
|
|
2261
2184
|
},
|
|
2262
2185
|
"Hm": {
|
|
2263
|
-
"H": "H:mm
|
|
2264
|
-
"m": "H:mm
|
|
2186
|
+
"H": "H:mm – H:mm",
|
|
2187
|
+
"m": "H:mm – H:mm"
|
|
2265
2188
|
},
|
|
2266
2189
|
"hmv": {
|
|
2267
|
-
"a": "h:mm
|
|
2268
|
-
"h": "h:mm
|
|
2269
|
-
"m": "h:mm
|
|
2190
|
+
"a": "h:mm a – h:mm a v",
|
|
2191
|
+
"h": "h:mm – h:mm a v",
|
|
2192
|
+
"m": "h:mm – h:mm a v"
|
|
2270
2193
|
},
|
|
2271
2194
|
"Hmv": {
|
|
2272
|
-
"H": "H:mm
|
|
2273
|
-
"m": "H:mm
|
|
2195
|
+
"H": "H:mm – H:mm v",
|
|
2196
|
+
"m": "H:mm – H:mm v"
|
|
2274
2197
|
},
|
|
2275
2198
|
"hv": {
|
|
2276
|
-
"a": "h
|
|
2277
|
-
"h": "h
|
|
2199
|
+
"a": "h a – h a v",
|
|
2200
|
+
"h": "h – h a v"
|
|
2278
2201
|
},
|
|
2279
2202
|
"Hv": {
|
|
2280
|
-
"H": "HH
|
|
2203
|
+
"H": "HH – HH v"
|
|
2281
2204
|
},
|
|
2282
2205
|
"M": {
|
|
2283
|
-
"M": "M.
|
|
2206
|
+
"M": "M. – M."
|
|
2284
2207
|
},
|
|
2285
2208
|
"Md": {
|
|
2286
|
-
"d": "d. M.
|
|
2287
|
-
"M": "d. M.
|
|
2209
|
+
"d": "d. M. – d. M.",
|
|
2210
|
+
"M": "d. M. – d. M."
|
|
2288
2211
|
},
|
|
2289
2212
|
"MEd": {
|
|
2290
|
-
"d": "E d. M.
|
|
2291
|
-
"M": "E d. M.
|
|
2213
|
+
"d": "E d. M. – E d. M.",
|
|
2214
|
+
"M": "E d. M. – E d. M."
|
|
2292
2215
|
},
|
|
2293
2216
|
"MMM": {
|
|
2294
|
-
"M": "LLL
|
|
2217
|
+
"M": "LLL – LLL"
|
|
2295
2218
|
},
|
|
2296
2219
|
"MMMd": {
|
|
2297
|
-
"d": "d.
|
|
2298
|
-
"M": "d. M.
|
|
2220
|
+
"d": "d. – d. M.",
|
|
2221
|
+
"M": "d. M. – d. M."
|
|
2299
2222
|
},
|
|
2300
2223
|
"MMMEd": {
|
|
2301
|
-
"d": "E d.
|
|
2302
|
-
"M": "E d. M.
|
|
2224
|
+
"d": "E d. – E d. M.",
|
|
2225
|
+
"M": "E d. M. – E d. M."
|
|
2303
2226
|
},
|
|
2304
2227
|
"MMMM": {
|
|
2305
|
-
"M": "LLLL
|
|
2228
|
+
"M": "LLLL – LLLL"
|
|
2306
2229
|
},
|
|
2307
2230
|
"y": {
|
|
2308
|
-
"y": "y
|
|
2309
|
-
"G": "y G
|
|
2231
|
+
"y": "y – y G",
|
|
2232
|
+
"G": "y G – y G"
|
|
2310
2233
|
},
|
|
2311
2234
|
"yM": {
|
|
2312
|
-
"M": "M/y
|
|
2313
|
-
"y": "M/y
|
|
2314
|
-
"G": "M/y GGGGG
|
|
2235
|
+
"M": "M/y – M/y GGGGG",
|
|
2236
|
+
"y": "M/y – M/y GGGGG",
|
|
2237
|
+
"G": "M/y GGGGG – M/y GGGGG"
|
|
2315
2238
|
},
|
|
2316
2239
|
"yMd": {
|
|
2317
|
-
"d": "d. M. y
|
|
2318
|
-
"M": "d. M. y
|
|
2319
|
-
"y": "d. M. y
|
|
2320
|
-
"G": "d. M. y G
|
|
2240
|
+
"d": "d. M. y – d. M. y G",
|
|
2241
|
+
"M": "d. M. y – d. M. y G",
|
|
2242
|
+
"y": "d. M. y – d. M. y G",
|
|
2243
|
+
"G": "d. M. y G – d. M. y G"
|
|
2321
2244
|
},
|
|
2322
2245
|
"yMEd": {
|
|
2323
|
-
"d": "E d. M. y
|
|
2324
|
-
"M": "E d. M. y
|
|
2325
|
-
"y": "E d. M. y
|
|
2326
|
-
"G": "E d. M. y G
|
|
2246
|
+
"d": "E d. M. y – E d. M. y G",
|
|
2247
|
+
"M": "E d. M. y – E d. M. y G",
|
|
2248
|
+
"y": "E d. M. y – E d. M. y G",
|
|
2249
|
+
"G": "E d. M. y G – E d. M. y G"
|
|
2327
2250
|
},
|
|
2328
2251
|
"yMMM": {
|
|
2329
|
-
"M": "LLL
|
|
2330
|
-
"y": "LLL y
|
|
2331
|
-
"G": "LLL y G
|
|
2252
|
+
"M": "LLL – LLL y G",
|
|
2253
|
+
"y": "LLL y – LLL y G",
|
|
2254
|
+
"G": "LLL y G – LLL y G"
|
|
2332
2255
|
},
|
|
2333
2256
|
"yMMMd": {
|
|
2334
|
-
"d": "d.
|
|
2335
|
-
"M": "d. M.
|
|
2336
|
-
"y": "d. M. y
|
|
2337
|
-
"G": "d. M. y G
|
|
2257
|
+
"d": "d. – d. M. y G",
|
|
2258
|
+
"M": "d. M. – d. M. y G",
|
|
2259
|
+
"y": "d. M. y – d. M. y G",
|
|
2260
|
+
"G": "d. M. y G – d. M. y G"
|
|
2338
2261
|
},
|
|
2339
2262
|
"yMMMEd": {
|
|
2340
|
-
"d": "E d.
|
|
2341
|
-
"M": "E d. M.
|
|
2342
|
-
"y": "E d. M. y
|
|
2343
|
-
"G": "E d. M. y G
|
|
2263
|
+
"d": "E d. – E d. M. y G",
|
|
2264
|
+
"M": "E d. M. – E d. M. y G",
|
|
2265
|
+
"y": "E d. M. y – E d. M. y G",
|
|
2266
|
+
"G": "E d. M. y G – E d. M. y G"
|
|
2344
2267
|
},
|
|
2345
2268
|
"yMMMM": {
|
|
2346
|
-
"M": "LLLL
|
|
2347
|
-
"y": "LLLL y
|
|
2348
|
-
"G": "LLLL y G
|
|
2269
|
+
"M": "LLLL – LLLL y G",
|
|
2270
|
+
"y": "LLLL y – LLLL y G",
|
|
2271
|
+
"G": "LLLL y G – LLLL y G"
|
|
2349
2272
|
}
|
|
2350
2273
|
}
|
|
2351
2274
|
},
|
|
@@ -2698,9 +2621,9 @@
|
|
|
2698
2621
|
"EBhm": "E h:mm B",
|
|
2699
2622
|
"EBhms": "E h:mm:ss B",
|
|
2700
2623
|
"Ed": "E d.",
|
|
2701
|
-
"Ehm": "E h:mm
|
|
2624
|
+
"Ehm": "E h:mm a",
|
|
2702
2625
|
"EHm": "E H:mm",
|
|
2703
|
-
"Ehms": "E h:mm:ss
|
|
2626
|
+
"Ehms": "E h:mm:ss a",
|
|
2704
2627
|
"EHms": "E H:mm:ss",
|
|
2705
2628
|
"Gy": "y G",
|
|
2706
2629
|
"GyMd": "GGGGG y-MM-dd",
|
|
@@ -2708,11 +2631,11 @@
|
|
|
2708
2631
|
"GyMMMd": "d. M. y G",
|
|
2709
2632
|
"GyMMMEd": "E d. M. y G",
|
|
2710
2633
|
"GyMMMMd": "d. M. y G",
|
|
2711
|
-
"h": "h
|
|
2634
|
+
"h": "h a",
|
|
2712
2635
|
"H": "H",
|
|
2713
|
-
"hm": "h:mm
|
|
2636
|
+
"hm": "h:mm a",
|
|
2714
2637
|
"Hm": "H:mm",
|
|
2715
|
-
"hms": "h:mm:ss
|
|
2638
|
+
"hms": "h:mm:ss a",
|
|
2716
2639
|
"Hms": "H:mm:ss",
|
|
2717
2640
|
"M": "M.",
|
|
2718
2641
|
"Md": "d. M.",
|
|
@@ -2751,148 +2674,148 @@
|
|
|
2751
2674
|
"Year": "{1} {0}"
|
|
2752
2675
|
},
|
|
2753
2676
|
"intervalFormats": {
|
|
2754
|
-
"intervalFormatFallback": "{0}
|
|
2677
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2755
2678
|
"Bh": {
|
|
2756
2679
|
"B": "h B – h B",
|
|
2757
|
-
"h": "h
|
|
2680
|
+
"h": "h – h B"
|
|
2758
2681
|
},
|
|
2759
2682
|
"Bhm": {
|
|
2760
2683
|
"B": "h:mm B – h:mm B",
|
|
2761
|
-
"h": "h:mm
|
|
2762
|
-
"m": "h:mm
|
|
2684
|
+
"h": "h:mm – h:mm B",
|
|
2685
|
+
"m": "h:mm – h:mm B"
|
|
2763
2686
|
},
|
|
2764
2687
|
"d": {
|
|
2765
|
-
"d": "d.
|
|
2688
|
+
"d": "d. – d."
|
|
2766
2689
|
},
|
|
2767
2690
|
"Gy": {
|
|
2768
|
-
"G": "y G
|
|
2769
|
-
"y": "y
|
|
2691
|
+
"G": "y G – y G",
|
|
2692
|
+
"y": "y – y G"
|
|
2770
2693
|
},
|
|
2771
2694
|
"GyM": {
|
|
2772
|
-
"G": "M/y GGGGG
|
|
2773
|
-
"M": "M/y
|
|
2774
|
-
"y": "M/y
|
|
2695
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
2696
|
+
"M": "M/y – M/y GGGGG",
|
|
2697
|
+
"y": "M/y – M/y GGGGG"
|
|
2775
2698
|
},
|
|
2776
2699
|
"GyMd": {
|
|
2777
|
-
"d": "d. M. y
|
|
2778
|
-
"G": "d. M. y GGGGG
|
|
2779
|
-
"M": "d. M. y
|
|
2780
|
-
"y": "d. M. y
|
|
2700
|
+
"d": "d. M. y – d. M. y GGGGG",
|
|
2701
|
+
"G": "d. M. y GGGGG – d. M. y GGGGG",
|
|
2702
|
+
"M": "d. M. y – d. M. y GGGGG",
|
|
2703
|
+
"y": "d. M. y – d. M. y GGGGG"
|
|
2781
2704
|
},
|
|
2782
2705
|
"GyMEd": {
|
|
2783
|
-
"d": "E d. M. y
|
|
2784
|
-
"G": "E d. M. y GGGGG
|
|
2785
|
-
"M": "E d. M. y
|
|
2786
|
-
"y": "E d. M. y
|
|
2706
|
+
"d": "E d. M. y – E d. M. y GGGGG",
|
|
2707
|
+
"G": "E d. M. y GGGGG – E d. M. y GGGGG",
|
|
2708
|
+
"M": "E d. M. y – E d. M. y GGGGG",
|
|
2709
|
+
"y": "E d. M. y – E d. M. y GGGGG"
|
|
2787
2710
|
},
|
|
2788
2711
|
"GyMMM": {
|
|
2789
|
-
"G": "LLL y G
|
|
2790
|
-
"M": "LLL
|
|
2791
|
-
"y": "LLL y
|
|
2712
|
+
"G": "LLL y G – LLL y G",
|
|
2713
|
+
"M": "LLL – LLL y G",
|
|
2714
|
+
"y": "LLL y – LLL y G"
|
|
2792
2715
|
},
|
|
2793
2716
|
"GyMMMd": {
|
|
2794
|
-
"d": "d.
|
|
2795
|
-
"G": "d. M. y G
|
|
2796
|
-
"M": "d. M.
|
|
2797
|
-
"y": "d. M. y
|
|
2717
|
+
"d": "d. – d. M. y G",
|
|
2718
|
+
"G": "d. M. y G – d. M. y G",
|
|
2719
|
+
"M": "d. M. – d. M. y G",
|
|
2720
|
+
"y": "d. M. y – d. M. y G"
|
|
2798
2721
|
},
|
|
2799
2722
|
"GyMMMEd": {
|
|
2800
|
-
"d": "E d. M.
|
|
2801
|
-
"G": "E d. M. y G
|
|
2802
|
-
"M": "E d. M.
|
|
2803
|
-
"y": "E d. M. y
|
|
2723
|
+
"d": "E d. M. – E d. M. y G",
|
|
2724
|
+
"G": "E d. M. y G – E d. M. y G",
|
|
2725
|
+
"M": "E d. M. – E d. M. y G",
|
|
2726
|
+
"y": "E d. M. y – E d. M. y G"
|
|
2804
2727
|
},
|
|
2805
2728
|
"h": {
|
|
2806
|
-
"a": "h
|
|
2807
|
-
"h": "h
|
|
2729
|
+
"a": "h a – h a",
|
|
2730
|
+
"h": "h – h a"
|
|
2808
2731
|
},
|
|
2809
2732
|
"H": {
|
|
2810
|
-
"H": "HH
|
|
2733
|
+
"H": "HH – HH"
|
|
2811
2734
|
},
|
|
2812
2735
|
"hm": {
|
|
2813
|
-
"a": "h:mm
|
|
2814
|
-
"h": "h:mm
|
|
2815
|
-
"m": "h:mm
|
|
2736
|
+
"a": "h:mm a – h:mm a",
|
|
2737
|
+
"h": "h:mm – h:mm a",
|
|
2738
|
+
"m": "h:mm – h:mm a"
|
|
2816
2739
|
},
|
|
2817
2740
|
"Hm": {
|
|
2818
|
-
"H": "H:mm
|
|
2819
|
-
"m": "H:mm
|
|
2741
|
+
"H": "H:mm – H:mm",
|
|
2742
|
+
"m": "H:mm – H:mm"
|
|
2820
2743
|
},
|
|
2821
2744
|
"hmv": {
|
|
2822
|
-
"a": "h:mm
|
|
2823
|
-
"h": "h:mm
|
|
2824
|
-
"m": "h:mm
|
|
2745
|
+
"a": "h:mm a – h:mm a v",
|
|
2746
|
+
"h": "h:mm – h:mm a v",
|
|
2747
|
+
"m": "h:mm – h:mm a v"
|
|
2825
2748
|
},
|
|
2826
2749
|
"Hmv": {
|
|
2827
|
-
"H": "H:mm
|
|
2828
|
-
"m": "H:mm
|
|
2750
|
+
"H": "H:mm – H:mm v",
|
|
2751
|
+
"m": "H:mm – H:mm v"
|
|
2829
2752
|
},
|
|
2830
2753
|
"hv": {
|
|
2831
|
-
"a": "h
|
|
2832
|
-
"h": "h
|
|
2754
|
+
"a": "h a – h a v",
|
|
2755
|
+
"h": "h – h a v"
|
|
2833
2756
|
},
|
|
2834
2757
|
"Hv": {
|
|
2835
|
-
"H": "HH
|
|
2758
|
+
"H": "HH – HH v"
|
|
2836
2759
|
},
|
|
2837
2760
|
"M": {
|
|
2838
|
-
"M": "M.
|
|
2761
|
+
"M": "M. – M."
|
|
2839
2762
|
},
|
|
2840
2763
|
"Md": {
|
|
2841
|
-
"d": "d. M.
|
|
2842
|
-
"M": "d. M.
|
|
2764
|
+
"d": "d. M. – d. M.",
|
|
2765
|
+
"M": "d. M. – d. M."
|
|
2843
2766
|
},
|
|
2844
2767
|
"MEd": {
|
|
2845
|
-
"d": "E d. M.
|
|
2846
|
-
"M": "E d. M.
|
|
2768
|
+
"d": "E d. M. – E d. M.",
|
|
2769
|
+
"M": "E d. M. – E d. M."
|
|
2847
2770
|
},
|
|
2848
2771
|
"MMM": {
|
|
2849
|
-
"M": "LLL
|
|
2772
|
+
"M": "LLL – LLL"
|
|
2850
2773
|
},
|
|
2851
2774
|
"MMMd": {
|
|
2852
|
-
"d": "d.
|
|
2853
|
-
"M": "d. M.
|
|
2775
|
+
"d": "d. – d. M.",
|
|
2776
|
+
"M": "d. M. – d. M."
|
|
2854
2777
|
},
|
|
2855
2778
|
"MMMEd": {
|
|
2856
|
-
"d": "E d.
|
|
2857
|
-
"M": "E d. M.
|
|
2779
|
+
"d": "E d. – E d. M.",
|
|
2780
|
+
"M": "E d. M. – E d. M."
|
|
2858
2781
|
},
|
|
2859
2782
|
"MMMM": {
|
|
2860
|
-
"M": "LLLL
|
|
2783
|
+
"M": "LLLL – LLLL"
|
|
2861
2784
|
},
|
|
2862
2785
|
"y": {
|
|
2863
|
-
"y": "y
|
|
2786
|
+
"y": "y – y G"
|
|
2864
2787
|
},
|
|
2865
2788
|
"yM": {
|
|
2866
|
-
"M": "M/y
|
|
2867
|
-
"y": "M/y
|
|
2789
|
+
"M": "M/y – M/y GGGGG",
|
|
2790
|
+
"y": "M/y – M/y GGGGG"
|
|
2868
2791
|
},
|
|
2869
2792
|
"yMd": {
|
|
2870
|
-
"d": "d. M. y
|
|
2871
|
-
"M": "d. M. y
|
|
2872
|
-
"y": "d. M. y
|
|
2793
|
+
"d": "d. M. y – d. M. y G",
|
|
2794
|
+
"M": "d. M. y – d. M. y G",
|
|
2795
|
+
"y": "d. M. y – d. M. y G"
|
|
2873
2796
|
},
|
|
2874
2797
|
"yMEd": {
|
|
2875
|
-
"d": "E d. M. y
|
|
2876
|
-
"M": "E d. M. y
|
|
2877
|
-
"y": "E d. M. y
|
|
2798
|
+
"d": "E d. M. y – E d. M. y G",
|
|
2799
|
+
"M": "E d. M. y – E d. M. y G",
|
|
2800
|
+
"y": "E d. M. y – E d. M. y G"
|
|
2878
2801
|
},
|
|
2879
2802
|
"yMMM": {
|
|
2880
|
-
"M": "LLL
|
|
2881
|
-
"y": "LLL y
|
|
2803
|
+
"M": "LLL – LLL y G",
|
|
2804
|
+
"y": "LLL y – LLL y G"
|
|
2882
2805
|
},
|
|
2883
2806
|
"yMMMd": {
|
|
2884
|
-
"d": "d.
|
|
2885
|
-
"M": "d. M.
|
|
2886
|
-
"y": "d. M. y
|
|
2807
|
+
"d": "d. – d. M. y G",
|
|
2808
|
+
"M": "d. M. – d. M. y G",
|
|
2809
|
+
"y": "d. M. y – d. M. y G"
|
|
2887
2810
|
},
|
|
2888
2811
|
"yMMMEd": {
|
|
2889
|
-
"d": "E d.
|
|
2890
|
-
"M": "E d. M.
|
|
2891
|
-
"y": "E d. M. y
|
|
2812
|
+
"d": "E d. – E d. M. y G",
|
|
2813
|
+
"M": "E d. M. – E d. M. y G",
|
|
2814
|
+
"y": "E d. M. y – E d. M. y G"
|
|
2892
2815
|
},
|
|
2893
2816
|
"yMMMM": {
|
|
2894
|
-
"M": "LLLL
|
|
2895
|
-
"y": "LLLL y
|
|
2817
|
+
"M": "LLLL – LLLL y G",
|
|
2818
|
+
"y": "LLLL y – LLLL y G"
|
|
2896
2819
|
}
|
|
2897
2820
|
}
|
|
2898
2821
|
},
|
|
@@ -3233,9 +3156,9 @@
|
|
|
3233
3156
|
"EBhm": "E h:mm B",
|
|
3234
3157
|
"EBhms": "E h:mm:ss B",
|
|
3235
3158
|
"Ed": "E d.",
|
|
3236
|
-
"Ehm": "E h:mm
|
|
3159
|
+
"Ehm": "E h:mm a",
|
|
3237
3160
|
"EHm": "E H:mm",
|
|
3238
|
-
"Ehms": "E h:mm:ss
|
|
3161
|
+
"Ehms": "E h:mm:ss a",
|
|
3239
3162
|
"EHms": "E H:mm:ss",
|
|
3240
3163
|
"Gy": "y G",
|
|
3241
3164
|
"GyMd": "GGGGG y-MM-dd",
|
|
@@ -3243,11 +3166,11 @@
|
|
|
3243
3166
|
"GyMMMd": "d. M. y G",
|
|
3244
3167
|
"GyMMMEd": "E d. M. y G",
|
|
3245
3168
|
"GyMMMMd": "d. M. y G",
|
|
3246
|
-
"h": "h
|
|
3169
|
+
"h": "h a",
|
|
3247
3170
|
"H": "H",
|
|
3248
|
-
"hm": "h:mm
|
|
3171
|
+
"hm": "h:mm a",
|
|
3249
3172
|
"Hm": "H:mm",
|
|
3250
|
-
"hms": "h:mm:ss
|
|
3173
|
+
"hms": "h:mm:ss a",
|
|
3251
3174
|
"Hms": "H:mm:ss",
|
|
3252
3175
|
"M": "M.",
|
|
3253
3176
|
"Md": "d. M.",
|
|
@@ -3286,148 +3209,148 @@
|
|
|
3286
3209
|
"Year": "{1} {0}"
|
|
3287
3210
|
},
|
|
3288
3211
|
"intervalFormats": {
|
|
3289
|
-
"intervalFormatFallback": "{0}
|
|
3212
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
3290
3213
|
"Bh": {
|
|
3291
3214
|
"B": "h B – h B",
|
|
3292
|
-
"h": "h
|
|
3215
|
+
"h": "h – h B"
|
|
3293
3216
|
},
|
|
3294
3217
|
"Bhm": {
|
|
3295
3218
|
"B": "h:mm B – h:mm B",
|
|
3296
|
-
"h": "h:mm
|
|
3297
|
-
"m": "h:mm
|
|
3219
|
+
"h": "h:mm – h:mm B",
|
|
3220
|
+
"m": "h:mm – h:mm B"
|
|
3298
3221
|
},
|
|
3299
3222
|
"d": {
|
|
3300
|
-
"d": "d.
|
|
3223
|
+
"d": "d. – d."
|
|
3301
3224
|
},
|
|
3302
3225
|
"Gy": {
|
|
3303
|
-
"G": "y G
|
|
3304
|
-
"y": "y
|
|
3226
|
+
"G": "y G – y G",
|
|
3227
|
+
"y": "y – y G"
|
|
3305
3228
|
},
|
|
3306
3229
|
"GyM": {
|
|
3307
|
-
"G": "M/y GGGGG
|
|
3308
|
-
"M": "M/y
|
|
3309
|
-
"y": "M/y
|
|
3230
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
3231
|
+
"M": "M/y – M/y GGGGG",
|
|
3232
|
+
"y": "M/y – M/y GGGGG"
|
|
3310
3233
|
},
|
|
3311
3234
|
"GyMd": {
|
|
3312
|
-
"d": "d. M. y
|
|
3313
|
-
"G": "d. M. y GGGGG
|
|
3314
|
-
"M": "d. M. y
|
|
3315
|
-
"y": "d. M. y
|
|
3235
|
+
"d": "d. M. y – d. M. y GGGGG",
|
|
3236
|
+
"G": "d. M. y GGGGG – d. M. y GGGGG",
|
|
3237
|
+
"M": "d. M. y – d. M. y GGGGG",
|
|
3238
|
+
"y": "d. M. y – d. M. y GGGGG"
|
|
3316
3239
|
},
|
|
3317
3240
|
"GyMEd": {
|
|
3318
|
-
"d": "E d. M. y
|
|
3319
|
-
"G": "E d. M. y GGGGG
|
|
3320
|
-
"M": "E d. M. y
|
|
3321
|
-
"y": "E d. M. y
|
|
3241
|
+
"d": "E d. M. y – E d. M. y GGGGG",
|
|
3242
|
+
"G": "E d. M. y GGGGG – E d. M. y GGGGG",
|
|
3243
|
+
"M": "E d. M. y – E d. M. y GGGGG",
|
|
3244
|
+
"y": "E d. M. y – E d. M. y GGGGG"
|
|
3322
3245
|
},
|
|
3323
3246
|
"GyMMM": {
|
|
3324
|
-
"G": "LLL y G
|
|
3325
|
-
"M": "LLL
|
|
3326
|
-
"y": "LLL y
|
|
3247
|
+
"G": "LLL y G – LLL y G",
|
|
3248
|
+
"M": "LLL – LLL y G",
|
|
3249
|
+
"y": "LLL y – LLL y G"
|
|
3327
3250
|
},
|
|
3328
3251
|
"GyMMMd": {
|
|
3329
|
-
"d": "d.
|
|
3330
|
-
"G": "d. M. y G
|
|
3331
|
-
"M": "d. M.
|
|
3332
|
-
"y": "d. M. y
|
|
3252
|
+
"d": "d. – d. M. y G",
|
|
3253
|
+
"G": "d. M. y G – d. M. y G",
|
|
3254
|
+
"M": "d. M. – d. M. y G",
|
|
3255
|
+
"y": "d. M. y – d. M. y G"
|
|
3333
3256
|
},
|
|
3334
3257
|
"GyMMMEd": {
|
|
3335
|
-
"d": "E d. M.
|
|
3336
|
-
"G": "E d. M. y G
|
|
3337
|
-
"M": "E d. M.
|
|
3338
|
-
"y": "E d. M. y
|
|
3258
|
+
"d": "E d. M. – E d. M. y G",
|
|
3259
|
+
"G": "E d. M. y G – E d. M. y G",
|
|
3260
|
+
"M": "E d. M. – E d. M. y G",
|
|
3261
|
+
"y": "E d. M. y – E d. M. y G"
|
|
3339
3262
|
},
|
|
3340
3263
|
"h": {
|
|
3341
|
-
"a": "h
|
|
3342
|
-
"h": "h
|
|
3264
|
+
"a": "h a – h a",
|
|
3265
|
+
"h": "h – h a"
|
|
3343
3266
|
},
|
|
3344
3267
|
"H": {
|
|
3345
|
-
"H": "HH
|
|
3268
|
+
"H": "HH – HH"
|
|
3346
3269
|
},
|
|
3347
3270
|
"hm": {
|
|
3348
|
-
"a": "h:mm
|
|
3349
|
-
"h": "h:mm
|
|
3350
|
-
"m": "h:mm
|
|
3271
|
+
"a": "h:mm a – h:mm a",
|
|
3272
|
+
"h": "h:mm – h:mm a",
|
|
3273
|
+
"m": "h:mm – h:mm a"
|
|
3351
3274
|
},
|
|
3352
3275
|
"Hm": {
|
|
3353
|
-
"H": "H:mm
|
|
3354
|
-
"m": "H:mm
|
|
3276
|
+
"H": "H:mm – H:mm",
|
|
3277
|
+
"m": "H:mm – H:mm"
|
|
3355
3278
|
},
|
|
3356
3279
|
"hmv": {
|
|
3357
|
-
"a": "h:mm
|
|
3358
|
-
"h": "h:mm
|
|
3359
|
-
"m": "h:mm
|
|
3280
|
+
"a": "h:mm a – h:mm a v",
|
|
3281
|
+
"h": "h:mm – h:mm a v",
|
|
3282
|
+
"m": "h:mm – h:mm a v"
|
|
3360
3283
|
},
|
|
3361
3284
|
"Hmv": {
|
|
3362
|
-
"H": "H:mm
|
|
3363
|
-
"m": "H:mm
|
|
3285
|
+
"H": "H:mm – H:mm v",
|
|
3286
|
+
"m": "H:mm – H:mm v"
|
|
3364
3287
|
},
|
|
3365
3288
|
"hv": {
|
|
3366
|
-
"a": "h
|
|
3367
|
-
"h": "h
|
|
3289
|
+
"a": "h a – h a v",
|
|
3290
|
+
"h": "h – h a v"
|
|
3368
3291
|
},
|
|
3369
3292
|
"Hv": {
|
|
3370
|
-
"H": "HH
|
|
3293
|
+
"H": "HH – HH v"
|
|
3371
3294
|
},
|
|
3372
3295
|
"M": {
|
|
3373
|
-
"M": "M.
|
|
3296
|
+
"M": "M. – M."
|
|
3374
3297
|
},
|
|
3375
3298
|
"Md": {
|
|
3376
|
-
"d": "d. M.
|
|
3377
|
-
"M": "d. M.
|
|
3299
|
+
"d": "d. M. – d. M.",
|
|
3300
|
+
"M": "d. M. – d. M."
|
|
3378
3301
|
},
|
|
3379
3302
|
"MEd": {
|
|
3380
|
-
"d": "E d. M.
|
|
3381
|
-
"M": "E d. M.
|
|
3303
|
+
"d": "E d. M. – E d. M.",
|
|
3304
|
+
"M": "E d. M. – E d. M."
|
|
3382
3305
|
},
|
|
3383
3306
|
"MMM": {
|
|
3384
|
-
"M": "LLL
|
|
3307
|
+
"M": "LLL – LLL"
|
|
3385
3308
|
},
|
|
3386
3309
|
"MMMd": {
|
|
3387
|
-
"d": "d.
|
|
3388
|
-
"M": "d. M.
|
|
3310
|
+
"d": "d. – d. M.",
|
|
3311
|
+
"M": "d. M. – d. M."
|
|
3389
3312
|
},
|
|
3390
3313
|
"MMMEd": {
|
|
3391
|
-
"d": "E d.
|
|
3392
|
-
"M": "E d. M.
|
|
3314
|
+
"d": "E d. – E d. M.",
|
|
3315
|
+
"M": "E d. M. – E d. M."
|
|
3393
3316
|
},
|
|
3394
3317
|
"MMMM": {
|
|
3395
|
-
"M": "LLLL
|
|
3318
|
+
"M": "LLLL – LLLL"
|
|
3396
3319
|
},
|
|
3397
3320
|
"y": {
|
|
3398
|
-
"y": "y
|
|
3321
|
+
"y": "y – y G"
|
|
3399
3322
|
},
|
|
3400
3323
|
"yM": {
|
|
3401
|
-
"M": "M/y
|
|
3402
|
-
"y": "M/y
|
|
3324
|
+
"M": "M/y – M/y GGGGG",
|
|
3325
|
+
"y": "M/y – M/y GGGGG"
|
|
3403
3326
|
},
|
|
3404
3327
|
"yMd": {
|
|
3405
|
-
"d": "d. M. y
|
|
3406
|
-
"M": "d. M. y
|
|
3407
|
-
"y": "d. M. y
|
|
3328
|
+
"d": "d. M. y – d. M. y G",
|
|
3329
|
+
"M": "d. M. y – d. M. y G",
|
|
3330
|
+
"y": "d. M. y – d. M. y G"
|
|
3408
3331
|
},
|
|
3409
3332
|
"yMEd": {
|
|
3410
|
-
"d": "E d. M. y
|
|
3411
|
-
"M": "E d. M. y
|
|
3412
|
-
"y": "E d. M. y
|
|
3333
|
+
"d": "E d. M. y – E d. M. y G",
|
|
3334
|
+
"M": "E d. M. y – E d. M. y G",
|
|
3335
|
+
"y": "E d. M. y – E d. M. y G"
|
|
3413
3336
|
},
|
|
3414
3337
|
"yMMM": {
|
|
3415
|
-
"M": "LLL
|
|
3416
|
-
"y": "LLL y
|
|
3338
|
+
"M": "LLL – LLL y G",
|
|
3339
|
+
"y": "LLL y – LLL y G"
|
|
3417
3340
|
},
|
|
3418
3341
|
"yMMMd": {
|
|
3419
|
-
"d": "d.
|
|
3420
|
-
"M": "d. M.
|
|
3421
|
-
"y": "d. M. y
|
|
3342
|
+
"d": "d. – d. M. y G",
|
|
3343
|
+
"M": "d. M. – d. M. y G",
|
|
3344
|
+
"y": "d. M. y – d. M. y G"
|
|
3422
3345
|
},
|
|
3423
3346
|
"yMMMEd": {
|
|
3424
|
-
"d": "E d.
|
|
3425
|
-
"M": "E d. M.
|
|
3426
|
-
"y": "E d. M. y
|
|
3347
|
+
"d": "E d. – E d. M. y G",
|
|
3348
|
+
"M": "E d. M. – E d. M. y G",
|
|
3349
|
+
"y": "E d. M. y – E d. M. y G"
|
|
3427
3350
|
},
|
|
3428
3351
|
"yMMMM": {
|
|
3429
|
-
"M": "LLLL
|
|
3430
|
-
"y": "LLLL y
|
|
3352
|
+
"M": "LLLL – LLLL y G",
|
|
3353
|
+
"y": "LLLL y – LLLL y G"
|
|
3431
3354
|
}
|
|
3432
3355
|
}
|
|
3433
3356
|
},
|
|
@@ -4272,6 +4195,7 @@
|
|
|
4272
4195
|
"Cayman": "Kajmanie ostrovy",
|
|
4273
4196
|
"Chicago": "Chicago",
|
|
4274
4197
|
"Chihuahua": "Chihuahua",
|
|
4198
|
+
"Ciudad_Juarez": "Ciudad Juárez",
|
|
4275
4199
|
"Costa_Rica": "Kostarika",
|
|
4276
4200
|
"Creston": "Creston",
|
|
4277
4201
|
"Cuiaba": "Cuiabá",
|
|
@@ -4965,10 +4889,16 @@
|
|
|
4965
4889
|
},
|
|
4966
4890
|
"power2": {
|
|
4967
4891
|
"compoundUnitPattern1": "{0}²",
|
|
4892
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
4893
|
+
"compoundUnitPattern1-count-few": "{0}²",
|
|
4894
|
+
"compoundUnitPattern1-count-many": "{0}²",
|
|
4968
4895
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4969
4896
|
},
|
|
4970
4897
|
"power3": {
|
|
4971
4898
|
"compoundUnitPattern1": "{0}³",
|
|
4899
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
4900
|
+
"compoundUnitPattern1-count-few": "{0}³",
|
|
4901
|
+
"compoundUnitPattern1-count-many": "{0}³",
|
|
4972
4902
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4973
4903
|
},
|
|
4974
4904
|
"times": {
|
|
@@ -5288,6 +5218,14 @@
|
|
|
5288
5218
|
"unitPattern-count-other": "{0} r.",
|
|
5289
5219
|
"perUnitPattern": "{0}/r."
|
|
5290
5220
|
},
|
|
5221
|
+
"duration-quarter": {
|
|
5222
|
+
"displayName": "štvrťrok",
|
|
5223
|
+
"unitPattern-count-one": "{0} štvrťrok",
|
|
5224
|
+
"unitPattern-count-few": "{0} štvrťroky",
|
|
5225
|
+
"unitPattern-count-many": "{0} štvrťroka",
|
|
5226
|
+
"unitPattern-count-other": "{0} štvrťrokov",
|
|
5227
|
+
"perUnitPattern": "{0}/štvrťrok"
|
|
5228
|
+
},
|
|
5291
5229
|
"duration-month": {
|
|
5292
5230
|
"displayName": "mes.",
|
|
5293
5231
|
"unitPattern-count-one": "{0} mes.",
|
|
@@ -5464,6 +5402,9 @@
|
|
|
5464
5402
|
},
|
|
5465
5403
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5466
5404
|
"displayName": "kWh/100km",
|
|
5405
|
+
"unitPattern-count-one": "{0} kWh/100km",
|
|
5406
|
+
"unitPattern-count-few": "{0} kWh/100km",
|
|
5407
|
+
"unitPattern-count-many": "{0} kWh/100km",
|
|
5467
5408
|
"unitPattern-count-other": "{0} kWh/100km"
|
|
5468
5409
|
},
|
|
5469
5410
|
"frequency-gigahertz": {
|
|
@@ -5552,6 +5493,9 @@
|
|
|
5552
5493
|
},
|
|
5553
5494
|
"length-earth-radius": {
|
|
5554
5495
|
"displayName": "R⊕",
|
|
5496
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5497
|
+
"unitPattern-count-few": "{0} R⊕",
|
|
5498
|
+
"unitPattern-count-many": "{0} R⊕",
|
|
5555
5499
|
"unitPattern-count-other": "{0} R⊕"
|
|
5556
5500
|
},
|
|
5557
5501
|
"length-kilometer": {
|
|
@@ -5734,7 +5678,7 @@
|
|
|
5734
5678
|
"unitPattern-count-many": "{0} L☉",
|
|
5735
5679
|
"unitPattern-count-other": "{0} L☉"
|
|
5736
5680
|
},
|
|
5737
|
-
"mass-
|
|
5681
|
+
"mass-tonne": {
|
|
5738
5682
|
"displayName": "t",
|
|
5739
5683
|
"unitPattern-count-one": "{0} t",
|
|
5740
5684
|
"unitPattern-count-few": "{0} t",
|
|
@@ -5908,6 +5852,9 @@
|
|
|
5908
5852
|
},
|
|
5909
5853
|
"pressure-bar": {
|
|
5910
5854
|
"displayName": "bar",
|
|
5855
|
+
"unitPattern-count-one": "{0} bar",
|
|
5856
|
+
"unitPattern-count-few": "{0} bar",
|
|
5857
|
+
"unitPattern-count-many": "{0} bar",
|
|
5911
5858
|
"unitPattern-count-other": "{0} bar"
|
|
5912
5859
|
},
|
|
5913
5860
|
"pressure-millibar": {
|
|
@@ -5926,6 +5873,9 @@
|
|
|
5926
5873
|
},
|
|
5927
5874
|
"pressure-pascal": {
|
|
5928
5875
|
"displayName": "Pa",
|
|
5876
|
+
"unitPattern-count-one": "{0} Pa",
|
|
5877
|
+
"unitPattern-count-few": "{0} Pa",
|
|
5878
|
+
"unitPattern-count-many": "{0} Pa",
|
|
5929
5879
|
"unitPattern-count-other": "{0} Pa"
|
|
5930
5880
|
},
|
|
5931
5881
|
"pressure-hectopascal": {
|
|
@@ -6397,41 +6347,56 @@
|
|
|
6397
6347
|
},
|
|
6398
6348
|
"eras-gregorian": {
|
|
6399
6349
|
"0": {
|
|
6350
|
+
"_code": "gregory-inverse",
|
|
6351
|
+
"_aliases": "bc bce",
|
|
6400
6352
|
"_end": "0-12-31"
|
|
6401
6353
|
},
|
|
6402
6354
|
"1": {
|
|
6355
|
+
"_code": "gregory",
|
|
6356
|
+
"_aliases": "ad ce",
|
|
6403
6357
|
"_start": "1-01-01"
|
|
6404
6358
|
}
|
|
6405
6359
|
},
|
|
6406
6360
|
"eras-islamic": {
|
|
6407
6361
|
"0": {
|
|
6362
|
+
"_code": "islamic",
|
|
6363
|
+
"_aliases": "ah",
|
|
6408
6364
|
"_start": "622-7-15"
|
|
6409
6365
|
}
|
|
6410
6366
|
},
|
|
6411
6367
|
"eras-persian": {
|
|
6412
6368
|
"0": {
|
|
6369
|
+
"_code": "persian",
|
|
6370
|
+
"_aliases": "ap",
|
|
6413
6371
|
"_start": "622-01-01"
|
|
6414
6372
|
}
|
|
6415
6373
|
},
|
|
6416
6374
|
"eras-buddhist": {
|
|
6417
6375
|
"0": {
|
|
6376
|
+
"_code": "buddhist",
|
|
6377
|
+
"_aliases": "be",
|
|
6418
6378
|
"_start": "-542-01-01"
|
|
6419
6379
|
}
|
|
6420
6380
|
},
|
|
6421
6381
|
"eras-japanese": {
|
|
6422
6382
|
"232": {
|
|
6383
|
+
"_code": "meiji",
|
|
6423
6384
|
"_start": "1868-9-8"
|
|
6424
6385
|
},
|
|
6425
6386
|
"233": {
|
|
6387
|
+
"_code": "taisho",
|
|
6426
6388
|
"_start": "1912-7-30"
|
|
6427
6389
|
},
|
|
6428
6390
|
"234": {
|
|
6391
|
+
"_code": "showa",
|
|
6429
6392
|
"_start": "1926-12-25"
|
|
6430
6393
|
},
|
|
6431
6394
|
"235": {
|
|
6395
|
+
"_code": "heisei",
|
|
6432
6396
|
"_start": "1989-1-8"
|
|
6433
6397
|
},
|
|
6434
6398
|
"236": {
|
|
6399
|
+
"_code": "reiwa",
|
|
6435
6400
|
"_start": "2019-5-1"
|
|
6436
6401
|
}
|
|
6437
6402
|
},
|