@openui5/sap.ui.core 1.120.10 → 1.121.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/.eslintrc.json +5 -3
- package/.reuse/dep5 +23 -21
- package/THIRDPARTY.txt +6 -43
- package/package.json +1 -1
- package/src/jquery.sap.global.js +7 -7
- package/src/jquery.sap.properties.js +1 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +1 -1
- package/src/jquery.sap.storage.js +3 -3
- package/src/jquery.sap.trace.js +1 -1
- package/src/sap/base/Event.js +1 -1
- package/src/sap/base/Eventing.js +1 -1
- package/src/sap/base/config.js +1 -1
- package/src/sap/base/future.js +57 -0
- package/src/sap/base/i18n/Formatting.js +7 -5
- package/src/sap/base/i18n/LanguageTag.js +2 -2
- package/src/sap/base/i18n/Localization.js +2 -2
- package/src/sap/base/i18n/ResourceBundle.js +115 -9
- package/src/sap/base/i18n/date/TimezoneUtils.js +5 -6
- package/src/sap/base/util/now.js +8 -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/ui/Device.js +6 -3
- package/src/sap/ui/Global.js +14 -13
- package/src/sap/ui/VersionInfo.js +15 -3
- package/src/sap/ui/base/BindingParser.js +25 -15
- package/src/sap/ui/base/DataType.js +21 -13
- package/src/sap/ui/base/Event.js +1 -1
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +5 -0
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +25 -14
- package/src/sap/ui/base/ManagedObjectMetadata.js +1 -1
- package/src/sap/ui/base/Metadata.js +28 -13
- package/src/sap/ui/base/Object.js +1 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +8 -7
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/Component.js +133 -56
- package/src/sap/ui/core/ComponentContainer.js +14 -17
- package/src/sap/ui/core/ComponentMetadata.js +7 -3
- package/src/sap/ui/core/ComponentSupport.js +32 -13
- package/src/sap/ui/core/Configuration.js +1 -1
- package/src/sap/ui/core/Control.js +34 -19
- package/src/sap/ui/core/Core.js +42 -37
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/Element.js +6 -8
- package/src/sap/ui/core/ElementMetadata.js +35 -20
- package/src/sap/ui/core/EnabledPropagator.js +1 -1
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/ExtensionPoint.js +18 -11
- package/src/sap/ui/core/Fragment.js +69 -28
- package/src/sap/ui/core/HTML.js +3 -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 +1 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +145 -125
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +6 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +9 -2
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +19 -12
- 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 +2 -2
- package/src/sap/ui/core/LocaleData.js +16 -15
- package/src/sap/ui/core/Manifest.js +28 -28
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Messaging.js +4 -4
- package/src/sap/ui/core/Popup.js +1 -47
- package/src/sap/ui/core/RenderManager.js +1 -1
- package/src/sap/ui/core/Renderer.js +12 -7
- package/src/sap/ui/core/Rendering.js +49 -42
- package/src/sap/ui/core/ResizeHandler.js +1 -1
- package/src/sap/ui/core/ScrollBar.js +7 -7
- package/src/sap/ui/core/ScrollBarRenderer.js +3 -3
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +1 -0
- package/src/sap/ui/core/ShortcutHintsMixin.js +1 -1
- package/src/sap/ui/core/StashedControlSupport.js +39 -40
- package/src/sap/ui/core/Theming.js +15 -25
- 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 -3
- package/src/sap/ui/core/UIComponent.js +6 -4
- 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 +2 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +44 -23
- package/src/sap/ui/core/cache/CacheManagerNOP.js +0 -1
- package/src/sap/ui/core/cldr/ar.json +47 -88
- package/src/sap/ui/core/cldr/ar_EG.json +47 -88
- package/src/sap/ui/core/cldr/ar_SA.json +48 -89
- package/src/sap/ui/core/cldr/bg.json +44 -156
- package/src/sap/ui/core/cldr/ca.json +265 -370
- package/src/sap/ui/core/cldr/cnr.json +545 -476
- package/src/sap/ui/core/cldr/cs.json +33 -467
- package/src/sap/ui/core/cldr/cy.json +36 -762
- package/src/sap/ui/core/cldr/da.json +43 -146
- package/src/sap/ui/core/cldr/de.json +47 -149
- package/src/sap/ui/core/cldr/de_AT.json +48 -150
- package/src/sap/ui/core/cldr/de_CH.json +86 -187
- package/src/sap/ui/core/cldr/el.json +28 -96
- package/src/sap/ui/core/cldr/el_CY.json +28 -96
- package/src/sap/ui/core/cldr/en.json +66 -27
- package/src/sap/ui/core/cldr/en_AU.json +314 -171
- package/src/sap/ui/core/cldr/en_GB.json +167 -33
- package/src/sap/ui/core/cldr/en_HK.json +57 -30
- package/src/sap/ui/core/cldr/en_IE.json +54 -27
- package/src/sap/ui/core/cldr/en_IN.json +139 -28
- package/src/sap/ui/core/cldr/en_NZ.json +55 -28
- package/src/sap/ui/core/cldr/en_PG.json +49 -22
- package/src/sap/ui/core/cldr/en_SG.json +51 -24
- package/src/sap/ui/core/cldr/en_ZA.json +61 -34
- package/src/sap/ui/core/cldr/es.json +25 -130
- package/src/sap/ui/core/cldr/es_AR.json +90 -191
- package/src/sap/ui/core/cldr/es_BO.json +63 -165
- package/src/sap/ui/core/cldr/es_CL.json +100 -202
- package/src/sap/ui/core/cldr/es_CO.json +54 -156
- package/src/sap/ui/core/cldr/es_MX.json +163 -258
- package/src/sap/ui/core/cldr/es_PE.json +65 -167
- package/src/sap/ui/core/cldr/es_UY.json +65 -167
- package/src/sap/ui/core/cldr/es_VE.json +43 -145
- package/src/sap/ui/core/cldr/et.json +44 -144
- package/src/sap/ui/core/cldr/fa.json +75 -80
- package/src/sap/ui/core/cldr/fi.json +38 -142
- package/src/sap/ui/core/cldr/fr.json +28 -22
- package/src/sap/ui/core/cldr/fr_BE.json +31 -25
- package/src/sap/ui/core/cldr/fr_CA.json +76 -69
- package/src/sap/ui/core/cldr/fr_CH.json +41 -35
- package/src/sap/ui/core/cldr/fr_LU.json +28 -22
- package/src/sap/ui/core/cldr/he.json +37 -426
- package/src/sap/ui/core/cldr/hi.json +40 -83
- package/src/sap/ui/core/cldr/hr.json +31 -286
- package/src/sap/ui/core/cldr/hu.json +46 -140
- package/src/sap/ui/core/cldr/id.json +31 -13
- package/src/sap/ui/core/cldr/it.json +59 -182
- package/src/sap/ui/core/cldr/it_CH.json +65 -188
- package/src/sap/ui/core/cldr/ja.json +103 -13
- package/src/sap/ui/core/cldr/kk.json +79 -67
- package/src/sap/ui/core/cldr/ko.json +29 -10
- package/src/sap/ui/core/cldr/lt.json +24 -366
- package/src/sap/ui/core/cldr/lv.json +30 -277
- package/src/sap/ui/core/cldr/mk.json +103 -198
- package/src/sap/ui/core/cldr/ms.json +30 -10
- package/src/sap/ui/core/cldr/nb.json +32 -133
- package/src/sap/ui/core/cldr/nl.json +37 -167
- package/src/sap/ui/core/cldr/nl_BE.json +108 -238
- package/src/sap/ui/core/cldr/pl.json +27 -384
- package/src/sap/ui/core/cldr/pt.json +37 -145
- package/src/sap/ui/core/cldr/pt_PT.json +32 -133
- package/src/sap/ui/core/cldr/ro.json +30 -289
- package/src/sap/ui/core/cldr/ru.json +27 -75
- package/src/sap/ui/core/cldr/ru_UA.json +27 -75
- package/src/sap/ui/core/cldr/sk.json +32 -438
- package/src/sap/ui/core/cldr/sl.json +131 -535
- package/src/sap/ui/core/cldr/sr.json +41 -332
- package/src/sap/ui/core/cldr/sr_Latn.json +192 -483
- package/src/sap/ui/core/cldr/sv.json +49 -137
- package/src/sap/ui/core/cldr/th.json +39 -20
- package/src/sap/ui/core/cldr/tr.json +33 -125
- package/src/sap/ui/core/cldr/uk.json +310 -252
- package/src/sap/ui/core/cldr/vi.json +458 -331
- package/src/sap/ui/core/cldr/zh_CN.json +39 -17
- package/src/sap/ui/core/cldr/zh_HK.json +49 -27
- package/src/sap/ui/core/cldr/zh_SG.json +53 -31
- package/src/sap/ui/core/cldr/zh_TW.json +31 -14
- package/src/sap/ui/core/date/CalendarUtils.js +11 -9
- package/src/sap/ui/core/date/Islamic.js +7 -2
- package/src/sap/ui/core/date/UI5Date.js +86 -34
- package/src/sap/ui/core/date/UniversalDate.js +16 -26
- package/src/sap/ui/core/date/UniversalDateUtils.js +14 -14
- 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 +4 -4
- 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 +37 -45
- package/src/sap/ui/core/format/FileSizeFormat.js +15 -16
- package/src/sap/ui/core/format/FormatUtils.js +36 -0
- package/src/sap/ui/core/format/ListFormat.js +4 -4
- package/src/sap/ui/core/format/NumberFormat.js +288 -125
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +1 -1
- package/src/sap/ui/core/hyphenation/Hyphenation.js +16 -15
- package/src/sap/ui/core/library.js +26 -9
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +5 -5
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageMixin.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/messagebundle_mk.properties +1 -1
- package/src/sap/ui/core/mvc/Controller.js +49 -19
- package/src/sap/ui/core/mvc/ControllerExtension.js +5 -4
- package/src/sap/ui/core/mvc/ControllerExtensionProvider.js +2 -2
- package/src/sap/ui/core/mvc/ControllerMetadata.js +3 -3
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +6 -8
- package/src/sap/ui/core/mvc/HTMLView.js +1 -1
- package/src/sap/ui/core/mvc/JSONView.js +1 -1
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +8 -5
- package/src/sap/ui/core/mvc/XMLView.js +7 -5
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +1 -1
- package/src/sap/ui/core/plugin/LessSupport.js +1 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +5 -3
- package/src/sap/ui/core/postmessage/confirmationDialog.js +3 -3
- package/src/sap/ui/core/routing/HashChanger.js +21 -10
- package/src/sap/ui/core/routing/History.js +5 -5
- package/src/sap/ui/core/routing/Route.js +9 -7
- package/src/sap/ui/core/routing/Router.js +13 -7
- package/src/sap/ui/core/routing/Target.js +1 -1
- package/src/sap/ui/core/routing/Targets.js +5 -4
- package/src/sap/ui/core/routing/async/Target.js +10 -7
- package/src/sap/ui/core/routing/async/Targets.js +3 -3
- package/src/sap/ui/core/routing/sync/Target.js +4 -1
- package/src/sap/ui/core/rules/Config.support.js +3 -3
- 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/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +9 -12
- package/src/sap/ui/core/support/Support.js +2 -2
- package/src/sap/ui/core/support/ToolsAPI.js +19 -6
- package/src/sap/ui/core/support/controls/InteractionTree.js +7 -7
- package/src/sap/ui/core/support/plugins/Breakpoint.js +8 -5
- package/src/sap/ui/core/support/plugins/ControlTree.js +26 -15
- package/src/sap/ui/core/support/plugins/Debugging.js +9 -6
- package/src/sap/ui/core/support/plugins/Interaction.js +9 -7
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +6 -6
- package/src/sap/ui/core/support/plugins/Selector.js +1 -1
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +4 -3
- package/src/sap/ui/core/support/plugins/ViewInfo.js +4 -2
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +4 -4
- package/src/sap/ui/core/support/trace/E2eTraceLib.js +5 -5
- package/src/sap/ui/core/themes/base/Icon.less +2 -1
- package/src/sap/ui/core/themes/base/base.less +370 -371
- package/src/sap/ui/core/theming/Parameters.js +9 -8
- package/src/sap/ui/core/theming/ThemeHelper.js +4 -3
- package/src/sap/ui/core/theming/ThemeManager.js +8 -6
- 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 +6 -3
- 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 +23 -13
- package/src/sap/ui/core/util/PasteHelper.js +3 -3
- package/src/sap/ui/core/util/_LocalizationHelper.js +10 -1
- package/src/sap/ui/core/util/reflection/BaseTreeModifier.js +51 -5
- package/src/sap/ui/core/util/reflection/JsControlTreeModifier.js +2 -2
- package/src/sap/ui/core/util/reflection/XmlTreeModifier.js +1 -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 +1 -1
- 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 +6 -6
- package/src/sap/ui/debug/DebugEnv.js +1 -1
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/dom/isBehindOtherElement.js +0 -1
- package/src/sap/ui/events/isMouseEventDelayed.js +6 -12
- package/src/sap/ui/events/jquery/EventSimulation.js +4 -3
- package/src/sap/ui/events/jquery/EventTriggerHook.js +2 -3
- package/src/sap/ui/model/Binding.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +2 -0
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +1 -0
- 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 +1 -1
- package/src/sap/ui/model/Filter.js +34 -4
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +6 -3
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +6 -2
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/Sorter.js +4 -4
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/_Helper.js +4 -2
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +9 -0
- package/src/sap/ui/model/json/JSONModel.js +6 -2
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +12 -7
- package/src/sap/ui/model/odata/ODataAnnotations.js +4 -4
- package/src/sap/ui/model/odata/ODataMessageParser.js +4 -3
- package/src/sap/ui/model/odata/ODataMetaModel.js +2 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +34 -4
- package/src/sap/ui/model/odata/ODataModel.js +5 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBindingAdapter.js +1 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +4 -2
- package/src/sap/ui/model/odata/ODataUtils.js +166 -131
- package/src/sap/ui/model/odata/type/Boolean.js +9 -7
- 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 +5 -4
- package/src/sap/ui/model/odata/type/DateTime.js +2 -2
- package/src/sap/ui/model/odata/type/DateTimeBase.js +4 -4
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +4 -3
- package/src/sap/ui/model/odata/type/Decimal.js +5 -5
- package/src/sap/ui/model/odata/type/Double.js +4 -3
- package/src/sap/ui/model/odata/type/Guid.js +4 -3
- package/src/sap/ui/model/odata/type/Int.js +4 -4
- 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 +4 -4
- 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 +4 -3
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +6 -5
- package/src/sap/ui/model/odata/type/Time.js +4 -4
- package/src/sap/ui/model/odata/type/TimeOfDay.js +5 -4
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/type/UnitMixin.js +3 -2
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +4 -4
- package/src/sap/ui/model/odata/v2/ODataModel.js +55 -25
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +5 -4
- package/src/sap/ui/model/odata/v4/Context.js +20 -7
- package/src/sap/ui/model/odata/v4/ODataBinding.js +14 -10
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +8 -5
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +56 -33
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +7 -4
- package/src/sap/ui/model/odata/v4/ODataModel.js +25 -37
- package/src/sap/ui/model/odata/v4/ODataParentBinding.js +10 -8
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +9 -2
- package/src/sap/ui/model/odata/v4/_AnnotationHelperExpression.js +4 -4
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +195 -59
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +16 -6
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +22 -15
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +19 -11
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +20 -11
- package/src/sap/ui/model/odata/v4/lib/_TreeState.js +122 -0
- package/src/sap/ui/model/resource/ResourceModel.js +1 -1
- package/src/sap/ui/model/type/Boolean.js +4 -4
- package/src/sap/ui/model/type/Currency.js +5 -5
- package/src/sap/ui/model/type/Date.js +5 -5
- package/src/sap/ui/model/type/DateInterval.js +6 -5
- 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 +5 -4
- package/src/sap/ui/model/type/Float.js +5 -5
- package/src/sap/ui/model/type/Integer.js +6 -6
- package/src/sap/ui/model/type/String.js +4 -3
- 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 +8 -7
- package/src/sap/ui/model/xml/XMLModel.js +11 -3
- package/src/sap/ui/performance/trace/Interaction.js +8 -16
- package/src/sap/ui/performance/trace/initTraces.js +1 -1
- package/src/sap/ui/qunit/qunit-junit.js +415 -49
- package/src/sap/ui/qunit/utils/ControlIterator.js +4 -4
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +3 -2
- package/src/sap/ui/qunit/utils/nextUIUpdate.js +15 -5
- package/src/sap/ui/test/OpaBuilder.js +3 -1
- package/src/sap/ui/test/OpaPlugin.js +103 -10
- package/src/sap/ui/test/autowaiter/_UIUpdatesWaiter.js +4 -4
- package/src/sap/ui/test/autowaiter/_navigationContainerWaiter.js +3 -3
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/launchers/iFrameLauncher.js +18 -6
- package/src/sap/ui/test/matchers/Descendant.js +2 -1
- package/src/sap/ui/test/matchers/I18NText.js +6 -2
- package/src/sap/ui/test/matchers/Interactable.js +2 -3
- package/src/sap/ui/test/matchers/LabelFor.js +5 -3
- package/src/sap/ui/test/matchers/Matcher.js +20 -0
- package/src/sap/ui/test/matchers/Sibling.js +2 -1
- package/src/sap/ui/test/matchers/_Visitor.js +2 -4
- package/src/sap/ui/test/qunitPause.js +6 -4
- package/src/sap/ui/test/selectors/_ControlSelectorGenerator.js +4 -3
- package/src/sap/ui/test/selectors/_Selector.js +3 -3
- package/src/sap/ui/test/starter/_setupAndStart.js +5 -18
- package/src/sap/ui/test/starter/_utils.js +15 -1
- package/src/sap/ui/test/starter/createSuite.js +2 -0
- package/src/sap/ui/thirdparty/RequestRecorder.js +1 -1
- package/src/sap/ui/thirdparty/crossroads.js +3 -0
- package/src/sap/ui/thirdparty/qunit-2.js +1 -2
- package/src/sap/ui/thirdparty/qunit-reporter-junit.js +30 -8
- package/src/sap/ui/thirdparty/qunit.js +1 -2
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +18 -4
- package/src/ui5loader.js +15 -4
- package/test/sap/ui/core/DateFormat.controller.js +3 -3
- package/test/sap/ui/core/ILabelableInterface.html +21 -0
- package/test/sap/ui/core/ILabelableInterface.js +81 -0
- package/test/sap/ui/core/NumberFormat.controller.js +4 -4
- package/test/sap/ui/core/Strings.controller.js +4 -4
- package/test/sap/ui/core/demokit/docuindex.json +8 -2
- package/test/sap/ui/core/demokit/sample/MessageManager/ODataBackendMessagesComp/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/css/style.css +3 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/categories/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/products/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/reuse/suppliers/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/Component.js +20 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Home.controller.js +14 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/controller/Next.controller.js +21 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/manifest.json +94 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentDesktop.fragment.js +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeContentMobile.fragment.js +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/HomeView.js +45 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/Next.view.xml +15 -0
- package/test/sap/ui/core/demokit/sample/View/navigationTypedView/view/RootView.js +22 -0
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Opa.qunit.js +5 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/Opa.qunit.js +8 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/ValueHelp.js +38 -35
- package/test/sap/ui/core/demokit/sample/common/Helper.js +7 -7
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +1 -1
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +5 -3
- package/test/sap/ui/core/demokit/sample/matcher/BindingPath/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/Descendant/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/I18NText/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/matcher/LabelFor/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTime/DateTime.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v2/DateTimeOffset/DateTimeOffset.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v2/Time/Time.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/Date/Date.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/DateTimeOffset/DateTimeOffset.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/types/v4/TimeOfDay/TimeOfDay.controller.js +3 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +10 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.view.xml +3 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.controller.js +1 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Main.view.xml +6 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/formatRowHighlight.js +20 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +30 -24
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +10 -8
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBinding/Main.controller.js +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Opa.qunit.js +6 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +16 -17
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +8 -14
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +65 -31
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/pages/Main.js +1 -0
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersRTATest/Main.controller.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +1 -1
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/webapp/localService/mockserver.js +1 -1
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +1 -1
- package/test/sap/ui/core/internal/samples/odata/twoFields/Main.controller.js +3 -1
- package/test/sap/ui/core/internal/samples/odata/twoFields/tests/pages/Main.js +3 -2
- package/test/sap/ui/core/internal/samples/odata/v2/Products/Opa.qunit.js +5 -4
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.controller.js +4 -6
- package/test/sap/ui/core/internal/samples/odata/v2/TreeTable/Main.controller.js +6 -5
- package/test/sap/ui/core/qunit/AppCacheBuster.qunit.js +5 -5
- package/test/sap/ui/core/qunit/BindingParser.qunit.js +158 -24
- package/test/sap/ui/core/qunit/BlockLayerUtils.qunit.js +3 -6
- package/test/sap/ui/core/qunit/CalculatedFields.qunit.js +70 -81
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +13 -13
- package/test/sap/ui/core/qunit/ControlDefinition.qunit.js +5 -4
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +1 -1
- package/test/sap/ui/core/qunit/Core.qunit.js +42 -57
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +10 -2
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +2 -2
- package/test/sap/ui/core/qunit/Core_libraryTerminologies.qunit.js +4 -3
- package/test/sap/ui/core/qunit/CustomThemeFallback.qunit.js +2 -3
- package/test/sap/ui/core/qunit/DataBinding.qunit.js +125 -65
- package/test/sap/ui/core/qunit/Element_base.qunit.js +4 -1
- package/test/sap/ui/core/qunit/Element_destroy.qunit.js +6 -10
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +54 -43
- package/test/sap/ui/core/qunit/Element_metadata_selector.qunit.js +1 -1
- package/test/sap/ui/core/qunit/EnabledPropagator.qunit.js +3 -2
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +5 -2
- package/test/sap/ui/core/qunit/FieldGroup.qunit.js +3 -2
- package/test/sap/ui/core/qunit/Fragment.qunit.js +18 -2
- package/test/sap/ui/core/qunit/HTML.qunit.js +3 -2
- package/test/sap/ui/core/qunit/Hyphenation.qunit.js +30 -6
- package/test/sap/ui/core/qunit/Icon.qunit.js +4 -3
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +6 -5
- package/test/sap/ui/core/qunit/Lib.qunit.js +155 -14
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +7 -42
- package/test/sap/ui/core/qunit/QUnit.qunit.js +6 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +13 -10
- package/test/sap/ui/core/qunit/{CoreEvents.qunit.js → Rendering.qunit.js} +68 -7
- package/test/sap/ui/core/qunit/ScrollBar.qunit.js +8 -7
- package/test/sap/ui/core/qunit/StashedControlSupport.qunit.js +65 -90
- package/test/sap/ui/core/qunit/StashedControlSupport_unavoidablySync.qunit.js +706 -0
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +49 -37
- package/test/sap/ui/core/qunit/ThemeManager.qunit.js +15 -11
- package/test/sap/ui/core/qunit/ThemeParameters.qunit.js +5 -5
- package/test/sap/ui/core/qunit/ThemeParameters_legacyAPIs.qunit.js +7 -7
- package/test/sap/ui/core/qunit/Theming.qunit.js +174 -1
- package/test/sap/ui/core/qunit/VersionInfo.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/AnalyticalBinding.qunit.js +58 -0
- package/test/sap/ui/core/qunit/analytics/o4aMetadata.js +3 -0
- package/test/sap/ui/core/qunit/app/ThemeClassParameters.qunit.js +4 -4
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.html +1 -1
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +276 -44
- package/test/sap/ui/core/qunit/base/i18n/Localization.qunit.js +173 -26
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +408 -3
- package/test/sap/ui/core/qunit/base/util/now.qunit.js +2 -30
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +6 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +15 -6
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.beforeBootstrap.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithCustomBootTask.qunit.js +1 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithNoJQuery.qunit.js +2 -1
- package/test/sap/ui/core/qunit/bootstrap/CalendarClassLoadingWithCustomBootTask.beforeBootstrap.qunit.js +8 -4
- package/test/sap/ui/core/qunit/bootstrap/{CalendarClassLoadingWithCustomBootTaskAndPreload.beforeBootstrap.qunit.js → CalendarClassLoadingWithCustomBootTask.beforeBootstrap_legacy.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +32 -28
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.html → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.js → ConfigurationFlexibility_LibConfigured_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibConfigured.qunit.html → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.js → ConfigurationFlexibility_LibLoaded_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibLoaded.qunit.html → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/bootstrap/{ConfigurationFlexibility_LibNotLoaded.qunit.js → ConfigurationFlexibility_LibNotLoaded_legacyAPIs.qunit.js} +5 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration_language_via_URL.qunit.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.beforeBootstrap.qunit.js +2 -2
- package/test/sap/ui/core/qunit/bootstrap/DebugMode.qunit.js +8 -8
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -4
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.qunit.js +11 -10
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +2 -2
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +68 -13
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.html +0 -1
- package/test/sap/ui/core/qunit/component/Component.qunit.js +40 -21
- package/test/sap/ui/core/qunit/component/ComponentSupport.qunit.js +65 -39
- package/test/sap/ui/core/qunit/component/Component_containedInLibrary.qunit.js +25 -6
- package/test/sap/ui/core/qunit/component/Manifest.qunit.js +9 -9
- package/test/sap/ui/core/qunit/component/Metadata.qunit.js +5 -5
- package/test/sap/ui/core/qunit/component/Metadata_unavoidablySync.qunit.js +1 -2
- package/test/sap/ui/core/qunit/component/Models.qunit.js +295 -157
- package/test/sap/ui/core/qunit/component/Models_unavoidablySync.qunit.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib2/library.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/component/testdata/async/lib4/library.js +3 -4
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/i18n/i18n.properties +3 -0
- package/test/sap/ui/core/qunit/component/testdata/inherit/parent/manifest.json +3 -1
- package/test/sap/ui/core/qunit/component/testdata/v2models/parent/Component.js +1 -4
- package/test/sap/ui/core/qunit/component/testdata/v4models/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/cacheTokens/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/v4models/unsupportedVersion/Component.js +1 -2
- package/test/sap/ui/core/qunit/component/testdata/verticalLayout/Component.js +2 -3
- package/test/sap/ui/core/qunit/component/testdata/view/Main.controller.js +1 -1
- package/test/sap/ui/core/qunit/composite/XMLComposite.qunit.js +3 -2
- package/test/sap/ui/core/qunit/csp/ContentSecurityPolicy.qunit.js +0 -1
- package/test/sap/ui/core/qunit/dnd/DragAndDrop.qunit.js +3 -3
- package/test/sap/ui/core/qunit/dnd/DragInfo.qunit.js +2 -1
- package/test/sap/ui/core/qunit/format/FormatUtils.qunit.js +36 -0
- package/test/sap/ui/core/qunit/generic/ControlMemoryLeaks.qunit.js +1 -1
- package/test/sap/ui/core/qunit/generic/DuplicateIdCheck.qunit.js +2 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +6 -6
- package/test/sap/ui/core/qunit/i18n/CalendarUtils.qunit.js +3 -3
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +29 -29
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +6 -6
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +92 -78
- package/test/sap/ui/core/qunit/i18n/UI5Date.qunit.js +199 -33
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +111 -119
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +12 -38
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +1 -1
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +29 -28
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +3 -9
- package/test/sap/ui/core/qunit/internal/testsuite.models.qunit.js +7 -0
- package/test/sap/ui/core/qunit/jquery.sap.events.qunit.js +4 -68
- package/test/sap/ui/core/qunit/json/JSONBinding.qunit.js +4 -6
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +0 -1
- package/test/sap/ui/core/qunit/json/JSONModel.qunit.js +5 -18
- package/test/sap/ui/core/qunit/json/JSONPropertyBinding.qunit.js +15 -23
- package/test/sap/ui/core/qunit/json/JSONTreeBinding.qunit.js +6 -8
- package/test/sap/ui/core/qunit/json/JSONTwoWay.qunit.js +11 -13
- package/test/sap/ui/core/qunit/loader/asyncMode.qunit.html +0 -2
- package/test/sap/ui/core/qunit/loader/asyncMode.qunit.js +40 -34
- package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.html → asyncMode_legacyAPIs.qunit.html} +1 -1
- package/test/sap/ui/core/qunit/loader/{asyncMode_unavoidablySync.qunit.js → asyncMode_legacyAPIs.qunit.js} +33 -4
- package/test/sap/ui/core/qunit/loader/conflictWithRequire.qunit.js +16 -16
- package/test/sap/ui/core/qunit/loader/testsuite.loader.qunit.js +2 -2
- package/test/sap/ui/core/qunit/messages/MessageMixin.qunit.js +46 -2
- package/test/sap/ui/core/qunit/mockserver/MockServer.qunit.js +859 -245
- package/test/sap/ui/core/qunit/mockserver/testsuite.mockserver.qunit.js +8 -0
- package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata.xml +3 -0
- package/test/sap/ui/core/qunit/model/FAR_CUSTOMER_LINE_ITEMS.metadata_ItemCustomer.xml +5 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +135 -44
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +10 -10
- package/test/sap/ui/core/qunit/model/_Helper.qunit.js +3 -1
- package/test/sap/ui/core/qunit/mvc/AnyViewAsync.qunit.js +11 -3
- package/test/sap/ui/core/qunit/mvc/AsyncXMLView.qunit.js +5 -5
- package/test/sap/ui/core/qunit/mvc/EventHandlerResolver.qunit.js +73 -47
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +0 -4
- package/test/sap/ui/core/qunit/mvc/XMLView.qunit.js +78 -7
- package/test/sap/ui/core/qunit/mvc/testdata/inner.view.xml +3 -0
- package/test/sap/ui/core/qunit/mvc/testdata/middle.view.xml +8 -0
- package/test/sap/ui/core/qunit/mvc/testdata/outer.view.xml +5 -0
- package/test/sap/ui/core/qunit/mvc/testdata/test.controller.js +1 -1
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +3 -3
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncHTMLView_legacyAPIs.qunit.js +6 -7
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/AsyncXMLView_legacyAPIs.qunit.js +5 -7
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/View_legacyAPIs.qunit.js +46 -1
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLTemplateProcessorRequireXML_legacyAPIs.qunit.js +0 -4
- package/test/sap/ui/core/qunit/mvc_legacyAPIs/XMLView_legacyAPIs.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +60 -62
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/ODataMessageParser.qunit.js +12 -46
- package/test/sap/ui/core/qunit/odata/ODataMessageParserNoFakeService.qunit.js +4 -3
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +7 -0
- package/test/sap/ui/core/qunit/odata/ODataMetadataNoFakeService.qunit.js +40 -0
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +365 -13
- package/test/sap/ui/core/qunit/odata/_AnnotationHelperExpression.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Boolean.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/type/Currency.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/type/Date.qunit.js +11 -11
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +54 -55
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +8 -8
- package/test/sap/ui/core/qunit/odata/type/Decimal.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Double.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Int.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Int64.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/Single.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +12 -12
- package/test/sap/ui/core/qunit/odata/type/Unit.qunit.js +5 -5
- package/test/sap/ui/core/qunit/odata/v2/CanonicalRequests.qunit.js +1 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +580 -130
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +79 -20
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +23 -18
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +24 -0
- package/test/sap/ui/core/qunit/odata/v2/ODataV2Model.qunit.js +25 -203
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModel.qunit.js +55 -192
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelB.qunit.js +47 -261
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/AnnotationHelper.qunit.js +4 -1
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +43 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataBinding.qunit.js +30 -49
- package/test/sap/ui/core/qunit/odata/v4/ODataContextBinding.qunit.js +7 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +142 -30
- package/test/sap/ui/core/qunit/odata/v4/ODataMetaModel.qunit.js +8 -6
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +2317 -470
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +12 -43
- package/test/sap/ui/core/qunit/odata/v4/ODataParentBinding.qunit.js +75 -40
- package/test/sap/ui/core/qunit/odata/v4/ODataPropertyBinding.qunit.js +43 -9
- package/test/sap/ui/core/qunit/odata/v4/ODataUtils.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/v4/data/metadata_special_cases.xml +4 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +381 -182
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +46 -29
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +38 -26
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +38 -10
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +45 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_TreeState.qunit.js +134 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2Requestor.qunit.js +7 -7
- package/test/sap/ui/core/qunit/odata/v4/testsuite.odatav4.qunit.js +1 -0
- package/test/sap/ui/core/qunit/opa/OpaBuilder.qunit.js +3 -1
- package/test/sap/ui/core/qunit/opa/RecordReplay.qunit.js +0 -1
- package/test/sap/ui/core/qunit/opa/_ControlFinder.qunit.js +5 -1
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +0 -1
- package/test/sap/ui/core/qunit/opa/actions/Press.qunit.js +4 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_XHRWaiter.js +1 -1
- package/test/sap/ui/core/qunit/opa/autowaiter/_navigationContainerWaiter.js +5 -5
- package/test/sap/ui/core/qunit/opa/fixture/bindingPath.js +20 -12
- package/test/sap/ui/core/qunit/opa/fixture/busyAfterStart.html +4 -4
- package/test/sap/ui/core/qunit/opa/fixture/emptySite.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/emptySiteWithOpaExtensions.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit1.html +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest-qunit2.html +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/failingOpaTest.js +6 -3
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.html +5 -5
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit1.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest-qunit2.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaQUnitTest.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit1.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest-qunit2.html +4 -2
- package/test/sap/ui/core/qunit/opa/fixture/opaReportTest.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit1.html +3 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause-qunit2.html +3 -1
- package/test/sap/ui/core/qunit/opa/fixture/qunitPause.qunit.js +4 -1
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.html +4 -3
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +4 -1
- package/test/sap/ui/core/qunit/opa/matchers/I18NText.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/matchers/LabelFor.qunit.js +2 -1
- package/test/sap/ui/core/qunit/opa/matchers/_Busy.qunit.js +2 -1
- package/test/sap/ui/core/qunit/opa/opa5/iFrame.qunit.js +6 -5
- package/test/sap/ui/core/qunit/opa/opa5/iFrameLogging.qunit.js +26 -6
- package/test/sap/ui/core/qunit/opa/opa5/matchersInFrame.qunit.js +1 -1
- package/test/sap/ui/core/qunit/opa/selectors/_BindingPath.js +2 -2
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorGenerator.js +3 -3
- package/test/sap/ui/core/qunit/opa/selectors/_ControlSelectorValidator.js +5 -2
- package/test/sap/ui/core/qunit/opa/selectors/_DropdownItem.js +3 -2
- package/test/sap/ui/core/qunit/performance/trace/FESR.qunit.js +28 -18
- package/test/sap/ui/core/qunit/performance/trace/Interaction.qunit.js +26 -12
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +5 -8
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +71 -64
- package/test/sap/ui/core/qunit/routing/async/Router.qunit.js +55 -2
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Child/manifest.json +5 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/Parent/manifest.json +5 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/parentRoute/ParentExtended/Component.js +0 -1
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/Component.js +15 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/manifest.json +37 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/MyView1.view.xml +3 -0
- package/test/sap/ui/core/qunit/routing/fixture/router/component/titleChanged/homeRoute/view/RootView.view.xml +3 -0
- package/test/sap/ui/core/qunit/rule/app/syncXHR.qunit.js +9 -0
- package/test/sap/ui/core/qunit/rule/model/modelSupport.qunit.js +4 -7
- package/test/sap/ui/core/qunit/security/Security.qunit.js +133 -0
- package/test/sap/ui/core/qunit/service/Service.qunit.js +13 -10
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/custom-bundle.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib2/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/customBundle/lib3/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/customCss/lib1/library.js +3 -4
- package/test/sap/ui/core/qunit/testdata/libraries/make.js +4 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario1/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario13/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library-preload.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib1/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib10/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib8/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario15/lib9/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario16/embeddingLib/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib2/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario2/lib7/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib1/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario3/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib1/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario4/lib2/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library-preload.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib1/library.js +7 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library-preload.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library-preload.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib3/library.js +5 -4
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario5/lib6/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario6/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario7/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib2/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib3/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library-preload.json +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib4/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario8/lib5/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library-preload.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/scenario9/lib1/library.js +3 -3
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/absoluteBundleUrl/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/notLoadedYet/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/simple/library-preload.js +2 -2
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib1/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib10/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib11/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib12/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib13/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib14/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib15/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib16/library.js +5 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib17/library.js +6 -3
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib2/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib3/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib4/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib5/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib6/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib7/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib8/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/libraries/themeParameters/lib9/library.js +6 -4
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require.view.xml +0 -1
- package/test/sap/ui/core/qunit/testsuite.qunit.js +2 -2
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +35 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.controls.qunit.js +2 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.eventing.qunit.js +0 -11
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +7 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.theming.qunit.js +4 -0
- package/test/sap/ui/core/qunit/types/Date.qunit.js +5 -5
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +92 -99
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +50 -50
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +5 -5
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +74 -4
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +332 -166
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +60 -24
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +21 -21
- package/test/sap/ui/core/qunit/types/Types.qunit.js +51 -48
- package/test/sap/ui/core/qunit/types/ValidationHooks.qunit.js +151 -78
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +7 -17
- package/test/sap/ui/core/qunit/{types → ui5classes}/DataType.qunit.js +174 -17
- package/test/sap/ui/core/qunit/{ManagedObjectMetadata.qunit.js → ui5classes/ManagedObjectMetadata.qunit.js} +0 -1
- package/test/sap/ui/core/qunit/ui5classes/ManagedObjectRegistry.qunit.js +1 -1
- package/test/sap/ui/core/qunit/{ManagedObject_BindingParser.qunit.js → ui5classes/ManagedObject_BindingParser.qunit.js} +1 -1
- package/test/sap/ui/core/qunit/ui5classes/testsuite.ui5classes.qunit.html +11 -0
- package/test/sap/ui/core/qunit/util/LabelEnablement.qunit.js +62 -0
- package/test/sap/ui/core/qunit/util/PasteHelper.qunit.js +5 -5
- package/test/sap/ui/core/qunit/util/Popup.qunit.js +3 -71
- package/test/sap/ui/core/qunit/util/ValueStateSupport.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +6 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.measure.qunit.js +31 -16
- package/test/sap/ui/core/qunit/util/jquery.sap.trace.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/postmessage/ConfirmationDialog.qunit.js +4 -6
- package/test/sap/ui/core/qunit/util/reflection/BaseTreeModifier.qunit.js +11 -2
- package/test/sap/ui/core/qunit/util/reflection/JsControlTreeModifier.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/reflection/XmlTreeModifier.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/support/SupportTool.qunit.js +3 -2
- package/test/sap/ui/core/qunit/util/support/TechnicalInfo.opa.qunit.js +22 -83
- package/test/sap/ui/core/qunit/util/support/TechnicalInfo.qunit.js +3 -3
- package/test/sap/ui/core/qunit/util/support/TechnicalInfoDebugModules.opa.qunit.js +22 -83
- package/test/sap/ui/core/qunit/xml/XMLBinding.qunit.js +0 -2
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -4
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +12 -14
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +4 -6
- package/test/sap/ui/core/qunit/xml/XMLTwoWay.qunit.js +8 -10
- package/test/sap/ui/core/relnotes/changes-1.120.json +0 -510
- package/test/sap/ui/core/relnotes/changes-1.121.json +604 -0
- package/test/sap/ui/core/samples/components/config/modelPreloadAndEarlyRequests/manifest.json +3 -5
- package/test/sap/ui/core/samples/databinding/UnitTable.controller.js +5 -5
- package/test/sap/ui/core/terminologies/App.controller.js +3 -4
- package/test/sap/ui/core/terminologies/main.js +4 -4
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/firstItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/initial.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/lastItem-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/leftDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/myButtonSample-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/core/visual/images/ContextMenuSupport/windows/1600x1200/chrome/horizon/ltr/cozy/rightDownBtn-contextMenu.ref.lnk +1 -1
- package/test/sap/ui/qunit/testrunner.html +5 -2
- package/test/testsuite/js/samples.js +5 -4
- package/test/testsuite/js/settings.js +1 -1
- package/test/testsuite/js/testframe.js +1 -1
- package/test/testsuite/welcome.html +1 -1
- package/LICENSES/BSD-2-Clause.txt +0 -22
- package/test/sap/ui/core/demokit/sample/odata/v4/FlexibleColumnLayout/Formatter.js +0 -22
- package/test/sap/ui/core/qunit/ManagedObjectRegistry.qunit.js +0 -150
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/.library +0 -17
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButton.js +0 -85
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/TestButtonRenderer.js +0 -63
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/library.js +0 -24
- package/test/sap/ui/core/qunit/testdata/uilib-using-legacy-module-apis/themes/base/library.css +0 -26
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.html +0 -12
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +0 -76
- /package/test/sap/ui/core/qunit/bootstrap/{DebugMode.qunit.html → DebugModeSync.qunit.html} +0 -0
- /package/test/sap/ui/core/qunit/{types → ui5classes}/AlternativeTypes.qunit.js +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject.qunit.js → ui5classes/ManagedObject.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObjectObserver.qunit.js → ui5classes/ManagedObjectObserver.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject_forwardAggregation.qunit.js → ui5classes/ManagedObject_forwardAggregation.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{ManagedObject_isPropertyInitial.qunit.js → ui5classes/ManagedObject_isPropertyInitial.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Metadata.qunit.js → ui5classes/Metadata.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Object.qunit.js → ui5classes/Object.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{Object_legacyAPIs.qunit.js → ui5classes/Object_legacyAPIs.qunit.js} +0 -0
- /package/test/sap/ui/core/qunit/{testdata → ui5classes/fixture}/customboot/common.configure.ui5.js +0 -0
|
@@ -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": "44.0.0",
|
|
4
|
+
"__buildtime": "2024-01-12T14:24:50.280Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "Tiếng Afar",
|
|
7
7
|
"ab": "Tiếng Abkhazia",
|
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"bfd": "Tiếng Bafut",
|
|
62
62
|
"bfq": "Tiếng Badaga",
|
|
63
63
|
"bg": "Tiếng Bulgaria",
|
|
64
|
+
"bgc": "Tiếng Haryana",
|
|
64
65
|
"bgn": "Tiếng Tây Balochi",
|
|
65
66
|
"bho": "Tiếng Bhojpuri",
|
|
66
67
|
"bi": "Tiếng Bislama",
|
|
@@ -926,6 +927,8 @@
|
|
|
926
927
|
"IM": "Đảo Man",
|
|
927
928
|
"IN": "Ấn Độ",
|
|
928
929
|
"IO": "Lãnh thổ Ấn Độ Dương thuộc Anh",
|
|
930
|
+
"IO-alt-biot": "Lãnh thổ Ấn Độ Dương thuộc Anh",
|
|
931
|
+
"IO-alt-chagos": "Quần đảo Chagos",
|
|
929
932
|
"IQ": "Iraq",
|
|
930
933
|
"IR": "Iran",
|
|
931
934
|
"IS": "Iceland",
|
|
@@ -992,7 +995,7 @@
|
|
|
992
995
|
"NR": "Nauru",
|
|
993
996
|
"NU": "Niue",
|
|
994
997
|
"NZ": "New Zealand",
|
|
995
|
-
"NZ-alt-variant": "New Zealand",
|
|
998
|
+
"NZ-alt-variant": "Aotearoa New Zealand",
|
|
996
999
|
"OM": "Oman",
|
|
997
1000
|
"PA": "Panama",
|
|
998
1001
|
"PE": "Peru",
|
|
@@ -1090,7 +1093,7 @@
|
|
|
1090
1093
|
"full": "EEEE, d MMMM, y",
|
|
1091
1094
|
"long": "d MMMM, y",
|
|
1092
1095
|
"medium": "d MMM, y",
|
|
1093
|
-
"short": "
|
|
1096
|
+
"short": "d/M/yy"
|
|
1094
1097
|
},
|
|
1095
1098
|
"timeFormats": {
|
|
1096
1099
|
"full": "HH:mm:ss zzzz",
|
|
@@ -1101,28 +1104,28 @@
|
|
|
1101
1104
|
"dateTimeFormats": {
|
|
1102
1105
|
"full": "{0} {1}",
|
|
1103
1106
|
"long": "{0} {1}",
|
|
1104
|
-
"medium": "{0}
|
|
1105
|
-
"short": "{0}
|
|
1107
|
+
"medium": "{0} {1}",
|
|
1108
|
+
"short": "{0} {1}",
|
|
1106
1109
|
"availableFormats": {
|
|
1107
|
-
"Bh": "h B",
|
|
1110
|
+
"Bh": "h 'giờ' B",
|
|
1108
1111
|
"Bhm": "h:mm B",
|
|
1109
1112
|
"Bhms": "h:mm:ss B",
|
|
1110
1113
|
"d": "d",
|
|
1111
1114
|
"E": "ccc",
|
|
1112
|
-
"EBhm": "
|
|
1113
|
-
"EBhms": "
|
|
1115
|
+
"EBhm": "h:mm B E",
|
|
1116
|
+
"EBhms": "h:mm:ss B E",
|
|
1114
1117
|
"Ed": "E, 'ngày' d",
|
|
1115
|
-
"Ehm": "
|
|
1116
|
-
"EHm": "
|
|
1117
|
-
"Ehms": "
|
|
1118
|
-
"EHms": "
|
|
1118
|
+
"Ehm": "h:mm a E",
|
|
1119
|
+
"EHm": "HH:mm E",
|
|
1120
|
+
"Ehms": "h:mm:ss a E",
|
|
1121
|
+
"EHms": "HH:mm:ss E",
|
|
1119
1122
|
"Gy": "y G",
|
|
1120
|
-
"GyMd": "
|
|
1123
|
+
"GyMd": "d/M/y G",
|
|
1121
1124
|
"GyMMM": "MMM y G",
|
|
1122
|
-
"GyMMMd": "
|
|
1123
|
-
"GyMMMEd": "E,
|
|
1125
|
+
"GyMMMd": "d MMM, y G",
|
|
1126
|
+
"GyMMMEd": "E, d MMM, y G",
|
|
1124
1127
|
"h": "h a",
|
|
1125
|
-
"H": "HH",
|
|
1128
|
+
"H": "HH 'giờ'",
|
|
1126
1129
|
"hm": "h:mm a",
|
|
1127
1130
|
"Hm": "H:mm",
|
|
1128
1131
|
"hms": "h:mm:ss a",
|
|
@@ -1132,8 +1135,8 @@
|
|
|
1132
1135
|
"hmv": "h:mm a v",
|
|
1133
1136
|
"Hmv": "HH:mm v",
|
|
1134
1137
|
"M": "L",
|
|
1135
|
-
"Md": "
|
|
1136
|
-
"MEd": "E,
|
|
1138
|
+
"Md": "d/M",
|
|
1139
|
+
"MEd": "E, d/M",
|
|
1137
1140
|
"MMdd": "dd-MM",
|
|
1138
1141
|
"MMM": "LLL",
|
|
1139
1142
|
"MMMd": "d MMM",
|
|
@@ -1145,7 +1148,7 @@
|
|
|
1145
1148
|
"y": "y",
|
|
1146
1149
|
"yM": "M/y",
|
|
1147
1150
|
"yMd": "d/M/y",
|
|
1148
|
-
"yMEd": "E,
|
|
1151
|
+
"yMEd": "E, d/M/y",
|
|
1149
1152
|
"yMM": "'tháng' MM, y",
|
|
1150
1153
|
"yMMM": "MMM y",
|
|
1151
1154
|
"yMMMd": "d MMM, y",
|
|
@@ -1172,8 +1175,8 @@
|
|
|
1172
1175
|
"intervalFormats": {
|
|
1173
1176
|
"intervalFormatFallback": "{0} – {1}",
|
|
1174
1177
|
"Bh": {
|
|
1175
|
-
"B": "h B
|
|
1176
|
-
"h": "h – h B"
|
|
1178
|
+
"B": "h 'giờ' B – h 'giờ' B",
|
|
1179
|
+
"h": "h – h 'giờ' B"
|
|
1177
1180
|
},
|
|
1178
1181
|
"Bhm": {
|
|
1179
1182
|
"B": "h:mm B – h:mm B",
|
|
@@ -1181,31 +1184,31 @@
|
|
|
1181
1184
|
"m": "h:mm – h:mm B"
|
|
1182
1185
|
},
|
|
1183
1186
|
"d": {
|
|
1184
|
-
"d": "
|
|
1187
|
+
"d": "d – d"
|
|
1185
1188
|
},
|
|
1186
1189
|
"Gy": {
|
|
1187
1190
|
"G": "y G – y G",
|
|
1188
1191
|
"y": "y – y G"
|
|
1189
1192
|
},
|
|
1190
1193
|
"GyM": {
|
|
1191
|
-
"G": "M/y
|
|
1192
|
-
"M": "M/y
|
|
1193
|
-
"y": "M/y – M/y
|
|
1194
|
+
"G": "M/y G – M/y G",
|
|
1195
|
+
"M": "M/y– M/y G",
|
|
1196
|
+
"y": "M/y – M/y G"
|
|
1194
1197
|
},
|
|
1195
1198
|
"GyMd": {
|
|
1196
|
-
"d": "
|
|
1197
|
-
"G": "
|
|
1198
|
-
"M": "
|
|
1199
|
-
"y": "
|
|
1199
|
+
"d": "d/M/y – d/M/y G",
|
|
1200
|
+
"G": "d/M/y G – d/M/y G",
|
|
1201
|
+
"M": "d/M/y – d/M/y G",
|
|
1202
|
+
"y": "d/M/y – d/M/y G"
|
|
1200
1203
|
},
|
|
1201
1204
|
"GyMEd": {
|
|
1202
|
-
"d": "E,
|
|
1203
|
-
"G": "E,
|
|
1204
|
-
"M": "E,
|
|
1205
|
-
"y": "E,
|
|
1205
|
+
"d": "E, d/M/y – E, d/M/y G",
|
|
1206
|
+
"G": "E, d/M/y G – E, d/M/y G",
|
|
1207
|
+
"M": "E, d/M/y – E, d/M/y G",
|
|
1208
|
+
"y": "E, d/M/y – E, d/M/y G"
|
|
1206
1209
|
},
|
|
1207
1210
|
"GyMMM": {
|
|
1208
|
-
"G": "
|
|
1211
|
+
"G": "MMM y G – MMM y G",
|
|
1209
1212
|
"M": "MMM – MMM y G",
|
|
1210
1213
|
"y": "MMM y – MMM y G"
|
|
1211
1214
|
},
|
|
@@ -1257,19 +1260,19 @@
|
|
|
1257
1260
|
"M": "'Tháng' M – M"
|
|
1258
1261
|
},
|
|
1259
1262
|
"Md": {
|
|
1260
|
-
"d": "
|
|
1261
|
-
"M": "
|
|
1263
|
+
"d": "d/M – d/M",
|
|
1264
|
+
"M": "d/M – d/M"
|
|
1262
1265
|
},
|
|
1263
1266
|
"MEd": {
|
|
1264
|
-
"d": "
|
|
1265
|
-
"M": "
|
|
1267
|
+
"d": "E, d/M – E, d/M",
|
|
1268
|
+
"M": "E, d/M – E, d/M"
|
|
1266
1269
|
},
|
|
1267
1270
|
"MMM": {
|
|
1268
|
-
"M": "MMM–MMM"
|
|
1271
|
+
"M": "MMM – MMM"
|
|
1269
1272
|
},
|
|
1270
1273
|
"MMMd": {
|
|
1271
|
-
"d": "
|
|
1272
|
-
"M": "
|
|
1274
|
+
"d": "d – d MMM",
|
|
1275
|
+
"M": "d MMM – d MMM"
|
|
1273
1276
|
},
|
|
1274
1277
|
"MMMEd": {
|
|
1275
1278
|
"d": "E, d MMM – E, d MMM",
|
|
@@ -1279,36 +1282,36 @@
|
|
|
1279
1282
|
"y": "y–y"
|
|
1280
1283
|
},
|
|
1281
1284
|
"yM": {
|
|
1282
|
-
"M": "
|
|
1283
|
-
"y": "
|
|
1285
|
+
"M": "M/y – M/y",
|
|
1286
|
+
"y": "M/y – M/y"
|
|
1284
1287
|
},
|
|
1285
1288
|
"yMd": {
|
|
1286
|
-
"d": "
|
|
1287
|
-
"M": "
|
|
1288
|
-
"y": "
|
|
1289
|
+
"d": "d/M/y – d/M/y",
|
|
1290
|
+
"M": "d/M/y – d/M/y",
|
|
1291
|
+
"y": "d/M/y – d/M/y"
|
|
1289
1292
|
},
|
|
1290
1293
|
"yMEd": {
|
|
1291
|
-
"d": "
|
|
1292
|
-
"M": "
|
|
1293
|
-
"y": "
|
|
1294
|
+
"d": "E, d/M/y – E, d/M/y",
|
|
1295
|
+
"M": "E, d/M/y – E, d/M/y",
|
|
1296
|
+
"y": "E, d/M/y – E, d/M/y"
|
|
1294
1297
|
},
|
|
1295
1298
|
"yMMM": {
|
|
1296
|
-
"M": "
|
|
1297
|
-
"y": "
|
|
1299
|
+
"M": "MMM – MMM y",
|
|
1300
|
+
"y": "MMM y – MMM y"
|
|
1298
1301
|
},
|
|
1299
1302
|
"yMMMd": {
|
|
1300
1303
|
"d": "d – d MMM, y",
|
|
1301
|
-
"M": "d MMM
|
|
1302
|
-
"y": "
|
|
1304
|
+
"M": "d MMM – d MMM, y",
|
|
1305
|
+
"y": "d MMM, y – d MMM, y"
|
|
1303
1306
|
},
|
|
1304
1307
|
"yMMMEd": {
|
|
1305
|
-
"d": "
|
|
1306
|
-
"M": "E,
|
|
1307
|
-
"y": "E,
|
|
1308
|
+
"d": "E, d MMM – E, d MMM, y",
|
|
1309
|
+
"M": "E, d MMM – E, d MMM, y",
|
|
1310
|
+
"y": "E, d MMM, y – E, d MMM, y"
|
|
1308
1311
|
},
|
|
1309
1312
|
"yMMMM": {
|
|
1310
|
-
"M": "MMMM–MMMM 'năm' y",
|
|
1311
|
-
"y": "MMMM
|
|
1313
|
+
"M": "MMMM – MMMM 'năm' y",
|
|
1314
|
+
"y": "MMMM 'năm' y – MMMM 'năm' y"
|
|
1312
1315
|
}
|
|
1313
1316
|
}
|
|
1314
1317
|
},
|
|
@@ -1359,18 +1362,54 @@
|
|
|
1359
1362
|
},
|
|
1360
1363
|
"stand-alone": {
|
|
1361
1364
|
"abbreviated": [
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1365
|
+
[
|
|
1366
|
+
"Tháng 1",
|
|
1367
|
+
"Thg 1"
|
|
1368
|
+
],
|
|
1369
|
+
[
|
|
1370
|
+
"Tháng 2",
|
|
1371
|
+
"Thg 2"
|
|
1372
|
+
],
|
|
1373
|
+
[
|
|
1374
|
+
"Tháng 3",
|
|
1375
|
+
"Thg 3"
|
|
1376
|
+
],
|
|
1377
|
+
[
|
|
1378
|
+
"Tháng 4",
|
|
1379
|
+
"Thg 4"
|
|
1380
|
+
],
|
|
1381
|
+
[
|
|
1382
|
+
"Tháng 5",
|
|
1383
|
+
"Thg 5"
|
|
1384
|
+
],
|
|
1385
|
+
[
|
|
1386
|
+
"Tháng 6",
|
|
1387
|
+
"Thg 6"
|
|
1388
|
+
],
|
|
1389
|
+
[
|
|
1390
|
+
"Tháng 7",
|
|
1391
|
+
"Thg 7"
|
|
1392
|
+
],
|
|
1393
|
+
[
|
|
1394
|
+
"Tháng 8",
|
|
1395
|
+
"Thg 8"
|
|
1396
|
+
],
|
|
1397
|
+
[
|
|
1398
|
+
"Tháng 9",
|
|
1399
|
+
"Thg 9"
|
|
1400
|
+
],
|
|
1401
|
+
[
|
|
1402
|
+
"Tháng 10",
|
|
1403
|
+
"Thg 10"
|
|
1404
|
+
],
|
|
1405
|
+
[
|
|
1406
|
+
"Tháng 11",
|
|
1407
|
+
"Thg 11"
|
|
1408
|
+
],
|
|
1409
|
+
[
|
|
1410
|
+
"Tháng 12",
|
|
1411
|
+
"Thg 12"
|
|
1412
|
+
]
|
|
1374
1413
|
],
|
|
1375
1414
|
"narrow": [
|
|
1376
1415
|
"1",
|
|
@@ -1572,7 +1611,7 @@
|
|
|
1572
1611
|
},
|
|
1573
1612
|
"wide": {
|
|
1574
1613
|
"midnight": "nửa đêm",
|
|
1575
|
-
"noon": "
|
|
1614
|
+
"noon": "trưa",
|
|
1576
1615
|
"morning1": "sáng",
|
|
1577
1616
|
"afternoon1": "chiều",
|
|
1578
1617
|
"evening1": "tối",
|
|
@@ -1607,24 +1646,24 @@
|
|
|
1607
1646
|
}
|
|
1608
1647
|
},
|
|
1609
1648
|
"era-wide": {
|
|
1610
|
-
"0": "Trước
|
|
1649
|
+
"0": "Trước Chúa Giáng Sinh",
|
|
1611
1650
|
"1": "Sau Công Nguyên"
|
|
1612
1651
|
},
|
|
1613
1652
|
"era-abbreviated": {
|
|
1614
1653
|
"0": "TCN",
|
|
1615
|
-
"1": "
|
|
1654
|
+
"1": "SCN"
|
|
1616
1655
|
},
|
|
1617
1656
|
"era-narrow": {
|
|
1618
|
-
"0": "
|
|
1619
|
-
"1": "
|
|
1657
|
+
"0": "TCN",
|
|
1658
|
+
"1": "CN"
|
|
1620
1659
|
}
|
|
1621
1660
|
},
|
|
1622
1661
|
"ca-islamic": {
|
|
1623
1662
|
"dateFormats": {
|
|
1624
|
-
"full": "EEEE, 'ngày'
|
|
1625
|
-
"long": "'
|
|
1626
|
-
"medium": "
|
|
1627
|
-
"short": "
|
|
1663
|
+
"full": "EEEE, 'ngày' d 'tháng' M 'năm' y G",
|
|
1664
|
+
"long": "'ngày' d 'tháng' M 'năm' y G",
|
|
1665
|
+
"medium": "d MMM, y G",
|
|
1666
|
+
"short": "d/M/y GGGGG"
|
|
1628
1667
|
},
|
|
1629
1668
|
"timeFormats": {
|
|
1630
1669
|
"full": "HH:mm:ss zzzz",
|
|
@@ -1633,37 +1672,37 @@
|
|
|
1633
1672
|
"short": "HH:mm"
|
|
1634
1673
|
},
|
|
1635
1674
|
"dateTimeFormats": {
|
|
1636
|
-
"full": "{
|
|
1637
|
-
"long": "{
|
|
1638
|
-
"medium": "{
|
|
1639
|
-
"short": "{
|
|
1675
|
+
"full": "{0} {1}",
|
|
1676
|
+
"long": "{0} {1}",
|
|
1677
|
+
"medium": "{0} {1}",
|
|
1678
|
+
"short": "{0} {1}",
|
|
1640
1679
|
"availableFormats": {
|
|
1641
|
-
"Bh": "h B",
|
|
1680
|
+
"Bh": "h 'giờ' B",
|
|
1642
1681
|
"Bhm": "h:mm B",
|
|
1643
1682
|
"Bhms": "h:mm:ss B",
|
|
1644
|
-
"d": "
|
|
1683
|
+
"d": "d",
|
|
1645
1684
|
"E": "ccc",
|
|
1646
|
-
"EBhm": "
|
|
1647
|
-
"EBhms": "
|
|
1648
|
-
"Ed": "E,
|
|
1649
|
-
"Ehm": "
|
|
1650
|
-
"EHm": "
|
|
1651
|
-
"Ehms": "
|
|
1652
|
-
"EHms": "
|
|
1685
|
+
"EBhm": "h:mm B E",
|
|
1686
|
+
"EBhms": "h:mm:ss B E",
|
|
1687
|
+
"Ed": "E, 'ngày' d",
|
|
1688
|
+
"Ehm": "h:mm a E",
|
|
1689
|
+
"EHm": "HH:mm E",
|
|
1690
|
+
"Ehms": "h:mm:ss a E",
|
|
1691
|
+
"EHms": "HH:mm:ss E",
|
|
1653
1692
|
"Gy": "y G",
|
|
1654
|
-
"GyMd": "
|
|
1693
|
+
"GyMd": "d/M/y GGGGG",
|
|
1655
1694
|
"GyMMM": "MMM y G",
|
|
1656
1695
|
"GyMMMd": "d MMM, y G",
|
|
1657
1696
|
"GyMMMEd": "E, d MMM, y G",
|
|
1658
1697
|
"h": "h a",
|
|
1659
|
-
"H": "HH",
|
|
1698
|
+
"H": "HH 'giờ'",
|
|
1660
1699
|
"hm": "h:mm a",
|
|
1661
1700
|
"Hm": "HH:mm",
|
|
1662
1701
|
"hms": "h:mm:ss a",
|
|
1663
1702
|
"Hms": "HH:mm:ss",
|
|
1664
1703
|
"M": "L",
|
|
1665
|
-
"Md": "
|
|
1666
|
-
"MEd": "E,
|
|
1704
|
+
"Md": "d/M",
|
|
1705
|
+
"MEd": "E, d/M",
|
|
1667
1706
|
"MMdd": "dd-MM",
|
|
1668
1707
|
"MMM": "LLL",
|
|
1669
1708
|
"MMMd": "d MMM",
|
|
@@ -1673,8 +1712,8 @@
|
|
|
1673
1712
|
"ms": "mm:ss",
|
|
1674
1713
|
"y": "y G",
|
|
1675
1714
|
"yyyy": "y G",
|
|
1676
|
-
"yyyyM": "M/y
|
|
1677
|
-
"yyyyMd": "d/M/y
|
|
1715
|
+
"yyyyM": "M/y GGGGG",
|
|
1716
|
+
"yyyyMd": "d/M/y GGGGG",
|
|
1678
1717
|
"yyyyMEd": "E, d/M/y GGGGG",
|
|
1679
1718
|
"yyyyMM": "MM-y G",
|
|
1680
1719
|
"yyyyMMM": "MMM y G",
|
|
@@ -1709,7 +1748,7 @@
|
|
|
1709
1748
|
"m": "h:mm – h:mm B"
|
|
1710
1749
|
},
|
|
1711
1750
|
"d": {
|
|
1712
|
-
"d": "
|
|
1751
|
+
"d": "d–d"
|
|
1713
1752
|
},
|
|
1714
1753
|
"Gy": {
|
|
1715
1754
|
"G": "y G – y G",
|
|
@@ -1782,60 +1821,60 @@
|
|
|
1782
1821
|
"H": "HH'h'-HH'h' v"
|
|
1783
1822
|
},
|
|
1784
1823
|
"M": {
|
|
1785
|
-
"M": "
|
|
1824
|
+
"M": "M – M"
|
|
1786
1825
|
},
|
|
1787
1826
|
"Md": {
|
|
1788
|
-
"d": "
|
|
1789
|
-
"M": "
|
|
1827
|
+
"d": "d/M – d/M",
|
|
1828
|
+
"M": "d/M – d/M"
|
|
1790
1829
|
},
|
|
1791
1830
|
"MEd": {
|
|
1792
|
-
"d": "
|
|
1793
|
-
"M": "
|
|
1831
|
+
"d": "E, d/M – E, d/M",
|
|
1832
|
+
"M": "E, d/M – E, d/M"
|
|
1794
1833
|
},
|
|
1795
1834
|
"MMM": {
|
|
1796
|
-
"M": "MMM–MMM"
|
|
1835
|
+
"M": "MMM – MMM"
|
|
1797
1836
|
},
|
|
1798
1837
|
"MMMd": {
|
|
1799
|
-
"d": "
|
|
1800
|
-
"M": "
|
|
1838
|
+
"d": "d – d MMM",
|
|
1839
|
+
"M": "d MMM – d MMM"
|
|
1801
1840
|
},
|
|
1802
1841
|
"MMMEd": {
|
|
1803
|
-
"d": "
|
|
1804
|
-
"M": "
|
|
1842
|
+
"d": "E, d MMM – E, d MMM",
|
|
1843
|
+
"M": "E, d MMM – E, d MMM"
|
|
1805
1844
|
},
|
|
1806
1845
|
"y": {
|
|
1807
1846
|
"y": "y–y G"
|
|
1808
1847
|
},
|
|
1809
1848
|
"yM": {
|
|
1810
|
-
"M": "
|
|
1811
|
-
"y": "
|
|
1849
|
+
"M": "M/y – M/y GGGGG",
|
|
1850
|
+
"y": "M/y – M/y GGGGG"
|
|
1812
1851
|
},
|
|
1813
1852
|
"yMd": {
|
|
1814
|
-
"d": "
|
|
1815
|
-
"M": "
|
|
1816
|
-
"y": "
|
|
1853
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
1854
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
1855
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
1817
1856
|
},
|
|
1818
1857
|
"yMEd": {
|
|
1819
|
-
"d": "
|
|
1820
|
-
"M": "
|
|
1821
|
-
"y": "
|
|
1858
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
1859
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
1860
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
1822
1861
|
},
|
|
1823
1862
|
"yMMM": {
|
|
1824
|
-
"M": "
|
|
1825
|
-
"y": "
|
|
1863
|
+
"M": "MMM – MMM y G",
|
|
1864
|
+
"y": "MMM y – MMM y G"
|
|
1826
1865
|
},
|
|
1827
1866
|
"yMMMd": {
|
|
1828
|
-
"d": "
|
|
1829
|
-
"M": "
|
|
1830
|
-
"y": "
|
|
1867
|
+
"d": "d – d MMM, y G",
|
|
1868
|
+
"M": "d MMM – d MMM, y G",
|
|
1869
|
+
"y": "d MMM, y – d MMM, y G"
|
|
1831
1870
|
},
|
|
1832
1871
|
"yMMMEd": {
|
|
1833
|
-
"d": "
|
|
1834
|
-
"M": "E,
|
|
1835
|
-
"y": "E,
|
|
1872
|
+
"d": "E, d MMM – E, d MMM, y G",
|
|
1873
|
+
"M": "E, d MMM – E, d MMM, y G",
|
|
1874
|
+
"y": "E, d MMM, y – E, d MMM, y G"
|
|
1836
1875
|
},
|
|
1837
1876
|
"yMMMM": {
|
|
1838
|
-
"M": "MMMM–MMMM y G",
|
|
1877
|
+
"M": "MMMM – MMMM y G",
|
|
1839
1878
|
"y": "MMMM y – MMMM y G"
|
|
1840
1879
|
}
|
|
1841
1880
|
}
|
|
@@ -2100,7 +2139,7 @@
|
|
|
2100
2139
|
},
|
|
2101
2140
|
"wide": {
|
|
2102
2141
|
"midnight": "nửa đêm",
|
|
2103
|
-
"noon": "
|
|
2142
|
+
"noon": "trưa",
|
|
2104
2143
|
"morning1": "sáng",
|
|
2105
2144
|
"afternoon1": "chiều",
|
|
2106
2145
|
"evening1": "tối",
|
|
@@ -2158,37 +2197,37 @@
|
|
|
2158
2197
|
"short": "HH:mm"
|
|
2159
2198
|
},
|
|
2160
2199
|
"dateTimeFormats": {
|
|
2161
|
-
"full": "{
|
|
2162
|
-
"long": "{
|
|
2163
|
-
"medium": "{
|
|
2164
|
-
"short": "{
|
|
2200
|
+
"full": "{0} {1}",
|
|
2201
|
+
"long": "{0} {1}",
|
|
2202
|
+
"medium": "{0} {1}",
|
|
2203
|
+
"short": "{0} {1}",
|
|
2165
2204
|
"availableFormats": {
|
|
2166
|
-
"Bh": "h B",
|
|
2205
|
+
"Bh": "h 'giờ' B",
|
|
2167
2206
|
"Bhm": "h:mm B",
|
|
2168
2207
|
"Bhms": "h:mm:ss B",
|
|
2169
|
-
"d": "
|
|
2208
|
+
"d": "d",
|
|
2170
2209
|
"E": "ccc",
|
|
2171
|
-
"EBhm": "
|
|
2172
|
-
"EBhms": "
|
|
2173
|
-
"Ed": "E,
|
|
2174
|
-
"Ehm": "
|
|
2175
|
-
"EHm": "
|
|
2176
|
-
"Ehms": "
|
|
2177
|
-
"EHms": "
|
|
2210
|
+
"EBhm": "h:mm B E",
|
|
2211
|
+
"EBhms": "h:mm:ss B E",
|
|
2212
|
+
"Ed": "E, 'ngày' d",
|
|
2213
|
+
"Ehm": "h:mm a E",
|
|
2214
|
+
"EHm": "HH:mm E",
|
|
2215
|
+
"Ehms": "h:mm:ss a E",
|
|
2216
|
+
"EHms": "HH:mm:ss E",
|
|
2178
2217
|
"Gy": "y G",
|
|
2179
|
-
"GyMd": "
|
|
2218
|
+
"GyMd": "d/M/y GGGGG",
|
|
2180
2219
|
"GyMMM": "MMM y G",
|
|
2181
2220
|
"GyMMMd": "d MMM, y G",
|
|
2182
2221
|
"GyMMMEd": "E, d MMM, y G",
|
|
2183
2222
|
"h": "h a",
|
|
2184
|
-
"H": "HH",
|
|
2223
|
+
"H": "HH 'giờ'",
|
|
2185
2224
|
"hm": "h:mm a",
|
|
2186
2225
|
"Hm": "HH:mm",
|
|
2187
2226
|
"hms": "h:mm:ss a",
|
|
2188
2227
|
"Hms": "HH:mm:ss",
|
|
2189
2228
|
"M": "L",
|
|
2190
|
-
"Md": "
|
|
2191
|
-
"MEd": "E,
|
|
2229
|
+
"Md": "d/M",
|
|
2230
|
+
"MEd": "E, d/M",
|
|
2192
2231
|
"MMdd": "dd-MM",
|
|
2193
2232
|
"MMM": "LLL",
|
|
2194
2233
|
"MMMd": "d MMM",
|
|
@@ -2198,8 +2237,8 @@
|
|
|
2198
2237
|
"ms": "mm:ss",
|
|
2199
2238
|
"y": "y G",
|
|
2200
2239
|
"yyyy": "y G",
|
|
2201
|
-
"yyyyM": "M/y
|
|
2202
|
-
"yyyyMd": "d/M/y
|
|
2240
|
+
"yyyyM": "M/y GGGGG",
|
|
2241
|
+
"yyyyMd": "d/M/y GGGGG",
|
|
2203
2242
|
"yyyyMEd": "E, d/M/y GGGGG",
|
|
2204
2243
|
"yyyyMM": "MM-y G",
|
|
2205
2244
|
"yyyyMMM": "MMM y G",
|
|
@@ -2234,7 +2273,7 @@
|
|
|
2234
2273
|
"m": "h:mm – h:mm B"
|
|
2235
2274
|
},
|
|
2236
2275
|
"d": {
|
|
2237
|
-
"d": "
|
|
2276
|
+
"d": "d–d"
|
|
2238
2277
|
},
|
|
2239
2278
|
"Gy": {
|
|
2240
2279
|
"G": "y G – y G",
|
|
@@ -2307,67 +2346,67 @@
|
|
|
2307
2346
|
"H": "HH'h'-HH'h' v"
|
|
2308
2347
|
},
|
|
2309
2348
|
"M": {
|
|
2310
|
-
"M": "
|
|
2349
|
+
"M": "M – M"
|
|
2311
2350
|
},
|
|
2312
2351
|
"Md": {
|
|
2313
|
-
"d": "
|
|
2314
|
-
"M": "
|
|
2352
|
+
"d": "d/M – d/M",
|
|
2353
|
+
"M": "d/M – d/M"
|
|
2315
2354
|
},
|
|
2316
2355
|
"MEd": {
|
|
2317
|
-
"d": "
|
|
2318
|
-
"M": "
|
|
2356
|
+
"d": "E, d/M – E, d/M",
|
|
2357
|
+
"M": "E, d/M – E, d/M"
|
|
2319
2358
|
},
|
|
2320
2359
|
"MMM": {
|
|
2321
|
-
"M": "MMM–MMM"
|
|
2360
|
+
"M": "MMM – MMM"
|
|
2322
2361
|
},
|
|
2323
2362
|
"MMMd": {
|
|
2324
|
-
"d": "
|
|
2325
|
-
"M": "
|
|
2363
|
+
"d": "d – d MMM",
|
|
2364
|
+
"M": "d MMM – d MMM"
|
|
2326
2365
|
},
|
|
2327
2366
|
"MMMEd": {
|
|
2328
|
-
"d": "
|
|
2329
|
-
"M": "
|
|
2367
|
+
"d": "E, d MMM – E, d MMM",
|
|
2368
|
+
"M": "E, d MMM – E, d MMM"
|
|
2330
2369
|
},
|
|
2331
2370
|
"y": {
|
|
2332
2371
|
"y": "y–y G",
|
|
2333
2372
|
"G": "y G–y G"
|
|
2334
2373
|
},
|
|
2335
2374
|
"yM": {
|
|
2336
|
-
"M": "
|
|
2337
|
-
"y": "
|
|
2338
|
-
"G": "
|
|
2375
|
+
"M": "M/y – M/y GGGGG",
|
|
2376
|
+
"y": "M/y – M/y GGGGG",
|
|
2377
|
+
"G": "M/y GGGGG – M/y GGGGG"
|
|
2339
2378
|
},
|
|
2340
2379
|
"yMd": {
|
|
2341
|
-
"d": "
|
|
2342
|
-
"M": "
|
|
2343
|
-
"y": "
|
|
2344
|
-
"G": "
|
|
2380
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2381
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2382
|
+
"y": "d/M/y – d/M/y GGGGG",
|
|
2383
|
+
"G": "d/M/y GGGGG – d/M/y GGGGG"
|
|
2345
2384
|
},
|
|
2346
2385
|
"yMEd": {
|
|
2347
|
-
"d": "
|
|
2348
|
-
"M": "
|
|
2349
|
-
"y": "
|
|
2350
|
-
"G": "
|
|
2386
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2387
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2388
|
+
"y": "E, d/M/y – E, d/M/y GGGGG",
|
|
2389
|
+
"G": "E, d/M/y GGGGG – E, d/M/y GGGGG"
|
|
2351
2390
|
},
|
|
2352
2391
|
"yMMM": {
|
|
2353
|
-
"M": "
|
|
2354
|
-
"y": "
|
|
2355
|
-
"G": "
|
|
2392
|
+
"M": "MMM – MMM y G",
|
|
2393
|
+
"y": "MMM y – MMM y G",
|
|
2394
|
+
"G": "MMM y G – MMM y G"
|
|
2356
2395
|
},
|
|
2357
2396
|
"yMMMd": {
|
|
2358
|
-
"d": "
|
|
2359
|
-
"M": "
|
|
2360
|
-
"y": "
|
|
2361
|
-
"G": "
|
|
2397
|
+
"d": "d – d MMM, y G",
|
|
2398
|
+
"M": "d MMM – d MMM, y G",
|
|
2399
|
+
"y": "d MMM, y – d MMM, y G",
|
|
2400
|
+
"G": "d MMM, y G – d MMM, y G"
|
|
2362
2401
|
},
|
|
2363
2402
|
"yMMMEd": {
|
|
2364
|
-
"d": "
|
|
2365
|
-
"M": "E,
|
|
2366
|
-
"y": "E,
|
|
2367
|
-
"G": "E,
|
|
2403
|
+
"d": "E, d MMM – E, d MMM, y G",
|
|
2404
|
+
"M": "E, d MMM – E, d MMM, y G",
|
|
2405
|
+
"y": "E, d MMM, y – E, d MMM, y G",
|
|
2406
|
+
"G": "E, d MMM, y G – E, d MMM, y G"
|
|
2368
2407
|
},
|
|
2369
2408
|
"yMMMM": {
|
|
2370
|
-
"M": "MMMM–MMMM y G",
|
|
2409
|
+
"M": "MMMM – MMMM y G",
|
|
2371
2410
|
"y": "MMMM y – MMMM y G",
|
|
2372
2411
|
"G": "MMMM y G – MMMM y G"
|
|
2373
2412
|
}
|
|
@@ -2420,18 +2459,54 @@
|
|
|
2420
2459
|
},
|
|
2421
2460
|
"stand-alone": {
|
|
2422
2461
|
"abbreviated": [
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2462
|
+
[
|
|
2463
|
+
"Tháng 1",
|
|
2464
|
+
"Thg 1"
|
|
2465
|
+
],
|
|
2466
|
+
[
|
|
2467
|
+
"Tháng 2",
|
|
2468
|
+
"Thg 2"
|
|
2469
|
+
],
|
|
2470
|
+
[
|
|
2471
|
+
"Tháng 3",
|
|
2472
|
+
"Thg 3"
|
|
2473
|
+
],
|
|
2474
|
+
[
|
|
2475
|
+
"Tháng 4",
|
|
2476
|
+
"Thg 4"
|
|
2477
|
+
],
|
|
2478
|
+
[
|
|
2479
|
+
"Tháng 5",
|
|
2480
|
+
"Thg 5"
|
|
2481
|
+
],
|
|
2482
|
+
[
|
|
2483
|
+
"Tháng 6",
|
|
2484
|
+
"Thg 6"
|
|
2485
|
+
],
|
|
2486
|
+
[
|
|
2487
|
+
"Tháng 7",
|
|
2488
|
+
"Thg 7"
|
|
2489
|
+
],
|
|
2490
|
+
[
|
|
2491
|
+
"Tháng 8",
|
|
2492
|
+
"Thg 8"
|
|
2493
|
+
],
|
|
2494
|
+
[
|
|
2495
|
+
"Tháng 9",
|
|
2496
|
+
"Thg 9"
|
|
2497
|
+
],
|
|
2498
|
+
[
|
|
2499
|
+
"Tháng 10",
|
|
2500
|
+
"Thg 10"
|
|
2501
|
+
],
|
|
2502
|
+
[
|
|
2503
|
+
"Tháng 11",
|
|
2504
|
+
"Thg 11"
|
|
2505
|
+
],
|
|
2506
|
+
[
|
|
2507
|
+
"Tháng 12",
|
|
2508
|
+
"Thg 12"
|
|
2509
|
+
]
|
|
2435
2510
|
],
|
|
2436
2511
|
"narrow": [
|
|
2437
2512
|
"1",
|
|
@@ -2633,7 +2708,7 @@
|
|
|
2633
2708
|
},
|
|
2634
2709
|
"wide": {
|
|
2635
2710
|
"midnight": "nửa đêm",
|
|
2636
|
-
"noon": "
|
|
2711
|
+
"noon": "trưa",
|
|
2637
2712
|
"morning1": "sáng",
|
|
2638
2713
|
"afternoon1": "chiều",
|
|
2639
2714
|
"evening1": "tối",
|
|
@@ -2691,10 +2766,10 @@
|
|
|
2691
2766
|
},
|
|
2692
2767
|
"ca-persian": {
|
|
2693
2768
|
"dateFormats": {
|
|
2694
|
-
"full": "EEEE, 'ngày'
|
|
2695
|
-
"long": "'
|
|
2696
|
-
"medium": "
|
|
2697
|
-
"short": "
|
|
2769
|
+
"full": "EEEE, 'ngày' d 'tháng' M 'năm' y G",
|
|
2770
|
+
"long": "'ngày' d 'tháng' M 'năm' y G",
|
|
2771
|
+
"medium": "d MMM, y G",
|
|
2772
|
+
"short": "d/M/y GGGGG"
|
|
2698
2773
|
},
|
|
2699
2774
|
"timeFormats": {
|
|
2700
2775
|
"full": "HH:mm:ss zzzz",
|
|
@@ -2703,37 +2778,37 @@
|
|
|
2703
2778
|
"short": "HH:mm"
|
|
2704
2779
|
},
|
|
2705
2780
|
"dateTimeFormats": {
|
|
2706
|
-
"full": "{
|
|
2707
|
-
"long": "{
|
|
2708
|
-
"medium": "{
|
|
2709
|
-
"short": "{
|
|
2781
|
+
"full": "{0} {1}",
|
|
2782
|
+
"long": "{0} {1}",
|
|
2783
|
+
"medium": "{0} {1}",
|
|
2784
|
+
"short": "{0} {1}",
|
|
2710
2785
|
"availableFormats": {
|
|
2711
|
-
"Bh": "h B",
|
|
2786
|
+
"Bh": "h 'giờ' B",
|
|
2712
2787
|
"Bhm": "h:mm B",
|
|
2713
2788
|
"Bhms": "h:mm:ss B",
|
|
2714
|
-
"d": "
|
|
2789
|
+
"d": "d",
|
|
2715
2790
|
"E": "ccc",
|
|
2716
|
-
"EBhm": "
|
|
2717
|
-
"EBhms": "
|
|
2718
|
-
"Ed": "E,
|
|
2719
|
-
"Ehm": "
|
|
2720
|
-
"EHm": "
|
|
2721
|
-
"Ehms": "
|
|
2722
|
-
"EHms": "
|
|
2791
|
+
"EBhm": "h:mm B E",
|
|
2792
|
+
"EBhms": "h:mm:ss B E",
|
|
2793
|
+
"Ed": "E, 'ngày' d",
|
|
2794
|
+
"Ehm": "h:mm a E",
|
|
2795
|
+
"EHm": "HH:mm E",
|
|
2796
|
+
"Ehms": "h:mm:ss a E",
|
|
2797
|
+
"EHms": "HH:mm:ss E",
|
|
2723
2798
|
"Gy": "y G",
|
|
2724
|
-
"GyMd": "
|
|
2799
|
+
"GyMd": "d/M/y GGGGG",
|
|
2725
2800
|
"GyMMM": "MMM y G",
|
|
2726
2801
|
"GyMMMd": "d MMM, y G",
|
|
2727
2802
|
"GyMMMEd": "E, d MMM, y G",
|
|
2728
2803
|
"h": "h a",
|
|
2729
|
-
"H": "HH",
|
|
2804
|
+
"H": "HH 'giờ'",
|
|
2730
2805
|
"hm": "h:mm a",
|
|
2731
2806
|
"Hm": "HH:mm",
|
|
2732
2807
|
"hms": "h:mm:ss a",
|
|
2733
2808
|
"Hms": "HH:mm:ss",
|
|
2734
2809
|
"M": "L",
|
|
2735
|
-
"Md": "
|
|
2736
|
-
"MEd": "E,
|
|
2810
|
+
"Md": "d/M",
|
|
2811
|
+
"MEd": "E, d/M",
|
|
2737
2812
|
"MMdd": "dd-MM",
|
|
2738
2813
|
"MMM": "LLL",
|
|
2739
2814
|
"MMMd": "d MMM",
|
|
@@ -2743,8 +2818,8 @@
|
|
|
2743
2818
|
"ms": "mm:ss",
|
|
2744
2819
|
"y": "y G",
|
|
2745
2820
|
"yyyy": "y G",
|
|
2746
|
-
"yyyyM": "M/y
|
|
2747
|
-
"yyyyMd": "d/M/y
|
|
2821
|
+
"yyyyM": "M/y GGGGG",
|
|
2822
|
+
"yyyyMd": "d/M/y GGGGG",
|
|
2748
2823
|
"yyyyMEd": "E, d/M/y GGGGG",
|
|
2749
2824
|
"yyyyMM": "MM-y G",
|
|
2750
2825
|
"yyyyMMM": "MMM y G",
|
|
@@ -2779,7 +2854,7 @@
|
|
|
2779
2854
|
"m": "h:mm – h:mm B"
|
|
2780
2855
|
},
|
|
2781
2856
|
"d": {
|
|
2782
|
-
"d": "
|
|
2857
|
+
"d": "d–d"
|
|
2783
2858
|
},
|
|
2784
2859
|
"Gy": {
|
|
2785
2860
|
"G": "y G – y G",
|
|
@@ -2852,60 +2927,60 @@
|
|
|
2852
2927
|
"H": "HH'h'-HH'h' v"
|
|
2853
2928
|
},
|
|
2854
2929
|
"M": {
|
|
2855
|
-
"M": "
|
|
2930
|
+
"M": "M – M"
|
|
2856
2931
|
},
|
|
2857
2932
|
"Md": {
|
|
2858
|
-
"d": "
|
|
2859
|
-
"M": "
|
|
2933
|
+
"d": "d/M – d/M",
|
|
2934
|
+
"M": "d/M – d/M"
|
|
2860
2935
|
},
|
|
2861
2936
|
"MEd": {
|
|
2862
|
-
"d": "
|
|
2863
|
-
"M": "
|
|
2937
|
+
"d": "E, d/M – E, d/M",
|
|
2938
|
+
"M": "E, d/M – E, d/M"
|
|
2864
2939
|
},
|
|
2865
2940
|
"MMM": {
|
|
2866
|
-
"M": "MMM–MMM"
|
|
2941
|
+
"M": "MMM – MMM"
|
|
2867
2942
|
},
|
|
2868
2943
|
"MMMd": {
|
|
2869
|
-
"d": "
|
|
2870
|
-
"M": "
|
|
2944
|
+
"d": "d – d MMM",
|
|
2945
|
+
"M": "d MMM – d MMM"
|
|
2871
2946
|
},
|
|
2872
2947
|
"MMMEd": {
|
|
2873
|
-
"d": "
|
|
2874
|
-
"M": "
|
|
2948
|
+
"d": "E, d MMM – E, d MMM",
|
|
2949
|
+
"M": "E, d MMM – E, d MMM"
|
|
2875
2950
|
},
|
|
2876
2951
|
"y": {
|
|
2877
2952
|
"y": "y–y G"
|
|
2878
2953
|
},
|
|
2879
2954
|
"yM": {
|
|
2880
|
-
"M": "
|
|
2881
|
-
"y": "
|
|
2955
|
+
"M": "M/y – M/y GGGGG",
|
|
2956
|
+
"y": "M/y – M/y GGGGG"
|
|
2882
2957
|
},
|
|
2883
2958
|
"yMd": {
|
|
2884
|
-
"d": "
|
|
2885
|
-
"M": "
|
|
2886
|
-
"y": "
|
|
2959
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
2960
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
2961
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
2887
2962
|
},
|
|
2888
2963
|
"yMEd": {
|
|
2889
|
-
"d": "
|
|
2890
|
-
"M": "
|
|
2891
|
-
"y": "
|
|
2964
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
2965
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
2966
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
2892
2967
|
},
|
|
2893
2968
|
"yMMM": {
|
|
2894
|
-
"M": "
|
|
2895
|
-
"y": "
|
|
2969
|
+
"M": "MMM – MMM y G",
|
|
2970
|
+
"y": "MMM y – MMM y G"
|
|
2896
2971
|
},
|
|
2897
2972
|
"yMMMd": {
|
|
2898
|
-
"d": "
|
|
2899
|
-
"M": "
|
|
2900
|
-
"y": "
|
|
2973
|
+
"d": "d – d MMM, y G",
|
|
2974
|
+
"M": "d MMM – d MMM, y G",
|
|
2975
|
+
"y": "d MMM, y – d MMM, y G"
|
|
2901
2976
|
},
|
|
2902
2977
|
"yMMMEd": {
|
|
2903
|
-
"d": "
|
|
2904
|
-
"M": "E,
|
|
2905
|
-
"y": "E,
|
|
2978
|
+
"d": "E, d MMM – E, d MMM, y G",
|
|
2979
|
+
"M": "E, d MMM – E, d MMM, y G",
|
|
2980
|
+
"y": "E, d MMM, y – E, d MMM, y G"
|
|
2906
2981
|
},
|
|
2907
2982
|
"yMMMM": {
|
|
2908
|
-
"M": "MMMM–MMMM y G",
|
|
2983
|
+
"M": "MMMM – MMMM y G",
|
|
2909
2984
|
"y": "MMMM y – MMMM y G"
|
|
2910
2985
|
}
|
|
2911
2986
|
}
|
|
@@ -3170,7 +3245,7 @@
|
|
|
3170
3245
|
},
|
|
3171
3246
|
"wide": {
|
|
3172
3247
|
"midnight": "nửa đêm",
|
|
3173
|
-
"noon": "
|
|
3248
|
+
"noon": "trưa",
|
|
3174
3249
|
"morning1": "sáng",
|
|
3175
3250
|
"afternoon1": "chiều",
|
|
3176
3251
|
"evening1": "tối",
|
|
@@ -3217,9 +3292,9 @@
|
|
|
3217
3292
|
"ca-buddhist": {
|
|
3218
3293
|
"dateFormats": {
|
|
3219
3294
|
"full": "EEEE, 'ngày' dd MMMM 'năm' y G",
|
|
3220
|
-
"long": "'
|
|
3221
|
-
"medium": "
|
|
3222
|
-
"short": "
|
|
3295
|
+
"long": "'ngày' d 'tháng' M 'năm' y G",
|
|
3296
|
+
"medium": "d MMM, y G",
|
|
3297
|
+
"short": "d/M/y GGGGG"
|
|
3223
3298
|
},
|
|
3224
3299
|
"timeFormats": {
|
|
3225
3300
|
"full": "HH:mm:ss zzzz",
|
|
@@ -3228,36 +3303,36 @@
|
|
|
3228
3303
|
"short": "HH:mm"
|
|
3229
3304
|
},
|
|
3230
3305
|
"dateTimeFormats": {
|
|
3231
|
-
"full": "{
|
|
3232
|
-
"long": "{
|
|
3233
|
-
"medium": "{
|
|
3234
|
-
"short": "{
|
|
3306
|
+
"full": "{0} {1}",
|
|
3307
|
+
"long": "{0} {1}",
|
|
3308
|
+
"medium": "{0} {1}",
|
|
3309
|
+
"short": "{0} {1}",
|
|
3235
3310
|
"availableFormats": {
|
|
3236
|
-
"Bh": "h B",
|
|
3311
|
+
"Bh": "h 'giờ' B",
|
|
3237
3312
|
"Bhm": "h:mm B",
|
|
3238
3313
|
"Bhms": "h:mm:ss B",
|
|
3239
3314
|
"d": "'Ngày' dd",
|
|
3240
3315
|
"E": "ccc",
|
|
3241
|
-
"EBhm": "
|
|
3242
|
-
"EBhms": "
|
|
3243
|
-
"Ed": "E,
|
|
3244
|
-
"Ehm": "
|
|
3245
|
-
"EHm": "
|
|
3246
|
-
"Ehms": "
|
|
3247
|
-
"EHms": "
|
|
3316
|
+
"EBhm": "h:mm B E",
|
|
3317
|
+
"EBhms": "h:mm:ss B E",
|
|
3318
|
+
"Ed": "E, 'ngày' d",
|
|
3319
|
+
"Ehm": "h:mm a E",
|
|
3320
|
+
"EHm": "HH:mm E",
|
|
3321
|
+
"Ehms": "h:mm:ss a E",
|
|
3322
|
+
"EHms": "HH:mm:ss E",
|
|
3248
3323
|
"Gy": "y G",
|
|
3249
|
-
"GyMd": "
|
|
3324
|
+
"GyMd": "d/M/y GGGGG",
|
|
3250
3325
|
"GyMMM": "MMM y G",
|
|
3251
3326
|
"GyMMMd": "d MMM, y G",
|
|
3252
3327
|
"GyMMMEd": "E, d MMM, y G",
|
|
3253
3328
|
"h": "h a",
|
|
3254
|
-
"H": "HH",
|
|
3329
|
+
"H": "HH 'giờ'",
|
|
3255
3330
|
"hm": "h:mm a",
|
|
3256
3331
|
"Hm": "HH:mm",
|
|
3257
3332
|
"hms": "h:mm:ss a",
|
|
3258
3333
|
"Hms": "HH:mm:ss",
|
|
3259
3334
|
"M": "'tháng' L",
|
|
3260
|
-
"Md": "
|
|
3335
|
+
"Md": "d/M",
|
|
3261
3336
|
"MEd": "E, dd-M",
|
|
3262
3337
|
"MMdd": "dd-MM",
|
|
3263
3338
|
"MMM": "LLL",
|
|
@@ -3268,8 +3343,8 @@
|
|
|
3268
3343
|
"ms": "mm:ss",
|
|
3269
3344
|
"y": "y G",
|
|
3270
3345
|
"yyyy": "y G",
|
|
3271
|
-
"yyyyM": "M/y
|
|
3272
|
-
"yyyyMd": "d/M/y
|
|
3346
|
+
"yyyyM": "M/y GGGGG",
|
|
3347
|
+
"yyyyMd": "d/M/y GGGGG",
|
|
3273
3348
|
"yyyyMEd": "E, d/M/y GGGGG",
|
|
3274
3349
|
"yyyyMM": "MM-y G",
|
|
3275
3350
|
"yyyyMMM": "MMM y G",
|
|
@@ -3304,7 +3379,7 @@
|
|
|
3304
3379
|
"m": "h:mm – h:mm B"
|
|
3305
3380
|
},
|
|
3306
3381
|
"d": {
|
|
3307
|
-
"d": "
|
|
3382
|
+
"d": "d–d"
|
|
3308
3383
|
},
|
|
3309
3384
|
"Gy": {
|
|
3310
3385
|
"G": "y G – y G",
|
|
@@ -3377,60 +3452,60 @@
|
|
|
3377
3452
|
"H": "HH'h'-HH'h' v"
|
|
3378
3453
|
},
|
|
3379
3454
|
"M": {
|
|
3380
|
-
"M": "
|
|
3455
|
+
"M": "M – M"
|
|
3381
3456
|
},
|
|
3382
3457
|
"Md": {
|
|
3383
|
-
"d": "
|
|
3384
|
-
"M": "
|
|
3458
|
+
"d": "d/M – d/M",
|
|
3459
|
+
"M": "d/M – d/M"
|
|
3385
3460
|
},
|
|
3386
3461
|
"MEd": {
|
|
3387
|
-
"d": "
|
|
3388
|
-
"M": "
|
|
3462
|
+
"d": "E, d/M – E, d/M",
|
|
3463
|
+
"M": "E, d/M – E, d/M"
|
|
3389
3464
|
},
|
|
3390
3465
|
"MMM": {
|
|
3391
|
-
"M": "MMM–MMM"
|
|
3466
|
+
"M": "MMM – MMM"
|
|
3392
3467
|
},
|
|
3393
3468
|
"MMMd": {
|
|
3394
|
-
"d": "
|
|
3395
|
-
"M": "
|
|
3469
|
+
"d": "d – d MMM",
|
|
3470
|
+
"M": "d MMM – d MMM"
|
|
3396
3471
|
},
|
|
3397
3472
|
"MMMEd": {
|
|
3398
|
-
"d": "
|
|
3399
|
-
"M": "
|
|
3473
|
+
"d": "E, d MMM – E, d MMM",
|
|
3474
|
+
"M": "E, d MMM – E, d MMM"
|
|
3400
3475
|
},
|
|
3401
3476
|
"y": {
|
|
3402
3477
|
"y": "y–y G"
|
|
3403
3478
|
},
|
|
3404
3479
|
"yM": {
|
|
3405
|
-
"M": "
|
|
3406
|
-
"y": "
|
|
3480
|
+
"M": "M/y – M/y GGGGG",
|
|
3481
|
+
"y": "M/y – M/y GGGGG"
|
|
3407
3482
|
},
|
|
3408
3483
|
"yMd": {
|
|
3409
|
-
"d": "
|
|
3410
|
-
"M": "
|
|
3411
|
-
"y": "
|
|
3484
|
+
"d": "d/M/y – d/M/y GGGGG",
|
|
3485
|
+
"M": "d/M/y – d/M/y GGGGG",
|
|
3486
|
+
"y": "d/M/y – d/M/y GGGGG"
|
|
3412
3487
|
},
|
|
3413
3488
|
"yMEd": {
|
|
3414
|
-
"d": "
|
|
3415
|
-
"M": "
|
|
3416
|
-
"y": "
|
|
3489
|
+
"d": "E, d/M/y – E, d/M/y GGGGG",
|
|
3490
|
+
"M": "E, d/M/y – E, d/M/y GGGGG",
|
|
3491
|
+
"y": "E, d/M/y – E, d/M/y GGGGG"
|
|
3417
3492
|
},
|
|
3418
3493
|
"yMMM": {
|
|
3419
|
-
"M": "
|
|
3420
|
-
"y": "
|
|
3494
|
+
"M": "MMM – MMM y G",
|
|
3495
|
+
"y": "MMM y – MMM y G"
|
|
3421
3496
|
},
|
|
3422
3497
|
"yMMMd": {
|
|
3423
|
-
"d": "
|
|
3424
|
-
"M": "
|
|
3425
|
-
"y": "
|
|
3498
|
+
"d": "d – d MMM, y G",
|
|
3499
|
+
"M": "d MMM – d MMM, y G",
|
|
3500
|
+
"y": "d MMM, y – d MMM, y G"
|
|
3426
3501
|
},
|
|
3427
3502
|
"yMMMEd": {
|
|
3428
|
-
"d": "
|
|
3429
|
-
"M": "E,
|
|
3430
|
-
"y": "E,
|
|
3503
|
+
"d": "E, d MMM – E, d MMM, y G",
|
|
3504
|
+
"M": "E, d MMM – E, d MMM, y G",
|
|
3505
|
+
"y": "E, d MMM, y – E, d MMM, y G"
|
|
3431
3506
|
},
|
|
3432
3507
|
"yMMMM": {
|
|
3433
|
-
"M": "MMMM–MMMM y G",
|
|
3508
|
+
"M": "MMMM – MMMM y G",
|
|
3434
3509
|
"y": "MMMM y – MMMM y G"
|
|
3435
3510
|
}
|
|
3436
3511
|
}
|
|
@@ -3482,18 +3557,54 @@
|
|
|
3482
3557
|
},
|
|
3483
3558
|
"stand-alone": {
|
|
3484
3559
|
"abbreviated": [
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3560
|
+
[
|
|
3561
|
+
"Tháng 1",
|
|
3562
|
+
"Thg 1"
|
|
3563
|
+
],
|
|
3564
|
+
[
|
|
3565
|
+
"Tháng 2",
|
|
3566
|
+
"Thg 2"
|
|
3567
|
+
],
|
|
3568
|
+
[
|
|
3569
|
+
"Tháng 3",
|
|
3570
|
+
"Thg 3"
|
|
3571
|
+
],
|
|
3572
|
+
[
|
|
3573
|
+
"Tháng 4",
|
|
3574
|
+
"Thg 4"
|
|
3575
|
+
],
|
|
3576
|
+
[
|
|
3577
|
+
"Tháng 5",
|
|
3578
|
+
"Thg 5"
|
|
3579
|
+
],
|
|
3580
|
+
[
|
|
3581
|
+
"Tháng 6",
|
|
3582
|
+
"Thg 6"
|
|
3583
|
+
],
|
|
3584
|
+
[
|
|
3585
|
+
"Tháng 7",
|
|
3586
|
+
"Thg 7"
|
|
3587
|
+
],
|
|
3588
|
+
[
|
|
3589
|
+
"Tháng 8",
|
|
3590
|
+
"Thg 8"
|
|
3591
|
+
],
|
|
3592
|
+
[
|
|
3593
|
+
"Tháng 9",
|
|
3594
|
+
"Thg 9"
|
|
3595
|
+
],
|
|
3596
|
+
[
|
|
3597
|
+
"Tháng 10",
|
|
3598
|
+
"Thg 10"
|
|
3599
|
+
],
|
|
3600
|
+
[
|
|
3601
|
+
"Tháng 11",
|
|
3602
|
+
"Thg 11"
|
|
3603
|
+
],
|
|
3604
|
+
[
|
|
3605
|
+
"Tháng 12",
|
|
3606
|
+
"Thg 12"
|
|
3607
|
+
]
|
|
3497
3608
|
],
|
|
3498
3609
|
"narrow": [
|
|
3499
3610
|
"1",
|
|
@@ -3695,7 +3806,7 @@
|
|
|
3695
3806
|
},
|
|
3696
3807
|
"wide": {
|
|
3697
3808
|
"midnight": "nửa đêm",
|
|
3698
|
-
"noon": "
|
|
3809
|
+
"noon": "trưa",
|
|
3699
3810
|
"morning1": "sáng",
|
|
3700
3811
|
"afternoon1": "chiều",
|
|
3701
3812
|
"evening1": "tối",
|
|
@@ -4338,7 +4449,7 @@
|
|
|
4338
4449
|
"Thimphu": "Thimphu",
|
|
4339
4450
|
"Tokyo": "Tokyo",
|
|
4340
4451
|
"Tomsk": "Tomsk",
|
|
4341
|
-
"Ulaanbaatar": "
|
|
4452
|
+
"Ulaanbaatar": "Ulan Bator",
|
|
4342
4453
|
"Urumqi": "Urumqi",
|
|
4343
4454
|
"Ust-Nera": "Ust-Nera",
|
|
4344
4455
|
"Vientiane": "Viêng Chăn",
|
|
@@ -4667,6 +4778,12 @@
|
|
|
4667
4778
|
"10p-24": {
|
|
4668
4779
|
"unitPrefixPattern": "y{0}"
|
|
4669
4780
|
},
|
|
4781
|
+
"10p-27": {
|
|
4782
|
+
"unitPrefixPattern": "r{0}"
|
|
4783
|
+
},
|
|
4784
|
+
"10p-30": {
|
|
4785
|
+
"unitPrefixPattern": "q{0}"
|
|
4786
|
+
},
|
|
4670
4787
|
"10p1": {
|
|
4671
4788
|
"unitPrefixPattern": "da{0}"
|
|
4672
4789
|
},
|
|
@@ -4697,6 +4814,12 @@
|
|
|
4697
4814
|
"10p24": {
|
|
4698
4815
|
"unitPrefixPattern": "Y{0}"
|
|
4699
4816
|
},
|
|
4817
|
+
"10p27": {
|
|
4818
|
+
"unitPrefixPattern": "R{0}"
|
|
4819
|
+
},
|
|
4820
|
+
"10p30": {
|
|
4821
|
+
"unitPrefixPattern": "Q{0}"
|
|
4822
|
+
},
|
|
4700
4823
|
"1024p1": {
|
|
4701
4824
|
"unitPrefixPattern": "Ki{0}"
|
|
4702
4825
|
},
|
|
@@ -4919,7 +5042,7 @@
|
|
|
4919
5042
|
},
|
|
4920
5043
|
"duration-quarter": {
|
|
4921
5044
|
"displayName": "quý",
|
|
4922
|
-
"unitPattern-count-other": "{0}
|
|
5045
|
+
"unitPattern-count-other": "{0} quý",
|
|
4923
5046
|
"perUnitPattern": "{0}/quý"
|
|
4924
5047
|
},
|
|
4925
5048
|
"duration-month": {
|
|
@@ -4957,8 +5080,8 @@
|
|
|
4957
5080
|
"unitPattern-count-other": "{0} mili giây"
|
|
4958
5081
|
},
|
|
4959
5082
|
"duration-microsecond": {
|
|
4960
|
-
"displayName": "
|
|
4961
|
-
"unitPattern-count-other": "{0}
|
|
5083
|
+
"displayName": "micrô giây",
|
|
5084
|
+
"unitPattern-count-other": "{0} micrô giây"
|
|
4962
5085
|
},
|
|
4963
5086
|
"duration-nanosecond": {
|
|
4964
5087
|
"displayName": "nano giây",
|
|
@@ -4989,8 +5112,8 @@
|
|
|
4989
5112
|
"unitPattern-count-other": "{0} cal"
|
|
4990
5113
|
},
|
|
4991
5114
|
"energy-foodcalorie": {
|
|
4992
|
-
"displayName": "
|
|
4993
|
-
"unitPattern-count-other": "{0}
|
|
5115
|
+
"displayName": "Cal",
|
|
5116
|
+
"unitPattern-count-other": "{0} Cal"
|
|
4994
5117
|
},
|
|
4995
5118
|
"energy-kilojoule": {
|
|
4996
5119
|
"displayName": "kJ",
|
|
@@ -5049,20 +5172,20 @@
|
|
|
5049
5172
|
"unitPattern-count-other": "{0} em"
|
|
5050
5173
|
},
|
|
5051
5174
|
"graphics-pixel": {
|
|
5052
|
-
"displayName": "
|
|
5053
|
-
"unitPattern-count-other": "{0}
|
|
5175
|
+
"displayName": "pixel",
|
|
5176
|
+
"unitPattern-count-other": "{0} pixel"
|
|
5054
5177
|
},
|
|
5055
5178
|
"graphics-megapixel": {
|
|
5056
5179
|
"displayName": "megapixel",
|
|
5057
5180
|
"unitPattern-count-other": "{0} MP"
|
|
5058
5181
|
},
|
|
5059
5182
|
"graphics-pixel-per-centimeter": {
|
|
5060
|
-
"displayName": "
|
|
5061
|
-
"unitPattern-count-other": "{0}
|
|
5183
|
+
"displayName": "pixel/cm",
|
|
5184
|
+
"unitPattern-count-other": "{0} pixel/cm"
|
|
5062
5185
|
},
|
|
5063
5186
|
"graphics-pixel-per-inch": {
|
|
5064
|
-
"displayName": "
|
|
5065
|
-
"unitPattern-count-other": "{0}
|
|
5187
|
+
"displayName": "pixel/inch",
|
|
5188
|
+
"unitPattern-count-other": "{0} pixel/inch"
|
|
5066
5189
|
},
|
|
5067
5190
|
"graphics-dot-per-centimeter": {
|
|
5068
5191
|
"displayName": "dpcm",
|
|
@@ -5323,12 +5446,16 @@
|
|
|
5323
5446
|
},
|
|
5324
5447
|
"speed-mile-per-hour": {
|
|
5325
5448
|
"displayName": "mi/h",
|
|
5326
|
-
"unitPattern-count-other": "{0}
|
|
5449
|
+
"unitPattern-count-other": "{0} mph"
|
|
5327
5450
|
},
|
|
5328
5451
|
"speed-knot": {
|
|
5329
5452
|
"displayName": "kn",
|
|
5330
5453
|
"unitPattern-count-other": "{0} kn"
|
|
5331
5454
|
},
|
|
5455
|
+
"speed-beaufort": {
|
|
5456
|
+
"displayName": "Bft",
|
|
5457
|
+
"unitPattern-count-other": "B {0}"
|
|
5458
|
+
},
|
|
5332
5459
|
"temperature-generic": {
|
|
5333
5460
|
"displayName": "°",
|
|
5334
5461
|
"unitPattern-count-other": "{0}°"
|
|
@@ -5394,7 +5521,7 @@
|
|
|
5394
5521
|
"volume-liter": {
|
|
5395
5522
|
"displayName": "l",
|
|
5396
5523
|
"unitPattern-count-other": "{0} L",
|
|
5397
|
-
"perUnitPattern": "{0}/
|
|
5524
|
+
"perUnitPattern": "{0}/L"
|
|
5398
5525
|
},
|
|
5399
5526
|
"volume-deciliter": {
|
|
5400
5527
|
"displayName": "dL",
|
|
@@ -5443,7 +5570,7 @@
|
|
|
5443
5570
|
"unitPattern-count-other": "{0} pt"
|
|
5444
5571
|
},
|
|
5445
5572
|
"volume-cup": {
|
|
5446
|
-
"displayName": "
|
|
5573
|
+
"displayName": "tách",
|
|
5447
5574
|
"unitPattern-count-other": "{0} tách"
|
|
5448
5575
|
},
|
|
5449
5576
|
"volume-fluid-ounce": {
|
|
@@ -5455,12 +5582,12 @@
|
|
|
5455
5582
|
"unitPattern-count-other": "{0} fl oz Anh"
|
|
5456
5583
|
},
|
|
5457
5584
|
"volume-tablespoon": {
|
|
5458
|
-
"displayName": "
|
|
5459
|
-
"unitPattern-count-other": "{0}
|
|
5585
|
+
"displayName": "muỗng canh",
|
|
5586
|
+
"unitPattern-count-other": "{0} muỗng canh"
|
|
5460
5587
|
},
|
|
5461
5588
|
"volume-teaspoon": {
|
|
5462
|
-
"displayName": "
|
|
5463
|
-
"unitPattern-count-other": "{0}
|
|
5589
|
+
"displayName": "muỗng cà phê",
|
|
5590
|
+
"unitPattern-count-other": "{0} muỗng cà phê"
|
|
5464
5591
|
},
|
|
5465
5592
|
"volume-barrel": {
|
|
5466
5593
|
"displayName": "thùng",
|
|
@@ -5468,11 +5595,11 @@
|
|
|
5468
5595
|
},
|
|
5469
5596
|
"volume-dessert-spoon": {
|
|
5470
5597
|
"displayName": "thìa tráng miệng",
|
|
5471
|
-
"unitPattern-count-other": "{0} thìa
|
|
5598
|
+
"unitPattern-count-other": "{0} thìa tráng miệng"
|
|
5472
5599
|
},
|
|
5473
5600
|
"volume-dessert-spoon-imperial": {
|
|
5474
5601
|
"displayName": "thìa tráng miệng Anh",
|
|
5475
|
-
"unitPattern-count-other": "{0} thìa
|
|
5602
|
+
"unitPattern-count-other": "{0} thìa tráng miệng Anh"
|
|
5476
5603
|
},
|
|
5477
5604
|
"volume-drop": {
|
|
5478
5605
|
"displayName": "giọt",
|
|
@@ -5504,9 +5631,9 @@
|
|
|
5504
5631
|
}
|
|
5505
5632
|
},
|
|
5506
5633
|
"lenient-scope-number": {
|
|
5507
|
-
"minusSign": "
|
|
5508
|
-
"commaSign": "
|
|
5509
|
-
"plusSign": "
|
|
5634
|
+
"minusSign": "--﹣ ‑‒−⁻₋➖",
|
|
5635
|
+
"commaSign": ",,﹐︐ ⹁،٫、﹑、︑",
|
|
5636
|
+
"plusSign": "++﬩﹢⁺₊ ➕"
|
|
5510
5637
|
},
|
|
5511
5638
|
"currencyFormat-sap-short": {
|
|
5512
5639
|
"1000-other": "0 N ¤",
|