@openui5/sap.ui.core 1.119.0 → 1.120.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +6 -6
- package/package.json +1 -1
- package/src/jquery.sap.global.js +40 -111
- package/src/jquery.sap.properties.js +7 -1
- package/src/jquery.sap.resources.js +1 -1
- package/src/jquery.sap.script.js +5 -3
- package/src/jquery.sap.storage.js +6 -3
- package/src/sap/base/Event.js +32 -78
- package/src/sap/base/Eventing.js +114 -271
- package/src/sap/base/Log.js +21 -1
- package/src/sap/base/config.js +14 -9
- package/src/sap/base/i18n/Formatting.js +378 -250
- package/src/sap/base/i18n/LanguageTag.js +64 -66
- package/src/sap/base/i18n/Localization.js +124 -85
- package/src/sap/base/i18n/ResourceBundle.js +1 -1
- package/src/sap/base/i18n/date/CalendarType.js +2 -2
- package/src/sap/base/i18n/date/CalendarWeekNumbering.js +2 -2
- package/src/sap/base/i18n/date/TimezoneUtils.js +43 -6
- package/src/sap/base/util/LoaderExtensions.js +8 -2
- package/src/sap/base/util/mixedFetch.js +1 -0
- package/src/sap/base/util/resolveReference.js +31 -13
- package/src/sap/base/util/restricted/_CancelablePromise.js +1 -1
- package/src/sap/base/util/restricted/_castArray.js +1 -1
- package/src/sap/base/util/restricted/_compact.js +1 -1
- package/src/sap/base/util/restricted/_curry.js +1 -1
- package/src/sap/base/util/restricted/_debounce.js +1 -1
- package/src/sap/base/util/restricted/_difference.js +1 -1
- package/src/sap/base/util/restricted/_differenceBy.js +1 -1
- package/src/sap/base/util/restricted/_differenceWith.js +1 -1
- package/src/sap/base/util/restricted/_flatMap.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDeep.js +1 -1
- package/src/sap/base/util/restricted/_flatMapDepth.js +1 -1
- package/src/sap/base/util/restricted/_flatten.js +1 -1
- package/src/sap/base/util/restricted/_flattenDeep.js +1 -1
- package/src/sap/base/util/restricted/_flattenDepth.js +1 -1
- package/src/sap/base/util/restricted/_intersection.js +1 -1
- package/src/sap/base/util/restricted/_intersectionBy.js +1 -1
- package/src/sap/base/util/restricted/_intersectionWith.js +1 -1
- package/src/sap/base/util/restricted/_isEqual.js +1 -1
- package/src/sap/base/util/restricted/_isEqualWith.js +1 -1
- package/src/sap/base/util/restricted/_isNil.js +1 -1
- package/src/sap/base/util/restricted/_max.js +1 -1
- package/src/sap/base/util/restricted/_merge.js +1 -1
- package/src/sap/base/util/restricted/_mergeWith.js +1 -1
- package/src/sap/base/util/restricted/_min.js +1 -1
- package/src/sap/base/util/restricted/_omit.js +1 -1
- package/src/sap/base/util/restricted/_pick.js +1 -1
- package/src/sap/base/util/restricted/_pickBy.js +1 -1
- package/src/sap/base/util/restricted/_throttle.js +1 -1
- package/src/sap/base/util/restricted/_toArray.js +1 -1
- package/src/sap/base/util/restricted/_union.js +1 -1
- package/src/sap/base/util/restricted/_unionBy.js +1 -1
- package/src/sap/base/util/restricted/_unionWith.js +1 -1
- package/src/sap/base/util/restricted/_uniq.js +1 -1
- package/src/sap/base/util/restricted/_uniqBy.js +1 -1
- package/src/sap/base/util/restricted/_uniqWith.js +1 -1
- package/src/sap/base/util/restricted/_without.js +1 -1
- package/src/sap/base/util/restricted/_xor.js +1 -1
- package/src/sap/base/util/restricted/_xorBy.js +1 -1
- package/src/sap/base/util/restricted/_xorWith.js +1 -1
- package/src/sap/base/util/restricted/_zipObject.js +1 -1
- package/src/sap/base/util/restricted/_zipObjectDeep.js +1 -1
- package/src/sap/base/util/syncFetch.js +1 -0
- package/src/sap/ui/Device.js +3 -3
- package/src/sap/ui/Global.js +6 -7
- package/src/sap/ui/base/BindingInfo.js +3 -3
- package/src/sap/ui/base/BindingParser.js +5 -2
- package/src/sap/ui/base/DataType.js +57 -1
- package/src/sap/ui/base/DesignTime.js +69 -0
- package/src/sap/ui/base/Event.js +2 -2
- package/src/sap/ui/base/EventProvider.js +1 -1
- package/src/sap/ui/base/ExpressionParser.js +25 -4
- package/src/sap/ui/base/Interface.js +1 -1
- package/src/sap/ui/base/ManagedObject.js +102 -29
- package/src/sap/ui/base/ManagedObjectMetadata.js +29 -31
- package/src/sap/ui/base/ManagedObjectObserver.js +1 -0
- package/src/sap/ui/base/Metadata.js +3 -3
- package/src/sap/ui/base/Object.js +19 -1
- package/src/sap/ui/base/ObjectPool.js +1 -1
- package/src/sap/ui/core/.library +3 -3
- package/src/sap/ui/core/AnimationMode.js +2 -2
- package/src/sap/ui/core/AppCacheBuster.js +30 -18
- package/src/sap/ui/core/BusyIndicator.js +1 -1
- package/src/sap/ui/core/CalendarType.js +6 -0
- package/src/sap/ui/core/Component.js +150 -80
- package/src/sap/ui/core/ComponentContainer.js +4 -3
- package/src/sap/ui/core/ComponentMetadata.js +3 -4
- package/src/sap/ui/core/ComponentSupport.js +1 -1
- package/src/sap/ui/core/Configuration.js +390 -706
- package/src/sap/ui/core/Control.js +1 -1
- package/src/sap/ui/core/ControlBehavior.js +37 -28
- package/src/sap/ui/core/Core.js +327 -151
- package/src/sap/ui/core/CustomData.js +1 -1
- package/src/sap/ui/core/DeclarativeSupport.js +3 -1
- package/src/sap/ui/core/Element.js +18 -8
- package/src/sap/ui/core/ElementMetadata.js +1 -1
- package/src/sap/ui/core/EnabledPropagator.js +3 -2
- package/src/sap/ui/core/EventBus.js +1 -1
- package/src/sap/ui/core/Fragment.js +1 -1
- package/src/sap/ui/core/HTML.js +1 -1
- package/src/sap/ui/core/History.js +1 -1
- package/src/sap/ui/core/Icon.js +1 -1
- package/src/sap/ui/core/IndicationColorSupport.js +13 -1
- package/src/sap/ui/core/IntervalTrigger.js +1 -1
- package/src/sap/ui/core/InvisibleMessage.js +2 -3
- package/src/sap/ui/core/InvisibleRenderer.js +1 -1
- package/src/sap/ui/core/InvisibleText.js +17 -1
- package/src/sap/ui/core/Item.js +1 -1
- package/src/sap/ui/core/LabelEnablement.js +8 -1
- package/src/sap/ui/core/LayoutData.js +1 -1
- package/src/sap/ui/core/Lib.js +195 -29
- package/src/sap/ui/core/ListItem.js +1 -1
- package/src/sap/ui/core/LocalBusyIndicator.js +1 -1
- package/src/sap/ui/core/Locale.js +1 -1
- package/src/sap/ui/core/LocaleData.js +118 -32
- package/src/sap/ui/core/Manifest.js +4 -2
- package/src/sap/ui/core/Message.js +1 -1
- package/src/sap/ui/core/Placeholder.js +18 -0
- package/src/sap/ui/core/Popup.js +5 -0
- package/src/sap/ui/core/RenderManager.js +21 -17
- package/src/sap/ui/core/Renderer.js +1 -1
- package/src/sap/ui/core/Rendering.js +51 -47
- package/src/sap/ui/core/ResizeHandler.js +2 -2
- package/src/sap/ui/core/ScrollBar.js +1 -1
- package/src/sap/ui/core/SeparatorItem.js +1 -1
- package/src/sap/ui/core/Shortcut.js +5 -3
- package/src/sap/ui/core/Supportability.js +146 -0
- package/src/sap/ui/core/Theming.js +130 -88
- package/src/sap/ui/core/Title.js +1 -1
- package/src/sap/ui/core/TooltipBase.js +4 -3
- package/src/sap/ui/core/UIArea.js +1 -4
- package/src/sap/ui/core/UIComponent.js +38 -12
- package/src/sap/ui/core/UIComponentMetadata.js +1 -1
- package/src/sap/ui/core/ValueStateSupport.js +1 -1
- package/src/sap/ui/core/VariantLayoutData.js +1 -1
- package/src/sap/ui/core/XMLComposite.js +1 -1
- package/src/sap/ui/core/XMLCompositeMetadata.js +1 -1
- package/src/sap/ui/core/XMLTemplateProcessor.js +3 -3
- package/src/sap/ui/core/_IconRegistry.js +13 -6
- package/src/sap/ui/core/cldr/ar.json +143 -137
- package/src/sap/ui/core/cldr/ar_EG.json +143 -137
- package/src/sap/ui/core/cldr/ar_SA.json +143 -137
- package/src/sap/ui/core/cldr/bg.json +423 -423
- package/src/sap/ui/core/cldr/ca.json +541 -494
- package/src/sap/ui/core/cldr/cs.json +475 -364
- package/src/sap/ui/core/cldr/cy.json +656 -477
- package/src/sap/ui/core/cldr/da.json +334 -275
- package/src/sap/ui/core/cldr/de.json +388 -291
- package/src/sap/ui/core/cldr/de_AT.json +388 -291
- package/src/sap/ui/core/cldr/de_CH.json +394 -297
- package/src/sap/ui/core/cldr/el.json +169 -166
- package/src/sap/ui/core/cldr/el_CY.json +169 -166
- package/src/sap/ui/core/cldr/en.json +558 -521
- package/src/sap/ui/core/cldr/en_AU.json +558 -520
- package/src/sap/ui/core/cldr/en_GB.json +476 -439
- package/src/sap/ui/core/cldr/en_HK.json +520 -482
- package/src/sap/ui/core/cldr/en_IE.json +486 -448
- package/src/sap/ui/core/cldr/en_IN.json +466 -428
- package/src/sap/ui/core/cldr/en_NZ.json +506 -468
- package/src/sap/ui/core/cldr/en_PG.json +506 -468
- package/src/sap/ui/core/cldr/en_SG.json +506 -468
- package/src/sap/ui/core/cldr/en_ZA.json +486 -448
- package/src/sap/ui/core/cldr/es.json +473 -468
- package/src/sap/ui/core/cldr/es_AR.json +445 -440
- package/src/sap/ui/core/cldr/es_BO.json +479 -474
- package/src/sap/ui/core/cldr/es_CL.json +469 -464
- package/src/sap/ui/core/cldr/es_CO.json +387 -381
- package/src/sap/ui/core/cldr/es_MX.json +502 -497
- package/src/sap/ui/core/cldr/es_PE.json +455 -450
- package/src/sap/ui/core/cldr/es_UY.json +479 -474
- package/src/sap/ui/core/cldr/es_VE.json +499 -494
- package/src/sap/ui/core/cldr/et.json +378 -320
- package/src/sap/ui/core/cldr/fa.json +104 -104
- package/src/sap/ui/core/cldr/fi.json +401 -315
- package/src/sap/ui/core/cldr/fr.json +391 -385
- package/src/sap/ui/core/cldr/fr_BE.json +391 -385
- package/src/sap/ui/core/cldr/fr_CA.json +499 -493
- package/src/sap/ui/core/cldr/fr_CH.json +334 -328
- package/src/sap/ui/core/cldr/fr_LU.json +391 -385
- package/src/sap/ui/core/cldr/he.json +291 -159
- package/src/sap/ui/core/cldr/hi.json +157 -128
- package/src/sap/ui/core/cldr/hr.json +514 -461
- package/src/sap/ui/core/cldr/hu.json +287 -257
- package/src/sap/ui/core/cldr/id.json +463 -416
- package/src/sap/ui/core/cldr/it.json +468 -413
- package/src/sap/ui/core/cldr/it_CH.json +468 -413
- package/src/sap/ui/core/cldr/ja.json +98 -61
- package/src/sap/ui/core/cldr/kk.json +631 -571
- package/src/sap/ui/core/cldr/ko.json +79 -71
- package/src/sap/ui/core/cldr/lt.json +361 -270
- package/src/sap/ui/core/cldr/lv.json +234 -242
- package/src/sap/ui/core/cldr/ms.json +463 -408
- package/src/sap/ui/core/cldr/nb.json +176 -143
- package/src/sap/ui/core/cldr/nl.json +463 -393
- package/src/sap/ui/core/cldr/nl_BE.json +463 -393
- package/src/sap/ui/core/cldr/pl.json +633 -344
- package/src/sap/ui/core/cldr/pt.json +447 -336
- package/src/sap/ui/core/cldr/pt_PT.json +488 -449
- package/src/sap/ui/core/cldr/ro.json +477 -383
- package/src/sap/ui/core/cldr/ru.json +367 -332
- package/src/sap/ui/core/cldr/ru_UA.json +361 -326
- package/src/sap/ui/core/cldr/sk.json +502 -537
- package/src/sap/ui/core/cldr/sl.json +168 -161
- package/src/sap/ui/core/cldr/sr.json +276 -225
- package/src/sap/ui/core/cldr/sr_Latn.json +972 -907
- package/src/sap/ui/core/cldr/sv.json +420 -346
- package/src/sap/ui/core/cldr/th.json +117 -94
- package/src/sap/ui/core/cldr/tr.json +413 -359
- package/src/sap/ui/core/cldr/uk.json +395 -368
- package/src/sap/ui/core/cldr/vi.json +392 -379
- package/src/sap/ui/core/cldr/zh_CN.json +91 -33
- package/src/sap/ui/core/cldr/zh_HK.json +90 -32
- package/src/sap/ui/core/cldr/zh_SG.json +90 -32
- package/src/sap/ui/core/cldr/zh_TW.json +75 -51
- package/src/sap/ui/core/date/CalendarWeekNumbering.js +6 -0
- package/src/sap/ui/core/date/UI5Date.js +1 -1
- package/src/sap/ui/core/date/_Calendars.js +5 -2
- package/src/sap/ui/core/delegate/ItemNavigation.js +1 -1
- package/src/sap/ui/core/delegate/ScrollEnablement.js +1 -1
- package/src/sap/ui/core/dnd/DragAndDrop.js +3 -2
- package/src/sap/ui/core/dnd/DragDropBase.js +1 -1
- package/src/sap/ui/core/dnd/DragDropInfo.js +1 -1
- package/src/sap/ui/core/dnd/DragInfo.js +1 -1
- package/src/sap/ui/core/dnd/DropInfo.js +1 -1
- package/src/sap/ui/core/format/DateFormat.js +33 -21
- package/src/sap/ui/core/format/NumberFormat.js +3 -2
- package/src/sap/ui/core/format/TimezoneUtil.js +1 -1
- package/src/sap/ui/core/getCompatibilityVersion.js +2 -2
- package/src/sap/ui/core/hyphenation/Hyphenation.js +1 -1
- package/src/sap/ui/core/library.js +128 -8
- package/src/sap/ui/core/message/ControlMessageProcessor.js +1 -1
- package/src/sap/ui/core/message/Message.js +2 -2
- package/src/sap/ui/core/message/MessageManager.js +1 -1
- package/src/sap/ui/core/message/MessageParser.js +1 -1
- package/src/sap/ui/core/message/MessageProcessor.js +1 -1
- package/src/sap/ui/core/message/MessageType.js +2 -1
- package/src/sap/ui/core/messagebundle.properties +24 -0
- package/src/sap/ui/core/messagebundle_ar.properties +15 -3
- package/src/sap/ui/core/messagebundle_bg.properties +14 -2
- package/src/sap/ui/core/messagebundle_ca.properties +13 -1
- package/src/sap/ui/core/messagebundle_cs.properties +15 -3
- package/src/sap/ui/core/messagebundle_cy.properties +16 -4
- package/src/sap/ui/core/messagebundle_da.properties +15 -3
- package/src/sap/ui/core/messagebundle_de.properties +15 -3
- package/src/sap/ui/core/messagebundle_el.properties +16 -4
- package/src/sap/ui/core/messagebundle_en.properties +12 -0
- package/src/sap/ui/core/messagebundle_en_GB.properties +16 -4
- package/src/sap/ui/core/messagebundle_es.properties +15 -3
- package/src/sap/ui/core/messagebundle_es_MX.properties +15 -3
- package/src/sap/ui/core/messagebundle_et.properties +15 -3
- package/src/sap/ui/core/messagebundle_fi.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr.properties +15 -3
- package/src/sap/ui/core/messagebundle_fr_CA.properties +14 -2
- package/src/sap/ui/core/messagebundle_hi.properties +16 -4
- package/src/sap/ui/core/messagebundle_hr.properties +14 -2
- package/src/sap/ui/core/messagebundle_hu.properties +16 -4
- package/src/sap/ui/core/messagebundle_id.properties +15 -3
- package/src/sap/ui/core/messagebundle_it.properties +17 -5
- package/src/sap/ui/core/messagebundle_iw.properties +15 -3
- package/src/sap/ui/core/messagebundle_ja.properties +25 -13
- package/src/sap/ui/core/messagebundle_kk.properties +15 -3
- package/src/sap/ui/core/messagebundle_ko.properties +14 -2
- package/src/sap/ui/core/messagebundle_lt.properties +15 -3
- package/src/sap/ui/core/messagebundle_lv.properties +15 -3
- package/src/sap/ui/core/messagebundle_mk.properties +352 -0
- package/src/sap/ui/core/messagebundle_ms.properties +15 -3
- package/src/sap/ui/core/messagebundle_nl.properties +15 -3
- package/src/sap/ui/core/messagebundle_no.properties +14 -2
- package/src/sap/ui/core/messagebundle_pl.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt.properties +15 -3
- package/src/sap/ui/core/messagebundle_pt_PT.properties +14 -2
- package/src/sap/ui/core/messagebundle_ro.properties +15 -3
- package/src/sap/ui/core/messagebundle_ru.properties +15 -3
- package/src/sap/ui/core/messagebundle_sh.properties +43 -31
- package/src/sap/ui/core/messagebundle_sk.properties +16 -4
- package/src/sap/ui/core/messagebundle_sl.properties +15 -3
- package/src/sap/ui/core/messagebundle_sv.properties +22 -10
- package/src/sap/ui/core/messagebundle_th.properties +15 -3
- package/src/sap/ui/core/messagebundle_tr.properties +15 -3
- package/src/sap/ui/core/messagebundle_uk.properties +18 -6
- package/src/sap/ui/core/messagebundle_vi.properties +18 -6
- package/src/sap/ui/core/messagebundle_zh_CN.properties +15 -3
- package/src/sap/ui/core/messagebundle_zh_TW.properties +15 -3
- package/src/sap/ui/core/mvc/Controller.js +22 -16
- package/src/sap/ui/core/mvc/EventHandlerResolver.js +5 -15
- package/src/sap/ui/core/mvc/HTMLView.js +2 -2
- package/src/sap/ui/core/mvc/JSONView.js +4 -1
- package/src/sap/ui/core/mvc/JSONViewRenderer.js +1 -0
- package/src/sap/ui/core/mvc/JSView.js +1 -1
- package/src/sap/ui/core/mvc/OverrideExecution.js +4 -4
- package/src/sap/ui/core/mvc/TemplateView.js +1 -1
- package/src/sap/ui/core/mvc/View.js +24 -14
- package/src/sap/ui/core/mvc/ViewType.js +2 -0
- package/src/sap/ui/core/mvc/XMLView.js +1 -1
- package/src/sap/ui/core/plugin/DeclarativeSupport.js +2 -1
- package/src/sap/ui/core/plugin/LessSupport.js +3 -1
- package/src/sap/ui/core/plugin/TemplatingSupport.js +1 -1
- package/src/sap/ui/core/postmessage/Bus.js +1 -1
- package/src/sap/ui/core/postmessage/confirmationDialog.js +1 -1
- package/src/sap/ui/core/routing/Router.js +2 -4
- package/src/sap/ui/core/routing/Target.js +1 -3
- package/src/sap/ui/core/routing/Targets.js +2 -3
- package/src/sap/ui/core/routing/Views.js +2 -3
- package/src/sap/ui/core/routing/async/Target.js +1 -1
- package/src/sap/ui/core/rules/Config.support.js +11 -17
- package/src/sap/ui/core/search/OpenSearchProvider.js +1 -1
- package/src/sap/ui/core/search/SearchProvider.js +1 -1
- package/src/sap/ui/core/service/Service.js +1 -1
- package/src/sap/ui/core/service/ServiceFactory.js +1 -1
- package/src/sap/ui/core/service/ServiceFactoryRegistry.js +1 -1
- package/src/sap/ui/core/support/Hotkeys.js +5 -3
- package/src/sap/ui/core/support/Plugin.js +1 -1
- package/src/sap/ui/core/support/RuleEngineOpaExtension.js +1 -3
- package/src/sap/ui/core/support/Support.js +3 -5
- package/src/sap/ui/core/support/ToolsAPI.js +15 -11
- package/src/sap/ui/core/support/plugins/ControlTree.js +1 -1
- package/src/sap/ui/core/support/plugins/Interaction.js +4 -4
- package/src/sap/ui/core/support/plugins/LocalStorage.js +1 -1
- package/src/sap/ui/core/support/plugins/Performance.js +1 -1
- package/src/sap/ui/core/support/plugins/Selector.js +7 -5
- package/src/sap/ui/core/support/plugins/TechInfo.js +1 -1
- package/src/sap/ui/core/support/plugins/Trace.js +1 -1
- package/src/sap/ui/core/support/plugins/ViewInfo.js +1 -1
- package/src/sap/ui/core/support/techinfo/TechnicalInfo.js +3 -1
- package/src/sap/ui/core/syncStyleClass.js +2 -2
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.ttf +0 -0
- package/src/sap/ui/core/themes/base/fonts/SAP-icons.woff2 +0 -0
- package/src/sap/ui/core/themes/base/global.less +9 -9
- package/src/sap/ui/core/theming/Parameters.js +18 -19
- package/src/sap/ui/core/theming/ThemeManager.js +23 -4
- package/src/sap/ui/core/tmpl/DOMAttribute.js +1 -1
- package/src/sap/ui/core/tmpl/DOMElement.js +1 -1
- package/src/sap/ui/core/tmpl/HandlebarsTemplate.js +1 -1
- package/src/sap/ui/core/tmpl/Template.js +1 -1
- package/src/sap/ui/core/tmpl/TemplateControl.js +1 -1
- package/src/sap/ui/core/util/AsyncHintsHelper.js +1 -1
- package/src/sap/ui/core/util/Export.js +1 -1
- package/src/sap/ui/core/util/ExportCell.js +1 -1
- package/src/sap/ui/core/util/ExportColumn.js +1 -1
- package/src/sap/ui/core/util/ExportRow.js +1 -1
- package/src/sap/ui/core/util/ExportType.js +1 -1
- package/src/sap/ui/core/util/ExportTypeCSV.js +1 -1
- package/src/sap/ui/core/util/File.js +1 -1
- package/src/sap/ui/core/util/LibraryInfo.js +1 -1
- package/src/sap/ui/core/util/MockServer.js +1 -1
- package/src/sap/ui/core/util/PasteHelper.js +1 -1
- package/src/sap/ui/core/util/XMLPreprocessor.js +3 -0
- package/src/sap/ui/core/util/serializer/HTMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/Serializer.js +1 -1
- package/src/sap/ui/core/util/serializer/ViewSerializer.js +4 -4
- package/src/sap/ui/core/util/serializer/XMLViewSerializer.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/Delegate.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/HTML.js +1 -1
- package/src/sap/ui/core/util/serializer/delegate/XML.js +1 -1
- package/src/sap/ui/core/webc/WebComponent.js +1 -1
- package/src/sap/ui/core/webc/WebComponentMetadata.js +1 -1
- package/src/sap/ui/core/ws/ReadyState.js +1 -1
- package/src/sap/ui/core/ws/SapPcpWebSocket.js +1 -1
- package/src/sap/ui/core/ws/WebSocket.js +1 -1
- package/src/sap/ui/debug/ControlTree.js +1 -1
- package/src/sap/ui/debug/DebugEnv.js +29 -7
- package/src/sap/ui/debug/PropertyList.js +1 -1
- package/src/sap/ui/model/ClientListBinding.js +3 -1
- package/src/sap/ui/model/ClientModel.js +1 -1
- package/src/sap/ui/model/ClientTreeBinding.js +3 -1
- package/src/sap/ui/model/CompositeDataState.js +1 -1
- package/src/sap/ui/model/CompositeType.js +1 -1
- package/src/sap/ui/model/DataState.js +2 -2
- package/src/sap/ui/model/Filter.js +39 -1
- package/src/sap/ui/model/FilterProcessor.js +12 -2
- package/src/sap/ui/model/ListBinding.js +5 -0
- package/src/sap/ui/model/ManagedObjectBindingSupport.js +4 -4
- package/src/sap/ui/model/MetaModel.js +1 -1
- package/src/sap/ui/model/Model.js +5 -1
- package/src/sap/ui/model/SelectionModel.js +1 -1
- package/src/sap/ui/model/SimpleType.js +1 -1
- package/src/sap/ui/model/TreeAutoExpandMode.js +1 -1
- package/src/sap/ui/model/TreeBinding.js +3 -0
- package/src/sap/ui/model/Type.js +1 -1
- package/src/sap/ui/model/analytics/AnalyticalBinding.js +3 -1
- package/src/sap/ui/model/json/JSONListBinding.js +3 -1
- package/src/sap/ui/model/json/JSONModel.js +1 -1
- package/src/sap/ui/model/json/JSONTreeBinding.js +3 -2
- package/src/sap/ui/model/message/MessageListBinding.js +3 -0
- package/src/sap/ui/model/message/MessageModel.js +1 -1
- package/src/sap/ui/model/odata/AnnotationHelper.js +9 -3
- package/src/sap/ui/model/odata/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/ODataListBinding.js +3 -0
- package/src/sap/ui/model/odata/ODataMessageParser.js +1 -1
- package/src/sap/ui/model/odata/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/ODataMetadata.js +1 -1
- package/src/sap/ui/model/odata/ODataModel.js +9 -5
- package/src/sap/ui/model/odata/ODataPropertyBinding.js +1 -2
- package/src/sap/ui/model/odata/ODataTreeBinding.js +2 -0
- package/src/sap/ui/model/odata/ODataTreeBindingFlat.js +9 -14
- package/src/sap/ui/model/odata/type/Boolean.js +1 -1
- package/src/sap/ui/model/odata/type/Byte.js +1 -1
- package/src/sap/ui/model/odata/type/Currency.js +1 -1
- package/src/sap/ui/model/odata/type/Date.js +1 -1
- package/src/sap/ui/model/odata/type/DateTime.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeBase.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeOffset.js +1 -1
- package/src/sap/ui/model/odata/type/DateTimeWithTimezone.js +1 -1
- package/src/sap/ui/model/odata/type/Decimal.js +1 -1
- package/src/sap/ui/model/odata/type/Double.js +1 -1
- package/src/sap/ui/model/odata/type/Guid.js +1 -1
- package/src/sap/ui/model/odata/type/Int.js +1 -1
- package/src/sap/ui/model/odata/type/Int16.js +1 -1
- package/src/sap/ui/model/odata/type/Int32.js +1 -1
- package/src/sap/ui/model/odata/type/Int64.js +1 -1
- package/src/sap/ui/model/odata/type/ODataType.js +1 -1
- package/src/sap/ui/model/odata/type/Raw.js +1 -1
- package/src/sap/ui/model/odata/type/SByte.js +1 -1
- package/src/sap/ui/model/odata/type/Single.js +1 -1
- package/src/sap/ui/model/odata/type/Stream.js +1 -1
- package/src/sap/ui/model/odata/type/String.js +1 -1
- package/src/sap/ui/model/odata/type/Time.js +1 -1
- package/src/sap/ui/model/odata/type/TimeOfDay.js +1 -1
- package/src/sap/ui/model/odata/type/Unit.js +1 -1
- package/src/sap/ui/model/odata/v2/Context.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataAnnotations.js +1 -1
- package/src/sap/ui/model/odata/v2/ODataListBinding.js +35 -13
- package/src/sap/ui/model/odata/v2/ODataModel.js +21 -8
- package/src/sap/ui/model/odata/v2/ODataTreeBinding.js +33 -2
- package/src/sap/ui/model/odata/v4/Context.js +81 -7
- package/src/sap/ui/model/odata/v4/ODataContextBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataListBinding.js +217 -75
- package/src/sap/ui/model/odata/v4/ODataMetaModel.js +1 -1
- package/src/sap/ui/model/odata/v4/ODataModel.js +6 -6
- package/src/sap/ui/model/odata/v4/ODataPropertyBinding.js +1 -1
- package/src/sap/ui/model/odata/v4/lib/_AggregationCache.js +406 -199
- package/src/sap/ui/model/odata/v4/lib/_AggregationHelper.js +12 -7
- package/src/sap/ui/model/odata/v4/lib/_Cache.js +53 -30
- package/src/sap/ui/model/odata/v4/lib/_Helper.js +6 -4
- package/src/sap/ui/model/odata/v4/lib/_Requestor.js +6 -6
- package/src/sap/ui/model/resource/ResourceModel.js +5 -6
- package/src/sap/ui/model/type/Boolean.js +1 -1
- package/src/sap/ui/model/type/Currency.js +1 -1
- package/src/sap/ui/model/type/Date.js +1 -1
- package/src/sap/ui/model/type/DateInterval.js +1 -1
- package/src/sap/ui/model/type/DateTime.js +1 -1
- package/src/sap/ui/model/type/DateTimeInterval.js +1 -1
- package/src/sap/ui/model/type/FileSize.js +1 -1
- package/src/sap/ui/model/type/Float.js +1 -1
- package/src/sap/ui/model/type/Integer.js +1 -1
- package/src/sap/ui/model/type/String.js +1 -1
- package/src/sap/ui/model/type/Time.js +1 -1
- package/src/sap/ui/model/type/TimeInterval.js +1 -1
- package/src/sap/ui/model/type/Unit.js +1 -1
- package/src/sap/ui/model/xml/XMLListBinding.js +3 -0
- package/src/sap/ui/model/xml/XMLModel.js +1 -1
- package/src/sap/ui/model/xml/XMLTreeBinding.js +3 -0
- package/src/sap/ui/performance/BeaconRequest.js +2 -2
- package/src/sap/ui/qunit/QUnitUtils.js +64 -45
- package/src/sap/ui/qunit/qunit-coverage.js +6 -0
- package/src/sap/ui/qunit/utils/ControlIterator.js +31 -1
- package/src/sap/ui/qunit/utils/MemoryLeakCheck.js +1 -1
- package/src/sap/ui/security/Security.js +128 -0
- package/src/sap/ui/test/BlanketReporter.js +2 -3
- package/src/sap/ui/test/BlanketReporterUI.view.xml +1 -1
- package/src/sap/ui/test/BranchTracking.js +2 -3
- package/src/sap/ui/test/ModuleTracking.js +48 -20
- package/src/sap/ui/test/OpaExtension.js +3 -3
- package/src/sap/ui/test/OpaPlugin.js +16 -6
- package/src/sap/ui/test/TestUtils.js +7 -4
- package/src/sap/ui/test/_BrowserLogCollector.js +1 -0
- package/src/sap/ui/test/_ControlFinder.js +3 -2
- package/src/sap/ui/test/_LogCollector.js +1 -0
- package/src/sap/ui/test/_UsageReport.js +115 -114
- package/src/sap/ui/test/actions/EnterText.js +20 -2
- package/src/sap/ui/test/autowaiter/WaiterBase.js +1 -0
- package/src/sap/ui/test/autowaiter/_moduleWaiter.js +1 -2
- package/src/sap/ui/test/autowaiter/_timeoutWaiter.js +1 -1
- package/src/sap/ui/test/generic/GenericTestCollection.js +5 -0
- package/src/sap/ui/test/generic/TestBase.js +1 -1
- package/src/sap/ui/test/generic/Utils.js +1 -1
- package/src/sap/ui/test/matchers/LabelFor.js +2 -12
- package/src/sap/ui/test/matchers/Matcher.js +1 -1
- package/src/sap/ui/test/pipelines/PipelineFactory.js +1 -0
- package/src/sap/ui/test/selectors/_Selector.js +1 -1
- package/src/sap/ui/util/Storage.js +1 -1
- package/src/ui5loader-autoconfig.js +84 -11
- package/test/sap/ui/core/demokit/sample/RoutingNestedComponent/localService/mockserver.js +3 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/ChartAnnotation.fragment.xml +7 -7
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Detail.view.xml +12 -13
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Facets.fragment.xml +4 -4
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Field.fragment.xml +8 -8
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/FormFacet.fragment.xml +3 -5
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/LabeledField.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/Table.fragment.xml +10 -10
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/TableFacet.fragment.xml +3 -3
- package/test/sap/ui/core/demokit/sample/ViewTemplate/scenario/extension/HeaderInfo.fragment.xml +1 -1
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Field.fragment.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/tiny/Template.view.xml +19 -21
- package/test/sap/ui/core/demokit/sample/ViewTemplate/types/TemplateV4.view.xml +2 -2
- package/test/sap/ui/core/demokit/sample/ViewTemplate/valuelist/Component.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/SandboxModelHelper.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/ValueHelp.js +2 -3
- package/test/sap/ui/core/demokit/sample/common/pages/Any.js +7 -8
- package/test/sap/ui/core/demokit/sample/odata/v4/Ancestry/Main.controller.js +15 -6
- package/test/sap/ui/core/demokit/sample/odata/v4/DataAggregation/DataAggregation.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/FlatDataAggregation/FlatDataAggregation.controller.js +3 -4
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.controller.js +39 -16
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/Main.view.xml +18 -21
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/all.json +509 -395
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/data/metadata.xml +586 -422
- package/test/sap/ui/core/demokit/sample/odata/v4/HierarchyBindAction/manifest.json +1 -1
- package/test/sap/ui/core/demokit/sample/odata/v4/LateProperties/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/ListBindingTemplate/Main.view.xml +7 -7
- package/test/sap/ui/core/demokit/sample/odata/v4/MultipleInlineCreationRowsGrid/Main.controller.js +0 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.controller.js +54 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/RecursiveHierarchy.view.xml +34 -9
- package/test/sap/ui/core/demokit/sample/odata/v4/RecursiveHierarchy/SandboxModel.js +156 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrders/Main.view.xml +3 -2
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Facets.fragment.xml +22 -23
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/FormattedText.fragment.xml +2 -3
- package/test/sap/ui/core/demokit/sample/odata/v4/SalesOrdersTemplate/Main.view.xml +5 -5
- package/test/sap/ui/core/demokit/sample/odata/v4/ServerDrivenPaging/Main.controller.js +2 -3
- package/test/sap/ui/core/demokit/tutorial/databinding/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/databinding/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/mockserver/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/12/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/13/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/14/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/15/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/16/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/navigation/17/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/01/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/02/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/03/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/04/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/05/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/06/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/07/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/08/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/09/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/10/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/odatav4/11/ui5.yaml +2 -2
- package/test/sap/ui/core/demokit/tutorial/troubleshooting/01/ui5.yaml +2 -2
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Component.js +2 -3
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/Main.view.xml +1 -1
- package/test/sap/ui/core/internal/samples/odata/v2/SalesOrders/SandboxModel.js +2 -3
- package/test/sap/ui/core/qunit/CompositeBinding.qunit.js +18 -0
- package/test/sap/ui/core/qunit/ControlRenderer.qunit.js +4 -3
- package/test/sap/ui/core/qunit/Core.qunit.js +5 -14
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Core_libraryPreloadFiles_unavoidablyUsingEval.qunit.js +6 -6
- package/test/sap/ui/core/qunit/Core_unavoidablyUsingEval.qunit.js +31 -30
- package/test/sap/ui/core/qunit/DataState.qunit.js +7 -4
- package/test/sap/ui/core/qunit/DuplicateIds.qunit.js +3 -0
- package/test/sap/ui/core/qunit/DuplicateIds_noError.qunit.js +4 -0
- package/test/sap/ui/core/qunit/Element_metadata_renderer.qunit.js +6 -0
- package/test/sap/ui/core/qunit/ExpressionParser.qunit.js +144 -85
- package/test/sap/ui/core/qunit/HTML.qunit.js +87 -84
- package/test/sap/ui/core/qunit/InvisibleText.qunit.js +22 -1
- package/test/sap/ui/core/qunit/LRUPersistentCache.qunit.js +4 -4
- package/test/sap/ui/core/qunit/Lib.qunit.js +22 -1
- package/test/sap/ui/core/qunit/ListBinding.qunit.js +14 -1
- package/test/sap/ui/core/qunit/ManagedObject.qunit.js +5 -2
- package/test/sap/ui/core/qunit/ManagedObjectMetadata.qunit.js +41 -40
- package/test/sap/ui/core/qunit/ManagedObjectModel.qunit.js +2 -1
- package/test/sap/ui/core/qunit/{ManagedObject_noBoot.qunit.js → ManagedObject_BindingParser.qunit.js} +10 -9
- package/test/sap/ui/core/qunit/Object.qunit.js +36 -0
- package/test/sap/ui/core/qunit/RenderManager.qunit.js +86 -94
- package/test/sap/ui/core/qunit/ShortcutHints.qunit.js +11 -97
- package/test/sap/ui/core/qunit/StaticBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/UIArea.qunit.js +34 -35
- package/test/sap/ui/core/qunit/analytics/AnalyticalTreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/ODataModelAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/analytics/odata4analytics.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/DesignMode_controllerDeactivated.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/DesignMode_suppressedDeactivation.qunit.js +5 -6
- package/test/sap/ui/core/qunit/app/MessageListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/app/_createDesignModeTests_legacyAPIs.qunit.js +8 -10
- package/test/sap/ui/core/qunit/base/Config_cascade.qunit.js +2 -2
- package/test/sap/ui/core/qunit/base/i18n/Formatting.qunit.js +30 -30
- package/test/sap/ui/core/qunit/base/i18n/ResourceBundle.qunit.js +123 -10
- package/test/sap/ui/core/qunit/base/util/resolveReference.qunit.js +9 -0
- package/test/sap/ui/core/qunit/base/util/testdata/MyModule.js +5 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapCustomBootTaskPreloadCss.beforeBootstrap.qunit.js +4 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapMinimal.qunit.html +1 -0
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload.qunit.js +9 -10
- package/test/sap/ui/core/qunit/bootstrap/BootstrapPreload_legacyAPIs.qunit.js +0 -2
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinBody.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/BootstrapWithinHead.qunit.html +2 -1
- package/test/sap/ui/core/qunit/bootstrap/Configuration.qunit.js +122 -266
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibConfigured.qunit.js +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibLoaded.qunit.js +16 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.html +22 -0
- package/test/sap/ui/core/qunit/bootstrap/ConfigurationFlexibility_LibNotLoaded.qunit.js +14 -0
- package/test/sap/ui/core/qunit/bootstrap/ControlBehavior.qunit.js +110 -0
- package/test/sap/ui/core/qunit/bootstrap/PreloadCfg.qunit.js +4 -3
- package/test/sap/ui/core/qunit/bootstrap/ResourceRoot_ResourcesURL_Standard.qunit.html +1 -1
- package/test/sap/ui/core/qunit/bootstrap/ThemeVersion.beforeBootstrap.qunit.js +2 -3
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted.qunit.js +39 -34
- package/test/sap/ui/core/qunit/bootstrap/_checkCoreAndLibraryBooted_legacyAPIs.qunit.js +5 -1
- package/test/sap/ui/core/qunit/bootstrap/testsuite.bootstrap.qunit.js +51 -15
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.html +23 -0
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery-compat.qunit.js +1 -1
- package/test/sap/ui/core/qunit/compat_legacyAPIs/jquery.sap.stubs.qunit.js +16 -20
- package/test/sap/ui/core/qunit/compat_legacyAPIs/testsuite.compat.qunit.js +1 -4
- package/test/sap/ui/core/qunit/component/Component.qunit.js +74 -4
- package/test/sap/ui/core/qunit/component/Models.qunit.js +3 -1
- package/test/sap/ui/core/qunit/component/Preloading.qunit.js +8 -12
- package/test/sap/ui/core/qunit/component/UIComponent.qunit.js +8 -2
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/routerPreloading/manifest.json +34 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Component.js +23 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/Main.view.xml +8 -0
- package/test/sap/ui/core/qunit/component/testdata/targetsPreloading/manifest.json +28 -0
- package/test/sap/ui/core/qunit/date/_Calendars.qunit.js +52 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaks.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/ControlMemoryLeaksUsingIterator.qunit.js +3 -4
- package/test/sap/ui/core/qunit/generic/legacy/DuplicateIdCheck.qunit.js +18 -0
- package/test/sap/ui/core/qunit/generic/legacy/SettersContextReturn.qunit.js +15 -0
- package/test/sap/ui/core/qunit/generic/testsuite.generic.qunit.js +21 -0
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessAmbiguous.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessDuplicate.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/fixture/testHarnessFailing.js +2 -3
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/opa5TestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.html +16 -0
- package/test/sap/ui/core/qunit/gherkin/qUnitTestHarness.qunit.js +1 -1
- package/test/sap/ui/core/qunit/gherkin/testsuite.gherkin.qunit.js +3 -2
- package/test/sap/ui/core/qunit/i18n/Buddhist.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/GenericLocaleData.qunit.js +217 -114
- package/test/sap/ui/core/qunit/i18n/Islamic.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/Japanese.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/LocaleData.qunit.js +341 -7
- package/test/sap/ui/core/qunit/i18n/Persian.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDate.qunit.js +3 -0
- package/test/sap/ui/core/qunit/i18n/UniversalDateUtils.qunit.js +10 -1
- package/test/sap/ui/core/qunit/i18n/helper/_timezones.js +17 -11
- package/test/sap/ui/core/qunit/i18n/testsuite.i18n.qunit.js +7 -1
- package/test/sap/ui/core/qunit/internal/1Ring.qunit.html +5 -1
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.html +2 -2
- package/test/sap/ui/core/qunit/internal/1RingModels.qunit.js +1 -0
- package/test/sap/ui/core/qunit/internal/AnnotationParser.qunit.html +1 -2
- package/test/sap/ui/core/qunit/internal/ODataV4.qunit.html +6 -1
- package/test/sap/ui/core/qunit/internal/testsuite.feature-odata-v4.qunit.js +2 -1
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.html +24 -0
- package/test/sap/ui/core/qunit/jquery.sap.global-config.qunit.js +12 -6
- package/test/sap/ui/core/qunit/jquery.sap.global-config_beforeBootstrap.qunit.js +1 -1
- package/test/sap/ui/core/qunit/json/JSONListBinding.qunit.js +30 -0
- package/test/sap/ui/core/qunit/loader/exposeAsAMDLoader.qunit.html +1 -0
- package/test/sap/ui/core/qunit/model/Binding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ClientTreeBindingAdapter.qunit.js +6 -0
- package/test/sap/ui/core/qunit/model/CompositeDataState.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Context.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/ContextBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Filter.qunit.js +49 -0
- package/test/sap/ui/core/qunit/model/FilterProcessor.qunit.js +40 -1
- package/test/sap/ui/core/qunit/model/ListBinding.qunit.js +23 -5
- package/test/sap/ui/core/qunit/model/Model.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/PropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/Sorter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/model/TreeBinding.qunit.js +43 -3
- package/test/sap/ui/core/qunit/model/TreeBindingAdapter.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/Controller.qunit.js +107 -93
- package/test/sap/ui/core/qunit/mvc/View.qunit.js +3 -0
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessor.qunit.js +17 -14
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorAsync.qunit.js +23 -12
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML.qunit.js +29 -82
- package/test/sap/ui/core/qunit/mvc/XMLTemplateProcessorRequireXML_unavoidablySync.qunit.js +123 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/extensions/Controllerextensions_legacy.qunit.js +4 -0
- package/test/sap/ui/core/qunit/mvc/testsuite.mvc.qunit.js +16 -0
- package/test/sap/ui/core/qunit/mvc/viewprocessing/ViewProcessing.qunit.js +408 -419
- package/test/sap/ui/core/qunit/odata/AnnotationHelper.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/ODataAnnotations.qunit.js +16 -0
- package/test/sap/ui/core/qunit/odata/ODataMetaModel.qunit.js +8 -1
- package/test/sap/ui/core/qunit/odata/ODataUtils.qunit.js +5 -1
- package/test/sap/ui/core/qunit/odata/type/DateTimeBase.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/type/DateTimeWithTimezone.qunit.js +6 -6
- package/test/sap/ui/core/qunit/odata/type/Time.qunit.js +3 -4
- package/test/sap/ui/core/qunit/odata/type/TimeOfDay.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataListBindingNoFakeService.qunit.js +36 -13
- package/test/sap/ui/core/qunit/odata/v2/ODataModel.integration.qunit.js +952 -292
- package/test/sap/ui/core/qunit/odata/v2/ODataModelNoFakeService.qunit.js +6 -4
- package/test/sap/ui/core/qunit/odata/v2/ODataPropertyBindingNoFakeService.qunit.js +6 -7
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingFlatNoFakeService.qunit.js +215 -1
- package/test/sap/ui/core/qunit/odata/v2/ODataTreeBindingNoFakeService.qunit.js +194 -3
- package/test/sap/ui/core/qunit/odata/v2/V2ODataModelDataState.qunit.js +3 -2
- package/test/sap/ui/core/qunit/odata/v4/Context.qunit.js +69 -2
- package/test/sap/ui/core/qunit/odata/v4/ODataListBinding.qunit.js +601 -99
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js +1859 -407
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.qunit.js +7 -5
- package/test/sap/ui/core/qunit/odata/v4/ODataModel.realOData.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationCache.qunit.js +909 -422
- package/test/sap/ui/core/qunit/odata/v4/lib/_AggregationHelper.qunit.js +21 -6
- package/test/sap/ui/core/qunit/odata/v4/lib/_Cache.qunit.js +104 -33
- package/test/sap/ui/core/qunit/odata/v4/lib/_Helper.qunit.js +8 -0
- package/test/sap/ui/core/qunit/odata/v4/lib/_MetadataRequestor.qunit.js +4 -4
- package/test/sap/ui/core/qunit/odata/v4/lib/_Requestor.qunit.js +9 -9
- package/test/sap/ui/core/qunit/odata/v4/lib/_V2MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/odata/v4/lib/_V4MetadataConverter.qunit.js +3 -3
- package/test/sap/ui/core/qunit/opa/OpaPlugin.qunit.js +16 -0
- package/test/sap/ui/core/qunit/opa/_LogCollector.qunit.js +17 -9
- package/test/sap/ui/core/qunit/opa/actions/EnterText.qunit.js +51 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_cssTransitionWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_jsAnimationWaiter.js +3 -3
- package/test/sap/ui/core/qunit/opa/autowaiter/_timeoutWaiter.js +11 -0
- package/test/sap/ui/core/qunit/opa/fixture/miniUI5Site.js +14 -8
- package/test/sap/ui/core/qunit/opa/fixture/uncaughtError.js +18 -12
- package/test/sap/ui/core/qunit/performance/BeaconRequest.qunit.js +18 -2
- package/test/sap/ui/core/qunit/resource/ResourceBinding.qunit.js +1 -0
- package/test/sap/ui/core/qunit/resource/ResourceModel.qunit.js +5 -4
- package/test/sap/ui/core/qunit/routing/async/Target.qunit.js +20 -18
- package/test/sap/ui/core/qunit/routing/async/Targets.qunit.js +1 -4
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/Component.js +2 -25
- package/test/sap/ui/core/qunit/routing/fixture/routingConfig/manifest.json +28 -0
- package/test/sap/ui/core/qunit/rule/misc/silentEventBus.qunit.js +1 -2
- package/test/sap/ui/core/qunit/testdata/libraries/scenario11/lib1/library.js +11 -0
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib1/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library-preload.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib2/library.js +3 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib3/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib5/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib6/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library-preload.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/scenario14/lib8/library.js +2 -1
- package/test/sap/ui/core/qunit/testdata/libraries/terminologies/integration/lib/library-preload.js +1 -1
- package/test/sap/ui/core/qunit/testdata/shortcutHints/Component.js +9 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.controller.js +8 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/RootView.view.xml +16 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/lib/MyControl.js +27 -0
- package/test/sap/ui/core/qunit/testdata/shortcutHints/manifest.json +26 -0
- package/test/sap/ui/core/qunit/testdata/uilib-custom-theme-fallback/library.js +4 -5
- package/test/sap/ui/core/qunit/testdata/uilib-failing-css-import/library.js +5 -6
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.controller.js +2 -1
- package/test/sap/ui/core/qunit/testdata/xml-require/view/XMLTemplateProcessorAsync_require_expression.view.xml +18 -1
- package/test/sap/ui/core/qunit/testsuite.core.framework.qunit.js +3 -0
- package/test/sap/ui/core/qunit/testsuites/testsuite.control.framework.qunit.js +0 -4
- package/test/sap/ui/core/qunit/testsuites/testsuite.foundation.enablement.qunit.js +6 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.managed.object.qunit.js +4 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.modular.core.qunit.js +1 -1
- package/test/sap/ui/core/qunit/testsuites/testsuite.security.qunit.js +3 -9
- package/test/sap/ui/core/qunit/types/DataType.qunit.js +14 -3
- package/test/sap/ui/core/qunit/types/Date.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/DateFormat.qunit.js +391 -147
- package/test/sap/ui/core/qunit/types/DateFormatTimezones.qunit.js +32 -29
- package/test/sap/ui/core/qunit/types/DateInterval.qunit.js +7 -4
- package/test/sap/ui/core/qunit/types/FileSizeFormat.qunit.js +5 -1
- package/test/sap/ui/core/qunit/types/ListFormat.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/NumberFormat.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/NumberFormatCurrencies.qunit.js +5 -4
- package/test/sap/ui/core/qunit/types/NumberFormatCurrenciesTrailing.qunit.js +4 -3
- package/test/sap/ui/core/qunit/types/SimpleType.qunit.js +3 -0
- package/test/sap/ui/core/qunit/types/TimezoneUtil.qunit.js +23 -0
- package/test/sap/ui/core/qunit/types/Types.qunit.js +44 -10
- package/test/sap/ui/core/qunit/types/testsuite.types.qunit.js +3 -0
- package/test/sap/ui/core/qunit/util/InvisibleMessage.qunit.js +4 -4
- package/test/sap/ui/core/qunit/util/XMLPreprocessor.qunit.js +592 -83
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-allowlist.js +7 -0
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-frameOptions.js +7 -0
- package/test/sap/ui/core/qunit/{bootstrap/CfgFromGlobalObject.qunit.html → util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.html} +7 -11
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-mode.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.html +26 -0
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag-override-service.qunit.js +3 -4
- package/test/sap/ui/core/qunit/{bootstrap/CfgDefaults.qunit.html → util/jQuery.sap.FrameOptions-meta-tag.qunit.html} +5 -8
- package/test/sap/ui/core/qunit/util/jQuery.sap.FrameOptions-meta-tag.qunit.js +3 -4
- package/test/sap/ui/core/qunit/util/jQuery.sap.Version.qunit.js +10 -10
- package/test/sap/ui/core/qunit/util/jquery.sap.logger.qunit.html +18 -0
- package/test/sap/ui/core/qunit/util/jquery.sap.resources.qunit.js +1 -1
- package/test/sap/ui/core/qunit/util/testsuite.util.qunit.js +1 -3
- package/test/sap/ui/core/qunit/xml/XMLListBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLModel.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLPropertyBinding.qunit.js +3 -0
- package/test/sap/ui/core/qunit/xml/XMLTreeBinding.qunit.js +3 -0
- package/test/sap/ui/core/relnotes/changes-1.119.json +1 -12
- package/test/sap/ui/core/relnotes/changes-1.120.json +360 -0
- package/test/sap/ui/core/terminologies/App.controller.js +2 -3
- package/test/sap/ui/core/terminologies/main.js +2 -3
- package/test/sap/ui/test/qunit/TestUtils.qunit.js +3 -3
- package/src/sap/ui/core/ConfigTest.js +0 -17
- package/src/sap/ui/core/_ConfigurationProvider.js +0 -187
- package/test/sap/ui/core/ComponentExtensibility_CustomizingDisabled.html +0 -57
- package/test/sap/ui/core/qunit/bootstrap/CfgDefaults.qunit.js +0 -71
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.html +0 -29
- package/test/sap/ui/core/qunit/bootstrap/CfgFromConfigAttribute.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.beforeBootstrap.qunit.js +0 -20
- package/test/sap/ui/core/qunit/bootstrap/CfgFromGlobalObject.qunit.js +0 -40
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.html +0 -42
- package/test/sap/ui/core/qunit/bootstrap/CfgFromTagAttributes.qunit.js +0 -49
- package/test/sap/ui/core/qunit/util/BusyIndicatorNoCore.qunit.js +0 -96
- package/test/sap/ui/core/qunit/util/beforeBootstrap/jQuery.sap.FrameOptions-meta-tag.js +0 -10
- package/test/sap/ui/core/samples/mvc/JSONView.html +0 -65
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"__license": "This file has been derived from Unicode Common Locale Data Repository (CLDR) files (http://cldr.unicode.org). See the copyright and permission notice in the Unicode-Data-Files-LICENSE.txt available at the same location as this file or visit http://www.unicode.org/copyright.html",
|
|
3
|
-
"__version": "
|
|
4
|
-
"__buildtime": "
|
|
3
|
+
"__version": "43.0.0",
|
|
4
|
+
"__buildtime": "2023-09-28T11:39:07.908Z",
|
|
5
5
|
"languages": {
|
|
6
6
|
"aa": "afarski",
|
|
7
7
|
"ab": "abhaski",
|
|
@@ -21,16 +21,19 @@
|
|
|
21
21
|
"am": "amharski",
|
|
22
22
|
"an": "aragonski",
|
|
23
23
|
"ang": "staroengleski",
|
|
24
|
+
"ann": "obolo",
|
|
24
25
|
"anp": "angika",
|
|
25
26
|
"ar": "arapski",
|
|
26
27
|
"ar_001": "savremeni standardni arapski",
|
|
27
28
|
"arc": "aramejski",
|
|
28
29
|
"arn": "mapuče",
|
|
29
30
|
"arp": "arapaho",
|
|
31
|
+
"ars": "najdiarapski",
|
|
30
32
|
"arw": "aravački",
|
|
31
33
|
"as": "asamski",
|
|
32
34
|
"asa": "asu",
|
|
33
35
|
"ast": "asturijski",
|
|
36
|
+
"atj": "atikameku",
|
|
34
37
|
"av": "avarski",
|
|
35
38
|
"awa": "avadi",
|
|
36
39
|
"ay": "ajmara",
|
|
@@ -64,6 +67,7 @@
|
|
|
64
67
|
"ca": "katalonski",
|
|
65
68
|
"cad": "kado",
|
|
66
69
|
"car": "karipski",
|
|
70
|
+
"cay": "kajuga",
|
|
67
71
|
"cch": "atsam",
|
|
68
72
|
"ccp": "čakma",
|
|
69
73
|
"ce": "čečenski",
|
|
@@ -82,13 +86,21 @@
|
|
|
82
86
|
"ckb": "centralni kurdski",
|
|
83
87
|
"ckb_alt-menu": "centralni kurdski",
|
|
84
88
|
"ckb_alt-variant": "centralni kurdski",
|
|
89
|
+
"clc": "čilkotin",
|
|
85
90
|
"co": "korzikanski",
|
|
86
91
|
"cop": "koptski",
|
|
87
92
|
"cr": "kri",
|
|
93
|
+
"crg": "mičif",
|
|
88
94
|
"crh": "krimskotatarski",
|
|
95
|
+
"crj": "jugoistočni kri",
|
|
96
|
+
"crk": "plainskri",
|
|
97
|
+
"crl": "severoistočni kri",
|
|
98
|
+
"crm": "muzkri",
|
|
99
|
+
"crr": "karolinški algonkvijan",
|
|
89
100
|
"crs": "sejšelski kreolski francuski",
|
|
90
101
|
"cs": "češki",
|
|
91
102
|
"csb": "kašupski",
|
|
103
|
+
"csw": "močvarni kri",
|
|
92
104
|
"cu": "crkvenoslovenski",
|
|
93
105
|
"cv": "čuvaški",
|
|
94
106
|
"cy": "velški",
|
|
@@ -121,18 +133,14 @@
|
|
|
121
133
|
"el": "grčki",
|
|
122
134
|
"elx": "elamitski",
|
|
123
135
|
"en": "engleski",
|
|
124
|
-
"en_AU": "engleski (Australija)",
|
|
125
|
-
"en_CA": "engleski (Kanada)",
|
|
126
136
|
"en_GB": "engleski (Velika Britanija)",
|
|
127
|
-
"en_GB-alt-short": "engleski (
|
|
137
|
+
"en_GB-alt-short": "engleski (UK)",
|
|
128
138
|
"en_US": "engleski (Sjedinjene Američke Države)",
|
|
129
|
-
"en_US-alt-short": "engleski (
|
|
139
|
+
"en_US-alt-short": "engleski (SAD)",
|
|
130
140
|
"enm": "srednjeengleski",
|
|
131
141
|
"eo": "esperanto",
|
|
132
142
|
"es": "španski",
|
|
133
|
-
"es_419": "španski (Latinska Amerika)",
|
|
134
143
|
"es_ES": "španski (Evropa)",
|
|
135
|
-
"es_MX": "španski (Meksiko)",
|
|
136
144
|
"et": "estonski",
|
|
137
145
|
"eu": "baskijski",
|
|
138
146
|
"ewo": "evondo",
|
|
@@ -147,8 +155,6 @@
|
|
|
147
155
|
"fo": "farski",
|
|
148
156
|
"fon": "fon",
|
|
149
157
|
"fr": "francuski",
|
|
150
|
-
"fr_CA": "francuski (Kanada)",
|
|
151
|
-
"fr_CH": "francuski (Švajcarska)",
|
|
152
158
|
"frc": "kajunski francuski",
|
|
153
159
|
"frm": "srednjefrancuski",
|
|
154
160
|
"fro": "starofrancuski",
|
|
@@ -181,8 +187,10 @@
|
|
|
181
187
|
"ha": "hausa",
|
|
182
188
|
"hai": "haida",
|
|
183
189
|
"haw": "havajski",
|
|
190
|
+
"hax": "južni haida",
|
|
184
191
|
"he": "hebrejski",
|
|
185
192
|
"hi": "hindi",
|
|
193
|
+
"hi_Latn-alt-variant": "hingliš",
|
|
186
194
|
"hil": "hiligajnonski",
|
|
187
195
|
"hit": "hetitski",
|
|
188
196
|
"hmn": "hmonški",
|
|
@@ -192,6 +200,7 @@
|
|
|
192
200
|
"ht": "haićanski",
|
|
193
201
|
"hu": "mađarski",
|
|
194
202
|
"hup": "hupa",
|
|
203
|
+
"hur": "halkomelem",
|
|
195
204
|
"hy": "jermenski",
|
|
196
205
|
"hz": "herero",
|
|
197
206
|
"ia": "interlingva",
|
|
@@ -202,6 +211,7 @@
|
|
|
202
211
|
"ig": "igbo",
|
|
203
212
|
"ii": "sečuanski ji",
|
|
204
213
|
"ik": "inupik",
|
|
214
|
+
"ikt": "zapadnokanadski inuktitut",
|
|
205
215
|
"ilo": "iloko",
|
|
206
216
|
"inh": "inguški",
|
|
207
217
|
"io": "ido",
|
|
@@ -228,7 +238,7 @@
|
|
|
228
238
|
"kea": "zelenortski",
|
|
229
239
|
"kfo": "koro",
|
|
230
240
|
"kg": "kongo",
|
|
231
|
-
"kgp": "
|
|
241
|
+
"kgp": "kaingang",
|
|
232
242
|
"kha": "kasi",
|
|
233
243
|
"kho": "kotaneški",
|
|
234
244
|
"khq": "kojra čiini",
|
|
@@ -260,6 +270,7 @@
|
|
|
260
270
|
"kut": "kutenaj",
|
|
261
271
|
"kv": "komi",
|
|
262
272
|
"kw": "kornvolski",
|
|
273
|
+
"kwk": "kvakvala",
|
|
263
274
|
"ky": "kirgiski",
|
|
264
275
|
"la": "latinski",
|
|
265
276
|
"lad": "ladino",
|
|
@@ -270,14 +281,16 @@
|
|
|
270
281
|
"lez": "lezginski",
|
|
271
282
|
"lg": "ganda",
|
|
272
283
|
"li": "limburški",
|
|
273
|
-
"
|
|
284
|
+
"lil": "lilut",
|
|
274
285
|
"lkt": "lakota",
|
|
286
|
+
"lmo": "lombard",
|
|
275
287
|
"ln": "lingala",
|
|
276
288
|
"lo": "laoski",
|
|
277
289
|
"lol": "mongo",
|
|
278
290
|
"lou": "luizijanski kreolski",
|
|
279
291
|
"loz": "lozi",
|
|
280
292
|
"lrc": "severni luri",
|
|
293
|
+
"lsm": "samia",
|
|
281
294
|
"lt": "litvanski",
|
|
282
295
|
"lu": "luba-katanga",
|
|
283
296
|
"lua": "luba-lulua",
|
|
@@ -311,6 +324,7 @@
|
|
|
311
324
|
"mn": "mongolski",
|
|
312
325
|
"mnc": "mandžurski",
|
|
313
326
|
"mni": "manipurski",
|
|
327
|
+
"moe": "inuajmun",
|
|
314
328
|
"moh": "mohočki",
|
|
315
329
|
"mos": "mosi",
|
|
316
330
|
"mr": "marati",
|
|
@@ -357,6 +371,11 @@
|
|
|
357
371
|
"nzi": "nzima",
|
|
358
372
|
"oc": "oksitanski",
|
|
359
373
|
"oj": "odžibve",
|
|
374
|
+
"ojb": "severozapadni odžibva",
|
|
375
|
+
"ojc": "centralni odžibva",
|
|
376
|
+
"ojs": "odžikri",
|
|
377
|
+
"ojw": "zapadni odžibva",
|
|
378
|
+
"oka": "okangan",
|
|
360
379
|
"om": "oromo",
|
|
361
380
|
"or": "odija",
|
|
362
381
|
"os": "osetinski",
|
|
@@ -372,14 +391,15 @@
|
|
|
372
391
|
"peo": "staropersijski",
|
|
373
392
|
"phn": "feničanski",
|
|
374
393
|
"pi": "pali",
|
|
394
|
+
"pis": "pidžin",
|
|
375
395
|
"pl": "poljski",
|
|
376
396
|
"pon": "ponpejski",
|
|
397
|
+
"pqm": "malisepasamakvodi",
|
|
377
398
|
"prg": "pruski",
|
|
378
399
|
"pro": "starooksitanski",
|
|
379
400
|
"ps": "paštunski",
|
|
380
401
|
"ps_alt-variant": "pašto",
|
|
381
402
|
"pt": "portugalski",
|
|
382
|
-
"pt_BR": "portugalski (Brazil)",
|
|
383
403
|
"pt_PT": "portugalski (Portugal)",
|
|
384
404
|
"qu": "kečua",
|
|
385
405
|
"quc": "kiče",
|
|
@@ -424,6 +444,7 @@
|
|
|
424
444
|
"sid": "sidamo",
|
|
425
445
|
"sk": "slovački",
|
|
426
446
|
"sl": "slovenački",
|
|
447
|
+
"slh": "južni lašutsid",
|
|
427
448
|
"sm": "samoanski",
|
|
428
449
|
"sma": "južni sami",
|
|
429
450
|
"smj": "lule sami",
|
|
@@ -440,6 +461,7 @@
|
|
|
440
461
|
"ss": "svazi",
|
|
441
462
|
"ssy": "saho",
|
|
442
463
|
"st": "sesoto",
|
|
464
|
+
"str": "streicsališ",
|
|
443
465
|
"su": "sundanski",
|
|
444
466
|
"suk": "sukuma",
|
|
445
467
|
"sus": "susu",
|
|
@@ -451,13 +473,16 @@
|
|
|
451
473
|
"syc": "sirijački",
|
|
452
474
|
"syr": "sirijski",
|
|
453
475
|
"ta": "tamilski",
|
|
476
|
+
"tce": "južni tačon",
|
|
454
477
|
"te": "telugu",
|
|
455
478
|
"tem": "timne",
|
|
456
479
|
"teo": "teso",
|
|
457
480
|
"ter": "tereno",
|
|
458
481
|
"tet": "tetum",
|
|
459
482
|
"tg": "tadžički",
|
|
483
|
+
"tgx": "tagiš",
|
|
460
484
|
"th": "tajski",
|
|
485
|
+
"tht": "tahltan",
|
|
461
486
|
"ti": "tigrinja",
|
|
462
487
|
"tig": "tigre",
|
|
463
488
|
"tiv": "tiv",
|
|
@@ -470,12 +495,14 @@
|
|
|
470
495
|
"tn": "cvana",
|
|
471
496
|
"to": "tonganski",
|
|
472
497
|
"tog": "njasa tonga",
|
|
498
|
+
"tok": "tokipona",
|
|
473
499
|
"tpi": "tok pisin",
|
|
474
500
|
"tr": "turski",
|
|
475
501
|
"trv": "taroko",
|
|
476
502
|
"ts": "conga",
|
|
477
503
|
"tsi": "cimšian",
|
|
478
504
|
"tt": "tatarski",
|
|
505
|
+
"ttm": "severni tučon",
|
|
479
506
|
"tum": "tumbuka",
|
|
480
507
|
"tvl": "tuvalu",
|
|
481
508
|
"tw": "tvi",
|
|
@@ -504,6 +531,7 @@
|
|
|
504
531
|
"was": "vašo",
|
|
505
532
|
"wbp": "varlpiri",
|
|
506
533
|
"wo": "volof",
|
|
534
|
+
"wuu": "vu kineski",
|
|
507
535
|
"xal": "kalmički",
|
|
508
536
|
"xh": "kosa",
|
|
509
537
|
"xog": "soga",
|
|
@@ -513,7 +541,7 @@
|
|
|
513
541
|
"ybb": "jemba",
|
|
514
542
|
"yi": "jidiš",
|
|
515
543
|
"yo": "joruba",
|
|
516
|
-
"yrl": "
|
|
544
|
+
"yrl": "ningatu",
|
|
517
545
|
"yue": "kantonski",
|
|
518
546
|
"yue_alt-menu": "kantonski kineski",
|
|
519
547
|
"za": "džuanški",
|
|
@@ -533,57 +561,42 @@
|
|
|
533
561
|
"zza": "zaza"
|
|
534
562
|
},
|
|
535
563
|
"scripts": {
|
|
536
|
-
"Adlm": "
|
|
537
|
-
"Aghb": "Aghb",
|
|
538
|
-
"Ahom": "Ahom",
|
|
564
|
+
"Adlm": "adlam",
|
|
539
565
|
"Arab": "arapsko pismo",
|
|
540
566
|
"Arab-alt-variant": "persijsko-arapsko pismo",
|
|
541
|
-
"Aran": "
|
|
567
|
+
"Aran": "nastalik",
|
|
542
568
|
"Armi": "imperijsko aramejsko pismo",
|
|
543
569
|
"Armn": "jermensko pismo",
|
|
544
570
|
"Avst": "avestansko pismo",
|
|
545
571
|
"Bali": "balijsko pismo",
|
|
546
|
-
"Bamu": "Bamu",
|
|
547
|
-
"Bass": "Bass",
|
|
548
572
|
"Batk": "batak pismo",
|
|
549
573
|
"Beng": "bengalsko pismo",
|
|
550
|
-
"Bhks": "Bhks",
|
|
551
574
|
"Blis": "blisimbolično pismo",
|
|
552
575
|
"Bopo": "bopomofo pismo",
|
|
553
576
|
"Brah": "bramansko pismo",
|
|
554
577
|
"Brai": "brajevo pismo",
|
|
555
578
|
"Bugi": "buginsko pismo",
|
|
556
579
|
"Buhd": "buhidsko pismo",
|
|
557
|
-
"Cakm": "
|
|
580
|
+
"Cakm": "čakma",
|
|
558
581
|
"Cans": "ujedinjeni kanadski aboridžinski silabici",
|
|
559
582
|
"Cari": "karijsko pismo",
|
|
560
583
|
"Cham": "čamsko pismo",
|
|
561
|
-
"Cher": "
|
|
562
|
-
"Chrs": "Chrs",
|
|
584
|
+
"Cher": "čeroki",
|
|
563
585
|
"Cirt": "cirt pismo",
|
|
564
586
|
"Copt": "koptičko pismo",
|
|
565
|
-
"Cpmn": "Cpmn",
|
|
566
587
|
"Cprt": "kiparsko pismo",
|
|
567
588
|
"Cyrl": "ćirilica",
|
|
568
589
|
"Cyrs": "Staroslovenska crkvena ćirilica",
|
|
569
590
|
"Deva": "devanagari",
|
|
570
|
-
"Diak": "Diak",
|
|
571
|
-
"Dogr": "Dogr",
|
|
572
591
|
"Dsrt": "Dezeret",
|
|
573
|
-
"Dupl": "Dupl",
|
|
574
592
|
"Egyd": "egipatsko narodno pismo",
|
|
575
593
|
"Egyh": "egipatsko hijeratsko pismo",
|
|
576
594
|
"Egyp": "egipatski hijeroglifi",
|
|
577
|
-
"Elba": "Elba",
|
|
578
|
-
"Elym": "Elym",
|
|
579
595
|
"Ethi": "etiopsko pismo",
|
|
580
596
|
"Geok": "gruzijsko khutsuri pismo",
|
|
581
597
|
"Geor": "gruzijsko pismo",
|
|
582
598
|
"Glag": "glagoljica",
|
|
583
|
-
"Gong": "Gong",
|
|
584
|
-
"Gonm": "Gonm",
|
|
585
599
|
"Goth": "Gotika",
|
|
586
|
-
"Gran": "Gran",
|
|
587
600
|
"Grek": "grčko pismo",
|
|
588
601
|
"Gujr": "gudžaratsko pismo",
|
|
589
602
|
"Guru": "gurmuki pismo",
|
|
@@ -595,12 +608,9 @@
|
|
|
595
608
|
"Hans-alt-stand-alone": "pojednostavljeno han pismo",
|
|
596
609
|
"Hant": "tradicionalno kinesko pismo",
|
|
597
610
|
"Hant-alt-stand-alone": "tradicionalno han pismo",
|
|
598
|
-
"Hatr": "Hatr",
|
|
599
611
|
"Hebr": "hebrejsko pismo",
|
|
600
612
|
"Hira": "hiragana",
|
|
601
|
-
"Hluw": "Hluw",
|
|
602
613
|
"Hmng": "pahav hmong pismo",
|
|
603
|
-
"Hmnp": "Hmnp",
|
|
604
614
|
"Hrkt": "japanska slogovna pisma",
|
|
605
615
|
"Hung": "staromađarsko pismo",
|
|
606
616
|
"Inds": "induško pismo",
|
|
@@ -610,11 +620,8 @@
|
|
|
610
620
|
"Jpan": "japansko pismo",
|
|
611
621
|
"Kali": "kajah-li pismo",
|
|
612
622
|
"Kana": "katakana",
|
|
613
|
-
"Kawi": "Kawi",
|
|
614
623
|
"Khar": "karošti pismo",
|
|
615
624
|
"Khmr": "kmersko pismo",
|
|
616
|
-
"Khoj": "Khoj",
|
|
617
|
-
"Kits": "Kits",
|
|
618
625
|
"Knda": "kanada pismo",
|
|
619
626
|
"Kore": "korejsko pismo",
|
|
620
627
|
"Kthi": "kaiti",
|
|
@@ -627,43 +634,23 @@
|
|
|
627
634
|
"Limb": "limbu pismo",
|
|
628
635
|
"Lina": "linearno A pismo",
|
|
629
636
|
"Linb": "linearno B pismo",
|
|
630
|
-
"Lisu": "Lisu",
|
|
631
637
|
"Lyci": "lisijsko pismo",
|
|
632
638
|
"Lydi": "lidijsko pismo",
|
|
633
|
-
"Mahj": "Mahj",
|
|
634
|
-
"Maka": "Maka",
|
|
635
639
|
"Mand": "mandeansko pismo",
|
|
636
640
|
"Mani": "manihejsko pismo",
|
|
637
|
-
"Marc": "Marc",
|
|
638
641
|
"Maya": "majanski hijeroglifi",
|
|
639
|
-
"Medf": "Medf",
|
|
640
|
-
"Mend": "Mend",
|
|
641
|
-
"Merc": "Merc",
|
|
642
642
|
"Mero": "meroitik pismo",
|
|
643
643
|
"Mlym": "malajalamsko pismo",
|
|
644
|
-
"Modi": "Modi",
|
|
645
644
|
"Mong": "mongolsko pismo",
|
|
646
645
|
"Moon": "mesečevo pismo",
|
|
647
|
-
"
|
|
648
|
-
"Mtei": "meitei majek pismo",
|
|
649
|
-
"Mult": "Mult",
|
|
646
|
+
"Mtei": "meitei majek",
|
|
650
647
|
"Mymr": "mijanmarsko pismo",
|
|
651
|
-
"
|
|
652
|
-
"Nand": "Nand",
|
|
653
|
-
"Narb": "Narb",
|
|
654
|
-
"Nbat": "Nbat",
|
|
655
|
-
"Newa": "Newa",
|
|
656
|
-
"Nkoo": "n’ko pismo",
|
|
657
|
-
"Nshu": "Nshu",
|
|
648
|
+
"Nkoo": "nko",
|
|
658
649
|
"Ogam": "ogamsko pismo",
|
|
659
|
-
"Olck": "ol čiki
|
|
650
|
+
"Olck": "ol čiki",
|
|
660
651
|
"Orkh": "orkonsko pismo",
|
|
661
652
|
"Orya": "orijansko pismo",
|
|
662
|
-
"Osge": "Osge",
|
|
663
653
|
"Osma": "osmanjansko pismo",
|
|
664
|
-
"Ougr": "Ougr",
|
|
665
|
-
"Palm": "Palm",
|
|
666
|
-
"Pauc": "Pauc",
|
|
667
654
|
"Perm": "staro permiksko pismo",
|
|
668
655
|
"Phag": "pags-pa pismo",
|
|
669
656
|
"Phli": "pisani pahlavi",
|
|
@@ -672,25 +659,16 @@
|
|
|
672
659
|
"Phnx": "Feničansko pismo",
|
|
673
660
|
"Plrd": "porald fonetsko pismo",
|
|
674
661
|
"Prti": "pisani partian",
|
|
675
|
-
"Qaag": "Qaag",
|
|
676
662
|
"Rjng": "rejang pismo",
|
|
677
|
-
"Rohg": "
|
|
663
|
+
"Rohg": "hanifi",
|
|
678
664
|
"Roro": "rongorongo pismo",
|
|
679
665
|
"Runr": "runsko pismo",
|
|
680
666
|
"Samr": "samaritansko pismo",
|
|
681
667
|
"Sara": "sarati pismo",
|
|
682
|
-
"Sarb": "Sarb",
|
|
683
668
|
"Saur": "sauraštra pismo",
|
|
684
669
|
"Sgnw": "znakovno pismo",
|
|
685
670
|
"Shaw": "šavijansko pismo",
|
|
686
|
-
"Shrd": "Shrd",
|
|
687
|
-
"Sidd": "Sidd",
|
|
688
|
-
"Sind": "Sind",
|
|
689
671
|
"Sinh": "sinhalsko pismo",
|
|
690
|
-
"Sogd": "Sogd",
|
|
691
|
-
"Sogo": "Sogo",
|
|
692
|
-
"Sora": "Sora",
|
|
693
|
-
"Soyo": "Soyo",
|
|
694
672
|
"Sund": "sundansko pismo",
|
|
695
673
|
"Sylo": "siloti nagri pismo",
|
|
696
674
|
"Syrc": "sirijsko pismo",
|
|
@@ -698,33 +676,23 @@
|
|
|
698
676
|
"Syrj": "zapadnosirijsko pismo",
|
|
699
677
|
"Syrn": "pismo istočne Sirije",
|
|
700
678
|
"Tagb": "tagbanva pismo",
|
|
701
|
-
"Takr": "Takr",
|
|
702
679
|
"Tale": "tai le pismo",
|
|
703
680
|
"Talu": "novi tai lue",
|
|
704
681
|
"Taml": "tamilsko pismo",
|
|
705
|
-
"Tang": "Tang",
|
|
706
682
|
"Tavt": "tai viet pismo",
|
|
707
683
|
"Telu": "telugu pismo",
|
|
708
684
|
"Teng": "tengvar pismo",
|
|
709
|
-
"Tfng": "tifinag
|
|
685
|
+
"Tfng": "tifinag",
|
|
710
686
|
"Tglg": "Tagalog",
|
|
711
687
|
"Thaa": "tana pismo",
|
|
712
688
|
"Thai": "tajlandsko pismo",
|
|
713
689
|
"Tibt": "tibetansko pismo",
|
|
714
|
-
"Tirh": "Tirh",
|
|
715
|
-
"Tnsa": "Tnsa",
|
|
716
|
-
"Toto": "Toto",
|
|
717
690
|
"Ugar": "ugaritsko pismo",
|
|
718
|
-
"Vaii": "vai
|
|
691
|
+
"Vaii": "vai",
|
|
719
692
|
"Visp": "vidljivi govor",
|
|
720
|
-
"Vith": "Vith",
|
|
721
|
-
"Wara": "Wara",
|
|
722
|
-
"Wcho": "Wcho",
|
|
723
693
|
"Xpeo": "staropersijsko pismo",
|
|
724
694
|
"Xsux": "sumersko-akadsko kuneiform pismo",
|
|
725
|
-
"
|
|
726
|
-
"Yiii": "ji pismo",
|
|
727
|
-
"Zanb": "Zanb",
|
|
695
|
+
"Yiii": "ji",
|
|
728
696
|
"Zinh": "nasledno pismo",
|
|
729
697
|
"Zmth": "matematička notacija",
|
|
730
698
|
"Zsye": "emodži",
|
|
@@ -951,6 +919,7 @@
|
|
|
951
919
|
"NR": "Nauru",
|
|
952
920
|
"NU": "Niue",
|
|
953
921
|
"NZ": "Novi Zeland",
|
|
922
|
+
"NZ-alt-variant": "Novi Zeland",
|
|
954
923
|
"OM": "Oman",
|
|
955
924
|
"PA": "Panama",
|
|
956
925
|
"PE": "Peru",
|
|
@@ -1010,6 +979,7 @@
|
|
|
1010
979
|
"TN": "Tunis",
|
|
1011
980
|
"TO": "Tonga",
|
|
1012
981
|
"TR": "Turska",
|
|
982
|
+
"TR-alt-variant": "Turska",
|
|
1013
983
|
"TT": "Trinidad i Tobago",
|
|
1014
984
|
"TV": "Tuvalu",
|
|
1015
985
|
"TW": "Tajvan",
|
|
@@ -1070,42 +1040,37 @@
|
|
|
1070
1040
|
"EBhm": "E hh:mm B",
|
|
1071
1041
|
"EBhms": "E hh:mm:ss B",
|
|
1072
1042
|
"Ed": "E d.",
|
|
1073
|
-
"Ehm": "E h:mm
|
|
1043
|
+
"Ehm": "E h:mm a",
|
|
1074
1044
|
"EHm": "E HH:mm",
|
|
1075
|
-
"Ehms": "E h:mm:ss
|
|
1045
|
+
"Ehms": "E h:mm:ss a",
|
|
1076
1046
|
"EHms": "E HH:mm:ss",
|
|
1077
1047
|
"Gy": "y. G",
|
|
1078
1048
|
"GyMd": "d.MM.y. GGGGG",
|
|
1079
1049
|
"GyMMM": "MMM y. G",
|
|
1080
1050
|
"GyMMMd": "d. MMM y. G",
|
|
1081
1051
|
"GyMMMEd": "E, d. MMM y. G",
|
|
1082
|
-
"h": "h
|
|
1052
|
+
"h": "h a",
|
|
1083
1053
|
"H": "HH",
|
|
1084
|
-
"hm": "h:mm
|
|
1054
|
+
"hm": "h:mm a",
|
|
1085
1055
|
"Hm": "HH:mm",
|
|
1086
|
-
"hms": "h:mm:ss
|
|
1056
|
+
"hms": "h:mm:ss a",
|
|
1087
1057
|
"Hms": "HH:mm:ss",
|
|
1088
|
-
"hmsv": "h:mm:ss
|
|
1058
|
+
"hmsv": "h:mm:ss a v",
|
|
1089
1059
|
"Hmsv": "HH:mm:ss v",
|
|
1090
|
-
"hmv": "h:mm
|
|
1060
|
+
"hmv": "h:mm a v",
|
|
1091
1061
|
"Hmv": "HH:mm v",
|
|
1092
1062
|
"M": "L",
|
|
1093
|
-
"Md": "d.M.",
|
|
1094
|
-
"MEd": "E, d.M.",
|
|
1095
|
-
"MMdd": "dd.MM.",
|
|
1063
|
+
"Md": "d. M.",
|
|
1064
|
+
"MEd": "E, d. M.",
|
|
1096
1065
|
"MMM": "LLL",
|
|
1097
1066
|
"MMMd": "d. MMM",
|
|
1098
|
-
"MMMdd": "dd.MMM",
|
|
1099
1067
|
"MMMEd": "E d. MMM",
|
|
1100
1068
|
"MMMMd": "d. MMMM",
|
|
1101
|
-
"MMMMEd": "E, d. MMMM",
|
|
1102
1069
|
"ms": "mm:ss",
|
|
1103
1070
|
"y": "y.",
|
|
1104
|
-
"yM": "M.y.",
|
|
1105
|
-
"yMd": "d.M.y.",
|
|
1106
|
-
"yMEd": "E, d.M.y.",
|
|
1107
|
-
"yMM": "MM.y.",
|
|
1108
|
-
"yMMdd": "dd.MM.y.",
|
|
1071
|
+
"yM": "M. y.",
|
|
1072
|
+
"yMd": "d. M. y.",
|
|
1073
|
+
"yMEd": "E, d. M. y.",
|
|
1109
1074
|
"yMMM": "MMM y.",
|
|
1110
1075
|
"yMMMd": "d. MMM y.",
|
|
1111
1076
|
"yMMMEd": "E, d. MMM y.",
|
|
@@ -1113,7 +1078,12 @@
|
|
|
1113
1078
|
"yQQQ": "QQQ y.",
|
|
1114
1079
|
"yQQQQ": "QQQQ y.",
|
|
1115
1080
|
"MMMMW": "W. 'sedmica' 'u' MMMM.",
|
|
1116
|
-
"yw": "w. 'sedmica' 'u' Y."
|
|
1081
|
+
"yw": "w. 'sedmica' 'u' Y.",
|
|
1082
|
+
"MMdd": "dd.MM.",
|
|
1083
|
+
"MMMdd": "dd.MMM",
|
|
1084
|
+
"MMMMEd": "E, d. MMMM",
|
|
1085
|
+
"yMM": "MM.y.",
|
|
1086
|
+
"yMMdd": "dd.MM.y."
|
|
1117
1087
|
},
|
|
1118
1088
|
"appendItems": {
|
|
1119
1089
|
"Day": "{0} ({2}: {1})",
|
|
@@ -1129,7 +1099,7 @@
|
|
|
1129
1099
|
"Year": "{1} {0}"
|
|
1130
1100
|
},
|
|
1131
1101
|
"intervalFormats": {
|
|
1132
|
-
"intervalFormatFallback": "{0}
|
|
1102
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1133
1103
|
"Bh": {
|
|
1134
1104
|
"B": "h B – h B",
|
|
1135
1105
|
"h": "h–h B"
|
|
@@ -1181,33 +1151,33 @@
|
|
|
1181
1151
|
"y": "G y MMM d, E – y MMM d, E"
|
|
1182
1152
|
},
|
|
1183
1153
|
"h": {
|
|
1184
|
-
"a": "h
|
|
1185
|
-
"h": "h–h
|
|
1154
|
+
"a": "h a – h a",
|
|
1155
|
+
"h": "h–h a"
|
|
1186
1156
|
},
|
|
1187
1157
|
"H": {
|
|
1188
1158
|
"H": "HH–HH"
|
|
1189
1159
|
},
|
|
1190
1160
|
"hm": {
|
|
1191
|
-
"a": "h:mm
|
|
1192
|
-
"h": "h:mm–h:mm
|
|
1193
|
-
"m": "h:mm–h:mm
|
|
1161
|
+
"a": "h:mm a – h:mm a",
|
|
1162
|
+
"h": "h:mm–h:mm a",
|
|
1163
|
+
"m": "h:mm–h:mm a"
|
|
1194
1164
|
},
|
|
1195
1165
|
"Hm": {
|
|
1196
1166
|
"H": "HH:mm–HH:mm",
|
|
1197
1167
|
"m": "HH:mm–HH:mm"
|
|
1198
1168
|
},
|
|
1199
1169
|
"hmv": {
|
|
1200
|
-
"a": "h:mm
|
|
1201
|
-
"h": "h:mm–h:mm
|
|
1202
|
-
"m": "h:mm–h:mm
|
|
1170
|
+
"a": "h:mm a – h:mm a v",
|
|
1171
|
+
"h": "h:mm–h:mm a v",
|
|
1172
|
+
"m": "h:mm–h:mm a v"
|
|
1203
1173
|
},
|
|
1204
1174
|
"Hmv": {
|
|
1205
1175
|
"H": "HH:mm–HH:mm v",
|
|
1206
1176
|
"m": "HH:mm–HH:mm v"
|
|
1207
1177
|
},
|
|
1208
1178
|
"hv": {
|
|
1209
|
-
"a": "h
|
|
1210
|
-
"h": "h–h
|
|
1179
|
+
"a": "h a – h a v",
|
|
1180
|
+
"h": "h–h a v"
|
|
1211
1181
|
},
|
|
1212
1182
|
"Hv": {
|
|
1213
1183
|
"H": "HH–HH v"
|
|
@@ -1216,58 +1186,58 @@
|
|
|
1216
1186
|
"M": "M–M"
|
|
1217
1187
|
},
|
|
1218
1188
|
"Md": {
|
|
1219
|
-
"d": "d.M
|
|
1220
|
-
"M": "d.M
|
|
1189
|
+
"d": "d. M. – d. M.",
|
|
1190
|
+
"M": "d. M. – d. M."
|
|
1221
1191
|
},
|
|
1222
1192
|
"MEd": {
|
|
1223
|
-
"d": "E, d.M
|
|
1224
|
-
"M": "E, d.M
|
|
1193
|
+
"d": "E, d. M. – E, d. M.",
|
|
1194
|
+
"M": "E, d. M. – E, d. M."
|
|
1225
1195
|
},
|
|
1226
1196
|
"MMM": {
|
|
1227
1197
|
"M": "MMM–MMM"
|
|
1228
1198
|
},
|
|
1229
1199
|
"MMMd": {
|
|
1230
1200
|
"d": "dd.–dd. MMM",
|
|
1231
|
-
"M": "dd. MMM
|
|
1201
|
+
"M": "dd. MMM – dd. MMM"
|
|
1232
1202
|
},
|
|
1233
1203
|
"MMMEd": {
|
|
1234
|
-
"d": "E, dd.
|
|
1235
|
-
"M": "E, dd. MMM
|
|
1204
|
+
"d": "E, dd. – E, dd. MMM",
|
|
1205
|
+
"M": "E, dd. MMM – E, dd. MMM"
|
|
1236
1206
|
},
|
|
1237
1207
|
"y": {
|
|
1238
1208
|
"y": "y–y"
|
|
1239
1209
|
},
|
|
1240
1210
|
"yM": {
|
|
1241
|
-
"M": "M
|
|
1242
|
-
"y": "M.y.
|
|
1211
|
+
"M": "M – M. y.",
|
|
1212
|
+
"y": "M.y. – M.y."
|
|
1243
1213
|
},
|
|
1244
1214
|
"yMd": {
|
|
1245
|
-
"d": "d.M.y.
|
|
1246
|
-
"M": "d.M.y.
|
|
1247
|
-
"y": "d.M.y.
|
|
1215
|
+
"d": "d. M. y. – d. M. y.",
|
|
1216
|
+
"M": "d. M. y. – d. M. y.",
|
|
1217
|
+
"y": "d. M. y. – d. M. y."
|
|
1248
1218
|
},
|
|
1249
1219
|
"yMEd": {
|
|
1250
|
-
"d": "E, d.M.y.
|
|
1251
|
-
"M": "E, d.M.y.
|
|
1252
|
-
"y": "E, d.M.y.
|
|
1220
|
+
"d": "E, d. M. y. – E, d. M. y.",
|
|
1221
|
+
"M": "E, d. M. y. – E, d. M. y.",
|
|
1222
|
+
"y": "E, d. M. y. – E, d. M. y."
|
|
1253
1223
|
},
|
|
1254
1224
|
"yMMM": {
|
|
1255
1225
|
"M": "MMM–MMM y.",
|
|
1256
|
-
"y": "MMM y.
|
|
1226
|
+
"y": "MMM y. – MMM y."
|
|
1257
1227
|
},
|
|
1258
1228
|
"yMMMd": {
|
|
1259
1229
|
"d": "dd.–dd. MMM y.",
|
|
1260
|
-
"M": "dd. MMM
|
|
1261
|
-
"y": "dd. MMM y.
|
|
1230
|
+
"M": "dd. MMM – dd. MMM y.",
|
|
1231
|
+
"y": "dd. MMM y. – dd. MMM y."
|
|
1262
1232
|
},
|
|
1263
1233
|
"yMMMEd": {
|
|
1264
|
-
"d": "E, dd.
|
|
1265
|
-
"M": "E, dd. MMM
|
|
1266
|
-
"y": "E, dd. MMM y.
|
|
1234
|
+
"d": "E, dd. – E, dd. MMM y.",
|
|
1235
|
+
"M": "E, dd. MMM – E, dd. MMM y.",
|
|
1236
|
+
"y": "E, dd. MMM y. – E, dd. MMM y."
|
|
1267
1237
|
},
|
|
1268
1238
|
"yMMMM": {
|
|
1269
|
-
"M": "MMMM
|
|
1270
|
-
"y": "MMMM y.
|
|
1239
|
+
"M": "MMMM – MMMM y.",
|
|
1240
|
+
"y": "MMMM y. – MMMM y."
|
|
1271
1241
|
}
|
|
1272
1242
|
}
|
|
1273
1243
|
},
|
|
@@ -1502,8 +1472,8 @@
|
|
|
1502
1472
|
"PM"
|
|
1503
1473
|
],
|
|
1504
1474
|
"narrow": [
|
|
1505
|
-
"pre
|
|
1506
|
-
"po
|
|
1475
|
+
"pre podne",
|
|
1476
|
+
"po podne"
|
|
1507
1477
|
],
|
|
1508
1478
|
"wide": [
|
|
1509
1479
|
"AM",
|
|
@@ -1605,45 +1575,45 @@
|
|
|
1605
1575
|
"EBhm": "E hh:mm B",
|
|
1606
1576
|
"EBhms": "E hh:mm:ss B",
|
|
1607
1577
|
"Ed": "E d.",
|
|
1608
|
-
"Ehm": "E hh:mm
|
|
1578
|
+
"Ehm": "E hh:mm a",
|
|
1609
1579
|
"EHm": "E HH:mm",
|
|
1610
|
-
"Ehms": "E hh:mm:ss
|
|
1580
|
+
"Ehms": "E hh:mm:ss a",
|
|
1611
1581
|
"EHms": "E HH:mm:ss",
|
|
1612
1582
|
"Gy": "y. G",
|
|
1613
1583
|
"GyMd": "d.M.y. GGGGG",
|
|
1614
1584
|
"GyMMM": "MMM y. G",
|
|
1615
1585
|
"GyMMMd": "d. MMM y. G",
|
|
1616
1586
|
"GyMMMEd": "E, d. MMM y. G",
|
|
1617
|
-
"h": "h
|
|
1587
|
+
"h": "h a",
|
|
1618
1588
|
"H": "HH",
|
|
1619
|
-
"hm": "hh:mm
|
|
1589
|
+
"hm": "hh:mm a",
|
|
1620
1590
|
"Hm": "HH:mm",
|
|
1621
|
-
"hms": "hh:mm:ss
|
|
1591
|
+
"hms": "hh:mm:ss a",
|
|
1622
1592
|
"Hms": "HH:mm:ss",
|
|
1623
1593
|
"M": "L",
|
|
1624
1594
|
"Md": "d.M.",
|
|
1625
1595
|
"MEd": "E, d.M.",
|
|
1626
|
-
"MMdd": "MM-dd",
|
|
1627
1596
|
"MMM": "LLL",
|
|
1628
1597
|
"MMMd": "d. MMM",
|
|
1629
|
-
"MMMdd": "dd.MMM",
|
|
1630
1598
|
"MMMEd": "E, d. MMM",
|
|
1631
1599
|
"MMMMd": "d. MMMM",
|
|
1632
|
-
"MMMMEd": "E, d. MMMM",
|
|
1633
1600
|
"ms": "mm:ss",
|
|
1634
1601
|
"y": "y. G",
|
|
1635
1602
|
"yyyy": "y. G",
|
|
1636
1603
|
"yyyyM": "M.y. GGGGG",
|
|
1637
1604
|
"yyyyMd": "d.M.y. GGGGG",
|
|
1638
1605
|
"yyyyMEd": "E, d.M.y. GGGGG",
|
|
1639
|
-
"yyyyMM": "MM.y. G",
|
|
1640
|
-
"yyyyMMdd": "dd.MM.y. G",
|
|
1641
1606
|
"yyyyMMM": "MMM y. G",
|
|
1642
1607
|
"yyyyMMMd": "d. MMM y. G",
|
|
1643
1608
|
"yyyyMMMEd": "E, d. MMM y. G",
|
|
1644
1609
|
"yyyyMMMM": "MMMM y. G",
|
|
1645
1610
|
"yyyyQQQ": "QQQ, y. G",
|
|
1646
|
-
"yyyyQQQQ": "QQQQ y. G"
|
|
1611
|
+
"yyyyQQQQ": "QQQQ y. G",
|
|
1612
|
+
"MMdd": "MM-dd",
|
|
1613
|
+
"MMMdd": "dd.MMM",
|
|
1614
|
+
"MMMMEd": "E, d. MMMM",
|
|
1615
|
+
"yyyyMM": "MM.y. G",
|
|
1616
|
+
"yyyyMMdd": "dd.MM.y. G"
|
|
1647
1617
|
},
|
|
1648
1618
|
"appendItems": {
|
|
1649
1619
|
"Day": "{0} ({2}: {1})",
|
|
@@ -1659,7 +1629,7 @@
|
|
|
1659
1629
|
"Year": "{1} {0}"
|
|
1660
1630
|
},
|
|
1661
1631
|
"intervalFormats": {
|
|
1662
|
-
"intervalFormatFallback": "{0}
|
|
1632
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
1663
1633
|
"Bh": {
|
|
1664
1634
|
"B": "h B – h B",
|
|
1665
1635
|
"h": "h–h B"
|
|
@@ -1711,33 +1681,33 @@
|
|
|
1711
1681
|
"y": "G y MMM d, E – y MMM d, E"
|
|
1712
1682
|
},
|
|
1713
1683
|
"h": {
|
|
1714
|
-
"a": "h
|
|
1715
|
-
"h": "h–h
|
|
1684
|
+
"a": "h a – h a",
|
|
1685
|
+
"h": "h–h a"
|
|
1716
1686
|
},
|
|
1717
1687
|
"H": {
|
|
1718
1688
|
"H": "HH–HH"
|
|
1719
1689
|
},
|
|
1720
1690
|
"hm": {
|
|
1721
|
-
"a": "h:mm
|
|
1722
|
-
"h": "h:mm–h:mm
|
|
1723
|
-
"m": "h:mm–h:mm
|
|
1691
|
+
"a": "h:mm a – h:mm a",
|
|
1692
|
+
"h": "h:mm–h:mm a",
|
|
1693
|
+
"m": "h:mm–h:mm a"
|
|
1724
1694
|
},
|
|
1725
1695
|
"Hm": {
|
|
1726
1696
|
"H": "HH:mm–HH:mm",
|
|
1727
1697
|
"m": "HH:mm–HH:mm"
|
|
1728
1698
|
},
|
|
1729
1699
|
"hmv": {
|
|
1730
|
-
"a": "h:mm
|
|
1731
|
-
"h": "h:mm–h:mm
|
|
1732
|
-
"m": "h:mm–h:mm
|
|
1700
|
+
"a": "h:mm a – h:mm a v",
|
|
1701
|
+
"h": "h:mm–h:mm a v",
|
|
1702
|
+
"m": "h:mm–h:mm a v"
|
|
1733
1703
|
},
|
|
1734
1704
|
"Hmv": {
|
|
1735
1705
|
"H": "HH:mm–HH:mm v",
|
|
1736
1706
|
"m": "HH:mm–HH:mm v"
|
|
1737
1707
|
},
|
|
1738
1708
|
"hv": {
|
|
1739
|
-
"a": "h
|
|
1740
|
-
"h": "h–h
|
|
1709
|
+
"a": "h a – h a v",
|
|
1710
|
+
"h": "h–h a v"
|
|
1741
1711
|
},
|
|
1742
1712
|
"Hv": {
|
|
1743
1713
|
"H": "HH–HH v"
|
|
@@ -1746,58 +1716,58 @@
|
|
|
1746
1716
|
"M": "M–M"
|
|
1747
1717
|
},
|
|
1748
1718
|
"Md": {
|
|
1749
|
-
"d": "d.M
|
|
1750
|
-
"M": "d.M
|
|
1719
|
+
"d": "d.M – d.M",
|
|
1720
|
+
"M": "d.M – d.M"
|
|
1751
1721
|
},
|
|
1752
1722
|
"MEd": {
|
|
1753
|
-
"d": "E, d.M
|
|
1754
|
-
"M": "E, d.M
|
|
1723
|
+
"d": "E, d.M – E, d.M",
|
|
1724
|
+
"M": "E, d.M – E, d.M"
|
|
1755
1725
|
},
|
|
1756
1726
|
"MMM": {
|
|
1757
1727
|
"M": "MMM–MMM"
|
|
1758
1728
|
},
|
|
1759
1729
|
"MMMd": {
|
|
1760
|
-
"d": "d
|
|
1761
|
-
"M": "d. MMM
|
|
1730
|
+
"d": "d – d. MMM",
|
|
1731
|
+
"M": "d. MMM – d. MMM"
|
|
1762
1732
|
},
|
|
1763
1733
|
"MMMEd": {
|
|
1764
|
-
"d": "E, dd.
|
|
1765
|
-
"M": "E, dd. MMM
|
|
1734
|
+
"d": "E, dd. – E, dd. MMM",
|
|
1735
|
+
"M": "E, dd. MMM – E, dd. MMM"
|
|
1766
1736
|
},
|
|
1767
1737
|
"y": {
|
|
1768
|
-
"y": "y
|
|
1738
|
+
"y": "y – y. G"
|
|
1769
1739
|
},
|
|
1770
1740
|
"yM": {
|
|
1771
|
-
"M": "M.y
|
|
1772
|
-
"y": "M.y
|
|
1741
|
+
"M": "M.y – M.y. GGGGG",
|
|
1742
|
+
"y": "M.y – M.y. GGGGG"
|
|
1773
1743
|
},
|
|
1774
1744
|
"yMd": {
|
|
1775
|
-
"d": "d.M.y
|
|
1776
|
-
"M": "d.M.y.
|
|
1777
|
-
"y": "d.M.y
|
|
1745
|
+
"d": "d.M.y – d.M.y. GGGGG",
|
|
1746
|
+
"M": "d.M.y. – d.M.y.",
|
|
1747
|
+
"y": "d.M.y – d.M.y. GGGGG"
|
|
1778
1748
|
},
|
|
1779
1749
|
"yMEd": {
|
|
1780
|
-
"d": "E, d.M.y
|
|
1781
|
-
"M": "E, d.M.y
|
|
1782
|
-
"y": "E, d.M.y
|
|
1750
|
+
"d": "E, d.M.y – E, d.M.y. GGGGG",
|
|
1751
|
+
"M": "E, d.M.y – E, d.M.y. GGGGG",
|
|
1752
|
+
"y": "E, d.M.y – E, d.M.y. GGGGG"
|
|
1783
1753
|
},
|
|
1784
1754
|
"yMMM": {
|
|
1785
|
-
"M": "MMM
|
|
1786
|
-
"y": "MMM y
|
|
1755
|
+
"M": "MMM – MMM y. G",
|
|
1756
|
+
"y": "MMM y – MMM y. G"
|
|
1787
1757
|
},
|
|
1788
1758
|
"yMMMd": {
|
|
1789
1759
|
"d": "d–d. MMM y. G",
|
|
1790
|
-
"M": "d. MMM
|
|
1791
|
-
"y": "d. MMM y.
|
|
1760
|
+
"M": "d. MMM – d. MMM y. G",
|
|
1761
|
+
"y": "d. MMM y. – d. MMM y. G"
|
|
1792
1762
|
},
|
|
1793
1763
|
"yMMMEd": {
|
|
1794
|
-
"d": "E, d. MMM
|
|
1795
|
-
"M": "E, d. MMM
|
|
1796
|
-
"y": "E, d. MMM y
|
|
1764
|
+
"d": "E, d. MMM – E, d. MMM y. G",
|
|
1765
|
+
"M": "E, d. MMM – E, d. MMM y. G",
|
|
1766
|
+
"y": "E, d. MMM y – E, d. MMM y. G"
|
|
1797
1767
|
},
|
|
1798
1768
|
"yMMMM": {
|
|
1799
|
-
"M": "MMMM
|
|
1800
|
-
"y": "MMMM y.
|
|
1769
|
+
"M": "MMMM – MMMM y. G",
|
|
1770
|
+
"y": "MMMM y. – MMMM y. G"
|
|
1801
1771
|
}
|
|
1802
1772
|
}
|
|
1803
1773
|
},
|
|
@@ -1806,16 +1776,16 @@
|
|
|
1806
1776
|
"abbreviated": [
|
|
1807
1777
|
"Muh.",
|
|
1808
1778
|
"Saf.",
|
|
1809
|
-
"
|
|
1810
|
-
"
|
|
1811
|
-
"
|
|
1812
|
-
"
|
|
1813
|
-
"
|
|
1814
|
-
"
|
|
1779
|
+
"Reb. 1",
|
|
1780
|
+
"Reb. 2",
|
|
1781
|
+
"Džum. 1",
|
|
1782
|
+
"Džum. 2",
|
|
1783
|
+
"Redž.",
|
|
1784
|
+
"Ša.",
|
|
1815
1785
|
"Ram.",
|
|
1816
|
-
"
|
|
1817
|
-
"
|
|
1818
|
-
"
|
|
1786
|
+
"Še.",
|
|
1787
|
+
"Zul-k.",
|
|
1788
|
+
"Zul-h."
|
|
1819
1789
|
],
|
|
1820
1790
|
"narrow": [
|
|
1821
1791
|
"1",
|
|
@@ -1832,7 +1802,7 @@
|
|
|
1832
1802
|
"12"
|
|
1833
1803
|
],
|
|
1834
1804
|
"wide": [
|
|
1835
|
-
"
|
|
1805
|
+
"Muharem",
|
|
1836
1806
|
"Safar",
|
|
1837
1807
|
"Rabiʻ I",
|
|
1838
1808
|
"Rabiʻ II",
|
|
@@ -1850,16 +1820,16 @@
|
|
|
1850
1820
|
"abbreviated": [
|
|
1851
1821
|
"Muh.",
|
|
1852
1822
|
"Saf.",
|
|
1853
|
-
"
|
|
1854
|
-
"
|
|
1855
|
-
"
|
|
1856
|
-
"
|
|
1857
|
-
"
|
|
1858
|
-
"
|
|
1823
|
+
"Reb. 1",
|
|
1824
|
+
"Reb. 2",
|
|
1825
|
+
"Džum. 1",
|
|
1826
|
+
"Džum. 2",
|
|
1827
|
+
"Redž.",
|
|
1828
|
+
"Ša.",
|
|
1859
1829
|
"Ram.",
|
|
1860
|
-
"
|
|
1861
|
-
"
|
|
1862
|
-
"
|
|
1830
|
+
"Še.",
|
|
1831
|
+
"Zul-k.",
|
|
1832
|
+
"Zul-h."
|
|
1863
1833
|
],
|
|
1864
1834
|
"narrow": [
|
|
1865
1835
|
"1",
|
|
@@ -1876,18 +1846,18 @@
|
|
|
1876
1846
|
"12"
|
|
1877
1847
|
],
|
|
1878
1848
|
"wide": [
|
|
1879
|
-
"
|
|
1880
|
-
"
|
|
1881
|
-
"
|
|
1882
|
-
"
|
|
1883
|
-
"
|
|
1884
|
-
"
|
|
1885
|
-
"
|
|
1849
|
+
"Muharem",
|
|
1850
|
+
"Safer",
|
|
1851
|
+
"Rebi 1",
|
|
1852
|
+
"Rebi 2",
|
|
1853
|
+
"Džumade 1",
|
|
1854
|
+
"Džumade 2",
|
|
1855
|
+
"Redžeb",
|
|
1886
1856
|
"Šaʻban",
|
|
1887
|
-
"
|
|
1888
|
-
"
|
|
1889
|
-
"
|
|
1890
|
-
"
|
|
1857
|
+
"Ramazan",
|
|
1858
|
+
"Ševal",
|
|
1859
|
+
"Zul-kade",
|
|
1860
|
+
"Zul-hidže"
|
|
1891
1861
|
]
|
|
1892
1862
|
}
|
|
1893
1863
|
},
|
|
@@ -2032,8 +2002,8 @@
|
|
|
2032
2002
|
"PM"
|
|
2033
2003
|
],
|
|
2034
2004
|
"narrow": [
|
|
2035
|
-
"pre
|
|
2036
|
-
"po
|
|
2005
|
+
"pre podne",
|
|
2006
|
+
"po podne"
|
|
2037
2007
|
],
|
|
2038
2008
|
"wide": [
|
|
2039
2009
|
"AM",
|
|
@@ -2132,45 +2102,45 @@
|
|
|
2132
2102
|
"EBhm": "E hh:mm B",
|
|
2133
2103
|
"EBhms": "E hh:mm:ss B",
|
|
2134
2104
|
"Ed": "E d.",
|
|
2135
|
-
"Ehm": "E hh:mm
|
|
2105
|
+
"Ehm": "E hh:mm a",
|
|
2136
2106
|
"EHm": "E HH:mm",
|
|
2137
|
-
"Ehms": "E hh:mm:ss
|
|
2107
|
+
"Ehms": "E hh:mm:ss a",
|
|
2138
2108
|
"EHms": "E HH:mm:ss",
|
|
2139
2109
|
"Gy": "y. G",
|
|
2140
2110
|
"GyMd": "d.M.y. GGGGG",
|
|
2141
2111
|
"GyMMM": "MMM y. G",
|
|
2142
2112
|
"GyMMMd": "d. MMM y. G",
|
|
2143
2113
|
"GyMMMEd": "E, d. MMM y. G",
|
|
2144
|
-
"h": "h
|
|
2114
|
+
"h": "h a",
|
|
2145
2115
|
"H": "HH",
|
|
2146
|
-
"hm": "hh:mm
|
|
2116
|
+
"hm": "hh:mm a",
|
|
2147
2117
|
"Hm": "HH:mm",
|
|
2148
|
-
"hms": "hh:mm:ss
|
|
2118
|
+
"hms": "hh:mm:ss a",
|
|
2149
2119
|
"Hms": "HH:mm:ss",
|
|
2150
2120
|
"M": "L",
|
|
2151
2121
|
"Md": "d.M.",
|
|
2152
2122
|
"MEd": "E, d.M.",
|
|
2153
|
-
"MMdd": "MM-dd",
|
|
2154
2123
|
"MMM": "LLL",
|
|
2155
2124
|
"MMMd": "d. MMM",
|
|
2156
|
-
"MMMdd": "dd.MMM",
|
|
2157
2125
|
"MMMEd": "E, d. MMM",
|
|
2158
2126
|
"MMMMd": "d. MMMM",
|
|
2159
|
-
"MMMMEd": "E, d. MMMM",
|
|
2160
2127
|
"ms": "mm:ss",
|
|
2161
2128
|
"y": "y. G",
|
|
2162
2129
|
"yyyy": "y. G",
|
|
2163
2130
|
"yyyyM": "M.y. GGGGG",
|
|
2164
2131
|
"yyyyMd": "d.M.y. GGGGG",
|
|
2165
2132
|
"yyyyMEd": "E, d.M.y. GGGGG",
|
|
2166
|
-
"yyyyMM": "MM.y. G",
|
|
2167
|
-
"yyyyMMdd": "dd.MM.y. G",
|
|
2168
2133
|
"yyyyMMM": "MMM y. G",
|
|
2169
2134
|
"yyyyMMMd": "d. MMM y. G",
|
|
2170
2135
|
"yyyyMMMEd": "E, d. MMM y. G",
|
|
2171
2136
|
"yyyyMMMM": "MMMM y. G",
|
|
2172
2137
|
"yyyyQQQ": "QQQ, y. G",
|
|
2173
|
-
"yyyyQQQQ": "QQQQ y. G"
|
|
2138
|
+
"yyyyQQQQ": "QQQQ y. G",
|
|
2139
|
+
"MMdd": "MM-dd",
|
|
2140
|
+
"MMMdd": "dd.MMM",
|
|
2141
|
+
"MMMMEd": "E, d. MMMM",
|
|
2142
|
+
"yyyyMM": "MM.y. G",
|
|
2143
|
+
"yyyyMMdd": "dd.MM.y. G"
|
|
2174
2144
|
},
|
|
2175
2145
|
"appendItems": {
|
|
2176
2146
|
"Day": "{0} ({2}: {1})",
|
|
@@ -2186,7 +2156,7 @@
|
|
|
2186
2156
|
"Year": "{1} {0}"
|
|
2187
2157
|
},
|
|
2188
2158
|
"intervalFormats": {
|
|
2189
|
-
"intervalFormatFallback": "{0}
|
|
2159
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2190
2160
|
"Bh": {
|
|
2191
2161
|
"B": "h B – h B",
|
|
2192
2162
|
"h": "h–h B"
|
|
@@ -2238,33 +2208,33 @@
|
|
|
2238
2208
|
"y": "G y MMM d, E – y MMM d, E"
|
|
2239
2209
|
},
|
|
2240
2210
|
"h": {
|
|
2241
|
-
"a": "h
|
|
2242
|
-
"h": "h–h
|
|
2211
|
+
"a": "h a – h a",
|
|
2212
|
+
"h": "h–h a"
|
|
2243
2213
|
},
|
|
2244
2214
|
"H": {
|
|
2245
2215
|
"H": "HH–HH"
|
|
2246
2216
|
},
|
|
2247
2217
|
"hm": {
|
|
2248
|
-
"a": "h:mm
|
|
2249
|
-
"h": "h:mm–h:mm
|
|
2250
|
-
"m": "h:mm–h:mm
|
|
2218
|
+
"a": "h:mm a – h:mm a",
|
|
2219
|
+
"h": "h:mm–h:mm a",
|
|
2220
|
+
"m": "h:mm–h:mm a"
|
|
2251
2221
|
},
|
|
2252
2222
|
"Hm": {
|
|
2253
2223
|
"H": "HH:mm–HH:mm",
|
|
2254
2224
|
"m": "HH:mm–HH:mm"
|
|
2255
2225
|
},
|
|
2256
2226
|
"hmv": {
|
|
2257
|
-
"a": "h:mm
|
|
2258
|
-
"h": "h:mm–h:mm
|
|
2259
|
-
"m": "h:mm–h:mm
|
|
2227
|
+
"a": "h:mm a – h:mm a v",
|
|
2228
|
+
"h": "h:mm–h:mm a v",
|
|
2229
|
+
"m": "h:mm–h:mm a v"
|
|
2260
2230
|
},
|
|
2261
2231
|
"Hmv": {
|
|
2262
2232
|
"H": "HH:mm–HH:mm v",
|
|
2263
2233
|
"m": "HH:mm–HH:mm v"
|
|
2264
2234
|
},
|
|
2265
2235
|
"hv": {
|
|
2266
|
-
"a": "h
|
|
2267
|
-
"h": "h–h
|
|
2236
|
+
"a": "h a – h a v",
|
|
2237
|
+
"h": "h–h a v"
|
|
2268
2238
|
},
|
|
2269
2239
|
"Hv": {
|
|
2270
2240
|
"H": "HH–HH v"
|
|
@@ -2273,66 +2243,66 @@
|
|
|
2273
2243
|
"M": "M–M"
|
|
2274
2244
|
},
|
|
2275
2245
|
"Md": {
|
|
2276
|
-
"d": "d.M
|
|
2277
|
-
"M": "d.M
|
|
2246
|
+
"d": "d.M – d.M",
|
|
2247
|
+
"M": "d.M – d.M"
|
|
2278
2248
|
},
|
|
2279
2249
|
"MEd": {
|
|
2280
|
-
"d": "E, d.M
|
|
2281
|
-
"M": "E, d.M
|
|
2250
|
+
"d": "E, d.M – E, d.M",
|
|
2251
|
+
"M": "E, d.M – E, d.M"
|
|
2282
2252
|
},
|
|
2283
2253
|
"MMM": {
|
|
2284
2254
|
"M": "MMM–MMM"
|
|
2285
2255
|
},
|
|
2286
2256
|
"MMMd": {
|
|
2287
|
-
"d": "d
|
|
2288
|
-
"M": "d. MMM
|
|
2257
|
+
"d": "d – d. MMM",
|
|
2258
|
+
"M": "d. MMM – d. MMM"
|
|
2289
2259
|
},
|
|
2290
2260
|
"MMMEd": {
|
|
2291
|
-
"d": "E, dd.
|
|
2292
|
-
"M": "E, dd. MMM
|
|
2261
|
+
"d": "E, dd. – E, dd. MMM",
|
|
2262
|
+
"M": "E, dd. MMM – E, dd. MMM"
|
|
2293
2263
|
},
|
|
2294
2264
|
"y": {
|
|
2295
|
-
"y": "y
|
|
2296
|
-
"G": "y. G
|
|
2265
|
+
"y": "y – y. G",
|
|
2266
|
+
"G": "y. G – y. G"
|
|
2297
2267
|
},
|
|
2298
2268
|
"yM": {
|
|
2299
|
-
"M": "M.y
|
|
2300
|
-
"y": "M.y
|
|
2301
|
-
"G": "M.y. GGGGG
|
|
2269
|
+
"M": "M.y – M.y. GGGGG",
|
|
2270
|
+
"y": "M.y – M.y. GGGGG",
|
|
2271
|
+
"G": "M.y. GGGGG – M.y. GGGGG"
|
|
2302
2272
|
},
|
|
2303
2273
|
"yMd": {
|
|
2304
|
-
"d": "d.M.y
|
|
2305
|
-
"M": "d.M.y.
|
|
2306
|
-
"y": "d.M.y
|
|
2307
|
-
"G": "d.M.y. GGGGG
|
|
2274
|
+
"d": "d.M.y – d.M.y. GGGGG",
|
|
2275
|
+
"M": "d.M.y. – d.M.y.",
|
|
2276
|
+
"y": "d.M.y – d.M.y. GGGGG",
|
|
2277
|
+
"G": "d.M.y. GGGGG – d.M.y. GGGGG"
|
|
2308
2278
|
},
|
|
2309
2279
|
"yMEd": {
|
|
2310
|
-
"d": "E, d.M.y
|
|
2311
|
-
"M": "E, d.M.y
|
|
2312
|
-
"y": "E, d.M.y
|
|
2313
|
-
"G": "E, d.M.y. GGGGG
|
|
2280
|
+
"d": "E, d.M.y – E, d.M.y. GGGGG",
|
|
2281
|
+
"M": "E, d.M.y – E, d.M.y. GGGGG",
|
|
2282
|
+
"y": "E, d.M.y – E, d.M.y. GGGGG",
|
|
2283
|
+
"G": "E, d.M.y. GGGGG – E, d.M.y. GGGGG"
|
|
2314
2284
|
},
|
|
2315
2285
|
"yMMM": {
|
|
2316
|
-
"M": "MMM
|
|
2317
|
-
"y": "MMM y
|
|
2318
|
-
"G": "MMM y. G
|
|
2286
|
+
"M": "MMM – MMM y. G",
|
|
2287
|
+
"y": "MMM y – MMM y. G",
|
|
2288
|
+
"G": "MMM y. G – MMM y. G"
|
|
2319
2289
|
},
|
|
2320
2290
|
"yMMMd": {
|
|
2321
2291
|
"d": "d–d. MMM y. G",
|
|
2322
|
-
"M": "d. MMM
|
|
2323
|
-
"y": "d. MMM y.
|
|
2324
|
-
"G": "d. MMM y. G
|
|
2292
|
+
"M": "d. MMM – d. MMM y. G",
|
|
2293
|
+
"y": "d. MMM y. – d. MMM y. G",
|
|
2294
|
+
"G": "d. MMM y. G – d. MMM y. G"
|
|
2325
2295
|
},
|
|
2326
2296
|
"yMMMEd": {
|
|
2327
|
-
"d": "E, d. MMM
|
|
2328
|
-
"M": "E, d. MMM
|
|
2329
|
-
"y": "E, d. MMM y
|
|
2330
|
-
"G": "E, d. MMM y. G
|
|
2297
|
+
"d": "E, d. MMM – E, d. MMM y. G",
|
|
2298
|
+
"M": "E, d. MMM – E, d. MMM y. G",
|
|
2299
|
+
"y": "E, d. MMM y – E, d. MMM y. G",
|
|
2300
|
+
"G": "E, d. MMM y. G – E, d. MMM y. G"
|
|
2331
2301
|
},
|
|
2332
2302
|
"yMMMM": {
|
|
2333
|
-
"M": "MMMM
|
|
2334
|
-
"y": "MMMM y.
|
|
2335
|
-
"G": "MMMM y. G
|
|
2303
|
+
"M": "MMMM – MMMM y. G",
|
|
2304
|
+
"y": "MMMM y. – MMMM y. G",
|
|
2305
|
+
"G": "MMMM y. G – MMMM y. G"
|
|
2336
2306
|
}
|
|
2337
2307
|
}
|
|
2338
2308
|
},
|
|
@@ -2567,8 +2537,8 @@
|
|
|
2567
2537
|
"PM"
|
|
2568
2538
|
],
|
|
2569
2539
|
"narrow": [
|
|
2570
|
-
"pre
|
|
2571
|
-
"po
|
|
2540
|
+
"pre podne",
|
|
2541
|
+
"po podne"
|
|
2572
2542
|
],
|
|
2573
2543
|
"wide": [
|
|
2574
2544
|
"AM",
|
|
@@ -2679,45 +2649,45 @@
|
|
|
2679
2649
|
"EBhm": "E hh:mm B",
|
|
2680
2650
|
"EBhms": "E hh:mm:ss B",
|
|
2681
2651
|
"Ed": "E d.",
|
|
2682
|
-
"Ehm": "E hh:mm
|
|
2652
|
+
"Ehm": "E hh:mm a",
|
|
2683
2653
|
"EHm": "E HH:mm",
|
|
2684
|
-
"Ehms": "E hh:mm:ss
|
|
2654
|
+
"Ehms": "E hh:mm:ss a",
|
|
2685
2655
|
"EHms": "E HH:mm:ss",
|
|
2686
2656
|
"Gy": "y. G",
|
|
2687
2657
|
"GyMd": "d.M.y. GGGGG",
|
|
2688
2658
|
"GyMMM": "MMM y. G",
|
|
2689
2659
|
"GyMMMd": "d. MMM y. G",
|
|
2690
2660
|
"GyMMMEd": "E, d. MMM y. G",
|
|
2691
|
-
"h": "h
|
|
2661
|
+
"h": "h a",
|
|
2692
2662
|
"H": "HH",
|
|
2693
|
-
"hm": "hh:mm
|
|
2663
|
+
"hm": "hh:mm a",
|
|
2694
2664
|
"Hm": "HH:mm",
|
|
2695
|
-
"hms": "hh:mm:ss
|
|
2665
|
+
"hms": "hh:mm:ss a",
|
|
2696
2666
|
"Hms": "HH:mm:ss",
|
|
2697
2667
|
"M": "L",
|
|
2698
2668
|
"Md": "d.M.",
|
|
2699
2669
|
"MEd": "E, d.M.",
|
|
2700
|
-
"MMdd": "MM-dd",
|
|
2701
2670
|
"MMM": "LLL",
|
|
2702
2671
|
"MMMd": "d. MMM",
|
|
2703
|
-
"MMMdd": "dd.MMM",
|
|
2704
2672
|
"MMMEd": "E, d. MMM",
|
|
2705
2673
|
"MMMMd": "d. MMMM",
|
|
2706
|
-
"MMMMEd": "E, d. MMMM",
|
|
2707
2674
|
"ms": "mm:ss",
|
|
2708
2675
|
"y": "y. G",
|
|
2709
2676
|
"yyyy": "y. G",
|
|
2710
2677
|
"yyyyM": "M.y. GGGGG",
|
|
2711
2678
|
"yyyyMd": "d.M.y. GGGGG",
|
|
2712
2679
|
"yyyyMEd": "E, d.M.y. GGGGG",
|
|
2713
|
-
"yyyyMM": "MM.y. G",
|
|
2714
|
-
"yyyyMMdd": "dd.MM.y. G",
|
|
2715
2680
|
"yyyyMMM": "MMM y. G",
|
|
2716
2681
|
"yyyyMMMd": "d. MMM y. G",
|
|
2717
2682
|
"yyyyMMMEd": "E, d. MMM y. G",
|
|
2718
2683
|
"yyyyMMMM": "MMMM y. G",
|
|
2719
2684
|
"yyyyQQQ": "QQQ, y. G",
|
|
2720
|
-
"yyyyQQQQ": "QQQQ y. G"
|
|
2685
|
+
"yyyyQQQQ": "QQQQ y. G",
|
|
2686
|
+
"MMdd": "MM-dd",
|
|
2687
|
+
"MMMdd": "dd.MMM",
|
|
2688
|
+
"MMMMEd": "E, d. MMMM",
|
|
2689
|
+
"yyyyMM": "MM.y. G",
|
|
2690
|
+
"yyyyMMdd": "dd.MM.y. G"
|
|
2721
2691
|
},
|
|
2722
2692
|
"appendItems": {
|
|
2723
2693
|
"Day": "{0} ({2}: {1})",
|
|
@@ -2733,7 +2703,7 @@
|
|
|
2733
2703
|
"Year": "{1} {0}"
|
|
2734
2704
|
},
|
|
2735
2705
|
"intervalFormats": {
|
|
2736
|
-
"intervalFormatFallback": "{0}
|
|
2706
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
2737
2707
|
"Bh": {
|
|
2738
2708
|
"B": "h B – h B",
|
|
2739
2709
|
"h": "h–h B"
|
|
@@ -2785,33 +2755,33 @@
|
|
|
2785
2755
|
"y": "G y MMM d, E – y MMM d, E"
|
|
2786
2756
|
},
|
|
2787
2757
|
"h": {
|
|
2788
|
-
"a": "h
|
|
2789
|
-
"h": "h–h
|
|
2758
|
+
"a": "h a – h a",
|
|
2759
|
+
"h": "h–h a"
|
|
2790
2760
|
},
|
|
2791
2761
|
"H": {
|
|
2792
2762
|
"H": "HH–HH"
|
|
2793
2763
|
},
|
|
2794
2764
|
"hm": {
|
|
2795
|
-
"a": "h:mm
|
|
2796
|
-
"h": "h:mm–h:mm
|
|
2797
|
-
"m": "h:mm–h:mm
|
|
2765
|
+
"a": "h:mm a – h:mm a",
|
|
2766
|
+
"h": "h:mm–h:mm a",
|
|
2767
|
+
"m": "h:mm–h:mm a"
|
|
2798
2768
|
},
|
|
2799
2769
|
"Hm": {
|
|
2800
2770
|
"H": "HH:mm–HH:mm",
|
|
2801
2771
|
"m": "HH:mm–HH:mm"
|
|
2802
2772
|
},
|
|
2803
2773
|
"hmv": {
|
|
2804
|
-
"a": "h:mm
|
|
2805
|
-
"h": "h:mm–h:mm
|
|
2806
|
-
"m": "h:mm–h:mm
|
|
2774
|
+
"a": "h:mm a – h:mm a v",
|
|
2775
|
+
"h": "h:mm–h:mm a v",
|
|
2776
|
+
"m": "h:mm–h:mm a v"
|
|
2807
2777
|
},
|
|
2808
2778
|
"Hmv": {
|
|
2809
2779
|
"H": "HH:mm–HH:mm v",
|
|
2810
2780
|
"m": "HH:mm–HH:mm v"
|
|
2811
2781
|
},
|
|
2812
2782
|
"hv": {
|
|
2813
|
-
"a": "h
|
|
2814
|
-
"h": "h–h
|
|
2783
|
+
"a": "h a – h a v",
|
|
2784
|
+
"h": "h–h a v"
|
|
2815
2785
|
},
|
|
2816
2786
|
"Hv": {
|
|
2817
2787
|
"H": "HH–HH v"
|
|
@@ -2820,58 +2790,58 @@
|
|
|
2820
2790
|
"M": "M–M"
|
|
2821
2791
|
},
|
|
2822
2792
|
"Md": {
|
|
2823
|
-
"d": "d.M
|
|
2824
|
-
"M": "d.M
|
|
2793
|
+
"d": "d.M – d.M",
|
|
2794
|
+
"M": "d.M – d.M"
|
|
2825
2795
|
},
|
|
2826
2796
|
"MEd": {
|
|
2827
|
-
"d": "E, d.M
|
|
2828
|
-
"M": "E, d.M
|
|
2797
|
+
"d": "E, d.M – E, d.M",
|
|
2798
|
+
"M": "E, d.M – E, d.M"
|
|
2829
2799
|
},
|
|
2830
2800
|
"MMM": {
|
|
2831
2801
|
"M": "MMM–MMM"
|
|
2832
2802
|
},
|
|
2833
2803
|
"MMMd": {
|
|
2834
|
-
"d": "d
|
|
2835
|
-
"M": "d. MMM
|
|
2804
|
+
"d": "d – d. MMM",
|
|
2805
|
+
"M": "d. MMM – d. MMM"
|
|
2836
2806
|
},
|
|
2837
2807
|
"MMMEd": {
|
|
2838
|
-
"d": "E, dd.
|
|
2839
|
-
"M": "E, dd. MMM
|
|
2808
|
+
"d": "E, dd. – E, dd. MMM",
|
|
2809
|
+
"M": "E, dd. MMM – E, dd. MMM"
|
|
2840
2810
|
},
|
|
2841
2811
|
"y": {
|
|
2842
|
-
"y": "y
|
|
2812
|
+
"y": "y – y. G"
|
|
2843
2813
|
},
|
|
2844
2814
|
"yM": {
|
|
2845
|
-
"M": "M.y
|
|
2846
|
-
"y": "M.y
|
|
2815
|
+
"M": "M.y – M.y. GGGGG",
|
|
2816
|
+
"y": "M.y – M.y. GGGGG"
|
|
2847
2817
|
},
|
|
2848
2818
|
"yMd": {
|
|
2849
|
-
"d": "d.M.y
|
|
2850
|
-
"M": "d.M.y.
|
|
2851
|
-
"y": "d.M.y
|
|
2819
|
+
"d": "d.M.y – d.M.y. GGGGG",
|
|
2820
|
+
"M": "d.M.y. – d.M.y.",
|
|
2821
|
+
"y": "d.M.y – d.M.y. GGGGG"
|
|
2852
2822
|
},
|
|
2853
2823
|
"yMEd": {
|
|
2854
|
-
"d": "E, d.M.y
|
|
2855
|
-
"M": "E, d.M.y
|
|
2856
|
-
"y": "E, d.M.y
|
|
2824
|
+
"d": "E, d.M.y – E, d.M.y. GGGGG",
|
|
2825
|
+
"M": "E, d.M.y – E, d.M.y. GGGGG",
|
|
2826
|
+
"y": "E, d.M.y – E, d.M.y. GGGGG"
|
|
2857
2827
|
},
|
|
2858
2828
|
"yMMM": {
|
|
2859
|
-
"M": "MMM
|
|
2860
|
-
"y": "MMM y
|
|
2829
|
+
"M": "MMM – MMM y. G",
|
|
2830
|
+
"y": "MMM y – MMM y. G"
|
|
2861
2831
|
},
|
|
2862
2832
|
"yMMMd": {
|
|
2863
2833
|
"d": "d–d. MMM y. G",
|
|
2864
|
-
"M": "d. MMM
|
|
2865
|
-
"y": "d. MMM y.
|
|
2834
|
+
"M": "d. MMM – d. MMM y. G",
|
|
2835
|
+
"y": "d. MMM y. – d. MMM y. G"
|
|
2866
2836
|
},
|
|
2867
2837
|
"yMMMEd": {
|
|
2868
|
-
"d": "E, d. MMM
|
|
2869
|
-
"M": "E, d. MMM
|
|
2870
|
-
"y": "E, d. MMM y
|
|
2838
|
+
"d": "E, d. MMM – E, d. MMM y. G",
|
|
2839
|
+
"M": "E, d. MMM – E, d. MMM y. G",
|
|
2840
|
+
"y": "E, d. MMM y – E, d. MMM y. G"
|
|
2871
2841
|
},
|
|
2872
2842
|
"yMMMM": {
|
|
2873
|
-
"M": "MMMM
|
|
2874
|
-
"y": "MMMM y.
|
|
2843
|
+
"M": "MMMM – MMMM y. G",
|
|
2844
|
+
"y": "MMMM y. – MMMM y. G"
|
|
2875
2845
|
}
|
|
2876
2846
|
}
|
|
2877
2847
|
},
|
|
@@ -3106,8 +3076,8 @@
|
|
|
3106
3076
|
"PM"
|
|
3107
3077
|
],
|
|
3108
3078
|
"narrow": [
|
|
3109
|
-
"pre
|
|
3110
|
-
"po
|
|
3079
|
+
"pre podne",
|
|
3080
|
+
"po podne"
|
|
3111
3081
|
],
|
|
3112
3082
|
"wide": [
|
|
3113
3083
|
"AM",
|
|
@@ -3206,45 +3176,45 @@
|
|
|
3206
3176
|
"EBhm": "E hh:mm B",
|
|
3207
3177
|
"EBhms": "E hh:mm:ss B",
|
|
3208
3178
|
"Ed": "E d.",
|
|
3209
|
-
"Ehm": "E hh:mm
|
|
3179
|
+
"Ehm": "E hh:mm a",
|
|
3210
3180
|
"EHm": "E HH:mm",
|
|
3211
|
-
"Ehms": "E hh:mm:ss
|
|
3181
|
+
"Ehms": "E hh:mm:ss a",
|
|
3212
3182
|
"EHms": "E HH:mm:ss",
|
|
3213
3183
|
"Gy": "y. G",
|
|
3214
3184
|
"GyMd": "d.M.y. GGGGG",
|
|
3215
3185
|
"GyMMM": "MMM y. G",
|
|
3216
3186
|
"GyMMMd": "d. MMM y. G",
|
|
3217
3187
|
"GyMMMEd": "E, d. MMM y. G",
|
|
3218
|
-
"h": "h
|
|
3188
|
+
"h": "h a",
|
|
3219
3189
|
"H": "HH",
|
|
3220
|
-
"hm": "hh:mm
|
|
3190
|
+
"hm": "hh:mm a",
|
|
3221
3191
|
"Hm": "HH:mm",
|
|
3222
|
-
"hms": "hh:mm:ss
|
|
3192
|
+
"hms": "hh:mm:ss a",
|
|
3223
3193
|
"Hms": "HH:mm:ss",
|
|
3224
3194
|
"M": "L",
|
|
3225
3195
|
"Md": "d.M.",
|
|
3226
3196
|
"MEd": "E, d.M.",
|
|
3227
|
-
"MMdd": "MM-dd",
|
|
3228
3197
|
"MMM": "LLL",
|
|
3229
3198
|
"MMMd": "d. MMM",
|
|
3230
|
-
"MMMdd": "dd.MMM",
|
|
3231
3199
|
"MMMEd": "E, d. MMM",
|
|
3232
3200
|
"MMMMd": "d. MMMM",
|
|
3233
|
-
"MMMMEd": "E, d. MMMM",
|
|
3234
3201
|
"ms": "mm:ss",
|
|
3235
3202
|
"y": "y. G",
|
|
3236
3203
|
"yyyy": "y. G",
|
|
3237
3204
|
"yyyyM": "M.y. GGGGG",
|
|
3238
3205
|
"yyyyMd": "d.M.y. GGGGG",
|
|
3239
3206
|
"yyyyMEd": "E, d.M.y. GGGGG",
|
|
3240
|
-
"yyyyMM": "MM.y. G",
|
|
3241
|
-
"yyyyMMdd": "dd.MM.y. G",
|
|
3242
3207
|
"yyyyMMM": "MMM y. G",
|
|
3243
3208
|
"yyyyMMMd": "d. MMM y. G",
|
|
3244
3209
|
"yyyyMMMEd": "E, d. MMM y. G",
|
|
3245
3210
|
"yyyyMMMM": "MMMM y. G",
|
|
3246
3211
|
"yyyyQQQ": "QQQ, y. G",
|
|
3247
|
-
"yyyyQQQQ": "QQQQ y. G"
|
|
3212
|
+
"yyyyQQQQ": "QQQQ y. G",
|
|
3213
|
+
"MMdd": "MM-dd",
|
|
3214
|
+
"MMMdd": "dd.MMM",
|
|
3215
|
+
"MMMMEd": "E, d. MMMM",
|
|
3216
|
+
"yyyyMM": "MM.y. G",
|
|
3217
|
+
"yyyyMMdd": "dd.MM.y. G"
|
|
3248
3218
|
},
|
|
3249
3219
|
"appendItems": {
|
|
3250
3220
|
"Day": "{0} ({2}: {1})",
|
|
@@ -3260,7 +3230,7 @@
|
|
|
3260
3230
|
"Year": "{1} {0}"
|
|
3261
3231
|
},
|
|
3262
3232
|
"intervalFormats": {
|
|
3263
|
-
"intervalFormatFallback": "{0}
|
|
3233
|
+
"intervalFormatFallback": "{0} – {1}",
|
|
3264
3234
|
"Bh": {
|
|
3265
3235
|
"B": "h B – h B",
|
|
3266
3236
|
"h": "h–h B"
|
|
@@ -3312,33 +3282,33 @@
|
|
|
3312
3282
|
"y": "G y MMM d, E – y MMM d, E"
|
|
3313
3283
|
},
|
|
3314
3284
|
"h": {
|
|
3315
|
-
"a": "h
|
|
3316
|
-
"h": "h–h
|
|
3285
|
+
"a": "h a – h a",
|
|
3286
|
+
"h": "h–h a"
|
|
3317
3287
|
},
|
|
3318
3288
|
"H": {
|
|
3319
3289
|
"H": "HH–HH"
|
|
3320
3290
|
},
|
|
3321
3291
|
"hm": {
|
|
3322
|
-
"a": "h:mm
|
|
3323
|
-
"h": "h:mm–h:mm
|
|
3324
|
-
"m": "h:mm–h:mm
|
|
3292
|
+
"a": "h:mm a – h:mm a",
|
|
3293
|
+
"h": "h:mm–h:mm a",
|
|
3294
|
+
"m": "h:mm–h:mm a"
|
|
3325
3295
|
},
|
|
3326
3296
|
"Hm": {
|
|
3327
3297
|
"H": "HH:mm–HH:mm",
|
|
3328
3298
|
"m": "HH:mm–HH:mm"
|
|
3329
3299
|
},
|
|
3330
3300
|
"hmv": {
|
|
3331
|
-
"a": "h:mm
|
|
3332
|
-
"h": "h:mm–h:mm
|
|
3333
|
-
"m": "h:mm–h:mm
|
|
3301
|
+
"a": "h:mm a – h:mm a v",
|
|
3302
|
+
"h": "h:mm–h:mm a v",
|
|
3303
|
+
"m": "h:mm–h:mm a v"
|
|
3334
3304
|
},
|
|
3335
3305
|
"Hmv": {
|
|
3336
3306
|
"H": "HH:mm–HH:mm v",
|
|
3337
3307
|
"m": "HH:mm–HH:mm v"
|
|
3338
3308
|
},
|
|
3339
3309
|
"hv": {
|
|
3340
|
-
"a": "h
|
|
3341
|
-
"h": "h–h
|
|
3310
|
+
"a": "h a – h a v",
|
|
3311
|
+
"h": "h–h a v"
|
|
3342
3312
|
},
|
|
3343
3313
|
"Hv": {
|
|
3344
3314
|
"H": "HH–HH v"
|
|
@@ -3347,58 +3317,58 @@
|
|
|
3347
3317
|
"M": "M–M"
|
|
3348
3318
|
},
|
|
3349
3319
|
"Md": {
|
|
3350
|
-
"d": "d.M
|
|
3351
|
-
"M": "d.M
|
|
3320
|
+
"d": "d.M – d.M",
|
|
3321
|
+
"M": "d.M – d.M"
|
|
3352
3322
|
},
|
|
3353
3323
|
"MEd": {
|
|
3354
|
-
"d": "E, d.M
|
|
3355
|
-
"M": "E, d.M
|
|
3324
|
+
"d": "E, d.M – E, d.M",
|
|
3325
|
+
"M": "E, d.M – E, d.M"
|
|
3356
3326
|
},
|
|
3357
3327
|
"MMM": {
|
|
3358
3328
|
"M": "MMM–MMM"
|
|
3359
3329
|
},
|
|
3360
3330
|
"MMMd": {
|
|
3361
|
-
"d": "d
|
|
3362
|
-
"M": "d. MMM
|
|
3331
|
+
"d": "d – d. MMM",
|
|
3332
|
+
"M": "d. MMM – d. MMM"
|
|
3363
3333
|
},
|
|
3364
3334
|
"MMMEd": {
|
|
3365
|
-
"d": "E, dd.
|
|
3366
|
-
"M": "E, dd. MMM
|
|
3335
|
+
"d": "E, dd. – E, dd. MMM",
|
|
3336
|
+
"M": "E, dd. MMM – E, dd. MMM"
|
|
3367
3337
|
},
|
|
3368
3338
|
"y": {
|
|
3369
|
-
"y": "y
|
|
3339
|
+
"y": "y – y. G"
|
|
3370
3340
|
},
|
|
3371
3341
|
"yM": {
|
|
3372
|
-
"M": "M.y
|
|
3373
|
-
"y": "M.y
|
|
3342
|
+
"M": "M.y – M.y. GGGGG",
|
|
3343
|
+
"y": "M.y – M.y. GGGGG"
|
|
3374
3344
|
},
|
|
3375
3345
|
"yMd": {
|
|
3376
|
-
"d": "d.M.y
|
|
3377
|
-
"M": "d.M.y.
|
|
3378
|
-
"y": "d.M.y
|
|
3346
|
+
"d": "d.M.y – d.M.y. GGGGG",
|
|
3347
|
+
"M": "d.M.y. – d.M.y.",
|
|
3348
|
+
"y": "d.M.y – d.M.y. GGGGG"
|
|
3379
3349
|
},
|
|
3380
3350
|
"yMEd": {
|
|
3381
|
-
"d": "E, d.M.y
|
|
3382
|
-
"M": "E, d.M.y
|
|
3383
|
-
"y": "E, d.M.y
|
|
3351
|
+
"d": "E, d.M.y – E, d.M.y. GGGGG",
|
|
3352
|
+
"M": "E, d.M.y – E, d.M.y. GGGGG",
|
|
3353
|
+
"y": "E, d.M.y – E, d.M.y. GGGGG"
|
|
3384
3354
|
},
|
|
3385
3355
|
"yMMM": {
|
|
3386
|
-
"M": "MMM
|
|
3387
|
-
"y": "MMM y
|
|
3356
|
+
"M": "MMM – MMM y. G",
|
|
3357
|
+
"y": "MMM y – MMM y. G"
|
|
3388
3358
|
},
|
|
3389
3359
|
"yMMMd": {
|
|
3390
3360
|
"d": "d–d. MMM y. G",
|
|
3391
|
-
"M": "d. MMM
|
|
3392
|
-
"y": "d. MMM y.
|
|
3361
|
+
"M": "d. MMM – d. MMM y. G",
|
|
3362
|
+
"y": "d. MMM y. – d. MMM y. G"
|
|
3393
3363
|
},
|
|
3394
3364
|
"yMMMEd": {
|
|
3395
|
-
"d": "E, d. MMM
|
|
3396
|
-
"M": "E, d. MMM
|
|
3397
|
-
"y": "E, d. MMM y
|
|
3365
|
+
"d": "E, d. MMM – E, d. MMM y. G",
|
|
3366
|
+
"M": "E, d. MMM – E, d. MMM y. G",
|
|
3367
|
+
"y": "E, d. MMM y – E, d. MMM y. G"
|
|
3398
3368
|
},
|
|
3399
3369
|
"yMMMM": {
|
|
3400
|
-
"M": "MMMM
|
|
3401
|
-
"y": "MMMM y.
|
|
3370
|
+
"M": "MMMM – MMMM y. G",
|
|
3371
|
+
"y": "MMMM y. – MMMM y. G"
|
|
3402
3372
|
}
|
|
3403
3373
|
}
|
|
3404
3374
|
},
|
|
@@ -3633,8 +3603,8 @@
|
|
|
3633
3603
|
"PM"
|
|
3634
3604
|
],
|
|
3635
3605
|
"narrow": [
|
|
3636
|
-
"pre
|
|
3637
|
-
"po
|
|
3606
|
+
"pre podne",
|
|
3607
|
+
"po podne"
|
|
3638
3608
|
],
|
|
3639
3609
|
"wide": [
|
|
3640
3610
|
"AM",
|
|
@@ -3716,14 +3686,14 @@
|
|
|
3716
3686
|
"relative-type-0": "ove godine",
|
|
3717
3687
|
"relative-type-1": "sledeće godine",
|
|
3718
3688
|
"relativeTime-type-future": {
|
|
3689
|
+
"relativeTimePattern-count-other": "za {0} godina",
|
|
3719
3690
|
"relativeTimePattern-count-one": "za {0} godinu",
|
|
3720
|
-
"relativeTimePattern-count-few": "za {0} godine"
|
|
3721
|
-
"relativeTimePattern-count-other": "za {0} godina"
|
|
3691
|
+
"relativeTimePattern-count-few": "za {0} godine"
|
|
3722
3692
|
},
|
|
3723
3693
|
"relativeTime-type-past": {
|
|
3694
|
+
"relativeTimePattern-count-other": "pre {0} godina",
|
|
3724
3695
|
"relativeTimePattern-count-one": "pre {0} godine",
|
|
3725
|
-
"relativeTimePattern-count-few": "pre {0} godine"
|
|
3726
|
-
"relativeTimePattern-count-other": "pre {0} godina"
|
|
3696
|
+
"relativeTimePattern-count-few": "pre {0} godine"
|
|
3727
3697
|
}
|
|
3728
3698
|
},
|
|
3729
3699
|
"year-short": {
|
|
@@ -3732,14 +3702,14 @@
|
|
|
3732
3702
|
"relative-type-0": "ove god.",
|
|
3733
3703
|
"relative-type-1": "sledeće god.",
|
|
3734
3704
|
"relativeTime-type-future": {
|
|
3705
|
+
"relativeTimePattern-count-other": "za {0} god.",
|
|
3735
3706
|
"relativeTimePattern-count-one": "za {0} god.",
|
|
3736
|
-
"relativeTimePattern-count-few": "za {0} god."
|
|
3737
|
-
"relativeTimePattern-count-other": "za {0} god."
|
|
3707
|
+
"relativeTimePattern-count-few": "za {0} god."
|
|
3738
3708
|
},
|
|
3739
3709
|
"relativeTime-type-past": {
|
|
3710
|
+
"relativeTimePattern-count-other": "pre {0} god.",
|
|
3740
3711
|
"relativeTimePattern-count-one": "pre {0} god.",
|
|
3741
|
-
"relativeTimePattern-count-few": "pre {0} god."
|
|
3742
|
-
"relativeTimePattern-count-other": "pre {0} god."
|
|
3712
|
+
"relativeTimePattern-count-few": "pre {0} god."
|
|
3743
3713
|
}
|
|
3744
3714
|
},
|
|
3745
3715
|
"year-narrow": {
|
|
@@ -3748,14 +3718,14 @@
|
|
|
3748
3718
|
"relative-type-0": "ove g.",
|
|
3749
3719
|
"relative-type-1": "sledeće g.",
|
|
3750
3720
|
"relativeTime-type-future": {
|
|
3721
|
+
"relativeTimePattern-count-other": "za {0} g.",
|
|
3751
3722
|
"relativeTimePattern-count-one": "za {0} g.",
|
|
3752
|
-
"relativeTimePattern-count-few": "za {0} g."
|
|
3753
|
-
"relativeTimePattern-count-other": "za {0} g."
|
|
3723
|
+
"relativeTimePattern-count-few": "za {0} g."
|
|
3754
3724
|
},
|
|
3755
3725
|
"relativeTime-type-past": {
|
|
3726
|
+
"relativeTimePattern-count-other": "pre {0} g.",
|
|
3756
3727
|
"relativeTimePattern-count-one": "pre {0} g.",
|
|
3757
|
-
"relativeTimePattern-count-few": "pre {0} g."
|
|
3758
|
-
"relativeTimePattern-count-other": "pre {0} g."
|
|
3728
|
+
"relativeTimePattern-count-few": "pre {0} g."
|
|
3759
3729
|
}
|
|
3760
3730
|
},
|
|
3761
3731
|
"quarter-wide": {
|
|
@@ -3764,14 +3734,14 @@
|
|
|
3764
3734
|
"relative-type-0": "ovog kvartala",
|
|
3765
3735
|
"relative-type-1": "sledećeg kvartala",
|
|
3766
3736
|
"relativeTime-type-future": {
|
|
3737
|
+
"relativeTimePattern-count-other": "za {0} kvartala",
|
|
3767
3738
|
"relativeTimePattern-count-one": "za {0} kvartal",
|
|
3768
|
-
"relativeTimePattern-count-few": "za {0} kvartala"
|
|
3769
|
-
"relativeTimePattern-count-other": "za {0} kvartala"
|
|
3739
|
+
"relativeTimePattern-count-few": "za {0} kvartala"
|
|
3770
3740
|
},
|
|
3771
3741
|
"relativeTime-type-past": {
|
|
3742
|
+
"relativeTimePattern-count-other": "pre {0} kvartala",
|
|
3772
3743
|
"relativeTimePattern-count-one": "pre {0} kvartala",
|
|
3773
|
-
"relativeTimePattern-count-few": "pre {0} kvartala"
|
|
3774
|
-
"relativeTimePattern-count-other": "pre {0} kvartala"
|
|
3744
|
+
"relativeTimePattern-count-few": "pre {0} kvartala"
|
|
3775
3745
|
}
|
|
3776
3746
|
},
|
|
3777
3747
|
"quarter-short": {
|
|
@@ -3780,14 +3750,14 @@
|
|
|
3780
3750
|
"relative-type-0": "ovog kvartala",
|
|
3781
3751
|
"relative-type-1": "sledećeg kvartala",
|
|
3782
3752
|
"relativeTime-type-future": {
|
|
3753
|
+
"relativeTimePattern-count-other": "za {0} kv.",
|
|
3783
3754
|
"relativeTimePattern-count-one": "za {0} kv.",
|
|
3784
|
-
"relativeTimePattern-count-few": "za {0} kv."
|
|
3785
|
-
"relativeTimePattern-count-other": "za {0} kv."
|
|
3755
|
+
"relativeTimePattern-count-few": "za {0} kv."
|
|
3786
3756
|
},
|
|
3787
3757
|
"relativeTime-type-past": {
|
|
3758
|
+
"relativeTimePattern-count-other": "pre {0} kv.",
|
|
3788
3759
|
"relativeTimePattern-count-one": "pre {0} kv.",
|
|
3789
|
-
"relativeTimePattern-count-few": "pre {0} kv."
|
|
3790
|
-
"relativeTimePattern-count-other": "pre {0} kv."
|
|
3760
|
+
"relativeTimePattern-count-few": "pre {0} kv."
|
|
3791
3761
|
}
|
|
3792
3762
|
},
|
|
3793
3763
|
"quarter-narrow": {
|
|
@@ -3796,14 +3766,14 @@
|
|
|
3796
3766
|
"relative-type-0": "ovog kvartala",
|
|
3797
3767
|
"relative-type-1": "sledećeg kvartala",
|
|
3798
3768
|
"relativeTime-type-future": {
|
|
3769
|
+
"relativeTimePattern-count-other": "za {0} kv.",
|
|
3799
3770
|
"relativeTimePattern-count-one": "za {0} kv.",
|
|
3800
|
-
"relativeTimePattern-count-few": "za {0} kv."
|
|
3801
|
-
"relativeTimePattern-count-other": "za {0} kv."
|
|
3771
|
+
"relativeTimePattern-count-few": "za {0} kv."
|
|
3802
3772
|
},
|
|
3803
3773
|
"relativeTime-type-past": {
|
|
3774
|
+
"relativeTimePattern-count-other": "pre {0} kv.",
|
|
3804
3775
|
"relativeTimePattern-count-one": "pre {0} kv.",
|
|
3805
|
-
"relativeTimePattern-count-few": "pre {0} kv."
|
|
3806
|
-
"relativeTimePattern-count-other": "pre {0} kv."
|
|
3776
|
+
"relativeTimePattern-count-few": "pre {0} kv."
|
|
3807
3777
|
}
|
|
3808
3778
|
},
|
|
3809
3779
|
"month-wide": {
|
|
@@ -3812,14 +3782,14 @@
|
|
|
3812
3782
|
"relative-type-0": "ovog meseca",
|
|
3813
3783
|
"relative-type-1": "sledećeg meseca",
|
|
3814
3784
|
"relativeTime-type-future": {
|
|
3785
|
+
"relativeTimePattern-count-other": "za {0} meseci",
|
|
3815
3786
|
"relativeTimePattern-count-one": "za {0} mesec",
|
|
3816
|
-
"relativeTimePattern-count-few": "za {0} meseca"
|
|
3817
|
-
"relativeTimePattern-count-other": "za {0} meseci"
|
|
3787
|
+
"relativeTimePattern-count-few": "za {0} meseca"
|
|
3818
3788
|
},
|
|
3819
3789
|
"relativeTime-type-past": {
|
|
3790
|
+
"relativeTimePattern-count-other": "pre {0} meseci",
|
|
3820
3791
|
"relativeTimePattern-count-one": "pre {0} meseca",
|
|
3821
|
-
"relativeTimePattern-count-few": "pre {0} meseca"
|
|
3822
|
-
"relativeTimePattern-count-other": "pre {0} meseci"
|
|
3792
|
+
"relativeTimePattern-count-few": "pre {0} meseca"
|
|
3823
3793
|
}
|
|
3824
3794
|
},
|
|
3825
3795
|
"month-short": {
|
|
@@ -3828,14 +3798,14 @@
|
|
|
3828
3798
|
"relative-type-0": "ovog mes.",
|
|
3829
3799
|
"relative-type-1": "sledećeg mes.",
|
|
3830
3800
|
"relativeTime-type-future": {
|
|
3801
|
+
"relativeTimePattern-count-other": "za {0} mes.",
|
|
3831
3802
|
"relativeTimePattern-count-one": "za {0} mes.",
|
|
3832
|
-
"relativeTimePattern-count-few": "za {0} mes."
|
|
3833
|
-
"relativeTimePattern-count-other": "za {0} mes."
|
|
3803
|
+
"relativeTimePattern-count-few": "za {0} mes."
|
|
3834
3804
|
},
|
|
3835
3805
|
"relativeTime-type-past": {
|
|
3806
|
+
"relativeTimePattern-count-other": "pre {0} mes.",
|
|
3836
3807
|
"relativeTimePattern-count-one": "pre {0} mes.",
|
|
3837
|
-
"relativeTimePattern-count-few": "pre {0} mes."
|
|
3838
|
-
"relativeTimePattern-count-other": "pre {0} mes."
|
|
3808
|
+
"relativeTimePattern-count-few": "pre {0} mes."
|
|
3839
3809
|
}
|
|
3840
3810
|
},
|
|
3841
3811
|
"month-narrow": {
|
|
@@ -3844,14 +3814,14 @@
|
|
|
3844
3814
|
"relative-type-0": "ovog mes.",
|
|
3845
3815
|
"relative-type-1": "sledećeg mes.",
|
|
3846
3816
|
"relativeTime-type-future": {
|
|
3817
|
+
"relativeTimePattern-count-other": "za {0} m.",
|
|
3847
3818
|
"relativeTimePattern-count-one": "za {0} m.",
|
|
3848
|
-
"relativeTimePattern-count-few": "za {0} m."
|
|
3849
|
-
"relativeTimePattern-count-other": "za {0} m."
|
|
3819
|
+
"relativeTimePattern-count-few": "za {0} m."
|
|
3850
3820
|
},
|
|
3851
3821
|
"relativeTime-type-past": {
|
|
3822
|
+
"relativeTimePattern-count-other": "pre {0} m.",
|
|
3852
3823
|
"relativeTimePattern-count-one": "pre {0} m.",
|
|
3853
|
-
"relativeTimePattern-count-few": "pre {0} m."
|
|
3854
|
-
"relativeTimePattern-count-other": "pre {0} m."
|
|
3824
|
+
"relativeTimePattern-count-few": "pre {0} m."
|
|
3855
3825
|
}
|
|
3856
3826
|
},
|
|
3857
3827
|
"week-wide": {
|
|
@@ -3860,14 +3830,14 @@
|
|
|
3860
3830
|
"relative-type-0": "ove nedelje",
|
|
3861
3831
|
"relative-type-1": "sledeće nedelje",
|
|
3862
3832
|
"relativeTime-type-future": {
|
|
3833
|
+
"relativeTimePattern-count-other": "za {0} nedelja",
|
|
3863
3834
|
"relativeTimePattern-count-one": "za {0} nedelju",
|
|
3864
|
-
"relativeTimePattern-count-few": "za {0} nedelje"
|
|
3865
|
-
"relativeTimePattern-count-other": "za {0} nedelja"
|
|
3835
|
+
"relativeTimePattern-count-few": "za {0} nedelje"
|
|
3866
3836
|
},
|
|
3867
3837
|
"relativeTime-type-past": {
|
|
3838
|
+
"relativeTimePattern-count-other": "pre {0} nedelja",
|
|
3868
3839
|
"relativeTimePattern-count-one": "pre {0} nedelje",
|
|
3869
|
-
"relativeTimePattern-count-few": "pre {0} nedelje"
|
|
3870
|
-
"relativeTimePattern-count-other": "pre {0} nedelja"
|
|
3840
|
+
"relativeTimePattern-count-few": "pre {0} nedelje"
|
|
3871
3841
|
},
|
|
3872
3842
|
"relativePeriod": "nedelja koja počinje {0}."
|
|
3873
3843
|
},
|
|
@@ -3877,14 +3847,14 @@
|
|
|
3877
3847
|
"relative-type-0": "ove ned.",
|
|
3878
3848
|
"relative-type-1": "sledeće ned.",
|
|
3879
3849
|
"relativeTime-type-future": {
|
|
3850
|
+
"relativeTimePattern-count-other": "za {0} ned.",
|
|
3880
3851
|
"relativeTimePattern-count-one": "za {0} ned.",
|
|
3881
|
-
"relativeTimePattern-count-few": "za {0} ned."
|
|
3882
|
-
"relativeTimePattern-count-other": "za {0} ned."
|
|
3852
|
+
"relativeTimePattern-count-few": "za {0} ned."
|
|
3883
3853
|
},
|
|
3884
3854
|
"relativeTime-type-past": {
|
|
3855
|
+
"relativeTimePattern-count-other": "pre {0} ned.",
|
|
3885
3856
|
"relativeTimePattern-count-one": "pre {0} ned.",
|
|
3886
|
-
"relativeTimePattern-count-few": "pre {0} ned."
|
|
3887
|
-
"relativeTimePattern-count-other": "pre {0} ned."
|
|
3857
|
+
"relativeTimePattern-count-few": "pre {0} ned."
|
|
3888
3858
|
},
|
|
3889
3859
|
"relativePeriod": "nedelja koja počinje {0}."
|
|
3890
3860
|
},
|
|
@@ -3894,70 +3864,70 @@
|
|
|
3894
3864
|
"relative-type-0": "ove n.",
|
|
3895
3865
|
"relative-type-1": "sledeće n.",
|
|
3896
3866
|
"relativeTime-type-future": {
|
|
3867
|
+
"relativeTimePattern-count-other": "za {0} n.",
|
|
3897
3868
|
"relativeTimePattern-count-one": "za {0} n.",
|
|
3898
|
-
"relativeTimePattern-count-few": "za {0} n."
|
|
3899
|
-
"relativeTimePattern-count-other": "za {0} n."
|
|
3869
|
+
"relativeTimePattern-count-few": "za {0} n."
|
|
3900
3870
|
},
|
|
3901
3871
|
"relativeTime-type-past": {
|
|
3872
|
+
"relativeTimePattern-count-other": "pre {0} n.",
|
|
3902
3873
|
"relativeTimePattern-count-one": "pre {0} n.",
|
|
3903
|
-
"relativeTimePattern-count-few": "pre {0} n."
|
|
3904
|
-
"relativeTimePattern-count-other": "pre {0} n."
|
|
3874
|
+
"relativeTimePattern-count-few": "pre {0} n."
|
|
3905
3875
|
},
|
|
3906
3876
|
"relativePeriod": "nedelja koja počinje {0}."
|
|
3907
3877
|
},
|
|
3908
3878
|
"day-wide": {
|
|
3909
3879
|
"displayName": "dan",
|
|
3910
|
-
"relative-type--2": "prekjuče",
|
|
3911
3880
|
"relative-type--1": "juče",
|
|
3912
3881
|
"relative-type-0": "danas",
|
|
3913
3882
|
"relative-type-1": "sutra",
|
|
3914
|
-
"relative-type-2": "prekosutra",
|
|
3915
3883
|
"relativeTime-type-future": {
|
|
3884
|
+
"relativeTimePattern-count-other": "za {0} dana",
|
|
3916
3885
|
"relativeTimePattern-count-one": "za {0} dan",
|
|
3917
|
-
"relativeTimePattern-count-few": "za {0} dana"
|
|
3918
|
-
"relativeTimePattern-count-other": "za {0} dana"
|
|
3886
|
+
"relativeTimePattern-count-few": "za {0} dana"
|
|
3919
3887
|
},
|
|
3920
3888
|
"relativeTime-type-past": {
|
|
3889
|
+
"relativeTimePattern-count-other": "pre {0} dana",
|
|
3921
3890
|
"relativeTimePattern-count-one": "pre {0} dana",
|
|
3922
|
-
"relativeTimePattern-count-few": "pre {0} dana"
|
|
3923
|
-
|
|
3924
|
-
|
|
3891
|
+
"relativeTimePattern-count-few": "pre {0} dana"
|
|
3892
|
+
},
|
|
3893
|
+
"relative-type--2": "prekjuče",
|
|
3894
|
+
"relative-type-2": "prekosutra"
|
|
3925
3895
|
},
|
|
3926
3896
|
"day-short": {
|
|
3927
3897
|
"displayName": "d.",
|
|
3928
|
-
"relative-type--2": "prekjuče",
|
|
3929
3898
|
"relative-type--1": "juče",
|
|
3930
3899
|
"relative-type-0": "danas",
|
|
3931
3900
|
"relative-type-1": "sutra",
|
|
3932
|
-
"relative-type-2": "prekosutra",
|
|
3933
3901
|
"relativeTime-type-future": {
|
|
3902
|
+
"relativeTimePattern-count-other": "za {0} d.",
|
|
3934
3903
|
"relativeTimePattern-count-one": "za {0} d.",
|
|
3935
|
-
"relativeTimePattern-count-few": "za {0} d."
|
|
3936
|
-
"relativeTimePattern-count-other": "za {0} d."
|
|
3904
|
+
"relativeTimePattern-count-few": "za {0} d."
|
|
3937
3905
|
},
|
|
3938
3906
|
"relativeTime-type-past": {
|
|
3907
|
+
"relativeTimePattern-count-other": "pre {0} d.",
|
|
3939
3908
|
"relativeTimePattern-count-one": "pre {0} d.",
|
|
3940
|
-
"relativeTimePattern-count-few": "pre {0} d."
|
|
3941
|
-
|
|
3942
|
-
|
|
3909
|
+
"relativeTimePattern-count-few": "pre {0} d."
|
|
3910
|
+
},
|
|
3911
|
+
"relative-type--2": "prekjuče",
|
|
3912
|
+
"relative-type-2": "prekosutra"
|
|
3943
3913
|
},
|
|
3944
3914
|
"day-narrow": {
|
|
3945
3915
|
"displayName": "d.",
|
|
3946
|
-
"relative-type--2": "prekjuče",
|
|
3947
3916
|
"relative-type--1": "juče",
|
|
3948
3917
|
"relative-type-0": "danas",
|
|
3949
3918
|
"relative-type-1": "sutra",
|
|
3950
|
-
"relative-type-2": "prekosutra",
|
|
3951
3919
|
"relativeTime-type-future": {
|
|
3920
|
+
"relativeTimePattern-count-other": "za {0} d.",
|
|
3952
3921
|
"relativeTimePattern-count-one": "za {0} d.",
|
|
3953
|
-
"relativeTimePattern-count-few": "za {0} d."
|
|
3954
|
-
"relativeTimePattern-count-other": "za {0} d."
|
|
3922
|
+
"relativeTimePattern-count-few": "za {0} d."
|
|
3955
3923
|
},
|
|
3956
3924
|
"relativeTime-type-past": {
|
|
3925
|
+
"relativeTimePattern-count-other": "pre {0} d.",
|
|
3957
3926
|
"relativeTimePattern-count-one": "pre {0} d.",
|
|
3958
|
-
"relativeTimePattern-count-few": "pre {0} d."
|
|
3959
|
-
|
|
3960
|
-
|
|
3927
|
+
"relativeTimePattern-count-few": "pre {0} d."
|
|
3928
|
+
},
|
|
3929
|
+
"relative-type--2": "prekjuče",
|
|
3930
|
+
"relative-type-2": "prekosutra"
|
|
3961
3931
|
},
|
|
3962
3932
|
"weekday": {
|
|
3963
3933
|
"displayName": "dan u nedelji"
|
|
@@ -3966,126 +3936,126 @@
|
|
|
3966
3936
|
"displayName": "sat",
|
|
3967
3937
|
"relative-type-0": "ovog sata",
|
|
3968
3938
|
"relativeTime-type-future": {
|
|
3939
|
+
"relativeTimePattern-count-other": "za {0} sati",
|
|
3969
3940
|
"relativeTimePattern-count-one": "za {0} sat",
|
|
3970
|
-
"relativeTimePattern-count-few": "za {0} sata"
|
|
3971
|
-
"relativeTimePattern-count-other": "za {0} sati"
|
|
3941
|
+
"relativeTimePattern-count-few": "za {0} sata"
|
|
3972
3942
|
},
|
|
3973
3943
|
"relativeTime-type-past": {
|
|
3944
|
+
"relativeTimePattern-count-other": "pre {0} sati",
|
|
3974
3945
|
"relativeTimePattern-count-one": "pre {0} sata",
|
|
3975
|
-
"relativeTimePattern-count-few": "pre {0} sata"
|
|
3976
|
-
"relativeTimePattern-count-other": "pre {0} sati"
|
|
3946
|
+
"relativeTimePattern-count-few": "pre {0} sata"
|
|
3977
3947
|
}
|
|
3978
3948
|
},
|
|
3979
3949
|
"hour-short": {
|
|
3980
3950
|
"displayName": "č.",
|
|
3981
3951
|
"relative-type-0": "ovog sata",
|
|
3982
3952
|
"relativeTime-type-future": {
|
|
3953
|
+
"relativeTimePattern-count-other": "za {0} č.",
|
|
3983
3954
|
"relativeTimePattern-count-one": "za {0} č.",
|
|
3984
|
-
"relativeTimePattern-count-few": "za {0} č."
|
|
3985
|
-
"relativeTimePattern-count-other": "za {0} č."
|
|
3955
|
+
"relativeTimePattern-count-few": "za {0} č."
|
|
3986
3956
|
},
|
|
3987
3957
|
"relativeTime-type-past": {
|
|
3958
|
+
"relativeTimePattern-count-other": "pre {0} č.",
|
|
3988
3959
|
"relativeTimePattern-count-one": "pre {0} č.",
|
|
3989
|
-
"relativeTimePattern-count-few": "pre {0} č."
|
|
3990
|
-
"relativeTimePattern-count-other": "pre {0} č."
|
|
3960
|
+
"relativeTimePattern-count-few": "pre {0} č."
|
|
3991
3961
|
}
|
|
3992
3962
|
},
|
|
3993
3963
|
"hour-narrow": {
|
|
3994
3964
|
"displayName": "č.",
|
|
3995
3965
|
"relative-type-0": "ovog sata",
|
|
3996
3966
|
"relativeTime-type-future": {
|
|
3967
|
+
"relativeTimePattern-count-other": "za {0} č.",
|
|
3997
3968
|
"relativeTimePattern-count-one": "za {0} č.",
|
|
3998
|
-
"relativeTimePattern-count-few": "za {0} č."
|
|
3999
|
-
"relativeTimePattern-count-other": "za {0} č."
|
|
3969
|
+
"relativeTimePattern-count-few": "za {0} č."
|
|
4000
3970
|
},
|
|
4001
3971
|
"relativeTime-type-past": {
|
|
3972
|
+
"relativeTimePattern-count-other": "pre {0} č.",
|
|
4002
3973
|
"relativeTimePattern-count-one": "pre {0} č.",
|
|
4003
|
-
"relativeTimePattern-count-few": "pre {0} č."
|
|
4004
|
-
"relativeTimePattern-count-other": "pre {0} č."
|
|
3974
|
+
"relativeTimePattern-count-few": "pre {0} č."
|
|
4005
3975
|
}
|
|
4006
3976
|
},
|
|
4007
3977
|
"minute-wide": {
|
|
4008
3978
|
"displayName": "minut",
|
|
4009
3979
|
"relative-type-0": "ovog minuta",
|
|
4010
3980
|
"relativeTime-type-future": {
|
|
3981
|
+
"relativeTimePattern-count-other": "za {0} minuta",
|
|
4011
3982
|
"relativeTimePattern-count-one": "za {0} minut",
|
|
4012
|
-
"relativeTimePattern-count-few": "za {0} minuta"
|
|
4013
|
-
"relativeTimePattern-count-other": "za {0} minuta"
|
|
3983
|
+
"relativeTimePattern-count-few": "za {0} minuta"
|
|
4014
3984
|
},
|
|
4015
3985
|
"relativeTime-type-past": {
|
|
3986
|
+
"relativeTimePattern-count-other": "pre {0} minuta",
|
|
4016
3987
|
"relativeTimePattern-count-one": "pre {0} minuta",
|
|
4017
|
-
"relativeTimePattern-count-few": "pre {0} minuta"
|
|
4018
|
-
"relativeTimePattern-count-other": "pre {0} minuta"
|
|
3988
|
+
"relativeTimePattern-count-few": "pre {0} minuta"
|
|
4019
3989
|
}
|
|
4020
3990
|
},
|
|
4021
3991
|
"minute-short": {
|
|
4022
3992
|
"displayName": "min.",
|
|
4023
3993
|
"relative-type-0": "ovog minuta",
|
|
4024
3994
|
"relativeTime-type-future": {
|
|
3995
|
+
"relativeTimePattern-count-other": "za {0} min.",
|
|
4025
3996
|
"relativeTimePattern-count-one": "za {0} min.",
|
|
4026
|
-
"relativeTimePattern-count-few": "za {0} min."
|
|
4027
|
-
"relativeTimePattern-count-other": "za {0} min."
|
|
3997
|
+
"relativeTimePattern-count-few": "za {0} min."
|
|
4028
3998
|
},
|
|
4029
3999
|
"relativeTime-type-past": {
|
|
4000
|
+
"relativeTimePattern-count-other": "pre {0} min.",
|
|
4030
4001
|
"relativeTimePattern-count-one": "pre {0} min.",
|
|
4031
|
-
"relativeTimePattern-count-few": "pre {0} min."
|
|
4032
|
-
"relativeTimePattern-count-other": "pre {0} min."
|
|
4002
|
+
"relativeTimePattern-count-few": "pre {0} min."
|
|
4033
4003
|
}
|
|
4034
4004
|
},
|
|
4035
4005
|
"minute-narrow": {
|
|
4036
4006
|
"displayName": "min.",
|
|
4037
4007
|
"relative-type-0": "ovog minuta",
|
|
4038
4008
|
"relativeTime-type-future": {
|
|
4009
|
+
"relativeTimePattern-count-other": "za {0} min.",
|
|
4039
4010
|
"relativeTimePattern-count-one": "za {0} min.",
|
|
4040
|
-
"relativeTimePattern-count-few": "za {0} min."
|
|
4041
|
-
"relativeTimePattern-count-other": "za {0} min."
|
|
4011
|
+
"relativeTimePattern-count-few": "za {0} min."
|
|
4042
4012
|
},
|
|
4043
4013
|
"relativeTime-type-past": {
|
|
4014
|
+
"relativeTimePattern-count-other": "pre {0} min.",
|
|
4044
4015
|
"relativeTimePattern-count-one": "pre {0} min.",
|
|
4045
|
-
"relativeTimePattern-count-few": "pre {0} min."
|
|
4046
|
-
"relativeTimePattern-count-other": "pre {0} min."
|
|
4016
|
+
"relativeTimePattern-count-few": "pre {0} min."
|
|
4047
4017
|
}
|
|
4048
4018
|
},
|
|
4049
4019
|
"second-wide": {
|
|
4050
4020
|
"displayName": "sekund",
|
|
4051
4021
|
"relative-type-0": "sada",
|
|
4052
4022
|
"relativeTime-type-future": {
|
|
4023
|
+
"relativeTimePattern-count-other": "za {0} sekundi",
|
|
4053
4024
|
"relativeTimePattern-count-one": "za {0} sekundu",
|
|
4054
|
-
"relativeTimePattern-count-few": "za {0} sekunde"
|
|
4055
|
-
"relativeTimePattern-count-other": "za {0} sekundi"
|
|
4025
|
+
"relativeTimePattern-count-few": "za {0} sekunde"
|
|
4056
4026
|
},
|
|
4057
4027
|
"relativeTime-type-past": {
|
|
4028
|
+
"relativeTimePattern-count-other": "pre {0} sekundi",
|
|
4058
4029
|
"relativeTimePattern-count-one": "pre {0} sekunde",
|
|
4059
|
-
"relativeTimePattern-count-few": "pre {0} sekunde"
|
|
4060
|
-
"relativeTimePattern-count-other": "pre {0} sekundi"
|
|
4030
|
+
"relativeTimePattern-count-few": "pre {0} sekunde"
|
|
4061
4031
|
}
|
|
4062
4032
|
},
|
|
4063
4033
|
"second-short": {
|
|
4064
4034
|
"displayName": "sek.",
|
|
4065
4035
|
"relative-type-0": "sada",
|
|
4066
4036
|
"relativeTime-type-future": {
|
|
4037
|
+
"relativeTimePattern-count-other": "za {0} sek.",
|
|
4067
4038
|
"relativeTimePattern-count-one": "za {0} sek.",
|
|
4068
|
-
"relativeTimePattern-count-few": "za {0} sek."
|
|
4069
|
-
"relativeTimePattern-count-other": "za {0} sek."
|
|
4039
|
+
"relativeTimePattern-count-few": "za {0} sek."
|
|
4070
4040
|
},
|
|
4071
4041
|
"relativeTime-type-past": {
|
|
4042
|
+
"relativeTimePattern-count-other": "pre {0} sek.",
|
|
4072
4043
|
"relativeTimePattern-count-one": "pre {0} sek.",
|
|
4073
|
-
"relativeTimePattern-count-few": "pre {0} sek."
|
|
4074
|
-
"relativeTimePattern-count-other": "pre {0} sek."
|
|
4044
|
+
"relativeTimePattern-count-few": "pre {0} sek."
|
|
4075
4045
|
}
|
|
4076
4046
|
},
|
|
4077
4047
|
"second-narrow": {
|
|
4078
4048
|
"displayName": "s",
|
|
4079
4049
|
"relative-type-0": "sada",
|
|
4080
4050
|
"relativeTime-type-future": {
|
|
4051
|
+
"relativeTimePattern-count-other": "za {0} s.",
|
|
4081
4052
|
"relativeTimePattern-count-one": "za {0} s.",
|
|
4082
|
-
"relativeTimePattern-count-few": "za {0} s."
|
|
4083
|
-
"relativeTimePattern-count-other": "za {0} s."
|
|
4053
|
+
"relativeTimePattern-count-few": "za {0} s."
|
|
4084
4054
|
},
|
|
4085
4055
|
"relativeTime-type-past": {
|
|
4056
|
+
"relativeTimePattern-count-other": "pre {0} s.",
|
|
4086
4057
|
"relativeTimePattern-count-one": "pre {0} s.",
|
|
4087
|
-
"relativeTimePattern-count-few": "pre {0} s."
|
|
4088
|
-
"relativeTimePattern-count-other": "pre {0} s."
|
|
4058
|
+
"relativeTimePattern-count-few": "pre {0} s."
|
|
4089
4059
|
}
|
|
4090
4060
|
},
|
|
4091
4061
|
"zone": {
|
|
@@ -4189,6 +4159,7 @@
|
|
|
4189
4159
|
"Cayman": "Kajmanska Ostrva",
|
|
4190
4160
|
"Chicago": "Čikago",
|
|
4191
4161
|
"Chihuahua": "Čihuahua",
|
|
4162
|
+
"Ciudad_Juarez": "Siudad Huarez",
|
|
4192
4163
|
"Costa_Rica": "Kostarika",
|
|
4193
4164
|
"Creston": "Kreston",
|
|
4194
4165
|
"Cuiaba": "Kuiaba",
|
|
@@ -4565,80 +4536,80 @@
|
|
|
4565
4536
|
"standard": "#,##0.###"
|
|
4566
4537
|
},
|
|
4567
4538
|
"decimalFormat-long": {
|
|
4539
|
+
"1000-other": "0 hiljada",
|
|
4540
|
+
"10000-other": "00 hiljada",
|
|
4541
|
+
"100000-other": "000 hiljada",
|
|
4542
|
+
"1000000-other": "0 miliona",
|
|
4543
|
+
"10000000-other": "00 miliona",
|
|
4544
|
+
"100000000-other": "000 miliona",
|
|
4545
|
+
"1000000000-other": "0 milijardi",
|
|
4546
|
+
"10000000000-other": "00 milijardi",
|
|
4547
|
+
"100000000000-other": "000 milijardi",
|
|
4548
|
+
"1000000000000-other": "0 biliona",
|
|
4549
|
+
"10000000000000-other": "00 biliona",
|
|
4550
|
+
"100000000000000-other": "000 biliona",
|
|
4568
4551
|
"1000-one": "0 hiljada",
|
|
4569
4552
|
"1000-few": "0 hiljade",
|
|
4570
|
-
"1000-other": "0 hiljada",
|
|
4571
4553
|
"10000-one": "00 hiljada",
|
|
4572
4554
|
"10000-few": "00 hiljade",
|
|
4573
|
-
"10000-other": "00 hiljada",
|
|
4574
4555
|
"100000-one": "000 hiljada",
|
|
4575
4556
|
"100000-few": "000 hiljade",
|
|
4576
|
-
"100000-other": "000 hiljada",
|
|
4577
4557
|
"1000000-one": "0 milion",
|
|
4578
4558
|
"1000000-few": "0 miliona",
|
|
4579
|
-
"1000000-other": "0 miliona",
|
|
4580
4559
|
"10000000-one": "00 milion",
|
|
4581
4560
|
"10000000-few": "00 miliona",
|
|
4582
|
-
"10000000-other": "00 miliona",
|
|
4583
4561
|
"100000000-one": "000 milion",
|
|
4584
4562
|
"100000000-few": "000 miliona",
|
|
4585
|
-
"100000000-other": "000 miliona",
|
|
4586
4563
|
"1000000000-one": "0 milijarda",
|
|
4587
4564
|
"1000000000-few": "0 milijarde",
|
|
4588
|
-
"1000000000-other": "0 milijardi",
|
|
4589
4565
|
"10000000000-one": "00 milijarda",
|
|
4590
4566
|
"10000000000-few": "00 milijarde",
|
|
4591
|
-
"10000000000-other": "00 milijardi",
|
|
4592
4567
|
"100000000000-one": "000 milijarda",
|
|
4593
4568
|
"100000000000-few": "000 milijarde",
|
|
4594
|
-
"100000000000-other": "000 milijardi",
|
|
4595
4569
|
"1000000000000-one": "0 bilion",
|
|
4596
4570
|
"1000000000000-few": "0 biliona",
|
|
4597
|
-
"1000000000000-other": "0 biliona",
|
|
4598
4571
|
"10000000000000-one": "00 bilion",
|
|
4599
4572
|
"10000000000000-few": "00 biliona",
|
|
4600
|
-
"10000000000000-other": "00 biliona",
|
|
4601
4573
|
"100000000000000-one": "000 bilion",
|
|
4602
|
-
"100000000000000-few": "000 biliona"
|
|
4603
|
-
"100000000000000-other": "000 biliona"
|
|
4574
|
+
"100000000000000-few": "000 biliona"
|
|
4604
4575
|
},
|
|
4605
4576
|
"decimalFormat-short": {
|
|
4577
|
+
"1000-other": "0 hilj'.'",
|
|
4578
|
+
"10000-other": "00 hilj'.'",
|
|
4579
|
+
"100000-other": "000 hilj'.'",
|
|
4580
|
+
"1000000-other": "0 mil'.'",
|
|
4581
|
+
"10000000-other": "00 mil'.'",
|
|
4582
|
+
"100000000-other": "000 mil'.'",
|
|
4583
|
+
"1000000000-other": "0 mlrd'.'",
|
|
4584
|
+
"10000000000-other": "00 mlrd'.'",
|
|
4585
|
+
"100000000000-other": "000 mlrd'.'",
|
|
4586
|
+
"1000000000000-other": "0 bil'.'",
|
|
4587
|
+
"10000000000000-other": "00 bil'.'",
|
|
4588
|
+
"100000000000000-other": "000 bil'.'",
|
|
4606
4589
|
"1000-one": "0 hilj'.'",
|
|
4607
4590
|
"1000-few": "0 hilj'.'",
|
|
4608
|
-
"1000-other": "0 hilj'.'",
|
|
4609
4591
|
"10000-one": "00 hilj'.'",
|
|
4610
4592
|
"10000-few": "00 hilj'.'",
|
|
4611
|
-
"10000-other": "00 hilj'.'",
|
|
4612
4593
|
"100000-one": "000 hilj'.'",
|
|
4613
4594
|
"100000-few": "000 hilj'.'",
|
|
4614
|
-
"100000-other": "000 hilj'.'",
|
|
4615
4595
|
"1000000-one": "0 mil'.'",
|
|
4616
4596
|
"1000000-few": "0 mil'.'",
|
|
4617
|
-
"1000000-other": "0 mil'.'",
|
|
4618
4597
|
"10000000-one": "00 mil'.'",
|
|
4619
4598
|
"10000000-few": "00 mil'.'",
|
|
4620
|
-
"10000000-other": "00 mil'.'",
|
|
4621
4599
|
"100000000-one": "000 mil'.'",
|
|
4622
4600
|
"100000000-few": "000 mil'.'",
|
|
4623
|
-
"100000000-other": "000 mil'.'",
|
|
4624
4601
|
"1000000000-one": "0 mlrd'.'",
|
|
4625
4602
|
"1000000000-few": "0 mlrd'.'",
|
|
4626
|
-
"1000000000-other": "0 mlrd'.'",
|
|
4627
4603
|
"10000000000-one": "00 mlrd'.'",
|
|
4628
4604
|
"10000000000-few": "00 mlrd'.'",
|
|
4629
|
-
"10000000000-other": "00 mlrd'.'",
|
|
4630
4605
|
"100000000000-one": "000 mlrd'.'",
|
|
4631
4606
|
"100000000000-few": "000 mlrd'.'",
|
|
4632
|
-
"100000000000-other": "000 mlrd'.'",
|
|
4633
4607
|
"1000000000000-one": "0 bil'.'",
|
|
4634
4608
|
"1000000000000-few": "0 bil'.'",
|
|
4635
|
-
"1000000000000-other": "0 bil'.'",
|
|
4636
4609
|
"10000000000000-one": "00 bil'.'",
|
|
4637
4610
|
"10000000000000-few": "00 bil'.'",
|
|
4638
|
-
"10000000000000-other": "00 bil'.'",
|
|
4639
4611
|
"100000000000000-one": "000 bil'.'",
|
|
4640
|
-
"100000000000000-few": "000 bil'.'"
|
|
4641
|
-
"100000000000000-other": "000 bil'.'"
|
|
4612
|
+
"100000000000000-few": "000 bil'.'"
|
|
4642
4613
|
},
|
|
4643
4614
|
"scientificFormat": {
|
|
4644
4615
|
"standard": "#E0"
|
|
@@ -4671,42 +4642,42 @@
|
|
|
4671
4642
|
"range": "{0}–{1}"
|
|
4672
4643
|
},
|
|
4673
4644
|
"currencyFormat-short": {
|
|
4645
|
+
"1000-other": "0 hilj'.' ¤",
|
|
4646
|
+
"10000-other": "00 hilj'.' ¤",
|
|
4647
|
+
"100000-other": "000 hilj'.' ¤",
|
|
4648
|
+
"1000000-other": "0 mil'.' ¤",
|
|
4649
|
+
"10000000-other": "00 mil'.' ¤",
|
|
4650
|
+
"100000000-other": "000 mil'.' ¤",
|
|
4651
|
+
"1000000000-other": "0 mlrd'.' ¤",
|
|
4652
|
+
"10000000000-other": "00 mlrd'.' ¤",
|
|
4653
|
+
"100000000000-other": "000 mlrd'.' ¤",
|
|
4654
|
+
"1000000000000-other": "0 bil'.' ¤",
|
|
4655
|
+
"10000000000000-other": "00 bil'.' ¤",
|
|
4656
|
+
"100000000000000-other": "000 bil'.' ¤",
|
|
4674
4657
|
"1000-one": "0 hilj'.' ¤",
|
|
4675
4658
|
"1000-few": "0 hilj'.' ¤",
|
|
4676
|
-
"1000-other": "0 hilj'.' ¤",
|
|
4677
4659
|
"10000-one": "00 hilj'.' ¤",
|
|
4678
4660
|
"10000-few": "00 hilj'.' ¤",
|
|
4679
|
-
"10000-other": "00 hilj'.' ¤",
|
|
4680
4661
|
"100000-one": "000 hilj'.' ¤",
|
|
4681
4662
|
"100000-few": "000 hilj'.' ¤",
|
|
4682
|
-
"100000-other": "000 hilj'.' ¤",
|
|
4683
4663
|
"1000000-one": "0 mil'.' ¤",
|
|
4684
4664
|
"1000000-few": "0 mil'.' ¤",
|
|
4685
|
-
"1000000-other": "0 mil'.' ¤",
|
|
4686
4665
|
"10000000-one": "00 mil'.' ¤",
|
|
4687
4666
|
"10000000-few": "00 mil'.' ¤",
|
|
4688
|
-
"10000000-other": "00 mil'.' ¤",
|
|
4689
4667
|
"100000000-one": "000 mil'.' ¤",
|
|
4690
4668
|
"100000000-few": "000 mil'.' ¤",
|
|
4691
|
-
"100000000-other": "000 mil'.' ¤",
|
|
4692
4669
|
"1000000000-one": "0 mlrd'.' ¤",
|
|
4693
4670
|
"1000000000-few": "0 mlrd'.' ¤",
|
|
4694
|
-
"1000000000-other": "0 mlrd'.' ¤",
|
|
4695
4671
|
"10000000000-one": "00 mlrd'.' ¤",
|
|
4696
4672
|
"10000000000-few": "00 mlrd'.' ¤",
|
|
4697
|
-
"10000000000-other": "00 mlrd'.' ¤",
|
|
4698
4673
|
"100000000000-one": "000 mlrd'.' ¤",
|
|
4699
4674
|
"100000000000-few": "000 mlrd'.' ¤",
|
|
4700
|
-
"100000000000-other": "000 mlrd'.' ¤",
|
|
4701
4675
|
"1000000000000-one": "0 bil'.' ¤",
|
|
4702
4676
|
"1000000000000-few": "0 bil'.' ¤",
|
|
4703
|
-
"1000000000000-other": "0 bil'.' ¤",
|
|
4704
4677
|
"10000000000000-one": "00 bil'.' ¤",
|
|
4705
4678
|
"10000000000000-few": "00 bil'.' ¤",
|
|
4706
|
-
"10000000000000-other": "00 bil'.' ¤",
|
|
4707
4679
|
"100000000000000-one": "000 bil'.' ¤",
|
|
4708
|
-
"100000000000000-few": "000 bil'.' ¤"
|
|
4709
|
-
"100000000000000-other": "000 bil'.' ¤"
|
|
4680
|
+
"100000000000000-few": "000 bil'.' ¤"
|
|
4710
4681
|
},
|
|
4711
4682
|
"symbols-latn-decimal": ",",
|
|
4712
4683
|
"symbols-latn-group": ".",
|
|
@@ -4857,1064 +4828,1119 @@
|
|
|
4857
4828
|
},
|
|
4858
4829
|
"power2": {
|
|
4859
4830
|
"compoundUnitPattern1": "{0}²",
|
|
4831
|
+
"compoundUnitPattern1-count-other": "{0}²",
|
|
4860
4832
|
"compoundUnitPattern1-count-one": "{0}²",
|
|
4861
|
-
"compoundUnitPattern1-count-few": "{0}²"
|
|
4862
|
-
"compoundUnitPattern1-count-other": "{0}²"
|
|
4833
|
+
"compoundUnitPattern1-count-few": "{0}²"
|
|
4863
4834
|
},
|
|
4864
4835
|
"power3": {
|
|
4865
4836
|
"compoundUnitPattern1": "{0}³",
|
|
4866
|
-
"compoundUnitPattern1-count-other": "{0}³"
|
|
4837
|
+
"compoundUnitPattern1-count-other": "{0}³",
|
|
4838
|
+
"compoundUnitPattern1-count-one": "{0}³",
|
|
4839
|
+
"compoundUnitPattern1-count-few": "{0}³"
|
|
4867
4840
|
},
|
|
4868
4841
|
"times": {
|
|
4869
4842
|
"compoundUnitPattern": "{0}⋅{1}"
|
|
4870
4843
|
},
|
|
4871
4844
|
"acceleration-g-force": {
|
|
4872
4845
|
"displayName": "ge sila",
|
|
4846
|
+
"unitPattern-count-other": "{0} G",
|
|
4873
4847
|
"unitPattern-count-one": "{0} G",
|
|
4874
|
-
"unitPattern-count-few": "{0} G"
|
|
4875
|
-
"unitPattern-count-other": "{0} G"
|
|
4848
|
+
"unitPattern-count-few": "{0} G"
|
|
4876
4849
|
},
|
|
4877
4850
|
"acceleration-meter-per-square-second": {
|
|
4878
4851
|
"displayName": "m/s²",
|
|
4852
|
+
"unitPattern-count-other": "{0} m/s²",
|
|
4879
4853
|
"unitPattern-count-one": "{0} m/s²",
|
|
4880
|
-
"unitPattern-count-few": "{0} m/s²"
|
|
4881
|
-
"unitPattern-count-other": "{0} m/s²"
|
|
4854
|
+
"unitPattern-count-few": "{0} m/s²"
|
|
4882
4855
|
},
|
|
4883
4856
|
"angle-revolution": {
|
|
4884
4857
|
"displayName": "rev",
|
|
4858
|
+
"unitPattern-count-other": "{0} rev",
|
|
4885
4859
|
"unitPattern-count-one": "{0} rev",
|
|
4886
|
-
"unitPattern-count-few": "{0} rev"
|
|
4887
|
-
"unitPattern-count-other": "{0} rev"
|
|
4860
|
+
"unitPattern-count-few": "{0} rev"
|
|
4888
4861
|
},
|
|
4889
4862
|
"angle-radian": {
|
|
4890
4863
|
"displayName": "rad",
|
|
4864
|
+
"unitPattern-count-other": "{0} rad",
|
|
4891
4865
|
"unitPattern-count-one": "{0} rad",
|
|
4892
|
-
"unitPattern-count-few": "{0} rad"
|
|
4893
|
-
"unitPattern-count-other": "{0} rad"
|
|
4866
|
+
"unitPattern-count-few": "{0} rad"
|
|
4894
4867
|
},
|
|
4895
4868
|
"angle-degree": {
|
|
4896
4869
|
"displayName": "stepeni",
|
|
4870
|
+
"unitPattern-count-other": "{0}°",
|
|
4897
4871
|
"unitPattern-count-one": "{0}°",
|
|
4898
|
-
"unitPattern-count-few": "{0}°"
|
|
4899
|
-
"unitPattern-count-other": "{0}°"
|
|
4872
|
+
"unitPattern-count-few": "{0}°"
|
|
4900
4873
|
},
|
|
4901
4874
|
"angle-arc-minute": {
|
|
4902
4875
|
"displayName": "lučni min",
|
|
4876
|
+
"unitPattern-count-other": "{0}′",
|
|
4903
4877
|
"unitPattern-count-one": "{0}′",
|
|
4904
|
-
"unitPattern-count-few": "{0}′"
|
|
4905
|
-
"unitPattern-count-other": "{0}′"
|
|
4878
|
+
"unitPattern-count-few": "{0}′"
|
|
4906
4879
|
},
|
|
4907
4880
|
"angle-arc-second": {
|
|
4908
4881
|
"displayName": "lučne sek",
|
|
4882
|
+
"unitPattern-count-other": "{0}″",
|
|
4909
4883
|
"unitPattern-count-one": "{0}″",
|
|
4910
|
-
"unitPattern-count-few": "{0}″"
|
|
4911
|
-
"unitPattern-count-other": "{0}″"
|
|
4884
|
+
"unitPattern-count-few": "{0}″"
|
|
4912
4885
|
},
|
|
4913
4886
|
"area-square-kilometer": {
|
|
4914
4887
|
"displayName": "kvadratni kilometri",
|
|
4915
|
-
"unitPattern-count-one": "{0} km²",
|
|
4916
|
-
"unitPattern-count-few": "{0} km²",
|
|
4917
4888
|
"unitPattern-count-other": "{0} km²",
|
|
4918
|
-
"perUnitPattern": "{0}/km²"
|
|
4889
|
+
"perUnitPattern": "{0}/km²",
|
|
4890
|
+
"unitPattern-count-one": "{0} km²",
|
|
4891
|
+
"unitPattern-count-few": "{0} km²"
|
|
4919
4892
|
},
|
|
4920
4893
|
"area-hectare": {
|
|
4921
4894
|
"displayName": "hektari",
|
|
4895
|
+
"unitPattern-count-other": "{0} ha",
|
|
4922
4896
|
"unitPattern-count-one": "{0} ha",
|
|
4923
|
-
"unitPattern-count-few": "{0} ha"
|
|
4924
|
-
"unitPattern-count-other": "{0} ha"
|
|
4897
|
+
"unitPattern-count-few": "{0} ha"
|
|
4925
4898
|
},
|
|
4926
4899
|
"area-square-meter": {
|
|
4927
4900
|
"displayName": "kvadratni metri",
|
|
4928
|
-
"unitPattern-count-one": "{0} m²",
|
|
4929
|
-
"unitPattern-count-few": "{0} m²",
|
|
4930
4901
|
"unitPattern-count-other": "{0} m²",
|
|
4931
|
-
"perUnitPattern": "{0}/m²"
|
|
4902
|
+
"perUnitPattern": "{0}/m²",
|
|
4903
|
+
"unitPattern-count-one": "{0} m²",
|
|
4904
|
+
"unitPattern-count-few": "{0} m²"
|
|
4932
4905
|
},
|
|
4933
4906
|
"area-square-centimeter": {
|
|
4934
4907
|
"displayName": "cm²",
|
|
4935
|
-
"unitPattern-count-one": "{0} cm²",
|
|
4936
|
-
"unitPattern-count-few": "{0} cm²",
|
|
4937
4908
|
"unitPattern-count-other": "{0} cm²",
|
|
4938
|
-
"perUnitPattern": "{0}/cm²"
|
|
4909
|
+
"perUnitPattern": "{0}/cm²",
|
|
4910
|
+
"unitPattern-count-one": "{0} cm²",
|
|
4911
|
+
"unitPattern-count-few": "{0} cm²"
|
|
4939
4912
|
},
|
|
4940
4913
|
"area-square-mile": {
|
|
4941
4914
|
"displayName": "mi²",
|
|
4942
|
-
"unitPattern-count-one": "{0} mi²",
|
|
4943
|
-
"unitPattern-count-few": "{0} mi²",
|
|
4944
4915
|
"unitPattern-count-other": "{0} mi²",
|
|
4945
|
-
"perUnitPattern": "{0}/mi²"
|
|
4916
|
+
"perUnitPattern": "{0}/mi²",
|
|
4917
|
+
"unitPattern-count-one": "{0} mi²",
|
|
4918
|
+
"unitPattern-count-few": "{0} mi²"
|
|
4946
4919
|
},
|
|
4947
4920
|
"area-acre": {
|
|
4948
4921
|
"displayName": "akeri",
|
|
4922
|
+
"unitPattern-count-other": "{0} ac",
|
|
4949
4923
|
"unitPattern-count-one": "{0} ac",
|
|
4950
|
-
"unitPattern-count-few": "{0} ac"
|
|
4951
|
-
"unitPattern-count-other": "{0} ac"
|
|
4924
|
+
"unitPattern-count-few": "{0} ac"
|
|
4952
4925
|
},
|
|
4953
4926
|
"area-square-yard": {
|
|
4954
4927
|
"displayName": "yd²",
|
|
4928
|
+
"unitPattern-count-other": "{0} yd²",
|
|
4955
4929
|
"unitPattern-count-one": "{0} yd²",
|
|
4956
|
-
"unitPattern-count-few": "{0} yd²"
|
|
4957
|
-
"unitPattern-count-other": "{0} yd²"
|
|
4930
|
+
"unitPattern-count-few": "{0} yd²"
|
|
4958
4931
|
},
|
|
4959
4932
|
"area-square-foot": {
|
|
4960
4933
|
"displayName": "kvadratne stope",
|
|
4934
|
+
"unitPattern-count-other": "{0} ft²",
|
|
4961
4935
|
"unitPattern-count-one": "{0} ft²",
|
|
4962
|
-
"unitPattern-count-few": "{0} ft²"
|
|
4963
|
-
"unitPattern-count-other": "{0} ft²"
|
|
4936
|
+
"unitPattern-count-few": "{0} ft²"
|
|
4964
4937
|
},
|
|
4965
4938
|
"area-square-inch": {
|
|
4966
4939
|
"displayName": "in²",
|
|
4967
|
-
"unitPattern-count-one": "{0} in²",
|
|
4968
|
-
"unitPattern-count-few": "{0} in²",
|
|
4969
4940
|
"unitPattern-count-other": "{0} in²",
|
|
4970
|
-
"perUnitPattern": "{0}/in²"
|
|
4941
|
+
"perUnitPattern": "{0}/in²",
|
|
4942
|
+
"unitPattern-count-one": "{0} in²",
|
|
4943
|
+
"unitPattern-count-few": "{0} in²"
|
|
4971
4944
|
},
|
|
4972
4945
|
"area-dunam": {
|
|
4973
4946
|
"displayName": "dunami",
|
|
4947
|
+
"unitPattern-count-other": "{0} dunama",
|
|
4974
4948
|
"unitPattern-count-one": "{0} dunam",
|
|
4975
|
-
"unitPattern-count-few": "{0} dunama"
|
|
4976
|
-
"unitPattern-count-other": "{0} dunama"
|
|
4949
|
+
"unitPattern-count-few": "{0} dunama"
|
|
4977
4950
|
},
|
|
4978
4951
|
"concentr-karat": {
|
|
4979
4952
|
"displayName": "kt",
|
|
4953
|
+
"unitPattern-count-other": "{0} kt",
|
|
4980
4954
|
"unitPattern-count-one": "{0} kt",
|
|
4981
|
-
"unitPattern-count-few": "{0} kt"
|
|
4982
|
-
"unitPattern-count-other": "{0} kt"
|
|
4955
|
+
"unitPattern-count-few": "{0} kt"
|
|
4983
4956
|
},
|
|
4984
4957
|
"concentr-milligram-ofglucose-per-deciliter": {
|
|
4985
4958
|
"displayName": "mg/dL",
|
|
4959
|
+
"unitPattern-count-other": "{0} mg/dL",
|
|
4986
4960
|
"unitPattern-count-one": "{0} mg/dL",
|
|
4987
|
-
"unitPattern-count-few": "{0} mg/dL"
|
|
4988
|
-
"unitPattern-count-other": "{0} mg/dL"
|
|
4961
|
+
"unitPattern-count-few": "{0} mg/dL"
|
|
4989
4962
|
},
|
|
4990
4963
|
"concentr-millimole-per-liter": {
|
|
4991
4964
|
"displayName": "mmol/L",
|
|
4965
|
+
"unitPattern-count-other": "{0} mmol/L",
|
|
4992
4966
|
"unitPattern-count-one": "{0} mmol/L",
|
|
4993
|
-
"unitPattern-count-few": "{0} mmol/L"
|
|
4994
|
-
"unitPattern-count-other": "{0} mmol/L"
|
|
4967
|
+
"unitPattern-count-few": "{0} mmol/L"
|
|
4995
4968
|
},
|
|
4996
4969
|
"concentr-item": {
|
|
4997
4970
|
"displayName": "stavka",
|
|
4971
|
+
"unitPattern-count-other": "{0} stavki",
|
|
4998
4972
|
"unitPattern-count-one": "{0} stavka",
|
|
4999
|
-
"unitPattern-count-few": "{0} stavke"
|
|
5000
|
-
"unitPattern-count-other": "{0} stavki"
|
|
4973
|
+
"unitPattern-count-few": "{0} stavke"
|
|
5001
4974
|
},
|
|
5002
4975
|
"concentr-permillion": {
|
|
5003
4976
|
"displayName": "ppm",
|
|
4977
|
+
"unitPattern-count-other": "{0} ppm",
|
|
5004
4978
|
"unitPattern-count-one": "{0} ppm",
|
|
5005
|
-
"unitPattern-count-few": "{0} ppm"
|
|
5006
|
-
"unitPattern-count-other": "{0} ppm"
|
|
4979
|
+
"unitPattern-count-few": "{0} ppm"
|
|
5007
4980
|
},
|
|
5008
4981
|
"concentr-percent": {
|
|
5009
4982
|
"displayName": "procenat",
|
|
4983
|
+
"unitPattern-count-other": "{0}%",
|
|
5010
4984
|
"unitPattern-count-one": "{0}%",
|
|
5011
|
-
"unitPattern-count-few": "{0}%"
|
|
5012
|
-
"unitPattern-count-other": "{0}%"
|
|
4985
|
+
"unitPattern-count-few": "{0}%"
|
|
5013
4986
|
},
|
|
5014
4987
|
"concentr-permille": {
|
|
5015
4988
|
"displayName": "promil",
|
|
4989
|
+
"unitPattern-count-other": "{0}‰",
|
|
5016
4990
|
"unitPattern-count-one": "{0}‰",
|
|
5017
|
-
"unitPattern-count-few": "{0}‰"
|
|
5018
|
-
"unitPattern-count-other": "{0}‰"
|
|
4991
|
+
"unitPattern-count-few": "{0}‰"
|
|
5019
4992
|
},
|
|
5020
4993
|
"concentr-permyriad": {
|
|
5021
4994
|
"displayName": "‱",
|
|
5022
|
-
"unitPattern-count-other": "{0}‱"
|
|
4995
|
+
"unitPattern-count-other": "{0}‱",
|
|
4996
|
+
"unitPattern-count-one": "{0}‱",
|
|
4997
|
+
"unitPattern-count-few": "{0}‱"
|
|
5023
4998
|
},
|
|
5024
4999
|
"concentr-mole": {
|
|
5025
5000
|
"displayName": "mol",
|
|
5026
|
-
"unitPattern-count-other": "{0} mol"
|
|
5001
|
+
"unitPattern-count-other": "{0} mol",
|
|
5002
|
+
"unitPattern-count-one": "{0} mol",
|
|
5003
|
+
"unitPattern-count-few": "{0} mol"
|
|
5027
5004
|
},
|
|
5028
5005
|
"consumption-liter-per-kilometer": {
|
|
5029
5006
|
"displayName": "L/km",
|
|
5007
|
+
"unitPattern-count-other": "{0} L/km",
|
|
5030
5008
|
"unitPattern-count-one": "{0} L/km",
|
|
5031
|
-
"unitPattern-count-few": "{0} L/km"
|
|
5032
|
-
"unitPattern-count-other": "{0} L/km"
|
|
5009
|
+
"unitPattern-count-few": "{0} L/km"
|
|
5033
5010
|
},
|
|
5034
5011
|
"consumption-liter-per-100-kilometer": {
|
|
5035
5012
|
"displayName": "L/100 km",
|
|
5013
|
+
"unitPattern-count-other": "{0} L/100 km",
|
|
5036
5014
|
"unitPattern-count-one": "{0} L/100 km",
|
|
5037
|
-
"unitPattern-count-few": "{0} L/100 km"
|
|
5038
|
-
"unitPattern-count-other": "{0} L/100 km"
|
|
5015
|
+
"unitPattern-count-few": "{0} L/100 km"
|
|
5039
5016
|
},
|
|
5040
5017
|
"consumption-mile-per-gallon": {
|
|
5041
5018
|
"displayName": "mpg",
|
|
5019
|
+
"unitPattern-count-other": "{0} mpg",
|
|
5042
5020
|
"unitPattern-count-one": "{0} mpg",
|
|
5043
|
-
"unitPattern-count-few": "{0} mpg"
|
|
5044
|
-
"unitPattern-count-other": "{0} mpg"
|
|
5021
|
+
"unitPattern-count-few": "{0} mpg"
|
|
5045
5022
|
},
|
|
5046
5023
|
"consumption-mile-per-gallon-imperial": {
|
|
5047
5024
|
"displayName": "mpg Imp.",
|
|
5025
|
+
"unitPattern-count-other": "{0} mpg Imp.",
|
|
5048
5026
|
"unitPattern-count-one": "{0} mpg Imp.",
|
|
5049
|
-
"unitPattern-count-few": "{0} mpg Imp."
|
|
5050
|
-
"unitPattern-count-other": "{0} mpg Imp."
|
|
5027
|
+
"unitPattern-count-few": "{0} mpg Imp."
|
|
5051
5028
|
},
|
|
5052
5029
|
"digital-petabyte": {
|
|
5053
5030
|
"displayName": "PB",
|
|
5031
|
+
"unitPattern-count-other": "{0} PB",
|
|
5054
5032
|
"unitPattern-count-one": "{0} PB",
|
|
5055
|
-
"unitPattern-count-few": "{0} PB"
|
|
5056
|
-
"unitPattern-count-other": "{0} PB"
|
|
5033
|
+
"unitPattern-count-few": "{0} PB"
|
|
5057
5034
|
},
|
|
5058
5035
|
"digital-terabyte": {
|
|
5059
5036
|
"displayName": "TB",
|
|
5037
|
+
"unitPattern-count-other": "{0} TB",
|
|
5060
5038
|
"unitPattern-count-one": "{0} TB",
|
|
5061
|
-
"unitPattern-count-few": "{0} TB"
|
|
5062
|
-
"unitPattern-count-other": "{0} TB"
|
|
5039
|
+
"unitPattern-count-few": "{0} TB"
|
|
5063
5040
|
},
|
|
5064
5041
|
"digital-terabit": {
|
|
5065
5042
|
"displayName": "Tb",
|
|
5043
|
+
"unitPattern-count-other": "{0} Tb",
|
|
5066
5044
|
"unitPattern-count-one": "{0} Tb",
|
|
5067
|
-
"unitPattern-count-few": "{0} Tb"
|
|
5068
|
-
"unitPattern-count-other": "{0} Tb"
|
|
5045
|
+
"unitPattern-count-few": "{0} Tb"
|
|
5069
5046
|
},
|
|
5070
5047
|
"digital-gigabyte": {
|
|
5071
5048
|
"displayName": "GB",
|
|
5049
|
+
"unitPattern-count-other": "{0} GB",
|
|
5072
5050
|
"unitPattern-count-one": "{0} GB",
|
|
5073
|
-
"unitPattern-count-few": "{0} GB"
|
|
5074
|
-
"unitPattern-count-other": "{0} GB"
|
|
5051
|
+
"unitPattern-count-few": "{0} GB"
|
|
5075
5052
|
},
|
|
5076
5053
|
"digital-gigabit": {
|
|
5077
5054
|
"displayName": "Gb",
|
|
5055
|
+
"unitPattern-count-other": "{0} Gb",
|
|
5078
5056
|
"unitPattern-count-one": "{0} Gb",
|
|
5079
|
-
"unitPattern-count-few": "{0} Gb"
|
|
5080
|
-
"unitPattern-count-other": "{0} Gb"
|
|
5057
|
+
"unitPattern-count-few": "{0} Gb"
|
|
5081
5058
|
},
|
|
5082
5059
|
"digital-megabyte": {
|
|
5083
5060
|
"displayName": "MB",
|
|
5061
|
+
"unitPattern-count-other": "{0} MB",
|
|
5084
5062
|
"unitPattern-count-one": "{0} MB",
|
|
5085
|
-
"unitPattern-count-few": "{0} MB"
|
|
5086
|
-
"unitPattern-count-other": "{0} MB"
|
|
5063
|
+
"unitPattern-count-few": "{0} MB"
|
|
5087
5064
|
},
|
|
5088
5065
|
"digital-megabit": {
|
|
5089
5066
|
"displayName": "Mb",
|
|
5067
|
+
"unitPattern-count-other": "{0} Mb",
|
|
5090
5068
|
"unitPattern-count-one": "{0} Mb",
|
|
5091
|
-
"unitPattern-count-few": "{0} Mb"
|
|
5092
|
-
"unitPattern-count-other": "{0} Mb"
|
|
5069
|
+
"unitPattern-count-few": "{0} Mb"
|
|
5093
5070
|
},
|
|
5094
5071
|
"digital-kilobyte": {
|
|
5095
5072
|
"displayName": "kB",
|
|
5073
|
+
"unitPattern-count-other": "{0} kB",
|
|
5096
5074
|
"unitPattern-count-one": "{0} kB",
|
|
5097
|
-
"unitPattern-count-few": "{0} kB"
|
|
5098
|
-
"unitPattern-count-other": "{0} kB"
|
|
5075
|
+
"unitPattern-count-few": "{0} kB"
|
|
5099
5076
|
},
|
|
5100
5077
|
"digital-kilobit": {
|
|
5101
5078
|
"displayName": "kb",
|
|
5079
|
+
"unitPattern-count-other": "{0} kb",
|
|
5102
5080
|
"unitPattern-count-one": "{0} kb",
|
|
5103
|
-
"unitPattern-count-few": "{0} kb"
|
|
5104
|
-
"unitPattern-count-other": "{0} kb"
|
|
5081
|
+
"unitPattern-count-few": "{0} kb"
|
|
5105
5082
|
},
|
|
5106
5083
|
"digital-byte": {
|
|
5107
5084
|
"displayName": "bajt",
|
|
5085
|
+
"unitPattern-count-other": "{0} B",
|
|
5108
5086
|
"unitPattern-count-one": "{0} B",
|
|
5109
|
-
"unitPattern-count-few": "{0} B"
|
|
5110
|
-
"unitPattern-count-other": "{0} B"
|
|
5087
|
+
"unitPattern-count-few": "{0} B"
|
|
5111
5088
|
},
|
|
5112
5089
|
"digital-bit": {
|
|
5113
5090
|
"displayName": "bit",
|
|
5091
|
+
"unitPattern-count-other": "{0} b",
|
|
5114
5092
|
"unitPattern-count-one": "{0} b",
|
|
5115
|
-
"unitPattern-count-few": "{0} b"
|
|
5116
|
-
"unitPattern-count-other": "{0} b"
|
|
5093
|
+
"unitPattern-count-few": "{0} b"
|
|
5117
5094
|
},
|
|
5118
5095
|
"duration-century": {
|
|
5119
5096
|
"displayName": "v.",
|
|
5097
|
+
"unitPattern-count-other": "{0} v",
|
|
5120
5098
|
"unitPattern-count-one": "{0} v",
|
|
5121
|
-
"unitPattern-count-few": "{0} v"
|
|
5122
|
-
"unitPattern-count-other": "{0} v"
|
|
5099
|
+
"unitPattern-count-few": "{0} v"
|
|
5123
5100
|
},
|
|
5124
5101
|
"duration-decade": {
|
|
5125
5102
|
"displayName": "dec.",
|
|
5103
|
+
"unitPattern-count-other": "{0} dec.",
|
|
5126
5104
|
"unitPattern-count-one": "{0} dec.",
|
|
5127
|
-
"unitPattern-count-few": "{0} dec."
|
|
5128
|
-
"unitPattern-count-other": "{0} dec."
|
|
5105
|
+
"unitPattern-count-few": "{0} dec."
|
|
5129
5106
|
},
|
|
5130
5107
|
"duration-year": {
|
|
5131
5108
|
"displayName": "god.",
|
|
5132
|
-
"unitPattern-count-one": "{0} god",
|
|
5133
|
-
"unitPattern-count-few": "{0} god.",
|
|
5134
5109
|
"unitPattern-count-other": "{0} god.",
|
|
5135
|
-
"perUnitPattern": "{0}/god"
|
|
5110
|
+
"perUnitPattern": "{0}/god",
|
|
5111
|
+
"unitPattern-count-one": "{0} god",
|
|
5112
|
+
"unitPattern-count-few": "{0} god."
|
|
5113
|
+
},
|
|
5114
|
+
"duration-quarter": {
|
|
5115
|
+
"displayName": "kv",
|
|
5116
|
+
"unitPattern-count-other": "{0} kv",
|
|
5117
|
+
"perUnitPattern": "{0}/k",
|
|
5118
|
+
"unitPattern-count-one": "{0} kv",
|
|
5119
|
+
"unitPattern-count-few": "{0} kv"
|
|
5136
5120
|
},
|
|
5137
5121
|
"duration-month": {
|
|
5138
5122
|
"displayName": "meseci",
|
|
5139
|
-
"unitPattern-count-one": "{0} mes.",
|
|
5140
|
-
"unitPattern-count-few": "{0} mes.",
|
|
5141
5123
|
"unitPattern-count-other": "{0} mes.",
|
|
5142
|
-
"perUnitPattern": "{0}/m"
|
|
5124
|
+
"perUnitPattern": "{0}/m",
|
|
5125
|
+
"unitPattern-count-one": "{0} mes.",
|
|
5126
|
+
"unitPattern-count-few": "{0} mes."
|
|
5143
5127
|
},
|
|
5144
5128
|
"duration-week": {
|
|
5145
5129
|
"displayName": "ned.",
|
|
5146
|
-
"unitPattern-count-one": "{0} ned.",
|
|
5147
|
-
"unitPattern-count-few": "{0} ned.",
|
|
5148
5130
|
"unitPattern-count-other": "{0} ned.",
|
|
5149
|
-
"perUnitPattern": "{0}/n"
|
|
5131
|
+
"perUnitPattern": "{0}/n",
|
|
5132
|
+
"unitPattern-count-one": "{0} ned.",
|
|
5133
|
+
"unitPattern-count-few": "{0} ned."
|
|
5150
5134
|
},
|
|
5151
5135
|
"duration-day": {
|
|
5152
5136
|
"displayName": "d.",
|
|
5153
|
-
"unitPattern-count-one": "{0} dan",
|
|
5154
|
-
"unitPattern-count-few": "{0} dana",
|
|
5155
5137
|
"unitPattern-count-other": "{0} dana",
|
|
5156
|
-
"perUnitPattern": "{0}/d"
|
|
5138
|
+
"perUnitPattern": "{0}/d",
|
|
5139
|
+
"unitPattern-count-one": "{0} dan",
|
|
5140
|
+
"unitPattern-count-few": "{0} dana"
|
|
5157
5141
|
},
|
|
5158
5142
|
"duration-hour": {
|
|
5159
5143
|
"displayName": "sati",
|
|
5160
|
-
"unitPattern-count-one": "{0} sat",
|
|
5161
|
-
"unitPattern-count-few": "{0} sata",
|
|
5162
5144
|
"unitPattern-count-other": "{0} sati",
|
|
5163
|
-
"perUnitPattern": "{0}/č"
|
|
5145
|
+
"perUnitPattern": "{0}/č",
|
|
5146
|
+
"unitPattern-count-one": "{0} sat",
|
|
5147
|
+
"unitPattern-count-few": "{0} sata"
|
|
5164
5148
|
},
|
|
5165
5149
|
"duration-minute": {
|
|
5166
5150
|
"displayName": "min",
|
|
5167
|
-
"unitPattern-count-one": "{0} min",
|
|
5168
|
-
"unitPattern-count-few": "{0} min",
|
|
5169
5151
|
"unitPattern-count-other": "{0} min",
|
|
5170
|
-
"perUnitPattern": "{0}/min"
|
|
5152
|
+
"perUnitPattern": "{0}/min",
|
|
5153
|
+
"unitPattern-count-one": "{0} min",
|
|
5154
|
+
"unitPattern-count-few": "{0} min"
|
|
5171
5155
|
},
|
|
5172
5156
|
"duration-second": {
|
|
5173
5157
|
"displayName": "sek",
|
|
5174
|
-
"unitPattern-count-one": "{0} sek",
|
|
5175
|
-
"unitPattern-count-few": "{0} sek",
|
|
5176
5158
|
"unitPattern-count-other": "{0} sek",
|
|
5177
|
-
"perUnitPattern": "{0}/s"
|
|
5159
|
+
"perUnitPattern": "{0}/s",
|
|
5160
|
+
"unitPattern-count-one": "{0} sek",
|
|
5161
|
+
"unitPattern-count-few": "{0} sek"
|
|
5178
5162
|
},
|
|
5179
5163
|
"duration-millisecond": {
|
|
5180
5164
|
"displayName": "ms",
|
|
5165
|
+
"unitPattern-count-other": "{0} ms",
|
|
5181
5166
|
"unitPattern-count-one": "{0} ms",
|
|
5182
|
-
"unitPattern-count-few": "{0} ms"
|
|
5183
|
-
"unitPattern-count-other": "{0} ms"
|
|
5167
|
+
"unitPattern-count-few": "{0} ms"
|
|
5184
5168
|
},
|
|
5185
5169
|
"duration-microsecond": {
|
|
5186
5170
|
"displayName": "μs",
|
|
5171
|
+
"unitPattern-count-other": "{0} μs",
|
|
5187
5172
|
"unitPattern-count-one": "{0} μs",
|
|
5188
|
-
"unitPattern-count-few": "{0} μs"
|
|
5189
|
-
"unitPattern-count-other": "{0} μs"
|
|
5173
|
+
"unitPattern-count-few": "{0} μs"
|
|
5190
5174
|
},
|
|
5191
5175
|
"duration-nanosecond": {
|
|
5192
5176
|
"displayName": "ns",
|
|
5177
|
+
"unitPattern-count-other": "{0} ns",
|
|
5193
5178
|
"unitPattern-count-one": "{0} ns",
|
|
5194
|
-
"unitPattern-count-few": "{0} ns"
|
|
5195
|
-
"unitPattern-count-other": "{0} ns"
|
|
5179
|
+
"unitPattern-count-few": "{0} ns"
|
|
5196
5180
|
},
|
|
5197
5181
|
"electric-ampere": {
|
|
5198
5182
|
"displayName": "A",
|
|
5183
|
+
"unitPattern-count-other": "{0} A",
|
|
5199
5184
|
"unitPattern-count-one": "{0} A",
|
|
5200
|
-
"unitPattern-count-few": "{0} A"
|
|
5201
|
-
"unitPattern-count-other": "{0} A"
|
|
5185
|
+
"unitPattern-count-few": "{0} A"
|
|
5202
5186
|
},
|
|
5203
5187
|
"electric-milliampere": {
|
|
5204
5188
|
"displayName": "mA",
|
|
5189
|
+
"unitPattern-count-other": "{0} mA",
|
|
5205
5190
|
"unitPattern-count-one": "{0} mA",
|
|
5206
|
-
"unitPattern-count-few": "{0} mA"
|
|
5207
|
-
"unitPattern-count-other": "{0} mA"
|
|
5191
|
+
"unitPattern-count-few": "{0} mA"
|
|
5208
5192
|
},
|
|
5209
5193
|
"electric-ohm": {
|
|
5210
5194
|
"displayName": "Ω",
|
|
5195
|
+
"unitPattern-count-other": "{0} Ω",
|
|
5211
5196
|
"unitPattern-count-one": "{0} Ω",
|
|
5212
|
-
"unitPattern-count-few": "{0} Ω"
|
|
5213
|
-
"unitPattern-count-other": "{0} Ω"
|
|
5197
|
+
"unitPattern-count-few": "{0} Ω"
|
|
5214
5198
|
},
|
|
5215
5199
|
"electric-volt": {
|
|
5216
5200
|
"displayName": "V",
|
|
5201
|
+
"unitPattern-count-other": "{0} V",
|
|
5217
5202
|
"unitPattern-count-one": "{0} V",
|
|
5218
|
-
"unitPattern-count-few": "{0} V"
|
|
5219
|
-
"unitPattern-count-other": "{0} V"
|
|
5203
|
+
"unitPattern-count-few": "{0} V"
|
|
5220
5204
|
},
|
|
5221
5205
|
"energy-kilocalorie": {
|
|
5222
5206
|
"displayName": "kcal",
|
|
5207
|
+
"unitPattern-count-other": "{0} kcal",
|
|
5223
5208
|
"unitPattern-count-one": "{0} kcal",
|
|
5224
|
-
"unitPattern-count-few": "{0} kcal"
|
|
5225
|
-
"unitPattern-count-other": "{0} kcal"
|
|
5209
|
+
"unitPattern-count-few": "{0} kcal"
|
|
5226
5210
|
},
|
|
5227
5211
|
"energy-calorie": {
|
|
5228
5212
|
"displayName": "cal",
|
|
5213
|
+
"unitPattern-count-other": "{0} cal",
|
|
5229
5214
|
"unitPattern-count-one": "{0} cal",
|
|
5230
|
-
"unitPattern-count-few": "{0} cal"
|
|
5231
|
-
"unitPattern-count-other": "{0} cal"
|
|
5232
|
-
},
|
|
5233
|
-
"energy-foodcalorie": {
|
|
5234
|
-
"displayName": "Cal",
|
|
5235
|
-
"unitPattern-count-one": "{0} Cal",
|
|
5236
|
-
"unitPattern-count-few": "{0} Cal",
|
|
5237
|
-
"unitPattern-count-other": "{0} Cal"
|
|
5215
|
+
"unitPattern-count-few": "{0} cal"
|
|
5238
5216
|
},
|
|
5239
5217
|
"energy-kilojoule": {
|
|
5240
5218
|
"displayName": "kJ",
|
|
5219
|
+
"unitPattern-count-other": "{0} kJ",
|
|
5241
5220
|
"unitPattern-count-one": "{0} kJ",
|
|
5242
|
-
"unitPattern-count-few": "{0} kJ"
|
|
5243
|
-
"unitPattern-count-other": "{0} kJ"
|
|
5221
|
+
"unitPattern-count-few": "{0} kJ"
|
|
5244
5222
|
},
|
|
5245
5223
|
"energy-joule": {
|
|
5246
5224
|
"displayName": "J",
|
|
5225
|
+
"unitPattern-count-other": "{0} J",
|
|
5247
5226
|
"unitPattern-count-one": "{0} J",
|
|
5248
|
-
"unitPattern-count-few": "{0} J"
|
|
5249
|
-
"unitPattern-count-other": "{0} J"
|
|
5227
|
+
"unitPattern-count-few": "{0} J"
|
|
5250
5228
|
},
|
|
5251
5229
|
"energy-kilowatt-hour": {
|
|
5252
5230
|
"displayName": "kWh",
|
|
5231
|
+
"unitPattern-count-other": "{0} kWh",
|
|
5253
5232
|
"unitPattern-count-one": "{0} kWh",
|
|
5254
|
-
"unitPattern-count-few": "{0} kWh"
|
|
5255
|
-
"unitPattern-count-other": "{0} kWh"
|
|
5233
|
+
"unitPattern-count-few": "{0} kWh"
|
|
5256
5234
|
},
|
|
5257
5235
|
"energy-electronvolt": {
|
|
5258
5236
|
"displayName": "elektronvolt",
|
|
5237
|
+
"unitPattern-count-other": "{0} eV",
|
|
5259
5238
|
"unitPattern-count-one": "{0} eV",
|
|
5260
|
-
"unitPattern-count-few": "{0} eV"
|
|
5261
|
-
"unitPattern-count-other": "{0} eV"
|
|
5239
|
+
"unitPattern-count-few": "{0} eV"
|
|
5262
5240
|
},
|
|
5263
5241
|
"energy-british-thermal-unit": {
|
|
5264
5242
|
"displayName": "Btu",
|
|
5265
|
-
"unitPattern-count-other": "{0} Btu"
|
|
5243
|
+
"unitPattern-count-other": "{0} Btu",
|
|
5244
|
+
"unitPattern-count-one": "{0} Btu",
|
|
5245
|
+
"unitPattern-count-few": "{0} Btu"
|
|
5266
5246
|
},
|
|
5267
5247
|
"energy-therm-us": {
|
|
5268
5248
|
"displayName": "US therm",
|
|
5249
|
+
"unitPattern-count-other": "{0} US therms",
|
|
5269
5250
|
"unitPattern-count-one": "{0} US therm",
|
|
5270
|
-
"unitPattern-count-few": "{0} US therms"
|
|
5271
|
-
"unitPattern-count-other": "{0} US therms"
|
|
5251
|
+
"unitPattern-count-few": "{0} US therms"
|
|
5272
5252
|
},
|
|
5273
5253
|
"force-pound-force": {
|
|
5274
5254
|
"displayName": "lbf",
|
|
5275
|
-
"unitPattern-count-other": "{0} lbf"
|
|
5255
|
+
"unitPattern-count-other": "{0} lbf",
|
|
5256
|
+
"unitPattern-count-one": "{0} lbf",
|
|
5257
|
+
"unitPattern-count-few": "{0} lbf"
|
|
5276
5258
|
},
|
|
5277
5259
|
"force-newton": {
|
|
5278
5260
|
"displayName": "njutn",
|
|
5279
|
-
"unitPattern-count-other": "{0} N"
|
|
5261
|
+
"unitPattern-count-other": "{0} N",
|
|
5262
|
+
"unitPattern-count-one": "{0} N",
|
|
5263
|
+
"unitPattern-count-few": "{0} N"
|
|
5280
5264
|
},
|
|
5281
5265
|
"force-kilowatt-hour-per-100-kilometer": {
|
|
5282
5266
|
"displayName": "kWh/100km",
|
|
5283
|
-
"unitPattern-count-other": "{0} kWh/100km"
|
|
5267
|
+
"unitPattern-count-other": "{0} kWh/100km",
|
|
5268
|
+
"unitPattern-count-one": "{0} kWh/100km",
|
|
5269
|
+
"unitPattern-count-few": "{0} kWh/100km"
|
|
5284
5270
|
},
|
|
5285
5271
|
"frequency-gigahertz": {
|
|
5286
5272
|
"displayName": "GHz",
|
|
5273
|
+
"unitPattern-count-other": "{0} GHz",
|
|
5287
5274
|
"unitPattern-count-one": "{0} GHz",
|
|
5288
|
-
"unitPattern-count-few": "{0} GHz"
|
|
5289
|
-
"unitPattern-count-other": "{0} GHz"
|
|
5275
|
+
"unitPattern-count-few": "{0} GHz"
|
|
5290
5276
|
},
|
|
5291
5277
|
"frequency-megahertz": {
|
|
5292
5278
|
"displayName": "MHz",
|
|
5279
|
+
"unitPattern-count-other": "{0} MHz",
|
|
5293
5280
|
"unitPattern-count-one": "{0} MHz",
|
|
5294
|
-
"unitPattern-count-few": "{0} MHz"
|
|
5295
|
-
"unitPattern-count-other": "{0} MHz"
|
|
5281
|
+
"unitPattern-count-few": "{0} MHz"
|
|
5296
5282
|
},
|
|
5297
5283
|
"frequency-kilohertz": {
|
|
5298
5284
|
"displayName": "kHz",
|
|
5285
|
+
"unitPattern-count-other": "{0} kHz",
|
|
5299
5286
|
"unitPattern-count-one": "{0} kHz",
|
|
5300
|
-
"unitPattern-count-few": "{0} kHz"
|
|
5301
|
-
"unitPattern-count-other": "{0} kHz"
|
|
5287
|
+
"unitPattern-count-few": "{0} kHz"
|
|
5302
5288
|
},
|
|
5303
5289
|
"frequency-hertz": {
|
|
5304
5290
|
"displayName": "Hz",
|
|
5291
|
+
"unitPattern-count-other": "{0} Hz",
|
|
5305
5292
|
"unitPattern-count-one": "{0} Hz",
|
|
5306
|
-
"unitPattern-count-few": "{0} Hz"
|
|
5307
|
-
"unitPattern-count-other": "{0} Hz"
|
|
5293
|
+
"unitPattern-count-few": "{0} Hz"
|
|
5308
5294
|
},
|
|
5309
5295
|
"graphics-em": {
|
|
5310
5296
|
"displayName": "em",
|
|
5311
|
-
"unitPattern-count-other": "{0} em"
|
|
5297
|
+
"unitPattern-count-other": "{0} em",
|
|
5298
|
+
"unitPattern-count-one": "{0} em",
|
|
5299
|
+
"unitPattern-count-few": "{0} em"
|
|
5312
5300
|
},
|
|
5313
5301
|
"graphics-pixel": {
|
|
5314
5302
|
"displayName": "px",
|
|
5315
|
-
"unitPattern-count-other": "{0} px"
|
|
5303
|
+
"unitPattern-count-other": "{0} px",
|
|
5304
|
+
"unitPattern-count-one": "{0} px",
|
|
5305
|
+
"unitPattern-count-few": "{0} px"
|
|
5316
5306
|
},
|
|
5317
5307
|
"graphics-megapixel": {
|
|
5318
5308
|
"displayName": "MP",
|
|
5319
|
-
"unitPattern-count-other": "{0} MP"
|
|
5309
|
+
"unitPattern-count-other": "{0} MP",
|
|
5310
|
+
"unitPattern-count-one": "{0} MP",
|
|
5311
|
+
"unitPattern-count-few": "{0} MP"
|
|
5320
5312
|
},
|
|
5321
5313
|
"graphics-pixel-per-centimeter": {
|
|
5322
5314
|
"displayName": "ppcm",
|
|
5323
|
-
"unitPattern-count-other": "{0} ppcm"
|
|
5315
|
+
"unitPattern-count-other": "{0} ppcm",
|
|
5316
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5317
|
+
"unitPattern-count-few": "{0} ppcm"
|
|
5324
5318
|
},
|
|
5325
5319
|
"graphics-pixel-per-inch": {
|
|
5326
5320
|
"displayName": "ppi",
|
|
5327
|
-
"unitPattern-count-other": "{0} ppi"
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
"displayName": "dpcm",
|
|
5331
|
-
"unitPattern-count-other": "{0} dpcm"
|
|
5332
|
-
},
|
|
5333
|
-
"graphics-dot-per-inch": {
|
|
5334
|
-
"displayName": "dpi",
|
|
5335
|
-
"unitPattern-count-other": "{0} dpi"
|
|
5336
|
-
},
|
|
5337
|
-
"graphics-dot": {
|
|
5338
|
-
"displayName": "tačka",
|
|
5339
|
-
"unitPattern-count-one": "{0} tačka",
|
|
5340
|
-
"unitPattern-count-few": "{0} tačke",
|
|
5341
|
-
"unitPattern-count-other": "{0} tačaka"
|
|
5321
|
+
"unitPattern-count-other": "{0} ppi",
|
|
5322
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5323
|
+
"unitPattern-count-few": "{0} ppi"
|
|
5342
5324
|
},
|
|
5343
5325
|
"length-earth-radius": {
|
|
5344
5326
|
"displayName": "R⊕",
|
|
5327
|
+
"unitPattern-count-other": "{0} R⊕",
|
|
5345
5328
|
"unitPattern-count-one": "{0} R⊕",
|
|
5346
|
-
"unitPattern-count-few": "{0} R⊕"
|
|
5347
|
-
"unitPattern-count-other": "{0} R⊕"
|
|
5329
|
+
"unitPattern-count-few": "{0} R⊕"
|
|
5348
5330
|
},
|
|
5349
5331
|
"length-kilometer": {
|
|
5350
5332
|
"displayName": "km",
|
|
5351
|
-
"unitPattern-count-one": "{0} km",
|
|
5352
|
-
"unitPattern-count-few": "{0} km",
|
|
5353
5333
|
"unitPattern-count-other": "{0} km",
|
|
5354
|
-
"perUnitPattern": "{0}/km"
|
|
5334
|
+
"perUnitPattern": "{0}/km",
|
|
5335
|
+
"unitPattern-count-one": "{0} km",
|
|
5336
|
+
"unitPattern-count-few": "{0} km"
|
|
5355
5337
|
},
|
|
5356
5338
|
"length-meter": {
|
|
5357
5339
|
"displayName": "m",
|
|
5358
|
-
"unitPattern-count-one": "{0} m",
|
|
5359
|
-
"unitPattern-count-few": "{0} m",
|
|
5360
5340
|
"unitPattern-count-other": "{0} m",
|
|
5361
|
-
"perUnitPattern": "{0}/m"
|
|
5341
|
+
"perUnitPattern": "{0}/m",
|
|
5342
|
+
"unitPattern-count-one": "{0} m",
|
|
5343
|
+
"unitPattern-count-few": "{0} m"
|
|
5362
5344
|
},
|
|
5363
5345
|
"length-decimeter": {
|
|
5364
5346
|
"displayName": "dm",
|
|
5347
|
+
"unitPattern-count-other": "{0} dm",
|
|
5365
5348
|
"unitPattern-count-one": "{0} dm",
|
|
5366
|
-
"unitPattern-count-few": "{0} dm"
|
|
5367
|
-
"unitPattern-count-other": "{0} dm"
|
|
5349
|
+
"unitPattern-count-few": "{0} dm"
|
|
5368
5350
|
},
|
|
5369
5351
|
"length-centimeter": {
|
|
5370
5352
|
"displayName": "cm",
|
|
5371
|
-
"unitPattern-count-one": "{0} cm",
|
|
5372
|
-
"unitPattern-count-few": "{0} cm",
|
|
5373
5353
|
"unitPattern-count-other": "{0} cm",
|
|
5374
|
-
"perUnitPattern": "{0}/cm"
|
|
5354
|
+
"perUnitPattern": "{0}/cm",
|
|
5355
|
+
"unitPattern-count-one": "{0} cm",
|
|
5356
|
+
"unitPattern-count-few": "{0} cm"
|
|
5375
5357
|
},
|
|
5376
5358
|
"length-millimeter": {
|
|
5377
5359
|
"displayName": "mm",
|
|
5360
|
+
"unitPattern-count-other": "{0} mm",
|
|
5378
5361
|
"unitPattern-count-one": "{0} mm",
|
|
5379
|
-
"unitPattern-count-few": "{0} mm"
|
|
5380
|
-
"unitPattern-count-other": "{0} mm"
|
|
5362
|
+
"unitPattern-count-few": "{0} mm"
|
|
5381
5363
|
},
|
|
5382
5364
|
"length-micrometer": {
|
|
5383
5365
|
"displayName": "μm",
|
|
5366
|
+
"unitPattern-count-other": "{0} μm",
|
|
5384
5367
|
"unitPattern-count-one": "{0} μm",
|
|
5385
|
-
"unitPattern-count-few": "{0} μm"
|
|
5386
|
-
"unitPattern-count-other": "{0} μm"
|
|
5368
|
+
"unitPattern-count-few": "{0} μm"
|
|
5387
5369
|
},
|
|
5388
5370
|
"length-nanometer": {
|
|
5389
5371
|
"displayName": "nm",
|
|
5372
|
+
"unitPattern-count-other": "{0} nm",
|
|
5390
5373
|
"unitPattern-count-one": "{0} nm",
|
|
5391
|
-
"unitPattern-count-few": "{0} nm"
|
|
5392
|
-
"unitPattern-count-other": "{0} nm"
|
|
5374
|
+
"unitPattern-count-few": "{0} nm"
|
|
5393
5375
|
},
|
|
5394
5376
|
"length-picometer": {
|
|
5395
5377
|
"displayName": "pikometri",
|
|
5378
|
+
"unitPattern-count-other": "{0} pm",
|
|
5396
5379
|
"unitPattern-count-one": "{0} pm",
|
|
5397
|
-
"unitPattern-count-few": "{0} pm"
|
|
5398
|
-
"unitPattern-count-other": "{0} pm"
|
|
5380
|
+
"unitPattern-count-few": "{0} pm"
|
|
5399
5381
|
},
|
|
5400
5382
|
"length-mile": {
|
|
5401
5383
|
"displayName": "milje",
|
|
5384
|
+
"unitPattern-count-other": "{0} mi",
|
|
5402
5385
|
"unitPattern-count-one": "{0} mi",
|
|
5403
|
-
"unitPattern-count-few": "{0} mi"
|
|
5404
|
-
"unitPattern-count-other": "{0} mi"
|
|
5386
|
+
"unitPattern-count-few": "{0} mi"
|
|
5405
5387
|
},
|
|
5406
5388
|
"length-yard": {
|
|
5407
5389
|
"displayName": "jardi",
|
|
5390
|
+
"unitPattern-count-other": "{0} jrd",
|
|
5408
5391
|
"unitPattern-count-one": "{0} jrd",
|
|
5409
|
-
"unitPattern-count-few": "{0} jrd"
|
|
5410
|
-
"unitPattern-count-other": "{0} jrd"
|
|
5392
|
+
"unitPattern-count-few": "{0} jrd"
|
|
5411
5393
|
},
|
|
5412
5394
|
"length-foot": {
|
|
5413
5395
|
"displayName": "ft",
|
|
5414
|
-
"unitPattern-count-one": "{0} ft",
|
|
5415
|
-
"unitPattern-count-few": "{0} ft",
|
|
5416
5396
|
"unitPattern-count-other": "{0} ft",
|
|
5417
|
-
"perUnitPattern": "{0}/ft"
|
|
5397
|
+
"perUnitPattern": "{0}/ft",
|
|
5398
|
+
"unitPattern-count-one": "{0} ft",
|
|
5399
|
+
"unitPattern-count-few": "{0} ft"
|
|
5418
5400
|
},
|
|
5419
5401
|
"length-inch": {
|
|
5420
5402
|
"displayName": "inči",
|
|
5421
|
-
"unitPattern-count-one": "{0} inč",
|
|
5422
|
-
"unitPattern-count-few": "{0} inča",
|
|
5423
5403
|
"unitPattern-count-other": "{0} inča",
|
|
5424
|
-
"perUnitPattern": "{0}/in"
|
|
5404
|
+
"perUnitPattern": "{0}/in",
|
|
5405
|
+
"unitPattern-count-one": "{0} inč",
|
|
5406
|
+
"unitPattern-count-few": "{0} inča"
|
|
5425
5407
|
},
|
|
5426
5408
|
"length-parsec": {
|
|
5427
5409
|
"displayName": "parseci",
|
|
5410
|
+
"unitPattern-count-other": "{0} pc",
|
|
5428
5411
|
"unitPattern-count-one": "{0} pc",
|
|
5429
|
-
"unitPattern-count-few": "{0} pc"
|
|
5430
|
-
"unitPattern-count-other": "{0} pc"
|
|
5412
|
+
"unitPattern-count-few": "{0} pc"
|
|
5431
5413
|
},
|
|
5432
5414
|
"length-light-year": {
|
|
5433
5415
|
"displayName": "svetlosne god.",
|
|
5416
|
+
"unitPattern-count-other": "{0} sg",
|
|
5434
5417
|
"unitPattern-count-one": "{0} sg",
|
|
5435
|
-
"unitPattern-count-few": "{0} sg"
|
|
5436
|
-
"unitPattern-count-other": "{0} sg"
|
|
5418
|
+
"unitPattern-count-few": "{0} sg"
|
|
5437
5419
|
},
|
|
5438
5420
|
"length-astronomical-unit": {
|
|
5439
5421
|
"displayName": "aj",
|
|
5422
|
+
"unitPattern-count-other": "{0} aj",
|
|
5440
5423
|
"unitPattern-count-one": "{0} aj",
|
|
5441
|
-
"unitPattern-count-few": "{0} aj"
|
|
5442
|
-
"unitPattern-count-other": "{0} aj"
|
|
5424
|
+
"unitPattern-count-few": "{0} aj"
|
|
5443
5425
|
},
|
|
5444
5426
|
"length-furlong": {
|
|
5445
5427
|
"displayName": "furlonzi",
|
|
5428
|
+
"unitPattern-count-other": "{0} fur",
|
|
5446
5429
|
"unitPattern-count-one": "{0} fur",
|
|
5447
|
-
"unitPattern-count-few": "{0} fur"
|
|
5448
|
-
"unitPattern-count-other": "{0} fur"
|
|
5430
|
+
"unitPattern-count-few": "{0} fur"
|
|
5449
5431
|
},
|
|
5450
5432
|
"length-fathom": {
|
|
5451
5433
|
"displayName": "hv",
|
|
5434
|
+
"unitPattern-count-other": "{0} fth",
|
|
5452
5435
|
"unitPattern-count-one": "{0} fth",
|
|
5453
|
-
"unitPattern-count-few": "{0} fth"
|
|
5454
|
-
"unitPattern-count-other": "{0} fth"
|
|
5436
|
+
"unitPattern-count-few": "{0} fth"
|
|
5455
5437
|
},
|
|
5456
5438
|
"length-nautical-mile": {
|
|
5457
5439
|
"displayName": "nmi",
|
|
5440
|
+
"unitPattern-count-other": "{0} nmi",
|
|
5458
5441
|
"unitPattern-count-one": "{0} nmi",
|
|
5459
|
-
"unitPattern-count-few": "{0} nmi"
|
|
5460
|
-
"unitPattern-count-other": "{0} nmi"
|
|
5442
|
+
"unitPattern-count-few": "{0} nmi"
|
|
5461
5443
|
},
|
|
5462
5444
|
"length-mile-scandinavian": {
|
|
5463
5445
|
"displayName": "smi",
|
|
5446
|
+
"unitPattern-count-other": "{0} smi",
|
|
5464
5447
|
"unitPattern-count-one": "{0} smi",
|
|
5465
|
-
"unitPattern-count-few": "{0} smi"
|
|
5466
|
-
"unitPattern-count-other": "{0} smi"
|
|
5448
|
+
"unitPattern-count-few": "{0} smi"
|
|
5467
5449
|
},
|
|
5468
5450
|
"length-point": {
|
|
5469
5451
|
"displayName": "pt",
|
|
5452
|
+
"unitPattern-count-other": "{0} pt",
|
|
5470
5453
|
"unitPattern-count-one": "{0} pt",
|
|
5471
|
-
"unitPattern-count-few": "{0} pt"
|
|
5472
|
-
"unitPattern-count-other": "{0} pt"
|
|
5454
|
+
"unitPattern-count-few": "{0} pt"
|
|
5473
5455
|
},
|
|
5474
5456
|
"length-solar-radius": {
|
|
5475
5457
|
"displayName": "R☉",
|
|
5476
|
-
"unitPattern-count-other": "{0} R☉"
|
|
5458
|
+
"unitPattern-count-other": "{0} R☉",
|
|
5459
|
+
"unitPattern-count-one": "{0} R☉",
|
|
5460
|
+
"unitPattern-count-few": "{0} R☉"
|
|
5477
5461
|
},
|
|
5478
5462
|
"light-lux": {
|
|
5479
5463
|
"displayName": "lx",
|
|
5464
|
+
"unitPattern-count-other": "{0} lx",
|
|
5480
5465
|
"unitPattern-count-one": "{0} lx",
|
|
5481
|
-
"unitPattern-count-few": "{0} lx"
|
|
5482
|
-
"unitPattern-count-other": "{0} lx"
|
|
5466
|
+
"unitPattern-count-few": "{0} lx"
|
|
5483
5467
|
},
|
|
5484
5468
|
"light-candela": {
|
|
5485
5469
|
"displayName": "cd",
|
|
5486
|
-
"unitPattern-count-other": "{0} cd"
|
|
5470
|
+
"unitPattern-count-other": "{0} cd",
|
|
5471
|
+
"unitPattern-count-one": "{0} cd",
|
|
5472
|
+
"unitPattern-count-few": "{0} cd"
|
|
5487
5473
|
},
|
|
5488
5474
|
"light-lumen": {
|
|
5489
5475
|
"displayName": "lm",
|
|
5490
|
-
"unitPattern-count-other": "{0} lm"
|
|
5476
|
+
"unitPattern-count-other": "{0} lm",
|
|
5477
|
+
"unitPattern-count-one": "{0} lm",
|
|
5478
|
+
"unitPattern-count-few": "{0} lm"
|
|
5491
5479
|
},
|
|
5492
5480
|
"light-solar-luminosity": {
|
|
5493
5481
|
"displayName": "L☉",
|
|
5494
|
-
"unitPattern-count-other": "{0} L☉"
|
|
5482
|
+
"unitPattern-count-other": "{0} L☉",
|
|
5483
|
+
"unitPattern-count-one": "{0} L☉",
|
|
5484
|
+
"unitPattern-count-few": "{0} L☉"
|
|
5495
5485
|
},
|
|
5496
|
-
"mass-
|
|
5486
|
+
"mass-tonne": {
|
|
5497
5487
|
"displayName": "t",
|
|
5488
|
+
"unitPattern-count-other": "{0} t",
|
|
5498
5489
|
"unitPattern-count-one": "{0} t",
|
|
5499
|
-
"unitPattern-count-few": "{0} t"
|
|
5500
|
-
"unitPattern-count-other": "{0} t"
|
|
5490
|
+
"unitPattern-count-few": "{0} t"
|
|
5501
5491
|
},
|
|
5502
5492
|
"mass-kilogram": {
|
|
5503
5493
|
"displayName": "kg",
|
|
5504
|
-
"unitPattern-count-one": "{0} kg",
|
|
5505
|
-
"unitPattern-count-few": "{0} kg",
|
|
5506
5494
|
"unitPattern-count-other": "{0} kg",
|
|
5507
|
-
"perUnitPattern": "{0}/kg"
|
|
5495
|
+
"perUnitPattern": "{0}/kg",
|
|
5496
|
+
"unitPattern-count-one": "{0} kg",
|
|
5497
|
+
"unitPattern-count-few": "{0} kg"
|
|
5508
5498
|
},
|
|
5509
5499
|
"mass-gram": {
|
|
5510
5500
|
"displayName": "grami",
|
|
5511
|
-
"unitPattern-count-one": "{0} g",
|
|
5512
|
-
"unitPattern-count-few": "{0} g",
|
|
5513
5501
|
"unitPattern-count-other": "{0} g",
|
|
5514
|
-
"perUnitPattern": "{0}/g"
|
|
5502
|
+
"perUnitPattern": "{0}/g",
|
|
5503
|
+
"unitPattern-count-one": "{0} g",
|
|
5504
|
+
"unitPattern-count-few": "{0} g"
|
|
5515
5505
|
},
|
|
5516
5506
|
"mass-milligram": {
|
|
5517
5507
|
"displayName": "mg",
|
|
5508
|
+
"unitPattern-count-other": "{0} mg",
|
|
5518
5509
|
"unitPattern-count-one": "{0} mg",
|
|
5519
|
-
"unitPattern-count-few": "{0} mg"
|
|
5520
|
-
"unitPattern-count-other": "{0} mg"
|
|
5510
|
+
"unitPattern-count-few": "{0} mg"
|
|
5521
5511
|
},
|
|
5522
5512
|
"mass-microgram": {
|
|
5523
5513
|
"displayName": "μg",
|
|
5514
|
+
"unitPattern-count-other": "{0} μg",
|
|
5524
5515
|
"unitPattern-count-one": "{0} μg",
|
|
5525
|
-
"unitPattern-count-few": "{0} μg"
|
|
5526
|
-
"unitPattern-count-other": "{0} μg"
|
|
5516
|
+
"unitPattern-count-few": "{0} μg"
|
|
5527
5517
|
},
|
|
5528
5518
|
"mass-ton": {
|
|
5529
5519
|
"displayName": "tn",
|
|
5520
|
+
"unitPattern-count-other": "{0} tn",
|
|
5530
5521
|
"unitPattern-count-one": "{0} tn",
|
|
5531
|
-
"unitPattern-count-few": "{0} tn"
|
|
5532
|
-
"unitPattern-count-other": "{0} tn"
|
|
5522
|
+
"unitPattern-count-few": "{0} tn"
|
|
5533
5523
|
},
|
|
5534
5524
|
"mass-stone": {
|
|
5535
5525
|
"displayName": "st",
|
|
5536
|
-
"unitPattern-count-other": "{0} st"
|
|
5526
|
+
"unitPattern-count-other": "{0} st",
|
|
5527
|
+
"unitPattern-count-one": "{0} st",
|
|
5528
|
+
"unitPattern-count-few": "{0} st"
|
|
5537
5529
|
},
|
|
5538
5530
|
"mass-pound": {
|
|
5539
5531
|
"displayName": "lb",
|
|
5540
|
-
"unitPattern-count-one": "{0} lb",
|
|
5541
|
-
"unitPattern-count-few": "{0} lb",
|
|
5542
5532
|
"unitPattern-count-other": "{0} lb",
|
|
5543
|
-
"perUnitPattern": "{0}/lb"
|
|
5533
|
+
"perUnitPattern": "{0}/lb",
|
|
5534
|
+
"unitPattern-count-one": "{0} lb",
|
|
5535
|
+
"unitPattern-count-few": "{0} lb"
|
|
5544
5536
|
},
|
|
5545
5537
|
"mass-ounce": {
|
|
5546
5538
|
"displayName": "oz",
|
|
5547
|
-
"unitPattern-count-one": "{0} oz",
|
|
5548
|
-
"unitPattern-count-few": "{0} oz",
|
|
5549
5539
|
"unitPattern-count-other": "{0} oz",
|
|
5550
|
-
"perUnitPattern": "{0}/oz"
|
|
5540
|
+
"perUnitPattern": "{0}/oz",
|
|
5541
|
+
"unitPattern-count-one": "{0} oz",
|
|
5542
|
+
"unitPattern-count-few": "{0} oz"
|
|
5551
5543
|
},
|
|
5552
5544
|
"mass-ounce-troy": {
|
|
5553
5545
|
"displayName": "oz t",
|
|
5546
|
+
"unitPattern-count-other": "{0} oz t",
|
|
5554
5547
|
"unitPattern-count-one": "{0} oz t",
|
|
5555
|
-
"unitPattern-count-few": "{0} oz t"
|
|
5556
|
-
"unitPattern-count-other": "{0} oz t"
|
|
5548
|
+
"unitPattern-count-few": "{0} oz t"
|
|
5557
5549
|
},
|
|
5558
5550
|
"mass-carat": {
|
|
5559
5551
|
"displayName": "karati",
|
|
5552
|
+
"unitPattern-count-other": "{0} CD",
|
|
5560
5553
|
"unitPattern-count-one": "{0} CD",
|
|
5561
|
-
"unitPattern-count-few": "{0} CD"
|
|
5562
|
-
"unitPattern-count-other": "{0} CD"
|
|
5554
|
+
"unitPattern-count-few": "{0} CD"
|
|
5563
5555
|
},
|
|
5564
5556
|
"mass-dalton": {
|
|
5565
5557
|
"displayName": "Da",
|
|
5566
|
-
"unitPattern-count-other": "{0} Da"
|
|
5558
|
+
"unitPattern-count-other": "{0} Da",
|
|
5559
|
+
"unitPattern-count-one": "{0} Da",
|
|
5560
|
+
"unitPattern-count-few": "{0} Da"
|
|
5567
5561
|
},
|
|
5568
5562
|
"mass-earth-mass": {
|
|
5569
5563
|
"displayName": "M⊕",
|
|
5570
|
-
"unitPattern-count-other": "{0} M⊕"
|
|
5564
|
+
"unitPattern-count-other": "{0} M⊕",
|
|
5565
|
+
"unitPattern-count-one": "{0} M⊕",
|
|
5566
|
+
"unitPattern-count-few": "{0} M⊕"
|
|
5571
5567
|
},
|
|
5572
5568
|
"mass-solar-mass": {
|
|
5573
5569
|
"displayName": "M☉",
|
|
5574
|
-
"unitPattern-count-other": "{0} M☉"
|
|
5570
|
+
"unitPattern-count-other": "{0} M☉",
|
|
5571
|
+
"unitPattern-count-one": "{0} M☉",
|
|
5572
|
+
"unitPattern-count-few": "{0} M☉"
|
|
5575
5573
|
},
|
|
5576
5574
|
"mass-grain": {
|
|
5577
5575
|
"displayName": "grejn",
|
|
5578
|
-
"unitPattern-count-other": "{0} grain"
|
|
5576
|
+
"unitPattern-count-other": "{0} grain",
|
|
5577
|
+
"unitPattern-count-one": "{0} grain",
|
|
5578
|
+
"unitPattern-count-few": "{0} grain"
|
|
5579
5579
|
},
|
|
5580
5580
|
"power-gigawatt": {
|
|
5581
5581
|
"displayName": "GW",
|
|
5582
|
+
"unitPattern-count-other": "{0} GW",
|
|
5582
5583
|
"unitPattern-count-one": "{0} GW",
|
|
5583
|
-
"unitPattern-count-few": "{0} GW"
|
|
5584
|
-
"unitPattern-count-other": "{0} GW"
|
|
5584
|
+
"unitPattern-count-few": "{0} GW"
|
|
5585
5585
|
},
|
|
5586
5586
|
"power-megawatt": {
|
|
5587
5587
|
"displayName": "MW",
|
|
5588
|
+
"unitPattern-count-other": "{0} MW",
|
|
5588
5589
|
"unitPattern-count-one": "{0} MW",
|
|
5589
|
-
"unitPattern-count-few": "{0} MW"
|
|
5590
|
-
"unitPattern-count-other": "{0} MW"
|
|
5590
|
+
"unitPattern-count-few": "{0} MW"
|
|
5591
5591
|
},
|
|
5592
5592
|
"power-kilowatt": {
|
|
5593
5593
|
"displayName": "kW",
|
|
5594
|
+
"unitPattern-count-other": "{0} kW",
|
|
5594
5595
|
"unitPattern-count-one": "{0} kW",
|
|
5595
|
-
"unitPattern-count-few": "{0} kW"
|
|
5596
|
-
"unitPattern-count-other": "{0} kW"
|
|
5596
|
+
"unitPattern-count-few": "{0} kW"
|
|
5597
5597
|
},
|
|
5598
5598
|
"power-watt": {
|
|
5599
5599
|
"displayName": "W",
|
|
5600
|
+
"unitPattern-count-other": "{0} W",
|
|
5600
5601
|
"unitPattern-count-one": "{0} W",
|
|
5601
|
-
"unitPattern-count-few": "{0} W"
|
|
5602
|
-
"unitPattern-count-other": "{0} W"
|
|
5602
|
+
"unitPattern-count-few": "{0} W"
|
|
5603
5603
|
},
|
|
5604
5604
|
"power-milliwatt": {
|
|
5605
5605
|
"displayName": "mW",
|
|
5606
|
+
"unitPattern-count-other": "{0} mW",
|
|
5606
5607
|
"unitPattern-count-one": "{0} mW",
|
|
5607
|
-
"unitPattern-count-few": "{0} mW"
|
|
5608
|
-
"unitPattern-count-other": "{0} mW"
|
|
5608
|
+
"unitPattern-count-few": "{0} mW"
|
|
5609
5609
|
},
|
|
5610
5610
|
"power-horsepower": {
|
|
5611
5611
|
"displayName": "hp",
|
|
5612
|
+
"unitPattern-count-other": "{0} hp",
|
|
5612
5613
|
"unitPattern-count-one": "{0} hp",
|
|
5613
|
-
"unitPattern-count-few": "{0} hp"
|
|
5614
|
-
"unitPattern-count-other": "{0} hp"
|
|
5614
|
+
"unitPattern-count-few": "{0} hp"
|
|
5615
5615
|
},
|
|
5616
5616
|
"pressure-millimeter-ofhg": {
|
|
5617
5617
|
"displayName": "mm Hg",
|
|
5618
|
+
"unitPattern-count-other": "{0} mm Hg",
|
|
5618
5619
|
"unitPattern-count-one": "{0} mm Hg",
|
|
5619
|
-
"unitPattern-count-few": "{0} mm Hg"
|
|
5620
|
-
"unitPattern-count-other": "{0} mm Hg"
|
|
5620
|
+
"unitPattern-count-few": "{0} mm Hg"
|
|
5621
5621
|
},
|
|
5622
5622
|
"pressure-pound-force-per-square-inch": {
|
|
5623
5623
|
"displayName": "psi",
|
|
5624
|
+
"unitPattern-count-other": "{0} psi",
|
|
5624
5625
|
"unitPattern-count-one": "{0} psi",
|
|
5625
|
-
"unitPattern-count-few": "{0} psi"
|
|
5626
|
-
"unitPattern-count-other": "{0} psi"
|
|
5626
|
+
"unitPattern-count-few": "{0} psi"
|
|
5627
5627
|
},
|
|
5628
5628
|
"pressure-inch-ofhg": {
|
|
5629
5629
|
"displayName": "inHg",
|
|
5630
|
+
"unitPattern-count-other": "{0} inHg",
|
|
5630
5631
|
"unitPattern-count-one": "{0} inHg",
|
|
5631
|
-
"unitPattern-count-few": "{0} inHg"
|
|
5632
|
-
"unitPattern-count-other": "{0} inHg"
|
|
5632
|
+
"unitPattern-count-few": "{0} inHg"
|
|
5633
5633
|
},
|
|
5634
5634
|
"pressure-bar": {
|
|
5635
5635
|
"displayName": "bar",
|
|
5636
|
+
"unitPattern-count-other": "{0} bar",
|
|
5636
5637
|
"unitPattern-count-one": "{0} bar",
|
|
5637
|
-
"unitPattern-count-few": "{0} bar"
|
|
5638
|
-
"unitPattern-count-other": "{0} bar"
|
|
5638
|
+
"unitPattern-count-few": "{0} bar"
|
|
5639
5639
|
},
|
|
5640
5640
|
"pressure-millibar": {
|
|
5641
5641
|
"displayName": "mbar",
|
|
5642
|
+
"unitPattern-count-other": "{0} mbar",
|
|
5642
5643
|
"unitPattern-count-one": "{0} mbar",
|
|
5643
|
-
"unitPattern-count-few": "{0} mbar"
|
|
5644
|
-
"unitPattern-count-other": "{0} mbar"
|
|
5644
|
+
"unitPattern-count-few": "{0} mbar"
|
|
5645
5645
|
},
|
|
5646
5646
|
"pressure-atmosphere": {
|
|
5647
5647
|
"displayName": "atm",
|
|
5648
|
+
"unitPattern-count-other": "{0} atm",
|
|
5648
5649
|
"unitPattern-count-one": "{0} atm",
|
|
5649
|
-
"unitPattern-count-few": "{0} atm"
|
|
5650
|
-
"unitPattern-count-other": "{0} atm"
|
|
5650
|
+
"unitPattern-count-few": "{0} atm"
|
|
5651
5651
|
},
|
|
5652
5652
|
"pressure-pascal": {
|
|
5653
5653
|
"displayName": "Pa",
|
|
5654
|
+
"unitPattern-count-other": "{0} Pa",
|
|
5654
5655
|
"unitPattern-count-one": "{0} Pa",
|
|
5655
|
-
"unitPattern-count-few": "{0} Pa"
|
|
5656
|
-
"unitPattern-count-other": "{0} Pa"
|
|
5656
|
+
"unitPattern-count-few": "{0} Pa"
|
|
5657
5657
|
},
|
|
5658
5658
|
"pressure-hectopascal": {
|
|
5659
5659
|
"displayName": "hPa",
|
|
5660
|
+
"unitPattern-count-other": "{0} hPa",
|
|
5660
5661
|
"unitPattern-count-one": "{0} hPa",
|
|
5661
|
-
"unitPattern-count-few": "{0} hPa"
|
|
5662
|
-
"unitPattern-count-other": "{0} hPa"
|
|
5662
|
+
"unitPattern-count-few": "{0} hPa"
|
|
5663
5663
|
},
|
|
5664
5664
|
"pressure-kilopascal": {
|
|
5665
5665
|
"displayName": "kPa",
|
|
5666
|
-
"unitPattern-count-other": "{0} kPa"
|
|
5666
|
+
"unitPattern-count-other": "{0} kPa",
|
|
5667
|
+
"unitPattern-count-one": "{0} kPa",
|
|
5668
|
+
"unitPattern-count-few": "{0} kPa"
|
|
5667
5669
|
},
|
|
5668
5670
|
"pressure-megapascal": {
|
|
5669
5671
|
"displayName": "MPa",
|
|
5670
|
-
"unitPattern-count-other": "{0} MPa"
|
|
5672
|
+
"unitPattern-count-other": "{0} MPa",
|
|
5673
|
+
"unitPattern-count-one": "{0} MPa",
|
|
5674
|
+
"unitPattern-count-few": "{0} MPa"
|
|
5671
5675
|
},
|
|
5672
5676
|
"speed-kilometer-per-hour": {
|
|
5673
5677
|
"displayName": "km/h",
|
|
5678
|
+
"unitPattern-count-other": "{0} km/h",
|
|
5674
5679
|
"unitPattern-count-one": "{0} km/h",
|
|
5675
|
-
"unitPattern-count-few": "{0} km/h"
|
|
5676
|
-
"unitPattern-count-other": "{0} km/h"
|
|
5680
|
+
"unitPattern-count-few": "{0} km/h"
|
|
5677
5681
|
},
|
|
5678
5682
|
"speed-meter-per-second": {
|
|
5679
5683
|
"displayName": "metri u sekundi",
|
|
5684
|
+
"unitPattern-count-other": "{0} m/s",
|
|
5680
5685
|
"unitPattern-count-one": "{0} m/s",
|
|
5681
|
-
"unitPattern-count-few": "{0} m/s"
|
|
5682
|
-
"unitPattern-count-other": "{0} m/s"
|
|
5686
|
+
"unitPattern-count-few": "{0} m/s"
|
|
5683
5687
|
},
|
|
5684
5688
|
"speed-mile-per-hour": {
|
|
5685
5689
|
"displayName": "milje na sat",
|
|
5690
|
+
"unitPattern-count-other": "{0} mi/h",
|
|
5686
5691
|
"unitPattern-count-one": "{0} mi/h",
|
|
5687
|
-
"unitPattern-count-few": "{0} mi/h"
|
|
5688
|
-
"unitPattern-count-other": "{0} mi/h"
|
|
5692
|
+
"unitPattern-count-few": "{0} mi/h"
|
|
5689
5693
|
},
|
|
5690
5694
|
"speed-knot": {
|
|
5691
5695
|
"displayName": "kn",
|
|
5696
|
+
"unitPattern-count-other": "{0} kn",
|
|
5692
5697
|
"unitPattern-count-one": "{0} kn",
|
|
5693
|
-
"unitPattern-count-few": "{0} kn"
|
|
5694
|
-
"unitPattern-count-other": "{0} kn"
|
|
5698
|
+
"unitPattern-count-few": "{0} kn"
|
|
5695
5699
|
},
|
|
5696
5700
|
"temperature-generic": {
|
|
5697
5701
|
"displayName": "°",
|
|
5702
|
+
"unitPattern-count-other": "{0}°",
|
|
5698
5703
|
"unitPattern-count-one": "{0}°",
|
|
5699
|
-
"unitPattern-count-few": "{0}°"
|
|
5700
|
-
"unitPattern-count-other": "{0}°"
|
|
5704
|
+
"unitPattern-count-few": "{0}°"
|
|
5701
5705
|
},
|
|
5702
5706
|
"temperature-celsius": {
|
|
5703
5707
|
"displayName": "°C",
|
|
5708
|
+
"unitPattern-count-other": "{0}°C",
|
|
5704
5709
|
"unitPattern-count-one": "{0}°C",
|
|
5705
|
-
"unitPattern-count-few": "{0}°C"
|
|
5706
|
-
"unitPattern-count-other": "{0}°C"
|
|
5710
|
+
"unitPattern-count-few": "{0}°C"
|
|
5707
5711
|
},
|
|
5708
5712
|
"temperature-fahrenheit": {
|
|
5709
5713
|
"displayName": "stepeni Farenhajta",
|
|
5714
|
+
"unitPattern-count-other": "{0}°F",
|
|
5710
5715
|
"unitPattern-count-one": "{0}°F",
|
|
5711
|
-
"unitPattern-count-few": "{0}°F"
|
|
5712
|
-
"unitPattern-count-other": "{0}°F"
|
|
5716
|
+
"unitPattern-count-few": "{0}°F"
|
|
5713
5717
|
},
|
|
5714
5718
|
"temperature-kelvin": {
|
|
5715
5719
|
"displayName": "K",
|
|
5720
|
+
"unitPattern-count-other": "{0} K",
|
|
5716
5721
|
"unitPattern-count-one": "{0} K",
|
|
5717
|
-
"unitPattern-count-few": "{0} K"
|
|
5718
|
-
"unitPattern-count-other": "{0} K"
|
|
5722
|
+
"unitPattern-count-few": "{0} K"
|
|
5719
5723
|
},
|
|
5720
5724
|
"torque-pound-force-foot": {
|
|
5721
5725
|
"displayName": "lbf⋅ft",
|
|
5722
|
-
"unitPattern-count-other": "{0} lbf⋅ft"
|
|
5726
|
+
"unitPattern-count-other": "{0} lbf⋅ft",
|
|
5727
|
+
"unitPattern-count-one": "{0} lbf⋅ft",
|
|
5728
|
+
"unitPattern-count-few": "{0} lbf⋅ft"
|
|
5723
5729
|
},
|
|
5724
5730
|
"torque-newton-meter": {
|
|
5725
5731
|
"displayName": "N⋅m",
|
|
5726
|
-
"unitPattern-count-other": "{0} N⋅m"
|
|
5732
|
+
"unitPattern-count-other": "{0} N⋅m",
|
|
5733
|
+
"unitPattern-count-one": "{0} N⋅m",
|
|
5734
|
+
"unitPattern-count-few": "{0} N⋅m"
|
|
5727
5735
|
},
|
|
5728
5736
|
"volume-cubic-kilometer": {
|
|
5729
5737
|
"displayName": "km³",
|
|
5738
|
+
"unitPattern-count-other": "{0} km³",
|
|
5730
5739
|
"unitPattern-count-one": "{0} km³",
|
|
5731
|
-
"unitPattern-count-few": "{0} km³"
|
|
5732
|
-
"unitPattern-count-other": "{0} km³"
|
|
5740
|
+
"unitPattern-count-few": "{0} km³"
|
|
5733
5741
|
},
|
|
5734
5742
|
"volume-cubic-meter": {
|
|
5735
5743
|
"displayName": "m³",
|
|
5736
|
-
"unitPattern-count-one": "{0} m³",
|
|
5737
|
-
"unitPattern-count-few": "{0} m³",
|
|
5738
5744
|
"unitPattern-count-other": "{0} m³",
|
|
5739
|
-
"perUnitPattern": "{0}/m³"
|
|
5745
|
+
"perUnitPattern": "{0}/m³",
|
|
5746
|
+
"unitPattern-count-one": "{0} m³",
|
|
5747
|
+
"unitPattern-count-few": "{0} m³"
|
|
5740
5748
|
},
|
|
5741
5749
|
"volume-cubic-centimeter": {
|
|
5742
5750
|
"displayName": "cm³",
|
|
5743
|
-
"unitPattern-count-one": "{0} cm³",
|
|
5744
|
-
"unitPattern-count-few": "{0} cm³",
|
|
5745
5751
|
"unitPattern-count-other": "{0} cm³",
|
|
5746
|
-
"perUnitPattern": "{0}/cm³"
|
|
5752
|
+
"perUnitPattern": "{0}/cm³",
|
|
5753
|
+
"unitPattern-count-one": "{0} cm³",
|
|
5754
|
+
"unitPattern-count-few": "{0} cm³"
|
|
5747
5755
|
},
|
|
5748
5756
|
"volume-cubic-mile": {
|
|
5749
5757
|
"displayName": "mi³",
|
|
5758
|
+
"unitPattern-count-other": "{0} mi³",
|
|
5750
5759
|
"unitPattern-count-one": "{0} mi³",
|
|
5751
|
-
"unitPattern-count-few": "{0} mi³"
|
|
5752
|
-
"unitPattern-count-other": "{0} mi³"
|
|
5760
|
+
"unitPattern-count-few": "{0} mi³"
|
|
5753
5761
|
},
|
|
5754
5762
|
"volume-cubic-yard": {
|
|
5755
5763
|
"displayName": "yd³",
|
|
5764
|
+
"unitPattern-count-other": "{0} yd³",
|
|
5756
5765
|
"unitPattern-count-one": "{0} yd³",
|
|
5757
|
-
"unitPattern-count-few": "{0} yd³"
|
|
5758
|
-
"unitPattern-count-other": "{0} yd³"
|
|
5766
|
+
"unitPattern-count-few": "{0} yd³"
|
|
5759
5767
|
},
|
|
5760
5768
|
"volume-cubic-foot": {
|
|
5761
5769
|
"displayName": "ft³",
|
|
5770
|
+
"unitPattern-count-other": "{0} ft³",
|
|
5762
5771
|
"unitPattern-count-one": "{0} ft³",
|
|
5763
|
-
"unitPattern-count-few": "{0} ft³"
|
|
5764
|
-
"unitPattern-count-other": "{0} ft³"
|
|
5772
|
+
"unitPattern-count-few": "{0} ft³"
|
|
5765
5773
|
},
|
|
5766
5774
|
"volume-cubic-inch": {
|
|
5767
5775
|
"displayName": "in³",
|
|
5776
|
+
"unitPattern-count-other": "{0} in³",
|
|
5768
5777
|
"unitPattern-count-one": "{0} in³",
|
|
5769
|
-
"unitPattern-count-few": "{0} in³"
|
|
5770
|
-
"unitPattern-count-other": "{0} in³"
|
|
5778
|
+
"unitPattern-count-few": "{0} in³"
|
|
5771
5779
|
},
|
|
5772
5780
|
"volume-megaliter": {
|
|
5773
5781
|
"displayName": "ML",
|
|
5782
|
+
"unitPattern-count-other": "{0} ML",
|
|
5774
5783
|
"unitPattern-count-one": "{0} ML",
|
|
5775
|
-
"unitPattern-count-few": "{0} ML"
|
|
5776
|
-
"unitPattern-count-other": "{0} ML"
|
|
5784
|
+
"unitPattern-count-few": "{0} ML"
|
|
5777
5785
|
},
|
|
5778
5786
|
"volume-hectoliter": {
|
|
5779
5787
|
"displayName": "hL",
|
|
5788
|
+
"unitPattern-count-other": "{0} hL",
|
|
5780
5789
|
"unitPattern-count-one": "{0} hL",
|
|
5781
|
-
"unitPattern-count-few": "{0} hL"
|
|
5782
|
-
"unitPattern-count-other": "{0} hL"
|
|
5790
|
+
"unitPattern-count-few": "{0} hL"
|
|
5783
5791
|
},
|
|
5784
5792
|
"volume-liter": {
|
|
5785
5793
|
"displayName": "litri",
|
|
5786
|
-
"unitPattern-count-one": "{0} l",
|
|
5787
|
-
"unitPattern-count-few": "{0} l",
|
|
5788
5794
|
"unitPattern-count-other": "{0} l",
|
|
5789
|
-
"perUnitPattern": "{0}/l"
|
|
5795
|
+
"perUnitPattern": "{0}/l",
|
|
5796
|
+
"unitPattern-count-one": "{0} l",
|
|
5797
|
+
"unitPattern-count-few": "{0} l"
|
|
5790
5798
|
},
|
|
5791
5799
|
"volume-deciliter": {
|
|
5792
5800
|
"displayName": "dL",
|
|
5801
|
+
"unitPattern-count-other": "{0} dL",
|
|
5793
5802
|
"unitPattern-count-one": "{0} dL",
|
|
5794
|
-
"unitPattern-count-few": "{0} dL"
|
|
5795
|
-
"unitPattern-count-other": "{0} dL"
|
|
5803
|
+
"unitPattern-count-few": "{0} dL"
|
|
5796
5804
|
},
|
|
5797
5805
|
"volume-centiliter": {
|
|
5798
5806
|
"displayName": "cL",
|
|
5807
|
+
"unitPattern-count-other": "{0} cL",
|
|
5799
5808
|
"unitPattern-count-one": "{0} cL",
|
|
5800
|
-
"unitPattern-count-few": "{0} cL"
|
|
5801
|
-
"unitPattern-count-other": "{0} cL"
|
|
5809
|
+
"unitPattern-count-few": "{0} cL"
|
|
5802
5810
|
},
|
|
5803
5811
|
"volume-milliliter": {
|
|
5804
5812
|
"displayName": "mL",
|
|
5813
|
+
"unitPattern-count-other": "{0} mL",
|
|
5805
5814
|
"unitPattern-count-one": "{0} mL",
|
|
5806
|
-
"unitPattern-count-few": "{0} mL"
|
|
5807
|
-
"unitPattern-count-other": "{0} mL"
|
|
5815
|
+
"unitPattern-count-few": "{0} mL"
|
|
5808
5816
|
},
|
|
5809
5817
|
"volume-pint-metric": {
|
|
5810
5818
|
"displayName": "mpt",
|
|
5819
|
+
"unitPattern-count-other": "{0} mpt",
|
|
5811
5820
|
"unitPattern-count-one": "{0} mpt",
|
|
5812
|
-
"unitPattern-count-few": "{0} mpt"
|
|
5813
|
-
"unitPattern-count-other": "{0} mpt"
|
|
5821
|
+
"unitPattern-count-few": "{0} mpt"
|
|
5814
5822
|
},
|
|
5815
5823
|
"volume-cup-metric": {
|
|
5816
5824
|
"displayName": "mcup",
|
|
5825
|
+
"unitPattern-count-other": "{0} mc",
|
|
5817
5826
|
"unitPattern-count-one": "{0} mc",
|
|
5818
|
-
"unitPattern-count-few": "{0} mc"
|
|
5819
|
-
"unitPattern-count-other": "{0} mc"
|
|
5827
|
+
"unitPattern-count-few": "{0} mc"
|
|
5820
5828
|
},
|
|
5821
5829
|
"volume-acre-foot": {
|
|
5822
5830
|
"displayName": "ac ft",
|
|
5831
|
+
"unitPattern-count-other": "{0} ac ft",
|
|
5823
5832
|
"unitPattern-count-one": "{0} ac ft",
|
|
5824
|
-
"unitPattern-count-few": "{0} ac ft"
|
|
5825
|
-
"unitPattern-count-other": "{0} ac ft"
|
|
5833
|
+
"unitPattern-count-few": "{0} ac ft"
|
|
5826
5834
|
},
|
|
5827
5835
|
"volume-bushel": {
|
|
5828
5836
|
"displayName": "bu",
|
|
5829
|
-
"unitPattern-count-other": "{0} bu"
|
|
5837
|
+
"unitPattern-count-other": "{0} bu",
|
|
5838
|
+
"unitPattern-count-one": "{0} bu",
|
|
5839
|
+
"unitPattern-count-few": "{0} bu"
|
|
5830
5840
|
},
|
|
5831
5841
|
"volume-gallon": {
|
|
5832
5842
|
"displayName": "gal",
|
|
5833
|
-
"unitPattern-count-one": "{0} gal",
|
|
5834
|
-
"unitPattern-count-few": "{0} gal",
|
|
5835
5843
|
"unitPattern-count-other": "{0} gal",
|
|
5836
|
-
"perUnitPattern": "{0}/gal"
|
|
5844
|
+
"perUnitPattern": "{0}/gal",
|
|
5845
|
+
"unitPattern-count-one": "{0} gal",
|
|
5846
|
+
"unitPattern-count-few": "{0} gal"
|
|
5837
5847
|
},
|
|
5838
5848
|
"volume-gallon-imperial": {
|
|
5839
5849
|
"displayName": "Imp. gal",
|
|
5840
|
-
"unitPattern-count-one": "{0} gal Imp.",
|
|
5841
|
-
"unitPattern-count-few": "{0} gal Imp.",
|
|
5842
5850
|
"unitPattern-count-other": "{0} gal Imp.",
|
|
5843
|
-
"perUnitPattern": "{0}/gal Imp."
|
|
5851
|
+
"perUnitPattern": "{0}/gal Imp.",
|
|
5852
|
+
"unitPattern-count-one": "{0} gal Imp.",
|
|
5853
|
+
"unitPattern-count-few": "{0} gal Imp."
|
|
5844
5854
|
},
|
|
5845
5855
|
"volume-quart": {
|
|
5846
5856
|
"displayName": "qt",
|
|
5857
|
+
"unitPattern-count-other": "{0} qt",
|
|
5847
5858
|
"unitPattern-count-one": "{0} qt",
|
|
5848
|
-
"unitPattern-count-few": "{0} qt"
|
|
5849
|
-
"unitPattern-count-other": "{0} qt"
|
|
5859
|
+
"unitPattern-count-few": "{0} qt"
|
|
5850
5860
|
},
|
|
5851
5861
|
"volume-pint": {
|
|
5852
5862
|
"displayName": "pt",
|
|
5863
|
+
"unitPattern-count-other": "{0} pt",
|
|
5853
5864
|
"unitPattern-count-one": "{0} pt",
|
|
5854
|
-
"unitPattern-count-few": "{0} pt"
|
|
5855
|
-
"unitPattern-count-other": "{0} pt"
|
|
5865
|
+
"unitPattern-count-few": "{0} pt"
|
|
5856
5866
|
},
|
|
5857
5867
|
"volume-cup": {
|
|
5858
5868
|
"displayName": "šolje",
|
|
5869
|
+
"unitPattern-count-other": "{0} š.",
|
|
5859
5870
|
"unitPattern-count-one": "{0} š.",
|
|
5860
|
-
"unitPattern-count-few": "{0} š."
|
|
5861
|
-
"unitPattern-count-other": "{0} š."
|
|
5871
|
+
"unitPattern-count-few": "{0} š."
|
|
5862
5872
|
},
|
|
5863
5873
|
"volume-fluid-ounce": {
|
|
5864
5874
|
"displayName": "fl oz",
|
|
5875
|
+
"unitPattern-count-other": "{0} fl oz",
|
|
5865
5876
|
"unitPattern-count-one": "{0} fl oz",
|
|
5866
|
-
"unitPattern-count-few": "{0} fl oz"
|
|
5867
|
-
"unitPattern-count-other": "{0} fl oz"
|
|
5877
|
+
"unitPattern-count-few": "{0} fl oz"
|
|
5868
5878
|
},
|
|
5869
5879
|
"volume-fluid-ounce-imperial": {
|
|
5870
5880
|
"displayName": "Imp. fl oz",
|
|
5871
|
-
"unitPattern-count-other": "{0} fl oz Imp."
|
|
5881
|
+
"unitPattern-count-other": "{0} fl oz Imp.",
|
|
5882
|
+
"unitPattern-count-one": "{0} fl oz Imp.",
|
|
5883
|
+
"unitPattern-count-few": "{0} fl oz Imp."
|
|
5872
5884
|
},
|
|
5873
5885
|
"volume-tablespoon": {
|
|
5874
5886
|
"displayName": "kaš.",
|
|
5887
|
+
"unitPattern-count-other": "{0} kaš.",
|
|
5875
5888
|
"unitPattern-count-one": "{0} kaš.",
|
|
5876
|
-
"unitPattern-count-few": "{0} kaš."
|
|
5877
|
-
"unitPattern-count-other": "{0} kaš."
|
|
5889
|
+
"unitPattern-count-few": "{0} kaš."
|
|
5878
5890
|
},
|
|
5879
5891
|
"volume-teaspoon": {
|
|
5880
5892
|
"displayName": "kašič.",
|
|
5893
|
+
"unitPattern-count-other": "{0} kašič.",
|
|
5881
5894
|
"unitPattern-count-one": "{0} kašič.",
|
|
5882
|
-
"unitPattern-count-few": "{0} kašič."
|
|
5883
|
-
"unitPattern-count-other": "{0} kašič."
|
|
5895
|
+
"unitPattern-count-few": "{0} kašič."
|
|
5884
5896
|
},
|
|
5885
5897
|
"volume-barrel": {
|
|
5886
5898
|
"displayName": "bbl",
|
|
5887
|
-
"unitPattern-count-other": "{0} bbl"
|
|
5899
|
+
"unitPattern-count-other": "{0} bbl",
|
|
5900
|
+
"unitPattern-count-one": "{0} bbl",
|
|
5901
|
+
"unitPattern-count-few": "{0} bbl"
|
|
5888
5902
|
},
|
|
5889
5903
|
"volume-dessert-spoon": {
|
|
5890
5904
|
"displayName": "dstspn",
|
|
5891
|
-
"unitPattern-count-other": "{0} dstspn"
|
|
5905
|
+
"unitPattern-count-other": "{0} dstspn",
|
|
5906
|
+
"unitPattern-count-one": "{0} dstspn",
|
|
5907
|
+
"unitPattern-count-few": "{0} dstspn"
|
|
5892
5908
|
},
|
|
5893
5909
|
"volume-dessert-spoon-imperial": {
|
|
5894
5910
|
"displayName": "dstspn Imp",
|
|
5895
|
-
"unitPattern-count-other": "{0} dstspn Imp"
|
|
5911
|
+
"unitPattern-count-other": "{0} dstspn Imp",
|
|
5912
|
+
"unitPattern-count-one": "{0} dstspn Imp",
|
|
5913
|
+
"unitPattern-count-few": "{0} dstspn Imp"
|
|
5896
5914
|
},
|
|
5897
5915
|
"volume-drop": {
|
|
5898
5916
|
"displayName": "kap",
|
|
5917
|
+
"unitPattern-count-other": "{0} kapi",
|
|
5899
5918
|
"unitPattern-count-one": "{0} kap",
|
|
5900
|
-
"unitPattern-count-few": "{0} kapi"
|
|
5901
|
-
"unitPattern-count-other": "{0} kapi"
|
|
5919
|
+
"unitPattern-count-few": "{0} kapi"
|
|
5902
5920
|
},
|
|
5903
5921
|
"volume-dram": {
|
|
5904
5922
|
"displayName": "dram tečnosti",
|
|
5905
|
-
"unitPattern-count-other": "{0} dram fl"
|
|
5923
|
+
"unitPattern-count-other": "{0} dram fl",
|
|
5924
|
+
"unitPattern-count-one": "{0} dram fl",
|
|
5925
|
+
"unitPattern-count-few": "{0} dram fl"
|
|
5906
5926
|
},
|
|
5907
5927
|
"volume-jigger": {
|
|
5908
5928
|
"displayName": "džiger",
|
|
5909
|
-
"unitPattern-count-other": "{0} jigger"
|
|
5929
|
+
"unitPattern-count-other": "{0} jigger",
|
|
5930
|
+
"unitPattern-count-one": "{0} jigger",
|
|
5931
|
+
"unitPattern-count-few": "{0} jigger"
|
|
5910
5932
|
},
|
|
5911
5933
|
"volume-pinch": {
|
|
5912
5934
|
"displayName": "prstohvat",
|
|
5913
|
-
"unitPattern-count-other": "{0} pinch"
|
|
5935
|
+
"unitPattern-count-other": "{0} pinch",
|
|
5936
|
+
"unitPattern-count-one": "{0} pinch",
|
|
5937
|
+
"unitPattern-count-few": "{0} pinch"
|
|
5914
5938
|
},
|
|
5915
5939
|
"volume-quart-imperial": {
|
|
5916
5940
|
"displayName": "qt Imp",
|
|
5917
|
-
"unitPattern-count-other": "{0} qt Imp."
|
|
5941
|
+
"unitPattern-count-other": "{0} qt Imp.",
|
|
5942
|
+
"unitPattern-count-one": "{0} qt Imp.",
|
|
5943
|
+
"unitPattern-count-few": "{0} qt Imp."
|
|
5918
5944
|
},
|
|
5919
5945
|
"coordinateUnit": {
|
|
5920
5946
|
"displayName": "pravac",
|
|
@@ -5922,6 +5948,30 @@
|
|
|
5922
5948
|
"north": "{0}S",
|
|
5923
5949
|
"south": "{0}J",
|
|
5924
5950
|
"west": "{0}Z"
|
|
5951
|
+
},
|
|
5952
|
+
"energy-foodcalorie": {
|
|
5953
|
+
"displayName": "Cal",
|
|
5954
|
+
"unitPattern-count-one": "{0} Cal",
|
|
5955
|
+
"unitPattern-count-few": "{0} Cal",
|
|
5956
|
+
"unitPattern-count-other": "{0} Cal"
|
|
5957
|
+
},
|
|
5958
|
+
"graphics-dot-per-centimeter": {
|
|
5959
|
+
"displayName": "dpcm",
|
|
5960
|
+
"unitPattern-count-one": "{0} ppcm",
|
|
5961
|
+
"unitPattern-count-few": "{0} ppcm",
|
|
5962
|
+
"unitPattern-count-other": "{0} dpcm"
|
|
5963
|
+
},
|
|
5964
|
+
"graphics-dot-per-inch": {
|
|
5965
|
+
"displayName": "dpi",
|
|
5966
|
+
"unitPattern-count-one": "{0} ppi",
|
|
5967
|
+
"unitPattern-count-few": "{0} ppi",
|
|
5968
|
+
"unitPattern-count-other": "{0} dpi"
|
|
5969
|
+
},
|
|
5970
|
+
"graphics-dot": {
|
|
5971
|
+
"displayName": "tačka",
|
|
5972
|
+
"unitPattern-count-one": "{0} tačka",
|
|
5973
|
+
"unitPattern-count-few": "{0} tačke",
|
|
5974
|
+
"unitPattern-count-other": "{0} tačaka"
|
|
5925
5975
|
}
|
|
5926
5976
|
}
|
|
5927
5977
|
},
|
|
@@ -5931,42 +5981,42 @@
|
|
|
5931
5981
|
"plusSign": "+⁺₊➕﬩﹢+"
|
|
5932
5982
|
},
|
|
5933
5983
|
"currencyFormat-sap-short": {
|
|
5984
|
+
"1000-other": "0 hilj'.' ¤",
|
|
5985
|
+
"10000-other": "00 hilj'.' ¤",
|
|
5986
|
+
"100000-other": "000 hilj'.' ¤",
|
|
5987
|
+
"1000000-other": "0 mil'.' ¤",
|
|
5988
|
+
"10000000-other": "00 mil'.' ¤",
|
|
5989
|
+
"100000000-other": "000 mil'.' ¤",
|
|
5990
|
+
"1000000000-other": "0 mlrd'.' ¤",
|
|
5991
|
+
"10000000000-other": "00 mlrd'.' ¤",
|
|
5992
|
+
"100000000000-other": "000 mlrd'.' ¤",
|
|
5993
|
+
"1000000000000-other": "0 bil'.' ¤",
|
|
5994
|
+
"10000000000000-other": "00 bil'.' ¤",
|
|
5995
|
+
"100000000000000-other": "000 bil'.' ¤",
|
|
5934
5996
|
"1000-one": "0 hilj'.' ¤",
|
|
5935
5997
|
"1000-few": "0 hilj'.' ¤",
|
|
5936
|
-
"1000-other": "0 hilj'.' ¤",
|
|
5937
5998
|
"10000-one": "00 hilj'.' ¤",
|
|
5938
5999
|
"10000-few": "00 hilj'.' ¤",
|
|
5939
|
-
"10000-other": "00 hilj'.' ¤",
|
|
5940
6000
|
"100000-one": "000 hilj'.' ¤",
|
|
5941
6001
|
"100000-few": "000 hilj'.' ¤",
|
|
5942
|
-
"100000-other": "000 hilj'.' ¤",
|
|
5943
6002
|
"1000000-one": "0 mil'.' ¤",
|
|
5944
6003
|
"1000000-few": "0 mil'.' ¤",
|
|
5945
|
-
"1000000-other": "0 mil'.' ¤",
|
|
5946
6004
|
"10000000-one": "00 mil'.' ¤",
|
|
5947
6005
|
"10000000-few": "00 mil'.' ¤",
|
|
5948
|
-
"10000000-other": "00 mil'.' ¤",
|
|
5949
6006
|
"100000000-one": "000 mil'.' ¤",
|
|
5950
6007
|
"100000000-few": "000 mil'.' ¤",
|
|
5951
|
-
"100000000-other": "000 mil'.' ¤",
|
|
5952
6008
|
"1000000000-one": "0 mlrd'.' ¤",
|
|
5953
6009
|
"1000000000-few": "0 mlrd'.' ¤",
|
|
5954
|
-
"1000000000-other": "0 mlrd'.' ¤",
|
|
5955
6010
|
"10000000000-one": "00 mlrd'.' ¤",
|
|
5956
6011
|
"10000000000-few": "00 mlrd'.' ¤",
|
|
5957
|
-
"10000000000-other": "00 mlrd'.' ¤",
|
|
5958
6012
|
"100000000000-one": "000 mlrd'.' ¤",
|
|
5959
6013
|
"100000000000-few": "000 mlrd'.' ¤",
|
|
5960
|
-
"100000000000-other": "000 mlrd'.' ¤",
|
|
5961
6014
|
"1000000000000-one": "0 bil'.' ¤",
|
|
5962
6015
|
"1000000000000-few": "0 bil'.' ¤",
|
|
5963
|
-
"1000000000000-other": "0 bil'.' ¤",
|
|
5964
6016
|
"10000000000000-one": "00 bil'.' ¤",
|
|
5965
6017
|
"10000000000000-few": "00 bil'.' ¤",
|
|
5966
|
-
"10000000000000-other": "00 bil'.' ¤",
|
|
5967
6018
|
"100000000000000-one": "000 bil'.' ¤",
|
|
5968
|
-
"100000000000000-few": "000 bil'.' ¤"
|
|
5969
|
-
"100000000000000-other": "000 bil'.' ¤"
|
|
6019
|
+
"100000000000000-few": "000 bil'.' ¤"
|
|
5970
6020
|
},
|
|
5971
6021
|
"currencyDigits": {
|
|
5972
6022
|
"ADP": 0,
|
|
@@ -6038,41 +6088,56 @@
|
|
|
6038
6088
|
},
|
|
6039
6089
|
"eras-gregorian": {
|
|
6040
6090
|
"0": {
|
|
6091
|
+
"_code": "gregory-inverse",
|
|
6092
|
+
"_aliases": "bc bce",
|
|
6041
6093
|
"_end": "0-12-31"
|
|
6042
6094
|
},
|
|
6043
6095
|
"1": {
|
|
6096
|
+
"_code": "gregory",
|
|
6097
|
+
"_aliases": "ad ce",
|
|
6044
6098
|
"_start": "1-01-01"
|
|
6045
6099
|
}
|
|
6046
6100
|
},
|
|
6047
6101
|
"eras-islamic": {
|
|
6048
6102
|
"0": {
|
|
6103
|
+
"_code": "islamic",
|
|
6104
|
+
"_aliases": "ah",
|
|
6049
6105
|
"_start": "622-7-15"
|
|
6050
6106
|
}
|
|
6051
6107
|
},
|
|
6052
6108
|
"eras-persian": {
|
|
6053
6109
|
"0": {
|
|
6110
|
+
"_code": "persian",
|
|
6111
|
+
"_aliases": "ap",
|
|
6054
6112
|
"_start": "622-01-01"
|
|
6055
6113
|
}
|
|
6056
6114
|
},
|
|
6057
6115
|
"eras-buddhist": {
|
|
6058
6116
|
"0": {
|
|
6117
|
+
"_code": "buddhist",
|
|
6118
|
+
"_aliases": "be",
|
|
6059
6119
|
"_start": "-542-01-01"
|
|
6060
6120
|
}
|
|
6061
6121
|
},
|
|
6062
6122
|
"eras-japanese": {
|
|
6063
6123
|
"232": {
|
|
6124
|
+
"_code": "meiji",
|
|
6064
6125
|
"_start": "1868-9-8"
|
|
6065
6126
|
},
|
|
6066
6127
|
"233": {
|
|
6128
|
+
"_code": "taisho",
|
|
6067
6129
|
"_start": "1912-7-30"
|
|
6068
6130
|
},
|
|
6069
6131
|
"234": {
|
|
6132
|
+
"_code": "showa",
|
|
6070
6133
|
"_start": "1926-12-25"
|
|
6071
6134
|
},
|
|
6072
6135
|
"235": {
|
|
6136
|
+
"_code": "heisei",
|
|
6073
6137
|
"_start": "1989-1-8"
|
|
6074
6138
|
},
|
|
6075
6139
|
"236": {
|
|
6140
|
+
"_code": "reiwa",
|
|
6076
6141
|
"_start": "2019-5-1"
|
|
6077
6142
|
}
|
|
6078
6143
|
},
|