@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": "Affareg",
|
|
7
7
|
"ab": "Abchaseg",
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
"am": "Amhareg",
|
|
25
25
|
"an": "Aragoneg",
|
|
26
26
|
"ang": "Hen Saesneg",
|
|
27
|
+
"ann": "Obolo",
|
|
27
28
|
"anp": "Angika",
|
|
28
29
|
"ar": "Arabeg",
|
|
29
30
|
"ar_001": "Arabeg Modern Safonol",
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
"aro": "Araonaeg",
|
|
33
34
|
"arp": "Arapaho",
|
|
34
35
|
"arq": "Arabeg Algeria",
|
|
36
|
+
"ars": "Arabeg Najdi",
|
|
35
37
|
"arw": "Arawaceg",
|
|
36
38
|
"ary": "Arabeg Moroco",
|
|
37
39
|
"arz": "Arabeg yr Aifft",
|
|
@@ -39,6 +41,7 @@
|
|
|
39
41
|
"asa": "Asw",
|
|
40
42
|
"ase": "Iaith Arwyddion America",
|
|
41
43
|
"ast": "Astwrianeg",
|
|
44
|
+
"atj": "Atikamekw",
|
|
42
45
|
"av": "Afareg",
|
|
43
46
|
"awa": "Awadhi",
|
|
44
47
|
"ay": "Aymareg",
|
|
@@ -78,6 +81,7 @@
|
|
|
78
81
|
"ca": "Catalaneg",
|
|
79
82
|
"cad": "Cado",
|
|
80
83
|
"car": "Caribeg",
|
|
84
|
+
"cay": "Cayuga",
|
|
81
85
|
"cch": "Atsameg",
|
|
82
86
|
"ccp": "Tsiacma",
|
|
83
87
|
"ce": "Tsietsieneg",
|
|
@@ -87,17 +91,26 @@
|
|
|
87
91
|
"chk": "Chuukaeg",
|
|
88
92
|
"chm": "Marieg",
|
|
89
93
|
"cho": "Siocto",
|
|
94
|
+
"chp": "Chipewyan",
|
|
90
95
|
"chr": "Tsierocî",
|
|
91
96
|
"chy": "Cheyenne",
|
|
92
97
|
"ckb": "Cwrdeg Sorani",
|
|
93
98
|
"ckb_alt-menu": "Cwrdeg Sorani",
|
|
94
99
|
"ckb_alt-variant": "Cwrdeg Sorani",
|
|
100
|
+
"clc": "Chilcotin",
|
|
95
101
|
"co": "Corseg",
|
|
96
102
|
"cop": "Copteg",
|
|
97
103
|
"cr": "Cri",
|
|
104
|
+
"crg": "Michif",
|
|
98
105
|
"crh": "Tyrceg y Crimea",
|
|
106
|
+
"crj": "Cree De Ddwyrain",
|
|
107
|
+
"crk": "Plains Cree",
|
|
108
|
+
"crl": "Gogledd Dwyrain Cree",
|
|
109
|
+
"crm": "Moose Cree",
|
|
110
|
+
"crr": "Carolina Algonquian",
|
|
99
111
|
"crs": "Ffrangeg Seselwa Creole",
|
|
100
112
|
"cs": "Tsieceg",
|
|
113
|
+
"csw": "Swampy Cree",
|
|
101
114
|
"cu": "Hen Slafoneg",
|
|
102
115
|
"cv": "Tshwfasheg",
|
|
103
116
|
"cy": "Cymraeg",
|
|
@@ -130,9 +143,9 @@
|
|
|
130
143
|
"en_AU": "Saesneg Awstralia",
|
|
131
144
|
"en_CA": "Saesneg Canada",
|
|
132
145
|
"en_GB": "Saesneg Prydain",
|
|
133
|
-
"en_GB-alt-short": "Saesneg
|
|
146
|
+
"en_GB-alt-short": "Saesneg (DU)",
|
|
134
147
|
"en_US": "Saesneg America",
|
|
135
|
-
"en_US-alt-short": "Saesneg
|
|
148
|
+
"en_US-alt-short": "Saesneg (UDA)",
|
|
136
149
|
"enm": "Saesneg Canol",
|
|
137
150
|
"eo": "Esperanto",
|
|
138
151
|
"es": "Sbaeneg",
|
|
@@ -188,8 +201,11 @@
|
|
|
188
201
|
"ha": "Hawsa",
|
|
189
202
|
"hai": "Haida",
|
|
190
203
|
"haw": "Hawäieg",
|
|
204
|
+
"hax": "Haida Deheuol",
|
|
191
205
|
"he": "Hebraeg",
|
|
192
206
|
"hi": "Hindi",
|
|
207
|
+
"hi_Latn": "Hindi (Lladin)",
|
|
208
|
+
"hi_Latn-alt-variant": "Hinglish",
|
|
193
209
|
"hil": "Hiligaynon",
|
|
194
210
|
"hit": "Hetheg",
|
|
195
211
|
"hmn": "Hmongeg",
|
|
@@ -198,6 +214,7 @@
|
|
|
198
214
|
"ht": "Creol Haiti",
|
|
199
215
|
"hu": "Hwngareg",
|
|
200
216
|
"hup": "Hupa",
|
|
217
|
+
"hur": "Halkomelem",
|
|
201
218
|
"hy": "Armeneg",
|
|
202
219
|
"hz": "Herero",
|
|
203
220
|
"ia": "Interlingua",
|
|
@@ -208,6 +225,7 @@
|
|
|
208
225
|
"ig": "Igbo",
|
|
209
226
|
"ii": "Nwosw",
|
|
210
227
|
"ik": "Inwpiaceg",
|
|
228
|
+
"ikt": "Inuktitut Canadaidd Gorllewinol",
|
|
211
229
|
"ilo": "Ilocaneg",
|
|
212
230
|
"inh": "Ingwsieg",
|
|
213
231
|
"io": "Ido",
|
|
@@ -233,7 +251,7 @@
|
|
|
233
251
|
"kea": "Caboferdianeg",
|
|
234
252
|
"kfo": "Koro",
|
|
235
253
|
"kg": "Congo",
|
|
236
|
-
"kgp": "
|
|
254
|
+
"kgp": "Kaingang",
|
|
237
255
|
"kha": "Càseg",
|
|
238
256
|
"khq": "Koyra Chiini",
|
|
239
257
|
"khw": "Chowareg",
|
|
@@ -262,6 +280,7 @@
|
|
|
262
280
|
"kum": "Cwmiceg",
|
|
263
281
|
"kv": "Comi",
|
|
264
282
|
"kw": "Cernyweg",
|
|
283
|
+
"kwk": "Kwakʼwala",
|
|
265
284
|
"ky": "Cirgiseg",
|
|
266
285
|
"la": "Lladin",
|
|
267
286
|
"lad": "Iddew-Sbaeneg",
|
|
@@ -272,15 +291,16 @@
|
|
|
272
291
|
"lez": "Lezgheg",
|
|
273
292
|
"lg": "Ganda",
|
|
274
293
|
"li": "Limbwrgeg",
|
|
275
|
-
"
|
|
294
|
+
"lil": "Lillooet",
|
|
276
295
|
"lkt": "Lakota",
|
|
277
296
|
"lmo": "Lombardeg",
|
|
278
297
|
"ln": "Lingala",
|
|
279
298
|
"lo": "Laoeg",
|
|
280
299
|
"lol": "Mongo",
|
|
281
|
-
"lou": "
|
|
300
|
+
"lou": "Louisiana Creole",
|
|
282
301
|
"loz": "Lozi",
|
|
283
302
|
"lrc": "Luri Gogleddol",
|
|
303
|
+
"lsm": "Saamia",
|
|
284
304
|
"lt": "Lithwaneg",
|
|
285
305
|
"ltg": "Latgaleg",
|
|
286
306
|
"lu": "Luba-Katanga",
|
|
@@ -314,6 +334,7 @@
|
|
|
314
334
|
"mn": "Mongoleg",
|
|
315
335
|
"mnc": "Manshw",
|
|
316
336
|
"mni": "Manipwri",
|
|
337
|
+
"moe": "Innu-aimun",
|
|
317
338
|
"moh": "Mohoceg",
|
|
318
339
|
"mos": "Mosi",
|
|
319
340
|
"mr": "Marathi",
|
|
@@ -362,6 +383,11 @@
|
|
|
362
383
|
"nzi": "Nzimeg",
|
|
363
384
|
"oc": "Ocsitaneg",
|
|
364
385
|
"oj": "Ojibwa",
|
|
386
|
+
"ojb": "Ojibwa gogledd-orllewin",
|
|
387
|
+
"ojc": "Ojibwa Canolog",
|
|
388
|
+
"ojs": "Oji-Cree",
|
|
389
|
+
"ojw": "Ojibwa Gorllewinol",
|
|
390
|
+
"oka": "Okanagan",
|
|
365
391
|
"om": "Oromo",
|
|
366
392
|
"or": "Odia",
|
|
367
393
|
"os": "Oseteg",
|
|
@@ -380,10 +406,12 @@
|
|
|
380
406
|
"pfl": "Almaeneg Palatin",
|
|
381
407
|
"phn": "Phoeniceg",
|
|
382
408
|
"pi": "Pali",
|
|
409
|
+
"pis": "Pijin",
|
|
383
410
|
"pl": "Pwyleg",
|
|
384
411
|
"pms": "Piedmonteg",
|
|
385
412
|
"pnt": "Ponteg",
|
|
386
413
|
"pon": "Pohnpeianeg",
|
|
414
|
+
"pqm": "Maliseet-Passamaquoddy",
|
|
387
415
|
"prg": "Prwseg",
|
|
388
416
|
"pro": "Hen Brofensaleg",
|
|
389
417
|
"ps": "Pashto",
|
|
@@ -439,6 +467,7 @@
|
|
|
439
467
|
"sid": "Sidamo",
|
|
440
468
|
"sk": "Slofaceg",
|
|
441
469
|
"sl": "Slofeneg",
|
|
470
|
+
"slh": "Lushootseed Deheuol",
|
|
442
471
|
"sli": "Is-silesieg",
|
|
443
472
|
"sm": "Samöeg",
|
|
444
473
|
"sma": "Sami Deheuol",
|
|
@@ -457,6 +486,7 @@
|
|
|
457
486
|
"ssy": "Saho",
|
|
458
487
|
"st": "Sesotheg Deheuol",
|
|
459
488
|
"stq": "Ffriseg Saterland",
|
|
489
|
+
"str": "Straits Salish",
|
|
460
490
|
"su": "Swndaneg",
|
|
461
491
|
"suk": "Swcwma",
|
|
462
492
|
"sus": "Swsŵeg",
|
|
@@ -469,6 +499,7 @@
|
|
|
469
499
|
"syr": "Syrieg",
|
|
470
500
|
"szl": "Silesieg",
|
|
471
501
|
"ta": "Tamileg",
|
|
502
|
+
"tce": "Tutchone Deheuol",
|
|
472
503
|
"tcy": "Tulu",
|
|
473
504
|
"te": "Telugu",
|
|
474
505
|
"tem": "Timneg",
|
|
@@ -476,7 +507,9 @@
|
|
|
476
507
|
"ter": "Terena",
|
|
477
508
|
"tet": "Tetumeg",
|
|
478
509
|
"tg": "Tajiceg",
|
|
510
|
+
"tgx": "Tagish",
|
|
479
511
|
"th": "Thai",
|
|
512
|
+
"tht": "Tahltan",
|
|
480
513
|
"ti": "Tigrinya",
|
|
481
514
|
"tig": "Tigreg",
|
|
482
515
|
"tiv": "Tifeg",
|
|
@@ -485,17 +518,19 @@
|
|
|
485
518
|
"tkr": "Tsakhureg",
|
|
486
519
|
"tl": "Tagalog",
|
|
487
520
|
"tlh": "Klingon",
|
|
488
|
-
"tli": "
|
|
521
|
+
"tli": "Tlingit",
|
|
489
522
|
"tly": "Talysheg",
|
|
490
523
|
"tmh": "Tamasheceg",
|
|
491
524
|
"tn": "Tswana",
|
|
492
525
|
"to": "Tongeg",
|
|
526
|
+
"tok": "Toki Pona",
|
|
493
527
|
"tpi": "Tok Pisin",
|
|
494
528
|
"tr": "Tyrceg",
|
|
495
529
|
"trv": "Taroko",
|
|
496
530
|
"ts": "Tsongaeg",
|
|
497
531
|
"tsd": "Tsaconeg",
|
|
498
532
|
"tt": "Tatareg",
|
|
533
|
+
"ttm": "Tutchone gogleddol",
|
|
499
534
|
"tum": "Twmbwca",
|
|
500
535
|
"tvl": "Twfalweg",
|
|
501
536
|
"tw": "Twi",
|
|
@@ -527,6 +562,7 @@
|
|
|
527
562
|
"was": "Washo",
|
|
528
563
|
"wbp": "Warlpiri",
|
|
529
564
|
"wo": "Woloff",
|
|
565
|
+
"wuu": "Wu Tsieineaidd",
|
|
530
566
|
"xal": "Calmyceg",
|
|
531
567
|
"xh": "Xhosa",
|
|
532
568
|
"xog": "Soga",
|
|
@@ -534,7 +570,7 @@
|
|
|
534
570
|
"ybb": "Iembaeg",
|
|
535
571
|
"yi": "Iddew-Almaeneg",
|
|
536
572
|
"yo": "Iorwba",
|
|
537
|
-
"yrl": "
|
|
573
|
+
"yrl": "Nheengatu",
|
|
538
574
|
"yue": "Cantoneeg",
|
|
539
575
|
"yue_alt-menu": "Tsieinëeg, Cantoneg",
|
|
540
576
|
"zap": "Zapoteceg",
|
|
@@ -553,179 +589,60 @@
|
|
|
553
589
|
"zza": "Sasäeg"
|
|
554
590
|
},
|
|
555
591
|
"scripts": {
|
|
556
|
-
"Adlm": "
|
|
557
|
-
"Aghb": "Aghb",
|
|
558
|
-
"Ahom": "Ahom",
|
|
592
|
+
"Adlm": "Adlam",
|
|
559
593
|
"Arab": "Arabaidd",
|
|
560
|
-
"Aran": "
|
|
561
|
-
"Armi": "Armi",
|
|
594
|
+
"Aran": "Nastaliq",
|
|
562
595
|
"Armn": "Armenaidd",
|
|
563
|
-
"Avst": "Avst",
|
|
564
|
-
"Bali": "Bali",
|
|
565
|
-
"Bamu": "Bamu",
|
|
566
|
-
"Bass": "Bass",
|
|
567
|
-
"Batk": "Batk",
|
|
568
596
|
"Beng": "Bangla",
|
|
569
|
-
"Bhks": "Bhks",
|
|
570
597
|
"Bopo": "Bopomofo",
|
|
571
|
-
"Brah": "Brah",
|
|
572
598
|
"Brai": "Braille",
|
|
573
|
-
"
|
|
574
|
-
"
|
|
575
|
-
"
|
|
576
|
-
"Cans": "Cans",
|
|
577
|
-
"Cari": "Cari",
|
|
578
|
-
"Cham": "Cham",
|
|
579
|
-
"Cher": "Cher",
|
|
580
|
-
"Chrs": "Chrs",
|
|
581
|
-
"Copt": "Copt",
|
|
582
|
-
"Cpmn": "Cpmn",
|
|
583
|
-
"Cprt": "Cprt",
|
|
599
|
+
"Cakm": "Chakma",
|
|
600
|
+
"Cans": "Meysydd Llafur Cynfrodorol Unedig Canada",
|
|
601
|
+
"Cher": "Cherokee",
|
|
584
602
|
"Cyrl": "Cyrilig",
|
|
585
603
|
"Deva": "Devanagari",
|
|
586
|
-
"Diak": "Diak",
|
|
587
|
-
"Dogr": "Dogr",
|
|
588
|
-
"Dsrt": "Dsrt",
|
|
589
|
-
"Dupl": "Dupl",
|
|
590
|
-
"Egyp": "Egyp",
|
|
591
|
-
"Elba": "Elba",
|
|
592
|
-
"Elym": "Elym",
|
|
593
604
|
"Ethi": "Ethiopig",
|
|
594
605
|
"Geor": "Georgaidd",
|
|
595
|
-
"Glag": "Glag",
|
|
596
|
-
"Gong": "Gong",
|
|
597
|
-
"Gonm": "Gonm",
|
|
598
|
-
"Goth": "Goth",
|
|
599
|
-
"Gran": "Gran",
|
|
600
606
|
"Grek": "Groegaidd",
|
|
601
607
|
"Gujr": "Gwjarataidd",
|
|
602
608
|
"Guru": "Gwrmwci",
|
|
603
609
|
"Hanb": "Han gyda Bopomofo",
|
|
604
610
|
"Hang": "Hangul",
|
|
605
611
|
"Hani": "Han",
|
|
606
|
-
"Hano": "Hano",
|
|
607
612
|
"Hans": "Symledig",
|
|
608
613
|
"Hans-alt-stand-alone": "Han symledig",
|
|
609
614
|
"Hant": "Traddodiadol",
|
|
610
615
|
"Hant-alt-stand-alone": "Han traddodiadol",
|
|
611
|
-
"Hatr": "Hatr",
|
|
612
616
|
"Hebr": "Hebreig",
|
|
613
617
|
"Hira": "Hiragana",
|
|
614
|
-
"Hluw": "Hluw",
|
|
615
|
-
"Hmng": "Hmng",
|
|
616
|
-
"Hmnp": "Hmnp",
|
|
617
618
|
"Hrkt": "Syllwyddor Japaneaidd",
|
|
618
|
-
"Hung": "Hung",
|
|
619
|
-
"Ital": "Ital",
|
|
620
619
|
"Jamo": "Jamo",
|
|
621
|
-
"Java": "Java",
|
|
622
620
|
"Jpan": "Japaneaidd",
|
|
623
|
-
"Kali": "Kali",
|
|
624
621
|
"Kana": "Catacana",
|
|
625
|
-
"Kawi": "Kawi",
|
|
626
|
-
"Khar": "Khar",
|
|
627
622
|
"Khmr": "Chmeraidd",
|
|
628
|
-
"Khoj": "Khoj",
|
|
629
|
-
"Kits": "Kits",
|
|
630
623
|
"Knda": "Canaraidd",
|
|
631
624
|
"Kore": "Coreaidd",
|
|
632
|
-
"Kthi": "Kthi",
|
|
633
|
-
"Lana": "Lana",
|
|
634
625
|
"Laoo": "Laoaidd",
|
|
635
626
|
"Latn": "Lladin",
|
|
636
|
-
"Lepc": "Lepc",
|
|
637
|
-
"Limb": "Limb",
|
|
638
|
-
"Lina": "Lina",
|
|
639
|
-
"Linb": "Linb",
|
|
640
|
-
"Lisu": "Lisu",
|
|
641
|
-
"Lyci": "Lyci",
|
|
642
|
-
"Lydi": "Lydi",
|
|
643
|
-
"Mahj": "Mahj",
|
|
644
|
-
"Maka": "Maka",
|
|
645
|
-
"Mand": "Mand",
|
|
646
|
-
"Mani": "Mani",
|
|
647
|
-
"Marc": "Marc",
|
|
648
|
-
"Medf": "Medf",
|
|
649
|
-
"Mend": "Mend",
|
|
650
|
-
"Merc": "Merc",
|
|
651
|
-
"Mero": "Mero",
|
|
652
627
|
"Mlym": "Malayalamaidd",
|
|
653
|
-
"Modi": "Modi",
|
|
654
628
|
"Mong": "Mongolaidd",
|
|
655
|
-
"
|
|
656
|
-
"Mtei": "Mtei",
|
|
657
|
-
"Mult": "Mult",
|
|
629
|
+
"Mtei": "Meitei Mayek",
|
|
658
630
|
"Mymr": "Myanmaraidd",
|
|
659
|
-
"
|
|
660
|
-
"
|
|
661
|
-
"Narb": "Narb",
|
|
662
|
-
"Nbat": "Nbat",
|
|
663
|
-
"Newa": "Newa",
|
|
664
|
-
"Nkoo": "Nkoo",
|
|
665
|
-
"Nshu": "Nshu",
|
|
666
|
-
"Ogam": "Ogam",
|
|
667
|
-
"Olck": "Olck",
|
|
668
|
-
"Orkh": "Orkh",
|
|
631
|
+
"Nkoo": "N’Ko",
|
|
632
|
+
"Olck": "Ol Chiki",
|
|
669
633
|
"Orya": "Orïaidd",
|
|
670
|
-
"
|
|
671
|
-
"Osma": "Osma",
|
|
672
|
-
"Ougr": "Ougr",
|
|
673
|
-
"Palm": "Palm",
|
|
674
|
-
"Pauc": "Pauc",
|
|
675
|
-
"Perm": "Perm",
|
|
676
|
-
"Phag": "Phag",
|
|
677
|
-
"Phli": "Phli",
|
|
678
|
-
"Phlp": "Phlp",
|
|
679
|
-
"Phnx": "Phnx",
|
|
680
|
-
"Plrd": "Plrd",
|
|
681
|
-
"Prti": "Prti",
|
|
682
|
-
"Qaag": "Qaag",
|
|
683
|
-
"Rjng": "Rjng",
|
|
684
|
-
"Rohg": "Rohg",
|
|
685
|
-
"Runr": "Runr",
|
|
686
|
-
"Samr": "Samr",
|
|
687
|
-
"Sarb": "Sarb",
|
|
688
|
-
"Saur": "Saur",
|
|
689
|
-
"Sgnw": "Sgnw",
|
|
690
|
-
"Shaw": "Shaw",
|
|
691
|
-
"Shrd": "Shrd",
|
|
692
|
-
"Sidd": "Sidd",
|
|
693
|
-
"Sind": "Sind",
|
|
634
|
+
"Rohg": "Hanifi",
|
|
694
635
|
"Sinh": "Sinhanaidd",
|
|
695
|
-
"
|
|
696
|
-
"
|
|
697
|
-
"Sora": "Sora",
|
|
698
|
-
"Soyo": "Soyo",
|
|
699
|
-
"Sund": "Sund",
|
|
700
|
-
"Sylo": "Sylo",
|
|
701
|
-
"Syrc": "Syrc",
|
|
702
|
-
"Tagb": "Tagb",
|
|
703
|
-
"Takr": "Takr",
|
|
704
|
-
"Tale": "Tale",
|
|
705
|
-
"Talu": "Talu",
|
|
636
|
+
"Sund": "Swndaneg",
|
|
637
|
+
"Syrc": "Syrieg",
|
|
706
638
|
"Taml": "Tamilaidd",
|
|
707
|
-
"Tang": "Tang",
|
|
708
|
-
"Tavt": "Tavt",
|
|
709
639
|
"Telu": "Telugu",
|
|
710
|
-
"Tfng": "
|
|
711
|
-
"Tglg": "Tglg",
|
|
640
|
+
"Tfng": "Tifinagh",
|
|
712
641
|
"Thaa": "Thaana",
|
|
713
642
|
"Thai": "Tai",
|
|
714
643
|
"Tibt": "Tibetaidd",
|
|
715
|
-
"
|
|
716
|
-
"
|
|
717
|
-
"Toto": "Toto",
|
|
718
|
-
"Ugar": "Ugar",
|
|
719
|
-
"Vaii": "Vaii",
|
|
720
|
-
"Vith": "Vith",
|
|
721
|
-
"Wara": "Wara",
|
|
722
|
-
"Wcho": "Wcho",
|
|
723
|
-
"Xpeo": "Xpeo",
|
|
724
|
-
"Xsux": "Xsux",
|
|
725
|
-
"Yezi": "Yezi",
|
|
726
|
-
"Yiii": "Yiii",
|
|
727
|
-
"Zanb": "Zanb",
|
|
728
|
-
"Zinh": "Zinh",
|
|
644
|
+
"Vaii": "Vai",
|
|
645
|
+
"Yiii": "Yi",
|
|
729
646
|
"Zmth": "Nodiant Mathemategol",
|
|
730
647
|
"Zsye": "Emoji",
|
|
731
648
|
"Zsym": "Symbolau",
|
|
@@ -951,6 +868,7 @@
|
|
|
951
868
|
"NR": "Nauru",
|
|
952
869
|
"NU": "Niue",
|
|
953
870
|
"NZ": "Seland Newydd",
|
|
871
|
+
"NZ-alt-variant": "Aotearoa Seland Newydd",
|
|
954
872
|
"OM": "Oman",
|
|
955
873
|
"PA": "Panama",
|
|
956
874
|
"PE": "Periw",
|
|
@@ -1010,6 +928,7 @@
|
|
|
1010
928
|
"TN": "Tiwnisia",
|
|
1011
929
|
"TO": "Tonga",
|
|
1012
930
|
"TR": "Twrci",
|
|
931
|
+
"TR-alt-variant": "Türkiye",
|
|
1013
932
|
"TT": "Trinidad a Tobago",
|
|
1014
933
|
"TV": "Tuvalu",
|
|
1015
934
|
"TW": "Taiwan",
|
|
@@ -1057,8 +976,8 @@
|
|
|
1057
976
|
"short": "HH:mm"
|
|
1058
977
|
},
|
|
1059
978
|
"dateTimeFormats": {
|
|
1060
|
-
"full": "{1}
|
|
1061
|
-
"long": "{1}
|
|
979
|
+
"full": "{1}, {0}",
|
|
980
|
+
"long": "{1}, {0}",
|
|
1062
981
|
"medium": "{1} {0}",
|
|
1063
982
|
"short": "{1} {0}",
|
|
1064
983
|
"availableFormats": {
|
|
@@ -1070,24 +989,24 @@
|
|
|
1070
989
|
"EBhm": "E h:mm B",
|
|
1071
990
|
"EBhms": "E h:mm:ss B",
|
|
1072
991
|
"Ed": "d, E",
|
|
1073
|
-
"Ehm": "E, h:mm
|
|
992
|
+
"Ehm": "E, h:mm a",
|
|
1074
993
|
"EHm": "E, HH:mm",
|
|
1075
|
-
"Ehms": "E, h:mm:ss
|
|
994
|
+
"Ehms": "E, h:mm:ss a",
|
|
1076
995
|
"EHms": "E, HH:mm:ss",
|
|
1077
996
|
"Gy": "y G",
|
|
1078
997
|
"GyMd": "M/d/y GGGGG",
|
|
1079
998
|
"GyMMM": "MMM y G",
|
|
1080
999
|
"GyMMMd": "d MMM y G",
|
|
1081
1000
|
"GyMMMEd": "E, d MMM y G",
|
|
1082
|
-
"h": "h
|
|
1001
|
+
"h": "h a",
|
|
1083
1002
|
"H": "HH",
|
|
1084
|
-
"hm": "h:mm
|
|
1003
|
+
"hm": "h:mm a",
|
|
1085
1004
|
"Hm": "HH:mm",
|
|
1086
|
-
"hms": "h:mm:ss
|
|
1005
|
+
"hms": "h:mm:ss a",
|
|
1087
1006
|
"Hms": "HH:mm:ss",
|
|
1088
|
-
"hmsv": "h:mm:ss
|
|
1007
|
+
"hmsv": "h:mm:ss a v",
|
|
1089
1008
|
"Hmsv": "HH:mm:ss v",
|
|
1090
|
-
"hmv": "h:mm
|
|
1009
|
+
"hmv": "h:mm a v",
|
|
1091
1010
|
"Hmv": "HH:mm v",
|
|
1092
1011
|
"M": "L",
|
|
1093
1012
|
"Md": "d/M",
|
|
@@ -1125,7 +1044,7 @@
|
|
|
1125
1044
|
"Year": "{1} {0}"
|
|
1126
1045
|
},
|
|
1127
1046
|
"intervalFormats": {
|
|
1128
|
-
"intervalFormatFallback": "{0}
|
|
1047
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1129
1048
|
"Bh": {
|
|
1130
1049
|
"B": "h B – h B",
|
|
1131
1050
|
"h": "h–h B"
|
|
@@ -1177,58 +1096,58 @@
|
|
|
1177
1096
|
"y": "G y MMM d, E – y MMM d, E"
|
|
1178
1097
|
},
|
|
1179
1098
|
"h": {
|
|
1180
|
-
"a": "h
|
|
1181
|
-
"h": "h
|
|
1099
|
+
"a": "h a – h a",
|
|
1100
|
+
"h": "h – h a"
|
|
1182
1101
|
},
|
|
1183
1102
|
"H": {
|
|
1184
|
-
"H": "HH
|
|
1103
|
+
"H": "HH – HH"
|
|
1185
1104
|
},
|
|
1186
1105
|
"hm": {
|
|
1187
|
-
"a": "h:mm
|
|
1188
|
-
"h": "h:mm h:mm
|
|
1189
|
-
"m": "h:mm
|
|
1106
|
+
"a": "h:mm a – h:mm a",
|
|
1107
|
+
"h": "h:mm h:mm a",
|
|
1108
|
+
"m": "h:mm – h:mm a"
|
|
1190
1109
|
},
|
|
1191
1110
|
"Hm": {
|
|
1192
|
-
"H": "HH:mm
|
|
1193
|
-
"m": "HH:mm
|
|
1111
|
+
"H": "HH:mm – HH:mm",
|
|
1112
|
+
"m": "HH:mm – HH:mm"
|
|
1194
1113
|
},
|
|
1195
1114
|
"hmv": {
|
|
1196
|
-
"a": "h:mm
|
|
1197
|
-
"h": "h:mm
|
|
1198
|
-
"m": "h:mm
|
|
1115
|
+
"a": "h:mm a – h:mm a v",
|
|
1116
|
+
"h": "h:mm – h:mm a v",
|
|
1117
|
+
"m": "h:mm – h:mm a v"
|
|
1199
1118
|
},
|
|
1200
1119
|
"Hmv": {
|
|
1201
|
-
"H": "HH:mm
|
|
1202
|
-
"m": "HH:mm
|
|
1120
|
+
"H": "HH:mm – HH:mm v",
|
|
1121
|
+
"m": "HH:mm – HH:mm v"
|
|
1203
1122
|
},
|
|
1204
1123
|
"hv": {
|
|
1205
|
-
"a": "h
|
|
1206
|
-
"h": "h
|
|
1124
|
+
"a": "h a – h a v",
|
|
1125
|
+
"h": "h – h a v"
|
|
1207
1126
|
},
|
|
1208
1127
|
"Hv": {
|
|
1209
|
-
"H": "HH
|
|
1128
|
+
"H": "HH – HH v"
|
|
1210
1129
|
},
|
|
1211
1130
|
"M": {
|
|
1212
1131
|
"M": "M–M"
|
|
1213
1132
|
},
|
|
1214
1133
|
"Md": {
|
|
1215
|
-
"d": "d/M
|
|
1216
|
-
"M": "d/M
|
|
1134
|
+
"d": "d/M – d/M",
|
|
1135
|
+
"M": "d/M – d/M"
|
|
1217
1136
|
},
|
|
1218
1137
|
"MEd": {
|
|
1219
|
-
"d": "E, d/M
|
|
1220
|
-
"M": "E, d/M
|
|
1138
|
+
"d": "E, d/M – E, d/M",
|
|
1139
|
+
"M": "E, d/M – E, d/M"
|
|
1221
1140
|
},
|
|
1222
1141
|
"MMM": {
|
|
1223
1142
|
"M": "MMM–MMM"
|
|
1224
1143
|
},
|
|
1225
1144
|
"MMMd": {
|
|
1226
|
-
"d": "d
|
|
1227
|
-
"M": "d MMM
|
|
1145
|
+
"d": "d – d MMM",
|
|
1146
|
+
"M": "d MMM – d MMM"
|
|
1228
1147
|
},
|
|
1229
1148
|
"MMMEd": {
|
|
1230
|
-
"d": "E, d MMM
|
|
1231
|
-
"M": "E, d MMM
|
|
1149
|
+
"d": "E, d MMM – E, d MMM",
|
|
1150
|
+
"M": "E, d MMM – E, d MMM"
|
|
1232
1151
|
},
|
|
1233
1152
|
"MMMM": {
|
|
1234
1153
|
"M": "LLLL–LLLL"
|
|
@@ -1237,36 +1156,36 @@
|
|
|
1237
1156
|
"y": "y–y"
|
|
1238
1157
|
},
|
|
1239
1158
|
"yM": {
|
|
1240
|
-
"M": "M/y
|
|
1241
|
-
"y": "M/y
|
|
1159
|
+
"M": "M/y – M/y",
|
|
1160
|
+
"y": "M/y – M/y"
|
|
1242
1161
|
},
|
|
1243
1162
|
"yMd": {
|
|
1244
|
-
"d": "d/M/y
|
|
1245
|
-
"M": "d/M/y
|
|
1246
|
-
"y": "d/M/y
|
|
1163
|
+
"d": "d/M/y – d/M/y",
|
|
1164
|
+
"M": "d/M/y – d/M/y",
|
|
1165
|
+
"y": "d/M/y – d/M/y"
|
|
1247
1166
|
},
|
|
1248
1167
|
"yMEd": {
|
|
1249
|
-
"d": "E, d/M/y
|
|
1250
|
-
"M": "E, d/M/y
|
|
1251
|
-
"y": "E, d/M/y
|
|
1168
|
+
"d": "E, d/M/y – E, d/M/y",
|
|
1169
|
+
"M": "E, d/M/y – E, d/M/y",
|
|
1170
|
+
"y": "E, d/M/y – E, d/M/y"
|
|
1252
1171
|
},
|
|
1253
1172
|
"yMMM": {
|
|
1254
|
-
"M": "MMM
|
|
1255
|
-
"y": "MMM y
|
|
1173
|
+
"M": "MMM – MMM y",
|
|
1174
|
+
"y": "MMM y – MMM y"
|
|
1256
1175
|
},
|
|
1257
1176
|
"yMMMd": {
|
|
1258
1177
|
"d": "d–d MMM y",
|
|
1259
|
-
"M": "d MMM
|
|
1260
|
-
"y": "d MMM, y
|
|
1178
|
+
"M": "d MMM – d MMM y",
|
|
1179
|
+
"y": "d MMM, y – d MMM y"
|
|
1261
1180
|
},
|
|
1262
1181
|
"yMMMEd": {
|
|
1263
|
-
"d": "E, d MMM
|
|
1264
|
-
"M": "E, d MMM
|
|
1265
|
-
"y": "E, d MMM y
|
|
1182
|
+
"d": "E, d MMM – E, d MMM y",
|
|
1183
|
+
"M": "E, d MMM – E, d MMM y",
|
|
1184
|
+
"y": "E, d MMM y – E, d MMM y"
|
|
1266
1185
|
},
|
|
1267
1186
|
"yMMMM": {
|
|
1268
|
-
"M": "MMMM
|
|
1269
|
-
"y": "MMMM y
|
|
1187
|
+
"M": "MMMM – MMMM y",
|
|
1188
|
+
"y": "MMMM y – MMMM y"
|
|
1270
1189
|
}
|
|
1271
1190
|
}
|
|
1272
1191
|
},
|
|
@@ -1585,8 +1504,8 @@
|
|
|
1585
1504
|
"short": "HH:mm"
|
|
1586
1505
|
},
|
|
1587
1506
|
"dateTimeFormats": {
|
|
1588
|
-
"full": "{1}
|
|
1589
|
-
"long": "{1}
|
|
1507
|
+
"full": "{1}, {0}",
|
|
1508
|
+
"long": "{1}, {0}",
|
|
1590
1509
|
"medium": "{1}, {0}",
|
|
1591
1510
|
"short": "{1}, {0}",
|
|
1592
1511
|
"availableFormats": {
|
|
@@ -1598,20 +1517,20 @@
|
|
|
1598
1517
|
"EBhm": "E h:mm B",
|
|
1599
1518
|
"EBhms": "E h:mm:ss B",
|
|
1600
1519
|
"Ed": "E, d",
|
|
1601
|
-
"Ehm": "E h:mm
|
|
1520
|
+
"Ehm": "E h:mm a",
|
|
1602
1521
|
"EHm": "E HH:mm",
|
|
1603
|
-
"Ehms": "E h:mm:ss
|
|
1522
|
+
"Ehms": "E h:mm:ss a",
|
|
1604
1523
|
"EHms": "E HH:mm:ss",
|
|
1605
1524
|
"Gy": "y G",
|
|
1606
1525
|
"GyMd": "M/d/y GGGGG",
|
|
1607
1526
|
"GyMMM": "MMM y G",
|
|
1608
1527
|
"GyMMMd": "d MMM y G",
|
|
1609
1528
|
"GyMMMEd": "E, d MMM y G",
|
|
1610
|
-
"h": "h
|
|
1529
|
+
"h": "h a",
|
|
1611
1530
|
"H": "HH",
|
|
1612
|
-
"hm": "h:mm
|
|
1531
|
+
"hm": "h:mm a",
|
|
1613
1532
|
"Hm": "HH:mm",
|
|
1614
|
-
"hms": "h:mm:ss
|
|
1533
|
+
"hms": "h:mm:ss a",
|
|
1615
1534
|
"Hms": "HH:mm:ss",
|
|
1616
1535
|
"M": "L",
|
|
1617
1536
|
"Md": "d/M",
|
|
@@ -1647,7 +1566,7 @@
|
|
|
1647
1566
|
"Year": "{1} {0}"
|
|
1648
1567
|
},
|
|
1649
1568
|
"intervalFormats": {
|
|
1650
|
-
"intervalFormatFallback": "{0}
|
|
1569
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1651
1570
|
"Bh": {
|
|
1652
1571
|
"B": "h B – h B",
|
|
1653
1572
|
"h": "h–h B"
|
|
@@ -1658,7 +1577,7 @@
|
|
|
1658
1577
|
"m": "h:mm–h:mm B"
|
|
1659
1578
|
},
|
|
1660
1579
|
"d": {
|
|
1661
|
-
"d": "d
|
|
1580
|
+
"d": "d – d"
|
|
1662
1581
|
},
|
|
1663
1582
|
"Gy": {
|
|
1664
1583
|
"G": "G y – G y",
|
|
@@ -1699,58 +1618,58 @@
|
|
|
1699
1618
|
"y": "G y MMM d, E – y MMM d, E"
|
|
1700
1619
|
},
|
|
1701
1620
|
"h": {
|
|
1702
|
-
"a": "h
|
|
1703
|
-
"h": "h
|
|
1621
|
+
"a": "h a – h a",
|
|
1622
|
+
"h": "h – h a"
|
|
1704
1623
|
},
|
|
1705
1624
|
"H": {
|
|
1706
|
-
"H": "HH
|
|
1625
|
+
"H": "HH – HH"
|
|
1707
1626
|
},
|
|
1708
1627
|
"hm": {
|
|
1709
|
-
"a": "h:mm
|
|
1710
|
-
"h": "h:mm
|
|
1711
|
-
"m": "h:mm
|
|
1628
|
+
"a": "h:mm a – h:mm a",
|
|
1629
|
+
"h": "h:mm – h:mm a",
|
|
1630
|
+
"m": "h:mm – h:mm a"
|
|
1712
1631
|
},
|
|
1713
1632
|
"Hm": {
|
|
1714
|
-
"H": "HH:mm
|
|
1715
|
-
"m": "HH:mm
|
|
1633
|
+
"H": "HH:mm – HH:mm",
|
|
1634
|
+
"m": "HH:mm – HH:mm"
|
|
1716
1635
|
},
|
|
1717
1636
|
"hmv": {
|
|
1718
|
-
"a": "h:mm
|
|
1719
|
-
"h": "h:mm
|
|
1720
|
-
"m": "h:mm
|
|
1637
|
+
"a": "h:mm a – h:mm a v",
|
|
1638
|
+
"h": "h:mm – h:mm a v",
|
|
1639
|
+
"m": "h:mm – h:mm a v"
|
|
1721
1640
|
},
|
|
1722
1641
|
"Hmv": {
|
|
1723
|
-
"H": "HH:mm
|
|
1724
|
-
"m": "HH:mm
|
|
1642
|
+
"H": "HH:mm – HH:mm v",
|
|
1643
|
+
"m": "HH:mm – HH:mm v"
|
|
1725
1644
|
},
|
|
1726
1645
|
"hv": {
|
|
1727
|
-
"a": "h
|
|
1728
|
-
"h": "h
|
|
1646
|
+
"a": "h a – h a v",
|
|
1647
|
+
"h": "h – h a v"
|
|
1729
1648
|
},
|
|
1730
1649
|
"Hv": {
|
|
1731
|
-
"H": "HH
|
|
1650
|
+
"H": "HH – HH v"
|
|
1732
1651
|
},
|
|
1733
1652
|
"M": {
|
|
1734
|
-
"M": "M
|
|
1653
|
+
"M": "M – M"
|
|
1735
1654
|
},
|
|
1736
1655
|
"Md": {
|
|
1737
|
-
"d": "d/M
|
|
1738
|
-
"M": "d/M
|
|
1656
|
+
"d": "d/M – d/M",
|
|
1657
|
+
"M": "d/M – d/M"
|
|
1739
1658
|
},
|
|
1740
1659
|
"MEd": {
|
|
1741
|
-
"d": "E, d/M
|
|
1742
|
-
"M": "E, d/M
|
|
1660
|
+
"d": "E, d/M – E, d/M",
|
|
1661
|
+
"M": "E, d/M – E, d/M"
|
|
1743
1662
|
},
|
|
1744
1663
|
"MMM": {
|
|
1745
|
-
"M": "MMM
|
|
1664
|
+
"M": "MMM – MMM"
|
|
1746
1665
|
},
|
|
1747
1666
|
"MMMd": {
|
|
1748
|
-
"d": "d
|
|
1749
|
-
"M": "d MMM
|
|
1667
|
+
"d": "d – d MMM",
|
|
1668
|
+
"M": "d MMM – d MMM"
|
|
1750
1669
|
},
|
|
1751
1670
|
"MMMEd": {
|
|
1752
|
-
"d": "E, d MMM
|
|
1753
|
-
"M": "E, d MMM
|
|
1671
|
+
"d": "E, d MMM – E, d MMM",
|
|
1672
|
+
"M": "E, d MMM – E, d MMM"
|
|
1754
1673
|
},
|
|
1755
1674
|
"MMMM": {
|
|
1756
1675
|
"M": "LLLL–LLLL"
|
|
@@ -1759,36 +1678,36 @@
|
|
|
1759
1678
|
"y": "y–y G"
|
|
1760
1679
|
},
|
|
1761
1680
|
"yM": {
|
|
1762
|
-
"M": "M/y
|
|
1763
|
-
"y": "M/y
|
|
1681
|
+
"M": "M/y – M/y GGGGG",
|
|
1682
|
+
"y": "M/y – M/y GGGGG"
|
|
1764
1683
|
},
|
|
1765
1684
|
"yMd": {
|
|
1766
|
-
"d": "d/M/y
|
|
1767
|
-
"M": "d/M/y
|
|
1768
|
-
"y": "d/M/y
|
|
1685
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
1686
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
1687
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
1769
1688
|
},
|
|
1770
1689
|
"yMEd": {
|
|
1771
|
-
"d": "E, d/M/y
|
|
1772
|
-
"M": "E, d/M/y
|
|
1773
|
-
"y": "E, d/M/y
|
|
1690
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
1691
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
1692
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
1774
1693
|
},
|
|
1775
1694
|
"yMMM": {
|
|
1776
|
-
"M": "MMM
|
|
1777
|
-
"y": "MMM y
|
|
1695
|
+
"M": "MMM – MMM y G",
|
|
1696
|
+
"y": "MMM y – MMM y G"
|
|
1778
1697
|
},
|
|
1779
1698
|
"yMMMd": {
|
|
1780
1699
|
"d": "d–d MMM y G",
|
|
1781
|
-
"M": "d MMM
|
|
1782
|
-
"y": "d MMM y
|
|
1700
|
+
"M": "d MMM – d MMM y G",
|
|
1701
|
+
"y": "d MMM y – d MMM y G"
|
|
1783
1702
|
},
|
|
1784
1703
|
"yMMMEd": {
|
|
1785
|
-
"d": "E, d MMM
|
|
1786
|
-
"M": "E, d MMM
|
|
1787
|
-
"y": "E, d MMM, y
|
|
1704
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
1705
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
1706
|
+
"y": "E, d MMM, y – E, d MMM y G"
|
|
1788
1707
|
},
|
|
1789
1708
|
"yMMMM": {
|
|
1790
1709
|
"M": "MMMM–MMMM y G",
|
|
1791
|
-
"y": "MMMM y
|
|
1710
|
+
"y": "MMMM y – MMMM y G"
|
|
1792
1711
|
}
|
|
1793
1712
|
}
|
|
1794
1713
|
},
|
|
@@ -2104,8 +2023,8 @@
|
|
|
2104
2023
|
"short": "HH:mm"
|
|
2105
2024
|
},
|
|
2106
2025
|
"dateTimeFormats": {
|
|
2107
|
-
"full": "{1}
|
|
2108
|
-
"long": "{1}
|
|
2026
|
+
"full": "{1}, {0}",
|
|
2027
|
+
"long": "{1}, {0}",
|
|
2109
2028
|
"medium": "{1}, {0}",
|
|
2110
2029
|
"short": "{1}, {0}",
|
|
2111
2030
|
"availableFormats": {
|
|
@@ -2117,20 +2036,20 @@
|
|
|
2117
2036
|
"EBhm": "E h:mm B",
|
|
2118
2037
|
"EBhms": "E h:mm:ss B",
|
|
2119
2038
|
"Ed": "E, d",
|
|
2120
|
-
"Ehm": "E h:mm
|
|
2039
|
+
"Ehm": "E h:mm a",
|
|
2121
2040
|
"EHm": "E HH:mm",
|
|
2122
|
-
"Ehms": "E h:mm:ss
|
|
2041
|
+
"Ehms": "E h:mm:ss a",
|
|
2123
2042
|
"EHms": "E HH:mm:ss",
|
|
2124
2043
|
"Gy": "y G",
|
|
2125
2044
|
"GyMd": "M/d/y GGGGG",
|
|
2126
2045
|
"GyMMM": "MMM y G",
|
|
2127
2046
|
"GyMMMd": "d MMM y G",
|
|
2128
2047
|
"GyMMMEd": "E, d MMM y G",
|
|
2129
|
-
"h": "h
|
|
2048
|
+
"h": "h a",
|
|
2130
2049
|
"H": "HH",
|
|
2131
|
-
"hm": "h:mm
|
|
2050
|
+
"hm": "h:mm a",
|
|
2132
2051
|
"Hm": "HH:mm",
|
|
2133
|
-
"hms": "h:mm:ss
|
|
2052
|
+
"hms": "h:mm:ss a",
|
|
2134
2053
|
"Hms": "HH:mm:ss",
|
|
2135
2054
|
"M": "L",
|
|
2136
2055
|
"Md": "d/M",
|
|
@@ -2166,7 +2085,7 @@
|
|
|
2166
2085
|
"Year": "{1} {0}"
|
|
2167
2086
|
},
|
|
2168
2087
|
"intervalFormats": {
|
|
2169
|
-
"intervalFormatFallback": "{0}
|
|
2088
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2170
2089
|
"Bh": {
|
|
2171
2090
|
"B": "h B – h B",
|
|
2172
2091
|
"h": "h–h B"
|
|
@@ -2177,7 +2096,7 @@
|
|
|
2177
2096
|
"m": "h:mm–h:mm B"
|
|
2178
2097
|
},
|
|
2179
2098
|
"d": {
|
|
2180
|
-
"d": "d
|
|
2099
|
+
"d": "d – d"
|
|
2181
2100
|
},
|
|
2182
2101
|
"Gy": {
|
|
2183
2102
|
"G": "G y – G y",
|
|
@@ -2218,58 +2137,58 @@
|
|
|
2218
2137
|
"y": "G y MMM d, E – y MMM d, E"
|
|
2219
2138
|
},
|
|
2220
2139
|
"h": {
|
|
2221
|
-
"a": "h
|
|
2222
|
-
"h": "h
|
|
2140
|
+
"a": "h a – h a",
|
|
2141
|
+
"h": "h – h a"
|
|
2223
2142
|
},
|
|
2224
2143
|
"H": {
|
|
2225
|
-
"H": "HH
|
|
2144
|
+
"H": "HH – HH"
|
|
2226
2145
|
},
|
|
2227
2146
|
"hm": {
|
|
2228
|
-
"a": "h:mm
|
|
2229
|
-
"h": "h:mm
|
|
2230
|
-
"m": "h:mm
|
|
2147
|
+
"a": "h:mm a – h:mm a",
|
|
2148
|
+
"h": "h:mm – h:mm a",
|
|
2149
|
+
"m": "h:mm – h:mm a"
|
|
2231
2150
|
},
|
|
2232
2151
|
"Hm": {
|
|
2233
|
-
"H": "HH:mm
|
|
2234
|
-
"m": "HH:mm
|
|
2152
|
+
"H": "HH:mm – HH:mm",
|
|
2153
|
+
"m": "HH:mm – HH:mm"
|
|
2235
2154
|
},
|
|
2236
2155
|
"hmv": {
|
|
2237
|
-
"a": "h:mm
|
|
2238
|
-
"h": "h:mm
|
|
2239
|
-
"m": "h:mm
|
|
2156
|
+
"a": "h:mm a – h:mm a v",
|
|
2157
|
+
"h": "h:mm – h:mm a v",
|
|
2158
|
+
"m": "h:mm – h:mm a v"
|
|
2240
2159
|
},
|
|
2241
2160
|
"Hmv": {
|
|
2242
|
-
"H": "HH:mm
|
|
2243
|
-
"m": "HH:mm
|
|
2161
|
+
"H": "HH:mm – HH:mm v",
|
|
2162
|
+
"m": "HH:mm – HH:mm v"
|
|
2244
2163
|
},
|
|
2245
2164
|
"hv": {
|
|
2246
|
-
"a": "h
|
|
2247
|
-
"h": "h
|
|
2165
|
+
"a": "h a – h a v",
|
|
2166
|
+
"h": "h – h a v"
|
|
2248
2167
|
},
|
|
2249
2168
|
"Hv": {
|
|
2250
|
-
"H": "HH
|
|
2169
|
+
"H": "HH – HH v"
|
|
2251
2170
|
},
|
|
2252
2171
|
"M": {
|
|
2253
|
-
"M": "M
|
|
2172
|
+
"M": "M – M"
|
|
2254
2173
|
},
|
|
2255
2174
|
"Md": {
|
|
2256
|
-
"d": "d/M
|
|
2257
|
-
"M": "d/M
|
|
2175
|
+
"d": "d/M – d/M",
|
|
2176
|
+
"M": "d/M – d/M"
|
|
2258
2177
|
},
|
|
2259
2178
|
"MEd": {
|
|
2260
|
-
"d": "E, d/M
|
|
2261
|
-
"M": "E, d/M
|
|
2179
|
+
"d": "E, d/M – E, d/M",
|
|
2180
|
+
"M": "E, d/M – E, d/M"
|
|
2262
2181
|
},
|
|
2263
2182
|
"MMM": {
|
|
2264
|
-
"M": "MMM
|
|
2183
|
+
"M": "MMM – MMM"
|
|
2265
2184
|
},
|
|
2266
2185
|
"MMMd": {
|
|
2267
|
-
"d": "d
|
|
2268
|
-
"M": "d MMM
|
|
2186
|
+
"d": "d – d MMM",
|
|
2187
|
+
"M": "d MMM – d MMM"
|
|
2269
2188
|
},
|
|
2270
2189
|
"MMMEd": {
|
|
2271
|
-
"d": "E, d MMM
|
|
2272
|
-
"M": "E, d MMM
|
|
2190
|
+
"d": "E, d MMM – E, d MMM",
|
|
2191
|
+
"M": "E, d MMM – E, d MMM"
|
|
2273
2192
|
},
|
|
2274
2193
|
"MMMM": {
|
|
2275
2194
|
"M": "LLLL–LLLL"
|
|
@@ -2279,43 +2198,43 @@
|
|
|
2279
2198
|
"G": "y G–y G"
|
|
2280
2199
|
},
|
|
2281
2200
|
"yM": {
|
|
2282
|
-
"M": "M/y
|
|
2283
|
-
"y": "M/y
|
|
2284
|
-
"G": "M/y GGGGG
|
|
2201
|
+
"M": "M/y – M/y GGGGG",
|
|
2202
|
+
"y": "M/y – M/y GGGGG",
|
|
2203
|
+
"G": "M/y GGGGG – M/y GGGGG"
|
|
2285
2204
|
},
|
|
2286
2205
|
"yMd": {
|
|
2287
|
-
"d": "d/M/y
|
|
2288
|
-
"M": "d/M/y
|
|
2289
|
-
"y": "d/M/y
|
|
2290
|
-
"G": "d/M/y GGGGG
|
|
2206
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2207
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2208
|
+
"y": "d/M/y – d/M/y GGGGG",
|
|
2209
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG"
|
|
2291
2210
|
},
|
|
2292
2211
|
"yMEd": {
|
|
2293
|
-
"d": "E, d/M/y
|
|
2294
|
-
"M": "E, d/M/y
|
|
2295
|
-
"y": "E, d/M/y
|
|
2296
|
-
"G": "E, d/M/y GGGGG
|
|
2212
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2213
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2214
|
+
"y": "E, d/M/y – E, d/M/y GGGGG",
|
|
2215
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG"
|
|
2297
2216
|
},
|
|
2298
2217
|
"yMMM": {
|
|
2299
|
-
"M": "MMM
|
|
2300
|
-
"y": "MMM y
|
|
2301
|
-
"G": "MMM y G
|
|
2218
|
+
"M": "MMM – MMM y G",
|
|
2219
|
+
"y": "MMM y – MMM y G",
|
|
2220
|
+
"G": "MMM y G – MMM y G"
|
|
2302
2221
|
},
|
|
2303
2222
|
"yMMMd": {
|
|
2304
2223
|
"d": "d–d MMM y G",
|
|
2305
|
-
"M": "d MMM
|
|
2306
|
-
"y": "d MMM y
|
|
2307
|
-
"G": "d MMM y G
|
|
2224
|
+
"M": "d MMM – d MMM y G",
|
|
2225
|
+
"y": "d MMM y – d MMM y G",
|
|
2226
|
+
"G": "d MMM y G – d MMM y G"
|
|
2308
2227
|
},
|
|
2309
2228
|
"yMMMEd": {
|
|
2310
|
-
"d": "E, d MMM
|
|
2311
|
-
"M": "E, d MMM
|
|
2312
|
-
"y": "E, d MMM, y
|
|
2313
|
-
"G": "E, d MMM, y G
|
|
2229
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
2230
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
2231
|
+
"y": "E, d MMM, y – E, d MMM y G",
|
|
2232
|
+
"G": "E, d MMM, y G – E, d MMM y G"
|
|
2314
2233
|
},
|
|
2315
2234
|
"yMMMM": {
|
|
2316
2235
|
"M": "MMMM–MMMM y G",
|
|
2317
|
-
"y": "MMMM y
|
|
2318
|
-
"G": "MMMM y G
|
|
2236
|
+
"y": "MMMM y – MMMM y G",
|
|
2237
|
+
"G": "MMMM y G – MMMM y G"
|
|
2319
2238
|
}
|
|
2320
2239
|
}
|
|
2321
2240
|
},
|
|
@@ -2643,8 +2562,8 @@
|
|
|
2643
2562
|
"short": "HH:mm"
|
|
2644
2563
|
},
|
|
2645
2564
|
"dateTimeFormats": {
|
|
2646
|
-
"full": "{1}
|
|
2647
|
-
"long": "{1}
|
|
2565
|
+
"full": "{1}, {0}",
|
|
2566
|
+
"long": "{1}, {0}",
|
|
2648
2567
|
"medium": "{1}, {0}",
|
|
2649
2568
|
"short": "{1}, {0}",
|
|
2650
2569
|
"availableFormats": {
|
|
@@ -2656,20 +2575,20 @@
|
|
|
2656
2575
|
"EBhm": "E h:mm B",
|
|
2657
2576
|
"EBhms": "E h:mm:ss B",
|
|
2658
2577
|
"Ed": "E, d",
|
|
2659
|
-
"Ehm": "E h:mm
|
|
2578
|
+
"Ehm": "E h:mm a",
|
|
2660
2579
|
"EHm": "E HH:mm",
|
|
2661
|
-
"Ehms": "E h:mm:ss
|
|
2580
|
+
"Ehms": "E h:mm:ss a",
|
|
2662
2581
|
"EHms": "E HH:mm:ss",
|
|
2663
2582
|
"Gy": "y G",
|
|
2664
2583
|
"GyMd": "M/d/y GGGGG",
|
|
2665
2584
|
"GyMMM": "MMM y G",
|
|
2666
2585
|
"GyMMMd": "d MMM y G",
|
|
2667
2586
|
"GyMMMEd": "E, d MMM y G",
|
|
2668
|
-
"h": "h
|
|
2587
|
+
"h": "h a",
|
|
2669
2588
|
"H": "HH",
|
|
2670
|
-
"hm": "h:mm
|
|
2589
|
+
"hm": "h:mm a",
|
|
2671
2590
|
"Hm": "HH:mm",
|
|
2672
|
-
"hms": "h:mm:ss
|
|
2591
|
+
"hms": "h:mm:ss a",
|
|
2673
2592
|
"Hms": "HH:mm:ss",
|
|
2674
2593
|
"M": "L",
|
|
2675
2594
|
"Md": "d/M",
|
|
@@ -2705,7 +2624,7 @@
|
|
|
2705
2624
|
"Year": "{1} {0}"
|
|
2706
2625
|
},
|
|
2707
2626
|
"intervalFormats": {
|
|
2708
|
-
"intervalFormatFallback": "{0}
|
|
2627
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2709
2628
|
"Bh": {
|
|
2710
2629
|
"B": "h B – h B",
|
|
2711
2630
|
"h": "h–h B"
|
|
@@ -2716,7 +2635,7 @@
|
|
|
2716
2635
|
"m": "h:mm–h:mm B"
|
|
2717
2636
|
},
|
|
2718
2637
|
"d": {
|
|
2719
|
-
"d": "d
|
|
2638
|
+
"d": "d – d"
|
|
2720
2639
|
},
|
|
2721
2640
|
"Gy": {
|
|
2722
2641
|
"G": "G y – G y",
|
|
@@ -2757,58 +2676,58 @@
|
|
|
2757
2676
|
"y": "G y MMM d, E – y MMM d, E"
|
|
2758
2677
|
},
|
|
2759
2678
|
"h": {
|
|
2760
|
-
"a": "h
|
|
2761
|
-
"h": "h
|
|
2679
|
+
"a": "h a – h a",
|
|
2680
|
+
"h": "h – h a"
|
|
2762
2681
|
},
|
|
2763
2682
|
"H": {
|
|
2764
|
-
"H": "HH
|
|
2683
|
+
"H": "HH – HH"
|
|
2765
2684
|
},
|
|
2766
2685
|
"hm": {
|
|
2767
|
-
"a": "h:mm
|
|
2768
|
-
"h": "h:mm
|
|
2769
|
-
"m": "h:mm
|
|
2686
|
+
"a": "h:mm a – h:mm a",
|
|
2687
|
+
"h": "h:mm – h:mm a",
|
|
2688
|
+
"m": "h:mm – h:mm a"
|
|
2770
2689
|
},
|
|
2771
2690
|
"Hm": {
|
|
2772
|
-
"H": "HH:mm
|
|
2773
|
-
"m": "HH:mm
|
|
2691
|
+
"H": "HH:mm – HH:mm",
|
|
2692
|
+
"m": "HH:mm – HH:mm"
|
|
2774
2693
|
},
|
|
2775
2694
|
"hmv": {
|
|
2776
|
-
"a": "h:mm
|
|
2777
|
-
"h": "h:mm
|
|
2778
|
-
"m": "h:mm
|
|
2695
|
+
"a": "h:mm a – h:mm a v",
|
|
2696
|
+
"h": "h:mm – h:mm a v",
|
|
2697
|
+
"m": "h:mm – h:mm a v"
|
|
2779
2698
|
},
|
|
2780
2699
|
"Hmv": {
|
|
2781
|
-
"H": "HH:mm
|
|
2782
|
-
"m": "HH:mm
|
|
2700
|
+
"H": "HH:mm – HH:mm v",
|
|
2701
|
+
"m": "HH:mm – HH:mm v"
|
|
2783
2702
|
},
|
|
2784
2703
|
"hv": {
|
|
2785
|
-
"a": "h
|
|
2786
|
-
"h": "h
|
|
2704
|
+
"a": "h a – h a v",
|
|
2705
|
+
"h": "h – h a v"
|
|
2787
2706
|
},
|
|
2788
2707
|
"Hv": {
|
|
2789
|
-
"H": "HH
|
|
2708
|
+
"H": "HH – HH v"
|
|
2790
2709
|
},
|
|
2791
2710
|
"M": {
|
|
2792
|
-
"M": "M
|
|
2711
|
+
"M": "M – M"
|
|
2793
2712
|
},
|
|
2794
2713
|
"Md": {
|
|
2795
|
-
"d": "d/M
|
|
2796
|
-
"M": "d/M
|
|
2714
|
+
"d": "d/M – d/M",
|
|
2715
|
+
"M": "d/M – d/M"
|
|
2797
2716
|
},
|
|
2798
2717
|
"MEd": {
|
|
2799
|
-
"d": "E, d/M
|
|
2800
|
-
"M": "E, d/M
|
|
2718
|
+
"d": "E, d/M – E, d/M",
|
|
2719
|
+
"M": "E, d/M – E, d/M"
|
|
2801
2720
|
},
|
|
2802
2721
|
"MMM": {
|
|
2803
|
-
"M": "MMM
|
|
2722
|
+
"M": "MMM – MMM"
|
|
2804
2723
|
},
|
|
2805
2724
|
"MMMd": {
|
|
2806
|
-
"d": "d
|
|
2807
|
-
"M": "d MMM
|
|
2725
|
+
"d": "d – d MMM",
|
|
2726
|
+
"M": "d MMM – d MMM"
|
|
2808
2727
|
},
|
|
2809
2728
|
"MMMEd": {
|
|
2810
|
-
"d": "E, d MMM
|
|
2811
|
-
"M": "E, d MMM
|
|
2729
|
+
"d": "E, d MMM – E, d MMM",
|
|
2730
|
+
"M": "E, d MMM – E, d MMM"
|
|
2812
2731
|
},
|
|
2813
2732
|
"MMMM": {
|
|
2814
2733
|
"M": "LLLL–LLLL"
|
|
@@ -2817,36 +2736,36 @@
|
|
|
2817
2736
|
"y": "y–y G"
|
|
2818
2737
|
},
|
|
2819
2738
|
"yM": {
|
|
2820
|
-
"M": "M/y
|
|
2821
|
-
"y": "M/y
|
|
2739
|
+
"M": "M/y – M/y GGGGG",
|
|
2740
|
+
"y": "M/y – M/y GGGGG"
|
|
2822
2741
|
},
|
|
2823
2742
|
"yMd": {
|
|
2824
|
-
"d": "d/M/y
|
|
2825
|
-
"M": "d/M/y
|
|
2826
|
-
"y": "d/M/y
|
|
2743
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2744
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2745
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
2827
2746
|
},
|
|
2828
2747
|
"yMEd": {
|
|
2829
|
-
"d": "E, d/M/y
|
|
2830
|
-
"M": "E, d/M/y
|
|
2831
|
-
"y": "E, d/M/y
|
|
2748
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2749
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2750
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
2832
2751
|
},
|
|
2833
2752
|
"yMMM": {
|
|
2834
|
-
"M": "MMM
|
|
2835
|
-
"y": "MMM y
|
|
2753
|
+
"M": "MMM – MMM y G",
|
|
2754
|
+
"y": "MMM y – MMM y G"
|
|
2836
2755
|
},
|
|
2837
2756
|
"yMMMd": {
|
|
2838
2757
|
"d": "d–d MMM y G",
|
|
2839
|
-
"M": "d MMM
|
|
2840
|
-
"y": "d MMM y
|
|
2758
|
+
"M": "d MMM – d MMM y G",
|
|
2759
|
+
"y": "d MMM y – d MMM y G"
|
|
2841
2760
|
},
|
|
2842
2761
|
"yMMMEd": {
|
|
2843
|
-
"d": "E, d MMM
|
|
2844
|
-
"M": "E, d MMM
|
|
2845
|
-
"y": "E, d MMM, y
|
|
2762
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
2763
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
2764
|
+
"y": "E, d MMM, y – E, d MMM y G"
|
|
2846
2765
|
},
|
|
2847
2766
|
"yMMMM": {
|
|
2848
2767
|
"M": "MMMM–MMMM y G",
|
|
2849
|
-
"y": "MMMM y
|
|
2768
|
+
"y": "MMMM y – MMMM y G"
|
|
2850
2769
|
}
|
|
2851
2770
|
}
|
|
2852
2771
|
},
|
|
@@ -3162,8 +3081,8 @@
|
|
|
3162
3081
|
"short": "HH:mm"
|
|
3163
3082
|
},
|
|
3164
3083
|
"dateTimeFormats": {
|
|
3165
|
-
"full": "{1}
|
|
3166
|
-
"long": "{1}
|
|
3084
|
+
"full": "{1}, {0}",
|
|
3085
|
+
"long": "{1}, {0}",
|
|
3167
3086
|
"medium": "{1}, {0}",
|
|
3168
3087
|
"short": "{1}, {0}",
|
|
3169
3088
|
"availableFormats": {
|
|
@@ -3175,20 +3094,20 @@
|
|
|
3175
3094
|
"EBhm": "E h:mm B",
|
|
3176
3095
|
"EBhms": "E h:mm:ss B",
|
|
3177
3096
|
"Ed": "E, d",
|
|
3178
|
-
"Ehm": "E h:mm
|
|
3097
|
+
"Ehm": "E h:mm a",
|
|
3179
3098
|
"EHm": "E HH:mm",
|
|
3180
|
-
"Ehms": "E h:mm:ss
|
|
3099
|
+
"Ehms": "E h:mm:ss a",
|
|
3181
3100
|
"EHms": "E HH:mm:ss",
|
|
3182
3101
|
"Gy": "y G",
|
|
3183
3102
|
"GyMd": "M/d/y GGGGG",
|
|
3184
3103
|
"GyMMM": "MMM y G",
|
|
3185
3104
|
"GyMMMd": "d MMM y G",
|
|
3186
3105
|
"GyMMMEd": "E, d MMM y G",
|
|
3187
|
-
"h": "h
|
|
3106
|
+
"h": "h a",
|
|
3188
3107
|
"H": "HH",
|
|
3189
|
-
"hm": "h:mm
|
|
3108
|
+
"hm": "h:mm a",
|
|
3190
3109
|
"Hm": "HH:mm",
|
|
3191
|
-
"hms": "h:mm:ss
|
|
3110
|
+
"hms": "h:mm:ss a",
|
|
3192
3111
|
"Hms": "HH:mm:ss",
|
|
3193
3112
|
"M": "L",
|
|
3194
3113
|
"Md": "d/M",
|
|
@@ -3224,7 +3143,7 @@
|
|
|
3224
3143
|
"Year": "{1} {0}"
|
|
3225
3144
|
},
|
|
3226
3145
|
"intervalFormats": {
|
|
3227
|
-
"intervalFormatFallback": "{0}
|
|
3146
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
3228
3147
|
"Bh": {
|
|
3229
3148
|
"B": "h B – h B",
|
|
3230
3149
|
"h": "h–h B"
|
|
@@ -3235,7 +3154,7 @@
|
|
|
3235
3154
|
"m": "h:mm–h:mm B"
|
|
3236
3155
|
},
|
|
3237
3156
|
"d": {
|
|
3238
|
-
"d": "d
|
|
3157
|
+
"d": "d – d"
|
|
3239
3158
|
},
|
|
3240
3159
|
"Gy": {
|
|
3241
3160
|
"G": "G y – G y",
|
|
@@ -3276,58 +3195,58 @@
|
|
|
3276
3195
|
"y": "G y MMM d, E – y MMM d, E"
|
|
3277
3196
|
},
|
|
3278
3197
|
"h": {
|
|
3279
|
-
"a": "h
|
|
3280
|
-
"h": "h
|
|
3198
|
+
"a": "h a – h a",
|
|
3199
|
+
"h": "h – h a"
|
|
3281
3200
|
},
|
|
3282
3201
|
"H": {
|
|
3283
|
-
"H": "HH
|
|
3202
|
+
"H": "HH – HH"
|
|
3284
3203
|
},
|
|
3285
3204
|
"hm": {
|
|
3286
|
-
"a": "h:mm
|
|
3287
|
-
"h": "h:mm
|
|
3288
|
-
"m": "h:mm
|
|
3205
|
+
"a": "h:mm a – h:mm a",
|
|
3206
|
+
"h": "h:mm – h:mm a",
|
|
3207
|
+
"m": "h:mm – h:mm a"
|
|
3289
3208
|
},
|
|
3290
3209
|
"Hm": {
|
|
3291
|
-
"H": "HH:mm
|
|
3292
|
-
"m": "HH:mm
|
|
3210
|
+
"H": "HH:mm – HH:mm",
|
|
3211
|
+
"m": "HH:mm – HH:mm"
|
|
3293
3212
|
},
|
|
3294
3213
|
"hmv": {
|
|
3295
|
-
"a": "h:mm
|
|
3296
|
-
"h": "h:mm
|
|
3297
|
-
"m": "h:mm
|
|
3214
|
+
"a": "h:mm a – h:mm a v",
|
|
3215
|
+
"h": "h:mm – h:mm a v",
|
|
3216
|
+
"m": "h:mm – h:mm a v"
|
|
3298
3217
|
},
|
|
3299
3218
|
"Hmv": {
|
|
3300
|
-
"H": "HH:mm
|
|
3301
|
-
"m": "HH:mm
|
|
3219
|
+
"H": "HH:mm – HH:mm v",
|
|
3220
|
+
"m": "HH:mm – HH:mm v"
|
|
3302
3221
|
},
|
|
3303
3222
|
"hv": {
|
|
3304
|
-
"a": "h
|
|
3305
|
-
"h": "h
|
|
3223
|
+
"a": "h a – h a v",
|
|
3224
|
+
"h": "h – h a v"
|
|
3306
3225
|
},
|
|
3307
3226
|
"Hv": {
|
|
3308
|
-
"H": "HH
|
|
3227
|
+
"H": "HH – HH v"
|
|
3309
3228
|
},
|
|
3310
3229
|
"M": {
|
|
3311
|
-
"M": "M
|
|
3230
|
+
"M": "M – M"
|
|
3312
3231
|
},
|
|
3313
3232
|
"Md": {
|
|
3314
|
-
"d": "d/M
|
|
3315
|
-
"M": "d/M
|
|
3233
|
+
"d": "d/M – d/M",
|
|
3234
|
+
"M": "d/M – d/M"
|
|
3316
3235
|
},
|
|
3317
3236
|
"MEd": {
|
|
3318
|
-
"d": "E, d/M
|
|
3319
|
-
"M": "E, d/M
|
|
3237
|
+
"d": "E, d/M – E, d/M",
|
|
3238
|
+
"M": "E, d/M – E, d/M"
|
|
3320
3239
|
},
|
|
3321
3240
|
"MMM": {
|
|
3322
|
-
"M": "MMM
|
|
3241
|
+
"M": "MMM – MMM"
|
|
3323
3242
|
},
|
|
3324
3243
|
"MMMd": {
|
|
3325
|
-
"d": "d
|
|
3326
|
-
"M": "d MMM
|
|
3244
|
+
"d": "d – d MMM",
|
|
3245
|
+
"M": "d MMM – d MMM"
|
|
3327
3246
|
},
|
|
3328
3247
|
"MMMEd": {
|
|
3329
|
-
"d": "E, d MMM
|
|
3330
|
-
"M": "E, d MMM
|
|
3248
|
+
"d": "E, d MMM – E, d MMM",
|
|
3249
|
+
"M": "E, d MMM – E, d MMM"
|
|
3331
3250
|
},
|
|
3332
3251
|
"MMMM": {
|
|
3333
3252
|
"M": "LLLL–LLLL"
|
|
@@ -3336,36 +3255,36 @@
|
|
|
3336
3255
|
"y": "y–y G"
|
|
3337
3256
|
},
|
|
3338
3257
|
"yM": {
|
|
3339
|
-
"M": "M/y
|
|
3340
|
-
"y": "M/y
|
|
3258
|
+
"M": "M/y – M/y GGGGG",
|
|
3259
|
+
"y": "M/y – M/y GGGGG"
|
|
3341
3260
|
},
|
|
3342
3261
|
"yMd": {
|
|
3343
|
-
"d": "d/M/y
|
|
3344
|
-
"M": "d/M/y
|
|
3345
|
-
"y": "d/M/y
|
|
3262
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
3263
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
3264
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
3346
3265
|
},
|
|
3347
3266
|
"yMEd": {
|
|
3348
|
-
"d": "E, d/M/y
|
|
3349
|
-
"M": "E, d/M/y
|
|
3350
|
-
"y": "E, d/M/y
|
|
3267
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
3268
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
3269
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
3351
3270
|
},
|
|
3352
3271
|
"yMMM": {
|
|
3353
|
-
"M": "MMM
|
|
3354
|
-
"y": "MMM y
|
|
3272
|
+
"M": "MMM – MMM y G",
|
|
3273
|
+
"y": "MMM y – MMM y G"
|
|
3355
3274
|
},
|
|
3356
3275
|
"yMMMd": {
|
|
3357
3276
|
"d": "d–d MMM y G",
|
|
3358
|
-
"M": "d MMM
|
|
3359
|
-
"y": "d MMM y
|
|
3277
|
+
"M": "d MMM – d MMM y G",
|
|
3278
|
+
"y": "d MMM y – d MMM y G"
|
|
3360
3279
|
},
|
|
3361
3280
|
"yMMMEd": {
|
|
3362
|
-
"d": "E, d MMM
|
|
3363
|
-
"M": "E, d MMM
|
|
3364
|
-
"y": "E, d MMM, y
|
|
3281
|
+
"d": "E, d MMM – E, d MMM y G",
|
|
3282
|
+
"M": "E, d MMM – E, d MMM y G",
|
|
3283
|
+
"y": "E, d MMM, y – E, d MMM y G"
|
|
3365
3284
|
},
|
|
3366
3285
|
"yMMMM": {
|
|
3367
3286
|
"M": "MMMM–MMMM y G",
|
|
3368
|
-
"y": "MMMM y
|
|
3287
|
+
"y": "MMMM y – MMMM y G"
|
|
3369
3288
|
}
|
|
3370
3289
|
}
|
|
3371
3290
|
},
|
|
@@ -4294,6 +4213,7 @@
|
|
|
4294
4213
|
"Cayman": "Cayman",
|
|
4295
4214
|
"Chicago": "Chicago",
|
|
4296
4215
|
"Chihuahua": "Chihuahua",
|
|
4216
|
+
"Ciudad_Juarez": "Ciudad Juárez",
|
|
4297
4217
|
"Costa_Rica": "Costa Rica",
|
|
4298
4218
|
"Creston": "Creston",
|
|
4299
4219
|
"Cuiaba": "Cuiabá",
|
|
@@ -4848,78 +4768,78 @@
|
|
|
4848
4768
|
"range": "{0}–{1}"
|
|
4849
4769
|
},
|
|
4850
4770
|
"currencyFormat-short": {
|
|
4851
|
-
"1000-zero": "¤0K",
|
|
4852
|
-
"1000-one": "¤0K",
|
|
4853
|
-
"1000-two": "¤0K",
|
|
4854
|
-
"1000-few": "¤0K",
|
|
4855
|
-
"1000-many": "¤0K",
|
|
4856
|
-
"1000-other": "¤0K",
|
|
4857
|
-
"10000-zero": "¤00K",
|
|
4858
|
-
"10000-one": "¤00K",
|
|
4859
|
-
"10000-two": "¤00K",
|
|
4860
|
-
"10000-few": "¤00K",
|
|
4861
|
-
"10000-many": "¤00K",
|
|
4862
|
-
"10000-other": "¤00K",
|
|
4863
|
-
"100000-zero": "¤000K",
|
|
4864
|
-
"100000-one": "¤000K",
|
|
4865
|
-
"100000-two": "¤000K",
|
|
4866
|
-
"100000-few": "¤000K",
|
|
4867
|
-
"100000-many": "¤000K",
|
|
4868
|
-
"100000-other": "¤000K",
|
|
4869
|
-
"1000000-zero": "¤0M",
|
|
4870
|
-
"1000000-one": "¤0M",
|
|
4871
|
-
"1000000-two": "¤0M",
|
|
4872
|
-
"1000000-few": "¤0M",
|
|
4873
|
-
"1000000-many": "¤0M",
|
|
4874
|
-
"1000000-other": "¤0M",
|
|
4875
|
-
"10000000-zero": "¤00M",
|
|
4876
|
-
"10000000-one": "¤00M",
|
|
4877
|
-
"10000000-two": "¤00M",
|
|
4878
|
-
"10000000-few": "¤00M",
|
|
4879
|
-
"10000000-many": "¤00M",
|
|
4880
|
-
"10000000-other": "¤00M",
|
|
4881
|
-
"100000000-zero": "¤000M",
|
|
4882
|
-
"100000000-one": "¤000M",
|
|
4883
|
-
"100000000-two": "¤000M",
|
|
4884
|
-
"100000000-few": "¤000M",
|
|
4885
|
-
"100000000-many": "¤000M",
|
|
4886
|
-
"100000000-other": "¤000M",
|
|
4887
|
-
"1000000000-zero": "¤0B",
|
|
4888
|
-
"1000000000-one": "¤0B",
|
|
4889
|
-
"1000000000-two": "¤0B",
|
|
4890
|
-
"1000000000-few": "¤0B",
|
|
4891
|
-
"1000000000-many": "¤0B",
|
|
4892
|
-
"1000000000-other": "¤0B",
|
|
4893
|
-
"10000000000-zero": "¤00B",
|
|
4894
|
-
"10000000000-one": "¤00B",
|
|
4895
|
-
"10000000000-two": "¤00B",
|
|
4896
|
-
"10000000000-few": "¤00B",
|
|
4897
|
-
"10000000000-many": "¤00B",
|
|
4898
|
-
"10000000000-other": "¤00B",
|
|
4899
|
-
"100000000000-zero": "¤000B",
|
|
4900
|
-
"100000000000-one": "¤000B",
|
|
4901
|
-
"100000000000-two": "¤000B",
|
|
4902
|
-
"100000000000-few": "¤000B",
|
|
4903
|
-
"100000000000-many": "¤000B",
|
|
4904
|
-
"100000000000-other": "¤000B",
|
|
4905
|
-
"1000000000000-zero": "¤0T",
|
|
4906
|
-
"1000000000000-one": "¤0T",
|
|
4907
|
-
"1000000000000-two": "¤0T",
|
|
4908
|
-
"1000000000000-few": "¤0T",
|
|
4909
|
-
"1000000000000-many": "¤0T",
|
|
4910
|
-
"1000000000000-other": "¤0T",
|
|
4911
|
-
"10000000000000-zero": "¤00T",
|
|
4912
|
-
"10000000000000-one": "¤00T",
|
|
4913
|
-
"10000000000000-two": "¤00T",
|
|
4914
|
-
"10000000000000-few": "¤00T",
|
|
4915
|
-
"10000000000000-many": "¤00T",
|
|
4916
|
-
"10000000000000-other": "¤00T",
|
|
4917
|
-
"100000000000000-zero": "¤000T",
|
|
4918
|
-
"100000000000000-one": "¤000T",
|
|
4919
|
-
"100000000000000-two": "¤000T",
|
|
4920
|
-
"100000000000000-few": "¤000T",
|
|
4921
|
-
"100000000000000-many": "¤000T",
|
|
4922
|
-
"100000000000000-other": "¤000T"
|
|
4771
|
+
"1000-zero": "¤ 0K",
|
|
4772
|
+
"1000-one": "¤ 0K",
|
|
4773
|
+
"1000-two": "¤ 0K",
|
|
4774
|
+
"1000-few": "¤ 0K",
|
|
4775
|
+
"1000-many": "¤ 0K",
|
|
4776
|
+
"1000-other": "¤ 0K",
|
|
4777
|
+
"10000-zero": "¤ 00K",
|
|
4778
|
+
"10000-one": "¤ 00K",
|
|
4779
|
+
"10000-two": "¤ 00K",
|
|
4780
|
+
"10000-few": "¤ 00K",
|
|
4781
|
+
"10000-many": "¤ 00K",
|
|
4782
|
+
"10000-other": "¤ 00K",
|
|
4783
|
+
"100000-zero": "¤ 000K",
|
|
4784
|
+
"100000-one": "¤ 000K",
|
|
4785
|
+
"100000-two": "¤ 000K",
|
|
4786
|
+
"100000-few": "¤ 000K",
|
|
4787
|
+
"100000-many": "¤ 000K",
|
|
4788
|
+
"100000-other": "¤ 000K",
|
|
4789
|
+
"1000000-zero": "¤ 0M",
|
|
4790
|
+
"1000000-one": "¤ 0M",
|
|
4791
|
+
"1000000-two": "¤ 0M",
|
|
4792
|
+
"1000000-few": "¤ 0M",
|
|
4793
|
+
"1000000-many": "¤ 0M",
|
|
4794
|
+
"1000000-other": "¤ 0M",
|
|
4795
|
+
"10000000-zero": "¤ 00M",
|
|
4796
|
+
"10000000-one": "¤ 00M",
|
|
4797
|
+
"10000000-two": "¤ 00M",
|
|
4798
|
+
"10000000-few": "¤ 00M",
|
|
4799
|
+
"10000000-many": "¤ 00M",
|
|
4800
|
+
"10000000-other": "¤ 00M",
|
|
4801
|
+
"100000000-zero": "¤ 000M",
|
|
4802
|
+
"100000000-one": "¤ 000M",
|
|
4803
|
+
"100000000-two": "¤ 000M",
|
|
4804
|
+
"100000000-few": "¤ 000M",
|
|
4805
|
+
"100000000-many": "¤ 000M",
|
|
4806
|
+
"100000000-other": "¤ 000M",
|
|
4807
|
+
"1000000000-zero": "¤ 0B",
|
|
4808
|
+
"1000000000-one": "¤ 0B",
|
|
4809
|
+
"1000000000-two": "¤ 0B",
|
|
4810
|
+
"1000000000-few": "¤ 0B",
|
|
4811
|
+
"1000000000-many": "¤ 0B",
|
|
4812
|
+
"1000000000-other": "¤ 0B",
|
|
4813
|
+
"10000000000-zero": "¤ 00B",
|
|
4814
|
+
"10000000000-one": "¤ 00B",
|
|
4815
|
+
"10000000000-two": "¤ 00B",
|
|
4816
|
+
"10000000000-few": "¤ 00B",
|
|
4817
|
+
"10000000000-many": "¤ 00B",
|
|
4818
|
+
"10000000000-other": "¤ 00B",
|
|
4819
|
+
"100000000000-zero": "¤ 000B",
|
|
4820
|
+
"100000000000-one": "¤ 000B",
|
|
4821
|
+
"100000000000-two": "¤ 000B",
|
|
4822
|
+
"100000000000-few": "¤ 000B",
|
|
4823
|
+
"100000000000-many": "¤ 000B",
|
|
4824
|
+
"100000000000-other": "¤ 000B",
|
|
4825
|
+
"1000000000000-zero": "¤ 0T",
|
|
4826
|
+
"1000000000000-one": "¤ 0T",
|
|
4827
|
+
"1000000000000-two": "¤ 0T",
|
|
4828
|
+
"1000000000000-few": "¤ 0T",
|
|
4829
|
+
"1000000000000-many": "¤ 0T",
|
|
4830
|
+
"1000000000000-other": "¤ 0T",
|
|
4831
|
+
"10000000000000-zero": "¤ 00T",
|
|
4832
|
+
"10000000000000-one": "¤ 00T",
|
|
4833
|
+
"10000000000000-two": "¤ 00T",
|
|
4834
|
+
"10000000000000-few": "¤ 00T",
|
|
4835
|
+
"10000000000000-many": "¤ 00T",
|
|
4836
|
+
"10000000000000-other": "¤ 00T",
|
|
4837
|
+
"100000000000000-zero": "¤ 000T",
|
|
4838
|
+
"100000000000000-one": "¤ 000T",
|
|
4839
|
+
"100000000000000-two": "¤ 000T",
|
|
4840
|
+
"100000000000000-few": "¤ 000T",
|
|
4841
|
+
"100000000000000-many": "¤ 000T",
|
|
4842
|
+
"100000000000000-other": "¤ 000T"
|
|
4923
4843
|
},
|
|
4924
4844
|
"symbols-latn-decimal": ".",
|
|
4925
4845
|
"symbols-latn-group": ",",
|
|
@@ -5072,10 +4992,20 @@
|
|
|
5072
4992
|
},
|
|
5073
4993
|
"power2": {
|
|
5074
4994
|
"compoundUnitPattern1": "{0}²",
|
|
4995
|
+
"compoundUnitPattern1-count-zero": "{0}²",
|
|
4996
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
4997
|
+
"compoundUnitPattern1-count-two": "{0}²",
|
|
4998
|
+
"compoundUnitPattern1-count-few": "{0}²",
|
|
4999
|
+
"compoundUnitPattern1-count-many": "{0}²",
|
|
5075
5000
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
5076
5001
|
},
|
|
5077
5002
|
"power3": {
|
|
5078
5003
|
"compoundUnitPattern1": "{0}³",
|
|
5004
|
+
"compoundUnitPattern1-count-zero": "{0}³",
|
|
5005
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
5006
|
+
"compoundUnitPattern1-count-two": "{0}³",
|
|
5007
|
+
"compoundUnitPattern1-count-few": "{0}³",
|
|
5008
|
+
"compoundUnitPattern1-count-many": "{0}³",
|
|
5079
5009
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
5080
5010
|
},
|
|
5081
5011
|
"times": {
|
|
@@ -5083,6 +5013,11 @@
|
|
|
5083
5013
|
},
|
|
5084
5014
|
"acceleration-g-force": {
|
|
5085
5015
|
"displayName": "grym disgyrchedd",
|
|
5016
|
+
"unitPattern-count-zero": "{0} G",
|
|
5017
|
+
"unitPattern-count-one": "{0} G",
|
|
5018
|
+
"unitPattern-count-two": "{0} G",
|
|
5019
|
+
"unitPattern-count-few": "{0} G",
|
|
5020
|
+
"unitPattern-count-many": "{0} G",
|
|
5086
5021
|
"unitPattern-count-other": "{0} G"
|
|
5087
5022
|
},
|
|
5088
5023
|
"acceleration-meter-per-square-second": {
|
|
@@ -5299,6 +5234,11 @@
|
|
|
5299
5234
|
},
|
|
5300
5235
|
"concentr-permyriad": {
|
|
5301
5236
|
"displayName": "permyriad",
|
|
5237
|
+
"unitPattern-count-zero": "{0}‱",
|
|
5238
|
+
"unitPattern-count-one": "{0}‱",
|
|
5239
|
+
"unitPattern-count-two": "{0}‱",
|
|
5240
|
+
"unitPattern-count-few": "{0}‱",
|
|
5241
|
+
"unitPattern-count-many": "{0}‱",
|
|
5302
5242
|
"unitPattern-count-other": "{0}‱"
|
|
5303
5243
|
},
|
|
5304
5244
|
"concentr-mole": {
|
|
@@ -5393,10 +5333,20 @@
|
|
|
5393
5333
|
},
|
|
5394
5334
|
"digital-megabyte": {
|
|
5395
5335
|
"displayName": "MBeit",
|
|
5336
|
+
"unitPattern-count-zero": "{0} MB",
|
|
5337
|
+
"unitPattern-count-one": "{0} MB",
|
|
5338
|
+
"unitPattern-count-two": "{0} MB",
|
|
5339
|
+
"unitPattern-count-few": "{0} MB",
|
|
5340
|
+
"unitPattern-count-many": "{0} MB",
|
|
5396
5341
|
"unitPattern-count-other": "{0} MB"
|
|
5397
5342
|
},
|
|
5398
5343
|
"digital-megabit": {
|
|
5399
5344
|
"displayName": "Mbit",
|
|
5345
|
+
"unitPattern-count-zero": "{0} Mb",
|
|
5346
|
+
"unitPattern-count-one": "{0} Mb",
|
|
5347
|
+
"unitPattern-count-two": "{0} Mb",
|
|
5348
|
+
"unitPattern-count-few": "{0} Mb",
|
|
5349
|
+
"unitPattern-count-many": "{0} Mb",
|
|
5400
5350
|
"unitPattern-count-other": "{0} Mb"
|
|
5401
5351
|
},
|
|
5402
5352
|
"digital-kilobyte": {
|
|
@@ -5410,6 +5360,11 @@
|
|
|
5410
5360
|
},
|
|
5411
5361
|
"digital-kilobit": {
|
|
5412
5362
|
"displayName": "kbit",
|
|
5363
|
+
"unitPattern-count-zero": "{0} kb",
|
|
5364
|
+
"unitPattern-count-one": "{0} kb",
|
|
5365
|
+
"unitPattern-count-two": "{0} kb",
|
|
5366
|
+
"unitPattern-count-few": "{0} kb",
|
|
5367
|
+
"unitPattern-count-many": "{0} kb",
|
|
5413
5368
|
"unitPattern-count-other": "{0} kb"
|
|
5414
5369
|
},
|
|
5415
5370
|
"digital-byte": {
|
|
@@ -5458,6 +5413,16 @@
|
|
|
5458
5413
|
"unitPattern-count-other": "{0} bl",
|
|
5459
5414
|
"perUnitPattern": "{0}/bl"
|
|
5460
5415
|
},
|
|
5416
|
+
"duration-quarter": {
|
|
5417
|
+
"displayName": "chw",
|
|
5418
|
+
"unitPattern-count-zero": "{0} chw",
|
|
5419
|
+
"unitPattern-count-one": "{0} chw",
|
|
5420
|
+
"unitPattern-count-two": "{0} chw",
|
|
5421
|
+
"unitPattern-count-few": "{0} chw",
|
|
5422
|
+
"unitPattern-count-many": "{0} chw",
|
|
5423
|
+
"unitPattern-count-other": "{0} chw",
|
|
5424
|
+
"perUnitPattern": "{0}/chw"
|
|
5425
|
+
},
|
|
5461
5426
|
"duration-month": {
|
|
5462
5427
|
"displayName": "misoedd",
|
|
5463
5428
|
"unitPattern-count-zero": "{0} mis",
|
|
@@ -5583,10 +5548,20 @@
|
|
|
5583
5548
|
},
|
|
5584
5549
|
"energy-kilocalorie": {
|
|
5585
5550
|
"displayName": "kcal",
|
|
5551
|
+
"unitPattern-count-zero": "{0} kcal",
|
|
5552
|
+
"unitPattern-count-one": "{0} kcal",
|
|
5553
|
+
"unitPattern-count-two": "{0} kcal",
|
|
5554
|
+
"unitPattern-count-few": "{0} kcal",
|
|
5555
|
+
"unitPattern-count-many": "{0} kcal",
|
|
5586
5556
|
"unitPattern-count-other": "{0} kcal"
|
|
5587
5557
|
},
|
|
5588
5558
|
"energy-calorie": {
|
|
5589
5559
|
"displayName": "cal",
|
|
5560
|
+
"unitPattern-count-zero": "{0} cal",
|
|
5561
|
+
"unitPattern-count-one": "{0} cal",
|
|
5562
|
+
"unitPattern-count-two": "{0} cal",
|
|
5563
|
+
"unitPattern-count-few": "{0} cal",
|
|
5564
|
+
"unitPattern-count-many": "{0} cal",
|
|
5590
5565
|
"unitPattern-count-other": "{0} cal"
|
|
5591
5566
|
},
|
|
5592
5567
|
"energy-foodcalorie": {
|
|
@@ -5600,6 +5575,11 @@
|
|
|
5600
5575
|
},
|
|
5601
5576
|
"energy-kilojoule": {
|
|
5602
5577
|
"displayName": "cilojouleau",
|
|
5578
|
+
"unitPattern-count-zero": "{0} kJ",
|
|
5579
|
+
"unitPattern-count-one": "{0} kJ",
|
|
5580
|
+
"unitPattern-count-two": "{0} kJ",
|
|
5581
|
+
"unitPattern-count-few": "{0} kJ",
|
|
5582
|
+
"unitPattern-count-many": "{0} kJ",
|
|
5603
5583
|
"unitPattern-count-other": "{0} kJ"
|
|
5604
5584
|
},
|
|
5605
5585
|
"energy-joule": {
|
|
@@ -5622,26 +5602,56 @@
|
|
|
5622
5602
|
},
|
|
5623
5603
|
"energy-electronvolt": {
|
|
5624
5604
|
"displayName": "electronfolt",
|
|
5605
|
+
"unitPattern-count-zero": "{0} eV",
|
|
5606
|
+
"unitPattern-count-one": "{0} eV",
|
|
5607
|
+
"unitPattern-count-two": "{0} eV",
|
|
5608
|
+
"unitPattern-count-few": "{0} eV",
|
|
5609
|
+
"unitPattern-count-many": "{0} eV",
|
|
5625
5610
|
"unitPattern-count-other": "{0} eV"
|
|
5626
5611
|
},
|
|
5627
5612
|
"energy-british-thermal-unit": {
|
|
5628
5613
|
"displayName": "BTU",
|
|
5614
|
+
"unitPattern-count-zero": "{0} Btu",
|
|
5615
|
+
"unitPattern-count-one": "{0} Btu",
|
|
5616
|
+
"unitPattern-count-two": "{0} Btu",
|
|
5617
|
+
"unitPattern-count-few": "{0} Btu",
|
|
5618
|
+
"unitPattern-count-many": "{0} Btu",
|
|
5629
5619
|
"unitPattern-count-other": "{0} Btu"
|
|
5630
5620
|
},
|
|
5631
5621
|
"energy-therm-us": {
|
|
5632
5622
|
"displayName": "US therm",
|
|
5623
|
+
"unitPattern-count-zero": "{0} US therm",
|
|
5624
|
+
"unitPattern-count-one": "{0} US therm",
|
|
5625
|
+
"unitPattern-count-two": "{0} US therm",
|
|
5626
|
+
"unitPattern-count-few": "{0} US therm",
|
|
5627
|
+
"unitPattern-count-many": "{0} US therm",
|
|
5633
5628
|
"unitPattern-count-other": "{0} US therm"
|
|
5634
5629
|
},
|
|
5635
5630
|
"force-pound-force": {
|
|
5636
5631
|
"displayName": "pwys-grym",
|
|
5632
|
+
"unitPattern-count-zero": "{0} lbf",
|
|
5633
|
+
"unitPattern-count-one": "{0} lbf",
|
|
5634
|
+
"unitPattern-count-two": "{0} lbf",
|
|
5635
|
+
"unitPattern-count-few": "{0} lbf",
|
|
5636
|
+
"unitPattern-count-many": "{0} lbf",
|
|
5637
5637
|
"unitPattern-count-other": "{0} lbf"
|
|
5638
5638
|
},
|
|
5639
5639
|
"force-newton": {
|
|
5640
5640
|
"displayName": "newton",
|
|
5641
|
+
"unitPattern-count-zero": "{0} N",
|
|
5642
|
+
"unitPattern-count-one": "{0} N",
|
|
5643
|
+
"unitPattern-count-two": "{0} N",
|
|
5644
|
+
"unitPattern-count-few": "{0} N",
|
|
5645
|
+
"unitPattern-count-many": "{0} N",
|
|
5641
5646
|
"unitPattern-count-other": "{0} N"
|
|
5642
5647
|
},
|
|
5643
5648
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5644
5649
|
"displayName": "kWh/100km",
|
|
5650
|
+
"unitPattern-count-zero": "{0} kWh/100km",
|
|
5651
|
+
"unitPattern-count-one": "{0} kWh/100km",
|
|
5652
|
+
"unitPattern-count-two": "{0} kWh/100km",
|
|
5653
|
+
"unitPattern-count-few": "{0} kWh/100km",
|
|
5654
|
+
"unitPattern-count-many": "{0} kWh/100km",
|
|
5645
5655
|
"unitPattern-count-other": "{0} kWh/100km"
|
|
5646
5656
|
},
|
|
5647
5657
|
"frequency-gigahertz": {
|
|
@@ -5682,25 +5692,69 @@
|
|
|
5682
5692
|
},
|
|
5683
5693
|
"graphics-em": {
|
|
5684
5694
|
"displayName": "em",
|
|
5695
|
+
"unitPattern-count-zero": "{0} em",
|
|
5696
|
+
"unitPattern-count-one": "{0} em",
|
|
5697
|
+
"unitPattern-count-two": "{0} em",
|
|
5698
|
+
"unitPattern-count-few": "{0} em",
|
|
5699
|
+
"unitPattern-count-many": "{0} em",
|
|
5685
5700
|
"unitPattern-count-other": "{0} em"
|
|
5686
5701
|
},
|
|
5687
5702
|
"graphics-pixel": {
|
|
5688
5703
|
"displayName": "picseli",
|
|
5704
|
+
"unitPattern-count-zero": "{0} px",
|
|
5705
|
+
"unitPattern-count-one": "{0} px",
|
|
5706
|
+
"unitPattern-count-two": "{0} px",
|
|
5707
|
+
"unitPattern-count-few": "{0} px",
|
|
5708
|
+
"unitPattern-count-many": "{0} px",
|
|
5689
5709
|
"unitPattern-count-other": "{0} px"
|
|
5690
5710
|
},
|
|
5691
5711
|
"graphics-megapixel": {
|
|
5692
5712
|
"displayName": "megapicseli",
|
|
5713
|
+
"unitPattern-count-zero": "{0} MP",
|
|
5714
|
+
"unitPattern-count-one": "{0} MP",
|
|
5715
|
+
"unitPattern-count-two": "{0} MP",
|
|
5716
|
+
"unitPattern-count-few": "{0} MP",
|
|
5717
|
+
"unitPattern-count-many": "{0} MP",
|
|
5693
5718
|
"unitPattern-count-other": "{0} MP"
|
|
5694
5719
|
},
|
|
5695
5720
|
"graphics-pixel-per-centimeter": {
|
|
5696
5721
|
"displayName": "ppcm",
|
|
5722
|
+
"unitPattern-count-zero": "{0} ppcm",
|
|
5723
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5724
|
+
"unitPattern-count-two": "{0} ppcm",
|
|
5725
|
+
"unitPattern-count-few": "{0} ppcm",
|
|
5726
|
+
"unitPattern-count-many": "{0} ppcm",
|
|
5697
5727
|
"unitPattern-count-other": "{0} ppcm"
|
|
5698
5728
|
},
|
|
5699
5729
|
"graphics-pixel-per-inch": {
|
|
5700
5730
|
"displayName": "ppi",
|
|
5731
|
+
"unitPattern-count-zero": "{0} ppi",
|
|
5732
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5733
|
+
"unitPattern-count-two": "{0} ppi",
|
|
5734
|
+
"unitPattern-count-few": "{0} ppi",
|
|
5735
|
+
"unitPattern-count-many": "{0} ppi",
|
|
5736
|
+
"unitPattern-count-other": "{0} ppi"
|
|
5737
|
+
},
|
|
5738
|
+
"graphics-dot-per-centimeter": {
|
|
5739
|
+
"displayName": "ppcm",
|
|
5740
|
+
"unitPattern-count-zero": "{0} ppcm",
|
|
5741
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5742
|
+
"unitPattern-count-two": "{0} ppcm",
|
|
5743
|
+
"unitPattern-count-few": "{0} ppcm",
|
|
5744
|
+
"unitPattern-count-many": "{0} ppcm",
|
|
5745
|
+
"unitPattern-count-other": "{0} ppcm"
|
|
5746
|
+
},
|
|
5747
|
+
"graphics-dot-per-inch": {
|
|
5748
|
+
"displayName": "ppi",
|
|
5749
|
+
"unitPattern-count-zero": "{0} ppi",
|
|
5750
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5751
|
+
"unitPattern-count-two": "{0} ppi",
|
|
5752
|
+
"unitPattern-count-few": "{0} ppi",
|
|
5753
|
+
"unitPattern-count-many": "{0} ppi",
|
|
5701
5754
|
"unitPattern-count-other": "{0} ppi"
|
|
5702
5755
|
},
|
|
5703
5756
|
"graphics-dot": {
|
|
5757
|
+
"displayName": "picseli",
|
|
5704
5758
|
"unitPattern-count-zero": "{0} px",
|
|
5705
5759
|
"unitPattern-count-one": "{0} px",
|
|
5706
5760
|
"unitPattern-count-two": "{0} ddot",
|
|
@@ -5710,6 +5764,11 @@
|
|
|
5710
5764
|
},
|
|
5711
5765
|
"length-earth-radius": {
|
|
5712
5766
|
"displayName": "R⊕",
|
|
5767
|
+
"unitPattern-count-zero": "{0} R⊕",
|
|
5768
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5769
|
+
"unitPattern-count-two": "{0} R⊕",
|
|
5770
|
+
"unitPattern-count-few": "{0} R⊕",
|
|
5771
|
+
"unitPattern-count-many": "{0} R⊕",
|
|
5713
5772
|
"unitPattern-count-other": "{0} R⊕"
|
|
5714
5773
|
},
|
|
5715
5774
|
"length-kilometer": {
|
|
@@ -5899,6 +5958,11 @@
|
|
|
5899
5958
|
},
|
|
5900
5959
|
"length-solar-radius": {
|
|
5901
5960
|
"displayName": "radiysau solar",
|
|
5961
|
+
"unitPattern-count-zero": "{0} R☉",
|
|
5962
|
+
"unitPattern-count-one": "{0} R☉",
|
|
5963
|
+
"unitPattern-count-two": "{0} R☉",
|
|
5964
|
+
"unitPattern-count-few": "{0} R☉",
|
|
5965
|
+
"unitPattern-count-many": "{0} R☉",
|
|
5902
5966
|
"unitPattern-count-other": "{0} R☉"
|
|
5903
5967
|
},
|
|
5904
5968
|
"light-lux": {
|
|
@@ -5912,17 +5976,32 @@
|
|
|
5912
5976
|
},
|
|
5913
5977
|
"light-candela": {
|
|
5914
5978
|
"displayName": "cd",
|
|
5979
|
+
"unitPattern-count-zero": "{0} cd",
|
|
5980
|
+
"unitPattern-count-one": "{0} cd",
|
|
5981
|
+
"unitPattern-count-two": "{0} cd",
|
|
5982
|
+
"unitPattern-count-few": "{0} cd",
|
|
5983
|
+
"unitPattern-count-many": "{0} cd",
|
|
5915
5984
|
"unitPattern-count-other": "{0} cd"
|
|
5916
5985
|
},
|
|
5917
5986
|
"light-lumen": {
|
|
5918
5987
|
"displayName": "lm",
|
|
5988
|
+
"unitPattern-count-zero": "{0} lm",
|
|
5989
|
+
"unitPattern-count-one": "{0} lm",
|
|
5990
|
+
"unitPattern-count-two": "{0} lm",
|
|
5991
|
+
"unitPattern-count-few": "{0} lm",
|
|
5992
|
+
"unitPattern-count-many": "{0} lm",
|
|
5919
5993
|
"unitPattern-count-other": "{0} lm"
|
|
5920
5994
|
},
|
|
5921
5995
|
"light-solar-luminosity": {
|
|
5922
5996
|
"displayName": "goleueddau solar",
|
|
5997
|
+
"unitPattern-count-zero": "{0} L☉",
|
|
5998
|
+
"unitPattern-count-one": "{0} L☉",
|
|
5999
|
+
"unitPattern-count-two": "{0} L☉",
|
|
6000
|
+
"unitPattern-count-few": "{0} L☉",
|
|
6001
|
+
"unitPattern-count-many": "{0} L☉",
|
|
5923
6002
|
"unitPattern-count-other": "{0} L☉"
|
|
5924
6003
|
},
|
|
5925
|
-
"mass-
|
|
6004
|
+
"mass-tonne": {
|
|
5926
6005
|
"displayName": "t",
|
|
5927
6006
|
"unitPattern-count-zero": "{0} t",
|
|
5928
6007
|
"unitPattern-count-one": "{0} t",
|
|
@@ -6027,14 +6106,29 @@
|
|
|
6027
6106
|
},
|
|
6028
6107
|
"mass-dalton": {
|
|
6029
6108
|
"displayName": "daltonau",
|
|
6109
|
+
"unitPattern-count-zero": "{0} Da",
|
|
6110
|
+
"unitPattern-count-one": "{0} Da",
|
|
6111
|
+
"unitPattern-count-two": "{0} Da",
|
|
6112
|
+
"unitPattern-count-few": "{0} Da",
|
|
6113
|
+
"unitPattern-count-many": "{0} Da",
|
|
6030
6114
|
"unitPattern-count-other": "{0} Da"
|
|
6031
6115
|
},
|
|
6032
6116
|
"mass-earth-mass": {
|
|
6033
6117
|
"displayName": "masau ddaear",
|
|
6118
|
+
"unitPattern-count-zero": "{0} M⊕",
|
|
6119
|
+
"unitPattern-count-one": "{0} M⊕",
|
|
6120
|
+
"unitPattern-count-two": "{0} M⊕",
|
|
6121
|
+
"unitPattern-count-few": "{0} M⊕",
|
|
6122
|
+
"unitPattern-count-many": "{0} M⊕",
|
|
6034
6123
|
"unitPattern-count-other": "{0} M⊕"
|
|
6035
6124
|
},
|
|
6036
6125
|
"mass-solar-mass": {
|
|
6037
6126
|
"displayName": "masau solar",
|
|
6127
|
+
"unitPattern-count-zero": "{0} M☉",
|
|
6128
|
+
"unitPattern-count-one": "{0} M☉",
|
|
6129
|
+
"unitPattern-count-two": "{0} M☉",
|
|
6130
|
+
"unitPattern-count-few": "{0} M☉",
|
|
6131
|
+
"unitPattern-count-many": "{0} M☉",
|
|
6038
6132
|
"unitPattern-count-other": "{0} M☉"
|
|
6039
6133
|
},
|
|
6040
6134
|
"mass-grain": {
|
|
@@ -6093,6 +6187,11 @@
|
|
|
6093
6187
|
},
|
|
6094
6188
|
"power-horsepower": {
|
|
6095
6189
|
"displayName": "hp",
|
|
6190
|
+
"unitPattern-count-zero": "{0} hp",
|
|
6191
|
+
"unitPattern-count-one": "{0} hp",
|
|
6192
|
+
"unitPattern-count-two": "{0} hp",
|
|
6193
|
+
"unitPattern-count-few": "{0} hp",
|
|
6194
|
+
"unitPattern-count-many": "{0} hp",
|
|
6096
6195
|
"unitPattern-count-other": "{0} hp"
|
|
6097
6196
|
},
|
|
6098
6197
|
"pressure-millimeter-ofhg": {
|
|
@@ -6124,6 +6223,11 @@
|
|
|
6124
6223
|
},
|
|
6125
6224
|
"pressure-bar": {
|
|
6126
6225
|
"displayName": "bar",
|
|
6226
|
+
"unitPattern-count-zero": "{0} bar",
|
|
6227
|
+
"unitPattern-count-one": "{0} bar",
|
|
6228
|
+
"unitPattern-count-two": "{0} bar",
|
|
6229
|
+
"unitPattern-count-few": "{0} bar",
|
|
6230
|
+
"unitPattern-count-many": "{0} bar",
|
|
6127
6231
|
"unitPattern-count-other": "{0} bar"
|
|
6128
6232
|
},
|
|
6129
6233
|
"pressure-millibar": {
|
|
@@ -6146,6 +6250,11 @@
|
|
|
6146
6250
|
},
|
|
6147
6251
|
"pressure-pascal": {
|
|
6148
6252
|
"displayName": "Pa",
|
|
6253
|
+
"unitPattern-count-zero": "{0} Pa",
|
|
6254
|
+
"unitPattern-count-one": "{0} Pa",
|
|
6255
|
+
"unitPattern-count-two": "{0} Pa",
|
|
6256
|
+
"unitPattern-count-few": "{0} Pa",
|
|
6257
|
+
"unitPattern-count-many": "{0} Pa",
|
|
6149
6258
|
"unitPattern-count-other": "{0} Pa"
|
|
6150
6259
|
},
|
|
6151
6260
|
"pressure-hectopascal": {
|
|
@@ -6159,10 +6268,20 @@
|
|
|
6159
6268
|
},
|
|
6160
6269
|
"pressure-kilopascal": {
|
|
6161
6270
|
"displayName": "kPa",
|
|
6271
|
+
"unitPattern-count-zero": "{0} kPa",
|
|
6272
|
+
"unitPattern-count-one": "{0} kPa",
|
|
6273
|
+
"unitPattern-count-two": "{0} kPa",
|
|
6274
|
+
"unitPattern-count-few": "{0} kPa",
|
|
6275
|
+
"unitPattern-count-many": "{0} kPa",
|
|
6162
6276
|
"unitPattern-count-other": "{0} kPa"
|
|
6163
6277
|
},
|
|
6164
6278
|
"pressure-megapascal": {
|
|
6165
6279
|
"displayName": "MPa",
|
|
6280
|
+
"unitPattern-count-zero": "{0} MPa",
|
|
6281
|
+
"unitPattern-count-one": "{0} MPa",
|
|
6282
|
+
"unitPattern-count-two": "{0} MPa",
|
|
6283
|
+
"unitPattern-count-few": "{0} MPa",
|
|
6284
|
+
"unitPattern-count-many": "{0} MPa",
|
|
6166
6285
|
"unitPattern-count-other": "{0} MPa"
|
|
6167
6286
|
},
|
|
6168
6287
|
"speed-kilometer-per-hour": {
|
|
@@ -6212,22 +6331,47 @@
|
|
|
6212
6331
|
},
|
|
6213
6332
|
"temperature-celsius": {
|
|
6214
6333
|
"displayName": "gradd C",
|
|
6334
|
+
"unitPattern-count-zero": "{0}°C",
|
|
6335
|
+
"unitPattern-count-one": "{0}°C",
|
|
6336
|
+
"unitPattern-count-two": "{0}°C",
|
|
6337
|
+
"unitPattern-count-few": "{0}°C",
|
|
6338
|
+
"unitPattern-count-many": "{0}°C",
|
|
6215
6339
|
"unitPattern-count-other": "{0}°C"
|
|
6216
6340
|
},
|
|
6217
6341
|
"temperature-fahrenheit": {
|
|
6218
6342
|
"displayName": "gradd F",
|
|
6343
|
+
"unitPattern-count-zero": "{0}°F",
|
|
6344
|
+
"unitPattern-count-one": "{0}°F",
|
|
6345
|
+
"unitPattern-count-two": "{0}°F",
|
|
6346
|
+
"unitPattern-count-few": "{0}°F",
|
|
6347
|
+
"unitPattern-count-many": "{0}°F",
|
|
6219
6348
|
"unitPattern-count-other": "{0}°F"
|
|
6220
6349
|
},
|
|
6221
6350
|
"temperature-kelvin": {
|
|
6222
6351
|
"displayName": "K",
|
|
6352
|
+
"unitPattern-count-zero": "{0} K",
|
|
6353
|
+
"unitPattern-count-one": "{0} K",
|
|
6354
|
+
"unitPattern-count-two": "{0} K",
|
|
6355
|
+
"unitPattern-count-few": "{0} K",
|
|
6356
|
+
"unitPattern-count-many": "{0} K",
|
|
6223
6357
|
"unitPattern-count-other": "{0} K"
|
|
6224
6358
|
},
|
|
6225
6359
|
"torque-pound-force-foot": {
|
|
6226
6360
|
"displayName": "lbf⋅ft",
|
|
6361
|
+
"unitPattern-count-zero": "{0} lbf⋅ft",
|
|
6362
|
+
"unitPattern-count-one": "{0} lbf⋅ft",
|
|
6363
|
+
"unitPattern-count-two": "{0} lbf⋅ft",
|
|
6364
|
+
"unitPattern-count-few": "{0} lbf⋅ft",
|
|
6365
|
+
"unitPattern-count-many": "{0} lbf⋅ft",
|
|
6227
6366
|
"unitPattern-count-other": "{0} lbf⋅ft"
|
|
6228
6367
|
},
|
|
6229
6368
|
"torque-newton-meter": {
|
|
6230
6369
|
"displayName": "N⋅m",
|
|
6370
|
+
"unitPattern-count-zero": "{0} N⋅m",
|
|
6371
|
+
"unitPattern-count-one": "{0} N⋅m",
|
|
6372
|
+
"unitPattern-count-two": "{0} N⋅m",
|
|
6373
|
+
"unitPattern-count-few": "{0} N⋅m",
|
|
6374
|
+
"unitPattern-count-many": "{0} N⋅m",
|
|
6231
6375
|
"unitPattern-count-other": "{0} N⋅m"
|
|
6232
6376
|
},
|
|
6233
6377
|
"volume-cubic-kilometer": {
|
|
@@ -6444,6 +6588,11 @@
|
|
|
6444
6588
|
},
|
|
6445
6589
|
"volume-fluid-ounce-imperial": {
|
|
6446
6590
|
"displayName": "Imp. fl oz",
|
|
6591
|
+
"unitPattern-count-zero": "{0} fl oz Imp.",
|
|
6592
|
+
"unitPattern-count-one": "{0} fl oz Imp.",
|
|
6593
|
+
"unitPattern-count-two": "{0} fl oz Imp.",
|
|
6594
|
+
"unitPattern-count-few": "{0} fl oz Imp.",
|
|
6595
|
+
"unitPattern-count-many": "{0} fl oz Imp.",
|
|
6447
6596
|
"unitPattern-count-other": "{0} fl oz Imp."
|
|
6448
6597
|
},
|
|
6449
6598
|
"volume-tablespoon": {
|
|
@@ -6466,14 +6615,29 @@
|
|
|
6466
6615
|
},
|
|
6467
6616
|
"volume-barrel": {
|
|
6468
6617
|
"displayName": "barel",
|
|
6618
|
+
"unitPattern-count-zero": "{0} bbl",
|
|
6619
|
+
"unitPattern-count-one": "{0} bbl",
|
|
6620
|
+
"unitPattern-count-two": "{0} bbl",
|
|
6621
|
+
"unitPattern-count-few": "{0} bbl",
|
|
6622
|
+
"unitPattern-count-many": "{0} bbl",
|
|
6469
6623
|
"unitPattern-count-other": "{0} bbl"
|
|
6470
6624
|
},
|
|
6471
6625
|
"volume-dessert-spoon": {
|
|
6472
6626
|
"displayName": "dstspn",
|
|
6627
|
+
"unitPattern-count-zero": "{0} dstspn",
|
|
6628
|
+
"unitPattern-count-one": "{0} dstspn",
|
|
6629
|
+
"unitPattern-count-two": "{0} dstspn",
|
|
6630
|
+
"unitPattern-count-few": "{0} dstspn",
|
|
6631
|
+
"unitPattern-count-many": "{0} dstspn",
|
|
6473
6632
|
"unitPattern-count-other": "{0} dstspn"
|
|
6474
6633
|
},
|
|
6475
6634
|
"volume-dessert-spoon-imperial": {
|
|
6476
6635
|
"displayName": "dstspn Imp",
|
|
6636
|
+
"unitPattern-count-zero": "{0} dstspn Imp",
|
|
6637
|
+
"unitPattern-count-one": "{0} dstspn Imp",
|
|
6638
|
+
"unitPattern-count-two": "{0} dstspn Imp",
|
|
6639
|
+
"unitPattern-count-few": "{0} dstspn Imp",
|
|
6640
|
+
"unitPattern-count-many": "{0} dstspn Imp",
|
|
6477
6641
|
"unitPattern-count-other": "{0} dstspn Imp"
|
|
6478
6642
|
},
|
|
6479
6643
|
"volume-drop": {
|
|
@@ -6682,41 +6846,56 @@
|
|
|
6682
6846
|
},
|
|
6683
6847
|
"eras-gregorian": {
|
|
6684
6848
|
"0": {
|
|
6849
|
+
"_code": "gregory-inverse",
|
|
6850
|
+
"_aliases": "bc bce",
|
|
6685
6851
|
"_end": "0-12-31"
|
|
6686
6852
|
},
|
|
6687
6853
|
"1": {
|
|
6854
|
+
"_code": "gregory",
|
|
6855
|
+
"_aliases": "ad ce",
|
|
6688
6856
|
"_start": "1-01-01"
|
|
6689
6857
|
}
|
|
6690
6858
|
},
|
|
6691
6859
|
"eras-islamic": {
|
|
6692
6860
|
"0": {
|
|
6861
|
+
"_code": "islamic",
|
|
6862
|
+
"_aliases": "ah",
|
|
6693
6863
|
"_start": "622-7-15"
|
|
6694
6864
|
}
|
|
6695
6865
|
},
|
|
6696
6866
|
"eras-persian": {
|
|
6697
6867
|
"0": {
|
|
6868
|
+
"_code": "persian",
|
|
6869
|
+
"_aliases": "ap",
|
|
6698
6870
|
"_start": "622-01-01"
|
|
6699
6871
|
}
|
|
6700
6872
|
},
|
|
6701
6873
|
"eras-buddhist": {
|
|
6702
6874
|
"0": {
|
|
6875
|
+
"_code": "buddhist",
|
|
6876
|
+
"_aliases": "be",
|
|
6703
6877
|
"_start": "-542-01-01"
|
|
6704
6878
|
}
|
|
6705
6879
|
},
|
|
6706
6880
|
"eras-japanese": {
|
|
6707
6881
|
"232": {
|
|
6882
|
+
"_code": "meiji",
|
|
6708
6883
|
"_start": "1868-9-8"
|
|
6709
6884
|
},
|
|
6710
6885
|
"233": {
|
|
6886
|
+
"_code": "taisho",
|
|
6711
6887
|
"_start": "1912-7-30"
|
|
6712
6888
|
},
|
|
6713
6889
|
"234": {
|
|
6890
|
+
"_code": "showa",
|
|
6714
6891
|
"_start": "1926-12-25"
|
|
6715
6892
|
},
|
|
6716
6893
|
"235": {
|
|
6894
|
+
"_code": "heisei",
|
|
6717
6895
|
"_start": "1989-1-8"
|
|
6718
6896
|
},
|
|
6719
6897
|
"236": {
|
|
6898
|
+
"_code": "reiwa",
|
|
6720
6899
|
"_start": "2019-5-1"
|
|
6721
6900
|
}
|
|
6722
6901
|
},
|