@openui5/sap.ui.core 1.119.1 → 1.120.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +6 -6
- package/package.json +1 -1
- package/src/jquery.sap.global.js +40 -111
- package/src/jquery.sap.properties.js +7 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +5 -3
- package/src/jquery.sap.storage.js +6 -3
- package/src/sap/base/Event.js +32 -78
- package/src/sap/base/Eventing.js +114 -271
- package/src/sap/base/Log.js +21 -1
- package/src/sap/base/config.js +14 -9
- package/src/sap/base/i18n/Formatting.js +400 -256
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +125 -87
- package/src/sap/base/i18n/ResourceBundle.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +2 -2
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
- package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
- package/src/sap/base/util/LoaderExtensions.js +8 -2
- package/src/sap/base/util/mixedFetch.js +1 -0
- package/src/sap/base/util/resolveReference.js +31 -13
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/base/util/syncFetch.js +1 -0
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +6 -7
- package/src/sap/ui/base/BindingInfo.js +3 -3
- package/src/sap/ui/base/BindingParser.js +5 -2
- package/src/sap/ui/base/DataType.js +57 -1
- package/src/sap/ui/base/DesignTime.js +69 -0
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +25 -4
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +102 -85
- package/src/sap/ui/base/ManagedObjectMetadata.js +53 -31
- package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
- package/src/sap/ui/base/Metadata.js +3 -3
- package/src/sap/ui/base/Object.js +19 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/AnimationMode.js +2 -2
- package/src/sap/ui/core/AppCacheBuster.js +30 -18
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/CalendarType.js +6 -0
- package/src/sap/ui/core/Component.js +175 -86
- package/src/sap/ui/core/ComponentContainer.js +6 -5
- package/src/sap/ui/core/ComponentMetadata.js +3 -4
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +395 -709
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/ControlBehavior.js +37 -28
- package/src/sap/ui/core/Core.js +338 -216
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +3 -1
- package/src/sap/ui/core/Element.js +24 -10
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +3 -2
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +3 -3
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +13 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +2 -3
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +17 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +8 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +253 -57
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -32
- package/src/sap/ui/core/Manifest.js +4 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Placeholder.js +18 -0
- package/src/sap/ui/core/Popup.js +5 -0
- package/src/sap/ui/core/RenderManager.js +21 -17
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/Rendering.js +51 -47
- package/src/sap/ui/core/ResizeHandler.js +2 -2
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +5 -3
- package/src/sap/ui/core/Supportability.js +146 -0
- package/src/sap/ui/core/Theming.js +130 -88
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +4 -3
- package/src/sap/ui/core/UIArea.js +5 -4
- package/src/sap/ui/core/UIComponent.js +38 -12
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
- package/src/sap/ui/core/_IconRegistry.js +13 -6
- package/src/sap/ui/core/cldr/ar.json +143 -137
- package/src/sap/ui/core/cldr/ar_EG.json +143 -137
- package/src/sap/ui/core/cldr/ar_SA.json +143 -137
- package/src/sap/ui/core/cldr/bg.json +423 -423
- package/src/sap/ui/core/cldr/ca.json +541 -494
- package/src/sap/ui/core/cldr/cs.json +475 -364
- package/src/sap/ui/core/cldr/cy.json +656 -477
- package/src/sap/ui/core/cldr/da.json +334 -275
- package/src/sap/ui/core/cldr/de.json +388 -291
- package/src/sap/ui/core/cldr/de_AT.json +388 -291
- package/src/sap/ui/core/cldr/de_CH.json +394 -297
- package/src/sap/ui/core/cldr/el.json +169 -166
- package/src/sap/ui/core/cldr/el_CY.json +169 -166
- package/src/sap/ui/core/cldr/en.json +558 -521
- package/src/sap/ui/core/cldr/en_AU.json +558 -520
- package/src/sap/ui/core/cldr/en_GB.json +476 -439
- package/src/sap/ui/core/cldr/en_HK.json +520 -482
- package/src/sap/ui/core/cldr/en_IE.json +486 -448
- package/src/sap/ui/core/cldr/en_IN.json +466 -428
- package/src/sap/ui/core/cldr/en_NZ.json +506 -468
- package/src/sap/ui/core/cldr/en_PG.json +506 -468
- package/src/sap/ui/core/cldr/en_SG.json +506 -468
- package/src/sap/ui/core/cldr/en_ZA.json +486 -448
- package/src/sap/ui/core/cldr/es.json +473 -468
- package/src/sap/ui/core/cldr/es_AR.json +445 -440
- package/src/sap/ui/core/cldr/es_BO.json +479 -474
- package/src/sap/ui/core/cldr/es_CL.json +469 -464
- package/src/sap/ui/core/cldr/es_CO.json +387 -381
- package/src/sap/ui/core/cldr/es_MX.json +502 -497
- package/src/sap/ui/core/cldr/es_PE.json +455 -450
- package/src/sap/ui/core/cldr/es_UY.json +479 -474
- package/src/sap/ui/core/cldr/es_VE.json +499 -494
- package/src/sap/ui/core/cldr/et.json +378 -320
- package/src/sap/ui/core/cldr/fa.json +104 -104
- package/src/sap/ui/core/cldr/fi.json +401 -315
- package/src/sap/ui/core/cldr/fr.json +391 -385
- package/src/sap/ui/core/cldr/fr_BE.json +391 -385
- package/src/sap/ui/core/cldr/fr_CA.json +499 -493
- package/src/sap/ui/core/cldr/fr_CH.json +334 -328
- package/src/sap/ui/core/cldr/fr_LU.json +391 -385
- package/src/sap/ui/core/cldr/he.json +291 -159
- package/src/sap/ui/core/cldr/hi.json +157 -128
- package/src/sap/ui/core/cldr/hr.json +514 -461
- package/src/sap/ui/core/cldr/hu.json +287 -257
- package/src/sap/ui/core/cldr/id.json +463 -416
- package/src/sap/ui/core/cldr/it.json +468 -413
- package/src/sap/ui/core/cldr/it_CH.json +468 -413
- package/src/sap/ui/core/cldr/ja.json +98 -61
- package/src/sap/ui/core/cldr/kk.json +631 -571
- package/src/sap/ui/core/cldr/ko.json +79 -71
- package/src/sap/ui/core/cldr/lt.json +361 -270
- package/src/sap/ui/core/cldr/lv.json +234 -242
- package/src/sap/ui/core/cldr/ms.json +463 -408
- package/src/sap/ui/core/cldr/nb.json +176 -143
- package/src/sap/ui/core/cldr/nl.json +463 -393
- package/src/sap/ui/core/cldr/nl_BE.json +463 -393
- package/src/sap/ui/core/cldr/pl.json +633 -344
- package/src/sap/ui/core/cldr/pt.json +447 -336
- package/src/sap/ui/core/cldr/pt_PT.json +488 -449
- package/src/sap/ui/core/cldr/ro.json +477 -383
- package/src/sap/ui/core/cldr/ru.json +367 -332
- package/src/sap/ui/core/cldr/ru_UA.json +361 -326
- package/src/sap/ui/core/cldr/sk.json +502 -537
- package/src/sap/ui/core/cldr/sl.json +168 -161
- package/src/sap/ui/core/cldr/sr.json +276 -225
- package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
- package/src/sap/ui/core/cldr/sv.json +420 -346
- package/src/sap/ui/core/cldr/th.json +117 -94
- package/src/sap/ui/core/cldr/tr.json +413 -359
- package/src/sap/ui/core/cldr/uk.json +395 -368
- package/src/sap/ui/core/cldr/vi.json +392 -379
- package/src/sap/ui/core/cldr/zh_CN.json +91 -33
- package/src/sap/ui/core/cldr/zh_HK.json +90 -32
- package/src/sap/ui/core/cldr/zh_SG.json +90 -32
- package/src/sap/ui/core/cldr/zh_TW.json +75 -51
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
- package/src/sap/ui/core/date/Islamic.js +4 -4
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/_Calendars.js +5 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/format/DateFormat.js +33 -21
- package/src/sap/ui/core/format/NumberFormat.js +3 -2
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +128 -8
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +2 -2
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/message/MessageType.js +2 -1
- package/src/sap/ui/core/messagebundle.properties +24 -0
- package/src/sap/ui/core/messagebundle_ar.properties +15 -3
- package/src/sap/ui/core/messagebundle_bg.properties +14 -2
- package/src/sap/ui/core/messagebundle_ca.properties +13 -1
- package/src/sap/ui/core/messagebundle_cs.properties +15 -3
- package/src/sap/ui/core/messagebundle_cy.properties +16 -4
- package/src/sap/ui/core/messagebundle_da.properties +15 -3
- package/src/sap/ui/core/messagebundle_de.properties +15 -3
- package/src/sap/ui/core/messagebundle_el.properties +16 -4
- package/src/sap/ui/core/messagebundle_en.properties +12 -0
- package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
- package/src/sap/ui/core/messagebundle_es.properties +15 -3
- package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
- package/src/sap/ui/core/messagebundle_et.properties +15 -3
- package/src/sap/ui/core/messagebundle_fi.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
- package/src/sap/ui/core/messagebundle_hi.properties +16 -4
- package/src/sap/ui/core/messagebundle_hr.properties +14 -2
- package/src/sap/ui/core/messagebundle_hu.properties +16 -4
- package/src/sap/ui/core/messagebundle_id.properties +15 -3
- package/src/sap/ui/core/messagebundle_it.properties +17 -5
- package/src/sap/ui/core/messagebundle_iw.properties +15 -3
- package/src/sap/ui/core/messagebundle_ja.properties +25 -13
- package/src/sap/ui/core/messagebundle_kk.properties +15 -3
- package/src/sap/ui/core/messagebundle_ko.properties +14 -2
- package/src/sap/ui/core/messagebundle_lt.properties +15 -3
- package/src/sap/ui/core/messagebundle_lv.properties +15 -3
- package/src/sap/ui/core/messagebundle_mk.properties +352 -0
- package/src/sap/ui/core/messagebundle_ms.properties +15 -3
- package/src/sap/ui/core/messagebundle_nl.properties +15 -3
- package/src/sap/ui/core/messagebundle_no.properties +14 -2
- package/src/sap/ui/core/messagebundle_pl.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
- package/src/sap/ui/core/messagebundle_ro.properties +15 -3
- package/src/sap/ui/core/messagebundle_ru.properties +15 -3
- package/src/sap/ui/core/messagebundle_sh.properties +43 -31
- package/src/sap/ui/core/messagebundle_sk.properties +16 -4
- package/src/sap/ui/core/messagebundle_sl.properties +15 -3
- package/src/sap/ui/core/messagebundle_sv.properties +22 -10
- package/src/sap/ui/core/messagebundle_th.properties +15 -3
- package/src/sap/ui/core/messagebundle_tr.properties +15 -3
- package/src/sap/ui/core/messagebundle_uk.properties +18 -6
- package/src/sap/ui/core/messagebundle_vi.properties +18 -6
- package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
- package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
- package/src/sap/ui/core/mvc/Controller.js +22 -16
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +1 -1
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +4 -1
- package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +25 -15
- package/src/sap/ui/core/mvc/ViewType.js +2 -0
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
- package/src/sap/ui/core/plugin/LessSupport.js +3 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Router.js +2 -4
- package/src/sap/ui/core/routing/Target.js +1 -3
- package/src/sap/ui/core/routing/Targets.js +2 -3
- package/src/sap/ui/core/routing/Views.js +2 -3
- package/src/sap/ui/core/routing/async/Target.js +1 -1
- package/src/sap/ui/core/rules/Config.support.js +11 -17
- package/src/sap/ui/core/search/OpenSearchProvider.js +2 -1
- package/src/sap/ui/core/search/SearchProvider.js +2 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Hotkeys.js +5 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
- package/src/sap/ui/core/support/Support.js +3 -5
- package/src/sap/ui/core/support/ToolsAPI.js +15 -11
- package/src/sap/ui/core/support/plugins/ControlTree.js +2 -2
- package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +7 -5
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
- package/src/sap/ui/core/syncStyleClass.js +2 -2
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +9 -9
- package/src/sap/ui/core/theming/Parameters.js +18 -19
- package/src/sap/ui/core/theming/ThemeManager.js +23 -4
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
- package/src/sap/ui/core/util/_LocalizationHelper.js +122 -0
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +29 -7
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +9 -4
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +9 -4
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +15 -5
- package/src/sap/ui/model/ListBinding.js +5 -0
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +14 -8
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/TreeBinding.js +3 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
- package/src/sap/ui/model/json/JSONListBinding.js +3 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
- package/src/sap/ui/model/message/MessageListBinding.js +3 -0
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +8 -2
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +9 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +40 -15
- package/src/sap/ui/model/odata/v2/ODataModel.js +26 -62
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +38 -4
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +3 -0
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +2 -2
- package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
- package/src/sap/ui/model/resource/ResourceModel.js +5 -6
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
- package/src/sap/ui/performance/BeaconRequest.js +2 -2
- package/src/sap/ui/performance/trace/Interaction.js +20 -16
- package/src/sap/ui/qunit/QUnitUtils.js +64 -45
- package/src/sap/ui/qunit/qunit-coverage.js +6 -0
- package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/security/Security.js +128 -0
- package/src/sap/ui/test/BlanketReporter.js +2 -3
- package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
- package/src/sap/ui/test/BranchTracking.js +2 -3
- package/src/sap/ui/test/ModuleTracking.js +48 -20
- package/src/sap/ui/test/OpaExtension.js +3 -3
- package/src/sap/ui/test/OpaPlugin.js +16 -6
- package/src/sap/ui/test/TestUtils.js +7 -4
- package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
- package/src/sap/ui/test/_ControlFinder.js +3 -2
- package/src/sap/ui/test/_LogCollector.js +1 -0
- package/src/sap/ui/test/_UsageReport.js +115 -114
- package/src/sap/ui/test/actions/EnterText.js +24 -2
- package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
- package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
- package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
- package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +1 -1
- package/src/sap/ui/test/matchers/LabelFor.js +2 -12
- package/src/sap/ui/test/matchers/Matcher.js +1 -1
- package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
- package/src/sap/ui/test/selectors/_Selector.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +84 -11
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/manifest.json +3 -10
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/Component.js +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/manifest.json +3 -11
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/package.json +13 -0
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +11 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/tutorial/databinding/01/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/01/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/01/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/02/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/Component.js +9 -25
- package/test/sap/ui/core/demokit/tutorial/databinding/03/manifest.json +20 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/04/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/Component.js +9 -26
- package/test/sap/ui/core/demokit/tutorial/databinding/05/manifest.json +21 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/Component.js +9 -27
- package/test/sap/ui/core/demokit/tutorial/databinding/06/manifest.json +22 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/07/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/Component.js +9 -28
- package/test/sap/ui/core/demokit/tutorial/databinding/08/manifest.json +23 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/09/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/10/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/databinding/11/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/12/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/13/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/databinding/14/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/Component.js +9 -32
- package/test/sap/ui/core/demokit/tutorial/databinding/15/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/webapp/manifest.json +5 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/Component.js +9 -30
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/manifest.json +24 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/manifest.json +27 -0
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/Component.js +9 -33
- package/test/sap/ui/core/demokit/tutorial/navigation/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/Component.js +9 -35
- package/test/sap/ui/core/demokit/tutorial/navigation/02/manifest.json +30 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/Component.js +9 -37
- package/test/sap/ui/core/demokit/tutorial/navigation/03/manifest.json +32 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/04/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/Component.js +9 -38
- package/test/sap/ui/core/demokit/tutorial/navigation/05/manifest.json +33 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/Component.js +9 -40
- package/test/sap/ui/core/demokit/tutorial/navigation/06/manifest.json +35 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/Component.js +9 -42
- package/test/sap/ui/core/demokit/tutorial/navigation/07/manifest.json +37 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/08/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/Component.js +9 -45
- package/test/sap/ui/core/demokit/tutorial/navigation/09/manifest.json +40 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/Component.js +9 -47
- package/test/sap/ui/core/demokit/tutorial/navigation/10/manifest.json +42 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/11/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/12/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/13/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/14/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/15/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/16/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/Component.js +9 -52
- package/test/sap/ui/core/demokit/tutorial/navigation/17/manifest.json +47 -0
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/Component.js +3 -27
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/manifest.json +28 -0
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/Component.js +9 -29
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/manifest.json +25 -0
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
- package/test/sap/ui/core/qunit/ClientModel.qunit.js +28 -28
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
- package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
- package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
- package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
- package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
- package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
- package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Lib.qunit.js +64 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +90 -4
- package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
- package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
- package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
- package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +49 -30
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
- package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
- package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
- package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
- package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
- package/test/sap/ui/core/qunit/component/Component.qunit.js +100 -7
- package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
- package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
- package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
- package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
- package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +7 -4
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
- package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
- package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
- package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
- package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
- package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +5 -2
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +5 -2
- package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
- package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +68 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +46 -2
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
- package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
- package/test/sap/ui/core/qunit/odata/ODataModel_legacyAPIs.qunit.js +22 -22
- package/test/sap/ui/core/qunit/odata/ODataTreeBindingAdapter.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +52 -29
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +8 -15
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +211 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +32 -36
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +19 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1896 -407
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +66 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
- package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +11 -2
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +4 -7
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
- package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
- package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
- package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
- package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
- package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
- package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
- package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
- package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
- package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
- package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
- package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
- package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
- package/test/sap/ui/core/relnotes/changes-1.120.json +442 -0
- package/test/sap/ui/core/terminologies/App.controller.js +2 -3
- package/test/sap/ui/core/terminologies/main.js +2 -3
- package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
- package/src/sap/ui/core/ConfigTest.js +0 -17
- package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
- package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
- package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
- package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
- package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
|
|
3
|
-
"__version": "
|
|
4
|
-
"__buildtime": "
|
|
3
|
+
"__version": "43.0.0",
|
|
4
|
+
"__buildtime": "2023-09-28T11:39:07.908Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "afar",
|
|
7
7
|
"ab": "abjasio",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"am": "amárico",
|
|
22
22
|
"an": "aragonés",
|
|
23
23
|
"ang": "inglés antiguo",
|
|
24
|
+
"ann": "obolo",
|
|
24
25
|
"anp": "angika",
|
|
25
26
|
"ar": "árabe",
|
|
26
27
|
"ar_001": "árabe estándar moderno",
|
|
@@ -32,6 +33,7 @@
|
|
|
32
33
|
"as": "asamés",
|
|
33
34
|
"asa": "asu",
|
|
34
35
|
"ast": "asturiano",
|
|
36
|
+
"atj": "atikamekw",
|
|
35
37
|
"av": "avar",
|
|
36
38
|
"awa": "avadhi",
|
|
37
39
|
"ay": "aimara",
|
|
@@ -91,13 +93,21 @@
|
|
|
91
93
|
"ckb": "kurdo sorani",
|
|
92
94
|
"ckb_alt-menu": "kurdo sorani",
|
|
93
95
|
"ckb_alt-variant": "kurdo central",
|
|
96
|
+
"clc": "chilcotin",
|
|
94
97
|
"co": "corso",
|
|
95
98
|
"cop": "copto",
|
|
96
99
|
"cr": "cree",
|
|
100
|
+
"crg": "michif",
|
|
97
101
|
"crh": "tártaro de Crimea",
|
|
102
|
+
"crj": "cree suroriental",
|
|
103
|
+
"crk": "cree de las llanuras",
|
|
104
|
+
"crl": "cree nororiental",
|
|
105
|
+
"crm": "cree moose",
|
|
106
|
+
"crr": "algonquino de Carolina",
|
|
98
107
|
"crs": "criollo seychelense",
|
|
99
108
|
"cs": "checo",
|
|
100
109
|
"csb": "casubio",
|
|
110
|
+
"csw": "cree de los pantanos",
|
|
101
111
|
"cu": "eslavo eclesiástico",
|
|
102
112
|
"cv": "chuvasio",
|
|
103
113
|
"cy": "galés",
|
|
@@ -133,9 +143,9 @@
|
|
|
133
143
|
"en_AU": "inglés australiano",
|
|
134
144
|
"en_CA": "inglés canadiense",
|
|
135
145
|
"en_GB": "inglés británico",
|
|
136
|
-
"en_GB-alt-short": "inglés
|
|
146
|
+
"en_GB-alt-short": "inglés (RU)",
|
|
137
147
|
"en_US": "inglés estadounidense",
|
|
138
|
-
"en_US-alt-short": "inglés
|
|
148
|
+
"en_US-alt-short": "inglés (EE. UU.)",
|
|
139
149
|
"enm": "inglés medio",
|
|
140
150
|
"eo": "esperanto",
|
|
141
151
|
"es": "español",
|
|
@@ -192,8 +202,10 @@
|
|
|
192
202
|
"hai": "haida",
|
|
193
203
|
"hak": "chino hakka",
|
|
194
204
|
"haw": "hawaiano",
|
|
205
|
+
"hax": "haida meridional",
|
|
195
206
|
"he": "hebreo",
|
|
196
207
|
"hi": "hindi",
|
|
208
|
+
"hi_Latn-alt-variant": "hinglish",
|
|
197
209
|
"hil": "hiligaynon",
|
|
198
210
|
"hit": "hitita",
|
|
199
211
|
"hmn": "hmong",
|
|
@@ -204,6 +216,7 @@
|
|
|
204
216
|
"ht": "haitiano",
|
|
205
217
|
"hu": "húngaro",
|
|
206
218
|
"hup": "hupa",
|
|
219
|
+
"hur": "halkomelem",
|
|
207
220
|
"hy": "armenio",
|
|
208
221
|
"hz": "herero",
|
|
209
222
|
"ia": "interlingua",
|
|
@@ -214,6 +227,7 @@
|
|
|
214
227
|
"ig": "igbo",
|
|
215
228
|
"ii": "yi de Sichuán",
|
|
216
229
|
"ik": "inupiaq",
|
|
230
|
+
"ikt": "inuit del oeste de Canadá",
|
|
217
231
|
"ilo": "ilocano",
|
|
218
232
|
"inh": "ingush",
|
|
219
233
|
"io": "ido",
|
|
@@ -241,7 +255,7 @@
|
|
|
241
255
|
"kea": "criollo caboverdiano",
|
|
242
256
|
"kfo": "koro",
|
|
243
257
|
"kg": "kongo",
|
|
244
|
-
"kgp": "
|
|
258
|
+
"kgp": "káingang",
|
|
245
259
|
"kha": "khasi",
|
|
246
260
|
"kho": "kotanés",
|
|
247
261
|
"khq": "koyra chiini",
|
|
@@ -272,6 +286,7 @@
|
|
|
272
286
|
"kut": "kutenai",
|
|
273
287
|
"kv": "komi",
|
|
274
288
|
"kw": "córnico",
|
|
289
|
+
"kwk": "kwakʼwala",
|
|
275
290
|
"ky": "kirguís",
|
|
276
291
|
"la": "latín",
|
|
277
292
|
"lad": "ladino",
|
|
@@ -282,14 +297,16 @@
|
|
|
282
297
|
"lez": "lezgiano",
|
|
283
298
|
"lg": "ganda",
|
|
284
299
|
"li": "limburgués",
|
|
285
|
-
"
|
|
300
|
+
"lil": "lillooet",
|
|
286
301
|
"lkt": "lakota",
|
|
302
|
+
"lmo": "lombardo",
|
|
287
303
|
"ln": "lingala",
|
|
288
304
|
"lo": "lao",
|
|
289
305
|
"lol": "mongo",
|
|
290
306
|
"lou": "criollo de Luisiana",
|
|
291
307
|
"loz": "lozi",
|
|
292
308
|
"lrc": "lorí septentrional",
|
|
309
|
+
"lsm": "samia",
|
|
293
310
|
"lt": "lituano",
|
|
294
311
|
"lu": "luba-katanga",
|
|
295
312
|
"lua": "luba-lulua",
|
|
@@ -325,6 +342,7 @@
|
|
|
325
342
|
"mn": "mongol",
|
|
326
343
|
"mnc": "manchú",
|
|
327
344
|
"mni": "manipuri",
|
|
345
|
+
"moe": "innu-aimun",
|
|
328
346
|
"moh": "mohawk",
|
|
329
347
|
"mos": "mossi",
|
|
330
348
|
"mr": "maratí",
|
|
@@ -348,7 +366,7 @@
|
|
|
348
366
|
"nds": "bajo alemán",
|
|
349
367
|
"nds_NL": "bajo sajón",
|
|
350
368
|
"ne": "nepalí",
|
|
351
|
-
"new": "
|
|
369
|
+
"new": "nevarí",
|
|
352
370
|
"ng": "ndonga",
|
|
353
371
|
"nia": "nias",
|
|
354
372
|
"niu": "niueano",
|
|
@@ -373,6 +391,11 @@
|
|
|
373
391
|
"nzi": "nzima",
|
|
374
392
|
"oc": "occitano",
|
|
375
393
|
"oj": "ojibwa",
|
|
394
|
+
"ojb": "ojibwa noroccidental",
|
|
395
|
+
"ojc": "ojibwa central",
|
|
396
|
+
"ojs": "oji-cree",
|
|
397
|
+
"ojw": "ojibwa occidental",
|
|
398
|
+
"oka": "okanagan",
|
|
376
399
|
"om": "oromo",
|
|
377
400
|
"or": "oriya",
|
|
378
401
|
"os": "osético",
|
|
@@ -388,8 +411,10 @@
|
|
|
388
411
|
"peo": "persa antiguo",
|
|
389
412
|
"phn": "fenicio",
|
|
390
413
|
"pi": "pali",
|
|
414
|
+
"pis": "pidgin salomonense",
|
|
391
415
|
"pl": "polaco",
|
|
392
416
|
"pon": "pohnpeiano",
|
|
417
|
+
"pqm": "maliseet-passamaquoddy",
|
|
393
418
|
"prg": "prusiano antiguo",
|
|
394
419
|
"pro": "provenzal antiguo",
|
|
395
420
|
"ps": "pastún",
|
|
@@ -442,6 +467,7 @@
|
|
|
442
467
|
"sid": "sidamo",
|
|
443
468
|
"sk": "eslovaco",
|
|
444
469
|
"sl": "esloveno",
|
|
470
|
+
"slh": "lushootseed meridional",
|
|
445
471
|
"sm": "samoano",
|
|
446
472
|
"sma": "sami del sur",
|
|
447
473
|
"smj": "sami lule",
|
|
@@ -458,6 +484,7 @@
|
|
|
458
484
|
"ss": "siswati",
|
|
459
485
|
"ssy": "saho",
|
|
460
486
|
"st": "sesotho del sur",
|
|
487
|
+
"str": "salish de los estrechos",
|
|
461
488
|
"su": "sundanés",
|
|
462
489
|
"suk": "sukuma",
|
|
463
490
|
"sus": "susu",
|
|
@@ -469,13 +496,16 @@
|
|
|
469
496
|
"syc": "siríaco clásico",
|
|
470
497
|
"syr": "siríaco",
|
|
471
498
|
"ta": "tamil",
|
|
499
|
+
"tce": "tutchone meridional",
|
|
472
500
|
"te": "telugu",
|
|
473
501
|
"tem": "temne",
|
|
474
502
|
"teo": "teso",
|
|
475
503
|
"ter": "tereno",
|
|
476
504
|
"tet": "tetun",
|
|
477
505
|
"tg": "tayiko",
|
|
506
|
+
"tgx": "tagish",
|
|
478
507
|
"th": "tailandés",
|
|
508
|
+
"tht": "tahltan",
|
|
479
509
|
"ti": "tigriña",
|
|
480
510
|
"tig": "tigré",
|
|
481
511
|
"tiv": "tiv",
|
|
@@ -488,12 +518,14 @@
|
|
|
488
518
|
"tn": "setswana",
|
|
489
519
|
"to": "tongano",
|
|
490
520
|
"tog": "tonga del Nyasa",
|
|
521
|
+
"tok": "toki pona",
|
|
491
522
|
"tpi": "tok pisin",
|
|
492
523
|
"tr": "turco",
|
|
493
524
|
"trv": "taroko",
|
|
494
525
|
"ts": "tsonga",
|
|
495
526
|
"tsi": "tsimshiano",
|
|
496
527
|
"tt": "tártaro",
|
|
528
|
+
"ttm": "tutchone septentrional",
|
|
497
529
|
"tum": "tumbuka",
|
|
498
530
|
"tvl": "tuvaluano",
|
|
499
531
|
"tw": "twi",
|
|
@@ -533,7 +565,7 @@
|
|
|
533
565
|
"ybb": "yemba",
|
|
534
566
|
"yi": "yidis",
|
|
535
567
|
"yo": "yoruba",
|
|
536
|
-
"yrl": "
|
|
568
|
+
"yrl": "ñe’engatú",
|
|
537
569
|
"yue": "cantonés",
|
|
538
570
|
"yue_alt-menu": "chino cantonés",
|
|
539
571
|
"za": "zhuang",
|
|
@@ -553,57 +585,41 @@
|
|
|
553
585
|
"zza": "zazaki"
|
|
554
586
|
},
|
|
555
587
|
"scripts": {
|
|
556
|
-
"Adlm": "
|
|
557
|
-
"Aghb": "Aghb",
|
|
558
|
-
"Ahom": "Ahom",
|
|
588
|
+
"Adlm": "ádlam",
|
|
559
589
|
"Arab": "árabe",
|
|
560
590
|
"Arab-alt-variant": "perso-árabe",
|
|
561
591
|
"Aran": "nastaliq",
|
|
562
|
-
"Armi": "Armi",
|
|
563
592
|
"Armn": "armenio",
|
|
564
593
|
"Avst": "avéstico",
|
|
565
594
|
"Bali": "balinés",
|
|
566
|
-
"Bamu": "Bamu",
|
|
567
|
-
"Bass": "Bass",
|
|
568
595
|
"Batk": "batak",
|
|
569
596
|
"Beng": "bengalí",
|
|
570
|
-
"Bhks": "Bhks",
|
|
571
597
|
"Blis": "símbolos blis",
|
|
572
598
|
"Bopo": "bopomofo",
|
|
573
599
|
"Brah": "brahmi",
|
|
574
600
|
"Brai": "braille",
|
|
575
601
|
"Bugi": "buginés",
|
|
576
602
|
"Buhd": "buhid",
|
|
577
|
-
"Cakm": "
|
|
603
|
+
"Cakm": "chakma",
|
|
578
604
|
"Cans": "silabarios aborígenes canadienses unificados",
|
|
579
605
|
"Cari": "cario",
|
|
580
606
|
"Cham": "cham",
|
|
581
|
-
"Cher": "
|
|
582
|
-
"Chrs": "Chrs",
|
|
607
|
+
"Cher": "cheroqui",
|
|
583
608
|
"Cirt": "cirth",
|
|
584
609
|
"Copt": "copto",
|
|
585
|
-
"Cpmn": "Cpmn",
|
|
586
610
|
"Cprt": "chipriota",
|
|
587
611
|
"Cyrl": "cirílico",
|
|
588
612
|
"Cyrs": "cirílico del antiguo eslavo eclesiástico",
|
|
589
613
|
"Deva": "devanagari",
|
|
590
|
-
"Diak": "Diak",
|
|
591
|
-
"Dogr": "Dogr",
|
|
592
614
|
"Dsrt": "deseret",
|
|
593
|
-
"Dupl": "Dupl",
|
|
594
615
|
"Egyd": "egipcio demótico",
|
|
595
616
|
"Egyh": "egipcio hierático",
|
|
596
617
|
"Egyp": "jeroglíficos egipcios",
|
|
597
|
-
"Elba": "Elba",
|
|
598
|
-
"Elym": "Elym",
|
|
599
618
|
"Ethi": "etiópico",
|
|
600
619
|
"Geok": "georgiano eclesiástico",
|
|
601
620
|
"Geor": "georgiano",
|
|
602
621
|
"Glag": "glagolítico",
|
|
603
|
-
"Gong": "Gong",
|
|
604
|
-
"Gonm": "Gonm",
|
|
605
622
|
"Goth": "gótico",
|
|
606
|
-
"Gran": "Gran",
|
|
607
623
|
"Grek": "griego",
|
|
608
624
|
"Gujr": "gujarati",
|
|
609
625
|
"Guru": "gurmuji",
|
|
@@ -615,12 +631,9 @@
|
|
|
615
631
|
"Hans-alt-stand-alone": "han simplificado",
|
|
616
632
|
"Hant": "tradicional",
|
|
617
633
|
"Hant-alt-stand-alone": "han tradicional",
|
|
618
|
-
"Hatr": "Hatr",
|
|
619
634
|
"Hebr": "hebreo",
|
|
620
635
|
"Hira": "hiragana",
|
|
621
|
-
"Hluw": "Hluw",
|
|
622
636
|
"Hmng": "pahawh hmong",
|
|
623
|
-
"Hmnp": "Hmnp",
|
|
624
637
|
"Hrkt": "katakana o hiragana",
|
|
625
638
|
"Hung": "húngaro antiguo",
|
|
626
639
|
"Inds": "Indio (harappan)",
|
|
@@ -630,14 +643,10 @@
|
|
|
630
643
|
"Jpan": "japonés",
|
|
631
644
|
"Kali": "kayah li",
|
|
632
645
|
"Kana": "katakana",
|
|
633
|
-
"Kawi": "Kawi",
|
|
634
646
|
"Khar": "kharosthi",
|
|
635
647
|
"Khmr": "jemer",
|
|
636
|
-
"Khoj": "Khoj",
|
|
637
|
-
"Kits": "Kits",
|
|
638
648
|
"Knda": "canarés",
|
|
639
649
|
"Kore": "coreano",
|
|
640
|
-
"Kthi": "Kthi",
|
|
641
650
|
"Lana": "lanna",
|
|
642
651
|
"Laoo": "lao",
|
|
643
652
|
"Latf": "latino fraktur",
|
|
@@ -647,82 +656,46 @@
|
|
|
647
656
|
"Limb": "limbu",
|
|
648
657
|
"Lina": "lineal A",
|
|
649
658
|
"Linb": "lineal B",
|
|
650
|
-
"Lisu": "Lisu",
|
|
651
659
|
"Lyci": "licio",
|
|
652
660
|
"Lydi": "lidio",
|
|
653
|
-
"Mahj": "Mahj",
|
|
654
|
-
"Maka": "Maka",
|
|
655
661
|
"Mand": "mandeo",
|
|
656
|
-
"Mani": "Mani",
|
|
657
|
-
"Marc": "Marc",
|
|
658
662
|
"Maya": "jeroglíficos mayas",
|
|
659
|
-
"Medf": "Medf",
|
|
660
|
-
"Mend": "Mend",
|
|
661
|
-
"Merc": "Merc",
|
|
662
663
|
"Mero": "meroítico",
|
|
663
664
|
"Mlym": "malabar",
|
|
664
|
-
"Modi": "Modi",
|
|
665
665
|
"Mong": "mongol",
|
|
666
666
|
"Moon": "moon",
|
|
667
|
-
"Mroo": "Mroo",
|
|
668
667
|
"Mtei": "manipuri",
|
|
669
|
-
"Mult": "Mult",
|
|
670
668
|
"Mymr": "birmano",
|
|
671
|
-
"Nagm": "Nagm",
|
|
672
|
-
"Nand": "Nand",
|
|
673
|
-
"Narb": "Narb",
|
|
674
|
-
"Nbat": "Nbat",
|
|
675
|
-
"Newa": "Newa",
|
|
676
669
|
"Nkoo": "n’ko",
|
|
677
|
-
"Nshu": "Nshu",
|
|
678
670
|
"Ogam": "ogham",
|
|
679
671
|
"Olck": "ol chiki",
|
|
680
672
|
"Orkh": "orkhon",
|
|
681
673
|
"Orya": "oriya",
|
|
682
|
-
"Osge": "Osge",
|
|
683
674
|
"Osma": "osmaniya",
|
|
684
|
-
"Ougr": "Ougr",
|
|
685
|
-
"Palm": "Palm",
|
|
686
|
-
"Pauc": "Pauc",
|
|
687
675
|
"Perm": "permiano antiguo",
|
|
688
676
|
"Phag": "phags-pa",
|
|
689
|
-
"Phli": "Phli",
|
|
690
|
-
"Phlp": "Phlp",
|
|
691
677
|
"Phnx": "fenicio",
|
|
692
678
|
"Plrd": "Pollard Miao",
|
|
693
|
-
"Prti": "Prti",
|
|
694
679
|
"Qaag": "zawgyi",
|
|
695
680
|
"Rjng": "rejang",
|
|
696
|
-
"Rohg": "
|
|
681
|
+
"Rohg": "hanifi",
|
|
697
682
|
"Roro": "rongo-rongo",
|
|
698
683
|
"Runr": "rúnico",
|
|
699
|
-
"Samr": "Samr",
|
|
700
684
|
"Sara": "sarati",
|
|
701
|
-
"Sarb": "Sarb",
|
|
702
685
|
"Saur": "saurashtra",
|
|
703
686
|
"Sgnw": "SignWriting",
|
|
704
687
|
"Shaw": "shaviano",
|
|
705
|
-
"Shrd": "Shrd",
|
|
706
|
-
"Sidd": "Sidd",
|
|
707
|
-
"Sind": "Sind",
|
|
708
688
|
"Sinh": "cingalés",
|
|
709
|
-
"Sogd": "Sogd",
|
|
710
|
-
"Sogo": "Sogo",
|
|
711
|
-
"Sora": "Sora",
|
|
712
|
-
"Soyo": "Soyo",
|
|
713
689
|
"Sund": "sundanés",
|
|
714
690
|
"Sylo": "syloti nagri",
|
|
715
|
-
"Syrc": "
|
|
691
|
+
"Syrc": "siríaco",
|
|
716
692
|
"Syre": "siriaco estrangelo",
|
|
717
693
|
"Syrj": "siriaco occidental",
|
|
718
694
|
"Syrn": "siriaco oriental",
|
|
719
695
|
"Tagb": "tagbanúa",
|
|
720
|
-
"Takr": "Takr",
|
|
721
696
|
"Tale": "tai le",
|
|
722
697
|
"Talu": "nuevo tai lue",
|
|
723
698
|
"Taml": "tamil",
|
|
724
|
-
"Tang": "Tang",
|
|
725
|
-
"Tavt": "Tavt",
|
|
726
699
|
"Telu": "telugu",
|
|
727
700
|
"Teng": "tengwar",
|
|
728
701
|
"Tfng": "tifinagh",
|
|
@@ -730,20 +703,12 @@
|
|
|
730
703
|
"Thaa": "thaana",
|
|
731
704
|
"Thai": "tailandés",
|
|
732
705
|
"Tibt": "tibetano",
|
|
733
|
-
"Tirh": "Tirh",
|
|
734
|
-
"Tnsa": "Tnsa",
|
|
735
|
-
"Toto": "Toto",
|
|
736
706
|
"Ugar": "ugarítico",
|
|
737
707
|
"Vaii": "vai",
|
|
738
708
|
"Visp": "lenguaje visible",
|
|
739
|
-
"Vith": "Vith",
|
|
740
|
-
"Wara": "Wara",
|
|
741
|
-
"Wcho": "Wcho",
|
|
742
709
|
"Xpeo": "persa antiguo",
|
|
743
710
|
"Xsux": "cuneiforme sumerio-acadio",
|
|
744
|
-
"Yezi": "Yezi",
|
|
745
711
|
"Yiii": "yi",
|
|
746
|
-
"Zanb": "Zanb",
|
|
747
712
|
"Zinh": "heredado",
|
|
748
713
|
"Zmth": "notación matemática",
|
|
749
714
|
"Zsye": "emojis",
|
|
@@ -970,6 +935,7 @@
|
|
|
970
935
|
"NR": "Nauru",
|
|
971
936
|
"NU": "Niue",
|
|
972
937
|
"NZ": "Nueva Zelanda",
|
|
938
|
+
"NZ-alt-variant": "Aotearoa (Nueva Zelanda)",
|
|
973
939
|
"OM": "Omán",
|
|
974
940
|
"PA": "Panamá",
|
|
975
941
|
"PE": "Perú",
|
|
@@ -1029,6 +995,7 @@
|
|
|
1029
995
|
"TN": "Túnez",
|
|
1030
996
|
"TO": "Tonga",
|
|
1031
997
|
"TR": "Turquía",
|
|
998
|
+
"TR-alt-variant": "Türkiye",
|
|
1032
999
|
"TT": "Trinidad y Tobago",
|
|
1033
1000
|
"TV": "Tuvalu",
|
|
1034
1001
|
"TW": "Taiwán",
|
|
@@ -1088,9 +1055,9 @@
|
|
|
1088
1055
|
"EBhm": "E h:mm B",
|
|
1089
1056
|
"EBhms": "E h:mm:ss B",
|
|
1090
1057
|
"Ed": "E d",
|
|
1091
|
-
"Ehm": "E, h:mm
|
|
1058
|
+
"Ehm": "E, h:mm a",
|
|
1092
1059
|
"EHm": "E, HH:mm",
|
|
1093
|
-
"Ehms": "E, h:mm:ss
|
|
1060
|
+
"Ehms": "E, h:mm:ss a",
|
|
1094
1061
|
"EHms": "E, HH:mm:ss",
|
|
1095
1062
|
"Gy": "y G",
|
|
1096
1063
|
"GyMd": "d/M/y GGGGG",
|
|
@@ -1100,17 +1067,17 @@
|
|
|
1100
1067
|
"GyMMMM": "MMMM 'de' y G",
|
|
1101
1068
|
"GyMMMMd": "d 'de' MMMM 'de' y G",
|
|
1102
1069
|
"GyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
1103
|
-
"h": "h
|
|
1070
|
+
"h": "h a",
|
|
1104
1071
|
"H": "HH",
|
|
1105
|
-
"hm": "h:mm
|
|
1072
|
+
"hm": "h:mm a",
|
|
1106
1073
|
"Hm": "HH:mm",
|
|
1107
|
-
"hms": "h:mm:ss
|
|
1074
|
+
"hms": "h:mm:ss a",
|
|
1108
1075
|
"Hms": "HH:mm:ss",
|
|
1109
|
-
"hmsv": "h:mm:ss
|
|
1076
|
+
"hmsv": "h:mm:ss a v",
|
|
1110
1077
|
"Hmsv": "HH:mm:ss v",
|
|
1111
|
-
"hmsvvvv": "h:mm:ss
|
|
1078
|
+
"hmsvvvv": "h:mm:ss a (vvvv)",
|
|
1112
1079
|
"Hmsvvvv": "HH:mm:ss vvvv",
|
|
1113
|
-
"hmv": "h:mm
|
|
1080
|
+
"hmv": "h:mm a v",
|
|
1114
1081
|
"Hmv": "HH:mm v",
|
|
1115
1082
|
"M": "L",
|
|
1116
1083
|
"Md": "d/M",
|
|
@@ -1154,7 +1121,7 @@
|
|
|
1154
1121
|
"Year": "{1} {0}"
|
|
1155
1122
|
},
|
|
1156
1123
|
"intervalFormats": {
|
|
1157
|
-
"intervalFormatFallback": "{0}
|
|
1124
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1158
1125
|
"Bh": {
|
|
1159
1126
|
"B": "h B – h B",
|
|
1160
1127
|
"h": "h–h B"
|
|
@@ -1168,71 +1135,71 @@
|
|
|
1168
1135
|
"d": "d–d"
|
|
1169
1136
|
},
|
|
1170
1137
|
"Gy": {
|
|
1171
|
-
"G": "y G
|
|
1138
|
+
"G": "y G – y G",
|
|
1172
1139
|
"y": "y–y G"
|
|
1173
1140
|
},
|
|
1174
1141
|
"GyM": {
|
|
1175
|
-
"G": "MM/y GGGGG
|
|
1176
|
-
"M": "MM/y
|
|
1177
|
-
"y": "MM/y
|
|
1142
|
+
"G": "MM/y GGGGG – MM/y GGGGG",
|
|
1143
|
+
"M": "MM/y – MM/y GGGGG",
|
|
1144
|
+
"y": "MM/y – MM/y GGGGG"
|
|
1178
1145
|
},
|
|
1179
1146
|
"GyMd": {
|
|
1180
|
-
"d": "dd/MM/y
|
|
1181
|
-
"G": "dd/MM/y GGGGG
|
|
1182
|
-
"M": "dd/MM/y
|
|
1183
|
-
"y": "dd/MM/y
|
|
1147
|
+
"d": "dd/MM/y – dd/MM/y GGGGG",
|
|
1148
|
+
"G": "dd/MM/y GGGGG – dd/MM/y GGGGG",
|
|
1149
|
+
"M": "dd/MM/y – dd/MM/y GGGGG",
|
|
1150
|
+
"y": "dd/MM/y – dd/MM/y GGGGG"
|
|
1184
1151
|
},
|
|
1185
1152
|
"GyMEd": {
|
|
1186
|
-
"d": "E, dd/MM/y
|
|
1187
|
-
"G": "E, dd/MM/y GGGGG
|
|
1188
|
-
"M": "E, dd/MM/y
|
|
1189
|
-
"y": "E, dd/MM/y
|
|
1153
|
+
"d": "E, dd/MM/y – E, dd/MM/y GGGGG",
|
|
1154
|
+
"G": "E, dd/MM/y GGGGG – E, dd/MM/y GGGGG",
|
|
1155
|
+
"M": "E, dd/MM/y – E, dd/MM/y GGGGG",
|
|
1156
|
+
"y": "E, dd/MM/y – E, dd/MM/y GGGGG"
|
|
1190
1157
|
},
|
|
1191
1158
|
"GyMMM": {
|
|
1192
|
-
"G": "MMM y G
|
|
1159
|
+
"G": "MMM y G – MMM y G",
|
|
1193
1160
|
"M": "MMM–MMM y G",
|
|
1194
|
-
"y": "MMM y
|
|
1161
|
+
"y": "MMM y – MMM y G"
|
|
1195
1162
|
},
|
|
1196
1163
|
"GyMMMd": {
|
|
1197
1164
|
"d": "d–d MMM 'de' y G",
|
|
1198
|
-
"G": "d MMM 'de' y G
|
|
1199
|
-
"M": "d MMM
|
|
1200
|
-
"y": "d MMM 'de' y
|
|
1165
|
+
"G": "d MMM 'de' y G – d MMM 'de' y G",
|
|
1166
|
+
"M": "d MMM – d MMM 'de' y G",
|
|
1167
|
+
"y": "d MMM 'de' y – d MMM 'de' y G"
|
|
1201
1168
|
},
|
|
1202
1169
|
"GyMMMEd": {
|
|
1203
|
-
"d": "E d MMM
|
|
1204
|
-
"G": "E d MMM 'de' y G
|
|
1205
|
-
"M": "E d MMM
|
|
1206
|
-
"y": "E d MMM 'de' y
|
|
1170
|
+
"d": "E d MMM – E d MMM 'de' y G",
|
|
1171
|
+
"G": "E d MMM 'de' y G – E d MMM 'de' y G",
|
|
1172
|
+
"M": "E d MMM – E d MMM 'de' y G",
|
|
1173
|
+
"y": "E d MMM 'de' y – E d MMM 'de' y G"
|
|
1207
1174
|
},
|
|
1208
1175
|
"h": {
|
|
1209
|
-
"a": "h
|
|
1210
|
-
"h": "h–h
|
|
1176
|
+
"a": "h a–h a",
|
|
1177
|
+
"h": "h–h a"
|
|
1211
1178
|
},
|
|
1212
1179
|
"H": {
|
|
1213
1180
|
"H": "H–H"
|
|
1214
1181
|
},
|
|
1215
1182
|
"hm": {
|
|
1216
|
-
"a": "h:mm
|
|
1217
|
-
"h": "h:mm
|
|
1218
|
-
"m": "h:mm
|
|
1183
|
+
"a": "h:mm a – h:mm a",
|
|
1184
|
+
"h": "h:mm – h:mm a",
|
|
1185
|
+
"m": "h:mm – h:mm a"
|
|
1219
1186
|
},
|
|
1220
1187
|
"Hm": {
|
|
1221
1188
|
"H": "H:mm–H:mm",
|
|
1222
1189
|
"m": "H:mm–H:mm"
|
|
1223
1190
|
},
|
|
1224
1191
|
"hmv": {
|
|
1225
|
-
"a": "h:mm
|
|
1226
|
-
"h": "h:mm–h:mm
|
|
1227
|
-
"m": "h:mm–h:mm
|
|
1192
|
+
"a": "h:mm a–h:mm a v",
|
|
1193
|
+
"h": "h:mm–h:mm a v",
|
|
1194
|
+
"m": "h:mm–h:mm a v"
|
|
1228
1195
|
},
|
|
1229
1196
|
"Hmv": {
|
|
1230
1197
|
"H": "H:mm–H:mm v",
|
|
1231
1198
|
"m": "H:mm–H:mm v"
|
|
1232
1199
|
},
|
|
1233
1200
|
"hv": {
|
|
1234
|
-
"a": "h
|
|
1235
|
-
"h": "h–h
|
|
1201
|
+
"a": "h a–h a v",
|
|
1202
|
+
"h": "h–h a v"
|
|
1236
1203
|
},
|
|
1237
1204
|
"Hv": {
|
|
1238
1205
|
"H": "H–H v"
|
|
@@ -1252,20 +1219,20 @@
|
|
|
1252
1219
|
"M": "MMM–MMM"
|
|
1253
1220
|
},
|
|
1254
1221
|
"MMMd": {
|
|
1255
|
-
"d": "d
|
|
1256
|
-
"M": "d 'de' MMM
|
|
1222
|
+
"d": "d – d 'de' MMM",
|
|
1223
|
+
"M": "d 'de' MMM – d 'de' MMM"
|
|
1257
1224
|
},
|
|
1258
1225
|
"MMMEd": {
|
|
1259
|
-
"d": "E, d 'de' MMM
|
|
1260
|
-
"M": "E, d 'de' MMM
|
|
1226
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM",
|
|
1227
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM"
|
|
1261
1228
|
},
|
|
1262
1229
|
"MMMMd": {
|
|
1263
1230
|
"d": "d–d 'de' MMMM",
|
|
1264
|
-
"M": "d 'de' MMMM
|
|
1231
|
+
"M": "d 'de' MMMM – d 'de' MMMM"
|
|
1265
1232
|
},
|
|
1266
1233
|
"MMMMEd": {
|
|
1267
|
-
"d": "E, d 'de' MMMM
|
|
1268
|
-
"M": "E, d 'de' MMMM
|
|
1234
|
+
"d": "E, d 'de' MMMM – E, d 'de' MMMM",
|
|
1235
|
+
"M": "E, d 'de' MMMM – E, d 'de' MMMM"
|
|
1269
1236
|
},
|
|
1270
1237
|
"y": {
|
|
1271
1238
|
"y": "y–y"
|
|
@@ -1286,17 +1253,17 @@
|
|
|
1286
1253
|
},
|
|
1287
1254
|
"yMMM": {
|
|
1288
1255
|
"M": "MMM–MMM y",
|
|
1289
|
-
"y": "MMM 'de' y
|
|
1256
|
+
"y": "MMM 'de' y – MMM 'de' y"
|
|
1290
1257
|
},
|
|
1291
1258
|
"yMMMd": {
|
|
1292
|
-
"d": "d
|
|
1293
|
-
"M": "d 'de' MMM
|
|
1294
|
-
"y": "d 'de' MMM 'de' y
|
|
1259
|
+
"d": "d – d 'de' MMM 'de' y",
|
|
1260
|
+
"M": "d 'de' MMM – d 'de' MMM 'de' y",
|
|
1261
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y"
|
|
1295
1262
|
},
|
|
1296
1263
|
"yMMMEd": {
|
|
1297
|
-
"d": "E, d 'de' MMM
|
|
1298
|
-
"M": "E, d 'de' MMM
|
|
1299
|
-
"y": "E, d 'de' MMM 'de' y
|
|
1264
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y",
|
|
1265
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y",
|
|
1266
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y"
|
|
1300
1267
|
},
|
|
1301
1268
|
"yMMMM": {
|
|
1302
1269
|
"M": "MMMM–MMMM 'de' y",
|
|
@@ -1304,13 +1271,13 @@
|
|
|
1304
1271
|
},
|
|
1305
1272
|
"yMMMMd": {
|
|
1306
1273
|
"d": "d–d 'de' MMMM 'de' y",
|
|
1307
|
-
"M": "d 'de' MMMM
|
|
1308
|
-
"y": "d 'de' MMMM 'de' y
|
|
1274
|
+
"M": "d 'de' MMMM – d 'de' MMMM 'de' y",
|
|
1275
|
+
"y": "d 'de' MMMM 'de' y – d 'de' MMMM 'de' y"
|
|
1309
1276
|
},
|
|
1310
1277
|
"yMMMMEd": {
|
|
1311
|
-
"d": "E, d 'de' MMMM
|
|
1312
|
-
"M": "E, d 'de' MMMM
|
|
1313
|
-
"y": "E, d 'de' MMMM 'de' y
|
|
1278
|
+
"d": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y",
|
|
1279
|
+
"M": "E, d 'de' MMMM – E, d 'de' MMMM 'de' y",
|
|
1280
|
+
"y": "E, d 'de' MMMM 'de' y – E, d 'de' MMMM 'de' y"
|
|
1314
1281
|
}
|
|
1315
1282
|
}
|
|
1316
1283
|
},
|
|
@@ -1416,13 +1383,13 @@
|
|
|
1416
1383
|
"sáb"
|
|
1417
1384
|
],
|
|
1418
1385
|
"narrow": [
|
|
1419
|
-
"
|
|
1420
|
-
"
|
|
1421
|
-
"
|
|
1422
|
-
"
|
|
1423
|
-
"
|
|
1424
|
-
"
|
|
1425
|
-
"
|
|
1386
|
+
"D",
|
|
1387
|
+
"L",
|
|
1388
|
+
"M",
|
|
1389
|
+
"M",
|
|
1390
|
+
"J",
|
|
1391
|
+
"V",
|
|
1392
|
+
"S"
|
|
1426
1393
|
],
|
|
1427
1394
|
"short": [
|
|
1428
1395
|
"DO",
|
|
@@ -1527,12 +1494,12 @@
|
|
|
1527
1494
|
"dayPeriods": {
|
|
1528
1495
|
"format": {
|
|
1529
1496
|
"abbreviated": [
|
|
1530
|
-
"a.
|
|
1531
|
-
"p.
|
|
1497
|
+
"a. m.",
|
|
1498
|
+
"p. m."
|
|
1532
1499
|
],
|
|
1533
1500
|
"narrow": [
|
|
1534
|
-
"a.
|
|
1535
|
-
"p.
|
|
1501
|
+
"a. m.",
|
|
1502
|
+
"p. m."
|
|
1536
1503
|
],
|
|
1537
1504
|
"wide": [
|
|
1538
1505
|
"a. m.",
|
|
@@ -1541,12 +1508,12 @@
|
|
|
1541
1508
|
},
|
|
1542
1509
|
"stand-alone": {
|
|
1543
1510
|
"abbreviated": [
|
|
1544
|
-
"a.
|
|
1545
|
-
"p.
|
|
1511
|
+
"a. m.",
|
|
1512
|
+
"p. m."
|
|
1546
1513
|
],
|
|
1547
1514
|
"narrow": [
|
|
1548
|
-
"a.
|
|
1549
|
-
"p.
|
|
1515
|
+
"a. m.",
|
|
1516
|
+
"p. m."
|
|
1550
1517
|
],
|
|
1551
1518
|
"wide": [
|
|
1552
1519
|
"a. m.",
|
|
@@ -1607,12 +1574,12 @@
|
|
|
1607
1574
|
"1": "después de Cristo"
|
|
1608
1575
|
},
|
|
1609
1576
|
"era-abbreviated": {
|
|
1610
|
-
"0": "a.
|
|
1611
|
-
"1": "d.
|
|
1577
|
+
"0": "a.C.",
|
|
1578
|
+
"1": "d.C."
|
|
1612
1579
|
},
|
|
1613
1580
|
"era-narrow": {
|
|
1614
|
-
"0": "a.
|
|
1615
|
-
"1": "d.
|
|
1581
|
+
"0": "a.C.",
|
|
1582
|
+
"1": "d.C."
|
|
1616
1583
|
}
|
|
1617
1584
|
},
|
|
1618
1585
|
"ca-islamic": {
|
|
@@ -1642,9 +1609,9 @@
|
|
|
1642
1609
|
"EBhm": "E h:mm B",
|
|
1643
1610
|
"EBhms": "E h:mm:ss B",
|
|
1644
1611
|
"Ed": "E d",
|
|
1645
|
-
"Ehm": "E h:mm
|
|
1612
|
+
"Ehm": "E h:mm a",
|
|
1646
1613
|
"EHm": "E HH:mm",
|
|
1647
|
-
"Ehms": "E h:mm:ss
|
|
1614
|
+
"Ehms": "E h:mm:ss a",
|
|
1648
1615
|
"EHms": "E HH:mm:ss",
|
|
1649
1616
|
"Gy": "y G",
|
|
1650
1617
|
"GyMd": "d/M/y GGGGG",
|
|
@@ -1654,11 +1621,11 @@
|
|
|
1654
1621
|
"GyMMMM": "MMMM 'de' y G",
|
|
1655
1622
|
"GyMMMMd": "d 'de' MMMM 'de' y G",
|
|
1656
1623
|
"GyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
1657
|
-
"h": "h
|
|
1624
|
+
"h": "h a",
|
|
1658
1625
|
"H": "HH",
|
|
1659
|
-
"hm": "h:mm
|
|
1626
|
+
"hm": "h:mm a",
|
|
1660
1627
|
"Hm": "HH:mm",
|
|
1661
|
-
"hms": "h:mm:ss
|
|
1628
|
+
"hms": "h:mm:ss a",
|
|
1662
1629
|
"Hms": "HH:mm:ss",
|
|
1663
1630
|
"M": "L",
|
|
1664
1631
|
"Md": "d/M",
|
|
@@ -1680,7 +1647,7 @@
|
|
|
1680
1647
|
"yyyyMMMEd": "EEE, d 'de' MMM 'de' y G",
|
|
1681
1648
|
"yyyyMMMM": "MMMM 'de' y G",
|
|
1682
1649
|
"yyyyMMMMd": "d 'de' MMMM 'de' y G",
|
|
1683
|
-
"yyyyMMMMEd": "
|
|
1650
|
+
"yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
1684
1651
|
"yyyyQQQ": "QQQ 'de' y G",
|
|
1685
1652
|
"yyyyQQQQ": "QQQQ 'de' y G"
|
|
1686
1653
|
},
|
|
@@ -1712,71 +1679,71 @@
|
|
|
1712
1679
|
"d": "d–d"
|
|
1713
1680
|
},
|
|
1714
1681
|
"Gy": {
|
|
1715
|
-
"G": "y G
|
|
1682
|
+
"G": "y G – y G",
|
|
1716
1683
|
"y": "y–y G"
|
|
1717
1684
|
},
|
|
1718
1685
|
"GyM": {
|
|
1719
|
-
"G": "M/y GGGGG
|
|
1720
|
-
"M": "M/y
|
|
1721
|
-
"y": "MM/y
|
|
1686
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
1687
|
+
"M": "M/y – M/y GGGGG",
|
|
1688
|
+
"y": "MM/y – MM/y GGGGG"
|
|
1722
1689
|
},
|
|
1723
1690
|
"GyMd": {
|
|
1724
|
-
"d": "d/M/y
|
|
1725
|
-
"G": "d/M/y GGGGG
|
|
1726
|
-
"M": "d/M/y
|
|
1727
|
-
"y": "d/M/y
|
|
1691
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
1692
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG",
|
|
1693
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
1694
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
1728
1695
|
},
|
|
1729
1696
|
"GyMEd": {
|
|
1730
|
-
"d": "E d/M/y
|
|
1731
|
-
"G": "E d/M/y GGGGG
|
|
1732
|
-
"M": "E d/M/y
|
|
1733
|
-
"y": "E d/M/y
|
|
1697
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
1698
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG",
|
|
1699
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
1700
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
1734
1701
|
},
|
|
1735
1702
|
"GyMMM": {
|
|
1736
|
-
"G": "MMM 'de' y G
|
|
1703
|
+
"G": "MMM 'de' y G – MMM 'de' y G",
|
|
1737
1704
|
"M": "MMM–MMM 'de' y G",
|
|
1738
|
-
"y": "MMM 'de' y
|
|
1705
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
1739
1706
|
},
|
|
1740
1707
|
"GyMMMd": {
|
|
1741
1708
|
"d": "d–d 'de' MMM 'de' y G",
|
|
1742
|
-
"G": "d 'de' MMM 'de' y G
|
|
1743
|
-
"M": "d 'de' MMM
|
|
1744
|
-
"y": "d 'de' MMM 'de' y
|
|
1709
|
+
"G": "d 'de' MMM 'de' y G – d 'de' MMM 'de' y G",
|
|
1710
|
+
"M": "d 'de' MMM – d 'de' MMM 'de' y G",
|
|
1711
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
1745
1712
|
},
|
|
1746
1713
|
"GyMMMEd": {
|
|
1747
|
-
"d": "E d 'de' MMM
|
|
1748
|
-
"G": "E d 'de' MMM 'de' y G
|
|
1749
|
-
"M": "E d 'de' MMM
|
|
1750
|
-
"y": "E d 'de' MMM 'de' y
|
|
1714
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
1715
|
+
"G": "E, d 'de' MMM 'de' y G – E, d 'de' MMM 'de' y G",
|
|
1716
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
1717
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
1751
1718
|
},
|
|
1752
1719
|
"h": {
|
|
1753
|
-
"a": "h
|
|
1754
|
-
"h": "h–h
|
|
1720
|
+
"a": "h a – h a",
|
|
1721
|
+
"h": "h–h a"
|
|
1755
1722
|
},
|
|
1756
1723
|
"H": {
|
|
1757
1724
|
"H": "HH–HH"
|
|
1758
1725
|
},
|
|
1759
1726
|
"hm": {
|
|
1760
|
-
"a": "h:mm
|
|
1761
|
-
"h": "h:mm
|
|
1762
|
-
"m": "h:mm
|
|
1727
|
+
"a": "h:mm a – h:mm a",
|
|
1728
|
+
"h": "h:mm – h:mm a",
|
|
1729
|
+
"m": "h:mm – h:mm a"
|
|
1763
1730
|
},
|
|
1764
1731
|
"Hm": {
|
|
1765
|
-
"H": "HH:mm
|
|
1766
|
-
"m": "HH:mm
|
|
1732
|
+
"H": "HH:mm – HH:mm",
|
|
1733
|
+
"m": "HH:mm – HH:mm"
|
|
1767
1734
|
},
|
|
1768
1735
|
"hmv": {
|
|
1769
|
-
"a": "h:mm
|
|
1770
|
-
"h": "h:mm
|
|
1771
|
-
"m": "h:mm
|
|
1736
|
+
"a": "h:mm a – h:mm a v",
|
|
1737
|
+
"h": "h:mm – h:mm a v",
|
|
1738
|
+
"m": "h:mm – h:mm a v"
|
|
1772
1739
|
},
|
|
1773
1740
|
"Hmv": {
|
|
1774
|
-
"H": "HH:mm
|
|
1775
|
-
"m": "HH:mm
|
|
1741
|
+
"H": "HH:mm – HH:mm v",
|
|
1742
|
+
"m": "HH:mm – HH:mm v"
|
|
1776
1743
|
},
|
|
1777
1744
|
"hv": {
|
|
1778
|
-
"a": "h
|
|
1779
|
-
"h": "h–h
|
|
1745
|
+
"a": "h a – h a v",
|
|
1746
|
+
"h": "h–h a v"
|
|
1780
1747
|
},
|
|
1781
1748
|
"Hv": {
|
|
1782
1749
|
"H": "HH–HH v"
|
|
@@ -1807,36 +1774,36 @@
|
|
|
1807
1774
|
"y": "y–y G"
|
|
1808
1775
|
},
|
|
1809
1776
|
"yM": {
|
|
1810
|
-
"M": "M/y
|
|
1811
|
-
"y": "M/y
|
|
1777
|
+
"M": "M/y – M/y GGGGG",
|
|
1778
|
+
"y": "M/y – M/y GGGGG"
|
|
1812
1779
|
},
|
|
1813
1780
|
"yMd": {
|
|
1814
|
-
"d": "d/M/y
|
|
1815
|
-
"M": "d/M/y
|
|
1816
|
-
"y": "d/M/y
|
|
1781
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
1782
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
1783
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
1817
1784
|
},
|
|
1818
1785
|
"yMEd": {
|
|
1819
|
-
"d": "E, d/M/y
|
|
1820
|
-
"M": "E, d/M/y
|
|
1821
|
-
"y": "E, d/M/y
|
|
1786
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
1787
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
1788
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
1822
1789
|
},
|
|
1823
1790
|
"yMMM": {
|
|
1824
1791
|
"M": "MMM–MMM 'de' y G",
|
|
1825
|
-
"y": "MMM 'de' y
|
|
1792
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
1826
1793
|
},
|
|
1827
1794
|
"yMMMd": {
|
|
1828
1795
|
"d": "d–d 'de' MMM 'de' y G",
|
|
1829
|
-
"M": "d 'de' MMM
|
|
1830
|
-
"y": "d 'de' MMM 'de' y
|
|
1796
|
+
"M": "d 'de' MMM – d 'de' MMM y G",
|
|
1797
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
1831
1798
|
},
|
|
1832
1799
|
"yMMMEd": {
|
|
1833
|
-
"d": "E, d 'de' MMM
|
|
1834
|
-
"M": "E, d 'de' MMM
|
|
1835
|
-
"y": "E, d 'de' MMM 'de' y
|
|
1800
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
1801
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
1802
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
1836
1803
|
},
|
|
1837
1804
|
"yMMMM": {
|
|
1838
1805
|
"M": "MMMM–MMMM 'de' y G",
|
|
1839
|
-
"y": "MMMM 'de' y
|
|
1806
|
+
"y": "MMMM 'de' y – MMMM 'de' y G"
|
|
1840
1807
|
}
|
|
1841
1808
|
}
|
|
1842
1809
|
},
|
|
@@ -1942,13 +1909,13 @@
|
|
|
1942
1909
|
"sáb"
|
|
1943
1910
|
],
|
|
1944
1911
|
"narrow": [
|
|
1945
|
-
"
|
|
1946
|
-
"
|
|
1947
|
-
"
|
|
1948
|
-
"
|
|
1949
|
-
"
|
|
1950
|
-
"
|
|
1951
|
-
"
|
|
1912
|
+
"D",
|
|
1913
|
+
"L",
|
|
1914
|
+
"M",
|
|
1915
|
+
"M",
|
|
1916
|
+
"J",
|
|
1917
|
+
"V",
|
|
1918
|
+
"S"
|
|
1952
1919
|
],
|
|
1953
1920
|
"short": [
|
|
1954
1921
|
"DO",
|
|
@@ -2053,12 +2020,12 @@
|
|
|
2053
2020
|
"dayPeriods": {
|
|
2054
2021
|
"format": {
|
|
2055
2022
|
"abbreviated": [
|
|
2056
|
-
"a.
|
|
2057
|
-
"p.
|
|
2023
|
+
"a. m.",
|
|
2024
|
+
"p. m."
|
|
2058
2025
|
],
|
|
2059
2026
|
"narrow": [
|
|
2060
|
-
"a.
|
|
2061
|
-
"p.
|
|
2027
|
+
"a. m.",
|
|
2028
|
+
"p. m."
|
|
2062
2029
|
],
|
|
2063
2030
|
"wide": [
|
|
2064
2031
|
"a. m.",
|
|
@@ -2067,12 +2034,12 @@
|
|
|
2067
2034
|
},
|
|
2068
2035
|
"stand-alone": {
|
|
2069
2036
|
"abbreviated": [
|
|
2070
|
-
"a.
|
|
2071
|
-
"p.
|
|
2037
|
+
"a. m.",
|
|
2038
|
+
"p. m."
|
|
2072
2039
|
],
|
|
2073
2040
|
"narrow": [
|
|
2074
|
-
"a.
|
|
2075
|
-
"p.
|
|
2041
|
+
"a. m.",
|
|
2042
|
+
"p. m."
|
|
2076
2043
|
],
|
|
2077
2044
|
"wide": [
|
|
2078
2045
|
"a. m.",
|
|
@@ -2165,9 +2132,9 @@
|
|
|
2165
2132
|
"EBhm": "E h:mm B",
|
|
2166
2133
|
"EBhms": "E h:mm:ss B",
|
|
2167
2134
|
"Ed": "E d",
|
|
2168
|
-
"Ehm": "E h:mm
|
|
2135
|
+
"Ehm": "E h:mm a",
|
|
2169
2136
|
"EHm": "E HH:mm",
|
|
2170
|
-
"Ehms": "E h:mm:ss
|
|
2137
|
+
"Ehms": "E h:mm:ss a",
|
|
2171
2138
|
"EHms": "E HH:mm:ss",
|
|
2172
2139
|
"Gy": "y G",
|
|
2173
2140
|
"GyMd": "d/M/y GGGGG",
|
|
@@ -2177,11 +2144,11 @@
|
|
|
2177
2144
|
"GyMMMM": "MMMM 'de' y G",
|
|
2178
2145
|
"GyMMMMd": "d 'de' MMMM 'de' y G",
|
|
2179
2146
|
"GyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
2180
|
-
"h": "h
|
|
2147
|
+
"h": "h a",
|
|
2181
2148
|
"H": "HH",
|
|
2182
|
-
"hm": "h:mm
|
|
2149
|
+
"hm": "h:mm a",
|
|
2183
2150
|
"Hm": "HH:mm",
|
|
2184
|
-
"hms": "h:mm:ss
|
|
2151
|
+
"hms": "h:mm:ss a",
|
|
2185
2152
|
"Hms": "HH:mm:ss",
|
|
2186
2153
|
"M": "L",
|
|
2187
2154
|
"Md": "d/M",
|
|
@@ -2203,7 +2170,7 @@
|
|
|
2203
2170
|
"yyyyMMMEd": "EEE, d 'de' MMM 'de' y G",
|
|
2204
2171
|
"yyyyMMMM": "MMMM 'de' y G",
|
|
2205
2172
|
"yyyyMMMMd": "d 'de' MMMM 'de' y G",
|
|
2206
|
-
"yyyyMMMMEd": "
|
|
2173
|
+
"yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
2207
2174
|
"yyyyQQQ": "QQQ 'de' y G",
|
|
2208
2175
|
"yyyyQQQQ": "QQQQ 'de' y G"
|
|
2209
2176
|
},
|
|
@@ -2235,71 +2202,71 @@
|
|
|
2235
2202
|
"d": "d–d"
|
|
2236
2203
|
},
|
|
2237
2204
|
"Gy": {
|
|
2238
|
-
"G": "y G
|
|
2205
|
+
"G": "y G – y G",
|
|
2239
2206
|
"y": "y–y G"
|
|
2240
2207
|
},
|
|
2241
2208
|
"GyM": {
|
|
2242
|
-
"G": "M/y GGGGG
|
|
2243
|
-
"M": "M/y
|
|
2244
|
-
"y": "MM/y
|
|
2209
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
2210
|
+
"M": "M/y – M/y GGGGG",
|
|
2211
|
+
"y": "MM/y – MM/y GGGGG"
|
|
2245
2212
|
},
|
|
2246
2213
|
"GyMd": {
|
|
2247
|
-
"d": "d/M/y
|
|
2248
|
-
"G": "d/M/y GGGGG
|
|
2249
|
-
"M": "d/M/y
|
|
2250
|
-
"y": "d/M/y
|
|
2214
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2215
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG",
|
|
2216
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2217
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
2251
2218
|
},
|
|
2252
2219
|
"GyMEd": {
|
|
2253
|
-
"d": "E d/M/y
|
|
2254
|
-
"G": "E d/M/y GGGGG
|
|
2255
|
-
"M": "E d/M/y
|
|
2256
|
-
"y": "E d/M/y
|
|
2220
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2221
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG",
|
|
2222
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2223
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
2257
2224
|
},
|
|
2258
2225
|
"GyMMM": {
|
|
2259
|
-
"G": "MMM 'de' y G
|
|
2226
|
+
"G": "MMM 'de' y G – MMM 'de' y G",
|
|
2260
2227
|
"M": "MMM–MMM 'de' y G",
|
|
2261
|
-
"y": "MMM 'de' y
|
|
2228
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
2262
2229
|
},
|
|
2263
2230
|
"GyMMMd": {
|
|
2264
2231
|
"d": "d–d 'de' MMM 'de' y G",
|
|
2265
|
-
"G": "d 'de' MMM 'de' y G
|
|
2266
|
-
"M": "d 'de' MMM
|
|
2267
|
-
"y": "d 'de' MMM 'de' y
|
|
2232
|
+
"G": "d 'de' MMM 'de' y G – d 'de' MMM 'de' y G",
|
|
2233
|
+
"M": "d 'de' MMM – d 'de' MMM 'de' y G",
|
|
2234
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
2268
2235
|
},
|
|
2269
2236
|
"GyMMMEd": {
|
|
2270
|
-
"d": "E d 'de' MMM
|
|
2271
|
-
"G": "E d 'de' MMM 'de' y G
|
|
2272
|
-
"M": "E d 'de' MMM
|
|
2273
|
-
"y": "E d 'de' MMM 'de' y
|
|
2237
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2238
|
+
"G": "E, d 'de' MMM 'de' y G – E, d 'de' MMM 'de' y G",
|
|
2239
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2240
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
2274
2241
|
},
|
|
2275
2242
|
"h": {
|
|
2276
|
-
"a": "h
|
|
2277
|
-
"h": "h–h
|
|
2243
|
+
"a": "h a – h a",
|
|
2244
|
+
"h": "h–h a"
|
|
2278
2245
|
},
|
|
2279
2246
|
"H": {
|
|
2280
2247
|
"H": "HH–HH"
|
|
2281
2248
|
},
|
|
2282
2249
|
"hm": {
|
|
2283
|
-
"a": "h:mm
|
|
2284
|
-
"h": "h:mm
|
|
2285
|
-
"m": "h:mm
|
|
2250
|
+
"a": "h:mm a – h:mm a",
|
|
2251
|
+
"h": "h:mm – h:mm a",
|
|
2252
|
+
"m": "h:mm – h:mm a"
|
|
2286
2253
|
},
|
|
2287
2254
|
"Hm": {
|
|
2288
|
-
"H": "HH:mm
|
|
2289
|
-
"m": "HH:mm
|
|
2255
|
+
"H": "HH:mm – HH:mm",
|
|
2256
|
+
"m": "HH:mm – HH:mm"
|
|
2290
2257
|
},
|
|
2291
2258
|
"hmv": {
|
|
2292
|
-
"a": "h:mm
|
|
2293
|
-
"h": "h:mm
|
|
2294
|
-
"m": "h:mm
|
|
2259
|
+
"a": "h:mm a – h:mm a v",
|
|
2260
|
+
"h": "h:mm – h:mm a v",
|
|
2261
|
+
"m": "h:mm – h:mm a v"
|
|
2295
2262
|
},
|
|
2296
2263
|
"Hmv": {
|
|
2297
|
-
"H": "HH:mm
|
|
2298
|
-
"m": "HH:mm
|
|
2264
|
+
"H": "HH:mm – HH:mm v",
|
|
2265
|
+
"m": "HH:mm – HH:mm v"
|
|
2299
2266
|
},
|
|
2300
2267
|
"hv": {
|
|
2301
|
-
"a": "h
|
|
2302
|
-
"h": "h–h
|
|
2268
|
+
"a": "h a – h a v",
|
|
2269
|
+
"h": "h–h a v"
|
|
2303
2270
|
},
|
|
2304
2271
|
"Hv": {
|
|
2305
2272
|
"H": "HH–HH v"
|
|
@@ -2331,43 +2298,43 @@
|
|
|
2331
2298
|
"G": "y G–y G"
|
|
2332
2299
|
},
|
|
2333
2300
|
"yM": {
|
|
2334
|
-
"M": "M/y
|
|
2335
|
-
"y": "M/y
|
|
2336
|
-
"G": "M/y GGGGG
|
|
2301
|
+
"M": "M/y – M/y GGGGG",
|
|
2302
|
+
"y": "M/y – M/y GGGGG",
|
|
2303
|
+
"G": "M/y GGGGG – M/y GGGGG"
|
|
2337
2304
|
},
|
|
2338
2305
|
"yMd": {
|
|
2339
|
-
"d": "d/M/y
|
|
2340
|
-
"M": "d/M/y
|
|
2341
|
-
"y": "d/M/y
|
|
2342
|
-
"G": "d/M/y GGGGG
|
|
2306
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2307
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2308
|
+
"y": "d/M/y – d/M/y GGGGG",
|
|
2309
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG"
|
|
2343
2310
|
},
|
|
2344
2311
|
"yMEd": {
|
|
2345
|
-
"d": "E, d/M/y
|
|
2346
|
-
"M": "E, d/M/y
|
|
2347
|
-
"y": "E, d/M/y
|
|
2348
|
-
"G": "E, d/M/y GGGGG
|
|
2312
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2313
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2314
|
+
"y": "E, d/M/y – E, d/M/y GGGGG",
|
|
2315
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG"
|
|
2349
2316
|
},
|
|
2350
2317
|
"yMMM": {
|
|
2351
2318
|
"M": "MMM–MMM 'de' y G",
|
|
2352
|
-
"y": "MMM 'de' y
|
|
2353
|
-
"G": "MMM 'de' y G
|
|
2319
|
+
"y": "MMM 'de' y – MMM 'de' y G",
|
|
2320
|
+
"G": "MMM 'de' y G – MMM 'de' y G"
|
|
2354
2321
|
},
|
|
2355
2322
|
"yMMMd": {
|
|
2356
2323
|
"d": "d–d 'de' MMM 'de' y G",
|
|
2357
|
-
"M": "d 'de' MMM
|
|
2358
|
-
"y": "d 'de' MMM 'de' y
|
|
2359
|
-
"G": "d 'de' MMM 'de' y G
|
|
2324
|
+
"M": "d 'de' MMM – d 'de' MMM y G",
|
|
2325
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G",
|
|
2326
|
+
"G": "d 'de' MMM 'de' y G – d 'de' MMM 'de' y G"
|
|
2360
2327
|
},
|
|
2361
2328
|
"yMMMEd": {
|
|
2362
|
-
"d": "E, d 'de' MMM
|
|
2363
|
-
"M": "E, d 'de' MMM
|
|
2364
|
-
"y": "E, d 'de' MMM 'de' y
|
|
2365
|
-
"G": "E, d 'de' MMM 'de' y G
|
|
2329
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2330
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2331
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G",
|
|
2332
|
+
"G": "E, d 'de' MMM 'de' y G – E, d 'de' MMM 'de' y G"
|
|
2366
2333
|
},
|
|
2367
2334
|
"yMMMM": {
|
|
2368
2335
|
"M": "MMMM–MMMM 'de' y G",
|
|
2369
|
-
"y": "MMMM 'de' y
|
|
2370
|
-
"G": "MMMM 'de' y G
|
|
2336
|
+
"y": "MMMM 'de' y – MMMM 'de' y G",
|
|
2337
|
+
"G": "MMMM 'de' y G – MMMM 'de' y G"
|
|
2371
2338
|
}
|
|
2372
2339
|
}
|
|
2373
2340
|
},
|
|
@@ -2473,13 +2440,13 @@
|
|
|
2473
2440
|
"sáb"
|
|
2474
2441
|
],
|
|
2475
2442
|
"narrow": [
|
|
2476
|
-
"
|
|
2477
|
-
"
|
|
2478
|
-
"
|
|
2479
|
-
"
|
|
2480
|
-
"
|
|
2481
|
-
"
|
|
2482
|
-
"
|
|
2443
|
+
"D",
|
|
2444
|
+
"L",
|
|
2445
|
+
"M",
|
|
2446
|
+
"M",
|
|
2447
|
+
"J",
|
|
2448
|
+
"V",
|
|
2449
|
+
"S"
|
|
2483
2450
|
],
|
|
2484
2451
|
"short": [
|
|
2485
2452
|
"DO",
|
|
@@ -2584,12 +2551,12 @@
|
|
|
2584
2551
|
"dayPeriods": {
|
|
2585
2552
|
"format": {
|
|
2586
2553
|
"abbreviated": [
|
|
2587
|
-
"a.
|
|
2588
|
-
"p.
|
|
2554
|
+
"a. m.",
|
|
2555
|
+
"p. m."
|
|
2589
2556
|
],
|
|
2590
2557
|
"narrow": [
|
|
2591
|
-
"a.
|
|
2592
|
-
"p.
|
|
2558
|
+
"a. m.",
|
|
2559
|
+
"p. m."
|
|
2593
2560
|
],
|
|
2594
2561
|
"wide": [
|
|
2595
2562
|
"a. m.",
|
|
@@ -2598,12 +2565,12 @@
|
|
|
2598
2565
|
},
|
|
2599
2566
|
"stand-alone": {
|
|
2600
2567
|
"abbreviated": [
|
|
2601
|
-
"a.
|
|
2602
|
-
"p.
|
|
2568
|
+
"a. m.",
|
|
2569
|
+
"p. m."
|
|
2603
2570
|
],
|
|
2604
2571
|
"narrow": [
|
|
2605
|
-
"a.
|
|
2606
|
-
"p.
|
|
2572
|
+
"a. m.",
|
|
2573
|
+
"p. m."
|
|
2607
2574
|
],
|
|
2608
2575
|
"wide": [
|
|
2609
2576
|
"a. m.",
|
|
@@ -2708,9 +2675,9 @@
|
|
|
2708
2675
|
"EBhm": "E h:mm B",
|
|
2709
2676
|
"EBhms": "E h:mm:ss B",
|
|
2710
2677
|
"Ed": "E d",
|
|
2711
|
-
"Ehm": "E h:mm
|
|
2678
|
+
"Ehm": "E h:mm a",
|
|
2712
2679
|
"EHm": "E HH:mm",
|
|
2713
|
-
"Ehms": "E h:mm:ss
|
|
2680
|
+
"Ehms": "E h:mm:ss a",
|
|
2714
2681
|
"EHms": "E HH:mm:ss",
|
|
2715
2682
|
"Gy": "y G",
|
|
2716
2683
|
"GyMd": "d/M/y GGGGG",
|
|
@@ -2720,11 +2687,11 @@
|
|
|
2720
2687
|
"GyMMMM": "MMMM 'de' y G",
|
|
2721
2688
|
"GyMMMMd": "d 'de' MMMM 'de' y G",
|
|
2722
2689
|
"GyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
2723
|
-
"h": "h
|
|
2690
|
+
"h": "h a",
|
|
2724
2691
|
"H": "HH",
|
|
2725
|
-
"hm": "h:mm
|
|
2692
|
+
"hm": "h:mm a",
|
|
2726
2693
|
"Hm": "HH:mm",
|
|
2727
|
-
"hms": "h:mm:ss
|
|
2694
|
+
"hms": "h:mm:ss a",
|
|
2728
2695
|
"Hms": "HH:mm:ss",
|
|
2729
2696
|
"M": "L",
|
|
2730
2697
|
"Md": "d/M",
|
|
@@ -2746,7 +2713,7 @@
|
|
|
2746
2713
|
"yyyyMMMEd": "EEE, d 'de' MMM 'de' y G",
|
|
2747
2714
|
"yyyyMMMM": "MMMM 'de' y G",
|
|
2748
2715
|
"yyyyMMMMd": "d 'de' MMMM 'de' y G",
|
|
2749
|
-
"yyyyMMMMEd": "
|
|
2716
|
+
"yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
2750
2717
|
"yyyyQQQ": "QQQ 'de' y G",
|
|
2751
2718
|
"yyyyQQQQ": "QQQQ 'de' y G"
|
|
2752
2719
|
},
|
|
@@ -2778,71 +2745,71 @@
|
|
|
2778
2745
|
"d": "d–d"
|
|
2779
2746
|
},
|
|
2780
2747
|
"Gy": {
|
|
2781
|
-
"G": "y G
|
|
2748
|
+
"G": "y G – y G",
|
|
2782
2749
|
"y": "y–y G"
|
|
2783
2750
|
},
|
|
2784
2751
|
"GyM": {
|
|
2785
|
-
"G": "M/y GGGGG
|
|
2786
|
-
"M": "M/y
|
|
2787
|
-
"y": "MM/y
|
|
2752
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
2753
|
+
"M": "M/y – M/y GGGGG",
|
|
2754
|
+
"y": "MM/y – MM/y GGGGG"
|
|
2788
2755
|
},
|
|
2789
2756
|
"GyMd": {
|
|
2790
|
-
"d": "d/M/y
|
|
2791
|
-
"G": "d/M/y GGGGG
|
|
2792
|
-
"M": "d/M/y
|
|
2793
|
-
"y": "d/M/y
|
|
2757
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2758
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG",
|
|
2759
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2760
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
2794
2761
|
},
|
|
2795
2762
|
"GyMEd": {
|
|
2796
|
-
"d": "E d/M/y
|
|
2797
|
-
"G": "E d/M/y GGGGG
|
|
2798
|
-
"M": "E d/M/y
|
|
2799
|
-
"y": "E d/M/y
|
|
2763
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2764
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG",
|
|
2765
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2766
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
2800
2767
|
},
|
|
2801
2768
|
"GyMMM": {
|
|
2802
|
-
"G": "MMM 'de' y G
|
|
2769
|
+
"G": "MMM 'de' y G – MMM 'de' y G",
|
|
2803
2770
|
"M": "MMM–MMM 'de' y G",
|
|
2804
|
-
"y": "MMM 'de' y
|
|
2771
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
2805
2772
|
},
|
|
2806
2773
|
"GyMMMd": {
|
|
2807
2774
|
"d": "d–d 'de' MMM 'de' y G",
|
|
2808
|
-
"G": "d 'de' MMM 'de' y G
|
|
2809
|
-
"M": "d 'de' MMM
|
|
2810
|
-
"y": "d 'de' MMM 'de' y
|
|
2775
|
+
"G": "d 'de' MMM 'de' y G – d 'de' MMM 'de' y G",
|
|
2776
|
+
"M": "d 'de' MMM – d 'de' MMM 'de' y G",
|
|
2777
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
2811
2778
|
},
|
|
2812
2779
|
"GyMMMEd": {
|
|
2813
|
-
"d": "E d 'de' MMM
|
|
2814
|
-
"G": "E d 'de' MMM 'de' y G
|
|
2815
|
-
"M": "E d 'de' MMM
|
|
2816
|
-
"y": "E d 'de' MMM 'de' y
|
|
2780
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2781
|
+
"G": "E, d 'de' MMM 'de' y G – E, d 'de' MMM 'de' y G",
|
|
2782
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2783
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
2817
2784
|
},
|
|
2818
2785
|
"h": {
|
|
2819
|
-
"a": "h
|
|
2820
|
-
"h": "h–h
|
|
2786
|
+
"a": "h a – h a",
|
|
2787
|
+
"h": "h–h a"
|
|
2821
2788
|
},
|
|
2822
2789
|
"H": {
|
|
2823
2790
|
"H": "HH–HH"
|
|
2824
2791
|
},
|
|
2825
2792
|
"hm": {
|
|
2826
|
-
"a": "h:mm
|
|
2827
|
-
"h": "h:mm
|
|
2828
|
-
"m": "h:mm
|
|
2793
|
+
"a": "h:mm a – h:mm a",
|
|
2794
|
+
"h": "h:mm – h:mm a",
|
|
2795
|
+
"m": "h:mm – h:mm a"
|
|
2829
2796
|
},
|
|
2830
2797
|
"Hm": {
|
|
2831
|
-
"H": "HH:mm
|
|
2832
|
-
"m": "HH:mm
|
|
2798
|
+
"H": "HH:mm – HH:mm",
|
|
2799
|
+
"m": "HH:mm – HH:mm"
|
|
2833
2800
|
},
|
|
2834
2801
|
"hmv": {
|
|
2835
|
-
"a": "h:mm
|
|
2836
|
-
"h": "h:mm
|
|
2837
|
-
"m": "h:mm
|
|
2802
|
+
"a": "h:mm a – h:mm a v",
|
|
2803
|
+
"h": "h:mm – h:mm a v",
|
|
2804
|
+
"m": "h:mm – h:mm a v"
|
|
2838
2805
|
},
|
|
2839
2806
|
"Hmv": {
|
|
2840
|
-
"H": "HH:mm
|
|
2841
|
-
"m": "HH:mm
|
|
2807
|
+
"H": "HH:mm – HH:mm v",
|
|
2808
|
+
"m": "HH:mm – HH:mm v"
|
|
2842
2809
|
},
|
|
2843
2810
|
"hv": {
|
|
2844
|
-
"a": "h
|
|
2845
|
-
"h": "h–h
|
|
2811
|
+
"a": "h a – h a v",
|
|
2812
|
+
"h": "h–h a v"
|
|
2846
2813
|
},
|
|
2847
2814
|
"Hv": {
|
|
2848
2815
|
"H": "HH–HH v"
|
|
@@ -2873,36 +2840,36 @@
|
|
|
2873
2840
|
"y": "y–y G"
|
|
2874
2841
|
},
|
|
2875
2842
|
"yM": {
|
|
2876
|
-
"M": "M/y
|
|
2877
|
-
"y": "M/y
|
|
2843
|
+
"M": "M/y – M/y GGGGG",
|
|
2844
|
+
"y": "M/y – M/y GGGGG"
|
|
2878
2845
|
},
|
|
2879
2846
|
"yMd": {
|
|
2880
|
-
"d": "d/M/y
|
|
2881
|
-
"M": "d/M/y
|
|
2882
|
-
"y": "d/M/y
|
|
2847
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2848
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2849
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
2883
2850
|
},
|
|
2884
2851
|
"yMEd": {
|
|
2885
|
-
"d": "E, d/M/y
|
|
2886
|
-
"M": "E, d/M/y
|
|
2887
|
-
"y": "E, d/M/y
|
|
2852
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2853
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2854
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
2888
2855
|
},
|
|
2889
2856
|
"yMMM": {
|
|
2890
2857
|
"M": "MMM–MMM 'de' y G",
|
|
2891
|
-
"y": "MMM 'de' y
|
|
2858
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
2892
2859
|
},
|
|
2893
2860
|
"yMMMd": {
|
|
2894
2861
|
"d": "d–d 'de' MMM 'de' y G",
|
|
2895
|
-
"M": "d 'de' MMM
|
|
2896
|
-
"y": "d 'de' MMM 'de' y
|
|
2862
|
+
"M": "d 'de' MMM – d 'de' MMM y G",
|
|
2863
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
2897
2864
|
},
|
|
2898
2865
|
"yMMMEd": {
|
|
2899
|
-
"d": "E, d 'de' MMM
|
|
2900
|
-
"M": "E, d 'de' MMM
|
|
2901
|
-
"y": "E, d 'de' MMM 'de' y
|
|
2866
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2867
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
2868
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
2902
2869
|
},
|
|
2903
2870
|
"yMMMM": {
|
|
2904
2871
|
"M": "MMMM–MMMM 'de' y G",
|
|
2905
|
-
"y": "MMMM 'de' y
|
|
2872
|
+
"y": "MMMM 'de' y – MMMM 'de' y G"
|
|
2906
2873
|
}
|
|
2907
2874
|
}
|
|
2908
2875
|
},
|
|
@@ -3008,13 +2975,13 @@
|
|
|
3008
2975
|
"sáb"
|
|
3009
2976
|
],
|
|
3010
2977
|
"narrow": [
|
|
3011
|
-
"
|
|
3012
|
-
"
|
|
3013
|
-
"
|
|
3014
|
-
"
|
|
3015
|
-
"
|
|
3016
|
-
"
|
|
3017
|
-
"
|
|
2978
|
+
"D",
|
|
2979
|
+
"L",
|
|
2980
|
+
"M",
|
|
2981
|
+
"M",
|
|
2982
|
+
"J",
|
|
2983
|
+
"V",
|
|
2984
|
+
"S"
|
|
3018
2985
|
],
|
|
3019
2986
|
"short": [
|
|
3020
2987
|
"DO",
|
|
@@ -3119,12 +3086,12 @@
|
|
|
3119
3086
|
"dayPeriods": {
|
|
3120
3087
|
"format": {
|
|
3121
3088
|
"abbreviated": [
|
|
3122
|
-
"a.
|
|
3123
|
-
"p.
|
|
3089
|
+
"a. m.",
|
|
3090
|
+
"p. m."
|
|
3124
3091
|
],
|
|
3125
3092
|
"narrow": [
|
|
3126
|
-
"a.
|
|
3127
|
-
"p.
|
|
3093
|
+
"a. m.",
|
|
3094
|
+
"p. m."
|
|
3128
3095
|
],
|
|
3129
3096
|
"wide": [
|
|
3130
3097
|
"a. m.",
|
|
@@ -3133,12 +3100,12 @@
|
|
|
3133
3100
|
},
|
|
3134
3101
|
"stand-alone": {
|
|
3135
3102
|
"abbreviated": [
|
|
3136
|
-
"a.
|
|
3137
|
-
"p.
|
|
3103
|
+
"a. m.",
|
|
3104
|
+
"p. m."
|
|
3138
3105
|
],
|
|
3139
3106
|
"narrow": [
|
|
3140
|
-
"a.
|
|
3141
|
-
"p.
|
|
3107
|
+
"a. m.",
|
|
3108
|
+
"p. m."
|
|
3142
3109
|
],
|
|
3143
3110
|
"wide": [
|
|
3144
3111
|
"a. m.",
|
|
@@ -3231,9 +3198,9 @@
|
|
|
3231
3198
|
"EBhm": "E h:mm B",
|
|
3232
3199
|
"EBhms": "E h:mm:ss B",
|
|
3233
3200
|
"Ed": "E d",
|
|
3234
|
-
"Ehm": "E h:mm
|
|
3201
|
+
"Ehm": "E h:mm a",
|
|
3235
3202
|
"EHm": "E HH:mm",
|
|
3236
|
-
"Ehms": "E h:mm:ss
|
|
3203
|
+
"Ehms": "E h:mm:ss a",
|
|
3237
3204
|
"EHms": "E HH:mm:ss",
|
|
3238
3205
|
"Gy": "y G",
|
|
3239
3206
|
"GyMd": "d/M/y GGGGG",
|
|
@@ -3243,11 +3210,11 @@
|
|
|
3243
3210
|
"GyMMMM": "MMMM 'de' y G",
|
|
3244
3211
|
"GyMMMMd": "d 'de' MMMM 'de' y G",
|
|
3245
3212
|
"GyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
3246
|
-
"h": "h
|
|
3213
|
+
"h": "h a",
|
|
3247
3214
|
"H": "HH",
|
|
3248
|
-
"hm": "h:mm
|
|
3215
|
+
"hm": "h:mm a",
|
|
3249
3216
|
"Hm": "HH:mm",
|
|
3250
|
-
"hms": "h:mm:ss
|
|
3217
|
+
"hms": "h:mm:ss a",
|
|
3251
3218
|
"Hms": "HH:mm:ss",
|
|
3252
3219
|
"M": "L",
|
|
3253
3220
|
"Md": "d/M",
|
|
@@ -3269,7 +3236,7 @@
|
|
|
3269
3236
|
"yyyyMMMEd": "EEE, d 'de' MMM 'de' y G",
|
|
3270
3237
|
"yyyyMMMM": "MMMM 'de' y G",
|
|
3271
3238
|
"yyyyMMMMd": "d 'de' MMMM 'de' y G",
|
|
3272
|
-
"yyyyMMMMEd": "
|
|
3239
|
+
"yyyyMMMMEd": "E, d 'de' MMMM 'de' y G",
|
|
3273
3240
|
"yyyyQQQ": "QQQ 'de' y G",
|
|
3274
3241
|
"yyyyQQQQ": "QQQQ 'de' y G"
|
|
3275
3242
|
},
|
|
@@ -3301,71 +3268,71 @@
|
|
|
3301
3268
|
"d": "d–d"
|
|
3302
3269
|
},
|
|
3303
3270
|
"Gy": {
|
|
3304
|
-
"G": "y G
|
|
3271
|
+
"G": "y G – y G",
|
|
3305
3272
|
"y": "y–y G"
|
|
3306
3273
|
},
|
|
3307
3274
|
"GyM": {
|
|
3308
|
-
"G": "M/y GGGGG
|
|
3309
|
-
"M": "M/y
|
|
3310
|
-
"y": "MM/y
|
|
3275
|
+
"G": "M/y GGGGG – M/y GGGGG",
|
|
3276
|
+
"M": "M/y – M/y GGGGG",
|
|
3277
|
+
"y": "MM/y – MM/y GGGGG"
|
|
3311
3278
|
},
|
|
3312
3279
|
"GyMd": {
|
|
3313
|
-
"d": "d/M/y
|
|
3314
|
-
"G": "d/M/y GGGGG
|
|
3315
|
-
"M": "d/M/y
|
|
3316
|
-
"y": "d/M/y
|
|
3280
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
3281
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG",
|
|
3282
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
3283
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
3317
3284
|
},
|
|
3318
3285
|
"GyMEd": {
|
|
3319
|
-
"d": "E d/M/y
|
|
3320
|
-
"G": "E d/M/y GGGGG
|
|
3321
|
-
"M": "E d/M/y
|
|
3322
|
-
"y": "E d/M/y
|
|
3286
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
3287
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG",
|
|
3288
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
3289
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
3323
3290
|
},
|
|
3324
3291
|
"GyMMM": {
|
|
3325
|
-
"G": "MMM 'de' y G
|
|
3292
|
+
"G": "MMM 'de' y G – MMM 'de' y G",
|
|
3326
3293
|
"M": "MMM–MMM 'de' y G",
|
|
3327
|
-
"y": "MMM 'de' y
|
|
3294
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
3328
3295
|
},
|
|
3329
3296
|
"GyMMMd": {
|
|
3330
3297
|
"d": "d–d 'de' MMM 'de' y G",
|
|
3331
|
-
"G": "d 'de' MMM 'de' y G
|
|
3332
|
-
"M": "d 'de' MMM
|
|
3333
|
-
"y": "d 'de' MMM 'de' y
|
|
3298
|
+
"G": "d 'de' MMM 'de' y G – d 'de' MMM 'de' y G",
|
|
3299
|
+
"M": "d 'de' MMM – d 'de' MMM 'de' y G",
|
|
3300
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
3334
3301
|
},
|
|
3335
3302
|
"GyMMMEd": {
|
|
3336
|
-
"d": "E d 'de' MMM
|
|
3337
|
-
"G": "E d 'de' MMM 'de' y G
|
|
3338
|
-
"M": "E d 'de' MMM
|
|
3339
|
-
"y": "E d 'de' MMM 'de' y
|
|
3303
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
3304
|
+
"G": "E, d 'de' MMM 'de' y G – E, d 'de' MMM 'de' y G",
|
|
3305
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
3306
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
3340
3307
|
},
|
|
3341
3308
|
"h": {
|
|
3342
|
-
"a": "h
|
|
3343
|
-
"h": "h–h
|
|
3309
|
+
"a": "h a – h a",
|
|
3310
|
+
"h": "h–h a"
|
|
3344
3311
|
},
|
|
3345
3312
|
"H": {
|
|
3346
3313
|
"H": "HH–HH"
|
|
3347
3314
|
},
|
|
3348
3315
|
"hm": {
|
|
3349
|
-
"a": "h:mm
|
|
3350
|
-
"h": "h:mm
|
|
3351
|
-
"m": "h:mm
|
|
3316
|
+
"a": "h:mm a – h:mm a",
|
|
3317
|
+
"h": "h:mm – h:mm a",
|
|
3318
|
+
"m": "h:mm – h:mm a"
|
|
3352
3319
|
},
|
|
3353
3320
|
"Hm": {
|
|
3354
|
-
"H": "HH:mm
|
|
3355
|
-
"m": "HH:mm
|
|
3321
|
+
"H": "HH:mm – HH:mm",
|
|
3322
|
+
"m": "HH:mm – HH:mm"
|
|
3356
3323
|
},
|
|
3357
3324
|
"hmv": {
|
|
3358
|
-
"a": "h:mm
|
|
3359
|
-
"h": "h:mm
|
|
3360
|
-
"m": "h:mm
|
|
3325
|
+
"a": "h:mm a – h:mm a v",
|
|
3326
|
+
"h": "h:mm – h:mm a v",
|
|
3327
|
+
"m": "h:mm – h:mm a v"
|
|
3361
3328
|
},
|
|
3362
3329
|
"Hmv": {
|
|
3363
|
-
"H": "HH:mm
|
|
3364
|
-
"m": "HH:mm
|
|
3330
|
+
"H": "HH:mm – HH:mm v",
|
|
3331
|
+
"m": "HH:mm – HH:mm v"
|
|
3365
3332
|
},
|
|
3366
3333
|
"hv": {
|
|
3367
|
-
"a": "h
|
|
3368
|
-
"h": "h–h
|
|
3334
|
+
"a": "h a – h a v",
|
|
3335
|
+
"h": "h–h a v"
|
|
3369
3336
|
},
|
|
3370
3337
|
"Hv": {
|
|
3371
3338
|
"H": "HH–HH v"
|
|
@@ -3396,36 +3363,36 @@
|
|
|
3396
3363
|
"y": "y–y G"
|
|
3397
3364
|
},
|
|
3398
3365
|
"yM": {
|
|
3399
|
-
"M": "M/y
|
|
3400
|
-
"y": "M/y
|
|
3366
|
+
"M": "M/y – M/y GGGGG",
|
|
3367
|
+
"y": "M/y – M/y GGGGG"
|
|
3401
3368
|
},
|
|
3402
3369
|
"yMd": {
|
|
3403
|
-
"d": "d/M/y
|
|
3404
|
-
"M": "d/M/y
|
|
3405
|
-
"y": "d/M/y
|
|
3370
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
3371
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
3372
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
3406
3373
|
},
|
|
3407
3374
|
"yMEd": {
|
|
3408
|
-
"d": "E, d/M/y
|
|
3409
|
-
"M": "E, d/M/y
|
|
3410
|
-
"y": "E, d/M/y
|
|
3375
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
3376
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
3377
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
3411
3378
|
},
|
|
3412
3379
|
"yMMM": {
|
|
3413
3380
|
"M": "MMM–MMM 'de' y G",
|
|
3414
|
-
"y": "MMM 'de' y
|
|
3381
|
+
"y": "MMM 'de' y – MMM 'de' y G"
|
|
3415
3382
|
},
|
|
3416
3383
|
"yMMMd": {
|
|
3417
3384
|
"d": "d–d 'de' MMM 'de' y G",
|
|
3418
|
-
"M": "d 'de' MMM
|
|
3419
|
-
"y": "d 'de' MMM 'de' y
|
|
3385
|
+
"M": "d 'de' MMM – d 'de' MMM y G",
|
|
3386
|
+
"y": "d 'de' MMM 'de' y – d 'de' MMM 'de' y G"
|
|
3420
3387
|
},
|
|
3421
3388
|
"yMMMEd": {
|
|
3422
|
-
"d": "E, d 'de' MMM
|
|
3423
|
-
"M": "E, d 'de' MMM
|
|
3424
|
-
"y": "E, d 'de' MMM 'de' y
|
|
3389
|
+
"d": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
3390
|
+
"M": "E, d 'de' MMM – E, d 'de' MMM 'de' y G",
|
|
3391
|
+
"y": "E, d 'de' MMM 'de' y – E, d 'de' MMM 'de' y G"
|
|
3425
3392
|
},
|
|
3426
3393
|
"yMMMM": {
|
|
3427
3394
|
"M": "MMMM–MMMM 'de' y G",
|
|
3428
|
-
"y": "MMMM 'de' y
|
|
3395
|
+
"y": "MMMM 'de' y – MMMM 'de' y G"
|
|
3429
3396
|
}
|
|
3430
3397
|
}
|
|
3431
3398
|
},
|
|
@@ -3531,13 +3498,13 @@
|
|
|
3531
3498
|
"sáb"
|
|
3532
3499
|
],
|
|
3533
3500
|
"narrow": [
|
|
3534
|
-
"
|
|
3535
|
-
"
|
|
3536
|
-
"
|
|
3537
|
-
"
|
|
3538
|
-
"
|
|
3539
|
-
"
|
|
3540
|
-
"
|
|
3501
|
+
"D",
|
|
3502
|
+
"L",
|
|
3503
|
+
"M",
|
|
3504
|
+
"M",
|
|
3505
|
+
"J",
|
|
3506
|
+
"V",
|
|
3507
|
+
"S"
|
|
3541
3508
|
],
|
|
3542
3509
|
"short": [
|
|
3543
3510
|
"DO",
|
|
@@ -3642,12 +3609,12 @@
|
|
|
3642
3609
|
"dayPeriods": {
|
|
3643
3610
|
"format": {
|
|
3644
3611
|
"abbreviated": [
|
|
3645
|
-
"a.
|
|
3646
|
-
"p.
|
|
3612
|
+
"a. m.",
|
|
3613
|
+
"p. m."
|
|
3647
3614
|
],
|
|
3648
3615
|
"narrow": [
|
|
3649
|
-
"a.
|
|
3650
|
-
"p.
|
|
3616
|
+
"a. m.",
|
|
3617
|
+
"p. m."
|
|
3651
3618
|
],
|
|
3652
3619
|
"wide": [
|
|
3653
3620
|
"a. m.",
|
|
@@ -3656,12 +3623,12 @@
|
|
|
3656
3623
|
},
|
|
3657
3624
|
"stand-alone": {
|
|
3658
3625
|
"abbreviated": [
|
|
3659
|
-
"a.
|
|
3660
|
-
"p.
|
|
3626
|
+
"a. m.",
|
|
3627
|
+
"p. m."
|
|
3661
3628
|
],
|
|
3662
3629
|
"narrow": [
|
|
3663
|
-
"a.
|
|
3664
|
-
"p.
|
|
3630
|
+
"a. m.",
|
|
3631
|
+
"p. m."
|
|
3665
3632
|
],
|
|
3666
3633
|
"wide": [
|
|
3667
3634
|
"a. m.",
|
|
@@ -4162,6 +4129,7 @@
|
|
|
4162
4129
|
"Cayman": "Caimán",
|
|
4163
4130
|
"Chicago": "Chicago",
|
|
4164
4131
|
"Chihuahua": "Chihuahua",
|
|
4132
|
+
"Ciudad_Juarez": "Ciudad Juárez",
|
|
4165
4133
|
"Costa_Rica": "Costa Rica",
|
|
4166
4134
|
"Creston": "Creston",
|
|
4167
4135
|
"Cuiaba": "Cuiabá",
|
|
@@ -4620,30 +4588,30 @@
|
|
|
4620
4588
|
"range": "{0}-{1}"
|
|
4621
4589
|
},
|
|
4622
4590
|
"currencyFormat-short": {
|
|
4623
|
-
"1000-one": "¤0 K",
|
|
4624
|
-
"1000-other": "¤0 K",
|
|
4625
|
-
"10000-one": "¤00 K",
|
|
4626
|
-
"10000-other": "¤00 K",
|
|
4627
|
-
"100000-one": "¤000 K",
|
|
4628
|
-
"100000-other": "¤000 K",
|
|
4629
|
-
"1000000-one": "¤0 M",
|
|
4630
|
-
"1000000-other": "¤0 M",
|
|
4631
|
-
"10000000-one": "¤00 M",
|
|
4632
|
-
"10000000-other": "¤00 M",
|
|
4633
|
-
"100000000-one": "¤000 M",
|
|
4634
|
-
"100000000-other": "¤000 M",
|
|
4635
|
-
"1000000000-one": "¤0000 M",
|
|
4636
|
-
"1000000000-other": "¤0000 M",
|
|
4637
|
-
"10000000000-one": "¤00 MRD",
|
|
4638
|
-
"10000000000-other": "¤00 MRD",
|
|
4639
|
-
"100000000000-one": "¤000 MRD",
|
|
4640
|
-
"100000000000-other": "¤000 MRD",
|
|
4641
|
-
"1000000000000-one": "¤0 B",
|
|
4642
|
-
"1000000000000-other": "¤0 B",
|
|
4643
|
-
"10000000000000-one": "¤00 B",
|
|
4644
|
-
"10000000000000-other": "¤00 B",
|
|
4645
|
-
"100000000000000-one": "¤000 B",
|
|
4646
|
-
"100000000000000-other": "¤000 B"
|
|
4591
|
+
"1000-one": "¤ 0 K",
|
|
4592
|
+
"1000-other": "¤ 0 K",
|
|
4593
|
+
"10000-one": "¤ 00 K",
|
|
4594
|
+
"10000-other": "¤ 00 K",
|
|
4595
|
+
"100000-one": "¤ 000 K",
|
|
4596
|
+
"100000-other": "¤ 000 K",
|
|
4597
|
+
"1000000-one": "¤ 0 M",
|
|
4598
|
+
"1000000-other": "¤ 0 M",
|
|
4599
|
+
"10000000-one": "¤ 00 M",
|
|
4600
|
+
"10000000-other": "¤ 00 M",
|
|
4601
|
+
"100000000-one": "¤ 000 M",
|
|
4602
|
+
"100000000-other": "¤ 000 M",
|
|
4603
|
+
"1000000000-one": "¤ 0000 M",
|
|
4604
|
+
"1000000000-other": "¤ 0000 M",
|
|
4605
|
+
"10000000000-one": "¤ 00 MRD",
|
|
4606
|
+
"10000000000-other": "¤ 00 MRD",
|
|
4607
|
+
"100000000000-one": "¤ 000 MRD",
|
|
4608
|
+
"100000000000-other": "¤ 000 MRD",
|
|
4609
|
+
"1000000000000-one": "¤ 0 B",
|
|
4610
|
+
"1000000000000-other": "¤ 0 B",
|
|
4611
|
+
"10000000000000-one": "¤ 00 B",
|
|
4612
|
+
"10000000000000-other": "¤ 00 B",
|
|
4613
|
+
"100000000000000-one": "¤ 000 B",
|
|
4614
|
+
"100000000000000-other": "¤ 000 B"
|
|
4647
4615
|
},
|
|
4648
4616
|
"symbols-latn-decimal": ",",
|
|
4649
4617
|
"symbols-latn-group": ".",
|
|
@@ -5017,6 +4985,12 @@
|
|
|
5017
4985
|
"unitPattern-count-other": "{0} aa.",
|
|
5018
4986
|
"perUnitPattern": "{0}/a."
|
|
5019
4987
|
},
|
|
4988
|
+
"duration-quarter": {
|
|
4989
|
+
"displayName": "trim.",
|
|
4990
|
+
"unitPattern-count-one": "{0} trim.",
|
|
4991
|
+
"unitPattern-count-other": "{0} trim.",
|
|
4992
|
+
"perUnitPattern": "{0}/trim."
|
|
4993
|
+
},
|
|
5020
4994
|
"duration-month": {
|
|
5021
4995
|
"displayName": "mm.",
|
|
5022
4996
|
"unitPattern-count-one": "{0} m.",
|
|
@@ -5120,6 +5094,7 @@
|
|
|
5120
5094
|
},
|
|
5121
5095
|
"energy-electronvolt": {
|
|
5122
5096
|
"displayName": "eV",
|
|
5097
|
+
"unitPattern-count-one": "{0} eV",
|
|
5123
5098
|
"unitPattern-count-other": "{0} eV"
|
|
5124
5099
|
},
|
|
5125
5100
|
"energy-british-thermal-unit": {
|
|
@@ -5134,10 +5109,12 @@
|
|
|
5134
5109
|
},
|
|
5135
5110
|
"force-pound-force": {
|
|
5136
5111
|
"displayName": "lbf",
|
|
5112
|
+
"unitPattern-count-one": "{0} lbf",
|
|
5137
5113
|
"unitPattern-count-other": "{0} lbf"
|
|
5138
5114
|
},
|
|
5139
5115
|
"force-newton": {
|
|
5140
5116
|
"displayName": "N",
|
|
5117
|
+
"unitPattern-count-one": "{0} N",
|
|
5141
5118
|
"unitPattern-count-other": "{0} N"
|
|
5142
5119
|
},
|
|
5143
5120
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
@@ -5207,6 +5184,7 @@
|
|
|
5207
5184
|
},
|
|
5208
5185
|
"length-earth-radius": {
|
|
5209
5186
|
"displayName": "R⊕",
|
|
5187
|
+
"unitPattern-count-one": "{0} R⊕",
|
|
5210
5188
|
"unitPattern-count-other": "{0} R⊕"
|
|
5211
5189
|
},
|
|
5212
5190
|
"length-kilometer": {
|
|
@@ -5291,6 +5269,7 @@
|
|
|
5291
5269
|
},
|
|
5292
5270
|
"length-furlong": {
|
|
5293
5271
|
"displayName": "fur",
|
|
5272
|
+
"unitPattern-count-one": "{0} fur",
|
|
5294
5273
|
"unitPattern-count-other": "{0} fur"
|
|
5295
5274
|
},
|
|
5296
5275
|
"length-fathom": {
|
|
@@ -5315,6 +5294,7 @@
|
|
|
5315
5294
|
},
|
|
5316
5295
|
"length-solar-radius": {
|
|
5317
5296
|
"displayName": "R☉",
|
|
5297
|
+
"unitPattern-count-one": "{0} R☉",
|
|
5318
5298
|
"unitPattern-count-other": "{0} R☉"
|
|
5319
5299
|
},
|
|
5320
5300
|
"light-lux": {
|
|
@@ -5324,17 +5304,20 @@
|
|
|
5324
5304
|
},
|
|
5325
5305
|
"light-candela": {
|
|
5326
5306
|
"displayName": "cd",
|
|
5307
|
+
"unitPattern-count-one": "{0} cd",
|
|
5327
5308
|
"unitPattern-count-other": "{0} cd"
|
|
5328
5309
|
},
|
|
5329
5310
|
"light-lumen": {
|
|
5330
5311
|
"displayName": "lm",
|
|
5312
|
+
"unitPattern-count-one": "{0} lm",
|
|
5331
5313
|
"unitPattern-count-other": "{0} lm"
|
|
5332
5314
|
},
|
|
5333
5315
|
"light-solar-luminosity": {
|
|
5334
5316
|
"displayName": "L☉",
|
|
5317
|
+
"unitPattern-count-one": "{0} L☉",
|
|
5335
5318
|
"unitPattern-count-other": "{0} L☉"
|
|
5336
5319
|
},
|
|
5337
|
-
"mass-
|
|
5320
|
+
"mass-tonne": {
|
|
5338
5321
|
"displayName": "t",
|
|
5339
5322
|
"unitPattern-count-one": "{0} t",
|
|
5340
5323
|
"unitPattern-count-other": "{0} t"
|
|
@@ -5368,6 +5351,7 @@
|
|
|
5368
5351
|
},
|
|
5369
5352
|
"mass-stone": {
|
|
5370
5353
|
"displayName": "stones",
|
|
5354
|
+
"unitPattern-count-one": "{0} st",
|
|
5371
5355
|
"unitPattern-count-other": "{0} st"
|
|
5372
5356
|
},
|
|
5373
5357
|
"mass-pound": {
|
|
@@ -5394,14 +5378,17 @@
|
|
|
5394
5378
|
},
|
|
5395
5379
|
"mass-dalton": {
|
|
5396
5380
|
"displayName": "Da",
|
|
5381
|
+
"unitPattern-count-one": "{0} Da",
|
|
5397
5382
|
"unitPattern-count-other": "{0} Da"
|
|
5398
5383
|
},
|
|
5399
5384
|
"mass-earth-mass": {
|
|
5400
5385
|
"displayName": "M⊕",
|
|
5386
|
+
"unitPattern-count-one": "{0} M⊕",
|
|
5401
5387
|
"unitPattern-count-other": "{0} M⊕"
|
|
5402
5388
|
},
|
|
5403
5389
|
"mass-solar-mass": {
|
|
5404
5390
|
"displayName": "M☉",
|
|
5391
|
+
"unitPattern-count-one": "{0} M☉",
|
|
5405
5392
|
"unitPattern-count-other": "{0} M☉"
|
|
5406
5393
|
},
|
|
5407
5394
|
"mass-grain": {
|
|
@@ -5481,10 +5468,12 @@
|
|
|
5481
5468
|
},
|
|
5482
5469
|
"pressure-kilopascal": {
|
|
5483
5470
|
"displayName": "kPa",
|
|
5471
|
+
"unitPattern-count-one": "{0} kPa",
|
|
5484
5472
|
"unitPattern-count-other": "{0} kPa"
|
|
5485
5473
|
},
|
|
5486
5474
|
"pressure-megapascal": {
|
|
5487
5475
|
"displayName": "MPa",
|
|
5476
|
+
"unitPattern-count-one": "{0} MPa",
|
|
5488
5477
|
"unitPattern-count-other": "{0} MPa"
|
|
5489
5478
|
},
|
|
5490
5479
|
"speed-kilometer-per-hour": {
|
|
@@ -5622,6 +5611,7 @@
|
|
|
5622
5611
|
},
|
|
5623
5612
|
"volume-bushel": {
|
|
5624
5613
|
"displayName": "bu",
|
|
5614
|
+
"unitPattern-count-one": "{0} bu",
|
|
5625
5615
|
"unitPattern-count-other": "{0} bu"
|
|
5626
5616
|
},
|
|
5627
5617
|
"volume-gallon": {
|
|
@@ -5821,41 +5811,56 @@
|
|
|
5821
5811
|
},
|
|
5822
5812
|
"eras-gregorian": {
|
|
5823
5813
|
"0": {
|
|
5814
|
+
"_code": "gregory-inverse",
|
|
5815
|
+
"_aliases": "bc bce",
|
|
5824
5816
|
"_end": "0-12-31"
|
|
5825
5817
|
},
|
|
5826
5818
|
"1": {
|
|
5819
|
+
"_code": "gregory",
|
|
5820
|
+
"_aliases": "ad ce",
|
|
5827
5821
|
"_start": "1-01-01"
|
|
5828
5822
|
}
|
|
5829
5823
|
},
|
|
5830
5824
|
"eras-islamic": {
|
|
5831
5825
|
"0": {
|
|
5826
|
+
"_code": "islamic",
|
|
5827
|
+
"_aliases": "ah",
|
|
5832
5828
|
"_start": "622-7-15"
|
|
5833
5829
|
}
|
|
5834
5830
|
},
|
|
5835
5831
|
"eras-persian": {
|
|
5836
5832
|
"0": {
|
|
5833
|
+
"_code": "persian",
|
|
5834
|
+
"_aliases": "ap",
|
|
5837
5835
|
"_start": "622-01-01"
|
|
5838
5836
|
}
|
|
5839
5837
|
},
|
|
5840
5838
|
"eras-buddhist": {
|
|
5841
5839
|
"0": {
|
|
5840
|
+
"_code": "buddhist",
|
|
5841
|
+
"_aliases": "be",
|
|
5842
5842
|
"_start": "-542-01-01"
|
|
5843
5843
|
}
|
|
5844
5844
|
},
|
|
5845
5845
|
"eras-japanese": {
|
|
5846
5846
|
"232": {
|
|
5847
|
+
"_code": "meiji",
|
|
5847
5848
|
"_start": "1868-9-8"
|
|
5848
5849
|
},
|
|
5849
5850
|
"233": {
|
|
5851
|
+
"_code": "taisho",
|
|
5850
5852
|
"_start": "1912-7-30"
|
|
5851
5853
|
},
|
|
5852
5854
|
"234": {
|
|
5855
|
+
"_code": "showa",
|
|
5853
5856
|
"_start": "1926-12-25"
|
|
5854
5857
|
},
|
|
5855
5858
|
"235": {
|
|
5859
|
+
"_code": "heisei",
|
|
5856
5860
|
"_start": "1989-1-8"
|
|
5857
5861
|
},
|
|
5858
5862
|
"236": {
|
|
5863
|
+
"_code": "reiwa",
|
|
5859
5864
|
"_start": "2019-5-1"
|
|
5860
5865
|
}
|
|
5861
5866
|
},
|