@openui5/sap.ui.integration 1.96.2 → 1.98.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/.reuse/dep5 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +16 -22
- package/src/sap/ui/integration/ActionDefinition.js +2 -2
- package/src/sap/ui/integration/Designtime.js +2 -2
- package/src/sap/ui/integration/Extension.js +2 -2
- package/src/sap/ui/integration/Host.js +38 -2
- package/src/sap/ui/integration/bindingFeatures/DateRange.js +1 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -50
- package/src/sap/ui/integration/cards/AnalyticalContent.js +8 -9
- package/src/sap/ui/integration/cards/AnalyticalContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +5 -3
- package/src/sap/ui/integration/cards/AnalyticsCloudContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +56 -6
- package/src/sap/ui/integration/cards/BaseContentRenderer.js +2 -2
- package/src/sap/ui/integration/cards/BaseListContent.js +39 -69
- package/src/sap/ui/integration/cards/CalendarContent.js +16 -12
- package/src/sap/ui/integration/cards/CalendarContentRenderer.js +2 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +3 -2
- package/src/sap/ui/integration/cards/ComponentContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +2 -2
- package/src/sap/ui/integration/cards/Header.js +3 -3
- package/src/sap/ui/integration/cards/ListContent.js +67 -23
- package/src/sap/ui/integration/cards/ListContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/NumericHeader.js +3 -3
- package/src/sap/ui/integration/cards/ObjectContent.js +353 -228
- package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
- package/src/sap/ui/integration/cards/TableContent.js +6 -10
- package/src/sap/ui/integration/cards/TableContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/TimelineContent.js +10 -14
- package/src/sap/ui/integration/cards/TimelineContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +6 -2
- package/src/sap/ui/integration/cards/WebPageContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/actions/BaseAction.js +89 -0
- package/src/sap/ui/integration/cards/actions/CardActions.js +472 -0
- package/src/sap/ui/integration/cards/actions/CustomAction.js +31 -0
- package/src/sap/ui/integration/cards/actions/DateChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/MonthChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/NavigationAction.js +63 -0
- package/src/sap/ui/integration/cards/actions/SubmitAction.js +89 -0
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +10 -10
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +7 -12
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/hostConfig.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +2 -2
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +63 -58
- package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +34 -13
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +34 -4
- package/src/sap/ui/integration/controls/ActionsStrip.js +3 -3
- package/src/sap/ui/integration/controls/ActionsToolbar.js +4 -5
- package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +2 -2
- package/src/sap/ui/integration/controls/ListContentItemRenderer.js +1 -1
- package/src/sap/ui/integration/controls/Microchart.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegend.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementBase.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCard.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCardEditor.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +15 -11
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +13 -19
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +16 -12
- package/src/sap/ui/integration/designtime/baseEditor/layout/Form.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.fragment.xml +1 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +7 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.fragment.xml +15 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +116 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/BaseDefaultValidatorModules.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/StylesheetManager.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsPatternMatch.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +18 -3
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/index.js +13 -2
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +57 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +0 -4
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +41 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +62 -4
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/util/CommonPatterns.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/validator/IsPatternMatchList.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +53 -4
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +31 -11
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +18 -1
- package/src/sap/ui/integration/editor/Editor.js +219 -209
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +43 -32
- package/src/sap/ui/integration/editor/Extension.js +2 -2
- package/src/sap/ui/integration/editor/Manifest.js +3 -3
- package/src/sap/ui/integration/editor/Merger.js +1 -19
- package/src/sap/ui/integration/editor/Settings.js +10 -6
- package/src/sap/ui/integration/editor/css/Editor.css +22 -0
- package/src/sap/ui/integration/editor/fields/BaseField.js +9 -12
- package/src/sap/ui/integration/editor/fields/BooleanField.js +4 -2
- package/src/sap/ui/integration/editor/fields/DateField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DestinationField.js +2 -2
- package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -2
- package/src/sap/ui/integration/editor/fields/ListField.js +274 -62
- package/src/sap/ui/integration/editor/fields/NumberField.js +2 -2
- package/src/sap/ui/integration/editor/fields/StringField.js +85 -53
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +10 -30
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +2 -4
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +2 -4
- package/src/sap/ui/integration/editor/languages.json +2 -2
- package/src/sap/ui/integration/formatters/DateTimeFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/IconFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/NumberFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/TextFormatter.js +1 -1
- package/src/sap/ui/integration/library-bootstrap.js +1 -1
- package/src/sap/ui/integration/library.js +21 -4
- package/src/sap/ui/integration/messagebundle_ar.properties +4 -0
- package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +4 -0
- package/src/sap/ui/integration/messagebundle_da.properties +4 -0
- package/src/sap/ui/integration/messagebundle_de.properties +4 -0
- package/src/sap/ui/integration/messagebundle_el.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +55 -81
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
- package/src/sap/ui/integration/messagebundle_et.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
- package/src/sap/ui/integration/messagebundle_id.properties +4 -0
- package/src/sap/ui/integration/messagebundle_it.properties +4 -0
- package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
- package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
- package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_no.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_th.properties +4 -0
- package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
- package/src/sap/ui/integration/model/ContextModel.js +3 -3
- package/src/sap/ui/integration/model/ObservableModel.js +2 -2
- package/src/sap/ui/integration/sap-ui-integration-config.js +1 -1
- package/src/sap/ui/integration/sap-ui-integration-define-nojQuery.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +195 -8
- package/src/sap/ui/integration/services/Data.js +1 -1
- package/src/sap/ui/integration/services/Navigation.js +1 -1
- package/src/sap/ui/integration/services/Service.js +1 -1
- package/src/sap/ui/integration/themes/base/CalendarContent.less +31 -4
- package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
- package/src/sap/ui/integration/themes/base/library.source.less +1 -1
- package/src/sap/ui/integration/themes/sap_hcb/library.source.less +1 -1
- package/src/sap/ui/integration/thirdparty/adaptive-expressions.js +1 -0
- package/src/sap/ui/integration/thirdparty/adaptivecards-templating.js +660 -952
- package/src/sap/ui/integration/thirdparty/markdown-it.js +8340 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +27 -102
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js.map +1 -0
- package/src/sap/ui/integration/util/BaseFactory.js +2 -2
- package/src/sap/ui/integration/util/BindingHelper.js +6 -4
- package/src/sap/ui/integration/util/BindingResolver.js +6 -5
- package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +7 -18
- package/src/sap/ui/integration/util/CardObserver.js +2 -2
- package/src/sap/ui/integration/util/ContentFactory.js +5 -9
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +296 -0
- package/src/sap/ui/integration/util/DataProvider.js +11 -2
- package/src/sap/ui/integration/util/DataProviderFactory.js +49 -12
- package/src/sap/ui/integration/util/Destinations.js +2 -2
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +2 -2
- package/src/sap/ui/integration/util/HeaderFactory.js +3 -3
- package/src/sap/ui/integration/util/JSONBindingHelper.js +3 -3
- package/src/sap/ui/integration/util/LoadingProvider.js +2 -2
- package/src/sap/ui/integration/util/Manifest.js +4 -4
- package/src/sap/ui/integration/util/ManifestResolver.js +99 -0
- package/src/sap/ui/integration/util/ParameterMap.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +88 -50
- package/src/sap/ui/integration/util/ServiceDataProvider.js +2 -2
- package/src/sap/ui/integration/util/ServiceManager.js +2 -2
- package/src/sap/ui/integration/util/SkeletonCard.js +50 -0
- package/src/sap/ui/integration/util/Utils.js +74 -2
- package/src/sap/ui/integration/util/loadCardEditor.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +67 -20
- package/src/sap/ui/integration/widgets/CardRenderer.js +1 -7
- package/src/sap-ui-integration-card-editor.js +1 -1
- package/src/sap-ui-integration-editor.js +1 -1
- package/src/sap-ui-integration.js +1 -1
- package/ui5.yaml +288 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt +0 -27
- package/src/sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +0 -212
- package/src/sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json +0 -4996
- package/src/sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json +0 -5498
- package/src/sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json +0 -4888
- package/src/sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json +0 -4916
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json +0 -4917
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json +0 -4970
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json +0 -4962
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json +0 -4912
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json +0 -4967
- package/src/sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json +0 -5008
- package/src/sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json +0 -4997
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json +0 -5378
- package/src/sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json +0 -4829
- package/src/sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json +0 -4919
- package/src/sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json +0 -4856
- package/src/sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json +0 -4658
- package/src/sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json +0 -4830
- package/src/sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json +0 -4725
- package/src/sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json +0 -4738
- package/src/sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json +0 -5481
- package/src/sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json +0 -5112
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json +0 -4515
- package/src/sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json +0 -5176
- package/src/sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json +0 -4805
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json +0 -4940
- package/src/sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json +0 -5090
- package/src/sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json +0 -5370
- package/src/sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json +0 -5340
- package/src/sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json +0 -5126
- package/src/sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json +0 -5011
- package/src/sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json +0 -4797
- package/src/sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json +0 -5353
- package/src/sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json +0 -4673
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -336
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -221
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +0 -169
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/webcomponents-loader.js +0 -185
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json +0 -4632
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json +0 -4728
- package/src/sap/ui/integration/util/CardActions.js +0 -551
|
@@ -1,4640 +0,0 @@
|
|
|
1
|
-
{
|
|
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
|
-
"languages": {
|
|
4
|
-
"aa": "阿法尔语",
|
|
5
|
-
"ab": "阿布哈西亚语",
|
|
6
|
-
"ace": "亚齐语",
|
|
7
|
-
"ach": "阿乔利语",
|
|
8
|
-
"ada": "阿当梅语",
|
|
9
|
-
"ady": "阿迪格语",
|
|
10
|
-
"ae": "阿维斯塔语",
|
|
11
|
-
"af": "南非荷兰语",
|
|
12
|
-
"afh": "阿弗里希利语",
|
|
13
|
-
"agq": "亚罕语",
|
|
14
|
-
"ain": "阿伊努语",
|
|
15
|
-
"ak": "阿肯语",
|
|
16
|
-
"akk": "阿卡德语",
|
|
17
|
-
"ale": "阿留申语",
|
|
18
|
-
"alt": "南阿尔泰语",
|
|
19
|
-
"am": "阿姆哈拉语",
|
|
20
|
-
"an": "阿拉贡语",
|
|
21
|
-
"ang": "古英语",
|
|
22
|
-
"anp": "昂加语",
|
|
23
|
-
"ar": "阿拉伯语",
|
|
24
|
-
"ar_001": "现代标准阿拉伯语",
|
|
25
|
-
"arc": "阿拉米语",
|
|
26
|
-
"arn": "马普切语",
|
|
27
|
-
"arp": "阿拉帕霍语",
|
|
28
|
-
"ars": "纳吉迪阿拉伯语",
|
|
29
|
-
"arw": "阿拉瓦克语",
|
|
30
|
-
"as": "阿萨姆语",
|
|
31
|
-
"asa": "帕雷语",
|
|
32
|
-
"ast": "阿斯图里亚斯语",
|
|
33
|
-
"av": "阿瓦尔语",
|
|
34
|
-
"awa": "阿瓦德语",
|
|
35
|
-
"ay": "艾马拉语",
|
|
36
|
-
"az": "阿塞拜疆语",
|
|
37
|
-
"az_alt-short": "阿塞语",
|
|
38
|
-
"az_Arab": "南阿塞拜疆语",
|
|
39
|
-
"ba": "巴什基尔语",
|
|
40
|
-
"bal": "俾路支语",
|
|
41
|
-
"ban": "巴厘语",
|
|
42
|
-
"bas": "巴萨语",
|
|
43
|
-
"bax": "巴姆穆语",
|
|
44
|
-
"bbj": "戈马拉语",
|
|
45
|
-
"be": "白俄罗斯语",
|
|
46
|
-
"bej": "贝沙语",
|
|
47
|
-
"bem": "本巴语",
|
|
48
|
-
"bez": "贝纳语",
|
|
49
|
-
"bfd": "巴非特语",
|
|
50
|
-
"bg": "保加利亚语",
|
|
51
|
-
"bgn": "西俾路支语",
|
|
52
|
-
"bho": "博杰普尔语",
|
|
53
|
-
"bi": "比斯拉马语",
|
|
54
|
-
"bik": "比科尔语",
|
|
55
|
-
"bin": "比尼语",
|
|
56
|
-
"bkm": "科姆语",
|
|
57
|
-
"bla": "西克西卡语",
|
|
58
|
-
"bm": "班巴拉语",
|
|
59
|
-
"bn": "孟加拉语",
|
|
60
|
-
"bo": "藏语",
|
|
61
|
-
"br": "布列塔尼语",
|
|
62
|
-
"bra": "布拉杰语",
|
|
63
|
-
"brx": "博多语",
|
|
64
|
-
"bs": "波斯尼亚语",
|
|
65
|
-
"bss": "阿库色语",
|
|
66
|
-
"bua": "布里亚特语",
|
|
67
|
-
"bug": "布吉语",
|
|
68
|
-
"bum": "布鲁语",
|
|
69
|
-
"byn": "比林语",
|
|
70
|
-
"byv": "梅敦巴语",
|
|
71
|
-
"ca": "加泰罗尼亚语",
|
|
72
|
-
"cad": "卡多语",
|
|
73
|
-
"car": "加勒比语",
|
|
74
|
-
"cay": "卡尤加语",
|
|
75
|
-
"cch": "阿灿语",
|
|
76
|
-
"ccp": "查克玛语",
|
|
77
|
-
"ce": "车臣语",
|
|
78
|
-
"ceb": "宿务语",
|
|
79
|
-
"cgg": "奇加语",
|
|
80
|
-
"ch": "查莫罗语",
|
|
81
|
-
"chb": "奇布查语",
|
|
82
|
-
"chg": "察合台语",
|
|
83
|
-
"chk": "楚克语",
|
|
84
|
-
"chm": "马里语",
|
|
85
|
-
"chn": "奇努克混合语",
|
|
86
|
-
"cho": "乔克托语",
|
|
87
|
-
"chp": "奇佩维安语",
|
|
88
|
-
"chr": "切罗基语",
|
|
89
|
-
"chy": "夏延语",
|
|
90
|
-
"ckb": "中库尔德语",
|
|
91
|
-
"co": "科西嘉语",
|
|
92
|
-
"cop": "科普特语",
|
|
93
|
-
"cr": "克里族语",
|
|
94
|
-
"crh": "克里米亚土耳其语",
|
|
95
|
-
"crs": "塞舌尔克里奥尔语",
|
|
96
|
-
"cs": "捷克语",
|
|
97
|
-
"csb": "卡舒比语",
|
|
98
|
-
"cu": "教会斯拉夫语",
|
|
99
|
-
"cv": "楚瓦什语",
|
|
100
|
-
"cy": "威尔士语",
|
|
101
|
-
"da": "丹麦语",
|
|
102
|
-
"dak": "达科他语",
|
|
103
|
-
"dar": "达尔格瓦语",
|
|
104
|
-
"dav": "台塔语",
|
|
105
|
-
"de": "德语",
|
|
106
|
-
"de_AT": "奥地利德语",
|
|
107
|
-
"de_CH": "瑞士高地德语",
|
|
108
|
-
"del": "特拉华语",
|
|
109
|
-
"den": "史拉维语",
|
|
110
|
-
"dgr": "多格里布语",
|
|
111
|
-
"din": "丁卡语",
|
|
112
|
-
"dje": "哲尔马语",
|
|
113
|
-
"doi": "多格拉语",
|
|
114
|
-
"dsb": "下索布语",
|
|
115
|
-
"dua": "都阿拉语",
|
|
116
|
-
"dum": "中古荷兰语",
|
|
117
|
-
"dv": "迪维希语",
|
|
118
|
-
"dyo": "朱拉语",
|
|
119
|
-
"dyu": "迪尤拉语",
|
|
120
|
-
"dz": "宗卡语",
|
|
121
|
-
"dzg": "达扎葛语",
|
|
122
|
-
"ebu": "恩布语",
|
|
123
|
-
"ee": "埃维语",
|
|
124
|
-
"efi": "埃菲克语",
|
|
125
|
-
"egy": "古埃及语",
|
|
126
|
-
"eka": "艾卡朱克语",
|
|
127
|
-
"el": "希腊语",
|
|
128
|
-
"elx": "埃兰语",
|
|
129
|
-
"en": "英语",
|
|
130
|
-
"en_AU": "澳大利亚英语",
|
|
131
|
-
"en_CA": "加拿大英语",
|
|
132
|
-
"en_GB": "英国英语",
|
|
133
|
-
"en_GB-alt-short": "英式英语",
|
|
134
|
-
"en_US": "美国英语",
|
|
135
|
-
"en_US-alt-short": "美式英语",
|
|
136
|
-
"enm": "中古英语",
|
|
137
|
-
"eo": "世界语",
|
|
138
|
-
"es": "西班牙语",
|
|
139
|
-
"es_419": "拉丁美洲西班牙语",
|
|
140
|
-
"es_ES": "欧洲西班牙语",
|
|
141
|
-
"es_MX": "墨西哥西班牙语",
|
|
142
|
-
"et": "爱沙尼亚语",
|
|
143
|
-
"eu": "巴斯克语",
|
|
144
|
-
"ewo": "旺杜语",
|
|
145
|
-
"fa": "波斯语",
|
|
146
|
-
"fan": "芳格语",
|
|
147
|
-
"fat": "芳蒂语",
|
|
148
|
-
"ff": "富拉语",
|
|
149
|
-
"fi": "芬兰语",
|
|
150
|
-
"fil": "菲律宾语",
|
|
151
|
-
"fj": "斐济语",
|
|
152
|
-
"fo": "法罗语",
|
|
153
|
-
"fon": "丰语",
|
|
154
|
-
"fr": "法语",
|
|
155
|
-
"fr_CA": "加拿大法语",
|
|
156
|
-
"fr_CH": "瑞士法语",
|
|
157
|
-
"frc": "卡真法语",
|
|
158
|
-
"frm": "中古法语",
|
|
159
|
-
"fro": "古法语",
|
|
160
|
-
"frr": "北弗里西亚语",
|
|
161
|
-
"frs": "东弗里西亚语",
|
|
162
|
-
"fur": "弗留利语",
|
|
163
|
-
"fy": "西弗里西亚语",
|
|
164
|
-
"ga": "爱尔兰语",
|
|
165
|
-
"gaa": "加族语",
|
|
166
|
-
"gag": "加告兹语",
|
|
167
|
-
"gan": "赣语",
|
|
168
|
-
"gay": "迦约语",
|
|
169
|
-
"gba": "格巴亚语",
|
|
170
|
-
"gd": "苏格兰盖尔语",
|
|
171
|
-
"gez": "吉兹语",
|
|
172
|
-
"gil": "吉尔伯特语",
|
|
173
|
-
"gl": "加利西亚语",
|
|
174
|
-
"gmh": "中古高地德语",
|
|
175
|
-
"gn": "瓜拉尼语",
|
|
176
|
-
"goh": "古高地德语",
|
|
177
|
-
"gon": "冈德语",
|
|
178
|
-
"gor": "哥伦打洛语",
|
|
179
|
-
"got": "哥特语",
|
|
180
|
-
"grb": "格列博语",
|
|
181
|
-
"grc": "古希腊语",
|
|
182
|
-
"gsw": "瑞士德语",
|
|
183
|
-
"gu": "古吉拉特语",
|
|
184
|
-
"guz": "古西语",
|
|
185
|
-
"gv": "马恩语",
|
|
186
|
-
"gwi": "哥威迅语",
|
|
187
|
-
"ha": "豪萨语",
|
|
188
|
-
"hai": "海达语",
|
|
189
|
-
"hak": "客家语",
|
|
190
|
-
"haw": "夏威夷语",
|
|
191
|
-
"he": "希伯来语",
|
|
192
|
-
"hi": "印地语",
|
|
193
|
-
"hil": "希利盖农语",
|
|
194
|
-
"hit": "赫梯语",
|
|
195
|
-
"hmn": "苗语",
|
|
196
|
-
"ho": "希里莫图语",
|
|
197
|
-
"hr": "克罗地亚语",
|
|
198
|
-
"hsb": "上索布语",
|
|
199
|
-
"hsn": "湘语",
|
|
200
|
-
"ht": "海地克里奥尔语",
|
|
201
|
-
"hu": "匈牙利语",
|
|
202
|
-
"hup": "胡帕语",
|
|
203
|
-
"hy": "亚美尼亚语",
|
|
204
|
-
"hz": "赫雷罗语",
|
|
205
|
-
"ia": "国际语",
|
|
206
|
-
"iba": "伊班语",
|
|
207
|
-
"ibb": "伊比比奥语",
|
|
208
|
-
"id": "印度尼西亚语",
|
|
209
|
-
"ie": "国际文字(E)",
|
|
210
|
-
"ig": "伊博语",
|
|
211
|
-
"ii": "四川彝语",
|
|
212
|
-
"ik": "伊努皮克语",
|
|
213
|
-
"ilo": "伊洛卡诺语",
|
|
214
|
-
"inh": "印古什语",
|
|
215
|
-
"io": "伊多语",
|
|
216
|
-
"is": "冰岛语",
|
|
217
|
-
"it": "意大利语",
|
|
218
|
-
"iu": "因纽特语",
|
|
219
|
-
"ja": "日语",
|
|
220
|
-
"jbo": "逻辑语",
|
|
221
|
-
"jgo": "恩艮巴语",
|
|
222
|
-
"jmc": "马切姆语",
|
|
223
|
-
"jpr": "犹太波斯语",
|
|
224
|
-
"jrb": "犹太阿拉伯语",
|
|
225
|
-
"jv": "爪哇语",
|
|
226
|
-
"ka": "格鲁吉亚语",
|
|
227
|
-
"kaa": "卡拉卡尔帕克语",
|
|
228
|
-
"kab": "卡拜尔语",
|
|
229
|
-
"kac": "克钦语",
|
|
230
|
-
"kaj": "卡捷语",
|
|
231
|
-
"kam": "卡姆巴语",
|
|
232
|
-
"kaw": "卡威语",
|
|
233
|
-
"kbd": "卡巴尔德语",
|
|
234
|
-
"kbl": "加涅姆布语",
|
|
235
|
-
"kcg": "卡塔布语",
|
|
236
|
-
"kde": "马孔德语",
|
|
237
|
-
"kea": "卡布佛得鲁语",
|
|
238
|
-
"kfo": "克罗语",
|
|
239
|
-
"kg": "刚果语",
|
|
240
|
-
"kha": "卡西语",
|
|
241
|
-
"kho": "和田语",
|
|
242
|
-
"khq": "西桑海语",
|
|
243
|
-
"ki": "吉库尤语",
|
|
244
|
-
"kj": "宽亚玛语",
|
|
245
|
-
"kk": "哈萨克语",
|
|
246
|
-
"kkj": "卡库语",
|
|
247
|
-
"kl": "格陵兰语",
|
|
248
|
-
"kln": "卡伦金语",
|
|
249
|
-
"km": "高棉语",
|
|
250
|
-
"kmb": "金邦杜语",
|
|
251
|
-
"kn": "卡纳达语",
|
|
252
|
-
"ko": "韩语",
|
|
253
|
-
"koi": "科米-彼尔米亚克语",
|
|
254
|
-
"kok": "孔卡尼语",
|
|
255
|
-
"kos": "科斯拉伊语",
|
|
256
|
-
"kpe": "克佩列语",
|
|
257
|
-
"kr": "卡努里语",
|
|
258
|
-
"krc": "卡拉恰伊巴尔卡尔语",
|
|
259
|
-
"krl": "卡累利阿语",
|
|
260
|
-
"kru": "库鲁克语",
|
|
261
|
-
"ks": "克什米尔语",
|
|
262
|
-
"ksb": "香巴拉语",
|
|
263
|
-
"ksf": "巴菲亚语",
|
|
264
|
-
"ksh": "科隆语",
|
|
265
|
-
"ku": "库尔德语",
|
|
266
|
-
"kum": "库梅克语",
|
|
267
|
-
"kut": "库特奈语",
|
|
268
|
-
"kv": "科米语",
|
|
269
|
-
"kw": "康沃尔语",
|
|
270
|
-
"ky": "柯尔克孜语",
|
|
271
|
-
"la": "拉丁语",
|
|
272
|
-
"lad": "拉迪诺语",
|
|
273
|
-
"lag": "朗吉语",
|
|
274
|
-
"lah": "印度-雅利安语",
|
|
275
|
-
"lam": "兰巴语",
|
|
276
|
-
"lb": "卢森堡语",
|
|
277
|
-
"lez": "列兹金语",
|
|
278
|
-
"lg": "卢干达语",
|
|
279
|
-
"li": "林堡语",
|
|
280
|
-
"lkt": "拉科塔语",
|
|
281
|
-
"ln": "林加拉语",
|
|
282
|
-
"lo": "老挝语",
|
|
283
|
-
"lol": "蒙戈语",
|
|
284
|
-
"lou": "路易斯安那克里奥尔语",
|
|
285
|
-
"loz": "洛齐语",
|
|
286
|
-
"lrc": "北卢尔语",
|
|
287
|
-
"lt": "立陶宛语",
|
|
288
|
-
"lu": "鲁巴加丹加语",
|
|
289
|
-
"lua": "卢巴-卢拉语",
|
|
290
|
-
"lui": "卢伊塞诺语",
|
|
291
|
-
"lun": "隆达语",
|
|
292
|
-
"luo": "卢奥语",
|
|
293
|
-
"lus": "米佐语",
|
|
294
|
-
"luy": "卢雅语",
|
|
295
|
-
"lv": "拉脱维亚语",
|
|
296
|
-
"mad": "马都拉语",
|
|
297
|
-
"maf": "马法语",
|
|
298
|
-
"mag": "摩揭陀语",
|
|
299
|
-
"mai": "迈蒂利语",
|
|
300
|
-
"mak": "望加锡语",
|
|
301
|
-
"man": "曼丁哥语",
|
|
302
|
-
"mas": "马赛语",
|
|
303
|
-
"mde": "马坝语",
|
|
304
|
-
"mdf": "莫克沙语",
|
|
305
|
-
"mdr": "曼达尔语",
|
|
306
|
-
"men": "门德语",
|
|
307
|
-
"mer": "梅鲁语",
|
|
308
|
-
"mfe": "毛里求斯克里奥尔语",
|
|
309
|
-
"mg": "马拉加斯语",
|
|
310
|
-
"mga": "中古爱尔兰语",
|
|
311
|
-
"mgh": "马库阿语",
|
|
312
|
-
"mgo": "梅塔语",
|
|
313
|
-
"mh": "马绍尔语",
|
|
314
|
-
"mi": "毛利语",
|
|
315
|
-
"mic": "密克马克语",
|
|
316
|
-
"min": "米南佳保语",
|
|
317
|
-
"mk": "马其顿语",
|
|
318
|
-
"ml": "马拉雅拉姆语",
|
|
319
|
-
"mn": "蒙古语",
|
|
320
|
-
"mnc": "满语",
|
|
321
|
-
"mni": "曼尼普尔语",
|
|
322
|
-
"moh": "摩霍克语",
|
|
323
|
-
"mos": "莫西语",
|
|
324
|
-
"mr": "马拉地语",
|
|
325
|
-
"ms": "马来语",
|
|
326
|
-
"mt": "马耳他语",
|
|
327
|
-
"mua": "蒙当语",
|
|
328
|
-
"mul": "多语种",
|
|
329
|
-
"mus": "克里克语",
|
|
330
|
-
"mwl": "米兰德斯语",
|
|
331
|
-
"mwr": "马尔瓦里语",
|
|
332
|
-
"my": "缅甸语",
|
|
333
|
-
"mye": "姆耶内语",
|
|
334
|
-
"myv": "厄尔兹亚语",
|
|
335
|
-
"mzn": "马赞德兰语",
|
|
336
|
-
"na": "瑙鲁语",
|
|
337
|
-
"nan": "闽南语",
|
|
338
|
-
"nap": "那不勒斯语",
|
|
339
|
-
"naq": "纳马语",
|
|
340
|
-
"nb": "书面挪威语",
|
|
341
|
-
"nd": "北恩德贝勒语",
|
|
342
|
-
"nds": "低地德语",
|
|
343
|
-
"nds_NL": "低萨克森语",
|
|
344
|
-
"ne": "尼泊尔语",
|
|
345
|
-
"new": "尼瓦尔语",
|
|
346
|
-
"ng": "恩东加语",
|
|
347
|
-
"nia": "尼亚斯语",
|
|
348
|
-
"niu": "纽埃语",
|
|
349
|
-
"nl": "荷兰语",
|
|
350
|
-
"nl_BE": "弗拉芒语",
|
|
351
|
-
"nmg": "夸西奥语",
|
|
352
|
-
"nn": "挪威尼诺斯克语",
|
|
353
|
-
"nnh": "恩甘澎语",
|
|
354
|
-
"no": "挪威语",
|
|
355
|
-
"nog": "诺盖语",
|
|
356
|
-
"non": "古诺尔斯语",
|
|
357
|
-
"nqo": "西非书面文字",
|
|
358
|
-
"nr": "南恩德贝勒语",
|
|
359
|
-
"nso": "北索托语",
|
|
360
|
-
"nus": "努埃尔语",
|
|
361
|
-
"nv": "纳瓦霍语",
|
|
362
|
-
"nwc": "古典尼瓦尔语",
|
|
363
|
-
"ny": "齐切瓦语",
|
|
364
|
-
"nym": "尼扬韦齐语",
|
|
365
|
-
"nyn": "尼昂科勒语",
|
|
366
|
-
"nyo": "尼奥罗语",
|
|
367
|
-
"nzi": "恩济马语",
|
|
368
|
-
"oc": "奥克语",
|
|
369
|
-
"oj": "奥吉布瓦语",
|
|
370
|
-
"om": "奥罗莫语",
|
|
371
|
-
"or": "奥里亚语",
|
|
372
|
-
"os": "奥塞梯语",
|
|
373
|
-
"osa": "奥塞治语",
|
|
374
|
-
"ota": "奥斯曼土耳其语",
|
|
375
|
-
"pa": "旁遮普语",
|
|
376
|
-
"pag": "邦阿西南语",
|
|
377
|
-
"pal": "巴拉维语",
|
|
378
|
-
"pam": "邦板牙语",
|
|
379
|
-
"pap": "帕皮阿门托语",
|
|
380
|
-
"pau": "帕劳语",
|
|
381
|
-
"pcm": "尼日利亚皮钦语",
|
|
382
|
-
"peo": "古波斯语",
|
|
383
|
-
"phn": "腓尼基语",
|
|
384
|
-
"pi": "巴利语",
|
|
385
|
-
"pl": "波兰语",
|
|
386
|
-
"pon": "波纳佩语",
|
|
387
|
-
"prg": "普鲁士语",
|
|
388
|
-
"pro": "古普罗文斯语",
|
|
389
|
-
"ps": "普什图语",
|
|
390
|
-
"pt": "葡萄牙语",
|
|
391
|
-
"pt_BR": "巴西葡萄牙语",
|
|
392
|
-
"pt_PT": "欧洲葡萄牙语",
|
|
393
|
-
"qu": "克丘亚语",
|
|
394
|
-
"quc": "基切语",
|
|
395
|
-
"raj": "拉贾斯坦语",
|
|
396
|
-
"rap": "拉帕努伊语",
|
|
397
|
-
"rar": "拉罗汤加语",
|
|
398
|
-
"rm": "罗曼什语",
|
|
399
|
-
"rn": "隆迪语",
|
|
400
|
-
"ro": "罗马尼亚语",
|
|
401
|
-
"ro_MD": "摩尔多瓦语",
|
|
402
|
-
"rof": "兰博语",
|
|
403
|
-
"rom": "吉普赛语",
|
|
404
|
-
"root": "根语言",
|
|
405
|
-
"ru": "俄语",
|
|
406
|
-
"rup": "阿罗马尼亚语",
|
|
407
|
-
"rw": "卢旺达语",
|
|
408
|
-
"rwk": "罗瓦语",
|
|
409
|
-
"sa": "梵语",
|
|
410
|
-
"sad": "桑达韦语",
|
|
411
|
-
"sah": "萨哈语",
|
|
412
|
-
"sam": "萨马利亚阿拉姆语",
|
|
413
|
-
"saq": "桑布鲁语",
|
|
414
|
-
"sas": "萨萨克文",
|
|
415
|
-
"sat": "桑塔利语",
|
|
416
|
-
"sba": "甘拜语",
|
|
417
|
-
"sbp": "桑古语",
|
|
418
|
-
"sc": "萨丁语",
|
|
419
|
-
"scn": "西西里语",
|
|
420
|
-
"sco": "苏格兰语",
|
|
421
|
-
"sd": "信德语",
|
|
422
|
-
"sdh": "南库尔德语",
|
|
423
|
-
"se": "北方萨米语",
|
|
424
|
-
"see": "塞内卡语",
|
|
425
|
-
"seh": "塞纳语",
|
|
426
|
-
"sel": "塞尔库普语",
|
|
427
|
-
"ses": "东桑海语",
|
|
428
|
-
"sg": "桑戈语",
|
|
429
|
-
"sga": "古爱尔兰语",
|
|
430
|
-
"sh": "塞尔维亚-克罗地亚语",
|
|
431
|
-
"shi": "希尔哈语",
|
|
432
|
-
"shn": "掸语",
|
|
433
|
-
"shu": "乍得阿拉伯语",
|
|
434
|
-
"si": "僧伽罗语",
|
|
435
|
-
"sid": "悉达摩语",
|
|
436
|
-
"sk": "斯洛伐克语",
|
|
437
|
-
"sl": "斯洛文尼亚语",
|
|
438
|
-
"sm": "萨摩亚语",
|
|
439
|
-
"sma": "南萨米语",
|
|
440
|
-
"smj": "吕勒萨米语",
|
|
441
|
-
"smn": "伊纳里萨米语",
|
|
442
|
-
"sms": "斯科特萨米语",
|
|
443
|
-
"sn": "绍纳语",
|
|
444
|
-
"snk": "索宁克语",
|
|
445
|
-
"so": "索马里语",
|
|
446
|
-
"sog": "粟特语",
|
|
447
|
-
"sq": "阿尔巴尼亚语",
|
|
448
|
-
"sr": "塞尔维亚语",
|
|
449
|
-
"srn": "苏里南汤加语",
|
|
450
|
-
"srr": "塞雷尔语",
|
|
451
|
-
"ss": "斯瓦蒂语",
|
|
452
|
-
"ssy": "萨霍语",
|
|
453
|
-
"st": "南索托语",
|
|
454
|
-
"su": "巽他语",
|
|
455
|
-
"suk": "苏库马语",
|
|
456
|
-
"sus": "苏苏语",
|
|
457
|
-
"sux": "苏美尔语",
|
|
458
|
-
"sv": "瑞典语",
|
|
459
|
-
"sw": "斯瓦希里语",
|
|
460
|
-
"sw_CD": "刚果斯瓦希里语",
|
|
461
|
-
"swb": "科摩罗语",
|
|
462
|
-
"syc": "古典叙利亚语",
|
|
463
|
-
"syr": "叙利亚语",
|
|
464
|
-
"ta": "泰米尔语",
|
|
465
|
-
"te": "泰卢固语",
|
|
466
|
-
"tem": "泰姆奈语",
|
|
467
|
-
"teo": "特索语",
|
|
468
|
-
"ter": "特伦诺语",
|
|
469
|
-
"tet": "德顿语",
|
|
470
|
-
"tg": "塔吉克语",
|
|
471
|
-
"th": "泰语",
|
|
472
|
-
"ti": "提格利尼亚语",
|
|
473
|
-
"tig": "提格雷语",
|
|
474
|
-
"tiv": "蒂夫语",
|
|
475
|
-
"tk": "土库曼语",
|
|
476
|
-
"tkl": "托克劳语",
|
|
477
|
-
"tl": "他加禄语",
|
|
478
|
-
"tlh": "克林贡语",
|
|
479
|
-
"tli": "特林吉特语",
|
|
480
|
-
"tmh": "塔马奇克语",
|
|
481
|
-
"tn": "茨瓦纳语",
|
|
482
|
-
"to": "汤加语",
|
|
483
|
-
"tog": "尼亚萨汤加语",
|
|
484
|
-
"tpi": "托克皮辛语",
|
|
485
|
-
"tr": "土耳其语",
|
|
486
|
-
"trv": "赛德克语",
|
|
487
|
-
"ts": "聪加语",
|
|
488
|
-
"tsi": "钦西安语",
|
|
489
|
-
"tt": "鞑靼语",
|
|
490
|
-
"tum": "通布卡语",
|
|
491
|
-
"tvl": "图瓦卢语",
|
|
492
|
-
"tw": "契维语",
|
|
493
|
-
"twq": "北桑海语",
|
|
494
|
-
"ty": "塔希提语",
|
|
495
|
-
"tyv": "图瓦语",
|
|
496
|
-
"tzm": "塔马齐格特语",
|
|
497
|
-
"udm": "乌德穆尔特语",
|
|
498
|
-
"ug": "维吾尔语",
|
|
499
|
-
"uga": "乌加里特语",
|
|
500
|
-
"uk": "乌克兰语",
|
|
501
|
-
"umb": "翁本杜语",
|
|
502
|
-
"und": "未知语言",
|
|
503
|
-
"ur": "乌尔都语",
|
|
504
|
-
"uz": "乌兹别克语",
|
|
505
|
-
"vai": "瓦伊语",
|
|
506
|
-
"ve": "文达语",
|
|
507
|
-
"vep": "维普森语",
|
|
508
|
-
"vi": "越南语",
|
|
509
|
-
"vo": "沃拉普克语",
|
|
510
|
-
"vot": "沃提克语",
|
|
511
|
-
"vun": "温旧语",
|
|
512
|
-
"wa": "瓦隆语",
|
|
513
|
-
"wae": "瓦尔瑟语",
|
|
514
|
-
"wal": "瓦拉莫语",
|
|
515
|
-
"war": "瓦瑞语",
|
|
516
|
-
"was": "瓦绍语",
|
|
517
|
-
"wbp": "瓦尔皮瑞语",
|
|
518
|
-
"wo": "沃洛夫语",
|
|
519
|
-
"wuu": "吴语",
|
|
520
|
-
"xal": "卡尔梅克语",
|
|
521
|
-
"xh": "科萨语",
|
|
522
|
-
"xog": "索加语",
|
|
523
|
-
"yao": "瑶族语",
|
|
524
|
-
"yap": "雅浦语",
|
|
525
|
-
"yav": "洋卞语",
|
|
526
|
-
"ybb": "耶姆巴语",
|
|
527
|
-
"yi": "意第绪语",
|
|
528
|
-
"yo": "约鲁巴语",
|
|
529
|
-
"yue": "粤语",
|
|
530
|
-
"za": "壮语",
|
|
531
|
-
"zap": "萨波蒂克语",
|
|
532
|
-
"zbl": "布里斯符号",
|
|
533
|
-
"zen": "泽纳加语",
|
|
534
|
-
"zgh": "标准摩洛哥塔马塞特语",
|
|
535
|
-
"zh": "中文",
|
|
536
|
-
"zh_Hans": "简体中文",
|
|
537
|
-
"zh_Hant": "繁体中文",
|
|
538
|
-
"zu": "祖鲁语",
|
|
539
|
-
"zun": "祖尼语",
|
|
540
|
-
"zxx": "无语言内容",
|
|
541
|
-
"zza": "扎扎语"
|
|
542
|
-
},
|
|
543
|
-
"scripts": {
|
|
544
|
-
"Adlm": "阿德拉姆文",
|
|
545
|
-
"Afak": "阿法卡文",
|
|
546
|
-
"Aghb": "Aghb",
|
|
547
|
-
"Ahom": "Ahom",
|
|
548
|
-
"Arab": "阿拉伯文",
|
|
549
|
-
"Arab-alt-variant": "波斯阿拉伯文",
|
|
550
|
-
"Armi": "皇室亚拉姆文",
|
|
551
|
-
"Armn": "亚美尼亚文",
|
|
552
|
-
"Avst": "阿维斯陀文",
|
|
553
|
-
"Bali": "巴厘文",
|
|
554
|
-
"Bamu": "巴姆穆文",
|
|
555
|
-
"Bass": "巴萨文",
|
|
556
|
-
"Batk": "巴塔克文",
|
|
557
|
-
"Beng": "孟加拉文",
|
|
558
|
-
"Bhks": "拜克舒克文",
|
|
559
|
-
"Blis": "布列斯符号",
|
|
560
|
-
"Bopo": "汉语拼音",
|
|
561
|
-
"Brah": "婆罗米文字",
|
|
562
|
-
"Brai": "布莱叶盲文",
|
|
563
|
-
"Bugi": "布吉文",
|
|
564
|
-
"Buhd": "布希德文",
|
|
565
|
-
"Cakm": "查克马文",
|
|
566
|
-
"Cans": "加拿大土著统一音节",
|
|
567
|
-
"Cari": "卡里亚文",
|
|
568
|
-
"Cham": "占文",
|
|
569
|
-
"Cher": "切罗基文",
|
|
570
|
-
"Cirt": "色斯文",
|
|
571
|
-
"Copt": "克普特文",
|
|
572
|
-
"Cprt": "塞浦路斯文",
|
|
573
|
-
"Cyrl": "西里尔文",
|
|
574
|
-
"Cyrs": "西里尔文字(古教会斯拉夫文的变体)",
|
|
575
|
-
"Deva": "天城文",
|
|
576
|
-
"Dogr": "多格拉文",
|
|
577
|
-
"Dsrt": "德塞莱特文",
|
|
578
|
-
"Dupl": "杜普洛伊速记",
|
|
579
|
-
"Egyd": "后期埃及文",
|
|
580
|
-
"Egyh": "古埃及僧侣书写体",
|
|
581
|
-
"Egyp": "古埃及象形文",
|
|
582
|
-
"Elba": "爱尔巴桑文",
|
|
583
|
-
"Elym": "Elym",
|
|
584
|
-
"Ethi": "埃塞俄比亚文",
|
|
585
|
-
"Geok": "格鲁吉亚文(教堂体)",
|
|
586
|
-
"Geor": "格鲁吉亚文",
|
|
587
|
-
"Glag": "格拉哥里文",
|
|
588
|
-
"Gong": "贡贾拉贡德文",
|
|
589
|
-
"Gonm": "马萨拉姆冈德文",
|
|
590
|
-
"Goth": "哥特文",
|
|
591
|
-
"Gran": "格兰塔文",
|
|
592
|
-
"Grek": "希腊文",
|
|
593
|
-
"Gujr": "古吉拉特文",
|
|
594
|
-
"Guru": "果鲁穆奇文",
|
|
595
|
-
"Hanb": "汉语注音",
|
|
596
|
-
"Hang": "谚文",
|
|
597
|
-
"Hani": "汉字",
|
|
598
|
-
"Hano": "汉奴罗文",
|
|
599
|
-
"Hans": "简体",
|
|
600
|
-
"Hans-alt-stand-alone": "简体中文",
|
|
601
|
-
"Hant": "繁体",
|
|
602
|
-
"Hant-alt-stand-alone": "繁体中文",
|
|
603
|
-
"Hatr": "Hatr",
|
|
604
|
-
"Hebr": "希伯来文",
|
|
605
|
-
"Hira": "平假名",
|
|
606
|
-
"Hluw": "安那托利亚象形文字",
|
|
607
|
-
"Hmng": "杨松录苗文",
|
|
608
|
-
"Hmnp": "尼亚肯蒲丘苗文",
|
|
609
|
-
"Hrkt": "假名表",
|
|
610
|
-
"Hung": "古匈牙利文",
|
|
611
|
-
"Inds": "印度河文字",
|
|
612
|
-
"Ital": "古意大利文",
|
|
613
|
-
"Jamo": "韩文字母",
|
|
614
|
-
"Java": "爪哇文",
|
|
615
|
-
"Jpan": "日文",
|
|
616
|
-
"Jurc": "女真文",
|
|
617
|
-
"Kali": "克耶李文字",
|
|
618
|
-
"Kana": "片假名",
|
|
619
|
-
"Khar": "卡罗须提文",
|
|
620
|
-
"Khmr": "高棉文",
|
|
621
|
-
"Khoj": "克吉奇文字",
|
|
622
|
-
"Knda": "卡纳达文",
|
|
623
|
-
"Kore": "韩文",
|
|
624
|
-
"Kpel": "克佩列文",
|
|
625
|
-
"Kthi": "凯提文",
|
|
626
|
-
"Lana": "兰拿文",
|
|
627
|
-
"Laoo": "老挝文",
|
|
628
|
-
"Latf": "拉丁文(哥特式字体变体)",
|
|
629
|
-
"Latg": "拉丁文(盖尔文变体)",
|
|
630
|
-
"Latn": "拉丁文",
|
|
631
|
-
"Lepc": "雷布查文",
|
|
632
|
-
"Limb": "林布文",
|
|
633
|
-
"Lina": "线形文字(A)",
|
|
634
|
-
"Linb": "线形文字(B)",
|
|
635
|
-
"Lisu": "傈僳文",
|
|
636
|
-
"Loma": "洛马文",
|
|
637
|
-
"Lyci": "利西亚文",
|
|
638
|
-
"Lydi": "吕底亚文",
|
|
639
|
-
"Mahj": "Mahj",
|
|
640
|
-
"Maka": "望加锡文",
|
|
641
|
-
"Mand": "阿拉米文",
|
|
642
|
-
"Mani": "摩尼教文",
|
|
643
|
-
"Marc": "大玛尔文",
|
|
644
|
-
"Maya": "玛雅圣符文",
|
|
645
|
-
"Medf": "梅德法伊德林文",
|
|
646
|
-
"Mend": "门迪文",
|
|
647
|
-
"Merc": "麦罗埃草书",
|
|
648
|
-
"Mero": "麦若提克文",
|
|
649
|
-
"Mlym": "马拉雅拉姆文",
|
|
650
|
-
"Modi": "Modi",
|
|
651
|
-
"Mong": "蒙古文",
|
|
652
|
-
"Moon": "韩文语系",
|
|
653
|
-
"Mroo": "谬文",
|
|
654
|
-
"Mtei": "曼尼普尔文",
|
|
655
|
-
"Mult": "Mult",
|
|
656
|
-
"Mymr": "缅甸文",
|
|
657
|
-
"Nand": "楠迪梵文",
|
|
658
|
-
"Narb": "古北方阿拉伯文",
|
|
659
|
-
"Nbat": "纳巴泰文",
|
|
660
|
-
"Newa": "尼瓦文",
|
|
661
|
-
"Nkgb": "纳西格巴文",
|
|
662
|
-
"Nkoo": "西非书面文字(N’Ko)",
|
|
663
|
-
"Nshu": "女书",
|
|
664
|
-
"Ogam": "欧甘文",
|
|
665
|
-
"Olck": "桑塔利文",
|
|
666
|
-
"Orkh": "鄂尔浑文",
|
|
667
|
-
"Orya": "奥里亚文",
|
|
668
|
-
"Osge": "欧塞奇文",
|
|
669
|
-
"Osma": "奥斯曼亚文",
|
|
670
|
-
"Palm": "帕尔迈拉文",
|
|
671
|
-
"Pauc": "包金豪文",
|
|
672
|
-
"Perm": "古彼尔姆文",
|
|
673
|
-
"Phag": "八思巴文",
|
|
674
|
-
"Phli": "巴列维文碑铭体",
|
|
675
|
-
"Phlp": "巴列维文(圣诗体)",
|
|
676
|
-
"Phlv": "巴列维文(书体)",
|
|
677
|
-
"Phnx": "腓尼基文",
|
|
678
|
-
"Plrd": "波拉德音标文字",
|
|
679
|
-
"Prti": "帕提亚文碑铭体",
|
|
680
|
-
"Qaag": "Qaag",
|
|
681
|
-
"Rjng": "拉让文",
|
|
682
|
-
"Rohg": "哈乃斐罗兴亚文",
|
|
683
|
-
"Roro": "朗格朗格文",
|
|
684
|
-
"Runr": "古代北欧文",
|
|
685
|
-
"Samr": "撒马利亚文",
|
|
686
|
-
"Sara": "沙拉堤文",
|
|
687
|
-
"Sarb": "古南阿拉伯文",
|
|
688
|
-
"Saur": "索拉什特拉文",
|
|
689
|
-
"Sgnw": "书写符号",
|
|
690
|
-
"Shaw": "萧伯纳式文",
|
|
691
|
-
"Shrd": "夏拉达文",
|
|
692
|
-
"Sidd": "悉昙",
|
|
693
|
-
"Sind": "信德文",
|
|
694
|
-
"Sinh": "僧伽罗文",
|
|
695
|
-
"Sogd": "粟特文",
|
|
696
|
-
"Sogo": "古粟特文",
|
|
697
|
-
"Sora": "索朗桑朋文",
|
|
698
|
-
"Soyo": "索永布文",
|
|
699
|
-
"Sund": "巽他文",
|
|
700
|
-
"Sylo": "锡尔赫特文",
|
|
701
|
-
"Syrc": "叙利亚文",
|
|
702
|
-
"Syre": "福音体叙利亚文",
|
|
703
|
-
"Syrj": "西叙利亚文",
|
|
704
|
-
"Syrn": "东叙利亚文",
|
|
705
|
-
"Tagb": "塔格班瓦文",
|
|
706
|
-
"Takr": "泰克里文",
|
|
707
|
-
"Tale": "泰乐文",
|
|
708
|
-
"Talu": "新傣文",
|
|
709
|
-
"Taml": "泰米尔文",
|
|
710
|
-
"Tang": "唐古特文",
|
|
711
|
-
"Tavt": "越南傣文",
|
|
712
|
-
"Telu": "泰卢固文",
|
|
713
|
-
"Teng": "腾格瓦文字",
|
|
714
|
-
"Tfng": "提非纳文",
|
|
715
|
-
"Tglg": "塔加路文",
|
|
716
|
-
"Thaa": "塔安那文",
|
|
717
|
-
"Thai": "泰文",
|
|
718
|
-
"Tibt": "藏文",
|
|
719
|
-
"Tirh": "迈蒂利文",
|
|
720
|
-
"Ugar": "乌加里特文",
|
|
721
|
-
"Vaii": "瓦依文",
|
|
722
|
-
"Visp": "可见语言",
|
|
723
|
-
"Wara": "瓦郎奇蒂文字",
|
|
724
|
-
"Wcho": "Wcho",
|
|
725
|
-
"Wole": "沃莱艾文",
|
|
726
|
-
"Xpeo": "古波斯文",
|
|
727
|
-
"Xsux": "苏美尔-阿卡德楔形文字",
|
|
728
|
-
"Yiii": "彝文",
|
|
729
|
-
"Zanb": "札那巴札尔方块文字",
|
|
730
|
-
"Zinh": "遗传学术语",
|
|
731
|
-
"Zmth": "数学符号",
|
|
732
|
-
"Zsye": "表情符号",
|
|
733
|
-
"Zsym": "符号",
|
|
734
|
-
"Zxxx": "非书面文字",
|
|
735
|
-
"Zyyy": "通用",
|
|
736
|
-
"Zzzz": "未知文字"
|
|
737
|
-
},
|
|
738
|
-
"territories": {
|
|
739
|
-
"142": "亚洲",
|
|
740
|
-
"143": "中亚",
|
|
741
|
-
"145": "西亚",
|
|
742
|
-
"150": "欧洲",
|
|
743
|
-
"151": "东欧",
|
|
744
|
-
"154": "北欧",
|
|
745
|
-
"155": "西欧",
|
|
746
|
-
"202": "撒哈拉以南非洲",
|
|
747
|
-
"419": "拉丁美洲",
|
|
748
|
-
"001": "世界",
|
|
749
|
-
"002": "非洲",
|
|
750
|
-
"003": "北美洲",
|
|
751
|
-
"005": "南美洲",
|
|
752
|
-
"009": "大洋洲",
|
|
753
|
-
"011": "西非",
|
|
754
|
-
"013": "中美洲",
|
|
755
|
-
"014": "东非",
|
|
756
|
-
"015": "北非",
|
|
757
|
-
"017": "中非",
|
|
758
|
-
"018": "南部非洲",
|
|
759
|
-
"019": "美洲",
|
|
760
|
-
"021": "美洲北部",
|
|
761
|
-
"029": "加勒比地区",
|
|
762
|
-
"030": "东亚",
|
|
763
|
-
"034": "南亚",
|
|
764
|
-
"035": "东南亚",
|
|
765
|
-
"039": "南欧",
|
|
766
|
-
"053": "澳大拉西亚",
|
|
767
|
-
"054": "美拉尼西亚",
|
|
768
|
-
"057": "密克罗尼西亚地区",
|
|
769
|
-
"061": "玻利尼西亚",
|
|
770
|
-
"AC": "阿森松岛",
|
|
771
|
-
"AD": "安道尔",
|
|
772
|
-
"AE": "阿拉伯联合酋长国",
|
|
773
|
-
"AF": "阿富汗",
|
|
774
|
-
"AG": "安提瓜和巴布达",
|
|
775
|
-
"AI": "安圭拉",
|
|
776
|
-
"AL": "阿尔巴尼亚",
|
|
777
|
-
"AM": "亚美尼亚",
|
|
778
|
-
"AO": "安哥拉",
|
|
779
|
-
"AQ": "南极洲",
|
|
780
|
-
"AR": "阿根廷",
|
|
781
|
-
"AS": "美属萨摩亚",
|
|
782
|
-
"AT": "奥地利",
|
|
783
|
-
"AU": "澳大利亚",
|
|
784
|
-
"AW": "阿鲁巴",
|
|
785
|
-
"AX": "奥兰群岛",
|
|
786
|
-
"AZ": "阿塞拜疆",
|
|
787
|
-
"BA": "波斯尼亚和黑塞哥维那",
|
|
788
|
-
"BB": "巴巴多斯",
|
|
789
|
-
"BD": "孟加拉国",
|
|
790
|
-
"BE": "比利时",
|
|
791
|
-
"BF": "布基纳法索",
|
|
792
|
-
"BG": "保加利亚",
|
|
793
|
-
"BH": "巴林",
|
|
794
|
-
"BI": "布隆迪",
|
|
795
|
-
"BJ": "贝宁",
|
|
796
|
-
"BL": "圣巴泰勒米",
|
|
797
|
-
"BM": "百慕大",
|
|
798
|
-
"BN": "文莱",
|
|
799
|
-
"BO": "玻利维亚",
|
|
800
|
-
"BQ": "荷属加勒比区",
|
|
801
|
-
"BR": "巴西",
|
|
802
|
-
"BS": "巴哈马",
|
|
803
|
-
"BT": "不丹",
|
|
804
|
-
"BV": "布韦岛",
|
|
805
|
-
"BW": "博茨瓦纳",
|
|
806
|
-
"BY": "白俄罗斯",
|
|
807
|
-
"BZ": "伯利兹",
|
|
808
|
-
"CA": "加拿大",
|
|
809
|
-
"CC": "科科斯(基林)群岛",
|
|
810
|
-
"CD": "刚果(金)",
|
|
811
|
-
"CD-alt-variant": "刚果民主共和国",
|
|
812
|
-
"CF": "中非共和国",
|
|
813
|
-
"CG": "刚果(布)",
|
|
814
|
-
"CG-alt-variant": "刚果共和国",
|
|
815
|
-
"CH": "瑞士",
|
|
816
|
-
"CI": "科特迪瓦",
|
|
817
|
-
"CI-alt-variant": "象牙海岸",
|
|
818
|
-
"CK": "库克群岛",
|
|
819
|
-
"CL": "智利",
|
|
820
|
-
"CM": "喀麦隆",
|
|
821
|
-
"CN": "中国",
|
|
822
|
-
"CO": "哥伦比亚",
|
|
823
|
-
"CP": "克利珀顿岛",
|
|
824
|
-
"CR": "哥斯达黎加",
|
|
825
|
-
"CU": "古巴",
|
|
826
|
-
"CV": "佛得角",
|
|
827
|
-
"CW": "库拉索",
|
|
828
|
-
"CX": "圣诞岛",
|
|
829
|
-
"CY": "塞浦路斯",
|
|
830
|
-
"CZ": "捷克",
|
|
831
|
-
"CZ-alt-variant": "捷克共和国",
|
|
832
|
-
"DE": "德国",
|
|
833
|
-
"DG": "迪戈加西亚岛",
|
|
834
|
-
"DJ": "吉布提",
|
|
835
|
-
"DK": "丹麦",
|
|
836
|
-
"DM": "多米尼克",
|
|
837
|
-
"DO": "多米尼加共和国",
|
|
838
|
-
"DZ": "阿尔及利亚",
|
|
839
|
-
"EA": "休达及梅利利亚",
|
|
840
|
-
"EC": "厄瓜多尔",
|
|
841
|
-
"EE": "爱沙尼亚",
|
|
842
|
-
"EG": "埃及",
|
|
843
|
-
"EH": "西撒哈拉",
|
|
844
|
-
"ER": "厄立特里亚",
|
|
845
|
-
"ES": "西班牙",
|
|
846
|
-
"ET": "埃塞俄比亚",
|
|
847
|
-
"EU": "欧盟",
|
|
848
|
-
"EZ": "欧元区",
|
|
849
|
-
"FI": "芬兰",
|
|
850
|
-
"FJ": "斐济",
|
|
851
|
-
"FK": "福克兰群岛",
|
|
852
|
-
"FK-alt-variant": "福克兰群岛(马尔维纳斯群岛)",
|
|
853
|
-
"FM": "密克罗尼西亚",
|
|
854
|
-
"FO": "法罗群岛",
|
|
855
|
-
"FR": "法国",
|
|
856
|
-
"GA": "加蓬",
|
|
857
|
-
"GB": "英国",
|
|
858
|
-
"GB-alt-short": "英国",
|
|
859
|
-
"GD": "格林纳达",
|
|
860
|
-
"GE": "格鲁吉亚",
|
|
861
|
-
"GF": "法属圭亚那",
|
|
862
|
-
"GG": "根西岛",
|
|
863
|
-
"GH": "加纳",
|
|
864
|
-
"GI": "直布罗陀",
|
|
865
|
-
"GL": "格陵兰",
|
|
866
|
-
"GM": "冈比亚",
|
|
867
|
-
"GN": "几内亚",
|
|
868
|
-
"GP": "瓜德罗普",
|
|
869
|
-
"GQ": "赤道几内亚",
|
|
870
|
-
"GR": "希腊",
|
|
871
|
-
"GS": "南乔治亚和南桑威奇群岛",
|
|
872
|
-
"GT": "危地马拉",
|
|
873
|
-
"GU": "关岛",
|
|
874
|
-
"GW": "几内亚比绍",
|
|
875
|
-
"GY": "圭亚那",
|
|
876
|
-
"HK": "中国香港",
|
|
877
|
-
"HK-alt-short": "香港",
|
|
878
|
-
"HM": "赫德岛和麦克唐纳群岛",
|
|
879
|
-
"HN": "洪都拉斯",
|
|
880
|
-
"HR": "克罗地亚",
|
|
881
|
-
"HT": "海地",
|
|
882
|
-
"HU": "匈牙利",
|
|
883
|
-
"IC": "加纳利群岛",
|
|
884
|
-
"ID": "印度尼西亚",
|
|
885
|
-
"IE": "爱尔兰",
|
|
886
|
-
"IL": "以色列",
|
|
887
|
-
"IM": "马恩岛",
|
|
888
|
-
"IN": "印度",
|
|
889
|
-
"IO": "英属印度洋领地",
|
|
890
|
-
"IQ": "伊拉克",
|
|
891
|
-
"IR": "伊朗",
|
|
892
|
-
"IS": "冰岛",
|
|
893
|
-
"IT": "意大利",
|
|
894
|
-
"JE": "泽西岛",
|
|
895
|
-
"JM": "牙买加",
|
|
896
|
-
"JO": "约旦",
|
|
897
|
-
"JP": "日本",
|
|
898
|
-
"KE": "肯尼亚",
|
|
899
|
-
"KG": "吉尔吉斯斯坦",
|
|
900
|
-
"KH": "柬埔寨",
|
|
901
|
-
"KI": "基里巴斯",
|
|
902
|
-
"KM": "科摩罗",
|
|
903
|
-
"KN": "圣基茨和尼维斯",
|
|
904
|
-
"KP": "朝鲜",
|
|
905
|
-
"KR": "韩国",
|
|
906
|
-
"KW": "科威特",
|
|
907
|
-
"KY": "开曼群岛",
|
|
908
|
-
"KZ": "哈萨克斯坦",
|
|
909
|
-
"LA": "老挝",
|
|
910
|
-
"LB": "黎巴嫩",
|
|
911
|
-
"LC": "圣卢西亚",
|
|
912
|
-
"LI": "列支敦士登",
|
|
913
|
-
"LK": "斯里兰卡",
|
|
914
|
-
"LR": "利比里亚",
|
|
915
|
-
"LS": "莱索托",
|
|
916
|
-
"LT": "立陶宛",
|
|
917
|
-
"LU": "卢森堡",
|
|
918
|
-
"LV": "拉脱维亚",
|
|
919
|
-
"LY": "利比亚",
|
|
920
|
-
"MA": "摩洛哥",
|
|
921
|
-
"MC": "摩纳哥",
|
|
922
|
-
"MD": "摩尔多瓦",
|
|
923
|
-
"ME": "黑山",
|
|
924
|
-
"MF": "法属圣马丁",
|
|
925
|
-
"MG": "马达加斯加",
|
|
926
|
-
"MH": "马绍尔群岛",
|
|
927
|
-
"MK": "北马其顿",
|
|
928
|
-
"MK-alt-variant": "MK",
|
|
929
|
-
"ML": "马里",
|
|
930
|
-
"MM": "缅甸",
|
|
931
|
-
"MN": "蒙古",
|
|
932
|
-
"MO": "中国澳门",
|
|
933
|
-
"MO-alt-short": "澳门",
|
|
934
|
-
"MP": "北马里亚纳群岛",
|
|
935
|
-
"MQ": "马提尼克",
|
|
936
|
-
"MR": "毛里塔尼亚",
|
|
937
|
-
"MS": "蒙特塞拉特",
|
|
938
|
-
"MT": "马耳他",
|
|
939
|
-
"MU": "毛里求斯",
|
|
940
|
-
"MV": "马尔代夫",
|
|
941
|
-
"MW": "马拉维",
|
|
942
|
-
"MX": "墨西哥",
|
|
943
|
-
"MY": "马来西亚",
|
|
944
|
-
"MZ": "莫桑比克",
|
|
945
|
-
"NA": "纳米比亚",
|
|
946
|
-
"NC": "新喀里多尼亚",
|
|
947
|
-
"NE": "尼日尔",
|
|
948
|
-
"NF": "诺福克岛",
|
|
949
|
-
"NG": "尼日利亚",
|
|
950
|
-
"NI": "尼加拉瓜",
|
|
951
|
-
"NL": "荷兰",
|
|
952
|
-
"NO": "挪威",
|
|
953
|
-
"NP": "尼泊尔",
|
|
954
|
-
"NR": "瑙鲁",
|
|
955
|
-
"NU": "纽埃",
|
|
956
|
-
"NZ": "新西兰",
|
|
957
|
-
"OM": "阿曼",
|
|
958
|
-
"PA": "巴拿马",
|
|
959
|
-
"PE": "秘鲁",
|
|
960
|
-
"PF": "法属波利尼西亚",
|
|
961
|
-
"PG": "巴布亚新几内亚",
|
|
962
|
-
"PH": "菲律宾",
|
|
963
|
-
"PK": "巴基斯坦",
|
|
964
|
-
"PL": "波兰",
|
|
965
|
-
"PM": "圣皮埃尔和密克隆群岛",
|
|
966
|
-
"PN": "皮特凯恩群岛",
|
|
967
|
-
"PR": "波多黎各",
|
|
968
|
-
"PS": "巴勒斯坦领土",
|
|
969
|
-
"PS-alt-short": "巴勒斯坦",
|
|
970
|
-
"PT": "葡萄牙",
|
|
971
|
-
"PW": "帕劳",
|
|
972
|
-
"PY": "巴拉圭",
|
|
973
|
-
"QA": "卡塔尔",
|
|
974
|
-
"QO": "大洋洲边远群岛",
|
|
975
|
-
"RE": "留尼汪",
|
|
976
|
-
"RO": "罗马尼亚",
|
|
977
|
-
"RS": "塞尔维亚",
|
|
978
|
-
"RU": "俄罗斯",
|
|
979
|
-
"RW": "卢旺达",
|
|
980
|
-
"SA": "沙特阿拉伯",
|
|
981
|
-
"SB": "所罗门群岛",
|
|
982
|
-
"SC": "塞舌尔",
|
|
983
|
-
"SD": "苏丹",
|
|
984
|
-
"SE": "瑞典",
|
|
985
|
-
"SG": "新加坡",
|
|
986
|
-
"SH": "圣赫勒拿",
|
|
987
|
-
"SI": "斯洛文尼亚",
|
|
988
|
-
"SJ": "斯瓦尔巴和扬马延",
|
|
989
|
-
"SK": "斯洛伐克",
|
|
990
|
-
"SL": "塞拉利昂",
|
|
991
|
-
"SM": "圣马力诺",
|
|
992
|
-
"SN": "塞内加尔",
|
|
993
|
-
"SO": "索马里",
|
|
994
|
-
"SR": "苏里南",
|
|
995
|
-
"SS": "南苏丹",
|
|
996
|
-
"ST": "圣多美和普林西比",
|
|
997
|
-
"SV": "萨尔瓦多",
|
|
998
|
-
"SX": "荷属圣马丁",
|
|
999
|
-
"SY": "叙利亚",
|
|
1000
|
-
"SZ": "斯威士兰",
|
|
1001
|
-
"SZ-alt-variant": "SZ",
|
|
1002
|
-
"TA": "特里斯坦-达库尼亚群岛",
|
|
1003
|
-
"TC": "特克斯和凯科斯群岛",
|
|
1004
|
-
"TD": "乍得",
|
|
1005
|
-
"TF": "法属南部领地",
|
|
1006
|
-
"TG": "多哥",
|
|
1007
|
-
"TH": "泰国",
|
|
1008
|
-
"TJ": "塔吉克斯坦",
|
|
1009
|
-
"TK": "托克劳",
|
|
1010
|
-
"TL": "东帝汶",
|
|
1011
|
-
"TL-alt-variant": "TL",
|
|
1012
|
-
"TM": "土库曼斯坦",
|
|
1013
|
-
"TN": "突尼斯",
|
|
1014
|
-
"TO": "汤加",
|
|
1015
|
-
"TR": "土耳其",
|
|
1016
|
-
"TT": "特立尼达和多巴哥",
|
|
1017
|
-
"TV": "图瓦卢",
|
|
1018
|
-
"TW": "中国台湾",
|
|
1019
|
-
"TZ": "坦桑尼亚",
|
|
1020
|
-
"UA": "乌克兰",
|
|
1021
|
-
"UG": "乌干达",
|
|
1022
|
-
"UM": "美国本土外小岛屿",
|
|
1023
|
-
"UN": "联合国",
|
|
1024
|
-
"UN-alt-short": "联合国",
|
|
1025
|
-
"US": "美国",
|
|
1026
|
-
"US-alt-short": "美国",
|
|
1027
|
-
"UY": "乌拉圭",
|
|
1028
|
-
"UZ": "乌兹别克斯坦",
|
|
1029
|
-
"VA": "梵蒂冈",
|
|
1030
|
-
"VC": "圣文森特和格林纳丁斯",
|
|
1031
|
-
"VE": "委内瑞拉",
|
|
1032
|
-
"VG": "英属维尔京群岛",
|
|
1033
|
-
"VI": "美属维尔京群岛",
|
|
1034
|
-
"VN": "越南",
|
|
1035
|
-
"VU": "瓦努阿图",
|
|
1036
|
-
"WF": "瓦利斯和富图纳",
|
|
1037
|
-
"WS": "萨摩亚",
|
|
1038
|
-
"XA": "伪地区",
|
|
1039
|
-
"XB": "伪双向语言地区",
|
|
1040
|
-
"XK": "科索沃",
|
|
1041
|
-
"YE": "也门",
|
|
1042
|
-
"YT": "马约特",
|
|
1043
|
-
"ZA": "南非",
|
|
1044
|
-
"ZM": "赞比亚",
|
|
1045
|
-
"ZW": "津巴布韦",
|
|
1046
|
-
"ZZ": "未知地区"
|
|
1047
|
-
},
|
|
1048
|
-
"orientation": "left-to-right",
|
|
1049
|
-
"ca-gregorian": {
|
|
1050
|
-
"dateFormats": {
|
|
1051
|
-
"full": "y年M月d日EEEE",
|
|
1052
|
-
"long": "y年M月d日",
|
|
1053
|
-
"medium": "y年M月d日",
|
|
1054
|
-
"short": "dd/MM/yy"
|
|
1055
|
-
},
|
|
1056
|
-
"timeFormats": {
|
|
1057
|
-
"full": "zzzz ah:mm:ss",
|
|
1058
|
-
"long": "z ah:mm:ss",
|
|
1059
|
-
"medium": "ah:mm:ss",
|
|
1060
|
-
"short": "ah:mm"
|
|
1061
|
-
},
|
|
1062
|
-
"dateTimeFormats": {
|
|
1063
|
-
"full": "{1} {0}",
|
|
1064
|
-
"long": "{1} {0}",
|
|
1065
|
-
"medium": "{1} {0}",
|
|
1066
|
-
"short": "{1} {0}",
|
|
1067
|
-
"availableFormats": {
|
|
1068
|
-
"Bh": "Bh时",
|
|
1069
|
-
"Bhm": "Bh:mm",
|
|
1070
|
-
"Bhms": "Bh:mm:ss",
|
|
1071
|
-
"d": "d日",
|
|
1072
|
-
"E": "ccc",
|
|
1073
|
-
"EBhm": "EBh:mm",
|
|
1074
|
-
"EBhms": "EBh:mm:ss",
|
|
1075
|
-
"Ed": "d日E",
|
|
1076
|
-
"Ehm": "Eah:mm",
|
|
1077
|
-
"EHm": "EHH:mm",
|
|
1078
|
-
"Ehms": "Eah:mm:ss",
|
|
1079
|
-
"EHms": "EHH:mm:ss",
|
|
1080
|
-
"Gy": "Gy年",
|
|
1081
|
-
"GyMMM": "Gy年M月",
|
|
1082
|
-
"GyMMMd": "Gy年M月d日",
|
|
1083
|
-
"GyMMMEd": "Gy年M月d日E",
|
|
1084
|
-
"h": "ah时",
|
|
1085
|
-
"H": "H时",
|
|
1086
|
-
"hm": "ah:mm",
|
|
1087
|
-
"Hm": "HH:mm",
|
|
1088
|
-
"hms": "ah:mm:ss",
|
|
1089
|
-
"Hms": "HH:mm:ss",
|
|
1090
|
-
"hmsv": "v ah:mm:ss",
|
|
1091
|
-
"Hmsv": "v HH:mm:ss",
|
|
1092
|
-
"hmv": "v ah:mm",
|
|
1093
|
-
"Hmv": "v HH:mm",
|
|
1094
|
-
"M": "M月",
|
|
1095
|
-
"Md": "M-d",
|
|
1096
|
-
"MEd": "M-dE",
|
|
1097
|
-
"MMdd": "MM-dd",
|
|
1098
|
-
"MMM": "M月",
|
|
1099
|
-
"MMMd": "M月d日",
|
|
1100
|
-
"MMMEd": "M月d日E",
|
|
1101
|
-
"MMMMd": "M月d日",
|
|
1102
|
-
"MMMMdd": "M月d日",
|
|
1103
|
-
"ms": "mm:ss",
|
|
1104
|
-
"y": "y年",
|
|
1105
|
-
"yM": "y年M月",
|
|
1106
|
-
"yMd": "y年M月d日",
|
|
1107
|
-
"yMEd": "y年M月d日,E",
|
|
1108
|
-
"yMM": "y年M月",
|
|
1109
|
-
"yMMM": "y年M月",
|
|
1110
|
-
"yMMMd": "y年M月d日",
|
|
1111
|
-
"yMMMEd": "y年M月d日E",
|
|
1112
|
-
"yMMMM": "y年M月",
|
|
1113
|
-
"yQQQ": "y年第Q季度",
|
|
1114
|
-
"yQQQQ": "y年第Q季度",
|
|
1115
|
-
"MMMMW": "MMMM第W周",
|
|
1116
|
-
"yw": "Y年第w周"
|
|
1117
|
-
},
|
|
1118
|
-
"appendItems": {
|
|
1119
|
-
"Day": "{0} ({2}: {1})",
|
|
1120
|
-
"Day-Of-Week": "{0} {1}",
|
|
1121
|
-
"Era": "{1} {0}",
|
|
1122
|
-
"Hour": "{0} ({2}: {1})",
|
|
1123
|
-
"Minute": "{0} ({2}: {1})",
|
|
1124
|
-
"Month": "{0} ({2}: {1})",
|
|
1125
|
-
"Quarter": "{0} ({2}: {1})",
|
|
1126
|
-
"Second": "{0} ({2}: {1})",
|
|
1127
|
-
"Timezone": "{1}{0}",
|
|
1128
|
-
"Week": "{0} ({2}: {1})",
|
|
1129
|
-
"Year": "{1} {0}"
|
|
1130
|
-
},
|
|
1131
|
-
"intervalFormats": {
|
|
1132
|
-
"intervalFormatFallback": "{0}至{1}",
|
|
1133
|
-
"Bh": {
|
|
1134
|
-
"B": "Bh时至Bh时",
|
|
1135
|
-
"h": "Bh时至h时"
|
|
1136
|
-
},
|
|
1137
|
-
"Bhm": {
|
|
1138
|
-
"B": "Bh:mm至Bh:mm",
|
|
1139
|
-
"h": "Bh:mm至h:mm",
|
|
1140
|
-
"m": "Bh:mm至h:mm"
|
|
1141
|
-
},
|
|
1142
|
-
"d": {
|
|
1143
|
-
"d": "d日至d日"
|
|
1144
|
-
},
|
|
1145
|
-
"Gy": {
|
|
1146
|
-
"G": "G y – G y",
|
|
1147
|
-
"y": "G y–y"
|
|
1148
|
-
},
|
|
1149
|
-
"GyM": {
|
|
1150
|
-
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
1151
|
-
"M": "GGGGG y-MM – y-MM",
|
|
1152
|
-
"y": "GGGGG y-MM – y-MM"
|
|
1153
|
-
},
|
|
1154
|
-
"GyMd": {
|
|
1155
|
-
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
1156
|
-
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
1157
|
-
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
1158
|
-
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
1159
|
-
},
|
|
1160
|
-
"GyMEd": {
|
|
1161
|
-
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1162
|
-
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
1163
|
-
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1164
|
-
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
1165
|
-
},
|
|
1166
|
-
"GyMMM": {
|
|
1167
|
-
"G": "G y MMM – G y MMM",
|
|
1168
|
-
"M": "G y MMM–MMM",
|
|
1169
|
-
"y": "G y MMM – y MMM"
|
|
1170
|
-
},
|
|
1171
|
-
"GyMMMd": {
|
|
1172
|
-
"d": "G y MMM d–d",
|
|
1173
|
-
"G": "G y MMM d – G y MMM d",
|
|
1174
|
-
"M": "G y MMM d – MMM d",
|
|
1175
|
-
"y": "G y MMM d – y MMM d"
|
|
1176
|
-
},
|
|
1177
|
-
"GyMMMEd": {
|
|
1178
|
-
"d": "G y MMM d, E – MMM d, E",
|
|
1179
|
-
"G": "G y MMM d, E – G y MMM d, E",
|
|
1180
|
-
"M": "G y MMM d, E – MMM d, E",
|
|
1181
|
-
"y": "G y MMM d, E – y MMM d, E"
|
|
1182
|
-
},
|
|
1183
|
-
"h": {
|
|
1184
|
-
"a": "ah时至ah时",
|
|
1185
|
-
"h": "ah时至h时"
|
|
1186
|
-
},
|
|
1187
|
-
"H": {
|
|
1188
|
-
"H": "HH–HH"
|
|
1189
|
-
},
|
|
1190
|
-
"hm": {
|
|
1191
|
-
"a": "ah:mm至ah:mm",
|
|
1192
|
-
"h": "ah:mm至h:mm",
|
|
1193
|
-
"m": "ah:mm至h:mm"
|
|
1194
|
-
},
|
|
1195
|
-
"Hm": {
|
|
1196
|
-
"H": "HH:mm–HH:mm",
|
|
1197
|
-
"m": "HH:mm–HH:mm"
|
|
1198
|
-
},
|
|
1199
|
-
"hmv": {
|
|
1200
|
-
"a": "vah:mm至ah:mm",
|
|
1201
|
-
"h": "vah:mm至h:mm",
|
|
1202
|
-
"m": "vah:mm至h:mm"
|
|
1203
|
-
},
|
|
1204
|
-
"Hmv": {
|
|
1205
|
-
"H": "vHH:mm–HH:mm",
|
|
1206
|
-
"m": "vHH:mm–HH:mm"
|
|
1207
|
-
},
|
|
1208
|
-
"hv": {
|
|
1209
|
-
"a": "vah时至ah时",
|
|
1210
|
-
"h": "vah时至h时"
|
|
1211
|
-
},
|
|
1212
|
-
"Hv": {
|
|
1213
|
-
"H": "vHH–HH"
|
|
1214
|
-
},
|
|
1215
|
-
"M": {
|
|
1216
|
-
"M": "M–M月"
|
|
1217
|
-
},
|
|
1218
|
-
"Md": {
|
|
1219
|
-
"d": "M-d至M-d",
|
|
1220
|
-
"M": "M-d至M-d"
|
|
1221
|
-
},
|
|
1222
|
-
"MEd": {
|
|
1223
|
-
"d": "M-dE至M-dE",
|
|
1224
|
-
"M": "M-dE至M-dE"
|
|
1225
|
-
},
|
|
1226
|
-
"MMM": {
|
|
1227
|
-
"M": "MMM – MMM"
|
|
1228
|
-
},
|
|
1229
|
-
"MMMd": {
|
|
1230
|
-
"d": "M月d日至d日",
|
|
1231
|
-
"M": "M月d日至M月d日"
|
|
1232
|
-
},
|
|
1233
|
-
"MMMEd": {
|
|
1234
|
-
"d": "M月d日E至M月d日E",
|
|
1235
|
-
"M": "M月d日E至M月d日E"
|
|
1236
|
-
},
|
|
1237
|
-
"y": {
|
|
1238
|
-
"y": "y–y年"
|
|
1239
|
-
},
|
|
1240
|
-
"yM": {
|
|
1241
|
-
"M": "y年M月至y年M月",
|
|
1242
|
-
"y": "y年M月至y年M月"
|
|
1243
|
-
},
|
|
1244
|
-
"yMd": {
|
|
1245
|
-
"d": "d/M/y至d/M/y",
|
|
1246
|
-
"M": "d/M/y至d/M/y",
|
|
1247
|
-
"y": "d/M/y至d/M/y"
|
|
1248
|
-
},
|
|
1249
|
-
"yMEd": {
|
|
1250
|
-
"d": "d/M/yE至d/M/yE",
|
|
1251
|
-
"M": "d/M/yE至d/M/yE",
|
|
1252
|
-
"y": "d/M/yE至d/M/yE"
|
|
1253
|
-
},
|
|
1254
|
-
"yMMM": {
|
|
1255
|
-
"M": "y年M月至M月",
|
|
1256
|
-
"y": "y年M月至y年M月"
|
|
1257
|
-
},
|
|
1258
|
-
"yMMMd": {
|
|
1259
|
-
"d": "y年M月d日至d日",
|
|
1260
|
-
"M": "y年M月d日至M月d日",
|
|
1261
|
-
"y": "y年M月d日至y年M月d日"
|
|
1262
|
-
},
|
|
1263
|
-
"yMMMEd": {
|
|
1264
|
-
"d": "y年M月d日E至d日E",
|
|
1265
|
-
"M": "y年M月d日E至M月d日E",
|
|
1266
|
-
"y": "y年M月d日E至y年M月d日E"
|
|
1267
|
-
},
|
|
1268
|
-
"yMMMM": {
|
|
1269
|
-
"M": "y年M月至M月",
|
|
1270
|
-
"y": "y年M月至y年M月"
|
|
1271
|
-
}
|
|
1272
|
-
}
|
|
1273
|
-
},
|
|
1274
|
-
"months": {
|
|
1275
|
-
"format": {
|
|
1276
|
-
"abbreviated": [
|
|
1277
|
-
"1月",
|
|
1278
|
-
"2月",
|
|
1279
|
-
"3月",
|
|
1280
|
-
"4月",
|
|
1281
|
-
"5月",
|
|
1282
|
-
"6月",
|
|
1283
|
-
"7月",
|
|
1284
|
-
"8月",
|
|
1285
|
-
"9月",
|
|
1286
|
-
"10月",
|
|
1287
|
-
"11月",
|
|
1288
|
-
"12月"
|
|
1289
|
-
],
|
|
1290
|
-
"narrow": [
|
|
1291
|
-
"1",
|
|
1292
|
-
"2",
|
|
1293
|
-
"3",
|
|
1294
|
-
"4",
|
|
1295
|
-
"5",
|
|
1296
|
-
"6",
|
|
1297
|
-
"7",
|
|
1298
|
-
"8",
|
|
1299
|
-
"9",
|
|
1300
|
-
"10",
|
|
1301
|
-
"11",
|
|
1302
|
-
"12"
|
|
1303
|
-
],
|
|
1304
|
-
"wide": [
|
|
1305
|
-
"一月",
|
|
1306
|
-
"二月",
|
|
1307
|
-
"三月",
|
|
1308
|
-
"四月",
|
|
1309
|
-
"五月",
|
|
1310
|
-
"六月",
|
|
1311
|
-
"七月",
|
|
1312
|
-
"八月",
|
|
1313
|
-
"九月",
|
|
1314
|
-
"十月",
|
|
1315
|
-
"十一月",
|
|
1316
|
-
"十二月"
|
|
1317
|
-
]
|
|
1318
|
-
},
|
|
1319
|
-
"stand-alone": {
|
|
1320
|
-
"abbreviated": [
|
|
1321
|
-
"1月",
|
|
1322
|
-
"2月",
|
|
1323
|
-
"3月",
|
|
1324
|
-
"4月",
|
|
1325
|
-
"5月",
|
|
1326
|
-
"6月",
|
|
1327
|
-
"7月",
|
|
1328
|
-
"8月",
|
|
1329
|
-
"9月",
|
|
1330
|
-
"10月",
|
|
1331
|
-
"11月",
|
|
1332
|
-
"12月"
|
|
1333
|
-
],
|
|
1334
|
-
"narrow": [
|
|
1335
|
-
"1",
|
|
1336
|
-
"2",
|
|
1337
|
-
"3",
|
|
1338
|
-
"4",
|
|
1339
|
-
"5",
|
|
1340
|
-
"6",
|
|
1341
|
-
"7",
|
|
1342
|
-
"8",
|
|
1343
|
-
"9",
|
|
1344
|
-
"10",
|
|
1345
|
-
"11",
|
|
1346
|
-
"12"
|
|
1347
|
-
],
|
|
1348
|
-
"wide": [
|
|
1349
|
-
"一月",
|
|
1350
|
-
"二月",
|
|
1351
|
-
"三月",
|
|
1352
|
-
"四月",
|
|
1353
|
-
"五月",
|
|
1354
|
-
"六月",
|
|
1355
|
-
"七月",
|
|
1356
|
-
"八月",
|
|
1357
|
-
"九月",
|
|
1358
|
-
"十月",
|
|
1359
|
-
"十一月",
|
|
1360
|
-
"十二月"
|
|
1361
|
-
]
|
|
1362
|
-
}
|
|
1363
|
-
},
|
|
1364
|
-
"days": {
|
|
1365
|
-
"format": {
|
|
1366
|
-
"abbreviated": [
|
|
1367
|
-
"周日",
|
|
1368
|
-
"周一",
|
|
1369
|
-
"周二",
|
|
1370
|
-
"周三",
|
|
1371
|
-
"周四",
|
|
1372
|
-
"周五",
|
|
1373
|
-
"周六"
|
|
1374
|
-
],
|
|
1375
|
-
"narrow": [
|
|
1376
|
-
"日",
|
|
1377
|
-
"一",
|
|
1378
|
-
"二",
|
|
1379
|
-
"三",
|
|
1380
|
-
"四",
|
|
1381
|
-
"五",
|
|
1382
|
-
"六"
|
|
1383
|
-
],
|
|
1384
|
-
"short": [
|
|
1385
|
-
"周日",
|
|
1386
|
-
"周一",
|
|
1387
|
-
"周二",
|
|
1388
|
-
"周三",
|
|
1389
|
-
"周四",
|
|
1390
|
-
"周五",
|
|
1391
|
-
"周六"
|
|
1392
|
-
],
|
|
1393
|
-
"wide": [
|
|
1394
|
-
"星期日",
|
|
1395
|
-
"星期一",
|
|
1396
|
-
"星期二",
|
|
1397
|
-
"星期三",
|
|
1398
|
-
"星期四",
|
|
1399
|
-
"星期五",
|
|
1400
|
-
"星期六"
|
|
1401
|
-
]
|
|
1402
|
-
},
|
|
1403
|
-
"stand-alone": {
|
|
1404
|
-
"abbreviated": [
|
|
1405
|
-
"周日",
|
|
1406
|
-
"周一",
|
|
1407
|
-
"周二",
|
|
1408
|
-
"周三",
|
|
1409
|
-
"周四",
|
|
1410
|
-
"周五",
|
|
1411
|
-
"周六"
|
|
1412
|
-
],
|
|
1413
|
-
"narrow": [
|
|
1414
|
-
"日",
|
|
1415
|
-
"一",
|
|
1416
|
-
"二",
|
|
1417
|
-
"三",
|
|
1418
|
-
"四",
|
|
1419
|
-
"五",
|
|
1420
|
-
"六"
|
|
1421
|
-
],
|
|
1422
|
-
"short": [
|
|
1423
|
-
"周日",
|
|
1424
|
-
"周一",
|
|
1425
|
-
"周二",
|
|
1426
|
-
"周三",
|
|
1427
|
-
"周四",
|
|
1428
|
-
"周五",
|
|
1429
|
-
"周六"
|
|
1430
|
-
],
|
|
1431
|
-
"wide": [
|
|
1432
|
-
"星期日",
|
|
1433
|
-
"星期一",
|
|
1434
|
-
"星期二",
|
|
1435
|
-
"星期三",
|
|
1436
|
-
"星期四",
|
|
1437
|
-
"星期五",
|
|
1438
|
-
"星期六"
|
|
1439
|
-
]
|
|
1440
|
-
}
|
|
1441
|
-
},
|
|
1442
|
-
"quarters": {
|
|
1443
|
-
"format": {
|
|
1444
|
-
"abbreviated": [
|
|
1445
|
-
"1季度",
|
|
1446
|
-
"2季度",
|
|
1447
|
-
"3季度",
|
|
1448
|
-
"4季度"
|
|
1449
|
-
],
|
|
1450
|
-
"narrow": [
|
|
1451
|
-
"1",
|
|
1452
|
-
"2",
|
|
1453
|
-
"3",
|
|
1454
|
-
"4"
|
|
1455
|
-
],
|
|
1456
|
-
"wide": [
|
|
1457
|
-
"第一季度",
|
|
1458
|
-
"第二季度",
|
|
1459
|
-
"第三季度",
|
|
1460
|
-
"第四季度"
|
|
1461
|
-
]
|
|
1462
|
-
},
|
|
1463
|
-
"stand-alone": {
|
|
1464
|
-
"abbreviated": [
|
|
1465
|
-
"1季度",
|
|
1466
|
-
"2季度",
|
|
1467
|
-
"3季度",
|
|
1468
|
-
"4季度"
|
|
1469
|
-
],
|
|
1470
|
-
"narrow": [
|
|
1471
|
-
"1",
|
|
1472
|
-
"2",
|
|
1473
|
-
"3",
|
|
1474
|
-
"4"
|
|
1475
|
-
],
|
|
1476
|
-
"wide": [
|
|
1477
|
-
"第一季度",
|
|
1478
|
-
"第二季度",
|
|
1479
|
-
"第三季度",
|
|
1480
|
-
"第四季度"
|
|
1481
|
-
]
|
|
1482
|
-
}
|
|
1483
|
-
},
|
|
1484
|
-
"dayPeriods": {
|
|
1485
|
-
"format": {
|
|
1486
|
-
"abbreviated": [
|
|
1487
|
-
"上午",
|
|
1488
|
-
"下午"
|
|
1489
|
-
],
|
|
1490
|
-
"narrow": [
|
|
1491
|
-
"上午",
|
|
1492
|
-
"下午"
|
|
1493
|
-
],
|
|
1494
|
-
"wide": [
|
|
1495
|
-
"上午",
|
|
1496
|
-
"下午"
|
|
1497
|
-
]
|
|
1498
|
-
},
|
|
1499
|
-
"stand-alone": {
|
|
1500
|
-
"abbreviated": [
|
|
1501
|
-
"上午",
|
|
1502
|
-
"下午"
|
|
1503
|
-
],
|
|
1504
|
-
"narrow": [
|
|
1505
|
-
"上午",
|
|
1506
|
-
"下午"
|
|
1507
|
-
],
|
|
1508
|
-
"wide": [
|
|
1509
|
-
"上午",
|
|
1510
|
-
"下午"
|
|
1511
|
-
]
|
|
1512
|
-
}
|
|
1513
|
-
},
|
|
1514
|
-
"era-wide": {
|
|
1515
|
-
"0": "公元前",
|
|
1516
|
-
"1": "公元"
|
|
1517
|
-
},
|
|
1518
|
-
"era-abbreviated": {
|
|
1519
|
-
"0": "公元前",
|
|
1520
|
-
"1": "公元"
|
|
1521
|
-
},
|
|
1522
|
-
"era-narrow": {
|
|
1523
|
-
"0": "公元前",
|
|
1524
|
-
"1": "公元"
|
|
1525
|
-
}
|
|
1526
|
-
},
|
|
1527
|
-
"ca-islamic": {
|
|
1528
|
-
"dateFormats": {
|
|
1529
|
-
"full": "Gy年M月d日EEEE",
|
|
1530
|
-
"long": "Gy年M月d日",
|
|
1531
|
-
"medium": "Gy年M月d日",
|
|
1532
|
-
"short": "Gd/M/yy"
|
|
1533
|
-
},
|
|
1534
|
-
"timeFormats": {
|
|
1535
|
-
"full": "zzzz ah:mm:ss",
|
|
1536
|
-
"long": "z ah:mm:ss",
|
|
1537
|
-
"medium": "ah:mm:ss",
|
|
1538
|
-
"short": "ah:mm"
|
|
1539
|
-
},
|
|
1540
|
-
"dateTimeFormats": {
|
|
1541
|
-
"full": "{1} {0}",
|
|
1542
|
-
"long": "{1} {0}",
|
|
1543
|
-
"medium": "{1} {0}",
|
|
1544
|
-
"short": "{1} {0}",
|
|
1545
|
-
"availableFormats": {
|
|
1546
|
-
"Bh": "Bh时",
|
|
1547
|
-
"Bhm": "Bh:mm",
|
|
1548
|
-
"Bhms": "Bh:mm:ss",
|
|
1549
|
-
"d": "d日",
|
|
1550
|
-
"E": "ccc",
|
|
1551
|
-
"EBhm": "EB h:mm",
|
|
1552
|
-
"EBhms": "EB h:mm:ss",
|
|
1553
|
-
"Ed": "d日E",
|
|
1554
|
-
"Ehm": "Ea h:mm",
|
|
1555
|
-
"EHm": "E HH:mm",
|
|
1556
|
-
"Ehms": "Ea h:mm:ss",
|
|
1557
|
-
"EHms": "E HH:mm:ss",
|
|
1558
|
-
"Gy": "Gy年",
|
|
1559
|
-
"GyMMM": "Gy年M月",
|
|
1560
|
-
"GyMMMd": "Gy年M月d日",
|
|
1561
|
-
"GyMMMEd": "Gy年M月d日E",
|
|
1562
|
-
"h": "ah时",
|
|
1563
|
-
"H": "H时",
|
|
1564
|
-
"hm": "ah:mm",
|
|
1565
|
-
"Hm": "HH:mm",
|
|
1566
|
-
"hms": "ah:mm:ss",
|
|
1567
|
-
"Hms": "HH:mm:ss",
|
|
1568
|
-
"M": "M月",
|
|
1569
|
-
"Md": "M-d",
|
|
1570
|
-
"MEd": "M-dE",
|
|
1571
|
-
"MMdd": "MM-dd",
|
|
1572
|
-
"MMM": "LLL",
|
|
1573
|
-
"MMMd": "M月d日",
|
|
1574
|
-
"MMMEd": "M月d日E",
|
|
1575
|
-
"MMMMd": "M月d日",
|
|
1576
|
-
"MMMMdd": "M月d日",
|
|
1577
|
-
"ms": "mm:ss",
|
|
1578
|
-
"y": "Gy年",
|
|
1579
|
-
"yyyy": "Gy年",
|
|
1580
|
-
"yyyyM": "Gy年M月",
|
|
1581
|
-
"yyyyMd": "Gy年M月d日",
|
|
1582
|
-
"yyyyMEd": "Gy年M月d日,E",
|
|
1583
|
-
"yyyyMMM": "Gy年M月",
|
|
1584
|
-
"yyyyMMMd": "Gy年M月d日",
|
|
1585
|
-
"yyyyMMMEd": "Gy年MM月d日E",
|
|
1586
|
-
"yyyyMMMM": "Gy年M月",
|
|
1587
|
-
"yyyyQQQ": "Gy年第Q季度",
|
|
1588
|
-
"yyyyQQQQ": "Gy年第Q季度"
|
|
1589
|
-
},
|
|
1590
|
-
"appendItems": {
|
|
1591
|
-
"Day": "{0} ({2}: {1})",
|
|
1592
|
-
"Day-Of-Week": "{0} {1}",
|
|
1593
|
-
"Era": "{1} {0}",
|
|
1594
|
-
"Hour": "{0} ({2}: {1})",
|
|
1595
|
-
"Minute": "{0} ({2}: {1})",
|
|
1596
|
-
"Month": "{0} ({2}: {1})",
|
|
1597
|
-
"Quarter": "{0} ({2}: {1})",
|
|
1598
|
-
"Second": "{0} ({2}: {1})",
|
|
1599
|
-
"Timezone": "{0} {1}",
|
|
1600
|
-
"Week": "{0} ({2}: {1})",
|
|
1601
|
-
"Year": "{1} {0}"
|
|
1602
|
-
},
|
|
1603
|
-
"intervalFormats": {
|
|
1604
|
-
"intervalFormatFallback": "{0}至{1}",
|
|
1605
|
-
"Bh": {
|
|
1606
|
-
"B": "Bh时至Bh时",
|
|
1607
|
-
"h": "Bh时至h时"
|
|
1608
|
-
},
|
|
1609
|
-
"Bhm": {
|
|
1610
|
-
"B": "Bh:mm至Bh:mm",
|
|
1611
|
-
"h": "Bh:mm至h:mm",
|
|
1612
|
-
"m": "Bh:mm至h:mm"
|
|
1613
|
-
},
|
|
1614
|
-
"d": {
|
|
1615
|
-
"d": "d至d日"
|
|
1616
|
-
},
|
|
1617
|
-
"Gy": {
|
|
1618
|
-
"G": "G y – G y",
|
|
1619
|
-
"y": "G y–y"
|
|
1620
|
-
},
|
|
1621
|
-
"GyM": {
|
|
1622
|
-
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
1623
|
-
"M": "GGGGG y-MM – y-MM",
|
|
1624
|
-
"y": "GGGGG y-MM – y-MM"
|
|
1625
|
-
},
|
|
1626
|
-
"GyMd": {
|
|
1627
|
-
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
1628
|
-
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
1629
|
-
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
1630
|
-
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
1631
|
-
},
|
|
1632
|
-
"GyMEd": {
|
|
1633
|
-
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1634
|
-
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
1635
|
-
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
1636
|
-
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
1637
|
-
},
|
|
1638
|
-
"GyMMM": {
|
|
1639
|
-
"G": "G y MMM – G y MMM",
|
|
1640
|
-
"M": "G y MMM–MMM",
|
|
1641
|
-
"y": "G y MMM – y MMM"
|
|
1642
|
-
},
|
|
1643
|
-
"GyMMMd": {
|
|
1644
|
-
"d": "G y MMM d–d",
|
|
1645
|
-
"G": "G y MMM d – G y MMM d",
|
|
1646
|
-
"M": "G y MMM d – MMM d",
|
|
1647
|
-
"y": "G y MMM d – y MMM d"
|
|
1648
|
-
},
|
|
1649
|
-
"GyMMMEd": {
|
|
1650
|
-
"d": "G y MMM d, E – MMM d, E",
|
|
1651
|
-
"G": "G y MMM d, E – G y MMM d, E",
|
|
1652
|
-
"M": "G y MMM d, E – MMM d, E",
|
|
1653
|
-
"y": "G y MMM d, E – y MMM d, E"
|
|
1654
|
-
},
|
|
1655
|
-
"h": {
|
|
1656
|
-
"a": "ah时至ah时",
|
|
1657
|
-
"h": "ah时至h时"
|
|
1658
|
-
},
|
|
1659
|
-
"H": {
|
|
1660
|
-
"H": "HH–HH"
|
|
1661
|
-
},
|
|
1662
|
-
"hm": {
|
|
1663
|
-
"a": "ah:mm至ah:mm",
|
|
1664
|
-
"h": "ah:mm至h:mm",
|
|
1665
|
-
"m": "ah:mm至h:mm"
|
|
1666
|
-
},
|
|
1667
|
-
"Hm": {
|
|
1668
|
-
"H": "HH:mm–HH:mm",
|
|
1669
|
-
"m": "HH:mm–HH:mm"
|
|
1670
|
-
},
|
|
1671
|
-
"hmv": {
|
|
1672
|
-
"a": "vah:mm至ah:mm",
|
|
1673
|
-
"h": "vah:mm至h:mm",
|
|
1674
|
-
"m": "vah:mm至h:mm"
|
|
1675
|
-
},
|
|
1676
|
-
"Hmv": {
|
|
1677
|
-
"H": "vHH:mm–HH:mm",
|
|
1678
|
-
"m": "vHH:mm–HH:mm"
|
|
1679
|
-
},
|
|
1680
|
-
"hv": {
|
|
1681
|
-
"a": "vah时至ah时",
|
|
1682
|
-
"h": "vah时至h时"
|
|
1683
|
-
},
|
|
1684
|
-
"Hv": {
|
|
1685
|
-
"H": "vHH–HH"
|
|
1686
|
-
},
|
|
1687
|
-
"M": {
|
|
1688
|
-
"M": "M–M月"
|
|
1689
|
-
},
|
|
1690
|
-
"Md": {
|
|
1691
|
-
"d": "M-d至M-d",
|
|
1692
|
-
"M": "M-d至M-d"
|
|
1693
|
-
},
|
|
1694
|
-
"MEd": {
|
|
1695
|
-
"d": "M-dE至M-dE",
|
|
1696
|
-
"M": "M-dE至M-dE"
|
|
1697
|
-
},
|
|
1698
|
-
"MMM": {
|
|
1699
|
-
"M": "M月至M月"
|
|
1700
|
-
},
|
|
1701
|
-
"MMMd": {
|
|
1702
|
-
"d": "M月d日至d日",
|
|
1703
|
-
"M": "M月d日至M月d日"
|
|
1704
|
-
},
|
|
1705
|
-
"MMMEd": {
|
|
1706
|
-
"d": "M月d日E至M月d日E",
|
|
1707
|
-
"M": "M月d日E至M月d日E"
|
|
1708
|
-
},
|
|
1709
|
-
"y": {
|
|
1710
|
-
"y": "Gy–y年"
|
|
1711
|
-
},
|
|
1712
|
-
"yM": {
|
|
1713
|
-
"M": "y年M月至y年M月",
|
|
1714
|
-
"y": "Gy年M月至y年M月"
|
|
1715
|
-
},
|
|
1716
|
-
"yMd": {
|
|
1717
|
-
"d": "d/M/y至d/M/y",
|
|
1718
|
-
"M": "d/M/y至d/M/y",
|
|
1719
|
-
"y": "d/M/y至d/M/y"
|
|
1720
|
-
},
|
|
1721
|
-
"yMEd": {
|
|
1722
|
-
"d": "d/M/yE至d/M/yE",
|
|
1723
|
-
"M": "d/M/yE至d/M/yE",
|
|
1724
|
-
"y": "d/M/yE至d/M/yE"
|
|
1725
|
-
},
|
|
1726
|
-
"yMMM": {
|
|
1727
|
-
"M": "Gy年M月至M月",
|
|
1728
|
-
"y": "Gy年M月至y年M月"
|
|
1729
|
-
},
|
|
1730
|
-
"yMMMd": {
|
|
1731
|
-
"d": "Gy年M月d日至d日",
|
|
1732
|
-
"M": "Gy年M月d日至M月d日",
|
|
1733
|
-
"y": "Gy年M月d日至y年M月d日"
|
|
1734
|
-
},
|
|
1735
|
-
"yMMMEd": {
|
|
1736
|
-
"d": "Gy年M月d日E至d日E",
|
|
1737
|
-
"M": "Gy年M月d日E至M月d日E",
|
|
1738
|
-
"y": "Gy年M月d日E至y年M月d日E"
|
|
1739
|
-
},
|
|
1740
|
-
"yMMMM": {
|
|
1741
|
-
"M": "Gy年M月至M月",
|
|
1742
|
-
"y": "Gy年M月至y年M月"
|
|
1743
|
-
}
|
|
1744
|
-
}
|
|
1745
|
-
},
|
|
1746
|
-
"months": {
|
|
1747
|
-
"format": {
|
|
1748
|
-
"abbreviated": [
|
|
1749
|
-
"1月",
|
|
1750
|
-
"2月",
|
|
1751
|
-
"3月",
|
|
1752
|
-
"4月",
|
|
1753
|
-
"5月",
|
|
1754
|
-
"6月",
|
|
1755
|
-
"7月",
|
|
1756
|
-
"8月",
|
|
1757
|
-
"9月",
|
|
1758
|
-
"10月",
|
|
1759
|
-
"11月",
|
|
1760
|
-
"12月"
|
|
1761
|
-
],
|
|
1762
|
-
"narrow": [
|
|
1763
|
-
"1",
|
|
1764
|
-
"2",
|
|
1765
|
-
"3",
|
|
1766
|
-
"4",
|
|
1767
|
-
"5",
|
|
1768
|
-
"6",
|
|
1769
|
-
"7",
|
|
1770
|
-
"8",
|
|
1771
|
-
"9",
|
|
1772
|
-
"10",
|
|
1773
|
-
"11",
|
|
1774
|
-
"12"
|
|
1775
|
-
],
|
|
1776
|
-
"wide": [
|
|
1777
|
-
"一月",
|
|
1778
|
-
"二月",
|
|
1779
|
-
"三月",
|
|
1780
|
-
"四月",
|
|
1781
|
-
"五月",
|
|
1782
|
-
"六月",
|
|
1783
|
-
"七月",
|
|
1784
|
-
"八月",
|
|
1785
|
-
"九月",
|
|
1786
|
-
"十月",
|
|
1787
|
-
"十一月",
|
|
1788
|
-
"十二月"
|
|
1789
|
-
]
|
|
1790
|
-
},
|
|
1791
|
-
"stand-alone": {
|
|
1792
|
-
"abbreviated": [
|
|
1793
|
-
"1月",
|
|
1794
|
-
"2月",
|
|
1795
|
-
"3月",
|
|
1796
|
-
"4月",
|
|
1797
|
-
"5月",
|
|
1798
|
-
"6月",
|
|
1799
|
-
"7月",
|
|
1800
|
-
"8月",
|
|
1801
|
-
"9月",
|
|
1802
|
-
"10月",
|
|
1803
|
-
"11月",
|
|
1804
|
-
"12月"
|
|
1805
|
-
],
|
|
1806
|
-
"narrow": [
|
|
1807
|
-
"1",
|
|
1808
|
-
"2",
|
|
1809
|
-
"3",
|
|
1810
|
-
"4",
|
|
1811
|
-
"5",
|
|
1812
|
-
"6",
|
|
1813
|
-
"7",
|
|
1814
|
-
"8",
|
|
1815
|
-
"9",
|
|
1816
|
-
"10",
|
|
1817
|
-
"11",
|
|
1818
|
-
"12"
|
|
1819
|
-
],
|
|
1820
|
-
"wide": [
|
|
1821
|
-
"一月",
|
|
1822
|
-
"二月",
|
|
1823
|
-
"三月",
|
|
1824
|
-
"四月",
|
|
1825
|
-
"五月",
|
|
1826
|
-
"六月",
|
|
1827
|
-
"七月",
|
|
1828
|
-
"八月",
|
|
1829
|
-
"九月",
|
|
1830
|
-
"十月",
|
|
1831
|
-
"十一月",
|
|
1832
|
-
"十二月"
|
|
1833
|
-
]
|
|
1834
|
-
}
|
|
1835
|
-
},
|
|
1836
|
-
"days": {
|
|
1837
|
-
"format": {
|
|
1838
|
-
"abbreviated": [
|
|
1839
|
-
"周日",
|
|
1840
|
-
"周一",
|
|
1841
|
-
"周二",
|
|
1842
|
-
"周三",
|
|
1843
|
-
"周四",
|
|
1844
|
-
"周五",
|
|
1845
|
-
"周六"
|
|
1846
|
-
],
|
|
1847
|
-
"narrow": [
|
|
1848
|
-
"日",
|
|
1849
|
-
"一",
|
|
1850
|
-
"二",
|
|
1851
|
-
"三",
|
|
1852
|
-
"四",
|
|
1853
|
-
"五",
|
|
1854
|
-
"六"
|
|
1855
|
-
],
|
|
1856
|
-
"short": [
|
|
1857
|
-
"周日",
|
|
1858
|
-
"周一",
|
|
1859
|
-
"周二",
|
|
1860
|
-
"周三",
|
|
1861
|
-
"周四",
|
|
1862
|
-
"周五",
|
|
1863
|
-
"周六"
|
|
1864
|
-
],
|
|
1865
|
-
"wide": [
|
|
1866
|
-
"星期日",
|
|
1867
|
-
"星期一",
|
|
1868
|
-
"星期二",
|
|
1869
|
-
"星期三",
|
|
1870
|
-
"星期四",
|
|
1871
|
-
"星期五",
|
|
1872
|
-
"星期六"
|
|
1873
|
-
]
|
|
1874
|
-
},
|
|
1875
|
-
"stand-alone": {
|
|
1876
|
-
"abbreviated": [
|
|
1877
|
-
"周日",
|
|
1878
|
-
"周一",
|
|
1879
|
-
"周二",
|
|
1880
|
-
"周三",
|
|
1881
|
-
"周四",
|
|
1882
|
-
"周五",
|
|
1883
|
-
"周六"
|
|
1884
|
-
],
|
|
1885
|
-
"narrow": [
|
|
1886
|
-
"日",
|
|
1887
|
-
"一",
|
|
1888
|
-
"二",
|
|
1889
|
-
"三",
|
|
1890
|
-
"四",
|
|
1891
|
-
"五",
|
|
1892
|
-
"六"
|
|
1893
|
-
],
|
|
1894
|
-
"short": [
|
|
1895
|
-
"周日",
|
|
1896
|
-
"周一",
|
|
1897
|
-
"周二",
|
|
1898
|
-
"周三",
|
|
1899
|
-
"周四",
|
|
1900
|
-
"周五",
|
|
1901
|
-
"周六"
|
|
1902
|
-
],
|
|
1903
|
-
"wide": [
|
|
1904
|
-
"星期日",
|
|
1905
|
-
"星期一",
|
|
1906
|
-
"星期二",
|
|
1907
|
-
"星期三",
|
|
1908
|
-
"星期四",
|
|
1909
|
-
"星期五",
|
|
1910
|
-
"星期六"
|
|
1911
|
-
]
|
|
1912
|
-
}
|
|
1913
|
-
},
|
|
1914
|
-
"quarters": {
|
|
1915
|
-
"format": {
|
|
1916
|
-
"abbreviated": [
|
|
1917
|
-
"1季度",
|
|
1918
|
-
"2季度",
|
|
1919
|
-
"3季度",
|
|
1920
|
-
"4季度"
|
|
1921
|
-
],
|
|
1922
|
-
"narrow": [
|
|
1923
|
-
"1",
|
|
1924
|
-
"2",
|
|
1925
|
-
"3",
|
|
1926
|
-
"4"
|
|
1927
|
-
],
|
|
1928
|
-
"wide": [
|
|
1929
|
-
"第一季度",
|
|
1930
|
-
"第二季度",
|
|
1931
|
-
"第三季度",
|
|
1932
|
-
"第四季度"
|
|
1933
|
-
]
|
|
1934
|
-
},
|
|
1935
|
-
"stand-alone": {
|
|
1936
|
-
"abbreviated": [
|
|
1937
|
-
"1季度",
|
|
1938
|
-
"2季度",
|
|
1939
|
-
"3季度",
|
|
1940
|
-
"4季度"
|
|
1941
|
-
],
|
|
1942
|
-
"narrow": [
|
|
1943
|
-
"1",
|
|
1944
|
-
"2",
|
|
1945
|
-
"3",
|
|
1946
|
-
"4"
|
|
1947
|
-
],
|
|
1948
|
-
"wide": [
|
|
1949
|
-
"第一季度",
|
|
1950
|
-
"第二季度",
|
|
1951
|
-
"第三季度",
|
|
1952
|
-
"第四季度"
|
|
1953
|
-
]
|
|
1954
|
-
}
|
|
1955
|
-
},
|
|
1956
|
-
"dayPeriods": {
|
|
1957
|
-
"format": {
|
|
1958
|
-
"abbreviated": [
|
|
1959
|
-
"上午",
|
|
1960
|
-
"下午"
|
|
1961
|
-
],
|
|
1962
|
-
"narrow": [
|
|
1963
|
-
"上午",
|
|
1964
|
-
"下午"
|
|
1965
|
-
],
|
|
1966
|
-
"wide": [
|
|
1967
|
-
"上午",
|
|
1968
|
-
"下午"
|
|
1969
|
-
]
|
|
1970
|
-
},
|
|
1971
|
-
"stand-alone": {
|
|
1972
|
-
"abbreviated": [
|
|
1973
|
-
"上午",
|
|
1974
|
-
"下午"
|
|
1975
|
-
],
|
|
1976
|
-
"narrow": [
|
|
1977
|
-
"上午",
|
|
1978
|
-
"下午"
|
|
1979
|
-
],
|
|
1980
|
-
"wide": [
|
|
1981
|
-
"上午",
|
|
1982
|
-
"下午"
|
|
1983
|
-
]
|
|
1984
|
-
}
|
|
1985
|
-
},
|
|
1986
|
-
"era-wide": {
|
|
1987
|
-
"0": "伊斯兰历"
|
|
1988
|
-
},
|
|
1989
|
-
"era-abbreviated": {
|
|
1990
|
-
"0": "伊斯兰历"
|
|
1991
|
-
},
|
|
1992
|
-
"era-narrow": {
|
|
1993
|
-
"0": "伊斯兰历"
|
|
1994
|
-
}
|
|
1995
|
-
},
|
|
1996
|
-
"ca-japanese": {
|
|
1997
|
-
"dateFormats": {
|
|
1998
|
-
"full": "Gy年M月d日EEEE",
|
|
1999
|
-
"long": "Gy年M月d日",
|
|
2000
|
-
"medium": "Gy年M月d日",
|
|
2001
|
-
"short": "Gd/M/yy"
|
|
2002
|
-
},
|
|
2003
|
-
"timeFormats": {
|
|
2004
|
-
"full": "zzzz ah:mm:ss",
|
|
2005
|
-
"long": "z ah:mm:ss",
|
|
2006
|
-
"medium": "ah:mm:ss",
|
|
2007
|
-
"short": "ah:mm"
|
|
2008
|
-
},
|
|
2009
|
-
"dateTimeFormats": {
|
|
2010
|
-
"full": "{1} {0}",
|
|
2011
|
-
"long": "{1} {0}",
|
|
2012
|
-
"medium": "{1} {0}",
|
|
2013
|
-
"short": "{1} {0}",
|
|
2014
|
-
"availableFormats": {
|
|
2015
|
-
"Bh": "Bh时",
|
|
2016
|
-
"Bhm": "Bh:mm",
|
|
2017
|
-
"Bhms": "Bh:mm:ss",
|
|
2018
|
-
"d": "d日",
|
|
2019
|
-
"E": "ccc",
|
|
2020
|
-
"EBhm": "EB h:mm",
|
|
2021
|
-
"EBhms": "EB h:mm:ss",
|
|
2022
|
-
"Ed": "d日E",
|
|
2023
|
-
"Ehm": "Ea h:mm",
|
|
2024
|
-
"EHm": "E HH:mm",
|
|
2025
|
-
"Ehms": "Ea h:mm:ss",
|
|
2026
|
-
"EHms": "E HH:mm:ss",
|
|
2027
|
-
"Gy": "Gy年",
|
|
2028
|
-
"GyMMM": "Gy年M月",
|
|
2029
|
-
"GyMMMd": "Gy年M月d日",
|
|
2030
|
-
"GyMMMEd": "Gy年M月d日E",
|
|
2031
|
-
"h": "ah时",
|
|
2032
|
-
"H": "H时",
|
|
2033
|
-
"hm": "ah:mm",
|
|
2034
|
-
"Hm": "HH:mm",
|
|
2035
|
-
"hms": "ah:mm:ss",
|
|
2036
|
-
"Hms": "HH:mm:ss",
|
|
2037
|
-
"M": "M月",
|
|
2038
|
-
"Md": "M/d",
|
|
2039
|
-
"MEd": "M/dE",
|
|
2040
|
-
"MMdd": "MM-dd",
|
|
2041
|
-
"MMM": "LLL",
|
|
2042
|
-
"MMMd": "M月d日",
|
|
2043
|
-
"MMMEd": "M月d日E",
|
|
2044
|
-
"MMMMd": "M月d日",
|
|
2045
|
-
"MMMMdd": "M月d日",
|
|
2046
|
-
"ms": "mm:ss",
|
|
2047
|
-
"y": "Gy年",
|
|
2048
|
-
"yyyy": "Gy年",
|
|
2049
|
-
"yyyyM": "Gy-MM",
|
|
2050
|
-
"yyyyMd": "Gy-MM-dd",
|
|
2051
|
-
"yyyyMEd": "Gy-M-d(E)",
|
|
2052
|
-
"yyyyMMM": "Gy年M月",
|
|
2053
|
-
"yyyyMMMd": "Gy年M月d日",
|
|
2054
|
-
"yyyyMMMEd": "Gy年M月d日E",
|
|
2055
|
-
"yyyyMMMM": "Gy年M月",
|
|
2056
|
-
"yyyyQQQ": "Gy年第Q季度",
|
|
2057
|
-
"yyyyQQQQ": "Gy年QQQQ"
|
|
2058
|
-
},
|
|
2059
|
-
"appendItems": {
|
|
2060
|
-
"Day": "{0} ({2}: {1})",
|
|
2061
|
-
"Day-Of-Week": "{0} {1}",
|
|
2062
|
-
"Era": "{1} {0}",
|
|
2063
|
-
"Hour": "{0} ({2}: {1})",
|
|
2064
|
-
"Minute": "{0} ({2}: {1})",
|
|
2065
|
-
"Month": "{0} ({2}: {1})",
|
|
2066
|
-
"Quarter": "{0} ({2}: {1})",
|
|
2067
|
-
"Second": "{0} ({2}: {1})",
|
|
2068
|
-
"Timezone": "{0} {1}",
|
|
2069
|
-
"Week": "{0} ({2}: {1})",
|
|
2070
|
-
"Year": "{1} {0}"
|
|
2071
|
-
},
|
|
2072
|
-
"intervalFormats": {
|
|
2073
|
-
"intervalFormatFallback": "{0}至{1}",
|
|
2074
|
-
"Bh": {
|
|
2075
|
-
"B": "Bh时至Bh时",
|
|
2076
|
-
"h": "Bh时至h时"
|
|
2077
|
-
},
|
|
2078
|
-
"Bhm": {
|
|
2079
|
-
"B": "Bh:mm至Bh:mm",
|
|
2080
|
-
"h": "Bh:mm至h:mm",
|
|
2081
|
-
"m": "Bh:mm至h:mm"
|
|
2082
|
-
},
|
|
2083
|
-
"d": {
|
|
2084
|
-
"d": "d至d日"
|
|
2085
|
-
},
|
|
2086
|
-
"Gy": {
|
|
2087
|
-
"G": "G y – G y",
|
|
2088
|
-
"y": "G y–y"
|
|
2089
|
-
},
|
|
2090
|
-
"GyM": {
|
|
2091
|
-
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
2092
|
-
"M": "GGGGG y-MM – y-MM",
|
|
2093
|
-
"y": "GGGGG y-MM – y-MM"
|
|
2094
|
-
},
|
|
2095
|
-
"GyMd": {
|
|
2096
|
-
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
2097
|
-
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
2098
|
-
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
2099
|
-
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
2100
|
-
},
|
|
2101
|
-
"GyMEd": {
|
|
2102
|
-
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2103
|
-
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
2104
|
-
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2105
|
-
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
2106
|
-
},
|
|
2107
|
-
"GyMMM": {
|
|
2108
|
-
"G": "G y MMM – G y MMM",
|
|
2109
|
-
"M": "G y MMM–MMM",
|
|
2110
|
-
"y": "G y MMM – y MMM"
|
|
2111
|
-
},
|
|
2112
|
-
"GyMMMd": {
|
|
2113
|
-
"d": "G y MMM d–d",
|
|
2114
|
-
"G": "G y MMM d – G y MMM d",
|
|
2115
|
-
"M": "G y MMM d – MMM d",
|
|
2116
|
-
"y": "G y MMM d – y MMM d"
|
|
2117
|
-
},
|
|
2118
|
-
"GyMMMEd": {
|
|
2119
|
-
"d": "G y MMM d, E – MMM d, E",
|
|
2120
|
-
"G": "G y MMM d, E – G y MMM d, E",
|
|
2121
|
-
"M": "G y MMM d, E – MMM d, E",
|
|
2122
|
-
"y": "G y MMM d, E – y MMM d, E"
|
|
2123
|
-
},
|
|
2124
|
-
"h": {
|
|
2125
|
-
"a": "ah时至ah时",
|
|
2126
|
-
"h": "ah时至h时"
|
|
2127
|
-
},
|
|
2128
|
-
"H": {
|
|
2129
|
-
"H": "HH–HH"
|
|
2130
|
-
},
|
|
2131
|
-
"hm": {
|
|
2132
|
-
"a": "ah:mm至ah:mm",
|
|
2133
|
-
"h": "ah:mm至h:mm",
|
|
2134
|
-
"m": "ah:mm至h:mm"
|
|
2135
|
-
},
|
|
2136
|
-
"Hm": {
|
|
2137
|
-
"H": "HH:mm–HH:mm",
|
|
2138
|
-
"m": "HH:mm–HH:mm"
|
|
2139
|
-
},
|
|
2140
|
-
"hmv": {
|
|
2141
|
-
"a": "vah:mm至ah:mm",
|
|
2142
|
-
"h": "vah:mm至h:mm",
|
|
2143
|
-
"m": "vah:mm至h:mm"
|
|
2144
|
-
},
|
|
2145
|
-
"Hmv": {
|
|
2146
|
-
"H": "vHH:mm–HH:mm",
|
|
2147
|
-
"m": "vHH:mm–HH:mm"
|
|
2148
|
-
},
|
|
2149
|
-
"hv": {
|
|
2150
|
-
"a": "vah时至ah时",
|
|
2151
|
-
"h": "vah时至h时"
|
|
2152
|
-
},
|
|
2153
|
-
"Hv": {
|
|
2154
|
-
"H": "vHH–HH"
|
|
2155
|
-
},
|
|
2156
|
-
"M": {
|
|
2157
|
-
"M": "M–M月"
|
|
2158
|
-
},
|
|
2159
|
-
"Md": {
|
|
2160
|
-
"d": "M-d至M-d",
|
|
2161
|
-
"M": "M-d至M-d"
|
|
2162
|
-
},
|
|
2163
|
-
"MEd": {
|
|
2164
|
-
"d": "M-dE至M-dE",
|
|
2165
|
-
"M": "M-dE至M-dE"
|
|
2166
|
-
},
|
|
2167
|
-
"MMM": {
|
|
2168
|
-
"M": "M月至M月"
|
|
2169
|
-
},
|
|
2170
|
-
"MMMd": {
|
|
2171
|
-
"d": "M月d日至d日",
|
|
2172
|
-
"M": "M月d日至M月d日"
|
|
2173
|
-
},
|
|
2174
|
-
"MMMEd": {
|
|
2175
|
-
"d": "M月d日E至M月d日E",
|
|
2176
|
-
"M": "M月d日E至M月d日E"
|
|
2177
|
-
},
|
|
2178
|
-
"y": {
|
|
2179
|
-
"y": "Gy–y年",
|
|
2180
|
-
"G": "Gy–Gy年"
|
|
2181
|
-
},
|
|
2182
|
-
"yM": {
|
|
2183
|
-
"M": "y年M月至y年M月",
|
|
2184
|
-
"y": "Gy年M月至y年M月",
|
|
2185
|
-
"G": "Gy年M月至Gy年M月"
|
|
2186
|
-
},
|
|
2187
|
-
"yMd": {
|
|
2188
|
-
"d": "d/M/y至d/M/y",
|
|
2189
|
-
"M": "d/M/y至d/M/y",
|
|
2190
|
-
"y": "d/M/y至d/M/y"
|
|
2191
|
-
},
|
|
2192
|
-
"yMEd": {
|
|
2193
|
-
"d": "d/M/yE至d/M/yE",
|
|
2194
|
-
"M": "d/M/yE至d/M/yE",
|
|
2195
|
-
"y": "d/M/yE至d/M/yE"
|
|
2196
|
-
},
|
|
2197
|
-
"yMMM": {
|
|
2198
|
-
"M": "Gy年M月至M月",
|
|
2199
|
-
"y": "Gy年M月至y年M月",
|
|
2200
|
-
"G": "Gy年M月至Gy年M月"
|
|
2201
|
-
},
|
|
2202
|
-
"yMMMd": {
|
|
2203
|
-
"d": "Gy年M月d日至d日",
|
|
2204
|
-
"M": "Gy年M月d日至M月d日",
|
|
2205
|
-
"y": "Gy年M月d日至y年M月d日",
|
|
2206
|
-
"G": "Gy年M月d日至Gy年M月d日"
|
|
2207
|
-
},
|
|
2208
|
-
"yMMMEd": {
|
|
2209
|
-
"d": "Gy年M月d日E至d日E",
|
|
2210
|
-
"M": "Gy年M月d日E至M月d日E",
|
|
2211
|
-
"y": "Gy年M月d日E至y年M月d日E",
|
|
2212
|
-
"G": "Gy年M月d日E至Gy年M月d日E"
|
|
2213
|
-
},
|
|
2214
|
-
"yMMMM": {
|
|
2215
|
-
"M": "Gy年M月至M月",
|
|
2216
|
-
"y": "Gy年M月至y年M月",
|
|
2217
|
-
"G": "Gy年M月至Gy年M月"
|
|
2218
|
-
}
|
|
2219
|
-
}
|
|
2220
|
-
},
|
|
2221
|
-
"months": {
|
|
2222
|
-
"format": {
|
|
2223
|
-
"abbreviated": [
|
|
2224
|
-
"1月",
|
|
2225
|
-
"2月",
|
|
2226
|
-
"3月",
|
|
2227
|
-
"4月",
|
|
2228
|
-
"5月",
|
|
2229
|
-
"6月",
|
|
2230
|
-
"7月",
|
|
2231
|
-
"8月",
|
|
2232
|
-
"9月",
|
|
2233
|
-
"10月",
|
|
2234
|
-
"11月",
|
|
2235
|
-
"12月"
|
|
2236
|
-
],
|
|
2237
|
-
"narrow": [
|
|
2238
|
-
"1",
|
|
2239
|
-
"2",
|
|
2240
|
-
"3",
|
|
2241
|
-
"4",
|
|
2242
|
-
"5",
|
|
2243
|
-
"6",
|
|
2244
|
-
"7",
|
|
2245
|
-
"8",
|
|
2246
|
-
"9",
|
|
2247
|
-
"10",
|
|
2248
|
-
"11",
|
|
2249
|
-
"12"
|
|
2250
|
-
],
|
|
2251
|
-
"wide": [
|
|
2252
|
-
"一月",
|
|
2253
|
-
"二月",
|
|
2254
|
-
"三月",
|
|
2255
|
-
"四月",
|
|
2256
|
-
"五月",
|
|
2257
|
-
"六月",
|
|
2258
|
-
"七月",
|
|
2259
|
-
"八月",
|
|
2260
|
-
"九月",
|
|
2261
|
-
"十月",
|
|
2262
|
-
"十一月",
|
|
2263
|
-
"十二月"
|
|
2264
|
-
]
|
|
2265
|
-
},
|
|
2266
|
-
"stand-alone": {
|
|
2267
|
-
"abbreviated": [
|
|
2268
|
-
"1月",
|
|
2269
|
-
"2月",
|
|
2270
|
-
"3月",
|
|
2271
|
-
"4月",
|
|
2272
|
-
"5月",
|
|
2273
|
-
"6月",
|
|
2274
|
-
"7月",
|
|
2275
|
-
"8月",
|
|
2276
|
-
"9月",
|
|
2277
|
-
"10月",
|
|
2278
|
-
"11月",
|
|
2279
|
-
"12月"
|
|
2280
|
-
],
|
|
2281
|
-
"narrow": [
|
|
2282
|
-
"1",
|
|
2283
|
-
"2",
|
|
2284
|
-
"3",
|
|
2285
|
-
"4",
|
|
2286
|
-
"5",
|
|
2287
|
-
"6",
|
|
2288
|
-
"7",
|
|
2289
|
-
"8",
|
|
2290
|
-
"9",
|
|
2291
|
-
"10",
|
|
2292
|
-
"11",
|
|
2293
|
-
"12"
|
|
2294
|
-
],
|
|
2295
|
-
"wide": [
|
|
2296
|
-
"一月",
|
|
2297
|
-
"二月",
|
|
2298
|
-
"三月",
|
|
2299
|
-
"四月",
|
|
2300
|
-
"五月",
|
|
2301
|
-
"六月",
|
|
2302
|
-
"七月",
|
|
2303
|
-
"八月",
|
|
2304
|
-
"九月",
|
|
2305
|
-
"十月",
|
|
2306
|
-
"十一月",
|
|
2307
|
-
"十二月"
|
|
2308
|
-
]
|
|
2309
|
-
}
|
|
2310
|
-
},
|
|
2311
|
-
"days": {
|
|
2312
|
-
"format": {
|
|
2313
|
-
"abbreviated": [
|
|
2314
|
-
"周日",
|
|
2315
|
-
"周一",
|
|
2316
|
-
"周二",
|
|
2317
|
-
"周三",
|
|
2318
|
-
"周四",
|
|
2319
|
-
"周五",
|
|
2320
|
-
"周六"
|
|
2321
|
-
],
|
|
2322
|
-
"narrow": [
|
|
2323
|
-
"日",
|
|
2324
|
-
"一",
|
|
2325
|
-
"二",
|
|
2326
|
-
"三",
|
|
2327
|
-
"四",
|
|
2328
|
-
"五",
|
|
2329
|
-
"六"
|
|
2330
|
-
],
|
|
2331
|
-
"short": [
|
|
2332
|
-
"周日",
|
|
2333
|
-
"周一",
|
|
2334
|
-
"周二",
|
|
2335
|
-
"周三",
|
|
2336
|
-
"周四",
|
|
2337
|
-
"周五",
|
|
2338
|
-
"周六"
|
|
2339
|
-
],
|
|
2340
|
-
"wide": [
|
|
2341
|
-
"星期日",
|
|
2342
|
-
"星期一",
|
|
2343
|
-
"星期二",
|
|
2344
|
-
"星期三",
|
|
2345
|
-
"星期四",
|
|
2346
|
-
"星期五",
|
|
2347
|
-
"星期六"
|
|
2348
|
-
]
|
|
2349
|
-
},
|
|
2350
|
-
"stand-alone": {
|
|
2351
|
-
"abbreviated": [
|
|
2352
|
-
"周日",
|
|
2353
|
-
"周一",
|
|
2354
|
-
"周二",
|
|
2355
|
-
"周三",
|
|
2356
|
-
"周四",
|
|
2357
|
-
"周五",
|
|
2358
|
-
"周六"
|
|
2359
|
-
],
|
|
2360
|
-
"narrow": [
|
|
2361
|
-
"日",
|
|
2362
|
-
"一",
|
|
2363
|
-
"二",
|
|
2364
|
-
"三",
|
|
2365
|
-
"四",
|
|
2366
|
-
"五",
|
|
2367
|
-
"六"
|
|
2368
|
-
],
|
|
2369
|
-
"short": [
|
|
2370
|
-
"周日",
|
|
2371
|
-
"周一",
|
|
2372
|
-
"周二",
|
|
2373
|
-
"周三",
|
|
2374
|
-
"周四",
|
|
2375
|
-
"周五",
|
|
2376
|
-
"周六"
|
|
2377
|
-
],
|
|
2378
|
-
"wide": [
|
|
2379
|
-
"星期日",
|
|
2380
|
-
"星期一",
|
|
2381
|
-
"星期二",
|
|
2382
|
-
"星期三",
|
|
2383
|
-
"星期四",
|
|
2384
|
-
"星期五",
|
|
2385
|
-
"星期六"
|
|
2386
|
-
]
|
|
2387
|
-
}
|
|
2388
|
-
},
|
|
2389
|
-
"quarters": {
|
|
2390
|
-
"format": {
|
|
2391
|
-
"abbreviated": [
|
|
2392
|
-
"1季度",
|
|
2393
|
-
"2季度",
|
|
2394
|
-
"3季度",
|
|
2395
|
-
"4季度"
|
|
2396
|
-
],
|
|
2397
|
-
"narrow": [
|
|
2398
|
-
"1",
|
|
2399
|
-
"2",
|
|
2400
|
-
"3",
|
|
2401
|
-
"4"
|
|
2402
|
-
],
|
|
2403
|
-
"wide": [
|
|
2404
|
-
"第一季度",
|
|
2405
|
-
"第二季度",
|
|
2406
|
-
"第三季度",
|
|
2407
|
-
"第四季度"
|
|
2408
|
-
]
|
|
2409
|
-
},
|
|
2410
|
-
"stand-alone": {
|
|
2411
|
-
"abbreviated": [
|
|
2412
|
-
"1季度",
|
|
2413
|
-
"2季度",
|
|
2414
|
-
"3季度",
|
|
2415
|
-
"4季度"
|
|
2416
|
-
],
|
|
2417
|
-
"narrow": [
|
|
2418
|
-
"1",
|
|
2419
|
-
"2",
|
|
2420
|
-
"3",
|
|
2421
|
-
"4"
|
|
2422
|
-
],
|
|
2423
|
-
"wide": [
|
|
2424
|
-
"第一季度",
|
|
2425
|
-
"第二季度",
|
|
2426
|
-
"第三季度",
|
|
2427
|
-
"第四季度"
|
|
2428
|
-
]
|
|
2429
|
-
}
|
|
2430
|
-
},
|
|
2431
|
-
"dayPeriods": {
|
|
2432
|
-
"format": {
|
|
2433
|
-
"abbreviated": [
|
|
2434
|
-
"上午",
|
|
2435
|
-
"下午"
|
|
2436
|
-
],
|
|
2437
|
-
"narrow": [
|
|
2438
|
-
"上午",
|
|
2439
|
-
"下午"
|
|
2440
|
-
],
|
|
2441
|
-
"wide": [
|
|
2442
|
-
"上午",
|
|
2443
|
-
"下午"
|
|
2444
|
-
]
|
|
2445
|
-
},
|
|
2446
|
-
"stand-alone": {
|
|
2447
|
-
"abbreviated": [
|
|
2448
|
-
"上午",
|
|
2449
|
-
"下午"
|
|
2450
|
-
],
|
|
2451
|
-
"narrow": [
|
|
2452
|
-
"上午",
|
|
2453
|
-
"下午"
|
|
2454
|
-
],
|
|
2455
|
-
"wide": [
|
|
2456
|
-
"上午",
|
|
2457
|
-
"下午"
|
|
2458
|
-
]
|
|
2459
|
-
}
|
|
2460
|
-
},
|
|
2461
|
-
"era-wide": {
|
|
2462
|
-
"232": "明治",
|
|
2463
|
-
"233": "大正",
|
|
2464
|
-
"234": "昭和",
|
|
2465
|
-
"235": "平成",
|
|
2466
|
-
"236": "令和"
|
|
2467
|
-
},
|
|
2468
|
-
"era-abbreviated": {
|
|
2469
|
-
"232": "明治",
|
|
2470
|
-
"233": "大正",
|
|
2471
|
-
"234": "昭和",
|
|
2472
|
-
"235": "平成",
|
|
2473
|
-
"236": "令和"
|
|
2474
|
-
},
|
|
2475
|
-
"era-narrow": {
|
|
2476
|
-
"232": "M",
|
|
2477
|
-
"233": "T",
|
|
2478
|
-
"234": "S",
|
|
2479
|
-
"235": "H",
|
|
2480
|
-
"236": "R"
|
|
2481
|
-
}
|
|
2482
|
-
},
|
|
2483
|
-
"ca-persian": {
|
|
2484
|
-
"dateFormats": {
|
|
2485
|
-
"full": "Gy年M月d日EEEE",
|
|
2486
|
-
"long": "Gy年M月d日",
|
|
2487
|
-
"medium": "Gy年M月d日",
|
|
2488
|
-
"short": "dd/MM/yyGGGGG"
|
|
2489
|
-
},
|
|
2490
|
-
"timeFormats": {
|
|
2491
|
-
"full": "zzzz ah:mm:ss",
|
|
2492
|
-
"long": "z ah:mm:ss",
|
|
2493
|
-
"medium": "ah:mm:ss",
|
|
2494
|
-
"short": "ah:mm"
|
|
2495
|
-
},
|
|
2496
|
-
"dateTimeFormats": {
|
|
2497
|
-
"full": "{1} {0}",
|
|
2498
|
-
"long": "{1} {0}",
|
|
2499
|
-
"medium": "{1} {0}",
|
|
2500
|
-
"short": "{1} {0}",
|
|
2501
|
-
"availableFormats": {
|
|
2502
|
-
"Bh": "Bh时",
|
|
2503
|
-
"Bhm": "Bh:mm",
|
|
2504
|
-
"Bhms": "Bh:mm:ss",
|
|
2505
|
-
"d": "d日",
|
|
2506
|
-
"E": "ccc",
|
|
2507
|
-
"EBhm": "EB h:mm",
|
|
2508
|
-
"EBhms": "EB h:mm:ss",
|
|
2509
|
-
"Ed": "d日E",
|
|
2510
|
-
"Ehm": "Ea h:mm",
|
|
2511
|
-
"EHm": "E HH:mm",
|
|
2512
|
-
"Ehms": "Ea h:mm:ss",
|
|
2513
|
-
"EHms": "E HH:mm:ss",
|
|
2514
|
-
"Gy": "Gy年",
|
|
2515
|
-
"GyMMM": "Gy年M月",
|
|
2516
|
-
"GyMMMd": "Gy年M月d日",
|
|
2517
|
-
"GyMMMEd": "Gy年M月d日E",
|
|
2518
|
-
"h": "ah时",
|
|
2519
|
-
"H": "H时",
|
|
2520
|
-
"hm": "ah:mm",
|
|
2521
|
-
"Hm": "HH:mm",
|
|
2522
|
-
"hms": "ah:mm:ss",
|
|
2523
|
-
"Hms": "HH:mm:ss",
|
|
2524
|
-
"M": "L",
|
|
2525
|
-
"Md": "M-d",
|
|
2526
|
-
"MEd": "M-dE",
|
|
2527
|
-
"MMdd": "MM-dd",
|
|
2528
|
-
"MMM": "LL",
|
|
2529
|
-
"MMMd": "M月d日",
|
|
2530
|
-
"MMMEd": "M月d日E",
|
|
2531
|
-
"MMMMd": "M月d日",
|
|
2532
|
-
"MMMMdd": "M月d日",
|
|
2533
|
-
"ms": "mm:ss",
|
|
2534
|
-
"y": "Gy年",
|
|
2535
|
-
"yyyy": "Gy年",
|
|
2536
|
-
"yyyyM": "Gy年M月",
|
|
2537
|
-
"yyyyMd": "Gy年M月d日",
|
|
2538
|
-
"yyyyMEd": "Gy年M月d日,E",
|
|
2539
|
-
"yyyyMMM": "Gy年M月",
|
|
2540
|
-
"yyyyMMMd": "Gy年M月d日",
|
|
2541
|
-
"yyyyMMMEd": "Gy年MM月d日E",
|
|
2542
|
-
"yyyyMMMM": "Gy年M月",
|
|
2543
|
-
"yyyyQQQ": "Gy年第Q季度",
|
|
2544
|
-
"yyyyQQQQ": "Gy年第Q季度"
|
|
2545
|
-
},
|
|
2546
|
-
"appendItems": {
|
|
2547
|
-
"Day": "{0} ({2}: {1})",
|
|
2548
|
-
"Day-Of-Week": "{0} {1}",
|
|
2549
|
-
"Era": "{1} {0}",
|
|
2550
|
-
"Hour": "{0} ({2}: {1})",
|
|
2551
|
-
"Minute": "{0} ({2}: {1})",
|
|
2552
|
-
"Month": "{0} ({2}: {1})",
|
|
2553
|
-
"Quarter": "{0} ({2}: {1})",
|
|
2554
|
-
"Second": "{0} ({2}: {1})",
|
|
2555
|
-
"Timezone": "{0} {1}",
|
|
2556
|
-
"Week": "{0} ({2}: {1})",
|
|
2557
|
-
"Year": "{1} {0}"
|
|
2558
|
-
},
|
|
2559
|
-
"intervalFormats": {
|
|
2560
|
-
"intervalFormatFallback": "{0}至{1}",
|
|
2561
|
-
"Bh": {
|
|
2562
|
-
"B": "Bh时至Bh时",
|
|
2563
|
-
"h": "Bh时至h时"
|
|
2564
|
-
},
|
|
2565
|
-
"Bhm": {
|
|
2566
|
-
"B": "Bh:mm至Bh:mm",
|
|
2567
|
-
"h": "Bh:mm至h:mm",
|
|
2568
|
-
"m": "Bh:mm至h:mm"
|
|
2569
|
-
},
|
|
2570
|
-
"d": {
|
|
2571
|
-
"d": "d至d日"
|
|
2572
|
-
},
|
|
2573
|
-
"Gy": {
|
|
2574
|
-
"G": "G y – G y",
|
|
2575
|
-
"y": "G y–y"
|
|
2576
|
-
},
|
|
2577
|
-
"GyM": {
|
|
2578
|
-
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
2579
|
-
"M": "GGGGG y-MM – y-MM",
|
|
2580
|
-
"y": "GGGGG y-MM – y-MM"
|
|
2581
|
-
},
|
|
2582
|
-
"GyMd": {
|
|
2583
|
-
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
2584
|
-
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
2585
|
-
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
2586
|
-
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
2587
|
-
},
|
|
2588
|
-
"GyMEd": {
|
|
2589
|
-
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2590
|
-
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
2591
|
-
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
2592
|
-
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
2593
|
-
},
|
|
2594
|
-
"GyMMM": {
|
|
2595
|
-
"G": "G y MMM – G y MMM",
|
|
2596
|
-
"M": "G y MMM–MMM",
|
|
2597
|
-
"y": "G y MMM – y MMM"
|
|
2598
|
-
},
|
|
2599
|
-
"GyMMMd": {
|
|
2600
|
-
"d": "G y MMM d–d",
|
|
2601
|
-
"G": "G y MMM d – G y MMM d",
|
|
2602
|
-
"M": "G y MMM d – MMM d",
|
|
2603
|
-
"y": "G y MMM d – y MMM d"
|
|
2604
|
-
},
|
|
2605
|
-
"GyMMMEd": {
|
|
2606
|
-
"d": "G y MMM d, E – MMM d, E",
|
|
2607
|
-
"G": "G y MMM d, E – G y MMM d, E",
|
|
2608
|
-
"M": "G y MMM d, E – MMM d, E",
|
|
2609
|
-
"y": "G y MMM d, E – y MMM d, E"
|
|
2610
|
-
},
|
|
2611
|
-
"h": {
|
|
2612
|
-
"a": "ah时至ah时",
|
|
2613
|
-
"h": "ah时至h时"
|
|
2614
|
-
},
|
|
2615
|
-
"H": {
|
|
2616
|
-
"H": "HH–HH"
|
|
2617
|
-
},
|
|
2618
|
-
"hm": {
|
|
2619
|
-
"a": "ah:mm至ah:mm",
|
|
2620
|
-
"h": "ah:mm至h:mm",
|
|
2621
|
-
"m": "ah:mm至h:mm"
|
|
2622
|
-
},
|
|
2623
|
-
"Hm": {
|
|
2624
|
-
"H": "HH:mm–HH:mm",
|
|
2625
|
-
"m": "HH:mm–HH:mm"
|
|
2626
|
-
},
|
|
2627
|
-
"hmv": {
|
|
2628
|
-
"a": "vah:mm至ah:mm",
|
|
2629
|
-
"h": "vah:mm至h:mm",
|
|
2630
|
-
"m": "vah:mm至h:mm"
|
|
2631
|
-
},
|
|
2632
|
-
"Hmv": {
|
|
2633
|
-
"H": "vHH:mm–HH:mm",
|
|
2634
|
-
"m": "vHH:mm–HH:mm"
|
|
2635
|
-
},
|
|
2636
|
-
"hv": {
|
|
2637
|
-
"a": "vah时至ah时",
|
|
2638
|
-
"h": "vah时至h时"
|
|
2639
|
-
},
|
|
2640
|
-
"Hv": {
|
|
2641
|
-
"H": "vHH–HH"
|
|
2642
|
-
},
|
|
2643
|
-
"M": {
|
|
2644
|
-
"M": "M–M月"
|
|
2645
|
-
},
|
|
2646
|
-
"Md": {
|
|
2647
|
-
"d": "M-d至M-d",
|
|
2648
|
-
"M": "M-d至M-d"
|
|
2649
|
-
},
|
|
2650
|
-
"MEd": {
|
|
2651
|
-
"d": "M-dE至M-dE",
|
|
2652
|
-
"M": "M-dE至M-dE"
|
|
2653
|
-
},
|
|
2654
|
-
"MMM": {
|
|
2655
|
-
"M": "M月至M月"
|
|
2656
|
-
},
|
|
2657
|
-
"MMMd": {
|
|
2658
|
-
"d": "M月d日至d日",
|
|
2659
|
-
"M": "M月d日至M月d日"
|
|
2660
|
-
},
|
|
2661
|
-
"MMMEd": {
|
|
2662
|
-
"d": "M月d日E至M月d日E",
|
|
2663
|
-
"M": "M月d日E至M月d日E"
|
|
2664
|
-
},
|
|
2665
|
-
"y": {
|
|
2666
|
-
"y": "Gy–y年"
|
|
2667
|
-
},
|
|
2668
|
-
"yM": {
|
|
2669
|
-
"M": "y年M月至y年M月",
|
|
2670
|
-
"y": "Gy年M月至y年M月"
|
|
2671
|
-
},
|
|
2672
|
-
"yMd": {
|
|
2673
|
-
"d": "d/M/y至d/M/y",
|
|
2674
|
-
"M": "d/M/y至d/M/y",
|
|
2675
|
-
"y": "d/M/y至d/M/y"
|
|
2676
|
-
},
|
|
2677
|
-
"yMEd": {
|
|
2678
|
-
"d": "d/M/yE至d/M/yE",
|
|
2679
|
-
"M": "d/M/yE至d/M/yE",
|
|
2680
|
-
"y": "d/M/yE至d/M/yE"
|
|
2681
|
-
},
|
|
2682
|
-
"yMMM": {
|
|
2683
|
-
"M": "Gy年M月至M月",
|
|
2684
|
-
"y": "Gy年M月至y年M月"
|
|
2685
|
-
},
|
|
2686
|
-
"yMMMd": {
|
|
2687
|
-
"d": "Gy年M月d日至d日",
|
|
2688
|
-
"M": "Gy年M月d日至M月d日",
|
|
2689
|
-
"y": "Gy年M月d日至y年M月d日"
|
|
2690
|
-
},
|
|
2691
|
-
"yMMMEd": {
|
|
2692
|
-
"d": "Gy年M月d日E至d日E",
|
|
2693
|
-
"M": "Gy年M月d日E至M月d日E",
|
|
2694
|
-
"y": "Gy年M月d日E至y年M月d日E"
|
|
2695
|
-
},
|
|
2696
|
-
"yMMMM": {
|
|
2697
|
-
"M": "Gy年M月至M月",
|
|
2698
|
-
"y": "Gy年M月至y年M月"
|
|
2699
|
-
}
|
|
2700
|
-
}
|
|
2701
|
-
},
|
|
2702
|
-
"months": {
|
|
2703
|
-
"format": {
|
|
2704
|
-
"abbreviated": [
|
|
2705
|
-
"1月",
|
|
2706
|
-
"2月",
|
|
2707
|
-
"3月",
|
|
2708
|
-
"4月",
|
|
2709
|
-
"5月",
|
|
2710
|
-
"6月",
|
|
2711
|
-
"7月",
|
|
2712
|
-
"8月",
|
|
2713
|
-
"9月",
|
|
2714
|
-
"10月",
|
|
2715
|
-
"11月",
|
|
2716
|
-
"12月"
|
|
2717
|
-
],
|
|
2718
|
-
"narrow": [
|
|
2719
|
-
"1",
|
|
2720
|
-
"2",
|
|
2721
|
-
"3",
|
|
2722
|
-
"4",
|
|
2723
|
-
"5",
|
|
2724
|
-
"6",
|
|
2725
|
-
"7",
|
|
2726
|
-
"8",
|
|
2727
|
-
"9",
|
|
2728
|
-
"10",
|
|
2729
|
-
"11",
|
|
2730
|
-
"12"
|
|
2731
|
-
],
|
|
2732
|
-
"wide": [
|
|
2733
|
-
"一月",
|
|
2734
|
-
"二月",
|
|
2735
|
-
"三月",
|
|
2736
|
-
"四月",
|
|
2737
|
-
"五月",
|
|
2738
|
-
"六月",
|
|
2739
|
-
"七月",
|
|
2740
|
-
"八月",
|
|
2741
|
-
"九月",
|
|
2742
|
-
"十月",
|
|
2743
|
-
"十一月",
|
|
2744
|
-
"十二月"
|
|
2745
|
-
]
|
|
2746
|
-
},
|
|
2747
|
-
"stand-alone": {
|
|
2748
|
-
"abbreviated": [
|
|
2749
|
-
"1月",
|
|
2750
|
-
"2月",
|
|
2751
|
-
"3月",
|
|
2752
|
-
"4月",
|
|
2753
|
-
"5月",
|
|
2754
|
-
"6月",
|
|
2755
|
-
"7月",
|
|
2756
|
-
"8月",
|
|
2757
|
-
"9月",
|
|
2758
|
-
"10月",
|
|
2759
|
-
"11月",
|
|
2760
|
-
"12月"
|
|
2761
|
-
],
|
|
2762
|
-
"narrow": [
|
|
2763
|
-
"1",
|
|
2764
|
-
"2",
|
|
2765
|
-
"3",
|
|
2766
|
-
"4",
|
|
2767
|
-
"5",
|
|
2768
|
-
"6",
|
|
2769
|
-
"7",
|
|
2770
|
-
"8",
|
|
2771
|
-
"9",
|
|
2772
|
-
"10",
|
|
2773
|
-
"11",
|
|
2774
|
-
"12"
|
|
2775
|
-
],
|
|
2776
|
-
"wide": [
|
|
2777
|
-
"一月",
|
|
2778
|
-
"二月",
|
|
2779
|
-
"三月",
|
|
2780
|
-
"四月",
|
|
2781
|
-
"五月",
|
|
2782
|
-
"六月",
|
|
2783
|
-
"七月",
|
|
2784
|
-
"八月",
|
|
2785
|
-
"九月",
|
|
2786
|
-
"十月",
|
|
2787
|
-
"十一月",
|
|
2788
|
-
"十二月"
|
|
2789
|
-
]
|
|
2790
|
-
}
|
|
2791
|
-
},
|
|
2792
|
-
"days": {
|
|
2793
|
-
"format": {
|
|
2794
|
-
"abbreviated": [
|
|
2795
|
-
"周日",
|
|
2796
|
-
"周一",
|
|
2797
|
-
"周二",
|
|
2798
|
-
"周三",
|
|
2799
|
-
"周四",
|
|
2800
|
-
"周五",
|
|
2801
|
-
"周六"
|
|
2802
|
-
],
|
|
2803
|
-
"narrow": [
|
|
2804
|
-
"日",
|
|
2805
|
-
"一",
|
|
2806
|
-
"二",
|
|
2807
|
-
"三",
|
|
2808
|
-
"四",
|
|
2809
|
-
"五",
|
|
2810
|
-
"六"
|
|
2811
|
-
],
|
|
2812
|
-
"short": [
|
|
2813
|
-
"周日",
|
|
2814
|
-
"周一",
|
|
2815
|
-
"周二",
|
|
2816
|
-
"周三",
|
|
2817
|
-
"周四",
|
|
2818
|
-
"周五",
|
|
2819
|
-
"周六"
|
|
2820
|
-
],
|
|
2821
|
-
"wide": [
|
|
2822
|
-
"星期日",
|
|
2823
|
-
"星期一",
|
|
2824
|
-
"星期二",
|
|
2825
|
-
"星期三",
|
|
2826
|
-
"星期四",
|
|
2827
|
-
"星期五",
|
|
2828
|
-
"星期六"
|
|
2829
|
-
]
|
|
2830
|
-
},
|
|
2831
|
-
"stand-alone": {
|
|
2832
|
-
"abbreviated": [
|
|
2833
|
-
"周日",
|
|
2834
|
-
"周一",
|
|
2835
|
-
"周二",
|
|
2836
|
-
"周三",
|
|
2837
|
-
"周四",
|
|
2838
|
-
"周五",
|
|
2839
|
-
"周六"
|
|
2840
|
-
],
|
|
2841
|
-
"narrow": [
|
|
2842
|
-
"日",
|
|
2843
|
-
"一",
|
|
2844
|
-
"二",
|
|
2845
|
-
"三",
|
|
2846
|
-
"四",
|
|
2847
|
-
"五",
|
|
2848
|
-
"六"
|
|
2849
|
-
],
|
|
2850
|
-
"short": [
|
|
2851
|
-
"周日",
|
|
2852
|
-
"周一",
|
|
2853
|
-
"周二",
|
|
2854
|
-
"周三",
|
|
2855
|
-
"周四",
|
|
2856
|
-
"周五",
|
|
2857
|
-
"周六"
|
|
2858
|
-
],
|
|
2859
|
-
"wide": [
|
|
2860
|
-
"星期日",
|
|
2861
|
-
"星期一",
|
|
2862
|
-
"星期二",
|
|
2863
|
-
"星期三",
|
|
2864
|
-
"星期四",
|
|
2865
|
-
"星期五",
|
|
2866
|
-
"星期六"
|
|
2867
|
-
]
|
|
2868
|
-
}
|
|
2869
|
-
},
|
|
2870
|
-
"quarters": {
|
|
2871
|
-
"format": {
|
|
2872
|
-
"abbreviated": [
|
|
2873
|
-
"1季度",
|
|
2874
|
-
"2季度",
|
|
2875
|
-
"3季度",
|
|
2876
|
-
"4季度"
|
|
2877
|
-
],
|
|
2878
|
-
"narrow": [
|
|
2879
|
-
"1",
|
|
2880
|
-
"2",
|
|
2881
|
-
"3",
|
|
2882
|
-
"4"
|
|
2883
|
-
],
|
|
2884
|
-
"wide": [
|
|
2885
|
-
"第一季度",
|
|
2886
|
-
"第二季度",
|
|
2887
|
-
"第三季度",
|
|
2888
|
-
"第四季度"
|
|
2889
|
-
]
|
|
2890
|
-
},
|
|
2891
|
-
"stand-alone": {
|
|
2892
|
-
"abbreviated": [
|
|
2893
|
-
"1季度",
|
|
2894
|
-
"2季度",
|
|
2895
|
-
"3季度",
|
|
2896
|
-
"4季度"
|
|
2897
|
-
],
|
|
2898
|
-
"narrow": [
|
|
2899
|
-
"1",
|
|
2900
|
-
"2",
|
|
2901
|
-
"3",
|
|
2902
|
-
"4"
|
|
2903
|
-
],
|
|
2904
|
-
"wide": [
|
|
2905
|
-
"第一季度",
|
|
2906
|
-
"第二季度",
|
|
2907
|
-
"第三季度",
|
|
2908
|
-
"第四季度"
|
|
2909
|
-
]
|
|
2910
|
-
}
|
|
2911
|
-
},
|
|
2912
|
-
"dayPeriods": {
|
|
2913
|
-
"format": {
|
|
2914
|
-
"abbreviated": [
|
|
2915
|
-
"上午",
|
|
2916
|
-
"下午"
|
|
2917
|
-
],
|
|
2918
|
-
"narrow": [
|
|
2919
|
-
"上午",
|
|
2920
|
-
"下午"
|
|
2921
|
-
],
|
|
2922
|
-
"wide": [
|
|
2923
|
-
"上午",
|
|
2924
|
-
"下午"
|
|
2925
|
-
]
|
|
2926
|
-
},
|
|
2927
|
-
"stand-alone": {
|
|
2928
|
-
"abbreviated": [
|
|
2929
|
-
"上午",
|
|
2930
|
-
"下午"
|
|
2931
|
-
],
|
|
2932
|
-
"narrow": [
|
|
2933
|
-
"上午",
|
|
2934
|
-
"下午"
|
|
2935
|
-
],
|
|
2936
|
-
"wide": [
|
|
2937
|
-
"上午",
|
|
2938
|
-
"下午"
|
|
2939
|
-
]
|
|
2940
|
-
}
|
|
2941
|
-
},
|
|
2942
|
-
"era-wide": {
|
|
2943
|
-
"0": "波斯历"
|
|
2944
|
-
},
|
|
2945
|
-
"era-abbreviated": {
|
|
2946
|
-
"0": "波斯历"
|
|
2947
|
-
},
|
|
2948
|
-
"era-narrow": {
|
|
2949
|
-
"0": "波斯历"
|
|
2950
|
-
}
|
|
2951
|
-
},
|
|
2952
|
-
"ca-buddhist": {
|
|
2953
|
-
"dateFormats": {
|
|
2954
|
-
"full": "Gy年M月d日EEEE",
|
|
2955
|
-
"long": "Gy年M月d日",
|
|
2956
|
-
"medium": "Gy年M月d日",
|
|
2957
|
-
"short": "Gd/M/yy"
|
|
2958
|
-
},
|
|
2959
|
-
"timeFormats": {
|
|
2960
|
-
"full": "zzzz ah:mm:ss",
|
|
2961
|
-
"long": "z ah:mm:ss",
|
|
2962
|
-
"medium": "ah:mm:ss",
|
|
2963
|
-
"short": "ah:mm"
|
|
2964
|
-
},
|
|
2965
|
-
"dateTimeFormats": {
|
|
2966
|
-
"full": "{1} {0}",
|
|
2967
|
-
"long": "{1} {0}",
|
|
2968
|
-
"medium": "{1} {0}",
|
|
2969
|
-
"short": "{1} {0}",
|
|
2970
|
-
"availableFormats": {
|
|
2971
|
-
"Bh": "Bh时",
|
|
2972
|
-
"Bhm": "Bh:mm",
|
|
2973
|
-
"Bhms": "Bh:mm:ss",
|
|
2974
|
-
"d": "d日",
|
|
2975
|
-
"E": "ccc",
|
|
2976
|
-
"EBhm": "EB h:mm",
|
|
2977
|
-
"EBhms": "EB h:mm:ss",
|
|
2978
|
-
"Ed": "d日E",
|
|
2979
|
-
"Ehm": "Ea h:mm",
|
|
2980
|
-
"EHm": "E HH:mm",
|
|
2981
|
-
"Ehms": "Ea h:mm:ss",
|
|
2982
|
-
"EHms": "E HH:mm:ss",
|
|
2983
|
-
"Gy": "Gy年",
|
|
2984
|
-
"GyMMM": "Gy年MM月",
|
|
2985
|
-
"GyMMMd": "Gy年MM月d日",
|
|
2986
|
-
"GyMMMEd": "Gy年MM月d日E",
|
|
2987
|
-
"h": "ah时",
|
|
2988
|
-
"H": "H时",
|
|
2989
|
-
"hm": "ah:mm",
|
|
2990
|
-
"Hm": "HH:mm",
|
|
2991
|
-
"hms": "ah:mm:ss",
|
|
2992
|
-
"Hms": "HH:mm:ss",
|
|
2993
|
-
"M": "M月",
|
|
2994
|
-
"Md": "M-d",
|
|
2995
|
-
"MEd": "M-dE",
|
|
2996
|
-
"MMdd": "MM-dd",
|
|
2997
|
-
"MMM": "LL",
|
|
2998
|
-
"MMMd": "M月d日",
|
|
2999
|
-
"MMMEd": "M月d日E",
|
|
3000
|
-
"MMMMd": "M月d日",
|
|
3001
|
-
"MMMMdd": "M月d日",
|
|
3002
|
-
"ms": "mm:ss",
|
|
3003
|
-
"y": "Gy年",
|
|
3004
|
-
"yyyy": "Gy年",
|
|
3005
|
-
"yyyyM": "Gy-M",
|
|
3006
|
-
"yyyyMd": "Gy-M-d",
|
|
3007
|
-
"yyyyMEd": "Gy-M-d(E)",
|
|
3008
|
-
"yyyyMMM": "Gy年M月",
|
|
3009
|
-
"yyyyMMMd": "Gy年M月d日",
|
|
3010
|
-
"yyyyMMMEd": "Gy年M月d日E",
|
|
3011
|
-
"yyyyMMMM": "Gy年M月",
|
|
3012
|
-
"yyyyQQQ": "Gy年第Q季度",
|
|
3013
|
-
"yyyyQQQQ": "Gy年QQQQ"
|
|
3014
|
-
},
|
|
3015
|
-
"appendItems": {
|
|
3016
|
-
"Day": "{0} ({2}: {1})",
|
|
3017
|
-
"Day-Of-Week": "{0} {1}",
|
|
3018
|
-
"Era": "{1} {0}",
|
|
3019
|
-
"Hour": "{0} ({2}: {1})",
|
|
3020
|
-
"Minute": "{0} ({2}: {1})",
|
|
3021
|
-
"Month": "{0} ({2}: {1})",
|
|
3022
|
-
"Quarter": "{0} ({2}: {1})",
|
|
3023
|
-
"Second": "{0} ({2}: {1})",
|
|
3024
|
-
"Timezone": "{0} {1}",
|
|
3025
|
-
"Week": "{0} ({2}: {1})",
|
|
3026
|
-
"Year": "{1} {0}"
|
|
3027
|
-
},
|
|
3028
|
-
"intervalFormats": {
|
|
3029
|
-
"intervalFormatFallback": "{0}至{1}",
|
|
3030
|
-
"Bh": {
|
|
3031
|
-
"B": "Bh时至Bh时",
|
|
3032
|
-
"h": "Bh时至h时"
|
|
3033
|
-
},
|
|
3034
|
-
"Bhm": {
|
|
3035
|
-
"B": "Bh:mm至Bh:mm",
|
|
3036
|
-
"h": "Bh:mm至h:mm",
|
|
3037
|
-
"m": "Bh:mm至h:mm"
|
|
3038
|
-
},
|
|
3039
|
-
"d": {
|
|
3040
|
-
"d": "d至d日"
|
|
3041
|
-
},
|
|
3042
|
-
"Gy": {
|
|
3043
|
-
"G": "G y – G y",
|
|
3044
|
-
"y": "G y–y"
|
|
3045
|
-
},
|
|
3046
|
-
"GyM": {
|
|
3047
|
-
"G": "GGGGG y-MM – GGGGG y-MM",
|
|
3048
|
-
"M": "GGGGG y-MM – y-MM",
|
|
3049
|
-
"y": "GGGGG y-MM – y-MM"
|
|
3050
|
-
},
|
|
3051
|
-
"GyMd": {
|
|
3052
|
-
"d": "GGGGG y-MM-dd – y-MM-dd",
|
|
3053
|
-
"G": "GGGGG y-MM-dd – GGGGG y-MM-dd",
|
|
3054
|
-
"M": "GGGGG y-MM-dd – y-MM-dd",
|
|
3055
|
-
"y": "GGGGG y-MM-dd – y-MM-dd"
|
|
3056
|
-
},
|
|
3057
|
-
"GyMEd": {
|
|
3058
|
-
"d": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
3059
|
-
"G": "GGGGG y-MM-dd, E – GGGGG y-MM-dd, E",
|
|
3060
|
-
"M": "GGGGG y-MM-dd, E – y-MM-dd, E",
|
|
3061
|
-
"y": "GGGGG y-MM-dd, E – y-MM-dd, E"
|
|
3062
|
-
},
|
|
3063
|
-
"GyMMM": {
|
|
3064
|
-
"G": "G y MMM – G y MMM",
|
|
3065
|
-
"M": "G y MMM–MMM",
|
|
3066
|
-
"y": "G y MMM – y MMM"
|
|
3067
|
-
},
|
|
3068
|
-
"GyMMMd": {
|
|
3069
|
-
"d": "G y MMM d–d",
|
|
3070
|
-
"G": "G y MMM d – G y MMM d",
|
|
3071
|
-
"M": "G y MMM d – MMM d",
|
|
3072
|
-
"y": "G y MMM d – y MMM d"
|
|
3073
|
-
},
|
|
3074
|
-
"GyMMMEd": {
|
|
3075
|
-
"d": "G y MMM d, E – MMM d, E",
|
|
3076
|
-
"G": "G y MMM d, E – G y MMM d, E",
|
|
3077
|
-
"M": "G y MMM d, E – MMM d, E",
|
|
3078
|
-
"y": "G y MMM d, E – y MMM d, E"
|
|
3079
|
-
},
|
|
3080
|
-
"h": {
|
|
3081
|
-
"a": "ah时至ah时",
|
|
3082
|
-
"h": "ah时至h时"
|
|
3083
|
-
},
|
|
3084
|
-
"H": {
|
|
3085
|
-
"H": "HH–HH"
|
|
3086
|
-
},
|
|
3087
|
-
"hm": {
|
|
3088
|
-
"a": "ah:mm至ah:mm",
|
|
3089
|
-
"h": "ah:mm至h:mm",
|
|
3090
|
-
"m": "ah:mm至h:mm"
|
|
3091
|
-
},
|
|
3092
|
-
"Hm": {
|
|
3093
|
-
"H": "HH:mm–HH:mm",
|
|
3094
|
-
"m": "HH:mm–HH:mm"
|
|
3095
|
-
},
|
|
3096
|
-
"hmv": {
|
|
3097
|
-
"a": "vah:mm至ah:mm",
|
|
3098
|
-
"h": "vah:mm至h:mm",
|
|
3099
|
-
"m": "vah:mm至h:mm"
|
|
3100
|
-
},
|
|
3101
|
-
"Hmv": {
|
|
3102
|
-
"H": "v HH:mm – HH:mm",
|
|
3103
|
-
"m": "v HH:mm – HH:mm"
|
|
3104
|
-
},
|
|
3105
|
-
"hv": {
|
|
3106
|
-
"a": "vah时至ah时",
|
|
3107
|
-
"h": "vah时至h时"
|
|
3108
|
-
},
|
|
3109
|
-
"Hv": {
|
|
3110
|
-
"H": "vHH–HH"
|
|
3111
|
-
},
|
|
3112
|
-
"M": {
|
|
3113
|
-
"M": "M–M月"
|
|
3114
|
-
},
|
|
3115
|
-
"Md": {
|
|
3116
|
-
"d": "M/d – M/d",
|
|
3117
|
-
"M": "M/d – M/d"
|
|
3118
|
-
},
|
|
3119
|
-
"MEd": {
|
|
3120
|
-
"d": "M/dE至M/dE",
|
|
3121
|
-
"M": "M/dE至M/dE"
|
|
3122
|
-
},
|
|
3123
|
-
"MMM": {
|
|
3124
|
-
"M": "MMM – MMM"
|
|
3125
|
-
},
|
|
3126
|
-
"MMMd": {
|
|
3127
|
-
"d": "M月d日至d日",
|
|
3128
|
-
"M": "M月d日至M月d日"
|
|
3129
|
-
},
|
|
3130
|
-
"MMMEd": {
|
|
3131
|
-
"d": "M月d日E至d日E",
|
|
3132
|
-
"M": "M月d日E至M月d日E"
|
|
3133
|
-
},
|
|
3134
|
-
"y": {
|
|
3135
|
-
"y": "Gy–y年"
|
|
3136
|
-
},
|
|
3137
|
-
"yM": {
|
|
3138
|
-
"M": "Gy年M月至M月",
|
|
3139
|
-
"y": "Gy年M月至y年M月"
|
|
3140
|
-
},
|
|
3141
|
-
"yMd": {
|
|
3142
|
-
"d": "Gy/M/d – y/M/d",
|
|
3143
|
-
"M": "Gy/M/d – y/M/d",
|
|
3144
|
-
"y": "Gy/M/d – y/M/d"
|
|
3145
|
-
},
|
|
3146
|
-
"yMEd": {
|
|
3147
|
-
"d": "Gy/M/dE至y/M/dE",
|
|
3148
|
-
"M": "Gy/M/dE至y/M/dE",
|
|
3149
|
-
"y": "Gy/M/dE至y/M/dE"
|
|
3150
|
-
},
|
|
3151
|
-
"yMMM": {
|
|
3152
|
-
"M": "Gy年M月至M月",
|
|
3153
|
-
"y": "Gy年M月至y年M月"
|
|
3154
|
-
},
|
|
3155
|
-
"yMMMd": {
|
|
3156
|
-
"d": "Gy年M月d日至d日",
|
|
3157
|
-
"M": "Gy年M月d日至M月d日",
|
|
3158
|
-
"y": "Gy年M月d日至y年M月d日"
|
|
3159
|
-
},
|
|
3160
|
-
"yMMMEd": {
|
|
3161
|
-
"d": "Gy年M月d日E至d日E",
|
|
3162
|
-
"M": "Gy年M月d日E至M月d日E",
|
|
3163
|
-
"y": "Gy年M月d日E至y年M月d日E"
|
|
3164
|
-
},
|
|
3165
|
-
"yMMMM": {
|
|
3166
|
-
"M": "Gy年M月至M月",
|
|
3167
|
-
"y": "Gy年M月至y年M月"
|
|
3168
|
-
}
|
|
3169
|
-
}
|
|
3170
|
-
},
|
|
3171
|
-
"months": {
|
|
3172
|
-
"format": {
|
|
3173
|
-
"abbreviated": [
|
|
3174
|
-
"1月",
|
|
3175
|
-
"2月",
|
|
3176
|
-
"3月",
|
|
3177
|
-
"4月",
|
|
3178
|
-
"5月",
|
|
3179
|
-
"6月",
|
|
3180
|
-
"7月",
|
|
3181
|
-
"8月",
|
|
3182
|
-
"9月",
|
|
3183
|
-
"10月",
|
|
3184
|
-
"11月",
|
|
3185
|
-
"12月"
|
|
3186
|
-
],
|
|
3187
|
-
"narrow": [
|
|
3188
|
-
"1",
|
|
3189
|
-
"2",
|
|
3190
|
-
"3",
|
|
3191
|
-
"4",
|
|
3192
|
-
"5",
|
|
3193
|
-
"6",
|
|
3194
|
-
"7",
|
|
3195
|
-
"8",
|
|
3196
|
-
"9",
|
|
3197
|
-
"10",
|
|
3198
|
-
"11",
|
|
3199
|
-
"12"
|
|
3200
|
-
],
|
|
3201
|
-
"wide": [
|
|
3202
|
-
"一月",
|
|
3203
|
-
"二月",
|
|
3204
|
-
"三月",
|
|
3205
|
-
"四月",
|
|
3206
|
-
"五月",
|
|
3207
|
-
"六月",
|
|
3208
|
-
"七月",
|
|
3209
|
-
"八月",
|
|
3210
|
-
"九月",
|
|
3211
|
-
"十月",
|
|
3212
|
-
"十一月",
|
|
3213
|
-
"十二月"
|
|
3214
|
-
]
|
|
3215
|
-
},
|
|
3216
|
-
"stand-alone": {
|
|
3217
|
-
"abbreviated": [
|
|
3218
|
-
"1月",
|
|
3219
|
-
"2月",
|
|
3220
|
-
"3月",
|
|
3221
|
-
"4月",
|
|
3222
|
-
"5月",
|
|
3223
|
-
"6月",
|
|
3224
|
-
"7月",
|
|
3225
|
-
"8月",
|
|
3226
|
-
"9月",
|
|
3227
|
-
"10月",
|
|
3228
|
-
"11月",
|
|
3229
|
-
"12月"
|
|
3230
|
-
],
|
|
3231
|
-
"narrow": [
|
|
3232
|
-
"1",
|
|
3233
|
-
"2",
|
|
3234
|
-
"3",
|
|
3235
|
-
"4",
|
|
3236
|
-
"5",
|
|
3237
|
-
"6",
|
|
3238
|
-
"7",
|
|
3239
|
-
"8",
|
|
3240
|
-
"9",
|
|
3241
|
-
"10",
|
|
3242
|
-
"11",
|
|
3243
|
-
"12"
|
|
3244
|
-
],
|
|
3245
|
-
"wide": [
|
|
3246
|
-
"一月",
|
|
3247
|
-
"二月",
|
|
3248
|
-
"三月",
|
|
3249
|
-
"四月",
|
|
3250
|
-
"五月",
|
|
3251
|
-
"六月",
|
|
3252
|
-
"七月",
|
|
3253
|
-
"八月",
|
|
3254
|
-
"九月",
|
|
3255
|
-
"十月",
|
|
3256
|
-
"十一月",
|
|
3257
|
-
"十二月"
|
|
3258
|
-
]
|
|
3259
|
-
}
|
|
3260
|
-
},
|
|
3261
|
-
"days": {
|
|
3262
|
-
"format": {
|
|
3263
|
-
"abbreviated": [
|
|
3264
|
-
"周日",
|
|
3265
|
-
"周一",
|
|
3266
|
-
"周二",
|
|
3267
|
-
"周三",
|
|
3268
|
-
"周四",
|
|
3269
|
-
"周五",
|
|
3270
|
-
"周六"
|
|
3271
|
-
],
|
|
3272
|
-
"narrow": [
|
|
3273
|
-
"日",
|
|
3274
|
-
"一",
|
|
3275
|
-
"二",
|
|
3276
|
-
"三",
|
|
3277
|
-
"四",
|
|
3278
|
-
"五",
|
|
3279
|
-
"六"
|
|
3280
|
-
],
|
|
3281
|
-
"short": [
|
|
3282
|
-
"周日",
|
|
3283
|
-
"周一",
|
|
3284
|
-
"周二",
|
|
3285
|
-
"周三",
|
|
3286
|
-
"周四",
|
|
3287
|
-
"周五",
|
|
3288
|
-
"周六"
|
|
3289
|
-
],
|
|
3290
|
-
"wide": [
|
|
3291
|
-
"星期日",
|
|
3292
|
-
"星期一",
|
|
3293
|
-
"星期二",
|
|
3294
|
-
"星期三",
|
|
3295
|
-
"星期四",
|
|
3296
|
-
"星期五",
|
|
3297
|
-
"星期六"
|
|
3298
|
-
]
|
|
3299
|
-
},
|
|
3300
|
-
"stand-alone": {
|
|
3301
|
-
"abbreviated": [
|
|
3302
|
-
"周日",
|
|
3303
|
-
"周一",
|
|
3304
|
-
"周二",
|
|
3305
|
-
"周三",
|
|
3306
|
-
"周四",
|
|
3307
|
-
"周五",
|
|
3308
|
-
"周六"
|
|
3309
|
-
],
|
|
3310
|
-
"narrow": [
|
|
3311
|
-
"日",
|
|
3312
|
-
"一",
|
|
3313
|
-
"二",
|
|
3314
|
-
"三",
|
|
3315
|
-
"四",
|
|
3316
|
-
"五",
|
|
3317
|
-
"六"
|
|
3318
|
-
],
|
|
3319
|
-
"short": [
|
|
3320
|
-
"周日",
|
|
3321
|
-
"周一",
|
|
3322
|
-
"周二",
|
|
3323
|
-
"周三",
|
|
3324
|
-
"周四",
|
|
3325
|
-
"周五",
|
|
3326
|
-
"周六"
|
|
3327
|
-
],
|
|
3328
|
-
"wide": [
|
|
3329
|
-
"星期日",
|
|
3330
|
-
"星期一",
|
|
3331
|
-
"星期二",
|
|
3332
|
-
"星期三",
|
|
3333
|
-
"星期四",
|
|
3334
|
-
"星期五",
|
|
3335
|
-
"星期六"
|
|
3336
|
-
]
|
|
3337
|
-
}
|
|
3338
|
-
},
|
|
3339
|
-
"quarters": {
|
|
3340
|
-
"format": {
|
|
3341
|
-
"abbreviated": [
|
|
3342
|
-
"1季度",
|
|
3343
|
-
"2季度",
|
|
3344
|
-
"3季度",
|
|
3345
|
-
"4季度"
|
|
3346
|
-
],
|
|
3347
|
-
"narrow": [
|
|
3348
|
-
"1",
|
|
3349
|
-
"2",
|
|
3350
|
-
"3",
|
|
3351
|
-
"4"
|
|
3352
|
-
],
|
|
3353
|
-
"wide": [
|
|
3354
|
-
"第一季度",
|
|
3355
|
-
"第二季度",
|
|
3356
|
-
"第三季度",
|
|
3357
|
-
"第四季度"
|
|
3358
|
-
]
|
|
3359
|
-
},
|
|
3360
|
-
"stand-alone": {
|
|
3361
|
-
"abbreviated": [
|
|
3362
|
-
"1季度",
|
|
3363
|
-
"2季度",
|
|
3364
|
-
"3季度",
|
|
3365
|
-
"4季度"
|
|
3366
|
-
],
|
|
3367
|
-
"narrow": [
|
|
3368
|
-
"1",
|
|
3369
|
-
"2",
|
|
3370
|
-
"3",
|
|
3371
|
-
"4"
|
|
3372
|
-
],
|
|
3373
|
-
"wide": [
|
|
3374
|
-
"第一季度",
|
|
3375
|
-
"第二季度",
|
|
3376
|
-
"第三季度",
|
|
3377
|
-
"第四季度"
|
|
3378
|
-
]
|
|
3379
|
-
}
|
|
3380
|
-
},
|
|
3381
|
-
"dayPeriods": {
|
|
3382
|
-
"format": {
|
|
3383
|
-
"abbreviated": [
|
|
3384
|
-
"上午",
|
|
3385
|
-
"下午"
|
|
3386
|
-
],
|
|
3387
|
-
"narrow": [
|
|
3388
|
-
"上午",
|
|
3389
|
-
"下午"
|
|
3390
|
-
],
|
|
3391
|
-
"wide": [
|
|
3392
|
-
"上午",
|
|
3393
|
-
"下午"
|
|
3394
|
-
]
|
|
3395
|
-
},
|
|
3396
|
-
"stand-alone": {
|
|
3397
|
-
"abbreviated": [
|
|
3398
|
-
"上午",
|
|
3399
|
-
"下午"
|
|
3400
|
-
],
|
|
3401
|
-
"narrow": [
|
|
3402
|
-
"上午",
|
|
3403
|
-
"下午"
|
|
3404
|
-
],
|
|
3405
|
-
"wide": [
|
|
3406
|
-
"上午",
|
|
3407
|
-
"下午"
|
|
3408
|
-
]
|
|
3409
|
-
}
|
|
3410
|
-
},
|
|
3411
|
-
"era-wide": {
|
|
3412
|
-
"0": "佛历"
|
|
3413
|
-
},
|
|
3414
|
-
"era-abbreviated": {
|
|
3415
|
-
"0": "佛历"
|
|
3416
|
-
},
|
|
3417
|
-
"era-narrow": {
|
|
3418
|
-
"0": "佛历"
|
|
3419
|
-
}
|
|
3420
|
-
},
|
|
3421
|
-
"dateFields": {
|
|
3422
|
-
"era": {
|
|
3423
|
-
"displayName": "纪元"
|
|
3424
|
-
},
|
|
3425
|
-
"year-wide": {
|
|
3426
|
-
"displayName": "年",
|
|
3427
|
-
"relative-type--1": "去年",
|
|
3428
|
-
"relative-type-0": "今年",
|
|
3429
|
-
"relative-type-1": "明年",
|
|
3430
|
-
"relativeTime-type-future": {
|
|
3431
|
-
"relativeTimePattern-count-other": "{0}年后"
|
|
3432
|
-
},
|
|
3433
|
-
"relativeTime-type-past": {
|
|
3434
|
-
"relativeTimePattern-count-other": "{0}年前"
|
|
3435
|
-
}
|
|
3436
|
-
},
|
|
3437
|
-
"year-short": {
|
|
3438
|
-
"displayName": "年",
|
|
3439
|
-
"relative-type--1": "去年",
|
|
3440
|
-
"relative-type-0": "今年",
|
|
3441
|
-
"relative-type-1": "明年",
|
|
3442
|
-
"relativeTime-type-future": {
|
|
3443
|
-
"relativeTimePattern-count-other": "{0}年后"
|
|
3444
|
-
},
|
|
3445
|
-
"relativeTime-type-past": {
|
|
3446
|
-
"relativeTimePattern-count-other": "{0}年前"
|
|
3447
|
-
}
|
|
3448
|
-
},
|
|
3449
|
-
"year-narrow": {
|
|
3450
|
-
"displayName": "年",
|
|
3451
|
-
"relative-type--1": "去年",
|
|
3452
|
-
"relative-type-0": "今年",
|
|
3453
|
-
"relative-type-1": "明年",
|
|
3454
|
-
"relativeTime-type-future": {
|
|
3455
|
-
"relativeTimePattern-count-other": "{0}年后"
|
|
3456
|
-
},
|
|
3457
|
-
"relativeTime-type-past": {
|
|
3458
|
-
"relativeTimePattern-count-other": "{0}年前"
|
|
3459
|
-
}
|
|
3460
|
-
},
|
|
3461
|
-
"quarter-wide": {
|
|
3462
|
-
"displayName": "季度",
|
|
3463
|
-
"relative-type--1": "上季度",
|
|
3464
|
-
"relative-type-0": "本季度",
|
|
3465
|
-
"relative-type-1": "下季度",
|
|
3466
|
-
"relativeTime-type-future": {
|
|
3467
|
-
"relativeTimePattern-count-other": "{0}个季度后"
|
|
3468
|
-
},
|
|
3469
|
-
"relativeTime-type-past": {
|
|
3470
|
-
"relativeTimePattern-count-other": "{0}个季度前"
|
|
3471
|
-
}
|
|
3472
|
-
},
|
|
3473
|
-
"quarter-short": {
|
|
3474
|
-
"displayName": "季",
|
|
3475
|
-
"relative-type--1": "上季度",
|
|
3476
|
-
"relative-type-0": "本季度",
|
|
3477
|
-
"relative-type-1": "下季度",
|
|
3478
|
-
"relativeTime-type-future": {
|
|
3479
|
-
"relativeTimePattern-count-other": "{0}个季度后"
|
|
3480
|
-
},
|
|
3481
|
-
"relativeTime-type-past": {
|
|
3482
|
-
"relativeTimePattern-count-other": "{0}个季度前"
|
|
3483
|
-
}
|
|
3484
|
-
},
|
|
3485
|
-
"quarter-narrow": {
|
|
3486
|
-
"displayName": "季",
|
|
3487
|
-
"relative-type--1": "上季度",
|
|
3488
|
-
"relative-type-0": "本季度",
|
|
3489
|
-
"relative-type-1": "下季度",
|
|
3490
|
-
"relativeTime-type-future": {
|
|
3491
|
-
"relativeTimePattern-count-other": "{0}个季度后"
|
|
3492
|
-
},
|
|
3493
|
-
"relativeTime-type-past": {
|
|
3494
|
-
"relativeTimePattern-count-other": "{0}个季度前"
|
|
3495
|
-
}
|
|
3496
|
-
},
|
|
3497
|
-
"month-wide": {
|
|
3498
|
-
"displayName": "月",
|
|
3499
|
-
"relative-type--1": "上个月",
|
|
3500
|
-
"relative-type-0": "本月",
|
|
3501
|
-
"relative-type-1": "下个月",
|
|
3502
|
-
"relativeTime-type-future": {
|
|
3503
|
-
"relativeTimePattern-count-other": "{0}个月后"
|
|
3504
|
-
},
|
|
3505
|
-
"relativeTime-type-past": {
|
|
3506
|
-
"relativeTimePattern-count-other": "{0}个月前"
|
|
3507
|
-
}
|
|
3508
|
-
},
|
|
3509
|
-
"month-short": {
|
|
3510
|
-
"displayName": "月",
|
|
3511
|
-
"relative-type--1": "上个月",
|
|
3512
|
-
"relative-type-0": "本月",
|
|
3513
|
-
"relative-type-1": "下个月",
|
|
3514
|
-
"relativeTime-type-future": {
|
|
3515
|
-
"relativeTimePattern-count-other": "{0}个月后"
|
|
3516
|
-
},
|
|
3517
|
-
"relativeTime-type-past": {
|
|
3518
|
-
"relativeTimePattern-count-other": "{0}个月前"
|
|
3519
|
-
}
|
|
3520
|
-
},
|
|
3521
|
-
"month-narrow": {
|
|
3522
|
-
"displayName": "月",
|
|
3523
|
-
"relative-type--1": "上个月",
|
|
3524
|
-
"relative-type-0": "本月",
|
|
3525
|
-
"relative-type-1": "下个月",
|
|
3526
|
-
"relativeTime-type-future": {
|
|
3527
|
-
"relativeTimePattern-count-other": "{0}个月后"
|
|
3528
|
-
},
|
|
3529
|
-
"relativeTime-type-past": {
|
|
3530
|
-
"relativeTimePattern-count-other": "{0}个月前"
|
|
3531
|
-
}
|
|
3532
|
-
},
|
|
3533
|
-
"week-wide": {
|
|
3534
|
-
"displayName": "周",
|
|
3535
|
-
"relative-type--1": "上周",
|
|
3536
|
-
"relative-type-0": "本周",
|
|
3537
|
-
"relative-type-1": "下周",
|
|
3538
|
-
"relativeTime-type-future": {
|
|
3539
|
-
"relativeTimePattern-count-other": "{0}周后"
|
|
3540
|
-
},
|
|
3541
|
-
"relativeTime-type-past": {
|
|
3542
|
-
"relativeTimePattern-count-other": "{0}周前"
|
|
3543
|
-
},
|
|
3544
|
-
"relativePeriod": "{0}这周"
|
|
3545
|
-
},
|
|
3546
|
-
"week-short": {
|
|
3547
|
-
"displayName": "周",
|
|
3548
|
-
"relative-type--1": "上周",
|
|
3549
|
-
"relative-type-0": "本周",
|
|
3550
|
-
"relative-type-1": "下周",
|
|
3551
|
-
"relativeTime-type-future": {
|
|
3552
|
-
"relativeTimePattern-count-other": "{0}周后"
|
|
3553
|
-
},
|
|
3554
|
-
"relativeTime-type-past": {
|
|
3555
|
-
"relativeTimePattern-count-other": "{0}周前"
|
|
3556
|
-
},
|
|
3557
|
-
"relativePeriod": "{0}这周"
|
|
3558
|
-
},
|
|
3559
|
-
"week-narrow": {
|
|
3560
|
-
"displayName": "周",
|
|
3561
|
-
"relative-type--1": "上周",
|
|
3562
|
-
"relative-type-0": "本周",
|
|
3563
|
-
"relative-type-1": "下周",
|
|
3564
|
-
"relativeTime-type-future": {
|
|
3565
|
-
"relativeTimePattern-count-other": "{0}周后"
|
|
3566
|
-
},
|
|
3567
|
-
"relativeTime-type-past": {
|
|
3568
|
-
"relativeTimePattern-count-other": "{0}周前"
|
|
3569
|
-
},
|
|
3570
|
-
"relativePeriod": "{0}这周"
|
|
3571
|
-
},
|
|
3572
|
-
"day-wide": {
|
|
3573
|
-
"displayName": "日",
|
|
3574
|
-
"relative-type--2": "前天",
|
|
3575
|
-
"relative-type--1": "昨天",
|
|
3576
|
-
"relative-type-0": "今天",
|
|
3577
|
-
"relative-type-1": "明天",
|
|
3578
|
-
"relative-type-2": "后天",
|
|
3579
|
-
"relativeTime-type-future": {
|
|
3580
|
-
"relativeTimePattern-count-other": "{0}天后"
|
|
3581
|
-
},
|
|
3582
|
-
"relativeTime-type-past": {
|
|
3583
|
-
"relativeTimePattern-count-other": "{0}天前"
|
|
3584
|
-
}
|
|
3585
|
-
},
|
|
3586
|
-
"day-short": {
|
|
3587
|
-
"displayName": "日",
|
|
3588
|
-
"relative-type--2": "前天",
|
|
3589
|
-
"relative-type--1": "昨天",
|
|
3590
|
-
"relative-type-0": "今天",
|
|
3591
|
-
"relative-type-1": "明天",
|
|
3592
|
-
"relative-type-2": "后天",
|
|
3593
|
-
"relativeTime-type-future": {
|
|
3594
|
-
"relativeTimePattern-count-other": "{0}天后"
|
|
3595
|
-
},
|
|
3596
|
-
"relativeTime-type-past": {
|
|
3597
|
-
"relativeTimePattern-count-other": "{0}天前"
|
|
3598
|
-
}
|
|
3599
|
-
},
|
|
3600
|
-
"day-narrow": {
|
|
3601
|
-
"displayName": "日",
|
|
3602
|
-
"relative-type--2": "前天",
|
|
3603
|
-
"relative-type--1": "昨天",
|
|
3604
|
-
"relative-type-0": "今天",
|
|
3605
|
-
"relative-type-1": "明天",
|
|
3606
|
-
"relative-type-2": "后天",
|
|
3607
|
-
"relativeTime-type-future": {
|
|
3608
|
-
"relativeTimePattern-count-other": "{0}天后"
|
|
3609
|
-
},
|
|
3610
|
-
"relativeTime-type-past": {
|
|
3611
|
-
"relativeTimePattern-count-other": "{0}天前"
|
|
3612
|
-
}
|
|
3613
|
-
},
|
|
3614
|
-
"weekday": {
|
|
3615
|
-
"displayName": "工作日"
|
|
3616
|
-
},
|
|
3617
|
-
"hour-wide": {
|
|
3618
|
-
"displayName": "小时",
|
|
3619
|
-
"relative-type-0": "这一时间 / 此时",
|
|
3620
|
-
"relativeTime-type-future": {
|
|
3621
|
-
"relativeTimePattern-count-other": "{0}小时后"
|
|
3622
|
-
},
|
|
3623
|
-
"relativeTime-type-past": {
|
|
3624
|
-
"relativeTimePattern-count-other": "{0}小时前"
|
|
3625
|
-
}
|
|
3626
|
-
},
|
|
3627
|
-
"hour-short": {
|
|
3628
|
-
"displayName": "小时",
|
|
3629
|
-
"relative-type-0": "这一时间 / 此时",
|
|
3630
|
-
"relativeTime-type-future": {
|
|
3631
|
-
"relativeTimePattern-count-other": "{0}小时后"
|
|
3632
|
-
},
|
|
3633
|
-
"relativeTime-type-past": {
|
|
3634
|
-
"relativeTimePattern-count-other": "{0}小时前"
|
|
3635
|
-
}
|
|
3636
|
-
},
|
|
3637
|
-
"hour-narrow": {
|
|
3638
|
-
"displayName": "小时",
|
|
3639
|
-
"relative-type-0": "这一时间 / 此时",
|
|
3640
|
-
"relativeTime-type-future": {
|
|
3641
|
-
"relativeTimePattern-count-other": "{0}小时后"
|
|
3642
|
-
},
|
|
3643
|
-
"relativeTime-type-past": {
|
|
3644
|
-
"relativeTimePattern-count-other": "{0}小时前"
|
|
3645
|
-
}
|
|
3646
|
-
},
|
|
3647
|
-
"minute-wide": {
|
|
3648
|
-
"displayName": "分钟",
|
|
3649
|
-
"relative-type-0": "此刻",
|
|
3650
|
-
"relativeTime-type-future": {
|
|
3651
|
-
"relativeTimePattern-count-other": "{0}分钟后"
|
|
3652
|
-
},
|
|
3653
|
-
"relativeTime-type-past": {
|
|
3654
|
-
"relativeTimePattern-count-other": "{0}分钟前"
|
|
3655
|
-
}
|
|
3656
|
-
},
|
|
3657
|
-
"minute-short": {
|
|
3658
|
-
"displayName": "分",
|
|
3659
|
-
"relative-type-0": "此刻",
|
|
3660
|
-
"relativeTime-type-future": {
|
|
3661
|
-
"relativeTimePattern-count-other": "{0}分钟后"
|
|
3662
|
-
},
|
|
3663
|
-
"relativeTime-type-past": {
|
|
3664
|
-
"relativeTimePattern-count-other": "{0}分钟前"
|
|
3665
|
-
}
|
|
3666
|
-
},
|
|
3667
|
-
"minute-narrow": {
|
|
3668
|
-
"displayName": "分",
|
|
3669
|
-
"relative-type-0": "此刻",
|
|
3670
|
-
"relativeTime-type-future": {
|
|
3671
|
-
"relativeTimePattern-count-other": "{0}分钟后"
|
|
3672
|
-
},
|
|
3673
|
-
"relativeTime-type-past": {
|
|
3674
|
-
"relativeTimePattern-count-other": "{0}分钟前"
|
|
3675
|
-
}
|
|
3676
|
-
},
|
|
3677
|
-
"second-wide": {
|
|
3678
|
-
"displayName": "秒",
|
|
3679
|
-
"relative-type-0": "现在",
|
|
3680
|
-
"relativeTime-type-future": {
|
|
3681
|
-
"relativeTimePattern-count-other": "{0}秒后"
|
|
3682
|
-
},
|
|
3683
|
-
"relativeTime-type-past": {
|
|
3684
|
-
"relativeTimePattern-count-other": "{0}秒前"
|
|
3685
|
-
}
|
|
3686
|
-
},
|
|
3687
|
-
"second-short": {
|
|
3688
|
-
"displayName": "秒",
|
|
3689
|
-
"relative-type-0": "现在",
|
|
3690
|
-
"relativeTime-type-future": {
|
|
3691
|
-
"relativeTimePattern-count-other": "{0}秒后"
|
|
3692
|
-
},
|
|
3693
|
-
"relativeTime-type-past": {
|
|
3694
|
-
"relativeTimePattern-count-other": "{0}秒前"
|
|
3695
|
-
}
|
|
3696
|
-
},
|
|
3697
|
-
"second-narrow": {
|
|
3698
|
-
"displayName": "秒",
|
|
3699
|
-
"relative-type-0": "现在",
|
|
3700
|
-
"relativeTime-type-future": {
|
|
3701
|
-
"relativeTimePattern-count-other": "{0}秒后"
|
|
3702
|
-
},
|
|
3703
|
-
"relativeTime-type-past": {
|
|
3704
|
-
"relativeTimePattern-count-other": "{0}秒前"
|
|
3705
|
-
}
|
|
3706
|
-
},
|
|
3707
|
-
"zone": {
|
|
3708
|
-
"displayName": "时区"
|
|
3709
|
-
}
|
|
3710
|
-
},
|
|
3711
|
-
"decimalFormat": {
|
|
3712
|
-
"standard": "#,##0.###"
|
|
3713
|
-
},
|
|
3714
|
-
"decimalFormat-long": {
|
|
3715
|
-
"1000-other": "0",
|
|
3716
|
-
"10000-other": "0万",
|
|
3717
|
-
"100000-other": "00万",
|
|
3718
|
-
"1000000-other": "000万",
|
|
3719
|
-
"10000000-other": "0000万",
|
|
3720
|
-
"100000000-other": "0亿",
|
|
3721
|
-
"1000000000-other": "00亿",
|
|
3722
|
-
"10000000000-other": "000亿",
|
|
3723
|
-
"100000000000-other": "0000亿",
|
|
3724
|
-
"1000000000000-other": "0兆",
|
|
3725
|
-
"10000000000000-other": "00兆",
|
|
3726
|
-
"100000000000000-other": "000兆"
|
|
3727
|
-
},
|
|
3728
|
-
"decimalFormat-short": {
|
|
3729
|
-
"1000-other": "0",
|
|
3730
|
-
"10000-other": "0万",
|
|
3731
|
-
"100000-other": "00万",
|
|
3732
|
-
"1000000-other": "000万",
|
|
3733
|
-
"10000000-other": "0000万",
|
|
3734
|
-
"100000000-other": "0亿",
|
|
3735
|
-
"1000000000-other": "00亿",
|
|
3736
|
-
"10000000000-other": "000亿",
|
|
3737
|
-
"100000000000-other": "0000亿",
|
|
3738
|
-
"1000000000000-other": "0兆",
|
|
3739
|
-
"10000000000000-other": "00兆",
|
|
3740
|
-
"100000000000000-other": "000兆"
|
|
3741
|
-
},
|
|
3742
|
-
"scientificFormat": {
|
|
3743
|
-
"standard": "#E0"
|
|
3744
|
-
},
|
|
3745
|
-
"percentFormat": {
|
|
3746
|
-
"standard": "#,##0%"
|
|
3747
|
-
},
|
|
3748
|
-
"currencyFormat": {
|
|
3749
|
-
"standard": "¤#,##0.00",
|
|
3750
|
-
"accounting": "¤#,##0.00;(¤#,##0.00)",
|
|
3751
|
-
"currencySpacing": {
|
|
3752
|
-
"beforeCurrency": {
|
|
3753
|
-
"currencyMatch": "[:^S:]",
|
|
3754
|
-
"surroundingMatch": "[:digit:]",
|
|
3755
|
-
"insertBetween": " "
|
|
3756
|
-
},
|
|
3757
|
-
"afterCurrency": {
|
|
3758
|
-
"currencyMatch": "[:^S:]",
|
|
3759
|
-
"surroundingMatch": "[:digit:]",
|
|
3760
|
-
"insertBetween": " "
|
|
3761
|
-
}
|
|
3762
|
-
},
|
|
3763
|
-
"sap-standard": "#,##0.00¤",
|
|
3764
|
-
"sap-accounting": "#,##0.00¤;(#,##0.00¤)"
|
|
3765
|
-
},
|
|
3766
|
-
"miscPattern": {
|
|
3767
|
-
"approximately": "~{0}",
|
|
3768
|
-
"atLeast": "{0}+",
|
|
3769
|
-
"atMost": "≤{0}",
|
|
3770
|
-
"range": "{0}-{1}"
|
|
3771
|
-
},
|
|
3772
|
-
"currencyFormat-short": {
|
|
3773
|
-
"1000-other": "0",
|
|
3774
|
-
"10000-other": "¤0万",
|
|
3775
|
-
"100000-other": "¤00万",
|
|
3776
|
-
"1000000-other": "¤000万",
|
|
3777
|
-
"10000000-other": "¤0000万",
|
|
3778
|
-
"100000000-other": "¤0亿",
|
|
3779
|
-
"1000000000-other": "¤00亿",
|
|
3780
|
-
"10000000000-other": "¤000亿",
|
|
3781
|
-
"100000000000-other": "¤0000亿",
|
|
3782
|
-
"1000000000000-other": "¤0兆",
|
|
3783
|
-
"10000000000000-other": "¤00兆",
|
|
3784
|
-
"100000000000000-other": "¤000兆"
|
|
3785
|
-
},
|
|
3786
|
-
"symbols-latn-decimal": ".",
|
|
3787
|
-
"symbols-latn-group": ",",
|
|
3788
|
-
"symbols-latn-list": ";",
|
|
3789
|
-
"symbols-latn-percentSign": "%",
|
|
3790
|
-
"symbols-latn-plusSign": "+",
|
|
3791
|
-
"symbols-latn-minusSign": "-",
|
|
3792
|
-
"symbols-latn-exponential": "E",
|
|
3793
|
-
"symbols-latn-superscriptingExponent": "×",
|
|
3794
|
-
"symbols-latn-perMille": "‰",
|
|
3795
|
-
"symbols-latn-infinity": "∞",
|
|
3796
|
-
"symbols-latn-nan": "NaN",
|
|
3797
|
-
"symbols-latn-timeSeparator": ":",
|
|
3798
|
-
"currencySymbols": {
|
|
3799
|
-
"AUD": "AU$",
|
|
3800
|
-
"BRL": "R$",
|
|
3801
|
-
"CAD": "CA$",
|
|
3802
|
-
"CNY": "CN¥",
|
|
3803
|
-
"EUR": "€",
|
|
3804
|
-
"GBP": "£",
|
|
3805
|
-
"HKD": "HK$",
|
|
3806
|
-
"ILR": "ILS",
|
|
3807
|
-
"ILS": "₪",
|
|
3808
|
-
"INR": "₹",
|
|
3809
|
-
"JPY": "JP¥",
|
|
3810
|
-
"KRW": "₩",
|
|
3811
|
-
"MXN": "MX$",
|
|
3812
|
-
"NZD": "NZ$",
|
|
3813
|
-
"SGD": "$",
|
|
3814
|
-
"TWD": "NT$",
|
|
3815
|
-
"USD": "US$",
|
|
3816
|
-
"VND": "₫",
|
|
3817
|
-
"XAF": "FCFA",
|
|
3818
|
-
"XCD": "EC$",
|
|
3819
|
-
"XOF": "CFA",
|
|
3820
|
-
"XPF": "CFPF"
|
|
3821
|
-
},
|
|
3822
|
-
"rtl": false,
|
|
3823
|
-
"listPattern-standard-wide": {
|
|
3824
|
-
"2": "{0}和{1}",
|
|
3825
|
-
"start": "{0}、{1}",
|
|
3826
|
-
"middle": "{0}、{1}",
|
|
3827
|
-
"end": "{0}和{1}"
|
|
3828
|
-
},
|
|
3829
|
-
"listPattern-or-wide": {
|
|
3830
|
-
"2": "{0}或{1}",
|
|
3831
|
-
"start": "{0}、{1}",
|
|
3832
|
-
"middle": "{0}、{1}",
|
|
3833
|
-
"end": "{0}或{1}"
|
|
3834
|
-
},
|
|
3835
|
-
"listPattern-or-short": {
|
|
3836
|
-
"2": "{0}或{1}",
|
|
3837
|
-
"start": "{0}、{1}",
|
|
3838
|
-
"middle": "{0}、{1}",
|
|
3839
|
-
"end": "{0}或{1}"
|
|
3840
|
-
},
|
|
3841
|
-
"listPattern-standard-short": {
|
|
3842
|
-
"2": "{0}和{1}",
|
|
3843
|
-
"start": "{0}、{1}",
|
|
3844
|
-
"middle": "{0}、{1}",
|
|
3845
|
-
"end": "{0}和{1}"
|
|
3846
|
-
},
|
|
3847
|
-
"units": {
|
|
3848
|
-
"short": {
|
|
3849
|
-
"per": {
|
|
3850
|
-
"compoundUnitPattern": "{0}/{1}"
|
|
3851
|
-
},
|
|
3852
|
-
"acceleration-g-force": {
|
|
3853
|
-
"displayName": "G力",
|
|
3854
|
-
"unitPattern-count-other": "{0}G"
|
|
3855
|
-
},
|
|
3856
|
-
"acceleration-meter-per-second-squared": {
|
|
3857
|
-
"displayName": "米/秒²",
|
|
3858
|
-
"unitPattern-count-other": "{0}米/秒²"
|
|
3859
|
-
},
|
|
3860
|
-
"angle-revolution": {
|
|
3861
|
-
"displayName": "转",
|
|
3862
|
-
"unitPattern-count-other": "{0}转"
|
|
3863
|
-
},
|
|
3864
|
-
"angle-radian": {
|
|
3865
|
-
"displayName": "弧度",
|
|
3866
|
-
"unitPattern-count-other": "{0}弧度"
|
|
3867
|
-
},
|
|
3868
|
-
"angle-degree": {
|
|
3869
|
-
"displayName": "度",
|
|
3870
|
-
"unitPattern-count-other": "{0}°"
|
|
3871
|
-
},
|
|
3872
|
-
"angle-arc-minute": {
|
|
3873
|
-
"displayName": "弧分",
|
|
3874
|
-
"unitPattern-count-other": "{0}弧分"
|
|
3875
|
-
},
|
|
3876
|
-
"angle-arc-second": {
|
|
3877
|
-
"displayName": "弧秒",
|
|
3878
|
-
"unitPattern-count-other": "{0}弧秒"
|
|
3879
|
-
},
|
|
3880
|
-
"area-square-kilometer": {
|
|
3881
|
-
"displayName": "平方公里",
|
|
3882
|
-
"unitPattern-count-other": "{0}平方公里",
|
|
3883
|
-
"perUnitPattern": "{0}/平方公里"
|
|
3884
|
-
},
|
|
3885
|
-
"area-hectare": {
|
|
3886
|
-
"displayName": "公顷",
|
|
3887
|
-
"unitPattern-count-other": "{0}公顷"
|
|
3888
|
-
},
|
|
3889
|
-
"area-square-meter": {
|
|
3890
|
-
"displayName": "平方米",
|
|
3891
|
-
"unitPattern-count-other": "{0}平方米",
|
|
3892
|
-
"perUnitPattern": "{0}/平方米"
|
|
3893
|
-
},
|
|
3894
|
-
"area-square-centimeter": {
|
|
3895
|
-
"displayName": "平方厘米",
|
|
3896
|
-
"unitPattern-count-other": "{0}平方厘米",
|
|
3897
|
-
"perUnitPattern": "{0}/平方厘米"
|
|
3898
|
-
},
|
|
3899
|
-
"area-square-mile": {
|
|
3900
|
-
"displayName": "平方英里",
|
|
3901
|
-
"unitPattern-count-other": "{0}平方英里",
|
|
3902
|
-
"perUnitPattern": "{0}/平方英里"
|
|
3903
|
-
},
|
|
3904
|
-
"area-acre": {
|
|
3905
|
-
"displayName": "英亩",
|
|
3906
|
-
"unitPattern-count-other": "{0}英亩"
|
|
3907
|
-
},
|
|
3908
|
-
"area-square-yard": {
|
|
3909
|
-
"displayName": "平方码",
|
|
3910
|
-
"unitPattern-count-other": "{0}平方码"
|
|
3911
|
-
},
|
|
3912
|
-
"area-square-foot": {
|
|
3913
|
-
"displayName": "平方英尺",
|
|
3914
|
-
"unitPattern-count-other": "{0}平方英尺"
|
|
3915
|
-
},
|
|
3916
|
-
"area-square-inch": {
|
|
3917
|
-
"displayName": "平方英寸",
|
|
3918
|
-
"unitPattern-count-other": "{0}平方英寸",
|
|
3919
|
-
"perUnitPattern": "{0}/平方英寸"
|
|
3920
|
-
},
|
|
3921
|
-
"area-dunam": {
|
|
3922
|
-
"displayName": "杜纳亩",
|
|
3923
|
-
"unitPattern-count-other": "{0}杜纳亩"
|
|
3924
|
-
},
|
|
3925
|
-
"concentr-karat": {
|
|
3926
|
-
"displayName": "克拉",
|
|
3927
|
-
"unitPattern-count-other": "{0}克拉"
|
|
3928
|
-
},
|
|
3929
|
-
"concentr-milligram-per-deciliter": {
|
|
3930
|
-
"displayName": "毫克/分升",
|
|
3931
|
-
"unitPattern-count-other": "{0}毫克/分升"
|
|
3932
|
-
},
|
|
3933
|
-
"concentr-millimole-per-liter": {
|
|
3934
|
-
"displayName": "毫摩尔/升",
|
|
3935
|
-
"unitPattern-count-other": "{0}毫摩尔/升"
|
|
3936
|
-
},
|
|
3937
|
-
"concentr-part-per-million": {
|
|
3938
|
-
"displayName": "ppm",
|
|
3939
|
-
"unitPattern-count-other": "{0}ppm"
|
|
3940
|
-
},
|
|
3941
|
-
"concentr-percent": {
|
|
3942
|
-
"displayName": "%",
|
|
3943
|
-
"unitPattern-count-other": "{0}%"
|
|
3944
|
-
},
|
|
3945
|
-
"concentr-permille": {
|
|
3946
|
-
"displayName": "‰",
|
|
3947
|
-
"unitPattern-count-other": "{0}‰"
|
|
3948
|
-
},
|
|
3949
|
-
"concentr-permyriad": {
|
|
3950
|
-
"displayName": "‱",
|
|
3951
|
-
"unitPattern-count-other": "{0}‱"
|
|
3952
|
-
},
|
|
3953
|
-
"concentr-mole": {
|
|
3954
|
-
"displayName": "摩尔",
|
|
3955
|
-
"unitPattern-count-other": "{0}摩尔"
|
|
3956
|
-
},
|
|
3957
|
-
"consumption-liter-per-kilometer": {
|
|
3958
|
-
"displayName": "升/公里",
|
|
3959
|
-
"unitPattern-count-other": "{0}升/公里"
|
|
3960
|
-
},
|
|
3961
|
-
"consumption-liter-per-100kilometers": {
|
|
3962
|
-
"displayName": "升/100千米",
|
|
3963
|
-
"unitPattern-count-other": "{0}升/100千米"
|
|
3964
|
-
},
|
|
3965
|
-
"consumption-mile-per-gallon": {
|
|
3966
|
-
"displayName": "英里/加仑",
|
|
3967
|
-
"unitPattern-count-other": "{0}英里/加仑"
|
|
3968
|
-
},
|
|
3969
|
-
"consumption-mile-per-gallon-imperial": {
|
|
3970
|
-
"displayName": "英里/英制加仑",
|
|
3971
|
-
"unitPattern-count-other": "{0}英里/英制加仑"
|
|
3972
|
-
},
|
|
3973
|
-
"digital-petabyte": {
|
|
3974
|
-
"displayName": "PB",
|
|
3975
|
-
"unitPattern-count-other": "{0} PB"
|
|
3976
|
-
},
|
|
3977
|
-
"digital-terabyte": {
|
|
3978
|
-
"displayName": "太字节",
|
|
3979
|
-
"unitPattern-count-other": "{0}太字节"
|
|
3980
|
-
},
|
|
3981
|
-
"digital-terabit": {
|
|
3982
|
-
"displayName": "太比特",
|
|
3983
|
-
"unitPattern-count-other": "{0}太比特"
|
|
3984
|
-
},
|
|
3985
|
-
"digital-gigabyte": {
|
|
3986
|
-
"displayName": "吉字节",
|
|
3987
|
-
"unitPattern-count-other": "{0}吉字节"
|
|
3988
|
-
},
|
|
3989
|
-
"digital-gigabit": {
|
|
3990
|
-
"displayName": "吉比特",
|
|
3991
|
-
"unitPattern-count-other": "{0}吉比特"
|
|
3992
|
-
},
|
|
3993
|
-
"digital-megabyte": {
|
|
3994
|
-
"displayName": "兆字节",
|
|
3995
|
-
"unitPattern-count-other": "{0}兆字节"
|
|
3996
|
-
},
|
|
3997
|
-
"digital-megabit": {
|
|
3998
|
-
"displayName": "兆比特",
|
|
3999
|
-
"unitPattern-count-other": "{0}兆比特"
|
|
4000
|
-
},
|
|
4001
|
-
"digital-kilobyte": {
|
|
4002
|
-
"displayName": "千字节",
|
|
4003
|
-
"unitPattern-count-other": "{0}千字节"
|
|
4004
|
-
},
|
|
4005
|
-
"digital-kilobit": {
|
|
4006
|
-
"displayName": "千比特",
|
|
4007
|
-
"unitPattern-count-other": "{0}千比特"
|
|
4008
|
-
},
|
|
4009
|
-
"digital-byte": {
|
|
4010
|
-
"displayName": "字节",
|
|
4011
|
-
"unitPattern-count-other": "{0}字节"
|
|
4012
|
-
},
|
|
4013
|
-
"digital-bit": {
|
|
4014
|
-
"displayName": "比特",
|
|
4015
|
-
"unitPattern-count-other": "{0}比特"
|
|
4016
|
-
},
|
|
4017
|
-
"duration-century": {
|
|
4018
|
-
"displayName": "世纪",
|
|
4019
|
-
"unitPattern-count-other": "{0}个世纪"
|
|
4020
|
-
},
|
|
4021
|
-
"duration-year": {
|
|
4022
|
-
"displayName": "年",
|
|
4023
|
-
"unitPattern-count-other": "{0}年",
|
|
4024
|
-
"perUnitPattern": "{0}/年"
|
|
4025
|
-
},
|
|
4026
|
-
"duration-month": {
|
|
4027
|
-
"displayName": "个月",
|
|
4028
|
-
"unitPattern-count-other": "{0}个月",
|
|
4029
|
-
"perUnitPattern": "{0}/月"
|
|
4030
|
-
},
|
|
4031
|
-
"duration-week": {
|
|
4032
|
-
"displayName": "周",
|
|
4033
|
-
"unitPattern-count-other": "{0}周",
|
|
4034
|
-
"perUnitPattern": "{0}/周"
|
|
4035
|
-
},
|
|
4036
|
-
"duration-day": {
|
|
4037
|
-
"displayName": "天",
|
|
4038
|
-
"unitPattern-count-other": "{0}天",
|
|
4039
|
-
"perUnitPattern": "{0}/天"
|
|
4040
|
-
},
|
|
4041
|
-
"duration-hour": {
|
|
4042
|
-
"displayName": "小时",
|
|
4043
|
-
"unitPattern-count-other": "{0}小时",
|
|
4044
|
-
"perUnitPattern": "{0}/小时"
|
|
4045
|
-
},
|
|
4046
|
-
"duration-minute": {
|
|
4047
|
-
"displayName": "分钟",
|
|
4048
|
-
"unitPattern-count-other": "{0}分钟",
|
|
4049
|
-
"perUnitPattern": "{0}/分钟"
|
|
4050
|
-
},
|
|
4051
|
-
"duration-second": {
|
|
4052
|
-
"displayName": "秒",
|
|
4053
|
-
"unitPattern-count-other": "{0}秒",
|
|
4054
|
-
"perUnitPattern": "{0}/秒"
|
|
4055
|
-
},
|
|
4056
|
-
"duration-millisecond": {
|
|
4057
|
-
"displayName": "毫秒",
|
|
4058
|
-
"unitPattern-count-other": "{0}毫秒"
|
|
4059
|
-
},
|
|
4060
|
-
"duration-microsecond": {
|
|
4061
|
-
"displayName": "微秒",
|
|
4062
|
-
"unitPattern-count-other": "{0}微秒"
|
|
4063
|
-
},
|
|
4064
|
-
"duration-nanosecond": {
|
|
4065
|
-
"displayName": "纳秒",
|
|
4066
|
-
"unitPattern-count-other": "{0}纳秒"
|
|
4067
|
-
},
|
|
4068
|
-
"electric-ampere": {
|
|
4069
|
-
"displayName": "安培",
|
|
4070
|
-
"unitPattern-count-other": "{0}安"
|
|
4071
|
-
},
|
|
4072
|
-
"electric-milliampere": {
|
|
4073
|
-
"displayName": "毫安",
|
|
4074
|
-
"unitPattern-count-other": "{0}毫安"
|
|
4075
|
-
},
|
|
4076
|
-
"electric-ohm": {
|
|
4077
|
-
"displayName": "欧姆",
|
|
4078
|
-
"unitPattern-count-other": "{0}欧"
|
|
4079
|
-
},
|
|
4080
|
-
"electric-volt": {
|
|
4081
|
-
"displayName": "伏特",
|
|
4082
|
-
"unitPattern-count-other": "{0}伏"
|
|
4083
|
-
},
|
|
4084
|
-
"energy-kilocalorie": {
|
|
4085
|
-
"displayName": "千卡",
|
|
4086
|
-
"unitPattern-count-other": "{0}千卡"
|
|
4087
|
-
},
|
|
4088
|
-
"energy-calorie": {
|
|
4089
|
-
"displayName": "卡",
|
|
4090
|
-
"unitPattern-count-other": "{0}卡"
|
|
4091
|
-
},
|
|
4092
|
-
"energy-foodcalorie": {
|
|
4093
|
-
"displayName": "卡",
|
|
4094
|
-
"unitPattern-count-other": "{0}卡"
|
|
4095
|
-
},
|
|
4096
|
-
"energy-kilojoule": {
|
|
4097
|
-
"displayName": "千焦",
|
|
4098
|
-
"unitPattern-count-other": "{0}千焦"
|
|
4099
|
-
},
|
|
4100
|
-
"energy-joule": {
|
|
4101
|
-
"displayName": "焦耳",
|
|
4102
|
-
"unitPattern-count-other": "{0}焦耳"
|
|
4103
|
-
},
|
|
4104
|
-
"energy-kilowatt-hour": {
|
|
4105
|
-
"displayName": "千瓦时",
|
|
4106
|
-
"unitPattern-count-other": "{0}千瓦时"
|
|
4107
|
-
},
|
|
4108
|
-
"energy-electronvolt": {
|
|
4109
|
-
"displayName": "电子伏",
|
|
4110
|
-
"unitPattern-count-other": "{0}电子伏"
|
|
4111
|
-
},
|
|
4112
|
-
"energy-british-thermal-unit": {
|
|
4113
|
-
"displayName": "英热单位",
|
|
4114
|
-
"unitPattern-count-other": "{0}英热单位"
|
|
4115
|
-
},
|
|
4116
|
-
"force-pound-force": {
|
|
4117
|
-
"displayName": "磅力",
|
|
4118
|
-
"unitPattern-count-other": "{0}磅力"
|
|
4119
|
-
},
|
|
4120
|
-
"force-newton": {
|
|
4121
|
-
"displayName": "牛",
|
|
4122
|
-
"unitPattern-count-other": "{0}牛"
|
|
4123
|
-
},
|
|
4124
|
-
"frequency-gigahertz": {
|
|
4125
|
-
"displayName": "吉赫",
|
|
4126
|
-
"unitPattern-count-other": "{0}吉赫"
|
|
4127
|
-
},
|
|
4128
|
-
"frequency-megahertz": {
|
|
4129
|
-
"displayName": "兆赫",
|
|
4130
|
-
"unitPattern-count-other": "{0}兆赫"
|
|
4131
|
-
},
|
|
4132
|
-
"frequency-kilohertz": {
|
|
4133
|
-
"displayName": "千赫",
|
|
4134
|
-
"unitPattern-count-other": "{0}千赫"
|
|
4135
|
-
},
|
|
4136
|
-
"frequency-hertz": {
|
|
4137
|
-
"displayName": "赫兹",
|
|
4138
|
-
"unitPattern-count-other": "{0}赫"
|
|
4139
|
-
},
|
|
4140
|
-
"length-kilometer": {
|
|
4141
|
-
"displayName": "公里",
|
|
4142
|
-
"unitPattern-count-other": "{0}公里",
|
|
4143
|
-
"perUnitPattern": "{0}/公里"
|
|
4144
|
-
},
|
|
4145
|
-
"length-meter": {
|
|
4146
|
-
"displayName": "米",
|
|
4147
|
-
"unitPattern-count-other": "{0}米",
|
|
4148
|
-
"perUnitPattern": "{0}/米"
|
|
4149
|
-
},
|
|
4150
|
-
"length-decimeter": {
|
|
4151
|
-
"displayName": "分米",
|
|
4152
|
-
"unitPattern-count-other": "{0}分米"
|
|
4153
|
-
},
|
|
4154
|
-
"length-centimeter": {
|
|
4155
|
-
"displayName": "厘米",
|
|
4156
|
-
"unitPattern-count-other": "{0}厘米",
|
|
4157
|
-
"perUnitPattern": "{0}/厘米"
|
|
4158
|
-
},
|
|
4159
|
-
"length-millimeter": {
|
|
4160
|
-
"displayName": "毫米",
|
|
4161
|
-
"unitPattern-count-other": "{0}毫米"
|
|
4162
|
-
},
|
|
4163
|
-
"length-micrometer": {
|
|
4164
|
-
"displayName": "微米",
|
|
4165
|
-
"unitPattern-count-other": "{0}微米"
|
|
4166
|
-
},
|
|
4167
|
-
"length-nanometer": {
|
|
4168
|
-
"displayName": "纳米",
|
|
4169
|
-
"unitPattern-count-other": "{0}纳米"
|
|
4170
|
-
},
|
|
4171
|
-
"length-picometer": {
|
|
4172
|
-
"displayName": "皮米",
|
|
4173
|
-
"unitPattern-count-other": "{0}皮米"
|
|
4174
|
-
},
|
|
4175
|
-
"length-mile": {
|
|
4176
|
-
"displayName": "英里",
|
|
4177
|
-
"unitPattern-count-other": "{0}英里"
|
|
4178
|
-
},
|
|
4179
|
-
"length-yard": {
|
|
4180
|
-
"displayName": "码",
|
|
4181
|
-
"unitPattern-count-other": "{0}码"
|
|
4182
|
-
},
|
|
4183
|
-
"length-foot": {
|
|
4184
|
-
"displayName": "英尺",
|
|
4185
|
-
"unitPattern-count-other": "{0}英尺",
|
|
4186
|
-
"perUnitPattern": "{0}/英尺"
|
|
4187
|
-
},
|
|
4188
|
-
"length-inch": {
|
|
4189
|
-
"displayName": "英寸",
|
|
4190
|
-
"unitPattern-count-other": "{0}英寸",
|
|
4191
|
-
"perUnitPattern": "{0}/英寸"
|
|
4192
|
-
},
|
|
4193
|
-
"length-parsec": {
|
|
4194
|
-
"displayName": "秒差距",
|
|
4195
|
-
"unitPattern-count-other": "{0}秒差距"
|
|
4196
|
-
},
|
|
4197
|
-
"length-light-year": {
|
|
4198
|
-
"displayName": "光年",
|
|
4199
|
-
"unitPattern-count-other": "{0}光年"
|
|
4200
|
-
},
|
|
4201
|
-
"length-astronomical-unit": {
|
|
4202
|
-
"displayName": "天文单位",
|
|
4203
|
-
"unitPattern-count-other": "{0}天文单位"
|
|
4204
|
-
},
|
|
4205
|
-
"length-furlong": {
|
|
4206
|
-
"displayName": "弗隆",
|
|
4207
|
-
"unitPattern-count-other": "{0}弗隆"
|
|
4208
|
-
},
|
|
4209
|
-
"length-fathom": {
|
|
4210
|
-
"displayName": "英寻",
|
|
4211
|
-
"unitPattern-count-other": "{0}英寻"
|
|
4212
|
-
},
|
|
4213
|
-
"length-nautical-mile": {
|
|
4214
|
-
"displayName": "海里",
|
|
4215
|
-
"unitPattern-count-other": "{0}海里"
|
|
4216
|
-
},
|
|
4217
|
-
"length-mile-scandinavian": {
|
|
4218
|
-
"displayName": "斯堪的纳维亚英里",
|
|
4219
|
-
"unitPattern-count-other": "{0}斯堪的纳维亚英里"
|
|
4220
|
-
},
|
|
4221
|
-
"length-point": {
|
|
4222
|
-
"displayName": "pt",
|
|
4223
|
-
"unitPattern-count-other": "{0} pt"
|
|
4224
|
-
},
|
|
4225
|
-
"length-solar-radius": {
|
|
4226
|
-
"displayName": "太阳半径",
|
|
4227
|
-
"unitPattern-count-other": "{0}太阳半径"
|
|
4228
|
-
},
|
|
4229
|
-
"light-lux": {
|
|
4230
|
-
"displayName": "勒克斯",
|
|
4231
|
-
"unitPattern-count-other": "{0}勒克斯"
|
|
4232
|
-
},
|
|
4233
|
-
"light-solar-luminosity": {
|
|
4234
|
-
"displayName": "太阳光度",
|
|
4235
|
-
"unitPattern-count-other": "{0}太阳光度"
|
|
4236
|
-
},
|
|
4237
|
-
"mass-metric-ton": {
|
|
4238
|
-
"displayName": "公吨",
|
|
4239
|
-
"unitPattern-count-other": "{0}公吨"
|
|
4240
|
-
},
|
|
4241
|
-
"mass-kilogram": {
|
|
4242
|
-
"displayName": "千克",
|
|
4243
|
-
"unitPattern-count-other": "{0}千克",
|
|
4244
|
-
"perUnitPattern": "{0}/千克"
|
|
4245
|
-
},
|
|
4246
|
-
"mass-gram": {
|
|
4247
|
-
"displayName": "克",
|
|
4248
|
-
"unitPattern-count-other": "{0}克",
|
|
4249
|
-
"perUnitPattern": "{0}/克"
|
|
4250
|
-
},
|
|
4251
|
-
"mass-milligram": {
|
|
4252
|
-
"displayName": "毫克",
|
|
4253
|
-
"unitPattern-count-other": "{0}毫克"
|
|
4254
|
-
},
|
|
4255
|
-
"mass-microgram": {
|
|
4256
|
-
"displayName": "微克",
|
|
4257
|
-
"unitPattern-count-other": "{0}微克"
|
|
4258
|
-
},
|
|
4259
|
-
"mass-ton": {
|
|
4260
|
-
"displayName": "吨",
|
|
4261
|
-
"unitPattern-count-other": "{0}吨"
|
|
4262
|
-
},
|
|
4263
|
-
"mass-stone": {
|
|
4264
|
-
"displayName": "英石",
|
|
4265
|
-
"unitPattern-count-other": "{0}英石"
|
|
4266
|
-
},
|
|
4267
|
-
"mass-pound": {
|
|
4268
|
-
"displayName": "磅",
|
|
4269
|
-
"unitPattern-count-other": "{0}磅",
|
|
4270
|
-
"perUnitPattern": "{0}/磅"
|
|
4271
|
-
},
|
|
4272
|
-
"mass-ounce": {
|
|
4273
|
-
"displayName": "盎司",
|
|
4274
|
-
"unitPattern-count-other": "{0}盎司",
|
|
4275
|
-
"perUnitPattern": "{0}/盎司"
|
|
4276
|
-
},
|
|
4277
|
-
"mass-ounce-troy": {
|
|
4278
|
-
"displayName": "金衡盎司",
|
|
4279
|
-
"unitPattern-count-other": "{0}金衡盎司"
|
|
4280
|
-
},
|
|
4281
|
-
"mass-carat": {
|
|
4282
|
-
"displayName": "克拉",
|
|
4283
|
-
"unitPattern-count-other": "{0}克拉"
|
|
4284
|
-
},
|
|
4285
|
-
"mass-dalton": {
|
|
4286
|
-
"displayName": "道尔顿",
|
|
4287
|
-
"unitPattern-count-other": "{0}道尔顿"
|
|
4288
|
-
},
|
|
4289
|
-
"mass-earth-mass": {
|
|
4290
|
-
"displayName": "地球质量",
|
|
4291
|
-
"unitPattern-count-other": "{0}地球质量"
|
|
4292
|
-
},
|
|
4293
|
-
"mass-solar-mass": {
|
|
4294
|
-
"displayName": "太阳质量",
|
|
4295
|
-
"unitPattern-count-other": "{0}太阳质量"
|
|
4296
|
-
},
|
|
4297
|
-
"power-gigawatt": {
|
|
4298
|
-
"displayName": "吉瓦",
|
|
4299
|
-
"unitPattern-count-other": "{0}吉瓦"
|
|
4300
|
-
},
|
|
4301
|
-
"power-megawatt": {
|
|
4302
|
-
"displayName": "兆瓦",
|
|
4303
|
-
"unitPattern-count-other": "{0}兆瓦"
|
|
4304
|
-
},
|
|
4305
|
-
"power-kilowatt": {
|
|
4306
|
-
"displayName": "千瓦",
|
|
4307
|
-
"unitPattern-count-other": "{0}千瓦"
|
|
4308
|
-
},
|
|
4309
|
-
"power-watt": {
|
|
4310
|
-
"displayName": "瓦特",
|
|
4311
|
-
"unitPattern-count-other": "{0}瓦"
|
|
4312
|
-
},
|
|
4313
|
-
"power-milliwatt": {
|
|
4314
|
-
"displayName": "毫瓦",
|
|
4315
|
-
"unitPattern-count-other": "{0}毫瓦"
|
|
4316
|
-
},
|
|
4317
|
-
"power-horsepower": {
|
|
4318
|
-
"displayName": "马力",
|
|
4319
|
-
"unitPattern-count-other": "{0}马力"
|
|
4320
|
-
},
|
|
4321
|
-
"pressure-hectopascal": {
|
|
4322
|
-
"displayName": "百帕",
|
|
4323
|
-
"unitPattern-count-other": "{0}百帕"
|
|
4324
|
-
},
|
|
4325
|
-
"pressure-millimeter-of-mercury": {
|
|
4326
|
-
"displayName": "毫米汞柱",
|
|
4327
|
-
"unitPattern-count-other": "{0}毫米汞柱"
|
|
4328
|
-
},
|
|
4329
|
-
"pressure-pound-per-square-inch": {
|
|
4330
|
-
"displayName": "磅/平方英寸",
|
|
4331
|
-
"unitPattern-count-other": "每平方英寸{0}磅"
|
|
4332
|
-
},
|
|
4333
|
-
"pressure-inch-hg": {
|
|
4334
|
-
"displayName": "英寸汞柱",
|
|
4335
|
-
"unitPattern-count-other": "{0}英寸汞柱"
|
|
4336
|
-
},
|
|
4337
|
-
"pressure-millibar": {
|
|
4338
|
-
"displayName": "毫巴",
|
|
4339
|
-
"unitPattern-count-other": "{0}毫巴"
|
|
4340
|
-
},
|
|
4341
|
-
"pressure-atmosphere": {
|
|
4342
|
-
"displayName": "大气压",
|
|
4343
|
-
"unitPattern-count-other": "{0}个大气压"
|
|
4344
|
-
},
|
|
4345
|
-
"pressure-kilopascal": {
|
|
4346
|
-
"displayName": "千帕",
|
|
4347
|
-
"unitPattern-count-other": "{0}千帕"
|
|
4348
|
-
},
|
|
4349
|
-
"pressure-megapascal": {
|
|
4350
|
-
"displayName": "兆帕",
|
|
4351
|
-
"unitPattern-count-other": "{0}兆帕"
|
|
4352
|
-
},
|
|
4353
|
-
"speed-kilometer-per-hour": {
|
|
4354
|
-
"displayName": "公里/小时",
|
|
4355
|
-
"unitPattern-count-other": "每小时{0}公里"
|
|
4356
|
-
},
|
|
4357
|
-
"speed-meter-per-second": {
|
|
4358
|
-
"displayName": "米/秒",
|
|
4359
|
-
"unitPattern-count-other": "{0}米/秒"
|
|
4360
|
-
},
|
|
4361
|
-
"speed-mile-per-hour": {
|
|
4362
|
-
"displayName": "英里/小时",
|
|
4363
|
-
"unitPattern-count-other": "{0}英里/小时"
|
|
4364
|
-
},
|
|
4365
|
-
"speed-knot": {
|
|
4366
|
-
"displayName": "节",
|
|
4367
|
-
"unitPattern-count-other": "{0}节"
|
|
4368
|
-
},
|
|
4369
|
-
"temperature-generic": {
|
|
4370
|
-
"displayName": "°",
|
|
4371
|
-
"unitPattern-count-other": "{0}°"
|
|
4372
|
-
},
|
|
4373
|
-
"temperature-celsius": {
|
|
4374
|
-
"displayName": "摄氏度",
|
|
4375
|
-
"unitPattern-count-other": "{0}°C"
|
|
4376
|
-
},
|
|
4377
|
-
"temperature-fahrenheit": {
|
|
4378
|
-
"displayName": "华氏度",
|
|
4379
|
-
"unitPattern-count-other": "{0}°F"
|
|
4380
|
-
},
|
|
4381
|
-
"temperature-kelvin": {
|
|
4382
|
-
"displayName": "开",
|
|
4383
|
-
"unitPattern-count-other": "{0}°K"
|
|
4384
|
-
},
|
|
4385
|
-
"torque-pound-foot": {
|
|
4386
|
-
"displayName": "磅英尺",
|
|
4387
|
-
"unitPattern-count-other": "{0}磅英尺"
|
|
4388
|
-
},
|
|
4389
|
-
"torque-newton-meter": {
|
|
4390
|
-
"displayName": "牛米",
|
|
4391
|
-
"unitPattern-count-other": "{0}牛米"
|
|
4392
|
-
},
|
|
4393
|
-
"volume-cubic-kilometer": {
|
|
4394
|
-
"displayName": "立方千米",
|
|
4395
|
-
"unitPattern-count-other": "{0}立方千米"
|
|
4396
|
-
},
|
|
4397
|
-
"volume-cubic-meter": {
|
|
4398
|
-
"displayName": "立方米",
|
|
4399
|
-
"unitPattern-count-other": "{0}立方米",
|
|
4400
|
-
"perUnitPattern": "{0}/立方米"
|
|
4401
|
-
},
|
|
4402
|
-
"volume-cubic-centimeter": {
|
|
4403
|
-
"displayName": "立方厘米",
|
|
4404
|
-
"unitPattern-count-other": "{0}立方厘米",
|
|
4405
|
-
"perUnitPattern": "{0}/立方厘米"
|
|
4406
|
-
},
|
|
4407
|
-
"volume-cubic-mile": {
|
|
4408
|
-
"displayName": "立方英里",
|
|
4409
|
-
"unitPattern-count-other": "{0}立方英里"
|
|
4410
|
-
},
|
|
4411
|
-
"volume-cubic-yard": {
|
|
4412
|
-
"displayName": "立方码",
|
|
4413
|
-
"unitPattern-count-other": "{0}立方码"
|
|
4414
|
-
},
|
|
4415
|
-
"volume-cubic-foot": {
|
|
4416
|
-
"displayName": "立方英尺",
|
|
4417
|
-
"unitPattern-count-other": "{0}立方英尺"
|
|
4418
|
-
},
|
|
4419
|
-
"volume-cubic-inch": {
|
|
4420
|
-
"displayName": "立方英寸",
|
|
4421
|
-
"unitPattern-count-other": "{0}立方英寸"
|
|
4422
|
-
},
|
|
4423
|
-
"volume-megaliter": {
|
|
4424
|
-
"displayName": "兆升",
|
|
4425
|
-
"unitPattern-count-other": "{0}兆升"
|
|
4426
|
-
},
|
|
4427
|
-
"volume-hectoliter": {
|
|
4428
|
-
"displayName": "公石",
|
|
4429
|
-
"unitPattern-count-other": "{0}公石"
|
|
4430
|
-
},
|
|
4431
|
-
"volume-liter": {
|
|
4432
|
-
"displayName": "升",
|
|
4433
|
-
"unitPattern-count-other": "{0}升",
|
|
4434
|
-
"perUnitPattern": "{0}/升"
|
|
4435
|
-
},
|
|
4436
|
-
"volume-deciliter": {
|
|
4437
|
-
"displayName": "分升",
|
|
4438
|
-
"unitPattern-count-other": "{0}分升"
|
|
4439
|
-
},
|
|
4440
|
-
"volume-centiliter": {
|
|
4441
|
-
"displayName": "厘升",
|
|
4442
|
-
"unitPattern-count-other": "{0}厘升"
|
|
4443
|
-
},
|
|
4444
|
-
"volume-milliliter": {
|
|
4445
|
-
"displayName": "毫升",
|
|
4446
|
-
"unitPattern-count-other": "{0}毫升"
|
|
4447
|
-
},
|
|
4448
|
-
"volume-pint-metric": {
|
|
4449
|
-
"displayName": "公制品脱",
|
|
4450
|
-
"unitPattern-count-other": "{0}公制品脱"
|
|
4451
|
-
},
|
|
4452
|
-
"volume-cup-metric": {
|
|
4453
|
-
"displayName": "公制杯",
|
|
4454
|
-
"unitPattern-count-other": "{0}公制杯"
|
|
4455
|
-
},
|
|
4456
|
-
"volume-acre-foot": {
|
|
4457
|
-
"displayName": "英亩英尺",
|
|
4458
|
-
"unitPattern-count-other": "{0}英亩英尺"
|
|
4459
|
-
},
|
|
4460
|
-
"volume-bushel": {
|
|
4461
|
-
"displayName": "蒲式耳",
|
|
4462
|
-
"unitPattern-count-other": "{0}蒲式耳"
|
|
4463
|
-
},
|
|
4464
|
-
"volume-gallon": {
|
|
4465
|
-
"displayName": "加仑",
|
|
4466
|
-
"unitPattern-count-other": "{0}加仑",
|
|
4467
|
-
"perUnitPattern": "{0}/加仑"
|
|
4468
|
-
},
|
|
4469
|
-
"volume-gallon-imperial": {
|
|
4470
|
-
"displayName": "英制加仑",
|
|
4471
|
-
"unitPattern-count-other": "{0}英制加仑",
|
|
4472
|
-
"perUnitPattern": "{0}/英制加仑"
|
|
4473
|
-
},
|
|
4474
|
-
"volume-quart": {
|
|
4475
|
-
"displayName": "夸脱",
|
|
4476
|
-
"unitPattern-count-other": "{0}夸脱"
|
|
4477
|
-
},
|
|
4478
|
-
"volume-pint": {
|
|
4479
|
-
"displayName": "品脱",
|
|
4480
|
-
"unitPattern-count-other": "{0}品脱"
|
|
4481
|
-
},
|
|
4482
|
-
"volume-cup": {
|
|
4483
|
-
"displayName": "杯",
|
|
4484
|
-
"unitPattern-count-other": "{0}杯"
|
|
4485
|
-
},
|
|
4486
|
-
"volume-fluid-ounce": {
|
|
4487
|
-
"displayName": "液盎司",
|
|
4488
|
-
"unitPattern-count-other": "{0}液盎司"
|
|
4489
|
-
},
|
|
4490
|
-
"volume-fluid-ounce-imperial": {
|
|
4491
|
-
"displayName": "英制液盎司",
|
|
4492
|
-
"unitPattern-count-other": "{0}英制液盎司"
|
|
4493
|
-
},
|
|
4494
|
-
"volume-tablespoon": {
|
|
4495
|
-
"displayName": "汤匙",
|
|
4496
|
-
"unitPattern-count-other": "{0}汤匙"
|
|
4497
|
-
},
|
|
4498
|
-
"volume-teaspoon": {
|
|
4499
|
-
"displayName": "茶匙",
|
|
4500
|
-
"unitPattern-count-other": "{0}茶匙"
|
|
4501
|
-
},
|
|
4502
|
-
"volume-barrel": {
|
|
4503
|
-
"displayName": "桶",
|
|
4504
|
-
"unitPattern-count-other": "{0}桶"
|
|
4505
|
-
},
|
|
4506
|
-
"coordinateUnit": {
|
|
4507
|
-
"displayName": "方向",
|
|
4508
|
-
"east": "东经{0}",
|
|
4509
|
-
"north": "北纬{0}",
|
|
4510
|
-
"south": "南纬{0}",
|
|
4511
|
-
"west": "西经{0}"
|
|
4512
|
-
}
|
|
4513
|
-
}
|
|
4514
|
-
},
|
|
4515
|
-
"lenient-scope-number": {
|
|
4516
|
-
"minusSign": "-‒⁻₋−➖﹣-",
|
|
4517
|
-
"commaSign": ",،٫、︐︑﹐﹑,、",
|
|
4518
|
-
"plusSign": "+⁺₊➕﬩﹢+"
|
|
4519
|
-
},
|
|
4520
|
-
"currencyFormat-sap-short": {
|
|
4521
|
-
"1000-other": "0",
|
|
4522
|
-
"10000-other": "0万 ¤",
|
|
4523
|
-
"100000-other": "00万 ¤",
|
|
4524
|
-
"1000000-other": "000万 ¤",
|
|
4525
|
-
"10000000-other": "0000万 ¤",
|
|
4526
|
-
"100000000-other": "0亿 ¤",
|
|
4527
|
-
"1000000000-other": "00亿 ¤",
|
|
4528
|
-
"10000000000-other": "000亿 ¤",
|
|
4529
|
-
"100000000000-other": "0000亿 ¤",
|
|
4530
|
-
"1000000000000-other": "0兆 ¤",
|
|
4531
|
-
"10000000000000-other": "00兆 ¤",
|
|
4532
|
-
"100000000000000-other": "000兆 ¤"
|
|
4533
|
-
},
|
|
4534
|
-
"currencyDigits": {
|
|
4535
|
-
"ADP": 0,
|
|
4536
|
-
"AFN": 0,
|
|
4537
|
-
"ALL": 0,
|
|
4538
|
-
"BHD": 3,
|
|
4539
|
-
"BIF": 0,
|
|
4540
|
-
"BYR": 0,
|
|
4541
|
-
"CLF": 4,
|
|
4542
|
-
"CLP": 0,
|
|
4543
|
-
"DEFAULT": 2,
|
|
4544
|
-
"DJF": 0,
|
|
4545
|
-
"ESP": 0,
|
|
4546
|
-
"GNF": 0,
|
|
4547
|
-
"HUF": 0,
|
|
4548
|
-
"IQD": 0,
|
|
4549
|
-
"IRR": 0,
|
|
4550
|
-
"ISK": 0,
|
|
4551
|
-
"ITL": 0,
|
|
4552
|
-
"JOD": 3,
|
|
4553
|
-
"JPY": 0,
|
|
4554
|
-
"KMF": 0,
|
|
4555
|
-
"KPW": 0,
|
|
4556
|
-
"KRW": 0,
|
|
4557
|
-
"KWD": 3,
|
|
4558
|
-
"LAK": 0,
|
|
4559
|
-
"LBP": 0,
|
|
4560
|
-
"LUF": 0,
|
|
4561
|
-
"LYD": 3,
|
|
4562
|
-
"MGA": 0,
|
|
4563
|
-
"MGF": 0,
|
|
4564
|
-
"MMK": 0,
|
|
4565
|
-
"MRO": 0,
|
|
4566
|
-
"OMR": 3,
|
|
4567
|
-
"PYG": 0,
|
|
4568
|
-
"RSD": 0,
|
|
4569
|
-
"RWF": 0,
|
|
4570
|
-
"SLL": 0,
|
|
4571
|
-
"SOS": 0,
|
|
4572
|
-
"STD": 0,
|
|
4573
|
-
"SYP": 0,
|
|
4574
|
-
"TMM": 0,
|
|
4575
|
-
"TND": 3,
|
|
4576
|
-
"TRL": 0,
|
|
4577
|
-
"TWD": 0,
|
|
4578
|
-
"UGX": 0,
|
|
4579
|
-
"UYI": 0,
|
|
4580
|
-
"UYW": 4,
|
|
4581
|
-
"VND": 0,
|
|
4582
|
-
"VUV": 0,
|
|
4583
|
-
"XAF": 0,
|
|
4584
|
-
"XOF": 0,
|
|
4585
|
-
"XPF": 0,
|
|
4586
|
-
"YER": 0,
|
|
4587
|
-
"ZMK": 0,
|
|
4588
|
-
"ZWD": 0
|
|
4589
|
-
},
|
|
4590
|
-
"plurals": {},
|
|
4591
|
-
"weekData-minDays": 1,
|
|
4592
|
-
"weekData-firstDay": 0,
|
|
4593
|
-
"weekData-weekendStart": 6,
|
|
4594
|
-
"weekData-weekendEnd": 0,
|
|
4595
|
-
"timeData": {
|
|
4596
|
-
"_allowed": "h hb H hB",
|
|
4597
|
-
"_preferred": "h"
|
|
4598
|
-
},
|
|
4599
|
-
"eras-gregorian": {
|
|
4600
|
-
"0": {
|
|
4601
|
-
"_end": "0-12-31"
|
|
4602
|
-
},
|
|
4603
|
-
"1": {
|
|
4604
|
-
"_start": "1-01-01"
|
|
4605
|
-
}
|
|
4606
|
-
},
|
|
4607
|
-
"eras-islamic": {
|
|
4608
|
-
"0": {
|
|
4609
|
-
"_start": "622-7-15"
|
|
4610
|
-
}
|
|
4611
|
-
},
|
|
4612
|
-
"eras-persian": {
|
|
4613
|
-
"0": {
|
|
4614
|
-
"_start": "622-01-01"
|
|
4615
|
-
}
|
|
4616
|
-
},
|
|
4617
|
-
"eras-buddhist": {
|
|
4618
|
-
"0": {
|
|
4619
|
-
"_start": "-542-01-01"
|
|
4620
|
-
}
|
|
4621
|
-
},
|
|
4622
|
-
"eras-japanese": {
|
|
4623
|
-
"232": {
|
|
4624
|
-
"_start": "1868-9-8"
|
|
4625
|
-
},
|
|
4626
|
-
"233": {
|
|
4627
|
-
"_start": "1912-7-30"
|
|
4628
|
-
},
|
|
4629
|
-
"234": {
|
|
4630
|
-
"_start": "1926-12-25"
|
|
4631
|
-
},
|
|
4632
|
-
"235": {
|
|
4633
|
-
"_start": "1989-1-8"
|
|
4634
|
-
},
|
|
4635
|
-
"236": {
|
|
4636
|
-
"_start": "2019-5-1"
|
|
4637
|
-
}
|
|
4638
|
-
},
|
|
4639
|
-
"calendarPreference": "gregorian chinese"
|
|
4640
|
-
}
|