75 lines
2.6 KiB
JavaScript
75 lines
2.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": "主页",
|
|
"index.sort": "分类",
|
|
"index.hash.union": "哈希联盟",
|
|
"index.shopping.cart": "购物车",
|
|
"index.mine": "我的",
|
|
"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",
|
|
"bankCard.title": "银行卡管理",
|
|
"bankCard.add.title": "添加银行卡",
|
|
"address.title": "地址管理",
|
|
"address.add.title": "添加地址",
|
|
"authentication.title": "实名认证",
|
|
"purse.title": "我的钱包",
|
|
"purse.bonus.title": "我的奖金",
|
|
"invite.friends.title": "邀请好友",
|
|
"order.submit.title": "提交订单"
|
|
};
|
|
const zhHans = {
|
|
"locale.auto": "系统",
|
|
"locale.en": "English",
|
|
"locale.zh-hans": "简体中文",
|
|
"locale.zh-hant": "繁体中文",
|
|
"locale.ja": "日语",
|
|
"index.title": "Hello i18n",
|
|
"index.home": "主页",
|
|
"index.sort": "分类",
|
|
"index.hash.union": "哈希联盟",
|
|
"index.shopping.cart": "购物车",
|
|
"index.mine": "我的",
|
|
"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": "新增成功",
|
|
"bankCard.title": "银行卡管理",
|
|
"bankCard.add.title": "添加银行卡",
|
|
"address.title": "地址管理",
|
|
"address.add.title": "添加地址",
|
|
"authentication.title": "实名认证",
|
|
"purse.title": "我的钱包",
|
|
"purse.bonus.title": "我的奖金",
|
|
"invite.friends.title": "邀请好友",
|
|
"order.submit.title": "提交订单"
|
|
};
|
|
const messages = {
|
|
en,
|
|
"zh-Hans": zhHans
|
|
};
|
|
exports.messages = messages;
|
|
//# sourceMappingURL=../../.sourcemap/mp-weixin/locale/index.js.map
|