@openui5/sap.ui.core 1.119.0 → 1.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +6 -6
- package/package.json +1 -1
- package/src/jquery.sap.global.js +40 -111
- package/src/jquery.sap.properties.js +7 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +5 -3
- package/src/jquery.sap.storage.js +6 -3
- package/src/sap/base/Event.js +32 -78
- package/src/sap/base/Eventing.js +114 -271
- package/src/sap/base/Log.js +21 -1
- package/src/sap/base/config.js +14 -9
- package/src/sap/base/i18n/Formatting.js +378 -250
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +124 -85
- package/src/sap/base/i18n/ResourceBundle.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +2 -2
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
- package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
- package/src/sap/base/util/LoaderExtensions.js +8 -2
- package/src/sap/base/util/mixedFetch.js +1 -0
- package/src/sap/base/util/resolveReference.js +31 -13
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/base/util/syncFetch.js +1 -0
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +6 -7
- package/src/sap/ui/base/BindingInfo.js +3 -3
- package/src/sap/ui/base/BindingParser.js +5 -2
- package/src/sap/ui/base/DataType.js +57 -1
- package/src/sap/ui/base/DesignTime.js +69 -0
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +25 -4
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +102 -29
- package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
- package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
- package/src/sap/ui/base/Metadata.js +3 -3
- package/src/sap/ui/base/Object.js +19 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/AnimationMode.js +2 -2
- package/src/sap/ui/core/AppCacheBuster.js +30 -18
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/CalendarType.js +6 -0
- package/src/sap/ui/core/Component.js +150 -80
- package/src/sap/ui/core/ComponentContainer.js +4 -3
- package/src/sap/ui/core/ComponentMetadata.js +3 -4
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +390 -706
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/ControlBehavior.js +37 -28
- package/src/sap/ui/core/Core.js +327 -151
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +3 -1
- package/src/sap/ui/core/Element.js +18 -8
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +3 -2
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +13 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +2 -3
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +17 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +8 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +195 -29
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -32
- package/src/sap/ui/core/Manifest.js +4 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Placeholder.js +18 -0
- package/src/sap/ui/core/Popup.js +5 -0
- package/src/sap/ui/core/RenderManager.js +21 -17
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/Rendering.js +51 -47
- package/src/sap/ui/core/ResizeHandler.js +2 -2
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +5 -3
- package/src/sap/ui/core/Supportability.js +146 -0
- package/src/sap/ui/core/Theming.js +130 -88
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +4 -3
- package/src/sap/ui/core/UIArea.js +1 -4
- package/src/sap/ui/core/UIComponent.js +38 -12
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
- package/src/sap/ui/core/_IconRegistry.js +13 -6
- package/src/sap/ui/core/cldr/ar.json +143 -137
- package/src/sap/ui/core/cldr/ar_EG.json +143 -137
- package/src/sap/ui/core/cldr/ar_SA.json +143 -137
- package/src/sap/ui/core/cldr/bg.json +423 -423
- package/src/sap/ui/core/cldr/ca.json +541 -494
- package/src/sap/ui/core/cldr/cs.json +475 -364
- package/src/sap/ui/core/cldr/cy.json +656 -477
- package/src/sap/ui/core/cldr/da.json +334 -275
- package/src/sap/ui/core/cldr/de.json +388 -291
- package/src/sap/ui/core/cldr/de_AT.json +388 -291
- package/src/sap/ui/core/cldr/de_CH.json +394 -297
- package/src/sap/ui/core/cldr/el.json +169 -166
- package/src/sap/ui/core/cldr/el_CY.json +169 -166
- package/src/sap/ui/core/cldr/en.json +558 -521
- package/src/sap/ui/core/cldr/en_AU.json +558 -520
- package/src/sap/ui/core/cldr/en_GB.json +476 -439
- package/src/sap/ui/core/cldr/en_HK.json +520 -482
- package/src/sap/ui/core/cldr/en_IE.json +486 -448
- package/src/sap/ui/core/cldr/en_IN.json +466 -428
- package/src/sap/ui/core/cldr/en_NZ.json +506 -468
- package/src/sap/ui/core/cldr/en_PG.json +506 -468
- package/src/sap/ui/core/cldr/en_SG.json +506 -468
- package/src/sap/ui/core/cldr/en_ZA.json +486 -448
- package/src/sap/ui/core/cldr/es.json +473 -468
- package/src/sap/ui/core/cldr/es_AR.json +445 -440
- package/src/sap/ui/core/cldr/es_BO.json +479 -474
- package/src/sap/ui/core/cldr/es_CL.json +469 -464
- package/src/sap/ui/core/cldr/es_CO.json +387 -381
- package/src/sap/ui/core/cldr/es_MX.json +502 -497
- package/src/sap/ui/core/cldr/es_PE.json +455 -450
- package/src/sap/ui/core/cldr/es_UY.json +479 -474
- package/src/sap/ui/core/cldr/es_VE.json +499 -494
- package/src/sap/ui/core/cldr/et.json +378 -320
- package/src/sap/ui/core/cldr/fa.json +104 -104
- package/src/sap/ui/core/cldr/fi.json +401 -315
- package/src/sap/ui/core/cldr/fr.json +391 -385
- package/src/sap/ui/core/cldr/fr_BE.json +391 -385
- package/src/sap/ui/core/cldr/fr_CA.json +499 -493
- package/src/sap/ui/core/cldr/fr_CH.json +334 -328
- package/src/sap/ui/core/cldr/fr_LU.json +391 -385
- package/src/sap/ui/core/cldr/he.json +291 -159
- package/src/sap/ui/core/cldr/hi.json +157 -128
- package/src/sap/ui/core/cldr/hr.json +514 -461
- package/src/sap/ui/core/cldr/hu.json +287 -257
- package/src/sap/ui/core/cldr/id.json +463 -416
- package/src/sap/ui/core/cldr/it.json +468 -413
- package/src/sap/ui/core/cldr/it_CH.json +468 -413
- package/src/sap/ui/core/cldr/ja.json +98 -61
- package/src/sap/ui/core/cldr/kk.json +631 -571
- package/src/sap/ui/core/cldr/ko.json +79 -71
- package/src/sap/ui/core/cldr/lt.json +361 -270
- package/src/sap/ui/core/cldr/lv.json +234 -242
- package/src/sap/ui/core/cldr/ms.json +463 -408
- package/src/sap/ui/core/cldr/nb.json +176 -143
- package/src/sap/ui/core/cldr/nl.json +463 -393
- package/src/sap/ui/core/cldr/nl_BE.json +463 -393
- package/src/sap/ui/core/cldr/pl.json +633 -344
- package/src/sap/ui/core/cldr/pt.json +447 -336
- package/src/sap/ui/core/cldr/pt_PT.json +488 -449
- package/src/sap/ui/core/cldr/ro.json +477 -383
- package/src/sap/ui/core/cldr/ru.json +367 -332
- package/src/sap/ui/core/cldr/ru_UA.json +361 -326
- package/src/sap/ui/core/cldr/sk.json +502 -537
- package/src/sap/ui/core/cldr/sl.json +168 -161
- package/src/sap/ui/core/cldr/sr.json +276 -225
- package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
- package/src/sap/ui/core/cldr/sv.json +420 -346
- package/src/sap/ui/core/cldr/th.json +117 -94
- package/src/sap/ui/core/cldr/tr.json +413 -359
- package/src/sap/ui/core/cldr/uk.json +395 -368
- package/src/sap/ui/core/cldr/vi.json +392 -379
- package/src/sap/ui/core/cldr/zh_CN.json +91 -33
- package/src/sap/ui/core/cldr/zh_HK.json +90 -32
- package/src/sap/ui/core/cldr/zh_SG.json +90 -32
- package/src/sap/ui/core/cldr/zh_TW.json +75 -51
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/_Calendars.js +5 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/format/DateFormat.js +33 -21
- package/src/sap/ui/core/format/NumberFormat.js +3 -2
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +128 -8
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +2 -2
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/message/MessageType.js +2 -1
- package/src/sap/ui/core/messagebundle.properties +24 -0
- package/src/sap/ui/core/messagebundle_ar.properties +15 -3
- package/src/sap/ui/core/messagebundle_bg.properties +14 -2
- package/src/sap/ui/core/messagebundle_ca.properties +13 -1
- package/src/sap/ui/core/messagebundle_cs.properties +15 -3
- package/src/sap/ui/core/messagebundle_cy.properties +16 -4
- package/src/sap/ui/core/messagebundle_da.properties +15 -3
- package/src/sap/ui/core/messagebundle_de.properties +15 -3
- package/src/sap/ui/core/messagebundle_el.properties +16 -4
- package/src/sap/ui/core/messagebundle_en.properties +12 -0
- package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
- package/src/sap/ui/core/messagebundle_es.properties +15 -3
- package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
- package/src/sap/ui/core/messagebundle_et.properties +15 -3
- package/src/sap/ui/core/messagebundle_fi.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
- package/src/sap/ui/core/messagebundle_hi.properties +16 -4
- package/src/sap/ui/core/messagebundle_hr.properties +14 -2
- package/src/sap/ui/core/messagebundle_hu.properties +16 -4
- package/src/sap/ui/core/messagebundle_id.properties +15 -3
- package/src/sap/ui/core/messagebundle_it.properties +17 -5
- package/src/sap/ui/core/messagebundle_iw.properties +15 -3
- package/src/sap/ui/core/messagebundle_ja.properties +25 -13
- package/src/sap/ui/core/messagebundle_kk.properties +15 -3
- package/src/sap/ui/core/messagebundle_ko.properties +14 -2
- package/src/sap/ui/core/messagebundle_lt.properties +15 -3
- package/src/sap/ui/core/messagebundle_lv.properties +15 -3
- package/src/sap/ui/core/messagebundle_mk.properties +352 -0
- package/src/sap/ui/core/messagebundle_ms.properties +15 -3
- package/src/sap/ui/core/messagebundle_nl.properties +15 -3
- package/src/sap/ui/core/messagebundle_no.properties +14 -2
- package/src/sap/ui/core/messagebundle_pl.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
- package/src/sap/ui/core/messagebundle_ro.properties +15 -3
- package/src/sap/ui/core/messagebundle_ru.properties +15 -3
- package/src/sap/ui/core/messagebundle_sh.properties +43 -31
- package/src/sap/ui/core/messagebundle_sk.properties +16 -4
- package/src/sap/ui/core/messagebundle_sl.properties +15 -3
- package/src/sap/ui/core/messagebundle_sv.properties +22 -10
- package/src/sap/ui/core/messagebundle_th.properties +15 -3
- package/src/sap/ui/core/messagebundle_tr.properties +15 -3
- package/src/sap/ui/core/messagebundle_uk.properties +18 -6
- package/src/sap/ui/core/messagebundle_vi.properties +18 -6
- package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
- package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
- package/src/sap/ui/core/mvc/Controller.js +22 -16
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +4 -1
- package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +24 -14
- package/src/sap/ui/core/mvc/ViewType.js +2 -0
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
- package/src/sap/ui/core/plugin/LessSupport.js +3 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Router.js +2 -4
- package/src/sap/ui/core/routing/Target.js +1 -3
- package/src/sap/ui/core/routing/Targets.js +2 -3
- package/src/sap/ui/core/routing/Views.js +2 -3
- package/src/sap/ui/core/routing/async/Target.js +1 -1
- package/src/sap/ui/core/rules/Config.support.js +11 -17
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Hotkeys.js +5 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
- package/src/sap/ui/core/support/Support.js +3 -5
- package/src/sap/ui/core/support/ToolsAPI.js +15 -11
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +7 -5
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
- package/src/sap/ui/core/syncStyleClass.js +2 -2
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +9 -9
- package/src/sap/ui/core/theming/Parameters.js +18 -19
- package/src/sap/ui/core/theming/ThemeManager.js +23 -4
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +29 -7
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +3 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +3 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +12 -2
- package/src/sap/ui/model/ListBinding.js +5 -0
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +5 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/TreeBinding.js +3 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
- package/src/sap/ui/model/json/JSONListBinding.js +3 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
- package/src/sap/ui/model/message/MessageListBinding.js +3 -0
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +9 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
- package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
- package/src/sap/ui/model/resource/ResourceModel.js +5 -6
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
- package/src/sap/ui/performance/BeaconRequest.js +2 -2
- package/src/sap/ui/qunit/QUnitUtils.js +64 -45
- package/src/sap/ui/qunit/qunit-coverage.js +6 -0
- package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/security/Security.js +128 -0
- package/src/sap/ui/test/BlanketReporter.js +2 -3
- package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
- package/src/sap/ui/test/BranchTracking.js +2 -3
- package/src/sap/ui/test/ModuleTracking.js +48 -20
- package/src/sap/ui/test/OpaExtension.js +3 -3
- package/src/sap/ui/test/OpaPlugin.js +16 -6
- package/src/sap/ui/test/TestUtils.js +7 -4
- package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
- package/src/sap/ui/test/_ControlFinder.js +3 -2
- package/src/sap/ui/test/_LogCollector.js +1 -0
- package/src/sap/ui/test/_UsageReport.js +115 -114
- package/src/sap/ui/test/actions/EnterText.js +20 -2
- package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
- package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
- package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
- package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +1 -1
- package/src/sap/ui/test/matchers/LabelFor.js +2 -12
- package/src/sap/ui/test/matchers/Matcher.js +1 -1
- package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
- package/src/sap/ui/test/selectors/_Selector.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +84 -11
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
- package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
- package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
- package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
- package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
- package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
- package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
- package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
- package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
- package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
- package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
- package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
- package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
- package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
- package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
- package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
- package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
- package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
- package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
- package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
- package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
- package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
- package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
- package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
- package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
- package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
- package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
- package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
- package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
- package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
- package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
- package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
- package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
- package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
- package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
- package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
- package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
- package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
- package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
- package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
- package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
- package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
- package/test/sap/ui/core/terminologies/App.controller.js +2 -3
- package/test/sap/ui/core/terminologies/main.js +2 -3
- package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
- package/src/sap/ui/core/ConfigTest.js +0 -17
- package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
- package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
- package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
- package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
- package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
|
|
3
|
-
"__version": "
|
|
4
|
-
"__buildtime": "
|
|
3
|
+
"__version": "43.0.0",
|
|
4
|
+
"__buildtime": "2023-09-28T11:39:07.908Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "آفاری",
|
|
7
7
|
"ab": "آبخازی",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"am": "امهری",
|
|
24
24
|
"an": "آراگونی",
|
|
25
25
|
"ang": "انگلیسی باستان",
|
|
26
|
+
"ann": "اوبولو",
|
|
26
27
|
"anp": "آنگیکا",
|
|
27
28
|
"ar": "عربی",
|
|
28
29
|
"ar_001": "عربی رسمی",
|
|
@@ -30,12 +31,14 @@
|
|
|
30
31
|
"arn": "ماپوچهای",
|
|
31
32
|
"arp": "آراپاهویی",
|
|
32
33
|
"arq": "عربی الجزایری",
|
|
34
|
+
"ars": "عربی نجدی",
|
|
33
35
|
"arw": "آراواکی",
|
|
34
36
|
"ary": "عربی مراکشی",
|
|
35
37
|
"arz": "عربی مصری",
|
|
36
38
|
"as": "آسامی",
|
|
37
39
|
"asa": "آسو",
|
|
38
40
|
"ast": "آستوری",
|
|
41
|
+
"atj": "آتیکامکو",
|
|
39
42
|
"av": "آواری",
|
|
40
43
|
"awa": "اودهی",
|
|
41
44
|
"ay": "آیمارایی",
|
|
@@ -70,11 +73,12 @@
|
|
|
70
73
|
"brx": "بودویی",
|
|
71
74
|
"bs": "بوسنیایی",
|
|
72
75
|
"bua": "بوریاتی",
|
|
73
|
-
"bug": "
|
|
76
|
+
"bug": "بوگینس",
|
|
74
77
|
"byn": "بلین",
|
|
75
78
|
"ca": "کاتالان",
|
|
76
79
|
"cad": "کادویی",
|
|
77
80
|
"car": "کاریبی",
|
|
81
|
+
"cay": "کایوگا",
|
|
78
82
|
"ccp": "چاکما",
|
|
79
83
|
"ce": "چچنی",
|
|
80
84
|
"ceb": "سبویی",
|
|
@@ -91,19 +95,27 @@
|
|
|
91
95
|
"ckb": "کردی مرکزی",
|
|
92
96
|
"ckb_alt-menu": "کردی، مرکزی",
|
|
93
97
|
"ckb_alt-variant": "کردی سورانی",
|
|
98
|
+
"clc": "چیلکوتن",
|
|
94
99
|
"co": "کورسی",
|
|
95
100
|
"cop": "قبطی",
|
|
96
101
|
"cr": "کریایی",
|
|
102
|
+
"crg": "میچیف",
|
|
97
103
|
"crh": "ترکی کریمه",
|
|
104
|
+
"crj": "کری جنوب شرقی",
|
|
105
|
+
"crk": "کری صحرایی",
|
|
106
|
+
"crl": "کری شمال شرقی",
|
|
107
|
+
"crm": "موس کری",
|
|
108
|
+
"crr": "آلگانکوین کارولینا",
|
|
98
109
|
"crs": "سیشل آمیختهٔ فرانسوی",
|
|
99
110
|
"cs": "چکی",
|
|
100
111
|
"csb": "کاشوبی",
|
|
112
|
+
"csw": "کری سوامپی",
|
|
101
113
|
"cu": "اسلاوی کلیسایی",
|
|
102
114
|
"cv": "چوواشی",
|
|
103
115
|
"cy": "ولزی",
|
|
104
116
|
"da": "دانمارکی",
|
|
105
117
|
"dak": "داکوتایی",
|
|
106
|
-
"dar": "
|
|
118
|
+
"dar": "دارگوا",
|
|
107
119
|
"dav": "تایتا",
|
|
108
120
|
"de": "آلمانی",
|
|
109
121
|
"de_AT": "آلمانی اتریش",
|
|
@@ -120,7 +132,7 @@
|
|
|
120
132
|
"dyo": "دیولا فونی",
|
|
121
133
|
"dyu": "دایولایی",
|
|
122
134
|
"dz": "دزونگخا",
|
|
123
|
-
"dzg": "
|
|
135
|
+
"dzg": "دازاگا",
|
|
124
136
|
"ebu": "امبو",
|
|
125
137
|
"ee": "اوهای",
|
|
126
138
|
"efi": "افیکی",
|
|
@@ -157,7 +169,7 @@
|
|
|
157
169
|
"fr": "فرانسوی",
|
|
158
170
|
"fr_CA": "فرانسوی کانادا",
|
|
159
171
|
"fr_CH": "فرانسوی سوئیس",
|
|
160
|
-
"frc": "فرانسوی
|
|
172
|
+
"frc": "فرانسوی کاجون",
|
|
161
173
|
"frm": "فرانسوی میانه",
|
|
162
174
|
"fro": "فرانسوی باستان",
|
|
163
175
|
"frr": "فریزی شمالی",
|
|
@@ -191,6 +203,7 @@
|
|
|
191
203
|
"ha": "هوسایی",
|
|
192
204
|
"hai": "هایدایی",
|
|
193
205
|
"haw": "هاوایی",
|
|
206
|
+
"hax": "هایدا جنوبی",
|
|
194
207
|
"he": "عبری",
|
|
195
208
|
"hi": "هندی",
|
|
196
209
|
"hif": "هندی فیجیایی",
|
|
@@ -203,6 +216,7 @@
|
|
|
203
216
|
"ht": "هائیتیایی",
|
|
204
217
|
"hu": "مجاری",
|
|
205
218
|
"hup": "هوپا",
|
|
219
|
+
"hur": "هالکوملم",
|
|
206
220
|
"hy": "ارمنی",
|
|
207
221
|
"hz": "هریرویی",
|
|
208
222
|
"ia": "اینترلینگوا",
|
|
@@ -213,6 +227,7 @@
|
|
|
213
227
|
"ig": "ایگبویی",
|
|
214
228
|
"ii": "یی سیچوان",
|
|
215
229
|
"ik": "اینوپیک",
|
|
230
|
+
"ikt": "اینوکتیتوت غرب کانادا",
|
|
216
231
|
"ilo": "ایلوکویی",
|
|
217
232
|
"inh": "اینگوشی",
|
|
218
233
|
"io": "ایدو",
|
|
@@ -239,7 +254,7 @@
|
|
|
239
254
|
"kea": "کابووردیانو",
|
|
240
255
|
"kfo": "کورو",
|
|
241
256
|
"kg": "کنگویی",
|
|
242
|
-
"kgp": "
|
|
257
|
+
"kgp": "کاین گنگ",
|
|
243
258
|
"kha": "خاسیایی",
|
|
244
259
|
"kho": "ختنی",
|
|
245
260
|
"khq": "کوجراچینی",
|
|
@@ -271,6 +286,7 @@
|
|
|
271
286
|
"kut": "کوتنی",
|
|
272
287
|
"kv": "کومیایی",
|
|
273
288
|
"kw": "کورنی",
|
|
289
|
+
"kwk": "کواک والا",
|
|
274
290
|
"ky": "قرقیزی",
|
|
275
291
|
"la": "لاتین",
|
|
276
292
|
"lad": "لادینو",
|
|
@@ -281,21 +297,23 @@
|
|
|
281
297
|
"lez": "لزگی",
|
|
282
298
|
"lg": "گاندایی",
|
|
283
299
|
"li": "لیمبورگی",
|
|
284
|
-
"
|
|
300
|
+
"lil": "لیلوئت",
|
|
285
301
|
"lkt": "لاکوتا",
|
|
302
|
+
"lmo": "لومبارد",
|
|
286
303
|
"ln": "لینگالا",
|
|
287
304
|
"lo": "لائوسی",
|
|
288
305
|
"lol": "مونگویی",
|
|
289
|
-
"lou": "
|
|
306
|
+
"lou": "کرئول لوئیزیانا",
|
|
290
307
|
"loz": "لوزیایی",
|
|
291
308
|
"lrc": "لری شمالی",
|
|
309
|
+
"lsm": "سامیا",
|
|
292
310
|
"lt": "لیتوانیایی",
|
|
293
311
|
"lu": "لوبایی‐کاتانگا",
|
|
294
312
|
"lua": "لوبایی‐لولوا",
|
|
295
313
|
"lui": "لویسنو",
|
|
296
314
|
"lun": "لوندایی",
|
|
297
315
|
"luo": "لوئویی",
|
|
298
|
-
"lus": "
|
|
316
|
+
"lus": "میزو",
|
|
299
317
|
"luy": "لویا",
|
|
300
318
|
"lv": "لتونیایی",
|
|
301
319
|
"lzh": "چینی ادبی",
|
|
@@ -323,6 +341,7 @@
|
|
|
323
341
|
"mn": "مغولی",
|
|
324
342
|
"mnc": "مانچویی",
|
|
325
343
|
"mni": "مانیپوری",
|
|
344
|
+
"moe": "اینوآیموم",
|
|
326
345
|
"moh": "موهاکی",
|
|
327
346
|
"mos": "ماسیایی",
|
|
328
347
|
"mr": "مراتی",
|
|
@@ -369,6 +388,11 @@
|
|
|
369
388
|
"nzi": "نزیمایی",
|
|
370
389
|
"oc": "اکسیتان",
|
|
371
390
|
"oj": "اوجیبوایی",
|
|
391
|
+
"ojb": "اوجیبوای شمالی",
|
|
392
|
+
"ojc": "اوجیبوای مرکزی",
|
|
393
|
+
"ojs": "اوجی-کری",
|
|
394
|
+
"ojw": "اوجیبوای غربی",
|
|
395
|
+
"oka": "اوکاناگان",
|
|
372
396
|
"om": "اورومویی",
|
|
373
397
|
"or": "اوریهای",
|
|
374
398
|
"os": "آسی",
|
|
@@ -385,8 +409,10 @@
|
|
|
385
409
|
"peo": "فارسی باستان",
|
|
386
410
|
"phn": "فنیقی",
|
|
387
411
|
"pi": "پالی",
|
|
412
|
+
"pis": "پیجین",
|
|
388
413
|
"pl": "لهستانی",
|
|
389
414
|
"pon": "پانپیی",
|
|
415
|
+
"pqm": "ملیسیت - پاسماکودی",
|
|
390
416
|
"prg": "پروسی",
|
|
391
417
|
"pro": "پرووانسی باستان",
|
|
392
418
|
"ps": "پشتو",
|
|
@@ -438,6 +464,7 @@
|
|
|
438
464
|
"sid": "سیدامویی",
|
|
439
465
|
"sk": "اسلواکی",
|
|
440
466
|
"sl": "اسلوونیایی",
|
|
467
|
+
"slh": "لاشوتسید جنوبی",
|
|
441
468
|
"sli": "سیلزیایی سفلی",
|
|
442
469
|
"sm": "ساموآیی",
|
|
443
470
|
"sma": "سامی جنوبی",
|
|
@@ -450,11 +477,12 @@
|
|
|
450
477
|
"sog": "سغدی",
|
|
451
478
|
"sq": "آلبانیایی",
|
|
452
479
|
"sr": "صربی",
|
|
453
|
-
"srn": "
|
|
480
|
+
"srn": "زبان اسرانان",
|
|
454
481
|
"srr": "سریری",
|
|
455
482
|
"ss": "سوازیایی",
|
|
456
483
|
"ssy": "ساهو",
|
|
457
484
|
"st": "سوتوی جنوبی",
|
|
485
|
+
"str": "سالیش استریتز",
|
|
458
486
|
"su": "سوندایی",
|
|
459
487
|
"suk": "سوکومایی",
|
|
460
488
|
"sus": "سوسویی",
|
|
@@ -467,13 +495,16 @@
|
|
|
467
495
|
"syr": "سریانی",
|
|
468
496
|
"szl": "سیلزیایی",
|
|
469
497
|
"ta": "تامیلی",
|
|
498
|
+
"tce": "توچون جنوبی",
|
|
470
499
|
"te": "تلوگویی",
|
|
471
500
|
"tem": "تمنهای",
|
|
472
501
|
"teo": "تسویی",
|
|
473
502
|
"ter": "ترنو",
|
|
474
503
|
"tet": "تتومی",
|
|
475
504
|
"tg": "تاجیکی",
|
|
505
|
+
"tgx": "تاگیش",
|
|
476
506
|
"th": "تایلندی",
|
|
507
|
+
"tht": "تالتان",
|
|
477
508
|
"ti": "تیگرینیایی",
|
|
478
509
|
"tig": "تیگرهای",
|
|
479
510
|
"tiv": "تیوی",
|
|
@@ -485,6 +516,7 @@
|
|
|
485
516
|
"tn": "تسوانایی",
|
|
486
517
|
"to": "تونگایی",
|
|
487
518
|
"tog": "تونگایی نیاسا",
|
|
519
|
+
"tok": "توکی پونا",
|
|
488
520
|
"tpi": "توکپیسینی",
|
|
489
521
|
"tr": "ترکی استانبولی",
|
|
490
522
|
"tr_alt-secondary": "ترکی",
|
|
@@ -492,6 +524,7 @@
|
|
|
492
524
|
"ts": "تسونگایی",
|
|
493
525
|
"tsi": "تسیمشیانی",
|
|
494
526
|
"tt": "تاتاری",
|
|
527
|
+
"ttm": "تاچونی شمالی",
|
|
495
528
|
"tum": "تومبوکایی",
|
|
496
529
|
"tvl": "تووالویی",
|
|
497
530
|
"tw": "توییایی",
|
|
@@ -520,6 +553,7 @@
|
|
|
520
553
|
"was": "واشویی",
|
|
521
554
|
"wbp": "وارلپیری",
|
|
522
555
|
"wo": "ولوفی",
|
|
556
|
+
"wuu": "وو چینی",
|
|
523
557
|
"xal": "قلموقی",
|
|
524
558
|
"xh": "خوسایی",
|
|
525
559
|
"xog": "سوگایی",
|
|
@@ -529,7 +563,7 @@
|
|
|
529
563
|
"ybb": "یمبایی",
|
|
530
564
|
"yi": "یدی",
|
|
531
565
|
"yo": "یوروبایی",
|
|
532
|
-
"yrl": "
|
|
566
|
+
"yrl": "نهین گاتو",
|
|
533
567
|
"yue": "کانتونی",
|
|
534
568
|
"yue_alt-menu": "چینی کانتونی",
|
|
535
569
|
"za": "چوانگی",
|
|
@@ -548,21 +582,17 @@
|
|
|
548
582
|
"zza": "زازایی"
|
|
549
583
|
},
|
|
550
584
|
"scripts": {
|
|
551
|
-
"Adlm": "
|
|
585
|
+
"Adlm": "آدلام",
|
|
552
586
|
"Aghb": "آلبانیایی قفقازی",
|
|
553
|
-
"Ahom": "Ahom",
|
|
554
587
|
"Arab": "عربی",
|
|
555
588
|
"Arab-alt-variant": "فارسی‐عربی",
|
|
556
|
-
"Aran": "
|
|
589
|
+
"Aran": "آران",
|
|
557
590
|
"Armi": "آرامی هخامنشی",
|
|
558
591
|
"Armn": "ارمنی",
|
|
559
592
|
"Avst": "اوستایی",
|
|
560
593
|
"Bali": "بالیایی",
|
|
561
|
-
"Bamu": "Bamu",
|
|
562
|
-
"Bass": "Bass",
|
|
563
594
|
"Batk": "باتاکی",
|
|
564
595
|
"Beng": "بنگالی",
|
|
565
|
-
"Bhks": "Bhks",
|
|
566
596
|
"Blis": "نمادهای بلیس",
|
|
567
597
|
"Bopo": "بوپوموفو",
|
|
568
598
|
"Brah": "براهمی",
|
|
@@ -570,33 +600,23 @@
|
|
|
570
600
|
"Bugi": "بوگیایی",
|
|
571
601
|
"Buhd": "بوهید",
|
|
572
602
|
"Cakm": "چاکمایی",
|
|
573
|
-
"Cans": "
|
|
603
|
+
"Cans": "زبانهای سیلابی بومیهای متحد کانادایی",
|
|
574
604
|
"Cari": "کاری",
|
|
575
605
|
"Cham": "چمی",
|
|
576
|
-
"Cher": "
|
|
577
|
-
"Chrs": "Chrs",
|
|
606
|
+
"Cher": "چروکی",
|
|
578
607
|
"Cirt": "کرت",
|
|
579
608
|
"Copt": "قبطی",
|
|
580
|
-
"Cpmn": "Cpmn",
|
|
581
609
|
"Cprt": "قبرسی",
|
|
582
610
|
"Cyrl": "سیریلی",
|
|
583
611
|
"Deva": "دوناگری",
|
|
584
|
-
"Diak": "Diak",
|
|
585
|
-
"Dogr": "Dogr",
|
|
586
612
|
"Dsrt": "دیسرتی",
|
|
587
|
-
"Dupl": "Dupl",
|
|
588
613
|
"Egyh": "کاهنی مصری",
|
|
589
614
|
"Egyp": "هیروگلیف مصری",
|
|
590
|
-
"Elba": "Elba",
|
|
591
|
-
"Elym": "Elym",
|
|
592
615
|
"Ethi": "اتیوپیایی",
|
|
593
616
|
"Geok": "گرجی خوتسوری",
|
|
594
617
|
"Geor": "گرجی",
|
|
595
618
|
"Glag": "گلاگولیتی",
|
|
596
|
-
"Gong": "Gong",
|
|
597
|
-
"Gonm": "Gonm",
|
|
598
619
|
"Goth": "گوتی",
|
|
599
|
-
"Gran": "Gran",
|
|
600
620
|
"Grek": "یونانی",
|
|
601
621
|
"Gujr": "گجراتی",
|
|
602
622
|
"Guru": "گورومخی",
|
|
@@ -608,12 +628,9 @@
|
|
|
608
628
|
"Hans-alt-stand-alone": "هان سادهشده",
|
|
609
629
|
"Hant": "سنتی",
|
|
610
630
|
"Hant-alt-stand-alone": "هان سنتی",
|
|
611
|
-
"Hatr": "Hatr",
|
|
612
631
|
"Hebr": "عبری",
|
|
613
632
|
"Hira": "هیراگانا",
|
|
614
633
|
"Hluw": "هیروگلیف آناتولی",
|
|
615
|
-
"Hmng": "Hmng",
|
|
616
|
-
"Hmnp": "Hmnp",
|
|
617
634
|
"Hrkt": "هجانگاری ژاپنی",
|
|
618
635
|
"Hung": "مجاری باستان",
|
|
619
636
|
"Inds": "ایندوس",
|
|
@@ -623,11 +640,8 @@
|
|
|
623
640
|
"Jpan": "ژاپنی",
|
|
624
641
|
"Kali": "کایالی",
|
|
625
642
|
"Kana": "کاتاکانا",
|
|
626
|
-
"Kawi": "Kawi",
|
|
627
|
-
"Khar": "Khar",
|
|
628
643
|
"Khmr": "خمری",
|
|
629
644
|
"Khoj": "خواجکی",
|
|
630
|
-
"Kits": "Kits",
|
|
631
645
|
"Knda": "کانارا",
|
|
632
646
|
"Kore": "کرهای",
|
|
633
647
|
"Kthi": "کثی",
|
|
@@ -636,86 +650,51 @@
|
|
|
636
650
|
"Latf": "لاتینی فراکتور",
|
|
637
651
|
"Latg": "لاتینی گیلی",
|
|
638
652
|
"Latn": "لاتین",
|
|
639
|
-
"Lepc": "Lepc",
|
|
640
653
|
"Limb": "لیمبایی",
|
|
641
654
|
"Lina": "خطی الف",
|
|
642
655
|
"Linb": "خطی ب",
|
|
643
|
-
"Lisu": "Lisu",
|
|
644
656
|
"Lyci": "لسیایی",
|
|
645
657
|
"Lydi": "لدیایی",
|
|
646
|
-
"Mahj": "Mahj",
|
|
647
|
-
"Maka": "Maka",
|
|
648
658
|
"Mand": "مندهای",
|
|
649
659
|
"Mani": "مانوی",
|
|
650
|
-
"Marc": "Marc",
|
|
651
660
|
"Maya": "هیروگلیف مایایی",
|
|
652
|
-
"Medf": "Medf",
|
|
653
|
-
"Mend": "Mend",
|
|
654
|
-
"Merc": "Merc",
|
|
655
661
|
"Mero": "مروییتی",
|
|
656
662
|
"Mlym": "مالایالامی",
|
|
657
|
-
"Modi": "Modi",
|
|
658
663
|
"Mong": "مغولی",
|
|
659
664
|
"Moon": "مونی",
|
|
660
|
-
"Mroo": "Mroo",
|
|
661
665
|
"Mtei": "مایک میتی",
|
|
662
|
-
"Mult": "Mult",
|
|
663
666
|
"Mymr": "میانمار",
|
|
664
|
-
"Nagm": "Nagm",
|
|
665
|
-
"Nand": "Nand",
|
|
666
667
|
"Narb": "عربی شمالی باستان",
|
|
667
668
|
"Nbat": "نبطی",
|
|
668
|
-
"
|
|
669
|
-
"Nkoo": "Nkoo",
|
|
670
|
-
"Nshu": "Nshu",
|
|
669
|
+
"Nkoo": "اِن کو",
|
|
671
670
|
"Ogam": "اوگامی",
|
|
672
|
-
"Olck": "
|
|
671
|
+
"Olck": "اول چیکی",
|
|
673
672
|
"Orkh": "اورخونی",
|
|
674
673
|
"Orya": "اودیه",
|
|
675
|
-
"Osge": "Osge",
|
|
676
|
-
"Osma": "Osma",
|
|
677
|
-
"Ougr": "Ougr",
|
|
678
674
|
"Palm": "پالمیرایی",
|
|
679
|
-
"Pauc": "Pauc",
|
|
680
675
|
"Perm": "پرمی باستان",
|
|
681
|
-
"Phag": "Phag",
|
|
682
676
|
"Phli": "پهلوی کتیبهای",
|
|
683
677
|
"Phlp": "پهلوی زبوری",
|
|
684
678
|
"Phlv": "پهلوی کتابی",
|
|
685
679
|
"Phnx": "فنیقی",
|
|
686
|
-
"Plrd": "Plrd",
|
|
687
680
|
"Prti": "پارتی کتیبهای",
|
|
688
|
-
"Qaag": "Qaag",
|
|
689
681
|
"Rjng": "رجنگی",
|
|
690
|
-
"Rohg": "
|
|
682
|
+
"Rohg": "حنیفی",
|
|
691
683
|
"Runr": "رونی",
|
|
692
684
|
"Samr": "سامری",
|
|
693
685
|
"Sara": "ساراتی",
|
|
694
686
|
"Sarb": "عربی جنوبی باستان",
|
|
695
687
|
"Saur": "سوراشترایی",
|
|
696
|
-
"Sgnw": "Sgnw",
|
|
697
688
|
"Shaw": "شاوی",
|
|
698
|
-
"Shrd": "Shrd",
|
|
699
|
-
"Sidd": "Sidd",
|
|
700
|
-
"Sind": "Sind",
|
|
701
689
|
"Sinh": "سینهالی",
|
|
702
|
-
"
|
|
703
|
-
"Sogo": "Sogo",
|
|
704
|
-
"Sora": "Sora",
|
|
705
|
-
"Soyo": "Soyo",
|
|
706
|
-
"Sund": "Sund",
|
|
690
|
+
"Sund": "سوندانی",
|
|
707
691
|
"Sylo": "سیلوتی نگاری",
|
|
708
692
|
"Syrc": "سریانی",
|
|
709
693
|
"Syre": "سریانی سطرنجیلی",
|
|
710
694
|
"Syrj": "سریانی غربی",
|
|
711
695
|
"Syrn": "سریانی شرقی",
|
|
712
696
|
"Tagb": "تگبنوایی",
|
|
713
|
-
"Takr": "Takr",
|
|
714
|
-
"Tale": "Tale",
|
|
715
|
-
"Talu": "Talu",
|
|
716
697
|
"Taml": "تامیلی",
|
|
717
|
-
"Tang": "Tang",
|
|
718
|
-
"Tavt": "Tavt",
|
|
719
698
|
"Telu": "تلوگویی",
|
|
720
699
|
"Teng": "تنگوار",
|
|
721
700
|
"Tfng": "تیفیناغی",
|
|
@@ -723,20 +702,12 @@
|
|
|
723
702
|
"Thaa": "تانا",
|
|
724
703
|
"Thai": "تایلندی",
|
|
725
704
|
"Tibt": "تبتی",
|
|
726
|
-
"Tirh": "Tirh",
|
|
727
|
-
"Tnsa": "Tnsa",
|
|
728
|
-
"Toto": "Toto",
|
|
729
705
|
"Ugar": "اوگاریتی",
|
|
730
706
|
"Vaii": "ویایی",
|
|
731
707
|
"Visp": "گفتار قابل مشاهده",
|
|
732
|
-
"Vith": "Vith",
|
|
733
|
-
"Wara": "Wara",
|
|
734
|
-
"Wcho": "Wcho",
|
|
735
708
|
"Xpeo": "فارسی باستان",
|
|
736
709
|
"Xsux": "میخی سومری‐اکدی",
|
|
737
|
-
"Yezi": "Yezi",
|
|
738
710
|
"Yiii": "یی",
|
|
739
|
-
"Zanb": "Zanb",
|
|
740
711
|
"Zinh": "موروثی",
|
|
741
712
|
"Zmth": "علائم ریاضی",
|
|
742
713
|
"Zsye": "اموجی",
|
|
@@ -963,6 +934,7 @@
|
|
|
963
934
|
"NR": "نائورو",
|
|
964
935
|
"NU": "نیوئه",
|
|
965
936
|
"NZ": "نیوزیلند",
|
|
937
|
+
"NZ-alt-variant": "آتروا نیوزیلند",
|
|
966
938
|
"OM": "عمان",
|
|
967
939
|
"PA": "پاناما",
|
|
968
940
|
"PE": "پرو",
|
|
@@ -1023,6 +995,7 @@
|
|
|
1023
995
|
"TN": "تونس",
|
|
1024
996
|
"TO": "تونگا",
|
|
1025
997
|
"TR": "ترکیه",
|
|
998
|
+
"TR-alt-variant": "ترکیه",
|
|
1026
999
|
"TT": "ترینیداد و توباگو",
|
|
1027
1000
|
"TV": "تووالو",
|
|
1028
1001
|
"TW": "تایوان",
|
|
@@ -3897,8 +3870,8 @@
|
|
|
3897
3870
|
"relative-type-1": "فردا",
|
|
3898
3871
|
"relative-type-2": "پسفردا",
|
|
3899
3872
|
"relativeTime-type-future": {
|
|
3900
|
-
"relativeTimePattern-count-one": "{0} روز
|
|
3901
|
-
"relativeTimePattern-count-other": "{0} روز
|
|
3873
|
+
"relativeTimePattern-count-one": "{0} روز دیگر",
|
|
3874
|
+
"relativeTimePattern-count-other": "{0} روز دیگر"
|
|
3902
3875
|
},
|
|
3903
3876
|
"relativeTime-type-past": {
|
|
3904
3877
|
"relativeTimePattern-count-one": "{0} روز پیش",
|
|
@@ -3913,8 +3886,8 @@
|
|
|
3913
3886
|
"relative-type-1": "فردا",
|
|
3914
3887
|
"relative-type-2": "پسفردا",
|
|
3915
3888
|
"relativeTime-type-future": {
|
|
3916
|
-
"relativeTimePattern-count-one": "{0} روز
|
|
3917
|
-
"relativeTimePattern-count-other": "{0} روز
|
|
3889
|
+
"relativeTimePattern-count-one": "{0} روز دیگر",
|
|
3890
|
+
"relativeTimePattern-count-other": "{0} روز دیگر"
|
|
3918
3891
|
},
|
|
3919
3892
|
"relativeTime-type-past": {
|
|
3920
3893
|
"relativeTimePattern-count-one": "{0} روز پیش",
|
|
@@ -4149,6 +4122,7 @@
|
|
|
4149
4122
|
"Cayman": "کیمن",
|
|
4150
4123
|
"Chicago": "شیکاگو",
|
|
4151
4124
|
"Chihuahua": "چیواوا",
|
|
4125
|
+
"Ciudad_Juarez": "سیوداد خوارز",
|
|
4152
4126
|
"Costa_Rica": "کاستاریکا",
|
|
4153
4127
|
"Creston": "کرستون",
|
|
4154
4128
|
"Cuiaba": "کویاوا",
|
|
@@ -4493,7 +4467,7 @@
|
|
|
4493
4467
|
"Guadalcanal": "گوادالکانال",
|
|
4494
4468
|
"Guam": "گوام",
|
|
4495
4469
|
"Honolulu": "هونولولو",
|
|
4496
|
-
"Kanton": "
|
|
4470
|
+
"Kanton": "کانتون",
|
|
4497
4471
|
"Kiritimati": "کریتیماتی",
|
|
4498
4472
|
"Kosrae": "کوسرای",
|
|
4499
4473
|
"Kwajalein": "کواجیلین",
|
|
@@ -4787,10 +4761,12 @@
|
|
|
4787
4761
|
},
|
|
4788
4762
|
"power2": {
|
|
4789
4763
|
"compoundUnitPattern1": "{0}²",
|
|
4764
|
+
"compoundUnitPattern1-count-one": "{0}²",
|
|
4790
4765
|
"compoundUnitPattern1-count-other": "{0}²"
|
|
4791
4766
|
},
|
|
4792
4767
|
"power3": {
|
|
4793
4768
|
"compoundUnitPattern1": "{0}³",
|
|
4769
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
4794
4770
|
"compoundUnitPattern1-count-other": "{0}³"
|
|
4795
4771
|
},
|
|
4796
4772
|
"times": {
|
|
@@ -4908,6 +4884,7 @@
|
|
|
4908
4884
|
},
|
|
4909
4885
|
"concentr-permillion": {
|
|
4910
4886
|
"displayName": "بخش/میلیون",
|
|
4887
|
+
"unitPattern-count-one": "{0} ppm",
|
|
4911
4888
|
"unitPattern-count-other": "{0} ppm"
|
|
4912
4889
|
},
|
|
4913
4890
|
"concentr-percent": {
|
|
@@ -5021,6 +4998,12 @@
|
|
|
5021
4998
|
"unitPattern-count-other": "{0} سال",
|
|
5022
4999
|
"perUnitPattern": "{0}/سال"
|
|
5023
5000
|
},
|
|
5001
|
+
"duration-quarter": {
|
|
5002
|
+
"displayName": "سهماه",
|
|
5003
|
+
"unitPattern-count-one": "{0} سهماهه",
|
|
5004
|
+
"unitPattern-count-other": "{0} سهماهه",
|
|
5005
|
+
"perUnitPattern": "{0}/سهماه"
|
|
5006
|
+
},
|
|
5024
5007
|
"duration-month": {
|
|
5025
5008
|
"displayName": "ماه",
|
|
5026
5009
|
"unitPattern-count-one": "{0} ماه",
|
|
@@ -5246,7 +5229,7 @@
|
|
|
5246
5229
|
"unitPattern-count-other": "{0} mm"
|
|
5247
5230
|
},
|
|
5248
5231
|
"length-micrometer": {
|
|
5249
|
-
"displayName": "
|
|
5232
|
+
"displayName": "μm",
|
|
5250
5233
|
"unitPattern-count-one": "{0} μm",
|
|
5251
5234
|
"unitPattern-count-other": "{0} μm"
|
|
5252
5235
|
},
|
|
@@ -5334,10 +5317,12 @@
|
|
|
5334
5317
|
},
|
|
5335
5318
|
"light-candela": {
|
|
5336
5319
|
"displayName": "cd",
|
|
5320
|
+
"unitPattern-count-one": "{0} cd",
|
|
5337
5321
|
"unitPattern-count-other": "{0} cd"
|
|
5338
5322
|
},
|
|
5339
5323
|
"light-lumen": {
|
|
5340
5324
|
"displayName": "lm",
|
|
5325
|
+
"unitPattern-count-one": "{0} lm",
|
|
5341
5326
|
"unitPattern-count-other": "{0} lm"
|
|
5342
5327
|
},
|
|
5343
5328
|
"light-solar-luminosity": {
|
|
@@ -5345,14 +5330,14 @@
|
|
|
5345
5330
|
"unitPattern-count-one": "{0} ☉L",
|
|
5346
5331
|
"unitPattern-count-other": "{0} ☉L"
|
|
5347
5332
|
},
|
|
5348
|
-
"mass-
|
|
5333
|
+
"mass-tonne": {
|
|
5349
5334
|
"displayName": "t",
|
|
5350
5335
|
"unitPattern-count-one": "{0} t",
|
|
5351
5336
|
"unitPattern-count-other": "{0} t"
|
|
5352
5337
|
},
|
|
5353
5338
|
"mass-kilogram": {
|
|
5354
5339
|
"displayName": "کیلوگرم",
|
|
5355
|
-
"unitPattern-count-one": "{0}
|
|
5340
|
+
"unitPattern-count-one": "{0} کیلوگرم",
|
|
5356
5341
|
"unitPattern-count-other": "{0} کیلوگرم",
|
|
5357
5342
|
"perUnitPattern": "{0}/kg"
|
|
5358
5343
|
},
|
|
@@ -5364,13 +5349,13 @@
|
|
|
5364
5349
|
},
|
|
5365
5350
|
"mass-milligram": {
|
|
5366
5351
|
"displayName": "mg",
|
|
5367
|
-
"unitPattern-count-one": "{0}
|
|
5368
|
-
"unitPattern-count-other": "{0}
|
|
5352
|
+
"unitPattern-count-one": "{0} میلیگرم",
|
|
5353
|
+
"unitPattern-count-other": "{0} میلیگرم"
|
|
5369
5354
|
},
|
|
5370
5355
|
"mass-microgram": {
|
|
5371
5356
|
"displayName": "μg",
|
|
5372
|
-
"unitPattern-count-one": "{0}
|
|
5373
|
-
"unitPattern-count-other": "{0}
|
|
5357
|
+
"unitPattern-count-one": "{0} میکروگرم",
|
|
5358
|
+
"unitPattern-count-other": "{0} میکروگرم"
|
|
5374
5359
|
},
|
|
5375
5360
|
"mass-ton": {
|
|
5376
5361
|
"displayName": "تن",
|
|
@@ -5686,8 +5671,8 @@
|
|
|
5686
5671
|
},
|
|
5687
5672
|
"volume-teaspoon": {
|
|
5688
5673
|
"displayName": "قاشق چ.",
|
|
5689
|
-
"unitPattern-count-one": "{0}
|
|
5690
|
-
"unitPattern-count-other": "{0}
|
|
5674
|
+
"unitPattern-count-one": "{0} ق.چ.",
|
|
5675
|
+
"unitPattern-count-other": "{0} ق.چ."
|
|
5691
5676
|
},
|
|
5692
5677
|
"volume-barrel": {
|
|
5693
5678
|
"displayName": "بشکه",
|
|
@@ -5700,9 +5685,9 @@
|
|
|
5700
5685
|
"unitPattern-count-other": "{0} ق.دس.خ."
|
|
5701
5686
|
},
|
|
5702
5687
|
"volume-dessert-spoon-imperial": {
|
|
5703
|
-
"displayName": "قاشق دسرخوری
|
|
5704
|
-
"unitPattern-count-one": "{0}
|
|
5705
|
-
"unitPattern-count-other": "{0}
|
|
5688
|
+
"displayName": "قاشق دسرخوری انگلیسی",
|
|
5689
|
+
"unitPattern-count-one": "{0} ق.دس. انگلیسی",
|
|
5690
|
+
"unitPattern-count-other": "{0} ق.دس. انگلیسی"
|
|
5706
5691
|
},
|
|
5707
5692
|
"volume-drop": {
|
|
5708
5693
|
"displayName": "قطره",
|
|
@@ -5720,14 +5705,14 @@
|
|
|
5720
5705
|
"unitPattern-count-other": "{0} گیلاس"
|
|
5721
5706
|
},
|
|
5722
5707
|
"volume-pinch": {
|
|
5723
|
-
"displayName": "
|
|
5708
|
+
"displayName": "سرانگشت",
|
|
5724
5709
|
"unitPattern-count-one": "{0} سرانگشت",
|
|
5725
5710
|
"unitPattern-count-other": "{0} سرانگشت"
|
|
5726
5711
|
},
|
|
5727
5712
|
"volume-quart-imperial": {
|
|
5728
|
-
"displayName": "کوارت
|
|
5729
|
-
"unitPattern-count-one": "{0} کوارت
|
|
5730
|
-
"unitPattern-count-other": "{0} کوارت
|
|
5713
|
+
"displayName": "کوارت انگلیسی",
|
|
5714
|
+
"unitPattern-count-one": "{0} کوارت انگلیسی",
|
|
5715
|
+
"unitPattern-count-other": "{0} کوارت انگلیسی"
|
|
5731
5716
|
},
|
|
5732
5717
|
"coordinateUnit": {
|
|
5733
5718
|
"displayName": "جهت",
|
|
@@ -5838,41 +5823,56 @@
|
|
|
5838
5823
|
},
|
|
5839
5824
|
"eras-gregorian": {
|
|
5840
5825
|
"0": {
|
|
5826
|
+
"_code": "gregory-inverse",
|
|
5827
|
+
"_aliases": "bc bce",
|
|
5841
5828
|
"_end": "0-12-31"
|
|
5842
5829
|
},
|
|
5843
5830
|
"1": {
|
|
5831
|
+
"_code": "gregory",
|
|
5832
|
+
"_aliases": "ad ce",
|
|
5844
5833
|
"_start": "1-01-01"
|
|
5845
5834
|
}
|
|
5846
5835
|
},
|
|
5847
5836
|
"eras-islamic": {
|
|
5848
5837
|
"0": {
|
|
5838
|
+
"_code": "islamic",
|
|
5839
|
+
"_aliases": "ah",
|
|
5849
5840
|
"_start": "622-7-15"
|
|
5850
5841
|
}
|
|
5851
5842
|
},
|
|
5852
5843
|
"eras-persian": {
|
|
5853
5844
|
"0": {
|
|
5845
|
+
"_code": "persian",
|
|
5846
|
+
"_aliases": "ap",
|
|
5854
5847
|
"_start": "622-01-01"
|
|
5855
5848
|
}
|
|
5856
5849
|
},
|
|
5857
5850
|
"eras-buddhist": {
|
|
5858
5851
|
"0": {
|
|
5852
|
+
"_code": "buddhist",
|
|
5853
|
+
"_aliases": "be",
|
|
5859
5854
|
"_start": "-542-01-01"
|
|
5860
5855
|
}
|
|
5861
5856
|
},
|
|
5862
5857
|
"eras-japanese": {
|
|
5863
5858
|
"232": {
|
|
5859
|
+
"_code": "meiji",
|
|
5864
5860
|
"_start": "1868-9-8"
|
|
5865
5861
|
},
|
|
5866
5862
|
"233": {
|
|
5863
|
+
"_code": "taisho",
|
|
5867
5864
|
"_start": "1912-7-30"
|
|
5868
5865
|
},
|
|
5869
5866
|
"234": {
|
|
5867
|
+
"_code": "showa",
|
|
5870
5868
|
"_start": "1926-12-25"
|
|
5871
5869
|
},
|
|
5872
5870
|
"235": {
|
|
5871
|
+
"_code": "heisei",
|
|
5873
5872
|
"_start": "1989-1-8"
|
|
5874
5873
|
},
|
|
5875
5874
|
"236": {
|
|
5875
|
+
"_code": "reiwa",
|
|
5876
5876
|
"_start": "2019-5-1"
|
|
5877
5877
|
}
|
|
5878
5878
|
},
|