@openui5/sap.ui.core 1.119.1 → 1.120.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +6 -6
- package/package.json +1 -1
- package/src/jquery.sap.global.js +40 -111
- package/src/jquery.sap.properties.js +7 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +5 -3
- package/src/jquery.sap.storage.js +6 -3
- package/src/sap/base/Event.js +32 -78
- package/src/sap/base/Eventing.js +114 -271
- package/src/sap/base/Log.js +21 -1
- package/src/sap/base/config.js +14 -9
- package/src/sap/base/i18n/Formatting.js +400 -256
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +125 -87
- package/src/sap/base/i18n/ResourceBundle.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +2 -2
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
- package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
- package/src/sap/base/util/LoaderExtensions.js +8 -2
- package/src/sap/base/util/mixedFetch.js +1 -0
- package/src/sap/base/util/resolveReference.js +31 -13
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/base/util/syncFetch.js +1 -0
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +6 -7
- package/src/sap/ui/base/BindingInfo.js +3 -3
- package/src/sap/ui/base/BindingParser.js +5 -2
- package/src/sap/ui/base/DataType.js +57 -1
- package/src/sap/ui/base/DesignTime.js +69 -0
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +25 -4
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +102 -85
- package/src/sap/ui/base/ManagedObjectMetadata.js +53 -31
- package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
- package/src/sap/ui/base/Metadata.js +3 -3
- package/src/sap/ui/base/Object.js +19 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/AnimationMode.js +2 -2
- package/src/sap/ui/core/AppCacheBuster.js +30 -18
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/CalendarType.js +6 -0
- package/src/sap/ui/core/Component.js +175 -86
- package/src/sap/ui/core/ComponentContainer.js +6 -5
- package/src/sap/ui/core/ComponentMetadata.js +3 -4
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +395 -709
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/ControlBehavior.js +37 -28
- package/src/sap/ui/core/Core.js +338 -216
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +3 -1
- package/src/sap/ui/core/Element.js +24 -10
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +3 -2
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +3 -3
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +13 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +2 -3
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +17 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +8 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +253 -57
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -32
- package/src/sap/ui/core/Manifest.js +4 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Placeholder.js +18 -0
- package/src/sap/ui/core/Popup.js +5 -0
- package/src/sap/ui/core/RenderManager.js +21 -17
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/Rendering.js +51 -47
- package/src/sap/ui/core/ResizeHandler.js +2 -2
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +5 -3
- package/src/sap/ui/core/Supportability.js +146 -0
- package/src/sap/ui/core/Theming.js +130 -88
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +4 -3
- package/src/sap/ui/core/UIArea.js +5 -4
- package/src/sap/ui/core/UIComponent.js +38 -12
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
- package/src/sap/ui/core/_IconRegistry.js +13 -6
- package/src/sap/ui/core/cldr/ar.json +143 -137
- package/src/sap/ui/core/cldr/ar_EG.json +143 -137
- package/src/sap/ui/core/cldr/ar_SA.json +143 -137
- package/src/sap/ui/core/cldr/bg.json +423 -423
- package/src/sap/ui/core/cldr/ca.json +541 -494
- package/src/sap/ui/core/cldr/cs.json +475 -364
- package/src/sap/ui/core/cldr/cy.json +656 -477
- package/src/sap/ui/core/cldr/da.json +334 -275
- package/src/sap/ui/core/cldr/de.json +388 -291
- package/src/sap/ui/core/cldr/de_AT.json +388 -291
- package/src/sap/ui/core/cldr/de_CH.json +394 -297
- package/src/sap/ui/core/cldr/el.json +169 -166
- package/src/sap/ui/core/cldr/el_CY.json +169 -166
- package/src/sap/ui/core/cldr/en.json +558 -521
- package/src/sap/ui/core/cldr/en_AU.json +558 -520
- package/src/sap/ui/core/cldr/en_GB.json +476 -439
- package/src/sap/ui/core/cldr/en_HK.json +520 -482
- package/src/sap/ui/core/cldr/en_IE.json +486 -448
- package/src/sap/ui/core/cldr/en_IN.json +466 -428
- package/src/sap/ui/core/cldr/en_NZ.json +506 -468
- package/src/sap/ui/core/cldr/en_PG.json +506 -468
- package/src/sap/ui/core/cldr/en_SG.json +506 -468
- package/src/sap/ui/core/cldr/en_ZA.json +486 -448
- package/src/sap/ui/core/cldr/es.json +473 -468
- package/src/sap/ui/core/cldr/es_AR.json +445 -440
- package/src/sap/ui/core/cldr/es_BO.json +479 -474
- package/src/sap/ui/core/cldr/es_CL.json +469 -464
- package/src/sap/ui/core/cldr/es_CO.json +387 -381
- package/src/sap/ui/core/cldr/es_MX.json +502 -497
- package/src/sap/ui/core/cldr/es_PE.json +455 -450
- package/src/sap/ui/core/cldr/es_UY.json +479 -474
- package/src/sap/ui/core/cldr/es_VE.json +499 -494
- package/src/sap/ui/core/cldr/et.json +378 -320
- package/src/sap/ui/core/cldr/fa.json +104 -104
- package/src/sap/ui/core/cldr/fi.json +401 -315
- package/src/sap/ui/core/cldr/fr.json +391 -385
- package/src/sap/ui/core/cldr/fr_BE.json +391 -385
- package/src/sap/ui/core/cldr/fr_CA.json +499 -493
- package/src/sap/ui/core/cldr/fr_CH.json +334 -328
- package/src/sap/ui/core/cldr/fr_LU.json +391 -385
- package/src/sap/ui/core/cldr/he.json +291 -159
- package/src/sap/ui/core/cldr/hi.json +157 -128
- package/src/sap/ui/core/cldr/hr.json +514 -461
- package/src/sap/ui/core/cldr/hu.json +287 -257
- package/src/sap/ui/core/cldr/id.json +463 -416
- package/src/sap/ui/core/cldr/it.json +468 -413
- package/src/sap/ui/core/cldr/it_CH.json +468 -413
- package/src/sap/ui/core/cldr/ja.json +98 -61
- package/src/sap/ui/core/cldr/kk.json +631 -571
- package/src/sap/ui/core/cldr/ko.json +79 -71
- package/src/sap/ui/core/cldr/lt.json +361 -270
- package/src/sap/ui/core/cldr/lv.json +234 -242
- package/src/sap/ui/core/cldr/ms.json +463 -408
- package/src/sap/ui/core/cldr/nb.json +176 -143
- package/src/sap/ui/core/cldr/nl.json +463 -393
- package/src/sap/ui/core/cldr/nl_BE.json +463 -393
- package/src/sap/ui/core/cldr/pl.json +633 -344
- package/src/sap/ui/core/cldr/pt.json +447 -336
- package/src/sap/ui/core/cldr/pt_PT.json +488 -449
- package/src/sap/ui/core/cldr/ro.json +477 -383
- package/src/sap/ui/core/cldr/ru.json +367 -332
- package/src/sap/ui/core/cldr/ru_UA.json +361 -326
- package/src/sap/ui/core/cldr/sk.json +502 -537
- package/src/sap/ui/core/cldr/sl.json +168 -161
- package/src/sap/ui/core/cldr/sr.json +276 -225
- package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
- package/src/sap/ui/core/cldr/sv.json +420 -346
- package/src/sap/ui/core/cldr/th.json +117 -94
- package/src/sap/ui/core/cldr/tr.json +413 -359
- package/src/sap/ui/core/cldr/uk.json +395 -368
- package/src/sap/ui/core/cldr/vi.json +392 -379
- package/src/sap/ui/core/cldr/zh_CN.json +91 -33
- package/src/sap/ui/core/cldr/zh_HK.json +90 -32
- package/src/sap/ui/core/cldr/zh_SG.json +90 -32
- package/src/sap/ui/core/cldr/zh_TW.json +75 -51
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
- package/src/sap/ui/core/date/Islamic.js +4 -4
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/_Calendars.js +5 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/format/DateFormat.js +33 -21
- package/src/sap/ui/core/format/NumberFormat.js +3 -2
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +128 -8
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +2 -2
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/message/MessageType.js +2 -1
- package/src/sap/ui/core/messagebundle.properties +24 -0
- package/src/sap/ui/core/messagebundle_ar.properties +15 -3
- package/src/sap/ui/core/messagebundle_bg.properties +14 -2
- package/src/sap/ui/core/messagebundle_ca.properties +13 -1
- package/src/sap/ui/core/messagebundle_cs.properties +15 -3
- package/src/sap/ui/core/messagebundle_cy.properties +16 -4
- package/src/sap/ui/core/messagebundle_da.properties +15 -3
- package/src/sap/ui/core/messagebundle_de.properties +15 -3
- package/src/sap/ui/core/messagebundle_el.properties +16 -4
- package/src/sap/ui/core/messagebundle_en.properties +12 -0
- package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
- package/src/sap/ui/core/messagebundle_es.properties +15 -3
- package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
- package/src/sap/ui/core/messagebundle_et.properties +15 -3
- package/src/sap/ui/core/messagebundle_fi.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
- package/src/sap/ui/core/messagebundle_hi.properties +16 -4
- package/src/sap/ui/core/messagebundle_hr.properties +14 -2
- package/src/sap/ui/core/messagebundle_hu.properties +16 -4
- package/src/sap/ui/core/messagebundle_id.properties +15 -3
- package/src/sap/ui/core/messagebundle_it.properties +17 -5
- package/src/sap/ui/core/messagebundle_iw.properties +15 -3
- package/src/sap/ui/core/messagebundle_ja.properties +25 -13
- package/src/sap/ui/core/messagebundle_kk.properties +15 -3
- package/src/sap/ui/core/messagebundle_ko.properties +14 -2
- package/src/sap/ui/core/messagebundle_lt.properties +15 -3
- package/src/sap/ui/core/messagebundle_lv.properties +15 -3
- package/src/sap/ui/core/messagebundle_mk.properties +352 -0
- package/src/sap/ui/core/messagebundle_ms.properties +15 -3
- package/src/sap/ui/core/messagebundle_nl.properties +15 -3
- package/src/sap/ui/core/messagebundle_no.properties +14 -2
- package/src/sap/ui/core/messagebundle_pl.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
- package/src/sap/ui/core/messagebundle_ro.properties +15 -3
- package/src/sap/ui/core/messagebundle_ru.properties +15 -3
- package/src/sap/ui/core/messagebundle_sh.properties +43 -31
- package/src/sap/ui/core/messagebundle_sk.properties +16 -4
- package/src/sap/ui/core/messagebundle_sl.properties +15 -3
- package/src/sap/ui/core/messagebundle_sv.properties +22 -10
- package/src/sap/ui/core/messagebundle_th.properties +15 -3
- package/src/sap/ui/core/messagebundle_tr.properties +15 -3
- package/src/sap/ui/core/messagebundle_uk.properties +18 -6
- package/src/sap/ui/core/messagebundle_vi.properties +18 -6
- package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
- package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
- package/src/sap/ui/core/mvc/Controller.js +22 -16
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +1 -1
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +4 -1
- package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +25 -15
- package/src/sap/ui/core/mvc/ViewType.js +2 -0
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
- package/src/sap/ui/core/plugin/LessSupport.js +3 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Router.js +2 -4
- package/src/sap/ui/core/routing/Target.js +1 -3
- package/src/sap/ui/core/routing/Targets.js +2 -3
- package/src/sap/ui/core/routing/Views.js +2 -3
- package/src/sap/ui/core/routing/async/Target.js +1 -1
- package/src/sap/ui/core/rules/Config.support.js +11 -17
- package/src/sap/ui/core/search/OpenSearchProvider.js +2 -1
- package/src/sap/ui/core/search/SearchProvider.js +2 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Hotkeys.js +5 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
- package/src/sap/ui/core/support/Support.js +3 -5
- package/src/sap/ui/core/support/ToolsAPI.js +15 -11
- package/src/sap/ui/core/support/plugins/ControlTree.js +2 -2
- package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +7 -5
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
- package/src/sap/ui/core/syncStyleClass.js +2 -2
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +9 -9
- package/src/sap/ui/core/theming/Parameters.js +18 -19
- package/src/sap/ui/core/theming/ThemeManager.js +23 -4
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
- package/src/sap/ui/core/util/_LocalizationHelper.js +122 -0
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +29 -7
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +9 -4
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +9 -4
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +15 -5
- package/src/sap/ui/model/ListBinding.js +5 -0
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +14 -8
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/TreeBinding.js +3 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
- package/src/sap/ui/model/json/JSONListBinding.js +3 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
- package/src/sap/ui/model/message/MessageListBinding.js +3 -0
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +8 -2
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +9 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +40 -15
- package/src/sap/ui/model/odata/v2/ODataModel.js +26 -62
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +38 -4
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +3 -0
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +2 -2
- package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
- package/src/sap/ui/model/resource/ResourceModel.js +5 -6
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
- package/src/sap/ui/performance/BeaconRequest.js +2 -2
- package/src/sap/ui/performance/trace/Interaction.js +20 -16
- package/src/sap/ui/qunit/QUnitUtils.js +64 -45
- package/src/sap/ui/qunit/qunit-coverage.js +6 -0
- package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/security/Security.js +128 -0
- package/src/sap/ui/test/BlanketReporter.js +2 -3
- package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
- package/src/sap/ui/test/BranchTracking.js +2 -3
- package/src/sap/ui/test/ModuleTracking.js +48 -20
- package/src/sap/ui/test/OpaExtension.js +3 -3
- package/src/sap/ui/test/OpaPlugin.js +16 -6
- package/src/sap/ui/test/TestUtils.js +7 -4
- package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
- package/src/sap/ui/test/_ControlFinder.js +3 -2
- package/src/sap/ui/test/_LogCollector.js +1 -0
- package/src/sap/ui/test/_UsageReport.js +115 -114
- package/src/sap/ui/test/actions/EnterText.js +24 -2
- package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
- package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
- package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
- package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +1 -1
- package/src/sap/ui/test/matchers/LabelFor.js +2 -12
- package/src/sap/ui/test/matchers/Matcher.js +1 -1
- package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
- package/src/sap/ui/test/selectors/_Selector.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +84 -11
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/manifest.json +3 -10
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/tutorial/databinding/01/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/01/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/01/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/02/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/03/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/04/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/05/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/Component.js +9 -27
- package/test/sap/ui/core/demokit/tutorial/databinding/06/manifest.json +22 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/07/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/08/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/09/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/10/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/11/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/12/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/13/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/14/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/Component.js +9 -32
- package/test/sap/ui/core/demokit/tutorial/databinding/15/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/navigation/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/Component.js +9 -35
- package/test/sap/ui/core/demokit/tutorial/navigation/02/manifest.json +30 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/Component.js +9 -37
- package/test/sap/ui/core/demokit/tutorial/navigation/03/manifest.json +32 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/04/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/05/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/Component.js +9 -40
- package/test/sap/ui/core/demokit/tutorial/navigation/06/manifest.json +35 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/Component.js +9 -42
- package/test/sap/ui/core/demokit/tutorial/navigation/07/manifest.json +37 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/08/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/09/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/Component.js +9 -47
- package/test/sap/ui/core/demokit/tutorial/navigation/10/manifest.json +42 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/11/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/12/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/13/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/14/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/15/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/16/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/17/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
- package/test/sap/ui/core/qunit/ClientModel.qunit.js +28 -28
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
- package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
- package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
- package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
- package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
- package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
- package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Lib.qunit.js +64 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +90 -4
- package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
- package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
- package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
- package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +49 -30
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
- package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
- package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
- package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
- package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
- package/test/sap/ui/core/qunit/component/Component.qunit.js +100 -7
- package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
- package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
- package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
- package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
- package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +7 -4
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
- package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
- package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
- package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
- package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
- package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +5 -2
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +5 -2
- package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
- package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +68 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +46 -2
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
- package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
- package/test/sap/ui/core/qunit/odata/ODataModel_legacyAPIs.qunit.js +22 -22
- package/test/sap/ui/core/qunit/odata/ODataTreeBindingAdapter.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +52 -29
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +8 -15
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +211 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +32 -36
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +19 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1896 -407
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +66 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
- package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +11 -2
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +4 -7
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
- package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
- package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
- package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
- package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
- package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
- package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
- package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
- package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
- package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
- package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
- package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
- package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
- package/test/sap/ui/core/relnotes/changes-1.120.json +442 -0
- package/test/sap/ui/core/terminologies/App.controller.js +2 -3
- package/test/sap/ui/core/terminologies/main.js +2 -3
- package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
- package/src/sap/ui/core/ConfigTest.js +0 -17
- package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
- package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
- package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
- package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
- package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
|
|
3
|
-
"__version": "
|
|
4
|
-
"__buildtime": "
|
|
3
|
+
"__version": "43.0.0",
|
|
4
|
+
"__buildtime": "2023-09-28T11:39:07.908Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "afar",
|
|
7
7
|
"ab": "abchaski",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"am": "amharski",
|
|
25
25
|
"an": "aragoński",
|
|
26
26
|
"ang": "staroangielski",
|
|
27
|
+
"ann": "obolo",
|
|
27
28
|
"anp": "angika",
|
|
28
29
|
"ar": "arabski",
|
|
29
30
|
"ar_001": "współczesny arabski",
|
|
@@ -40,6 +41,7 @@
|
|
|
40
41
|
"asa": "asu",
|
|
41
42
|
"ase": "amerykański język migowy",
|
|
42
43
|
"ast": "asturyjski",
|
|
44
|
+
"atj": "atikamekw",
|
|
43
45
|
"av": "awarski",
|
|
44
46
|
"avk": "kotava",
|
|
45
47
|
"awa": "awadhi",
|
|
@@ -108,14 +110,22 @@
|
|
|
108
110
|
"ckb": "sorani",
|
|
109
111
|
"ckb_alt-menu": "kurdyjski sorani",
|
|
110
112
|
"ckb_alt-variant": "sorani",
|
|
113
|
+
"clc": "chilcotin",
|
|
111
114
|
"co": "korsykański",
|
|
112
115
|
"cop": "koptyjski",
|
|
113
116
|
"cps": "capiznon",
|
|
114
117
|
"cr": "kri",
|
|
118
|
+
"crg": "miszif",
|
|
115
119
|
"crh": "krymskotatarski",
|
|
120
|
+
"crj": "kri południowo-wschodni",
|
|
121
|
+
"crk": "kri równinny",
|
|
122
|
+
"crl": "kri północno-wschodni",
|
|
123
|
+
"crm": "kri Moose",
|
|
124
|
+
"crr": "algonkiński (Karolina Północna)",
|
|
116
125
|
"crs": "kreolski seszelski",
|
|
117
126
|
"cs": "czeski",
|
|
118
127
|
"csb": "kaszubski",
|
|
128
|
+
"csw": "kri bagienny",
|
|
119
129
|
"cu": "cerkiewnosłowiański",
|
|
120
130
|
"cv": "czuwaski",
|
|
121
131
|
"cy": "walijski",
|
|
@@ -153,9 +163,9 @@
|
|
|
153
163
|
"en_AU": "angielski australijski",
|
|
154
164
|
"en_CA": "angielski kanadyjski",
|
|
155
165
|
"en_GB": "angielski brytyjski",
|
|
156
|
-
"en_GB-alt-short": "angielski
|
|
166
|
+
"en_GB-alt-short": "angielski (Wlk. Bryt.)",
|
|
157
167
|
"en_US": "angielski amerykański",
|
|
158
|
-
"en_US-alt-short": "angielski
|
|
168
|
+
"en_US-alt-short": "angielski (USA)",
|
|
159
169
|
"enm": "średnioangielski",
|
|
160
170
|
"eo": "esperanto",
|
|
161
171
|
"es": "hiszpański",
|
|
@@ -221,8 +231,11 @@
|
|
|
221
231
|
"hai": "haida",
|
|
222
232
|
"hak": "hakka",
|
|
223
233
|
"haw": "hawajski",
|
|
234
|
+
"hax": "haida południowy",
|
|
224
235
|
"he": "hebrajski",
|
|
225
236
|
"hi": "hindi",
|
|
237
|
+
"hi_Latn": "hindi (alfabet łaciński)",
|
|
238
|
+
"hi_Latn-alt-variant": "hinglish",
|
|
226
239
|
"hif": "hindi fidżyjskie",
|
|
227
240
|
"hil": "hiligaynon",
|
|
228
241
|
"hit": "hetycki",
|
|
@@ -234,6 +247,7 @@
|
|
|
234
247
|
"ht": "kreolski haitański",
|
|
235
248
|
"hu": "węgierski",
|
|
236
249
|
"hup": "hupa",
|
|
250
|
+
"hur": "halkomelem",
|
|
237
251
|
"hy": "ormiański",
|
|
238
252
|
"hz": "herero",
|
|
239
253
|
"ia": "interlingua",
|
|
@@ -244,6 +258,7 @@
|
|
|
244
258
|
"ig": "igbo",
|
|
245
259
|
"ii": "syczuański",
|
|
246
260
|
"ik": "inupiak",
|
|
261
|
+
"ikt": "inuktitut zachodniokanadyjski",
|
|
247
262
|
"ilo": "ilokano",
|
|
248
263
|
"inh": "inguski",
|
|
249
264
|
"io": "ido",
|
|
@@ -310,6 +325,7 @@
|
|
|
310
325
|
"kut": "kutenai",
|
|
311
326
|
"kv": "komi",
|
|
312
327
|
"kw": "kornijski",
|
|
328
|
+
"kwk": "kwakiutl",
|
|
313
329
|
"ky": "kirgiski",
|
|
314
330
|
"la": "łaciński",
|
|
315
331
|
"lad": "ladyński",
|
|
@@ -322,6 +338,7 @@
|
|
|
322
338
|
"lg": "ganda",
|
|
323
339
|
"li": "limburski",
|
|
324
340
|
"lij": "liguryjski",
|
|
341
|
+
"lil": "lillooet",
|
|
325
342
|
"liv": "liwski",
|
|
326
343
|
"lkt": "lakota",
|
|
327
344
|
"lmo": "lombardzki",
|
|
@@ -331,6 +348,7 @@
|
|
|
331
348
|
"lou": "kreolski luizjański",
|
|
332
349
|
"loz": "lozi",
|
|
333
350
|
"lrc": "luryjski północny",
|
|
351
|
+
"lsm": "saamia",
|
|
334
352
|
"lt": "litewski",
|
|
335
353
|
"ltg": "łatgalski",
|
|
336
354
|
"lu": "luba-katanga",
|
|
@@ -369,6 +387,7 @@
|
|
|
369
387
|
"mn": "mongolski",
|
|
370
388
|
"mnc": "manchu",
|
|
371
389
|
"mni": "manipuri",
|
|
390
|
+
"moe": "innu-aimun",
|
|
372
391
|
"moh": "mohawk",
|
|
373
392
|
"mos": "mossi",
|
|
374
393
|
"mr": "marathi",
|
|
@@ -421,6 +440,11 @@
|
|
|
421
440
|
"nzi": "nzema",
|
|
422
441
|
"oc": "oksytański",
|
|
423
442
|
"oj": "odżibwa",
|
|
443
|
+
"ojb": "odżibwe północno-zachodni",
|
|
444
|
+
"ojc": "odżibwe centralny",
|
|
445
|
+
"ojs": "odżi-kri",
|
|
446
|
+
"ojw": "odżibwe zachodni",
|
|
447
|
+
"oka": "okanagan",
|
|
424
448
|
"om": "oromo",
|
|
425
449
|
"or": "orija",
|
|
426
450
|
"os": "osetyjski",
|
|
@@ -440,10 +464,12 @@
|
|
|
440
464
|
"pfl": "palatynacki",
|
|
441
465
|
"phn": "fenicki",
|
|
442
466
|
"pi": "palijski",
|
|
467
|
+
"pis": "pijin",
|
|
443
468
|
"pl": "polski",
|
|
444
469
|
"pms": "piemoncki",
|
|
445
470
|
"pnt": "pontyjski",
|
|
446
471
|
"pon": "ponpejski",
|
|
472
|
+
"pqm": "malecite-passamaquoddy",
|
|
447
473
|
"prg": "pruski",
|
|
448
474
|
"pro": "staroprowansalski",
|
|
449
475
|
"ps": "paszto",
|
|
@@ -506,6 +532,7 @@
|
|
|
506
532
|
"sid": "sidamo",
|
|
507
533
|
"sk": "słowacki",
|
|
508
534
|
"sl": "słoweński",
|
|
535
|
+
"slh": "lushootseed południowy",
|
|
509
536
|
"sli": "dolnośląski",
|
|
510
537
|
"sly": "selayar",
|
|
511
538
|
"sm": "samoański",
|
|
@@ -525,6 +552,7 @@
|
|
|
525
552
|
"ssy": "saho",
|
|
526
553
|
"st": "sotho południowy",
|
|
527
554
|
"stq": "fryzyjski saterlandzki",
|
|
555
|
+
"str": "salisz",
|
|
528
556
|
"su": "sundajski",
|
|
529
557
|
"suk": "sukuma",
|
|
530
558
|
"sus": "susu",
|
|
@@ -537,6 +565,7 @@
|
|
|
537
565
|
"syr": "syryjski",
|
|
538
566
|
"szl": "śląski",
|
|
539
567
|
"ta": "tamilski",
|
|
568
|
+
"tce": "tutchone południowy",
|
|
540
569
|
"tcy": "tulu",
|
|
541
570
|
"te": "telugu",
|
|
542
571
|
"tem": "temne",
|
|
@@ -544,7 +573,9 @@
|
|
|
544
573
|
"ter": "tereno",
|
|
545
574
|
"tet": "tetum",
|
|
546
575
|
"tg": "tadżycki",
|
|
576
|
+
"tgx": "tagish",
|
|
547
577
|
"th": "tajski",
|
|
578
|
+
"tht": "tahltan",
|
|
548
579
|
"ti": "tigrinia",
|
|
549
580
|
"tig": "tigre",
|
|
550
581
|
"tiv": "tiw",
|
|
@@ -559,6 +590,7 @@
|
|
|
559
590
|
"tn": "setswana",
|
|
560
591
|
"to": "tonga",
|
|
561
592
|
"tog": "tonga (Niasa)",
|
|
593
|
+
"tok": "toki pona",
|
|
562
594
|
"tpi": "tok pisin",
|
|
563
595
|
"tr": "turecki",
|
|
564
596
|
"tru": "turoyo",
|
|
@@ -567,6 +599,7 @@
|
|
|
567
599
|
"tsd": "cakoński",
|
|
568
600
|
"tsi": "tsimshian",
|
|
569
601
|
"tt": "tatarski",
|
|
602
|
+
"ttm": "tutchone północny",
|
|
570
603
|
"ttt": "tacki",
|
|
571
604
|
"tum": "tumbuka",
|
|
572
605
|
"tvl": "tuvalu",
|
|
@@ -633,9 +666,7 @@
|
|
|
633
666
|
"zza": "zazaki"
|
|
634
667
|
},
|
|
635
668
|
"scripts": {
|
|
636
|
-
"Adlm": "
|
|
637
|
-
"Aghb": "Aghb",
|
|
638
|
-
"Ahom": "Ahom",
|
|
669
|
+
"Adlm": "adlam",
|
|
639
670
|
"Arab": "arabskie",
|
|
640
671
|
"Arab-alt-variant": "perso-arabskie",
|
|
641
672
|
"Aran": "nastaliq",
|
|
@@ -644,10 +675,8 @@
|
|
|
644
675
|
"Avst": "awestyjskie",
|
|
645
676
|
"Bali": "balijskie",
|
|
646
677
|
"Bamu": "bamun",
|
|
647
|
-
"Bass": "Bass",
|
|
648
678
|
"Batk": "batak",
|
|
649
679
|
"Beng": "bengalskie",
|
|
650
|
-
"Bhks": "Bhks",
|
|
651
680
|
"Blis": "symbole Blissa",
|
|
652
681
|
"Bopo": "bopomofo",
|
|
653
682
|
"Brah": "brahmi",
|
|
@@ -658,32 +687,22 @@
|
|
|
658
687
|
"Cans": "zunifikowane symbole kanadyjskich autochtonów",
|
|
659
688
|
"Cari": "karyjskie",
|
|
660
689
|
"Cham": "czamskie",
|
|
661
|
-
"Cher": "
|
|
662
|
-
"Chrs": "Chrs",
|
|
690
|
+
"Cher": "czirokeskie",
|
|
663
691
|
"Cirt": "cirth",
|
|
664
692
|
"Copt": "koptyjskie",
|
|
665
|
-
"Cpmn": "Cpmn",
|
|
666
693
|
"Cprt": "cypryjskie",
|
|
667
694
|
"Cyrl": "cyrylica",
|
|
668
695
|
"Cyrs": "cyrylica staro-cerkiewno-słowiańska",
|
|
669
696
|
"Deva": "dewanagari",
|
|
670
|
-
"Diak": "Diak",
|
|
671
|
-
"Dogr": "Dogr",
|
|
672
697
|
"Dsrt": "deseret",
|
|
673
|
-
"Dupl": "Dupl",
|
|
674
698
|
"Egyd": "egipskie demotyczne",
|
|
675
699
|
"Egyh": "egipskie hieratyczne",
|
|
676
700
|
"Egyp": "hieroglify egipskie",
|
|
677
|
-
"Elba": "Elba",
|
|
678
|
-
"Elym": "Elym",
|
|
679
701
|
"Ethi": "etiopskie",
|
|
680
702
|
"Geok": "gruzińskie chucuri",
|
|
681
703
|
"Geor": "gruzińskie",
|
|
682
704
|
"Glag": "głagolica",
|
|
683
|
-
"Gong": "Gong",
|
|
684
|
-
"Gonm": "Gonm",
|
|
685
705
|
"Goth": "gotyckie",
|
|
686
|
-
"Gran": "Gran",
|
|
687
706
|
"Grek": "greckie",
|
|
688
707
|
"Gujr": "gudżarati",
|
|
689
708
|
"Guru": "gurmukhi",
|
|
@@ -695,12 +714,9 @@
|
|
|
695
714
|
"Hans-alt-stand-alone": "chińskie uproszczone",
|
|
696
715
|
"Hant": "tradycyjne",
|
|
697
716
|
"Hant-alt-stand-alone": "chińskie tradycyjne",
|
|
698
|
-
"Hatr": "Hatr",
|
|
699
717
|
"Hebr": "hebrajskie",
|
|
700
718
|
"Hira": "hiragana",
|
|
701
|
-
"Hluw": "Hluw",
|
|
702
719
|
"Hmng": "pahawh hmong",
|
|
703
|
-
"Hmnp": "Hmnp",
|
|
704
720
|
"Hrkt": "sylabariusze japońskie",
|
|
705
721
|
"Hung": "starowęgierskie",
|
|
706
722
|
"Inds": "indus",
|
|
@@ -710,11 +726,8 @@
|
|
|
710
726
|
"Jpan": "japońskie",
|
|
711
727
|
"Kali": "kayah li",
|
|
712
728
|
"Kana": "katakana",
|
|
713
|
-
"Kawi": "Kawi",
|
|
714
729
|
"Khar": "charosti",
|
|
715
730
|
"Khmr": "khmerskie",
|
|
716
|
-
"Khoj": "Khoj",
|
|
717
|
-
"Kits": "Kits",
|
|
718
731
|
"Knda": "kannada",
|
|
719
732
|
"Kore": "koreańskie",
|
|
720
733
|
"Kthi": "kaithi",
|
|
@@ -727,43 +740,23 @@
|
|
|
727
740
|
"Limb": "limbu",
|
|
728
741
|
"Lina": "linearne A",
|
|
729
742
|
"Linb": "linearne B",
|
|
730
|
-
"Lisu": "Lisu",
|
|
731
743
|
"Lyci": "likijskie",
|
|
732
744
|
"Lydi": "lidyjskie",
|
|
733
|
-
"Mahj": "Mahj",
|
|
734
|
-
"Maka": "Maka",
|
|
735
745
|
"Mand": "mandejskie",
|
|
736
746
|
"Mani": "manichejskie",
|
|
737
|
-
"Marc": "Marc",
|
|
738
747
|
"Maya": "hieroglify Majów",
|
|
739
|
-
"Medf": "Medf",
|
|
740
|
-
"Mend": "Mend",
|
|
741
|
-
"Merc": "Merc",
|
|
742
748
|
"Mero": "meroickie",
|
|
743
749
|
"Mlym": "malajalam",
|
|
744
|
-
"Modi": "Modi",
|
|
745
750
|
"Mong": "mongolskie",
|
|
746
751
|
"Moon": "Moon’a",
|
|
747
|
-
"Mroo": "Mroo",
|
|
748
752
|
"Mtei": "meitei mayek",
|
|
749
|
-
"Mult": "Mult",
|
|
750
753
|
"Mymr": "birmańskie",
|
|
751
|
-
"Nagm": "Nagm",
|
|
752
|
-
"Nand": "Nand",
|
|
753
|
-
"Narb": "Narb",
|
|
754
|
-
"Nbat": "Nbat",
|
|
755
|
-
"Newa": "Newa",
|
|
756
754
|
"Nkoo": "n’ko",
|
|
757
|
-
"Nshu": "Nshu",
|
|
758
755
|
"Ogam": "ogham",
|
|
759
|
-
"Olck": "ol
|
|
756
|
+
"Olck": "ol ciki",
|
|
760
757
|
"Orkh": "orchońskie",
|
|
761
758
|
"Orya": "orija",
|
|
762
|
-
"Osge": "Osge",
|
|
763
759
|
"Osma": "osmanya",
|
|
764
|
-
"Ougr": "Ougr",
|
|
765
|
-
"Palm": "Palm",
|
|
766
|
-
"Pauc": "Pauc",
|
|
767
760
|
"Perm": "staropermskie",
|
|
768
761
|
"Phag": "phags-pa",
|
|
769
762
|
"Phli": "inskrypcyjne pahlawi",
|
|
@@ -774,35 +767,25 @@
|
|
|
774
767
|
"Prti": "partyjski inskrypcyjny",
|
|
775
768
|
"Qaag": "zawgyi",
|
|
776
769
|
"Rjng": "rejang",
|
|
777
|
-
"Rohg": "
|
|
770
|
+
"Rohg": "hanifi",
|
|
778
771
|
"Roro": "rongorongo",
|
|
779
772
|
"Runr": "runiczne",
|
|
780
773
|
"Samr": "samarytański",
|
|
781
774
|
"Sara": "sarati",
|
|
782
|
-
"Sarb": "Sarb",
|
|
783
775
|
"Saur": "saurashtra",
|
|
784
776
|
"Sgnw": "pismo znakowe",
|
|
785
777
|
"Shaw": "shawa",
|
|
786
|
-
"Shrd": "Shrd",
|
|
787
|
-
"Sidd": "Sidd",
|
|
788
|
-
"Sind": "Sind",
|
|
789
778
|
"Sinh": "syngaleskie",
|
|
790
|
-
"Sogd": "Sogd",
|
|
791
|
-
"Sogo": "Sogo",
|
|
792
|
-
"Sora": "Sora",
|
|
793
|
-
"Soyo": "Soyo",
|
|
794
779
|
"Sund": "sundajskie",
|
|
795
780
|
"Sylo": "syloti nagri",
|
|
796
|
-
"Syrc": "
|
|
781
|
+
"Syrc": "syryjskie",
|
|
797
782
|
"Syre": "syriacki estrangelo",
|
|
798
783
|
"Syrj": "syryjski (odmiana zachodnia)",
|
|
799
784
|
"Syrn": "syryjski (odmiana wschodnia)",
|
|
800
785
|
"Tagb": "tagbanwa",
|
|
801
|
-
"Takr": "Takr",
|
|
802
786
|
"Tale": "tai le",
|
|
803
787
|
"Talu": "nowy tai lue",
|
|
804
788
|
"Taml": "tamilskie",
|
|
805
|
-
"Tang": "Tang",
|
|
806
789
|
"Tavt": "tai viet",
|
|
807
790
|
"Telu": "telugu",
|
|
808
791
|
"Teng": "tengwar",
|
|
@@ -811,20 +794,12 @@
|
|
|
811
794
|
"Thaa": "taana",
|
|
812
795
|
"Thai": "tajskie",
|
|
813
796
|
"Tibt": "tybetańskie",
|
|
814
|
-
"Tirh": "Tirh",
|
|
815
|
-
"Tnsa": "Tnsa",
|
|
816
|
-
"Toto": "Toto",
|
|
817
797
|
"Ugar": "ugaryckie",
|
|
818
798
|
"Vaii": "vai",
|
|
819
799
|
"Visp": "Visible Speech",
|
|
820
|
-
"Vith": "Vith",
|
|
821
|
-
"Wara": "Wara",
|
|
822
|
-
"Wcho": "Wcho",
|
|
823
800
|
"Xpeo": "staroperskie",
|
|
824
801
|
"Xsux": "klinowe sumero-akadyjskie",
|
|
825
|
-
"Yezi": "Yezi",
|
|
826
802
|
"Yiii": "yi",
|
|
827
|
-
"Zanb": "Zanb",
|
|
828
803
|
"Zinh": "dziedziczone",
|
|
829
804
|
"Zmth": "notacja matematyczna",
|
|
830
805
|
"Zsye": "emoji",
|
|
@@ -1051,6 +1026,7 @@
|
|
|
1051
1026
|
"NR": "Nauru",
|
|
1052
1027
|
"NU": "Niue",
|
|
1053
1028
|
"NZ": "Nowa Zelandia",
|
|
1029
|
+
"NZ-alt-variant": "Nowa Zelandia",
|
|
1054
1030
|
"OM": "Oman",
|
|
1055
1031
|
"PA": "Panama",
|
|
1056
1032
|
"PE": "Peru",
|
|
@@ -1110,6 +1086,7 @@
|
|
|
1110
1086
|
"TN": "Tunezja",
|
|
1111
1087
|
"TO": "Tonga",
|
|
1112
1088
|
"TR": "Turcja",
|
|
1089
|
+
"TR-alt-variant": "Turcja",
|
|
1113
1090
|
"TT": "Trynidad i Tobago",
|
|
1114
1091
|
"TV": "Tuvalu",
|
|
1115
1092
|
"TW": "Tajwan",
|
|
@@ -1170,9 +1147,9 @@
|
|
|
1170
1147
|
"EBhm": "E h:mm B",
|
|
1171
1148
|
"EBhms": "E h:mm:ss B",
|
|
1172
1149
|
"Ed": "E, d",
|
|
1173
|
-
"Ehm": "E, h:mm
|
|
1150
|
+
"Ehm": "E, h:mm a",
|
|
1174
1151
|
"EHm": "E, HH:mm",
|
|
1175
|
-
"Ehms": "E, h:mm:ss
|
|
1152
|
+
"Ehms": "E, h:mm:ss a",
|
|
1176
1153
|
"EHms": "E, HH:mm:ss",
|
|
1177
1154
|
"Gy": "y G",
|
|
1178
1155
|
"GyMd": "d.MM.y GGGGG",
|
|
@@ -1182,15 +1159,15 @@
|
|
|
1182
1159
|
"GyMMMM": "LLLL y G",
|
|
1183
1160
|
"GyMMMMd": "d MMMM y G",
|
|
1184
1161
|
"GyMMMMEd": "E, d MMMM y G",
|
|
1185
|
-
"h": "h
|
|
1162
|
+
"h": "h a",
|
|
1186
1163
|
"H": "HH",
|
|
1187
|
-
"hm": "h:mm
|
|
1164
|
+
"hm": "h:mm a",
|
|
1188
1165
|
"Hm": "HH:mm",
|
|
1189
|
-
"hms": "h:mm:ss
|
|
1166
|
+
"hms": "h:mm:ss a",
|
|
1190
1167
|
"Hms": "HH:mm:ss",
|
|
1191
|
-
"hmsv": "h:mm:ss
|
|
1168
|
+
"hmsv": "h:mm:ss a v",
|
|
1192
1169
|
"Hmsv": "HH:mm:ss v",
|
|
1193
|
-
"hmv": "h:mm
|
|
1170
|
+
"hmv": "h:mm a v",
|
|
1194
1171
|
"Hmv": "HH:mm v",
|
|
1195
1172
|
"M": "L",
|
|
1196
1173
|
"Md": "d.MM",
|
|
@@ -1230,13 +1207,13 @@
|
|
|
1230
1207
|
"Year": "{1} {0}"
|
|
1231
1208
|
},
|
|
1232
1209
|
"intervalFormats": {
|
|
1233
|
-
"intervalFormatFallback": "{0}
|
|
1210
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1234
1211
|
"Bh": {
|
|
1235
|
-
"B": "h B
|
|
1212
|
+
"B": "h B – h B",
|
|
1236
1213
|
"h": "h–h B"
|
|
1237
1214
|
},
|
|
1238
1215
|
"Bhm": {
|
|
1239
|
-
"B": "h:mm B
|
|
1216
|
+
"B": "h:mm B – h:mm B",
|
|
1240
1217
|
"h": "h:mm–h:mm B",
|
|
1241
1218
|
"m": "h:mm–h:mm B"
|
|
1242
1219
|
},
|
|
@@ -1244,71 +1221,71 @@
|
|
|
1244
1221
|
"d": "d–d"
|
|
1245
1222
|
},
|
|
1246
1223
|
"Gy": {
|
|
1247
|
-
"G": "y G
|
|
1224
|
+
"G": "y G – y G",
|
|
1248
1225
|
"y": "y–y G"
|
|
1249
1226
|
},
|
|
1250
1227
|
"GyM": {
|
|
1251
|
-
"G": "M.y GGGGG
|
|
1252
|
-
"M": "M.y
|
|
1253
|
-
"y": "M.y
|
|
1228
|
+
"G": "M.y GGGGG – M.y GGGGG",
|
|
1229
|
+
"M": "M.y – M.y GGGGG",
|
|
1230
|
+
"y": "M.y – M.y GGGGG"
|
|
1254
1231
|
},
|
|
1255
1232
|
"GyMd": {
|
|
1256
|
-
"d": "d.M.y
|
|
1257
|
-
"G": "d.M.y GGGGG
|
|
1258
|
-
"M": "d.M.y
|
|
1259
|
-
"y": "d.M.y
|
|
1233
|
+
"d": "d.M.y – d.M.y GGGGG",
|
|
1234
|
+
"G": "d.M.y GGGGG – d.M.y GGGGG",
|
|
1235
|
+
"M": "d.M.y – d.M.y GGGGG",
|
|
1236
|
+
"y": "d.M.y – d.M.y GGGGG"
|
|
1260
1237
|
},
|
|
1261
1238
|
"GyMEd": {
|
|
1262
|
-
"d": "E, d.M.y
|
|
1263
|
-
"G": "E, d.M.y GGGGG
|
|
1264
|
-
"M": "E, d.M.y
|
|
1265
|
-
"y": "E, d.M.y
|
|
1239
|
+
"d": "E, d.M.y – E, d.M.y GGGGG",
|
|
1240
|
+
"G": "E, d.M.y GGGGG – E, d.M.y GGGGG",
|
|
1241
|
+
"M": "E, d.M.y – E, d.M.y GGGGG",
|
|
1242
|
+
"y": "E, d.M.y – E, d.M.y GGGGG"
|
|
1266
1243
|
},
|
|
1267
1244
|
"GyMMM": {
|
|
1268
|
-
"G": "MMM y G
|
|
1269
|
-
"M": "MMM
|
|
1270
|
-
"y": "MMM y
|
|
1245
|
+
"G": "MMM y G – MMM y G",
|
|
1246
|
+
"M": "MMM – MMM y G",
|
|
1247
|
+
"y": "MMM y – MMM y G"
|
|
1271
1248
|
},
|
|
1272
1249
|
"GyMMMd": {
|
|
1273
1250
|
"d": "d–d MMM y G",
|
|
1274
|
-
"G": "d MMM y G
|
|
1275
|
-
"M": "d MMM
|
|
1276
|
-
"y": "d MMM y
|
|
1251
|
+
"G": "d MMM y G – d MMM y G",
|
|
1252
|
+
"M": "d MMM – d MMM y G",
|
|
1253
|
+
"y": "d MMM y – d MMM y G"
|
|
1277
1254
|
},
|
|
1278
1255
|
"GyMMMEd": {
|
|
1279
|
-
"d": "E, d MMM
|
|
1280
|
-
"G": "E, d MMM y G
|
|
1281
|
-
"M": "E, d MMM
|
|
1282
|
-
"y": "E, d MMM y
|
|
1256
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
1257
|
+
"G": "E, d MMM y G – E, d MMM y G",
|
|
1258
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
1259
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
1283
1260
|
},
|
|
1284
1261
|
"h": {
|
|
1285
|
-
"a": "h
|
|
1286
|
-
"h": "h–h
|
|
1262
|
+
"a": "h a–h a",
|
|
1263
|
+
"h": "h–h a"
|
|
1287
1264
|
},
|
|
1288
1265
|
"H": {
|
|
1289
1266
|
"H": "HH–HH"
|
|
1290
1267
|
},
|
|
1291
1268
|
"hm": {
|
|
1292
|
-
"a": "h:mm
|
|
1293
|
-
"h": "h:mm–h:mm
|
|
1294
|
-
"m": "h:mm–h:mm
|
|
1269
|
+
"a": "h:mm a–h:mm a",
|
|
1270
|
+
"h": "h:mm–h:mm a",
|
|
1271
|
+
"m": "h:mm–h:mm a"
|
|
1295
1272
|
},
|
|
1296
1273
|
"Hm": {
|
|
1297
1274
|
"H": "HH:mm–HH:mm",
|
|
1298
1275
|
"m": "HH:mm–HH:mm"
|
|
1299
1276
|
},
|
|
1300
1277
|
"hmv": {
|
|
1301
|
-
"a": "h:mm
|
|
1302
|
-
"h": "h:mm–h:mm
|
|
1303
|
-
"m": "h:mm–h:mm
|
|
1278
|
+
"a": "h:mm a–h:mm a v",
|
|
1279
|
+
"h": "h:mm–h:mm a v",
|
|
1280
|
+
"m": "h:mm–h:mm a v"
|
|
1304
1281
|
},
|
|
1305
1282
|
"Hmv": {
|
|
1306
1283
|
"H": "HH:mm–HH:mm v",
|
|
1307
1284
|
"m": "HH:mm–HH:mm v"
|
|
1308
1285
|
},
|
|
1309
1286
|
"hv": {
|
|
1310
|
-
"a": "h
|
|
1311
|
-
"h": "h–h
|
|
1287
|
+
"a": "h a – h a v",
|
|
1288
|
+
"h": "h–h a v"
|
|
1312
1289
|
},
|
|
1313
1290
|
"Hv": {
|
|
1314
1291
|
"H": "HH–HH v"
|
|
@@ -1337,11 +1314,11 @@
|
|
|
1337
1314
|
},
|
|
1338
1315
|
"MMMMd": {
|
|
1339
1316
|
"d": "d–d MMMM",
|
|
1340
|
-
"M": "d MMMM
|
|
1317
|
+
"M": "d MMMM – d MMMM"
|
|
1341
1318
|
},
|
|
1342
1319
|
"MMMMEd": {
|
|
1343
|
-
"d": "E, d MMMM
|
|
1344
|
-
"M": "E, d MMMM
|
|
1320
|
+
"d": "E, d MMMM – E, d MMMM",
|
|
1321
|
+
"M": "E, d MMMM – E, d MMMM"
|
|
1345
1322
|
},
|
|
1346
1323
|
"y": {
|
|
1347
1324
|
"y": "y–y"
|
|
@@ -1380,13 +1357,13 @@
|
|
|
1380
1357
|
},
|
|
1381
1358
|
"yMMMMd": {
|
|
1382
1359
|
"d": "d–d MMMM y",
|
|
1383
|
-
"M": "d MMMM
|
|
1384
|
-
"y": "d MMMM y
|
|
1360
|
+
"M": "d MMMM – d MMMM y",
|
|
1361
|
+
"y": "d MMMM y – d MMMM y"
|
|
1385
1362
|
},
|
|
1386
1363
|
"yMMMMEd": {
|
|
1387
|
-
"d": "E, d MMMM
|
|
1388
|
-
"M": "E, d MMMM
|
|
1389
|
-
"y": "E, d MMMM y
|
|
1364
|
+
"d": "E, d MMMM – E, d MMMM y",
|
|
1365
|
+
"M": "E, d MMMM – E, d MMMM y",
|
|
1366
|
+
"y": "E, d MMMM y – E, d MMMM y"
|
|
1390
1367
|
}
|
|
1391
1368
|
}
|
|
1392
1369
|
},
|
|
@@ -1739,11 +1716,11 @@
|
|
|
1739
1716
|
"GyMMM": "LLL y G",
|
|
1740
1717
|
"GyMMMd": "d MMM y G",
|
|
1741
1718
|
"GyMMMEd": "E, d MMM y G",
|
|
1742
|
-
"h": "
|
|
1719
|
+
"h": "h a",
|
|
1743
1720
|
"H": "HH",
|
|
1744
|
-
"hm": "
|
|
1721
|
+
"hm": "h:mm a",
|
|
1745
1722
|
"Hm": "HH:mm",
|
|
1746
|
-
"hms": "
|
|
1723
|
+
"hms": "h:mm:ss a",
|
|
1747
1724
|
"Hms": "HH:mm:ss",
|
|
1748
1725
|
"M": "L",
|
|
1749
1726
|
"Md": "d.MM",
|
|
@@ -1781,13 +1758,13 @@
|
|
|
1781
1758
|
"Year": "{1} {0}"
|
|
1782
1759
|
},
|
|
1783
1760
|
"intervalFormats": {
|
|
1784
|
-
"intervalFormatFallback": "{0}
|
|
1761
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1785
1762
|
"Bh": {
|
|
1786
|
-
"B": "h B
|
|
1763
|
+
"B": "h B – h B",
|
|
1787
1764
|
"h": "h–h B"
|
|
1788
1765
|
},
|
|
1789
1766
|
"Bhm": {
|
|
1790
|
-
"B": "h:mm B
|
|
1767
|
+
"B": "h:mm B – h:mm B",
|
|
1791
1768
|
"h": "h:mm–h:mm B",
|
|
1792
1769
|
"m": "h:mm–h:mm B"
|
|
1793
1770
|
},
|
|
@@ -1795,71 +1772,71 @@
|
|
|
1795
1772
|
"d": "d–d"
|
|
1796
1773
|
},
|
|
1797
1774
|
"Gy": {
|
|
1798
|
-
"G": "y G
|
|
1775
|
+
"G": "y G – y G",
|
|
1799
1776
|
"y": "y–y G"
|
|
1800
1777
|
},
|
|
1801
1778
|
"GyM": {
|
|
1802
|
-
"G": "MM.y GGGGG
|
|
1803
|
-
"M": "MM.y
|
|
1804
|
-
"y": "MM.y
|
|
1779
|
+
"G": "MM.y GGGGG – MM.y GGGGG",
|
|
1780
|
+
"M": "MM.y – MM.y GGGGG",
|
|
1781
|
+
"y": "MM.y – MM.y GGGGG"
|
|
1805
1782
|
},
|
|
1806
1783
|
"GyMd": {
|
|
1807
|
-
"d": "dd.MM.y
|
|
1808
|
-
"G": "dd.MM.y GGGGG
|
|
1809
|
-
"M": "dd.MM.y
|
|
1810
|
-
"y": "dd.MM.y
|
|
1784
|
+
"d": "dd.MM.y – dd.MM.y GGGGG",
|
|
1785
|
+
"G": "dd.MM.y GGGGG – dd.MM.y GGGGG",
|
|
1786
|
+
"M": "dd.MM.y – dd.MM.y GGGGG",
|
|
1787
|
+
"y": "dd.MM.y – dd.MM.y GGGGG"
|
|
1811
1788
|
},
|
|
1812
1789
|
"GyMEd": {
|
|
1813
|
-
"d": "E, dd.MM.y
|
|
1814
|
-
"G": "E, dd.MM.y GGGGG
|
|
1815
|
-
"M": "E, dd.MM.y
|
|
1816
|
-
"y": "E, dd.MM.y
|
|
1790
|
+
"d": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
1791
|
+
"G": "E, dd.MM.y GGGGG – E, dd.MM.y GGGGG",
|
|
1792
|
+
"M": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
1793
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
1817
1794
|
},
|
|
1818
1795
|
"GyMMM": {
|
|
1819
|
-
"G": "MMM y G
|
|
1820
|
-
"M": "MMM
|
|
1821
|
-
"y": "MMM y
|
|
1796
|
+
"G": "MMM y G – MMM y G",
|
|
1797
|
+
"M": "MMM – MMM y G",
|
|
1798
|
+
"y": "MMM y – MMM y G"
|
|
1822
1799
|
},
|
|
1823
1800
|
"GyMMMd": {
|
|
1824
1801
|
"d": "d–d MMM y G",
|
|
1825
|
-
"G": "d MMM y G
|
|
1826
|
-
"M": "d MMM
|
|
1827
|
-
"y": "d MMM y
|
|
1802
|
+
"G": "d MMM y G – d MMM y G",
|
|
1803
|
+
"M": "d MMM – d MMM y G",
|
|
1804
|
+
"y": "d MMM y – d MMM y G"
|
|
1828
1805
|
},
|
|
1829
1806
|
"GyMMMEd": {
|
|
1830
|
-
"d": "E, d MMM
|
|
1831
|
-
"G": "E, d MMM y G
|
|
1832
|
-
"M": "E, d MMM
|
|
1833
|
-
"y": "E, d MMM y
|
|
1807
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
1808
|
+
"G": "E, d MMM y G – E, d MMM y G",
|
|
1809
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
1810
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
1834
1811
|
},
|
|
1835
1812
|
"h": {
|
|
1836
|
-
"a": "h
|
|
1837
|
-
"h": "h–h
|
|
1813
|
+
"a": "h a – h a",
|
|
1814
|
+
"h": "h–h a"
|
|
1838
1815
|
},
|
|
1839
1816
|
"H": {
|
|
1840
1817
|
"H": "HH–HH"
|
|
1841
1818
|
},
|
|
1842
1819
|
"hm": {
|
|
1843
|
-
"a": "h:mm
|
|
1844
|
-
"h": "h:mm–h:mm
|
|
1845
|
-
"m": "h:mm–h:mm
|
|
1820
|
+
"a": "h:mm a – h:mm a",
|
|
1821
|
+
"h": "h:mm–h:mm a",
|
|
1822
|
+
"m": "h:mm–h:mm a"
|
|
1846
1823
|
},
|
|
1847
1824
|
"Hm": {
|
|
1848
1825
|
"H": "HH:mm–HH:mm",
|
|
1849
1826
|
"m": "HH:mm–HH:mm"
|
|
1850
1827
|
},
|
|
1851
1828
|
"hmv": {
|
|
1852
|
-
"a": "h:mm
|
|
1853
|
-
"h": "h:mm–h:mm
|
|
1854
|
-
"m": "h:mm–h:mm
|
|
1829
|
+
"a": "h:mm a – h:mm a v",
|
|
1830
|
+
"h": "h:mm–h:mm a v",
|
|
1831
|
+
"m": "h:mm–h:mm a v"
|
|
1855
1832
|
},
|
|
1856
1833
|
"Hmv": {
|
|
1857
1834
|
"H": "HH:mm–HH:mm v",
|
|
1858
1835
|
"m": "HH:mm–HH:mm v"
|
|
1859
1836
|
},
|
|
1860
1837
|
"hv": {
|
|
1861
|
-
"a": "h
|
|
1862
|
-
"h": "h–h
|
|
1838
|
+
"a": "h a – h a v",
|
|
1839
|
+
"h": "h–h a v"
|
|
1863
1840
|
},
|
|
1864
1841
|
"Hv": {
|
|
1865
1842
|
"H": "HH–HH v"
|
|
@@ -1872,26 +1849,26 @@
|
|
|
1872
1849
|
"M": "dd.MM–dd.MM"
|
|
1873
1850
|
},
|
|
1874
1851
|
"MEd": {
|
|
1875
|
-
"d": "E, dd.MM
|
|
1876
|
-
"M": "E, dd.MM
|
|
1852
|
+
"d": "E, dd.MM – E, dd.MM",
|
|
1853
|
+
"M": "E, dd.MM – E, dd.MM"
|
|
1877
1854
|
},
|
|
1878
1855
|
"MMM": {
|
|
1879
1856
|
"M": "LLL–LLL"
|
|
1880
1857
|
},
|
|
1881
1858
|
"MMMd": {
|
|
1882
1859
|
"d": "d–d MMM",
|
|
1883
|
-
"M": "d MMM
|
|
1860
|
+
"M": "d MMM – d MMM"
|
|
1884
1861
|
},
|
|
1885
1862
|
"MMMEd": {
|
|
1886
|
-
"d": "E, d MMM
|
|
1887
|
-
"M": "E, d MMM
|
|
1863
|
+
"d": "E, d MMM – E, d MMM",
|
|
1864
|
+
"M": "E, d MMM – E, d MMM"
|
|
1888
1865
|
},
|
|
1889
1866
|
"y": {
|
|
1890
1867
|
"y": "y–y G"
|
|
1891
1868
|
},
|
|
1892
1869
|
"yM": {
|
|
1893
|
-
"M": "MM.y
|
|
1894
|
-
"y": "MM.y
|
|
1870
|
+
"M": "MM.y – MM.y GGGGG",
|
|
1871
|
+
"y": "MM.y – MM.y GGGGG"
|
|
1895
1872
|
},
|
|
1896
1873
|
"yMd": {
|
|
1897
1874
|
"d": "dd–dd.MM.y GGGGG",
|
|
@@ -1899,27 +1876,27 @@
|
|
|
1899
1876
|
"y": "dd.MM.y–dd.MM.y G"
|
|
1900
1877
|
},
|
|
1901
1878
|
"yMEd": {
|
|
1902
|
-
"d": "E, dd.MM.y
|
|
1903
|
-
"M": "E, dd.MM.y
|
|
1904
|
-
"y": "E, dd.MM.y
|
|
1879
|
+
"d": "E, dd.MM.y – E, dd.MM.y G",
|
|
1880
|
+
"M": "E, dd.MM.y – E, dd.MM.y G",
|
|
1881
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
1905
1882
|
},
|
|
1906
1883
|
"yMMM": {
|
|
1907
1884
|
"M": "LLL–LLL y G",
|
|
1908
|
-
"y": "LLL y
|
|
1885
|
+
"y": "LLL y – LLL y G"
|
|
1909
1886
|
},
|
|
1910
1887
|
"yMMMd": {
|
|
1911
1888
|
"d": "d–d MMM y G",
|
|
1912
|
-
"M": "d MMM
|
|
1913
|
-
"y": "d MMM y
|
|
1889
|
+
"M": "d MMM – d MMM y G",
|
|
1890
|
+
"y": "d MMM y – d MMM y G"
|
|
1914
1891
|
},
|
|
1915
1892
|
"yMMMEd": {
|
|
1916
|
-
"d": "E, d
|
|
1917
|
-
"M": "E, d MMM
|
|
1918
|
-
"y": "E, d MMM y
|
|
1893
|
+
"d": "E, d – E, d MMM y G",
|
|
1894
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
1895
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
1919
1896
|
},
|
|
1920
1897
|
"yMMMM": {
|
|
1921
1898
|
"M": "LLLL–LLLL y G",
|
|
1922
|
-
"y": "LLLL y
|
|
1899
|
+
"y": "LLLL y – LLLL y G"
|
|
1923
1900
|
}
|
|
1924
1901
|
}
|
|
1925
1902
|
},
|
|
@@ -2269,11 +2246,11 @@
|
|
|
2269
2246
|
"GyMMM": "LLL y G",
|
|
2270
2247
|
"GyMMMd": "d MMM y G",
|
|
2271
2248
|
"GyMMMEd": "E, d MMM y G",
|
|
2272
|
-
"h": "
|
|
2249
|
+
"h": "h a",
|
|
2273
2250
|
"H": "HH",
|
|
2274
|
-
"hm": "
|
|
2251
|
+
"hm": "h:mm a",
|
|
2275
2252
|
"Hm": "HH:mm",
|
|
2276
|
-
"hms": "
|
|
2253
|
+
"hms": "h:mm:ss a",
|
|
2277
2254
|
"Hms": "HH:mm:ss",
|
|
2278
2255
|
"M": "L",
|
|
2279
2256
|
"Md": "d.MM",
|
|
@@ -2311,13 +2288,13 @@
|
|
|
2311
2288
|
"Year": "{1} {0}"
|
|
2312
2289
|
},
|
|
2313
2290
|
"intervalFormats": {
|
|
2314
|
-
"intervalFormatFallback": "{0}
|
|
2291
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2315
2292
|
"Bh": {
|
|
2316
|
-
"B": "h B
|
|
2293
|
+
"B": "h B – h B",
|
|
2317
2294
|
"h": "h–h B"
|
|
2318
2295
|
},
|
|
2319
2296
|
"Bhm": {
|
|
2320
|
-
"B": "h:mm B
|
|
2297
|
+
"B": "h:mm B – h:mm B",
|
|
2321
2298
|
"h": "h:mm–h:mm B",
|
|
2322
2299
|
"m": "h:mm–h:mm B"
|
|
2323
2300
|
},
|
|
@@ -2325,71 +2302,71 @@
|
|
|
2325
2302
|
"d": "d–d"
|
|
2326
2303
|
},
|
|
2327
2304
|
"Gy": {
|
|
2328
|
-
"G": "y G
|
|
2305
|
+
"G": "y G – y G",
|
|
2329
2306
|
"y": "y–y G"
|
|
2330
2307
|
},
|
|
2331
2308
|
"GyM": {
|
|
2332
|
-
"G": "MM.y GGGGG
|
|
2333
|
-
"M": "MM.y
|
|
2334
|
-
"y": "MM.y
|
|
2309
|
+
"G": "MM.y GGGGG – MM.y GGGGG",
|
|
2310
|
+
"M": "MM.y – MM.y GGGGG",
|
|
2311
|
+
"y": "MM.y – MM.y GGGGG"
|
|
2335
2312
|
},
|
|
2336
2313
|
"GyMd": {
|
|
2337
|
-
"d": "dd.MM.y
|
|
2338
|
-
"G": "dd.MM.y GGGGG
|
|
2339
|
-
"M": "dd.MM.y
|
|
2340
|
-
"y": "dd.MM.y
|
|
2314
|
+
"d": "dd.MM.y – dd.MM.y GGGGG",
|
|
2315
|
+
"G": "dd.MM.y GGGGG – dd.MM.y GGGGG",
|
|
2316
|
+
"M": "dd.MM.y – dd.MM.y GGGGG",
|
|
2317
|
+
"y": "dd.MM.y – dd.MM.y GGGGG"
|
|
2341
2318
|
},
|
|
2342
2319
|
"GyMEd": {
|
|
2343
|
-
"d": "E, dd.MM.y
|
|
2344
|
-
"G": "E, dd.MM.y GGGGG
|
|
2345
|
-
"M": "E, dd.MM.y
|
|
2346
|
-
"y": "E, dd.MM.y
|
|
2320
|
+
"d": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
2321
|
+
"G": "E, dd.MM.y GGGGG – E, dd.MM.y GGGGG",
|
|
2322
|
+
"M": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
2323
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
2347
2324
|
},
|
|
2348
2325
|
"GyMMM": {
|
|
2349
|
-
"G": "MMM y G
|
|
2350
|
-
"M": "MMM
|
|
2351
|
-
"y": "MMM y
|
|
2326
|
+
"G": "MMM y G – MMM y G",
|
|
2327
|
+
"M": "MMM – MMM y G",
|
|
2328
|
+
"y": "MMM y – MMM y G"
|
|
2352
2329
|
},
|
|
2353
2330
|
"GyMMMd": {
|
|
2354
2331
|
"d": "d–d MMM y G",
|
|
2355
|
-
"G": "d MMM y G
|
|
2356
|
-
"M": "d MMM
|
|
2357
|
-
"y": "d MMM y
|
|
2332
|
+
"G": "d MMM y G – d MMM y G",
|
|
2333
|
+
"M": "d MMM – d MMM y G",
|
|
2334
|
+
"y": "d MMM y – d MMM y G"
|
|
2358
2335
|
},
|
|
2359
2336
|
"GyMMMEd": {
|
|
2360
|
-
"d": "E, d MMM
|
|
2361
|
-
"G": "E, d MMM y G
|
|
2362
|
-
"M": "E, d MMM
|
|
2363
|
-
"y": "E, d MMM y
|
|
2337
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
2338
|
+
"G": "E, d MMM y G – E, d MMM y G",
|
|
2339
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
2340
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
2364
2341
|
},
|
|
2365
2342
|
"h": {
|
|
2366
|
-
"a": "h
|
|
2367
|
-
"h": "h–h
|
|
2343
|
+
"a": "h a – h a",
|
|
2344
|
+
"h": "h–h a"
|
|
2368
2345
|
},
|
|
2369
2346
|
"H": {
|
|
2370
2347
|
"H": "HH–HH"
|
|
2371
2348
|
},
|
|
2372
2349
|
"hm": {
|
|
2373
|
-
"a": "h:mm
|
|
2374
|
-
"h": "h:mm–h:mm
|
|
2375
|
-
"m": "h:mm–h:mm
|
|
2350
|
+
"a": "h:mm a – h:mm a",
|
|
2351
|
+
"h": "h:mm–h:mm a",
|
|
2352
|
+
"m": "h:mm–h:mm a"
|
|
2376
2353
|
},
|
|
2377
2354
|
"Hm": {
|
|
2378
2355
|
"H": "HH:mm–HH:mm",
|
|
2379
2356
|
"m": "HH:mm–HH:mm"
|
|
2380
2357
|
},
|
|
2381
2358
|
"hmv": {
|
|
2382
|
-
"a": "h:mm
|
|
2383
|
-
"h": "h:mm–h:mm
|
|
2384
|
-
"m": "h:mm–h:mm
|
|
2359
|
+
"a": "h:mm a – h:mm a v",
|
|
2360
|
+
"h": "h:mm–h:mm a v",
|
|
2361
|
+
"m": "h:mm–h:mm a v"
|
|
2385
2362
|
},
|
|
2386
2363
|
"Hmv": {
|
|
2387
2364
|
"H": "HH:mm–HH:mm v",
|
|
2388
2365
|
"m": "HH:mm–HH:mm v"
|
|
2389
2366
|
},
|
|
2390
2367
|
"hv": {
|
|
2391
|
-
"a": "h
|
|
2392
|
-
"h": "h–h
|
|
2368
|
+
"a": "h a – h a v",
|
|
2369
|
+
"h": "h–h a v"
|
|
2393
2370
|
},
|
|
2394
2371
|
"Hv": {
|
|
2395
2372
|
"H": "HH–HH v"
|
|
@@ -2402,28 +2379,28 @@
|
|
|
2402
2379
|
"M": "dd.MM–dd.MM"
|
|
2403
2380
|
},
|
|
2404
2381
|
"MEd": {
|
|
2405
|
-
"d": "E, dd.MM
|
|
2406
|
-
"M": "E, dd.MM
|
|
2382
|
+
"d": "E, dd.MM – E, dd.MM",
|
|
2383
|
+
"M": "E, dd.MM – E, dd.MM"
|
|
2407
2384
|
},
|
|
2408
2385
|
"MMM": {
|
|
2409
2386
|
"M": "LLL–LLL"
|
|
2410
2387
|
},
|
|
2411
2388
|
"MMMd": {
|
|
2412
2389
|
"d": "d–d MMM",
|
|
2413
|
-
"M": "d MMM
|
|
2390
|
+
"M": "d MMM – d MMM"
|
|
2414
2391
|
},
|
|
2415
2392
|
"MMMEd": {
|
|
2416
|
-
"d": "E, d MMM
|
|
2417
|
-
"M": "E, d MMM
|
|
2393
|
+
"d": "E, d MMM – E, d MMM",
|
|
2394
|
+
"M": "E, d MMM – E, d MMM"
|
|
2418
2395
|
},
|
|
2419
2396
|
"y": {
|
|
2420
2397
|
"y": "y–y G",
|
|
2421
2398
|
"G": "y G–y G"
|
|
2422
2399
|
},
|
|
2423
2400
|
"yM": {
|
|
2424
|
-
"M": "MM.y
|
|
2425
|
-
"y": "MM.y
|
|
2426
|
-
"G": "MM.y GGGGG
|
|
2401
|
+
"M": "MM.y – MM.y GGGGG",
|
|
2402
|
+
"y": "MM.y – MM.y GGGGG",
|
|
2403
|
+
"G": "MM.y GGGGG – MM.y GGGGG"
|
|
2427
2404
|
},
|
|
2428
2405
|
"yMd": {
|
|
2429
2406
|
"d": "dd–dd.MM.y GGGGG",
|
|
@@ -2432,32 +2409,32 @@
|
|
|
2432
2409
|
"G": "dd.MM.y G–dd.MM.y G"
|
|
2433
2410
|
},
|
|
2434
2411
|
"yMEd": {
|
|
2435
|
-
"d": "E, dd.MM.y
|
|
2436
|
-
"M": "E, dd.MM.y
|
|
2437
|
-
"y": "E, dd.MM.y
|
|
2438
|
-
"G": "E, dd.MM.y GGGGG
|
|
2412
|
+
"d": "E, dd.MM.y – E, dd.MM.y G",
|
|
2413
|
+
"M": "E, dd.MM.y – E, dd.MM.y G",
|
|
2414
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
2415
|
+
"G": "E, dd.MM.y GGGGG – E, dd.MM.y GGGGG"
|
|
2439
2416
|
},
|
|
2440
2417
|
"yMMM": {
|
|
2441
2418
|
"M": "LLL–LLL y G",
|
|
2442
|
-
"y": "LLL y
|
|
2443
|
-
"G": "LLL y G
|
|
2419
|
+
"y": "LLL y – LLL y G",
|
|
2420
|
+
"G": "LLL y G – LLL y G"
|
|
2444
2421
|
},
|
|
2445
2422
|
"yMMMd": {
|
|
2446
2423
|
"d": "d–d MMM y G",
|
|
2447
|
-
"M": "d MMM
|
|
2448
|
-
"y": "d MMM y
|
|
2449
|
-
"G": "d MMM y G
|
|
2424
|
+
"M": "d MMM – d MMM y G",
|
|
2425
|
+
"y": "d MMM y – d MMM y G",
|
|
2426
|
+
"G": "d MMM y G – d MMM y G"
|
|
2450
2427
|
},
|
|
2451
2428
|
"yMMMEd": {
|
|
2452
|
-
"d": "E, d
|
|
2453
|
-
"M": "E, d MMM
|
|
2454
|
-
"y": "E, d MMM y
|
|
2455
|
-
"G": "E, d MMM y G
|
|
2429
|
+
"d": "E, d – E, d MMM y G",
|
|
2430
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
2431
|
+
"y": "E, d MMM y – E, d MMM y G",
|
|
2432
|
+
"G": "E, d MMM y G – E, d MMM y G"
|
|
2456
2433
|
},
|
|
2457
2434
|
"yMMMM": {
|
|
2458
2435
|
"M": "LLLL–LLLL y G",
|
|
2459
|
-
"y": "LLLL y
|
|
2460
|
-
"G": "LLLL y G
|
|
2436
|
+
"y": "LLLL y – LLLL y G",
|
|
2437
|
+
"G": "LLLL y G – LLLL y G"
|
|
2461
2438
|
}
|
|
2462
2439
|
}
|
|
2463
2440
|
},
|
|
@@ -2819,11 +2796,11 @@
|
|
|
2819
2796
|
"GyMMM": "LLL y G",
|
|
2820
2797
|
"GyMMMd": "d MMM y G",
|
|
2821
2798
|
"GyMMMEd": "E, d MMM y G",
|
|
2822
|
-
"h": "
|
|
2799
|
+
"h": "h a",
|
|
2823
2800
|
"H": "HH",
|
|
2824
|
-
"hm": "
|
|
2801
|
+
"hm": "h:mm a",
|
|
2825
2802
|
"Hm": "HH:mm",
|
|
2826
|
-
"hms": "
|
|
2803
|
+
"hms": "h:mm:ss a",
|
|
2827
2804
|
"Hms": "HH:mm:ss",
|
|
2828
2805
|
"M": "L",
|
|
2829
2806
|
"Md": "d.MM",
|
|
@@ -2861,13 +2838,13 @@
|
|
|
2861
2838
|
"Year": "{1} {0}"
|
|
2862
2839
|
},
|
|
2863
2840
|
"intervalFormats": {
|
|
2864
|
-
"intervalFormatFallback": "{0}
|
|
2841
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2865
2842
|
"Bh": {
|
|
2866
|
-
"B": "h B
|
|
2843
|
+
"B": "h B – h B",
|
|
2867
2844
|
"h": "h–h B"
|
|
2868
2845
|
},
|
|
2869
2846
|
"Bhm": {
|
|
2870
|
-
"B": "h:mm B
|
|
2847
|
+
"B": "h:mm B – h:mm B",
|
|
2871
2848
|
"h": "h:mm–h:mm B",
|
|
2872
2849
|
"m": "h:mm–h:mm B"
|
|
2873
2850
|
},
|
|
@@ -2875,71 +2852,71 @@
|
|
|
2875
2852
|
"d": "d–d"
|
|
2876
2853
|
},
|
|
2877
2854
|
"Gy": {
|
|
2878
|
-
"G": "y G
|
|
2855
|
+
"G": "y G – y G",
|
|
2879
2856
|
"y": "y–y G"
|
|
2880
2857
|
},
|
|
2881
2858
|
"GyM": {
|
|
2882
|
-
"G": "MM.y GGGGG
|
|
2883
|
-
"M": "MM.y
|
|
2884
|
-
"y": "MM.y
|
|
2859
|
+
"G": "MM.y GGGGG – MM.y GGGGG",
|
|
2860
|
+
"M": "MM.y – MM.y GGGGG",
|
|
2861
|
+
"y": "MM.y – MM.y GGGGG"
|
|
2885
2862
|
},
|
|
2886
2863
|
"GyMd": {
|
|
2887
|
-
"d": "dd.MM.y
|
|
2888
|
-
"G": "dd.MM.y GGGGG
|
|
2889
|
-
"M": "dd.MM.y
|
|
2890
|
-
"y": "dd.MM.y
|
|
2864
|
+
"d": "dd.MM.y – dd.MM.y GGGGG",
|
|
2865
|
+
"G": "dd.MM.y GGGGG – dd.MM.y GGGGG",
|
|
2866
|
+
"M": "dd.MM.y – dd.MM.y GGGGG",
|
|
2867
|
+
"y": "dd.MM.y – dd.MM.y GGGGG"
|
|
2891
2868
|
},
|
|
2892
2869
|
"GyMEd": {
|
|
2893
|
-
"d": "E, dd.MM.y
|
|
2894
|
-
"G": "E, dd.MM.y GGGGG
|
|
2895
|
-
"M": "E, dd.MM.y
|
|
2896
|
-
"y": "E, dd.MM.y
|
|
2870
|
+
"d": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
2871
|
+
"G": "E, dd.MM.y GGGGG – E, dd.MM.y GGGGG",
|
|
2872
|
+
"M": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
2873
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
2897
2874
|
},
|
|
2898
2875
|
"GyMMM": {
|
|
2899
|
-
"G": "MMM y G
|
|
2900
|
-
"M": "MMM
|
|
2901
|
-
"y": "MMM y
|
|
2876
|
+
"G": "MMM y G – MMM y G",
|
|
2877
|
+
"M": "MMM – MMM y G",
|
|
2878
|
+
"y": "MMM y – MMM y G"
|
|
2902
2879
|
},
|
|
2903
2880
|
"GyMMMd": {
|
|
2904
2881
|
"d": "d–d MMM y G",
|
|
2905
|
-
"G": "d MMM y G
|
|
2906
|
-
"M": "d MMM
|
|
2907
|
-
"y": "d MMM y
|
|
2882
|
+
"G": "d MMM y G – d MMM y G",
|
|
2883
|
+
"M": "d MMM – d MMM y G",
|
|
2884
|
+
"y": "d MMM y – d MMM y G"
|
|
2908
2885
|
},
|
|
2909
2886
|
"GyMMMEd": {
|
|
2910
|
-
"d": "E, d MMM
|
|
2911
|
-
"G": "E, d MMM y G
|
|
2912
|
-
"M": "E, d MMM
|
|
2913
|
-
"y": "E, d MMM y
|
|
2887
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
2888
|
+
"G": "E, d MMM y G – E, d MMM y G",
|
|
2889
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
2890
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
2914
2891
|
},
|
|
2915
2892
|
"h": {
|
|
2916
|
-
"a": "h
|
|
2917
|
-
"h": "h–h
|
|
2893
|
+
"a": "h a – h a",
|
|
2894
|
+
"h": "h–h a"
|
|
2918
2895
|
},
|
|
2919
2896
|
"H": {
|
|
2920
2897
|
"H": "HH–HH"
|
|
2921
2898
|
},
|
|
2922
2899
|
"hm": {
|
|
2923
|
-
"a": "h:mm
|
|
2924
|
-
"h": "h:mm–h:mm
|
|
2925
|
-
"m": "h:mm–h:mm
|
|
2900
|
+
"a": "h:mm a – h:mm a",
|
|
2901
|
+
"h": "h:mm–h:mm a",
|
|
2902
|
+
"m": "h:mm–h:mm a"
|
|
2926
2903
|
},
|
|
2927
2904
|
"Hm": {
|
|
2928
2905
|
"H": "HH:mm–HH:mm",
|
|
2929
2906
|
"m": "HH:mm–HH:mm"
|
|
2930
2907
|
},
|
|
2931
2908
|
"hmv": {
|
|
2932
|
-
"a": "h:mm
|
|
2933
|
-
"h": "h:mm–h:mm
|
|
2934
|
-
"m": "h:mm–h:mm
|
|
2909
|
+
"a": "h:mm a – h:mm a v",
|
|
2910
|
+
"h": "h:mm–h:mm a v",
|
|
2911
|
+
"m": "h:mm–h:mm a v"
|
|
2935
2912
|
},
|
|
2936
2913
|
"Hmv": {
|
|
2937
2914
|
"H": "HH:mm–HH:mm v",
|
|
2938
2915
|
"m": "HH:mm–HH:mm v"
|
|
2939
2916
|
},
|
|
2940
2917
|
"hv": {
|
|
2941
|
-
"a": "h
|
|
2942
|
-
"h": "h–h
|
|
2918
|
+
"a": "h a – h a v",
|
|
2919
|
+
"h": "h–h a v"
|
|
2943
2920
|
},
|
|
2944
2921
|
"Hv": {
|
|
2945
2922
|
"H": "HH–HH v"
|
|
@@ -2952,26 +2929,26 @@
|
|
|
2952
2929
|
"M": "dd.MM–dd.MM"
|
|
2953
2930
|
},
|
|
2954
2931
|
"MEd": {
|
|
2955
|
-
"d": "E, dd.MM
|
|
2956
|
-
"M": "E, dd.MM
|
|
2932
|
+
"d": "E, dd.MM – E, dd.MM",
|
|
2933
|
+
"M": "E, dd.MM – E, dd.MM"
|
|
2957
2934
|
},
|
|
2958
2935
|
"MMM": {
|
|
2959
2936
|
"M": "LLL–LLL"
|
|
2960
2937
|
},
|
|
2961
2938
|
"MMMd": {
|
|
2962
2939
|
"d": "d–d MMM",
|
|
2963
|
-
"M": "d MMM
|
|
2940
|
+
"M": "d MMM – d MMM"
|
|
2964
2941
|
},
|
|
2965
2942
|
"MMMEd": {
|
|
2966
|
-
"d": "E, d MMM
|
|
2967
|
-
"M": "E, d MMM
|
|
2943
|
+
"d": "E, d MMM – E, d MMM",
|
|
2944
|
+
"M": "E, d MMM – E, d MMM"
|
|
2968
2945
|
},
|
|
2969
2946
|
"y": {
|
|
2970
2947
|
"y": "y–y G"
|
|
2971
2948
|
},
|
|
2972
2949
|
"yM": {
|
|
2973
|
-
"M": "MM.y
|
|
2974
|
-
"y": "MM.y
|
|
2950
|
+
"M": "MM.y – MM.y GGGGG",
|
|
2951
|
+
"y": "MM.y – MM.y GGGGG"
|
|
2975
2952
|
},
|
|
2976
2953
|
"yMd": {
|
|
2977
2954
|
"d": "dd–dd.MM.y GGGGG",
|
|
@@ -2979,27 +2956,27 @@
|
|
|
2979
2956
|
"y": "dd.MM.y–dd.MM.y G"
|
|
2980
2957
|
},
|
|
2981
2958
|
"yMEd": {
|
|
2982
|
-
"d": "E, dd.MM.y
|
|
2983
|
-
"M": "E, dd.MM.y
|
|
2984
|
-
"y": "E, dd.MM.y
|
|
2959
|
+
"d": "E, dd.MM.y – E, dd.MM.y G",
|
|
2960
|
+
"M": "E, dd.MM.y – E, dd.MM.y G",
|
|
2961
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
2985
2962
|
},
|
|
2986
2963
|
"yMMM": {
|
|
2987
2964
|
"M": "LLL–LLL y G",
|
|
2988
|
-
"y": "LLL y
|
|
2965
|
+
"y": "LLL y – LLL y G"
|
|
2989
2966
|
},
|
|
2990
2967
|
"yMMMd": {
|
|
2991
2968
|
"d": "d–d MMM y G",
|
|
2992
|
-
"M": "d MMM
|
|
2993
|
-
"y": "d MMM y
|
|
2969
|
+
"M": "d MMM – d MMM y G",
|
|
2970
|
+
"y": "d MMM y – d MMM y G"
|
|
2994
2971
|
},
|
|
2995
2972
|
"yMMMEd": {
|
|
2996
|
-
"d": "E, d
|
|
2997
|
-
"M": "E, d MMM
|
|
2998
|
-
"y": "E, d MMM y
|
|
2973
|
+
"d": "E, d – E, d MMM y G",
|
|
2974
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
2975
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
2999
2976
|
},
|
|
3000
2977
|
"yMMMM": {
|
|
3001
2978
|
"M": "LLLL–LLLL y G",
|
|
3002
|
-
"y": "LLLL y
|
|
2979
|
+
"y": "LLLL y – LLLL y G"
|
|
3003
2980
|
}
|
|
3004
2981
|
}
|
|
3005
2982
|
},
|
|
@@ -3349,11 +3326,11 @@
|
|
|
3349
3326
|
"GyMMM": "LLL y G",
|
|
3350
3327
|
"GyMMMd": "d MMM y G",
|
|
3351
3328
|
"GyMMMEd": "E, d MMM y G",
|
|
3352
|
-
"h": "
|
|
3329
|
+
"h": "h a",
|
|
3353
3330
|
"H": "HH",
|
|
3354
|
-
"hm": "
|
|
3331
|
+
"hm": "h:mm a",
|
|
3355
3332
|
"Hm": "HH:mm",
|
|
3356
|
-
"hms": "
|
|
3333
|
+
"hms": "h:mm:ss a",
|
|
3357
3334
|
"Hms": "HH:mm:ss",
|
|
3358
3335
|
"M": "L",
|
|
3359
3336
|
"Md": "d.MM",
|
|
@@ -3391,13 +3368,13 @@
|
|
|
3391
3368
|
"Year": "{1} {0}"
|
|
3392
3369
|
},
|
|
3393
3370
|
"intervalFormats": {
|
|
3394
|
-
"intervalFormatFallback": "{0}
|
|
3371
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
3395
3372
|
"Bh": {
|
|
3396
|
-
"B": "h B
|
|
3373
|
+
"B": "h B – h B",
|
|
3397
3374
|
"h": "h–h B"
|
|
3398
3375
|
},
|
|
3399
3376
|
"Bhm": {
|
|
3400
|
-
"B": "h:mm B
|
|
3377
|
+
"B": "h:mm B – h:mm B",
|
|
3401
3378
|
"h": "h:mm–h:mm B",
|
|
3402
3379
|
"m": "h:mm–h:mm B"
|
|
3403
3380
|
},
|
|
@@ -3405,71 +3382,71 @@
|
|
|
3405
3382
|
"d": "d–d"
|
|
3406
3383
|
},
|
|
3407
3384
|
"Gy": {
|
|
3408
|
-
"G": "y G
|
|
3385
|
+
"G": "y G – y G",
|
|
3409
3386
|
"y": "y–y G"
|
|
3410
3387
|
},
|
|
3411
3388
|
"GyM": {
|
|
3412
|
-
"G": "MM.y GGGGG
|
|
3413
|
-
"M": "MM.y
|
|
3414
|
-
"y": "MM.y
|
|
3389
|
+
"G": "MM.y GGGGG – MM.y GGGGG",
|
|
3390
|
+
"M": "MM.y – MM.y GGGGG",
|
|
3391
|
+
"y": "MM.y – MM.y GGGGG"
|
|
3415
3392
|
},
|
|
3416
3393
|
"GyMd": {
|
|
3417
|
-
"d": "dd.MM.y
|
|
3418
|
-
"G": "dd.MM.y GGGGG
|
|
3419
|
-
"M": "dd.MM.y
|
|
3420
|
-
"y": "dd.MM.y
|
|
3394
|
+
"d": "dd.MM.y – dd.MM.y GGGGG",
|
|
3395
|
+
"G": "dd.MM.y GGGGG – dd.MM.y GGGGG",
|
|
3396
|
+
"M": "dd.MM.y – dd.MM.y GGGGG",
|
|
3397
|
+
"y": "dd.MM.y – dd.MM.y GGGGG"
|
|
3421
3398
|
},
|
|
3422
3399
|
"GyMEd": {
|
|
3423
|
-
"d": "E, dd.MM.y
|
|
3424
|
-
"G": "E, dd.MM.y GGGGG
|
|
3425
|
-
"M": "E, dd.MM.y
|
|
3426
|
-
"y": "E, dd.MM.y
|
|
3400
|
+
"d": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
3401
|
+
"G": "E, dd.MM.y GGGGG – E, dd.MM.y GGGGG",
|
|
3402
|
+
"M": "E, dd.MM.y – E, dd.MM.y GGGGG",
|
|
3403
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
3427
3404
|
},
|
|
3428
3405
|
"GyMMM": {
|
|
3429
|
-
"G": "MMM y G
|
|
3430
|
-
"M": "MMM
|
|
3431
|
-
"y": "MMM y
|
|
3406
|
+
"G": "MMM y G – MMM y G",
|
|
3407
|
+
"M": "MMM – MMM y G",
|
|
3408
|
+
"y": "MMM y – MMM y G"
|
|
3432
3409
|
},
|
|
3433
3410
|
"GyMMMd": {
|
|
3434
3411
|
"d": "d–d MMM y G",
|
|
3435
|
-
"G": "d MMM y G
|
|
3436
|
-
"M": "d MMM
|
|
3437
|
-
"y": "d MMM y
|
|
3412
|
+
"G": "d MMM y G – d MMM y G",
|
|
3413
|
+
"M": "d MMM – d MMM y G",
|
|
3414
|
+
"y": "d MMM y – d MMM y G"
|
|
3438
3415
|
},
|
|
3439
3416
|
"GyMMMEd": {
|
|
3440
|
-
"d": "E, d MMM
|
|
3441
|
-
"G": "E, d MMM y G
|
|
3442
|
-
"M": "E, d MMM
|
|
3443
|
-
"y": "E, d MMM y
|
|
3417
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
3418
|
+
"G": "E, d MMM y G – E, d MMM y G",
|
|
3419
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
3420
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
3444
3421
|
},
|
|
3445
3422
|
"h": {
|
|
3446
|
-
"a": "h
|
|
3447
|
-
"h": "h–h
|
|
3423
|
+
"a": "h a – h a",
|
|
3424
|
+
"h": "h–h a"
|
|
3448
3425
|
},
|
|
3449
3426
|
"H": {
|
|
3450
3427
|
"H": "HH–HH"
|
|
3451
3428
|
},
|
|
3452
3429
|
"hm": {
|
|
3453
|
-
"a": "h:mm
|
|
3454
|
-
"h": "h:mm–h:mm
|
|
3455
|
-
"m": "h:mm–h:mm
|
|
3430
|
+
"a": "h:mm a – h:mm a",
|
|
3431
|
+
"h": "h:mm–h:mm a",
|
|
3432
|
+
"m": "h:mm–h:mm a"
|
|
3456
3433
|
},
|
|
3457
3434
|
"Hm": {
|
|
3458
3435
|
"H": "HH:mm–HH:mm",
|
|
3459
3436
|
"m": "HH:mm–HH:mm"
|
|
3460
3437
|
},
|
|
3461
3438
|
"hmv": {
|
|
3462
|
-
"a": "h:mm
|
|
3463
|
-
"h": "h:mm–h:mm
|
|
3464
|
-
"m": "h:mm–h:mm
|
|
3439
|
+
"a": "h:mm a – h:mm a v",
|
|
3440
|
+
"h": "h:mm–h:mm a v",
|
|
3441
|
+
"m": "h:mm–h:mm a v"
|
|
3465
3442
|
},
|
|
3466
3443
|
"Hmv": {
|
|
3467
3444
|
"H": "HH:mm–HH:mm v",
|
|
3468
3445
|
"m": "HH:mm–HH:mm v"
|
|
3469
3446
|
},
|
|
3470
3447
|
"hv": {
|
|
3471
|
-
"a": "h
|
|
3472
|
-
"h": "h–h
|
|
3448
|
+
"a": "h a – h a v",
|
|
3449
|
+
"h": "h–h a v"
|
|
3473
3450
|
},
|
|
3474
3451
|
"Hv": {
|
|
3475
3452
|
"H": "HH–HH v"
|
|
@@ -3482,26 +3459,26 @@
|
|
|
3482
3459
|
"M": "dd.MM–dd.MM"
|
|
3483
3460
|
},
|
|
3484
3461
|
"MEd": {
|
|
3485
|
-
"d": "E, dd.MM
|
|
3486
|
-
"M": "E, dd.MM
|
|
3462
|
+
"d": "E, dd.MM – E, dd.MM",
|
|
3463
|
+
"M": "E, dd.MM – E, dd.MM"
|
|
3487
3464
|
},
|
|
3488
3465
|
"MMM": {
|
|
3489
3466
|
"M": "LLL–LLL"
|
|
3490
3467
|
},
|
|
3491
3468
|
"MMMd": {
|
|
3492
3469
|
"d": "d–d MMM",
|
|
3493
|
-
"M": "d MMM
|
|
3470
|
+
"M": "d MMM – d MMM"
|
|
3494
3471
|
},
|
|
3495
3472
|
"MMMEd": {
|
|
3496
|
-
"d": "E, d MMM
|
|
3497
|
-
"M": "E, d MMM
|
|
3473
|
+
"d": "E, d MMM – E, d MMM",
|
|
3474
|
+
"M": "E, d MMM – E, d MMM"
|
|
3498
3475
|
},
|
|
3499
3476
|
"y": {
|
|
3500
3477
|
"y": "y–y G"
|
|
3501
3478
|
},
|
|
3502
3479
|
"yM": {
|
|
3503
|
-
"M": "MM.y
|
|
3504
|
-
"y": "MM.y
|
|
3480
|
+
"M": "MM.y – MM.y GGGGG",
|
|
3481
|
+
"y": "MM.y – MM.y GGGGG"
|
|
3505
3482
|
},
|
|
3506
3483
|
"yMd": {
|
|
3507
3484
|
"d": "dd–dd.MM.y GGGGG",
|
|
@@ -3509,27 +3486,27 @@
|
|
|
3509
3486
|
"y": "dd.MM.y–dd.MM.y G"
|
|
3510
3487
|
},
|
|
3511
3488
|
"yMEd": {
|
|
3512
|
-
"d": "E, dd.MM.y
|
|
3513
|
-
"M": "E, dd.MM.y
|
|
3514
|
-
"y": "E, dd.MM.y
|
|
3489
|
+
"d": "E, dd.MM.y – E, dd.MM.y G",
|
|
3490
|
+
"M": "E, dd.MM.y – E, dd.MM.y G",
|
|
3491
|
+
"y": "E, dd.MM.y – E, dd.MM.y GGGGG"
|
|
3515
3492
|
},
|
|
3516
3493
|
"yMMM": {
|
|
3517
3494
|
"M": "LLL–LLL y G",
|
|
3518
|
-
"y": "LLL y
|
|
3495
|
+
"y": "LLL y – LLL y G"
|
|
3519
3496
|
},
|
|
3520
3497
|
"yMMMd": {
|
|
3521
3498
|
"d": "d–d MMM y G",
|
|
3522
|
-
"M": "d MMM
|
|
3523
|
-
"y": "d MMM y
|
|
3499
|
+
"M": "d MMM – d MMM y G",
|
|
3500
|
+
"y": "d MMM y – d MMM y G"
|
|
3524
3501
|
},
|
|
3525
3502
|
"yMMMEd": {
|
|
3526
|
-
"d": "E, d
|
|
3527
|
-
"M": "E, d MMM
|
|
3528
|
-
"y": "E, d MMM y
|
|
3503
|
+
"d": "E, d – E, d MMM y G",
|
|
3504
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
3505
|
+
"y": "E, d MMM y – E, d MMM y G"
|
|
3529
3506
|
},
|
|
3530
3507
|
"yMMMM": {
|
|
3531
3508
|
"M": "LLLL–LLLL y G",
|
|
3532
|
-
"y": "LLLL y
|
|
3509
|
+
"y": "LLLL y – LLLL y G"
|
|
3533
3510
|
}
|
|
3534
3511
|
}
|
|
3535
3512
|
},
|
|
@@ -4374,6 +4351,7 @@
|
|
|
4374
4351
|
"Cayman": "Kajmany",
|
|
4375
4352
|
"Chicago": "Chicago",
|
|
4376
4353
|
"Chihuahua": "Chihuahua",
|
|
4354
|
+
"Ciudad_Juarez": "Ciudad Juárez",
|
|
4377
4355
|
"Costa_Rica": "Kostaryka",
|
|
4378
4356
|
"Creston": "Creston",
|
|
4379
4357
|
"Cuiaba": "Cuiabá",
|
|
@@ -5068,10 +5046,16 @@
|
|
|
5068
5046
|
},
|
|
5069
5047
|
"power2": {
|
|
5070
5048
|
"compoundUnitPattern1": "{0}²",
|
|
5049
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
5050
|
+
"compoundUnitPattern1-count-few": "{0}²",
|
|
5051
|
+
"compoundUnitPattern1-count-many": "{0}²",
|
|
5071
5052
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
5072
5053
|
},
|
|
5073
5054
|
"power3": {
|
|
5074
5055
|
"compoundUnitPattern1": "{0}³",
|
|
5056
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
5057
|
+
"compoundUnitPattern1-count-few": "{0}³",
|
|
5058
|
+
"compoundUnitPattern1-count-many": "{0}³",
|
|
5075
5059
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
5076
5060
|
},
|
|
5077
5061
|
"times": {
|
|
@@ -5079,10 +5063,16 @@
|
|
|
5079
5063
|
},
|
|
5080
5064
|
"acceleration-g-force": {
|
|
5081
5065
|
"displayName": "G",
|
|
5066
|
+
"unitPattern-count-one": "{0} G",
|
|
5067
|
+
"unitPattern-count-few": "{0} G",
|
|
5068
|
+
"unitPattern-count-many": "{0} G",
|
|
5082
5069
|
"unitPattern-count-other": "{0} G"
|
|
5083
5070
|
},
|
|
5084
5071
|
"acceleration-meter-per-square-second": {
|
|
5085
5072
|
"displayName": "m/s²",
|
|
5073
|
+
"unitPattern-count-one": "{0} m/s²",
|
|
5074
|
+
"unitPattern-count-few": "{0} m/s²",
|
|
5075
|
+
"unitPattern-count-many": "{0} m/s²",
|
|
5086
5076
|
"unitPattern-count-other": "{0} m/s²"
|
|
5087
5077
|
},
|
|
5088
5078
|
"angle-revolution": {
|
|
@@ -5094,36 +5084,60 @@
|
|
|
5094
5084
|
},
|
|
5095
5085
|
"angle-radian": {
|
|
5096
5086
|
"displayName": "rad",
|
|
5087
|
+
"unitPattern-count-one": "{0} rad",
|
|
5088
|
+
"unitPattern-count-few": "{0} rad",
|
|
5089
|
+
"unitPattern-count-many": "{0} rad",
|
|
5097
5090
|
"unitPattern-count-other": "{0} rad"
|
|
5098
5091
|
},
|
|
5099
5092
|
"angle-degree": {
|
|
5100
5093
|
"displayName": "stopnie",
|
|
5094
|
+
"unitPattern-count-one": "{0}°",
|
|
5095
|
+
"unitPattern-count-few": "{0}°",
|
|
5096
|
+
"unitPattern-count-many": "{0}°",
|
|
5101
5097
|
"unitPattern-count-other": "{0}°"
|
|
5102
5098
|
},
|
|
5103
5099
|
"angle-arc-minute": {
|
|
5104
5100
|
"displayName": "minuty",
|
|
5101
|
+
"unitPattern-count-one": "{0}′",
|
|
5102
|
+
"unitPattern-count-few": "{0}′",
|
|
5103
|
+
"unitPattern-count-many": "{0}′",
|
|
5105
5104
|
"unitPattern-count-other": "{0}′"
|
|
5106
5105
|
},
|
|
5107
5106
|
"angle-arc-second": {
|
|
5108
5107
|
"displayName": "sekundy",
|
|
5108
|
+
"unitPattern-count-one": "{0}″",
|
|
5109
|
+
"unitPattern-count-few": "{0}″",
|
|
5110
|
+
"unitPattern-count-many": "{0}″",
|
|
5109
5111
|
"unitPattern-count-other": "{0}″"
|
|
5110
5112
|
},
|
|
5111
5113
|
"area-square-kilometer": {
|
|
5112
5114
|
"displayName": "km²",
|
|
5115
|
+
"unitPattern-count-one": "{0} km²",
|
|
5116
|
+
"unitPattern-count-few": "{0} km²",
|
|
5117
|
+
"unitPattern-count-many": "{0} km²",
|
|
5113
5118
|
"unitPattern-count-other": "{0} km²",
|
|
5114
5119
|
"perUnitPattern": "{0}/km²"
|
|
5115
5120
|
},
|
|
5116
5121
|
"area-hectare": {
|
|
5117
5122
|
"displayName": "ha",
|
|
5123
|
+
"unitPattern-count-one": "{0} ha",
|
|
5124
|
+
"unitPattern-count-few": "{0} ha",
|
|
5125
|
+
"unitPattern-count-many": "{0} ha",
|
|
5118
5126
|
"unitPattern-count-other": "{0} ha"
|
|
5119
5127
|
},
|
|
5120
5128
|
"area-square-meter": {
|
|
5121
5129
|
"displayName": "m²",
|
|
5130
|
+
"unitPattern-count-one": "{0} m²",
|
|
5131
|
+
"unitPattern-count-few": "{0} m²",
|
|
5132
|
+
"unitPattern-count-many": "{0} m²",
|
|
5122
5133
|
"unitPattern-count-other": "{0} m²",
|
|
5123
5134
|
"perUnitPattern": "{0}/m²"
|
|
5124
5135
|
},
|
|
5125
5136
|
"area-square-centimeter": {
|
|
5126
5137
|
"displayName": "cm²",
|
|
5138
|
+
"unitPattern-count-one": "{0} cm²",
|
|
5139
|
+
"unitPattern-count-few": "{0} cm²",
|
|
5140
|
+
"unitPattern-count-many": "{0} cm²",
|
|
5127
5141
|
"unitPattern-count-other": "{0} cm²",
|
|
5128
5142
|
"perUnitPattern": "{0}/cm²"
|
|
5129
5143
|
},
|
|
@@ -5173,6 +5187,9 @@
|
|
|
5173
5187
|
},
|
|
5174
5188
|
"concentr-karat": {
|
|
5175
5189
|
"displayName": "karaty",
|
|
5190
|
+
"unitPattern-count-one": "{0} kt",
|
|
5191
|
+
"unitPattern-count-few": "{0} kt",
|
|
5192
|
+
"unitPattern-count-many": "{0} kt",
|
|
5176
5193
|
"unitPattern-count-other": "{0} kt"
|
|
5177
5194
|
},
|
|
5178
5195
|
"concentr-milligram-ofglucose-per-deciliter": {
|
|
@@ -5198,14 +5215,23 @@
|
|
|
5198
5215
|
},
|
|
5199
5216
|
"concentr-permillion": {
|
|
5200
5217
|
"displayName": "ppm",
|
|
5218
|
+
"unitPattern-count-one": "{0} ppm",
|
|
5219
|
+
"unitPattern-count-few": "{0} ppm",
|
|
5220
|
+
"unitPattern-count-many": "{0} ppm",
|
|
5201
5221
|
"unitPattern-count-other": "{0} ppm"
|
|
5202
5222
|
},
|
|
5203
5223
|
"concentr-percent": {
|
|
5204
5224
|
"displayName": "%",
|
|
5225
|
+
"unitPattern-count-one": "{0}%",
|
|
5226
|
+
"unitPattern-count-few": "{0}%",
|
|
5227
|
+
"unitPattern-count-many": "{0}%",
|
|
5205
5228
|
"unitPattern-count-other": "{0}%"
|
|
5206
5229
|
},
|
|
5207
5230
|
"concentr-permille": {
|
|
5208
5231
|
"displayName": "‰",
|
|
5232
|
+
"unitPattern-count-one": "{0}‰",
|
|
5233
|
+
"unitPattern-count-few": "{0}‰",
|
|
5234
|
+
"unitPattern-count-many": "{0}‰",
|
|
5209
5235
|
"unitPattern-count-other": "{0}‰"
|
|
5210
5236
|
},
|
|
5211
5237
|
"concentr-permyriad": {
|
|
@@ -5252,38 +5278,65 @@
|
|
|
5252
5278
|
},
|
|
5253
5279
|
"digital-petabyte": {
|
|
5254
5280
|
"displayName": "PB",
|
|
5281
|
+
"unitPattern-count-one": "{0} PB",
|
|
5282
|
+
"unitPattern-count-few": "{0} PB",
|
|
5283
|
+
"unitPattern-count-many": "{0} PB",
|
|
5255
5284
|
"unitPattern-count-other": "{0} PB"
|
|
5256
5285
|
},
|
|
5257
5286
|
"digital-terabyte": {
|
|
5258
5287
|
"displayName": "TB",
|
|
5288
|
+
"unitPattern-count-one": "{0} TB",
|
|
5289
|
+
"unitPattern-count-few": "{0} TB",
|
|
5290
|
+
"unitPattern-count-many": "{0} TB",
|
|
5259
5291
|
"unitPattern-count-other": "{0} TB"
|
|
5260
5292
|
},
|
|
5261
5293
|
"digital-terabit": {
|
|
5262
5294
|
"displayName": "Tb",
|
|
5295
|
+
"unitPattern-count-one": "{0} Tb",
|
|
5296
|
+
"unitPattern-count-few": "{0} Tb",
|
|
5297
|
+
"unitPattern-count-many": "{0} Tb",
|
|
5263
5298
|
"unitPattern-count-other": "{0} Tb"
|
|
5264
5299
|
},
|
|
5265
5300
|
"digital-gigabyte": {
|
|
5266
5301
|
"displayName": "GB",
|
|
5302
|
+
"unitPattern-count-one": "{0} GB",
|
|
5303
|
+
"unitPattern-count-few": "{0} GB",
|
|
5304
|
+
"unitPattern-count-many": "{0} GB",
|
|
5267
5305
|
"unitPattern-count-other": "{0} GB"
|
|
5268
5306
|
},
|
|
5269
5307
|
"digital-gigabit": {
|
|
5270
5308
|
"displayName": "Gb",
|
|
5309
|
+
"unitPattern-count-one": "{0} Gb",
|
|
5310
|
+
"unitPattern-count-few": "{0} Gb",
|
|
5311
|
+
"unitPattern-count-many": "{0} Gb",
|
|
5271
5312
|
"unitPattern-count-other": "{0} Gb"
|
|
5272
5313
|
},
|
|
5273
5314
|
"digital-megabyte": {
|
|
5274
5315
|
"displayName": "MB",
|
|
5316
|
+
"unitPattern-count-one": "{0} MB",
|
|
5317
|
+
"unitPattern-count-few": "{0} MB",
|
|
5318
|
+
"unitPattern-count-many": "{0} MB",
|
|
5275
5319
|
"unitPattern-count-other": "{0} MB"
|
|
5276
5320
|
},
|
|
5277
5321
|
"digital-megabit": {
|
|
5278
5322
|
"displayName": "Mb",
|
|
5323
|
+
"unitPattern-count-one": "{0} Mb",
|
|
5324
|
+
"unitPattern-count-few": "{0} Mb",
|
|
5325
|
+
"unitPattern-count-many": "{0} Mb",
|
|
5279
5326
|
"unitPattern-count-other": "{0} Mb"
|
|
5280
5327
|
},
|
|
5281
5328
|
"digital-kilobyte": {
|
|
5282
5329
|
"displayName": "kB",
|
|
5330
|
+
"unitPattern-count-one": "{0} kB",
|
|
5331
|
+
"unitPattern-count-few": "{0} kB",
|
|
5332
|
+
"unitPattern-count-many": "{0} kB",
|
|
5283
5333
|
"unitPattern-count-other": "{0} kB"
|
|
5284
5334
|
},
|
|
5285
5335
|
"digital-kilobit": {
|
|
5286
5336
|
"displayName": "kb",
|
|
5337
|
+
"unitPattern-count-one": "{0} kb",
|
|
5338
|
+
"unitPattern-count-few": "{0} kb",
|
|
5339
|
+
"unitPattern-count-many": "{0} kb",
|
|
5287
5340
|
"unitPattern-count-other": "{0} kb"
|
|
5288
5341
|
},
|
|
5289
5342
|
"digital-byte": {
|
|
@@ -5322,6 +5375,14 @@
|
|
|
5322
5375
|
"unitPattern-count-other": "{0} roku",
|
|
5323
5376
|
"perUnitPattern": "{0}/rok"
|
|
5324
5377
|
},
|
|
5378
|
+
"duration-quarter": {
|
|
5379
|
+
"displayName": "kw.",
|
|
5380
|
+
"unitPattern-count-one": "{0} kw.",
|
|
5381
|
+
"unitPattern-count-few": "{0} kw.",
|
|
5382
|
+
"unitPattern-count-many": "{0} kw.",
|
|
5383
|
+
"unitPattern-count-other": "{0} kw.",
|
|
5384
|
+
"perUnitPattern": "{0}/kw."
|
|
5385
|
+
},
|
|
5325
5386
|
"duration-month": {
|
|
5326
5387
|
"displayName": "miesiące",
|
|
5327
5388
|
"unitPattern-count-one": "{0} mies.",
|
|
@@ -5356,6 +5417,9 @@
|
|
|
5356
5417
|
},
|
|
5357
5418
|
"duration-minute": {
|
|
5358
5419
|
"displayName": "min",
|
|
5420
|
+
"unitPattern-count-one": "{0} min",
|
|
5421
|
+
"unitPattern-count-few": "{0} min",
|
|
5422
|
+
"unitPattern-count-many": "{0} min",
|
|
5359
5423
|
"unitPattern-count-other": "{0} min",
|
|
5360
5424
|
"perUnitPattern": "{0}/min"
|
|
5361
5425
|
},
|
|
@@ -5369,38 +5433,65 @@
|
|
|
5369
5433
|
},
|
|
5370
5434
|
"duration-millisecond": {
|
|
5371
5435
|
"displayName": "ms",
|
|
5436
|
+
"unitPattern-count-one": "{0} ms",
|
|
5437
|
+
"unitPattern-count-few": "{0} ms",
|
|
5438
|
+
"unitPattern-count-many": "{0} ms",
|
|
5372
5439
|
"unitPattern-count-other": "{0} ms"
|
|
5373
5440
|
},
|
|
5374
5441
|
"duration-microsecond": {
|
|
5375
5442
|
"displayName": "μs",
|
|
5443
|
+
"unitPattern-count-one": "{0} μs",
|
|
5444
|
+
"unitPattern-count-few": "{0} μs",
|
|
5445
|
+
"unitPattern-count-many": "{0} μs",
|
|
5376
5446
|
"unitPattern-count-other": "{0} μs"
|
|
5377
5447
|
},
|
|
5378
5448
|
"duration-nanosecond": {
|
|
5379
5449
|
"displayName": "ns",
|
|
5450
|
+
"unitPattern-count-one": "{0} ns",
|
|
5451
|
+
"unitPattern-count-few": "{0} ns",
|
|
5452
|
+
"unitPattern-count-many": "{0} ns",
|
|
5380
5453
|
"unitPattern-count-other": "{0} ns"
|
|
5381
5454
|
},
|
|
5382
5455
|
"electric-ampere": {
|
|
5383
5456
|
"displayName": "A",
|
|
5457
|
+
"unitPattern-count-one": "{0} A",
|
|
5458
|
+
"unitPattern-count-few": "{0} A",
|
|
5459
|
+
"unitPattern-count-many": "{0} A",
|
|
5384
5460
|
"unitPattern-count-other": "{0} A"
|
|
5385
5461
|
},
|
|
5386
5462
|
"electric-milliampere": {
|
|
5387
5463
|
"displayName": "mA",
|
|
5464
|
+
"unitPattern-count-one": "{0} mA",
|
|
5465
|
+
"unitPattern-count-few": "{0} mA",
|
|
5466
|
+
"unitPattern-count-many": "{0} mA",
|
|
5388
5467
|
"unitPattern-count-other": "{0} mA"
|
|
5389
5468
|
},
|
|
5390
5469
|
"electric-ohm": {
|
|
5391
5470
|
"displayName": "Ω",
|
|
5471
|
+
"unitPattern-count-one": "{0} Ω",
|
|
5472
|
+
"unitPattern-count-few": "{0} Ω",
|
|
5473
|
+
"unitPattern-count-many": "{0} Ω",
|
|
5392
5474
|
"unitPattern-count-other": "{0} Ω"
|
|
5393
5475
|
},
|
|
5394
5476
|
"electric-volt": {
|
|
5395
5477
|
"displayName": "V",
|
|
5478
|
+
"unitPattern-count-one": "{0} V",
|
|
5479
|
+
"unitPattern-count-few": "{0} V",
|
|
5480
|
+
"unitPattern-count-many": "{0} V",
|
|
5396
5481
|
"unitPattern-count-other": "{0} V"
|
|
5397
5482
|
},
|
|
5398
5483
|
"energy-kilocalorie": {
|
|
5399
5484
|
"displayName": "kcal",
|
|
5485
|
+
"unitPattern-count-one": "{0} kcal",
|
|
5486
|
+
"unitPattern-count-few": "{0} kcal",
|
|
5487
|
+
"unitPattern-count-many": "{0} kcal",
|
|
5400
5488
|
"unitPattern-count-other": "{0} kcal"
|
|
5401
5489
|
},
|
|
5402
5490
|
"energy-calorie": {
|
|
5403
5491
|
"displayName": "cal",
|
|
5492
|
+
"unitPattern-count-one": "{0} cal",
|
|
5493
|
+
"unitPattern-count-few": "{0} cal",
|
|
5494
|
+
"unitPattern-count-many": "{0} cal",
|
|
5404
5495
|
"unitPattern-count-other": "{0} cal"
|
|
5405
5496
|
},
|
|
5406
5497
|
"energy-foodcalorie": {
|
|
@@ -5412,14 +5503,23 @@
|
|
|
5412
5503
|
},
|
|
5413
5504
|
"energy-kilojoule": {
|
|
5414
5505
|
"displayName": "kJ",
|
|
5506
|
+
"unitPattern-count-one": "{0} kJ",
|
|
5507
|
+
"unitPattern-count-few": "{0} kJ",
|
|
5508
|
+
"unitPattern-count-many": "{0} kJ",
|
|
5415
5509
|
"unitPattern-count-other": "{0} kJ"
|
|
5416
5510
|
},
|
|
5417
5511
|
"energy-joule": {
|
|
5418
5512
|
"displayName": "J",
|
|
5513
|
+
"unitPattern-count-one": "{0} J",
|
|
5514
|
+
"unitPattern-count-few": "{0} J",
|
|
5515
|
+
"unitPattern-count-many": "{0} J",
|
|
5419
5516
|
"unitPattern-count-other": "{0} J"
|
|
5420
5517
|
},
|
|
5421
5518
|
"energy-kilowatt-hour": {
|
|
5422
5519
|
"displayName": "kWh",
|
|
5520
|
+
"unitPattern-count-one": "{0} kWh",
|
|
5521
|
+
"unitPattern-count-few": "{0} kWh",
|
|
5522
|
+
"unitPattern-count-many": "{0} kWh",
|
|
5423
5523
|
"unitPattern-count-other": "{0} kWh"
|
|
5424
5524
|
},
|
|
5425
5525
|
"energy-electronvolt": {
|
|
@@ -5459,22 +5559,37 @@
|
|
|
5459
5559
|
},
|
|
5460
5560
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5461
5561
|
"displayName": "kWh/100km",
|
|
5562
|
+
"unitPattern-count-one": "{0} kWh/100km",
|
|
5563
|
+
"unitPattern-count-few": "{0} kWh/100km",
|
|
5564
|
+
"unitPattern-count-many": "{0} kWh/100km",
|
|
5462
5565
|
"unitPattern-count-other": "{0} kWh/100km"
|
|
5463
5566
|
},
|
|
5464
5567
|
"frequency-gigahertz": {
|
|
5465
5568
|
"displayName": "GHz",
|
|
5569
|
+
"unitPattern-count-one": "{0} GHz",
|
|
5570
|
+
"unitPattern-count-few": "{0} GHz",
|
|
5571
|
+
"unitPattern-count-many": "{0} GHz",
|
|
5466
5572
|
"unitPattern-count-other": "{0} GHz"
|
|
5467
5573
|
},
|
|
5468
5574
|
"frequency-megahertz": {
|
|
5469
5575
|
"displayName": "MHz",
|
|
5576
|
+
"unitPattern-count-one": "{0} MHz",
|
|
5577
|
+
"unitPattern-count-few": "{0} MHz",
|
|
5578
|
+
"unitPattern-count-many": "{0} MHz",
|
|
5470
5579
|
"unitPattern-count-other": "{0} MHz"
|
|
5471
5580
|
},
|
|
5472
5581
|
"frequency-kilohertz": {
|
|
5473
5582
|
"displayName": "kHz",
|
|
5583
|
+
"unitPattern-count-one": "{0} kHz",
|
|
5584
|
+
"unitPattern-count-few": "{0} kHz",
|
|
5585
|
+
"unitPattern-count-many": "{0} kHz",
|
|
5474
5586
|
"unitPattern-count-other": "{0} kHz"
|
|
5475
5587
|
},
|
|
5476
5588
|
"frequency-hertz": {
|
|
5477
5589
|
"displayName": "Hz",
|
|
5590
|
+
"unitPattern-count-one": "{0} Hz",
|
|
5591
|
+
"unitPattern-count-few": "{0} Hz",
|
|
5592
|
+
"unitPattern-count-many": "{0} Hz",
|
|
5478
5593
|
"unitPattern-count-other": "{0} Hz"
|
|
5479
5594
|
},
|
|
5480
5595
|
"graphics-em": {
|
|
@@ -5486,57 +5601,117 @@
|
|
|
5486
5601
|
},
|
|
5487
5602
|
"graphics-pixel": {
|
|
5488
5603
|
"displayName": "px",
|
|
5604
|
+
"unitPattern-count-one": "{0} px",
|
|
5605
|
+
"unitPattern-count-few": "{0} px",
|
|
5606
|
+
"unitPattern-count-many": "{0} px",
|
|
5489
5607
|
"unitPattern-count-other": "{0} px"
|
|
5490
5608
|
},
|
|
5491
5609
|
"graphics-megapixel": {
|
|
5492
5610
|
"displayName": "MP",
|
|
5611
|
+
"unitPattern-count-one": "{0} MP",
|
|
5612
|
+
"unitPattern-count-few": "{0} MP",
|
|
5613
|
+
"unitPattern-count-many": "{0} MP",
|
|
5493
5614
|
"unitPattern-count-other": "{0} MP"
|
|
5494
5615
|
},
|
|
5495
5616
|
"graphics-pixel-per-centimeter": {
|
|
5496
5617
|
"displayName": "ppcm",
|
|
5618
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5619
|
+
"unitPattern-count-few": "{0} ppcm",
|
|
5620
|
+
"unitPattern-count-many": "{0} ppcm",
|
|
5497
5621
|
"unitPattern-count-other": "{0} ppcm"
|
|
5498
5622
|
},
|
|
5499
5623
|
"graphics-pixel-per-inch": {
|
|
5500
5624
|
"displayName": "ppi",
|
|
5625
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5626
|
+
"unitPattern-count-few": "{0} ppi",
|
|
5627
|
+
"unitPattern-count-many": "{0} ppi",
|
|
5628
|
+
"unitPattern-count-other": "{0} ppi"
|
|
5629
|
+
},
|
|
5630
|
+
"graphics-dot-per-centimeter": {
|
|
5631
|
+
"displayName": "ppcm",
|
|
5632
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5633
|
+
"unitPattern-count-few": "{0} ppcm",
|
|
5634
|
+
"unitPattern-count-many": "{0} ppcm",
|
|
5635
|
+
"unitPattern-count-other": "{0} ppcm"
|
|
5636
|
+
},
|
|
5637
|
+
"graphics-dot-per-inch": {
|
|
5638
|
+
"displayName": "ppi",
|
|
5639
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5640
|
+
"unitPattern-count-few": "{0} ppi",
|
|
5641
|
+
"unitPattern-count-many": "{0} ppi",
|
|
5501
5642
|
"unitPattern-count-other": "{0} ppi"
|
|
5502
5643
|
},
|
|
5644
|
+
"graphics-dot": {
|
|
5645
|
+
"displayName": "px",
|
|
5646
|
+
"unitPattern-count-one": "{0} px",
|
|
5647
|
+
"unitPattern-count-few": "{0} px",
|
|
5648
|
+
"unitPattern-count-many": "{0} px",
|
|
5649
|
+
"unitPattern-count-other": "{0} px"
|
|
5650
|
+
},
|
|
5503
5651
|
"length-earth-radius": {
|
|
5504
5652
|
"displayName": "R⊕",
|
|
5653
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5654
|
+
"unitPattern-count-few": "{0} R⊕",
|
|
5655
|
+
"unitPattern-count-many": "{0} R⊕",
|
|
5505
5656
|
"unitPattern-count-other": "{0} R⊕"
|
|
5506
5657
|
},
|
|
5507
5658
|
"length-kilometer": {
|
|
5508
5659
|
"displayName": "km",
|
|
5660
|
+
"unitPattern-count-one": "{0} km",
|
|
5661
|
+
"unitPattern-count-few": "{0} km",
|
|
5662
|
+
"unitPattern-count-many": "{0} km",
|
|
5509
5663
|
"unitPattern-count-other": "{0} km",
|
|
5510
5664
|
"perUnitPattern": "{0}/km"
|
|
5511
5665
|
},
|
|
5512
5666
|
"length-meter": {
|
|
5513
5667
|
"displayName": "m",
|
|
5668
|
+
"unitPattern-count-one": "{0} m",
|
|
5669
|
+
"unitPattern-count-few": "{0} m",
|
|
5670
|
+
"unitPattern-count-many": "{0} m",
|
|
5514
5671
|
"unitPattern-count-other": "{0} m",
|
|
5515
5672
|
"perUnitPattern": "{0}/m"
|
|
5516
5673
|
},
|
|
5517
5674
|
"length-decimeter": {
|
|
5518
5675
|
"displayName": "dm",
|
|
5676
|
+
"unitPattern-count-one": "{0} dm",
|
|
5677
|
+
"unitPattern-count-few": "{0} dm",
|
|
5678
|
+
"unitPattern-count-many": "{0} dm",
|
|
5519
5679
|
"unitPattern-count-other": "{0} dm"
|
|
5520
5680
|
},
|
|
5521
5681
|
"length-centimeter": {
|
|
5522
5682
|
"displayName": "cm",
|
|
5683
|
+
"unitPattern-count-one": "{0} cm",
|
|
5684
|
+
"unitPattern-count-few": "{0} cm",
|
|
5685
|
+
"unitPattern-count-many": "{0} cm",
|
|
5523
5686
|
"unitPattern-count-other": "{0} cm",
|
|
5524
5687
|
"perUnitPattern": "{0}/cm"
|
|
5525
5688
|
},
|
|
5526
5689
|
"length-millimeter": {
|
|
5527
5690
|
"displayName": "mm",
|
|
5691
|
+
"unitPattern-count-one": "{0} mm",
|
|
5692
|
+
"unitPattern-count-few": "{0} mm",
|
|
5693
|
+
"unitPattern-count-many": "{0} mm",
|
|
5528
5694
|
"unitPattern-count-other": "{0} mm"
|
|
5529
5695
|
},
|
|
5530
5696
|
"length-micrometer": {
|
|
5531
5697
|
"displayName": "μm",
|
|
5698
|
+
"unitPattern-count-one": "{0} μm",
|
|
5699
|
+
"unitPattern-count-few": "{0} μm",
|
|
5700
|
+
"unitPattern-count-many": "{0} μm",
|
|
5532
5701
|
"unitPattern-count-other": "{0} μm"
|
|
5533
5702
|
},
|
|
5534
5703
|
"length-nanometer": {
|
|
5535
5704
|
"displayName": "nm",
|
|
5705
|
+
"unitPattern-count-one": "{0} nm",
|
|
5706
|
+
"unitPattern-count-few": "{0} nm",
|
|
5707
|
+
"unitPattern-count-many": "{0} nm",
|
|
5536
5708
|
"unitPattern-count-other": "{0} nm"
|
|
5537
5709
|
},
|
|
5538
5710
|
"length-picometer": {
|
|
5539
5711
|
"displayName": "pm",
|
|
5712
|
+
"unitPattern-count-one": "{0} pm",
|
|
5713
|
+
"unitPattern-count-few": "{0} pm",
|
|
5714
|
+
"unitPattern-count-many": "{0} pm",
|
|
5540
5715
|
"unitPattern-count-other": "{0} pm"
|
|
5541
5716
|
},
|
|
5542
5717
|
"length-mile": {
|
|
@@ -5571,10 +5746,16 @@
|
|
|
5571
5746
|
},
|
|
5572
5747
|
"length-parsec": {
|
|
5573
5748
|
"displayName": "pc",
|
|
5749
|
+
"unitPattern-count-one": "{0} pc",
|
|
5750
|
+
"unitPattern-count-few": "{0} pc",
|
|
5751
|
+
"unitPattern-count-many": "{0} pc",
|
|
5574
5752
|
"unitPattern-count-other": "{0} pc"
|
|
5575
5753
|
},
|
|
5576
5754
|
"length-light-year": {
|
|
5577
5755
|
"displayName": "ly",
|
|
5756
|
+
"unitPattern-count-one": "{0} ly",
|
|
5757
|
+
"unitPattern-count-few": "{0} ly",
|
|
5758
|
+
"unitPattern-count-many": "{0} ly",
|
|
5578
5759
|
"unitPattern-count-other": "{0} ly"
|
|
5579
5760
|
},
|
|
5580
5761
|
"length-astronomical-unit": {
|
|
@@ -5586,6 +5767,9 @@
|
|
|
5586
5767
|
},
|
|
5587
5768
|
"length-furlong": {
|
|
5588
5769
|
"displayName": "fur",
|
|
5770
|
+
"unitPattern-count-one": "{0} fur",
|
|
5771
|
+
"unitPattern-count-few": "{0} fur",
|
|
5772
|
+
"unitPattern-count-many": "{0} fur",
|
|
5589
5773
|
"unitPattern-count-other": "{0} fur"
|
|
5590
5774
|
},
|
|
5591
5775
|
"length-fathom": {
|
|
@@ -5604,6 +5788,9 @@
|
|
|
5604
5788
|
},
|
|
5605
5789
|
"length-mile-scandinavian": {
|
|
5606
5790
|
"displayName": "smi",
|
|
5791
|
+
"unitPattern-count-one": "{0} smi",
|
|
5792
|
+
"unitPattern-count-few": "{0} smi",
|
|
5793
|
+
"unitPattern-count-many": "{0} smi",
|
|
5607
5794
|
"unitPattern-count-other": "{0} smi"
|
|
5608
5795
|
},
|
|
5609
5796
|
"length-point": {
|
|
@@ -5622,6 +5809,9 @@
|
|
|
5622
5809
|
},
|
|
5623
5810
|
"light-lux": {
|
|
5624
5811
|
"displayName": "lx",
|
|
5812
|
+
"unitPattern-count-one": "{0} lx",
|
|
5813
|
+
"unitPattern-count-few": "{0} lx",
|
|
5814
|
+
"unitPattern-count-many": "{0} lx",
|
|
5625
5815
|
"unitPattern-count-other": "{0} lx"
|
|
5626
5816
|
},
|
|
5627
5817
|
"light-candela": {
|
|
@@ -5645,26 +5835,41 @@
|
|
|
5645
5835
|
"unitPattern-count-many": "{0} L☉",
|
|
5646
5836
|
"unitPattern-count-other": "{0} L☉"
|
|
5647
5837
|
},
|
|
5648
|
-
"mass-
|
|
5838
|
+
"mass-tonne": {
|
|
5649
5839
|
"displayName": "t",
|
|
5840
|
+
"unitPattern-count-one": "{0} t",
|
|
5841
|
+
"unitPattern-count-few": "{0} t",
|
|
5842
|
+
"unitPattern-count-many": "{0} t",
|
|
5650
5843
|
"unitPattern-count-other": "{0} t"
|
|
5651
5844
|
},
|
|
5652
5845
|
"mass-kilogram": {
|
|
5653
5846
|
"displayName": "kg",
|
|
5847
|
+
"unitPattern-count-one": "{0} kg",
|
|
5848
|
+
"unitPattern-count-few": "{0} kg",
|
|
5849
|
+
"unitPattern-count-many": "{0} kg",
|
|
5654
5850
|
"unitPattern-count-other": "{0} kg",
|
|
5655
5851
|
"perUnitPattern": "{0}/kg"
|
|
5656
5852
|
},
|
|
5657
5853
|
"mass-gram": {
|
|
5658
5854
|
"displayName": "g",
|
|
5855
|
+
"unitPattern-count-one": "{0} g",
|
|
5856
|
+
"unitPattern-count-few": "{0} g",
|
|
5857
|
+
"unitPattern-count-many": "{0} g",
|
|
5659
5858
|
"unitPattern-count-other": "{0} g",
|
|
5660
5859
|
"perUnitPattern": "{0}/g"
|
|
5661
5860
|
},
|
|
5662
5861
|
"mass-milligram": {
|
|
5663
5862
|
"displayName": "mg",
|
|
5863
|
+
"unitPattern-count-one": "{0} mg",
|
|
5864
|
+
"unitPattern-count-few": "{0} mg",
|
|
5865
|
+
"unitPattern-count-many": "{0} mg",
|
|
5664
5866
|
"unitPattern-count-other": "{0} mg"
|
|
5665
5867
|
},
|
|
5666
5868
|
"mass-microgram": {
|
|
5667
5869
|
"displayName": "μg",
|
|
5870
|
+
"unitPattern-count-one": "{0} μg",
|
|
5871
|
+
"unitPattern-count-few": "{0} μg",
|
|
5872
|
+
"unitPattern-count-many": "{0} μg",
|
|
5668
5873
|
"unitPattern-count-other": "{0} μg"
|
|
5669
5874
|
},
|
|
5670
5875
|
"mass-ton": {
|
|
@@ -5691,11 +5896,17 @@
|
|
|
5691
5896
|
},
|
|
5692
5897
|
"mass-ounce": {
|
|
5693
5898
|
"displayName": "oz",
|
|
5899
|
+
"unitPattern-count-one": "{0} oz",
|
|
5900
|
+
"unitPattern-count-few": "{0} oz",
|
|
5901
|
+
"unitPattern-count-many": "{0} oz",
|
|
5694
5902
|
"unitPattern-count-other": "{0} oz",
|
|
5695
5903
|
"perUnitPattern": "{0}/oz"
|
|
5696
5904
|
},
|
|
5697
5905
|
"mass-ounce-troy": {
|
|
5698
5906
|
"displayName": "oz t",
|
|
5907
|
+
"unitPattern-count-one": "{0} oz t",
|
|
5908
|
+
"unitPattern-count-few": "{0} oz t",
|
|
5909
|
+
"unitPattern-count-many": "{0} oz t",
|
|
5699
5910
|
"unitPattern-count-other": "{0} oz t"
|
|
5700
5911
|
},
|
|
5701
5912
|
"mass-carat": {
|
|
@@ -5735,22 +5946,37 @@
|
|
|
5735
5946
|
},
|
|
5736
5947
|
"power-gigawatt": {
|
|
5737
5948
|
"displayName": "GW",
|
|
5949
|
+
"unitPattern-count-one": "{0} GW",
|
|
5950
|
+
"unitPattern-count-few": "{0} GW",
|
|
5951
|
+
"unitPattern-count-many": "{0} GW",
|
|
5738
5952
|
"unitPattern-count-other": "{0} GW"
|
|
5739
5953
|
},
|
|
5740
5954
|
"power-megawatt": {
|
|
5741
5955
|
"displayName": "MW",
|
|
5956
|
+
"unitPattern-count-one": "{0} MW",
|
|
5957
|
+
"unitPattern-count-few": "{0} MW",
|
|
5958
|
+
"unitPattern-count-many": "{0} MW",
|
|
5742
5959
|
"unitPattern-count-other": "{0} MW"
|
|
5743
5960
|
},
|
|
5744
5961
|
"power-kilowatt": {
|
|
5745
5962
|
"displayName": "kW",
|
|
5963
|
+
"unitPattern-count-one": "{0} kW",
|
|
5964
|
+
"unitPattern-count-few": "{0} kW",
|
|
5965
|
+
"unitPattern-count-many": "{0} kW",
|
|
5746
5966
|
"unitPattern-count-other": "{0} kW"
|
|
5747
5967
|
},
|
|
5748
5968
|
"power-watt": {
|
|
5749
5969
|
"displayName": "waty",
|
|
5970
|
+
"unitPattern-count-one": "{0} W",
|
|
5971
|
+
"unitPattern-count-few": "{0} W",
|
|
5972
|
+
"unitPattern-count-many": "{0} W",
|
|
5750
5973
|
"unitPattern-count-other": "{0} W"
|
|
5751
5974
|
},
|
|
5752
5975
|
"power-milliwatt": {
|
|
5753
5976
|
"displayName": "mW",
|
|
5977
|
+
"unitPattern-count-one": "{0} mW",
|
|
5978
|
+
"unitPattern-count-few": "{0} mW",
|
|
5979
|
+
"unitPattern-count-many": "{0} mW",
|
|
5754
5980
|
"unitPattern-count-other": "{0} mW"
|
|
5755
5981
|
},
|
|
5756
5982
|
"power-horsepower": {
|
|
@@ -5769,30 +5995,51 @@
|
|
|
5769
5995
|
},
|
|
5770
5996
|
"pressure-pound-force-per-square-inch": {
|
|
5771
5997
|
"displayName": "psi",
|
|
5998
|
+
"unitPattern-count-one": "{0} psi",
|
|
5999
|
+
"unitPattern-count-few": "{0} psi",
|
|
6000
|
+
"unitPattern-count-many": "{0} psi",
|
|
5772
6001
|
"unitPattern-count-other": "{0} psi"
|
|
5773
6002
|
},
|
|
5774
6003
|
"pressure-inch-ofhg": {
|
|
5775
6004
|
"displayName": "inHg",
|
|
6005
|
+
"unitPattern-count-one": "{0} inHg",
|
|
6006
|
+
"unitPattern-count-few": "{0} inHg",
|
|
6007
|
+
"unitPattern-count-many": "{0} inHg",
|
|
5776
6008
|
"unitPattern-count-other": "{0} inHg"
|
|
5777
6009
|
},
|
|
5778
6010
|
"pressure-bar": {
|
|
5779
6011
|
"displayName": "bar",
|
|
6012
|
+
"unitPattern-count-one": "{0} bar",
|
|
6013
|
+
"unitPattern-count-few": "{0} bar",
|
|
6014
|
+
"unitPattern-count-many": "{0} bar",
|
|
5780
6015
|
"unitPattern-count-other": "{0} bar"
|
|
5781
6016
|
},
|
|
5782
6017
|
"pressure-millibar": {
|
|
5783
6018
|
"displayName": "mbar",
|
|
6019
|
+
"unitPattern-count-one": "{0} mbar",
|
|
6020
|
+
"unitPattern-count-few": "{0} mbar",
|
|
6021
|
+
"unitPattern-count-many": "{0} mbar",
|
|
5784
6022
|
"unitPattern-count-other": "{0} mbar"
|
|
5785
6023
|
},
|
|
5786
6024
|
"pressure-atmosphere": {
|
|
5787
6025
|
"displayName": "atm",
|
|
6026
|
+
"unitPattern-count-one": "{0} atm",
|
|
6027
|
+
"unitPattern-count-few": "{0} atm",
|
|
6028
|
+
"unitPattern-count-many": "{0} atm",
|
|
5788
6029
|
"unitPattern-count-other": "{0} atm"
|
|
5789
6030
|
},
|
|
5790
6031
|
"pressure-pascal": {
|
|
5791
6032
|
"displayName": "Pa",
|
|
6033
|
+
"unitPattern-count-one": "{0} Pa",
|
|
6034
|
+
"unitPattern-count-few": "{0} Pa",
|
|
6035
|
+
"unitPattern-count-many": "{0} Pa",
|
|
5792
6036
|
"unitPattern-count-other": "{0} Pa"
|
|
5793
6037
|
},
|
|
5794
6038
|
"pressure-hectopascal": {
|
|
5795
6039
|
"displayName": "hPa",
|
|
6040
|
+
"unitPattern-count-one": "{0} hPa",
|
|
6041
|
+
"unitPattern-count-few": "{0} hPa",
|
|
6042
|
+
"unitPattern-count-many": "{0} hPa",
|
|
5796
6043
|
"unitPattern-count-other": "{0} hPa"
|
|
5797
6044
|
},
|
|
5798
6045
|
"pressure-kilopascal": {
|
|
@@ -5818,6 +6065,9 @@
|
|
|
5818
6065
|
},
|
|
5819
6066
|
"speed-meter-per-second": {
|
|
5820
6067
|
"displayName": "m/s",
|
|
6068
|
+
"unitPattern-count-one": "{0} m/s",
|
|
6069
|
+
"unitPattern-count-few": "{0} m/s",
|
|
6070
|
+
"unitPattern-count-many": "{0} m/s",
|
|
5821
6071
|
"unitPattern-count-other": "{0} m/s"
|
|
5822
6072
|
},
|
|
5823
6073
|
"speed-mile-per-hour": {
|
|
@@ -5836,6 +6086,9 @@
|
|
|
5836
6086
|
},
|
|
5837
6087
|
"temperature-generic": {
|
|
5838
6088
|
"displayName": "°",
|
|
6089
|
+
"unitPattern-count-one": "{0}°",
|
|
6090
|
+
"unitPattern-count-few": "{0}°",
|
|
6091
|
+
"unitPattern-count-many": "{0}°",
|
|
5839
6092
|
"unitPattern-count-other": "{0}°"
|
|
5840
6093
|
},
|
|
5841
6094
|
"temperature-celsius": {
|
|
@@ -5847,10 +6100,16 @@
|
|
|
5847
6100
|
},
|
|
5848
6101
|
"temperature-fahrenheit": {
|
|
5849
6102
|
"displayName": "°F",
|
|
6103
|
+
"unitPattern-count-one": "{0}°F",
|
|
6104
|
+
"unitPattern-count-few": "{0}°F",
|
|
6105
|
+
"unitPattern-count-many": "{0}°F",
|
|
5850
6106
|
"unitPattern-count-other": "{0}°F"
|
|
5851
6107
|
},
|
|
5852
6108
|
"temperature-kelvin": {
|
|
5853
6109
|
"displayName": "K",
|
|
6110
|
+
"unitPattern-count-one": "{0} K",
|
|
6111
|
+
"unitPattern-count-few": "{0} K",
|
|
6112
|
+
"unitPattern-count-many": "{0} K",
|
|
5854
6113
|
"unitPattern-count-other": "{0} K"
|
|
5855
6114
|
},
|
|
5856
6115
|
"torque-pound-force-foot": {
|
|
@@ -5869,15 +6128,24 @@
|
|
|
5869
6128
|
},
|
|
5870
6129
|
"volume-cubic-kilometer": {
|
|
5871
6130
|
"displayName": "km³",
|
|
6131
|
+
"unitPattern-count-one": "{0} km³",
|
|
6132
|
+
"unitPattern-count-few": "{0} km³",
|
|
6133
|
+
"unitPattern-count-many": "{0} km³",
|
|
5872
6134
|
"unitPattern-count-other": "{0} km³"
|
|
5873
6135
|
},
|
|
5874
6136
|
"volume-cubic-meter": {
|
|
5875
6137
|
"displayName": "m³",
|
|
6138
|
+
"unitPattern-count-one": "{0} m³",
|
|
6139
|
+
"unitPattern-count-few": "{0} m³",
|
|
6140
|
+
"unitPattern-count-many": "{0} m³",
|
|
5876
6141
|
"unitPattern-count-other": "{0} m³",
|
|
5877
6142
|
"perUnitPattern": "{0}/m³"
|
|
5878
6143
|
},
|
|
5879
6144
|
"volume-cubic-centimeter": {
|
|
5880
6145
|
"displayName": "cm³",
|
|
6146
|
+
"unitPattern-count-one": "{0} cm³",
|
|
6147
|
+
"unitPattern-count-few": "{0} cm³",
|
|
6148
|
+
"unitPattern-count-many": "{0} cm³",
|
|
5881
6149
|
"unitPattern-count-other": "{0} cm³",
|
|
5882
6150
|
"perUnitPattern": "{0}/cm³"
|
|
5883
6151
|
},
|
|
@@ -5925,6 +6193,9 @@
|
|
|
5925
6193
|
},
|
|
5926
6194
|
"volume-liter": {
|
|
5927
6195
|
"displayName": "litry",
|
|
6196
|
+
"unitPattern-count-one": "{0} l",
|
|
6197
|
+
"unitPattern-count-few": "{0} l",
|
|
6198
|
+
"unitPattern-count-many": "{0} l",
|
|
5928
6199
|
"unitPattern-count-other": "{0} l",
|
|
5929
6200
|
"perUnitPattern": "{0}/l"
|
|
5930
6201
|
},
|
|
@@ -5972,6 +6243,9 @@
|
|
|
5972
6243
|
},
|
|
5973
6244
|
"volume-bushel": {
|
|
5974
6245
|
"displayName": "bu",
|
|
6246
|
+
"unitPattern-count-one": "{0} bu",
|
|
6247
|
+
"unitPattern-count-few": "{0} bu",
|
|
6248
|
+
"unitPattern-count-many": "{0} bu",
|
|
5975
6249
|
"unitPattern-count-other": "{0} bu"
|
|
5976
6250
|
},
|
|
5977
6251
|
"volume-gallon": {
|
|
@@ -6230,41 +6504,56 @@
|
|
|
6230
6504
|
},
|
|
6231
6505
|
"eras-gregorian": {
|
|
6232
6506
|
"0": {
|
|
6507
|
+
"_code": "gregory-inverse",
|
|
6508
|
+
"_aliases": "bc bce",
|
|
6233
6509
|
"_end": "0-12-31"
|
|
6234
6510
|
},
|
|
6235
6511
|
"1": {
|
|
6512
|
+
"_code": "gregory",
|
|
6513
|
+
"_aliases": "ad ce",
|
|
6236
6514
|
"_start": "1-01-01"
|
|
6237
6515
|
}
|
|
6238
6516
|
},
|
|
6239
6517
|
"eras-islamic": {
|
|
6240
6518
|
"0": {
|
|
6519
|
+
"_code": "islamic",
|
|
6520
|
+
"_aliases": "ah",
|
|
6241
6521
|
"_start": "622-7-15"
|
|
6242
6522
|
}
|
|
6243
6523
|
},
|
|
6244
6524
|
"eras-persian": {
|
|
6245
6525
|
"0": {
|
|
6526
|
+
"_code": "persian",
|
|
6527
|
+
"_aliases": "ap",
|
|
6246
6528
|
"_start": "622-01-01"
|
|
6247
6529
|
}
|
|
6248
6530
|
},
|
|
6249
6531
|
"eras-buddhist": {
|
|
6250
6532
|
"0": {
|
|
6533
|
+
"_code": "buddhist",
|
|
6534
|
+
"_aliases": "be",
|
|
6251
6535
|
"_start": "-542-01-01"
|
|
6252
6536
|
}
|
|
6253
6537
|
},
|
|
6254
6538
|
"eras-japanese": {
|
|
6255
6539
|
"232": {
|
|
6540
|
+
"_code": "meiji",
|
|
6256
6541
|
"_start": "1868-9-8"
|
|
6257
6542
|
},
|
|
6258
6543
|
"233": {
|
|
6544
|
+
"_code": "taisho",
|
|
6259
6545
|
"_start": "1912-7-30"
|
|
6260
6546
|
},
|
|
6261
6547
|
"234": {
|
|
6548
|
+
"_code": "showa",
|
|
6262
6549
|
"_start": "1926-12-25"
|
|
6263
6550
|
},
|
|
6264
6551
|
"235": {
|
|
6552
|
+
"_code": "heisei",
|
|
6265
6553
|
"_start": "1989-1-8"
|
|
6266
6554
|
},
|
|
6267
6555
|
"236": {
|
|
6556
|
+
"_code": "reiwa",
|
|
6268
6557
|
"_start": "2019-5-1"
|
|
6269
6558
|
}
|
|
6270
6559
|
},
|