105 lines
3.6 KiB
JavaScript
105 lines
3.6 KiB
JavaScript
"use strict";
|
|
const en = {
|
|
"locale.auto": "System",
|
|
"locale.en": "English",
|
|
"locale.zh-hans": "简体中文",
|
|
"locale.zh-hant": "繁体中文",
|
|
"locale.ja": "日语",
|
|
"index.title": "Hello i18n",
|
|
"index.home": "Home",
|
|
"index.component": "Component",
|
|
"index.api": "API",
|
|
"index.schema": "Schema",
|
|
"index.demo": "uni-app globalization",
|
|
"index.demo-description": "Include uni-framework, manifest.json, pages.json, tabbar, Page, Component, API, Schema",
|
|
"index.detail": "Detail",
|
|
"index.language": "Language",
|
|
"index.language-info": "Settings",
|
|
"index.system-language": "System language",
|
|
"index.application-language": "Application language",
|
|
"index.language-change-confirm": "Applying this setting will restart the app",
|
|
"api.message": "Message",
|
|
"schema.name": "Name",
|
|
"schema.add": "Add",
|
|
"schema.add-success": "Add success"
|
|
};
|
|
const zhHans = {
|
|
"locale.auto": "系统",
|
|
"locale.en": "English",
|
|
"locale.zh-hans": "简体中文",
|
|
"locale.zh-hant": "繁体中文",
|
|
"locale.ja": "日语",
|
|
"index.title": "Hello i18n",
|
|
"index.home": "主页",
|
|
"index.component": "组件",
|
|
"index.api": "API",
|
|
"index.schema": "Schema",
|
|
"index.demo": "uni-app 国际化演示",
|
|
"index.demo-description": "包含 uni-framework、manifest.json、pages.json、tabbar、页面、组件、API、Schema",
|
|
"index.detail": "详情",
|
|
"index.language": "语言",
|
|
"index.language-info": "语言信息",
|
|
"index.system-language": "系统语言",
|
|
"index.application-language": "应用语言",
|
|
"index.language-change-confirm": "应用此设置将重启App",
|
|
"api.message": "提示",
|
|
"schema.name": "姓名",
|
|
"schema.add": "新增",
|
|
"schema.add-success": "新增成功"
|
|
};
|
|
const zhHant = {
|
|
"locale.auto": "系統",
|
|
"locale.en": "English",
|
|
"locale.zh-hans": "简体中文",
|
|
"locale.zh-hant": "繁體中文",
|
|
"locale.ja": "日语",
|
|
"index.title": "Hello i18n",
|
|
"index.home": "主頁",
|
|
"index.component": "組件",
|
|
"index.api": "API",
|
|
"index.schema": "Schema",
|
|
"index.demo": "uni-app 國際化演示",
|
|
"index.demo-description": "包含 uni-framework、manifest.json、pages.json、tabbar、頁面、組件、API、Schema",
|
|
"index.detail": "詳情",
|
|
"index.language": "語言",
|
|
"index.language-info": "語言信息",
|
|
"index.system-language": "系統語言",
|
|
"index.application-language": "應用語言",
|
|
"index.language-change-confirm": "應用此設置將重啟App",
|
|
"api.message": "提示",
|
|
"schema.name": "姓名",
|
|
"schema.add": "新增",
|
|
"schema.add-success": "新增成功"
|
|
};
|
|
const ja = {
|
|
"locale.auto": "システム",
|
|
"locale.en": "英語",
|
|
"locale.zh-hans": "简体中文",
|
|
"locale.zh-hant": "繁体中文",
|
|
"locale.ja": "日语",
|
|
"index.title": "Hello i18n",
|
|
"index.home": "ホーム",
|
|
"index.component": "コンポーネント",
|
|
"index.api": "API",
|
|
"index.schema": "Schema",
|
|
"index.demo": "uni-app globalization",
|
|
"index.demo-description": "ユニフレームワーク、manifest.json、pages.json、タブバー、ページ、コンポーネント、APIを含める、Schema",
|
|
"index.detail": "詳細",
|
|
"index.language": "言語",
|
|
"index.language-info": "設定",
|
|
"index.system-language": "システム言語",
|
|
"index.application-language": "アプリケーション言語",
|
|
"index.language-change-confirm": "この設定を適用すると、アプリが再起動します",
|
|
"api.message": "メッセージ",
|
|
"schema.add": "追加",
|
|
"schema.add-success": "成功を追加"
|
|
};
|
|
const messages = {
|
|
en,
|
|
"zh-Hans": zhHans,
|
|
"zh-Hant": zhHant,
|
|
ja
|
|
};
|
|
exports.messages = messages;
|
|
//# sourceMappingURL=../../.sourcemap/mp-weixin/locale/index.js.map
|