init
This commit is contained in:
94
locale/en.json
Normal file
94
locale/en.json
Normal file
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"utils.loading": "加载中...",
|
||||
"uni.dataSelect.placeholder": "请选择",
|
||||
"uni.dataSelect.emptyTips": "无选项",
|
||||
"utils.read-more": "查看更多",
|
||||
"utils.no-more": "没有更多",
|
||||
"button.confirm": "确定",
|
||||
"button.cancel": "取消",
|
||||
"button.clear": "清空",
|
||||
"button.search": "查询",
|
||||
"button.confirm-quhuo": "确认取货",
|
||||
"button.scan-add": "扫码插入",
|
||||
"button.add-row": "插入行",
|
||||
"button.del-row": "删除行",
|
||||
"button.copy-row": "复制行",
|
||||
"button.material-bind": "物料绑定",
|
||||
"button.empty-vehicle-bind": "空载具绑定",
|
||||
"button.lock": "锁定",
|
||||
"button.unlock": "解锁",
|
||||
"button.confirm-down-material": "确认下料",
|
||||
"button.reissue": "重新下发",
|
||||
"button.force-complete": "强制完成",
|
||||
"button.enter": "进入",
|
||||
"button.quit": "退出",
|
||||
"login.username": "用户名",
|
||||
"login.password": "密码",
|
||||
"login.remember": "记住用户名",
|
||||
"login.settings": "设置",
|
||||
"login.upgrade": "升级版本",
|
||||
"login.login": "登录",
|
||||
"login.text1": "欢迎来到",
|
||||
"login.text2": "东丽DTY WMS手持系统!",
|
||||
"setting.language": "语言",
|
||||
"setting.server": "服务器地址",
|
||||
"setting.refresh": "刷新时间",
|
||||
"setting.customer-label-printing": "客户标签打印",
|
||||
"setting.language-change-confirm": "应用此设置将重启App",
|
||||
"upgrade.new-version": "发现新版本",
|
||||
"upgrade.text1": "又有新版本了,升级到最新版本,享受更丰富、稳定、快速的功能和体验!",
|
||||
"upgrade.text2": "安装包下载中,请稍后",
|
||||
"upgrade.upgrade-now": "立即升级",
|
||||
"home.title": "首页",
|
||||
"home.message": "欢迎进入东丽DTY WMS手持系统!",
|
||||
"home.exit": "退出",
|
||||
"menu.kw-management": "库位管理",
|
||||
"menu.man-get-goods": "人工取货",
|
||||
"menu.man-load-goods": "人工放货",
|
||||
"menu.kc-manage": "库存锁定/解锁",
|
||||
"menu.line-management": "产线管理",
|
||||
"menu.line-call-mater": "产线叫料",
|
||||
"menu.line-down-mater": "产线下料",
|
||||
"menu.task-management": "任务管理",
|
||||
"menu.work-manage": "作业管理",
|
||||
"menu.fixedpoint-work": "定点作业",
|
||||
"menu.inout-area-mark": "进出区域登记",
|
||||
"filter.area": "区域",
|
||||
"filter.point": "点位",
|
||||
"filter.type": "类型",
|
||||
"filter.material": "物料",
|
||||
"filter.wltype": "物料类型",
|
||||
"filter.material-use-number": "用料数量",
|
||||
"filter.callmater-pallet-number": "叫料托盘数",
|
||||
"filter.send-area": "送往区域",
|
||||
"filter.vehicle-code": "载具编码",
|
||||
"filter.start-point": "起点",
|
||||
"filter.end-point": "终点",
|
||||
"filter.start-area": "起点区域",
|
||||
"filter.end-area": "终点区域",
|
||||
"filter.control-area": "管制区域",
|
||||
"grid.number": "序号",
|
||||
"grid.roll-number": "卷号",
|
||||
"grid.material-code": "物料编码",
|
||||
"grid.material-name": "物料品种",
|
||||
"grid.quantity": "数量",
|
||||
"grid.unit": "单位",
|
||||
"grid.status": "状态",
|
||||
"grid.point": "点位",
|
||||
"grid.select": "选择",
|
||||
"grid.task-number": "任务号",
|
||||
"grid.start-point": "起点",
|
||||
"grid.end-point": "终点",
|
||||
"grid.vehicle-code": "载具号",
|
||||
"grid.enter-time": "进入时间",
|
||||
"grid.enter-man": "进入人",
|
||||
"grid.enter-area": "进入区域",
|
||||
"filter.wltype": "Material Type",
|
||||
"toast.select-row": "请选择一行",
|
||||
"toast.device-not-empty": "设备不能为空",
|
||||
"toast.material-not-empty": "物料不能为空",
|
||||
"toast.quantity-not-empty": "数量不能为空",
|
||||
"toast.scan-wooden-box-code": "请扫木箱码",
|
||||
"select.coaster": "小托盘",
|
||||
"unit.minute": "分"
|
||||
}
|
||||
29
locale/index.js
Normal file
29
locale/index.js
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
import en from './en.json'
|
||||
import zhHans from './zh-Hans.json'
|
||||
import jp from './jp.json'
|
||||
// const messages = {
|
||||
// 'en': Object.assign(en, en1),
|
||||
// 'zh-Hans': Object.assign(zhHans, zhHans1),
|
||||
// 'jp': Object.assign(jp, jp1)
|
||||
// }
|
||||
const messages = {
|
||||
'en': en,
|
||||
'zh-Hans': zhHans,
|
||||
'jp': jp
|
||||
}
|
||||
|
||||
let i18nConfig = {
|
||||
silentTranslationWarn: true,
|
||||
locale: uni.getLocale(),
|
||||
messages
|
||||
}
|
||||
|
||||
import Vue from 'vue'
|
||||
import VueI18n from 'vue-i18n'
|
||||
Vue.use(VueI18n)
|
||||
|
||||
const i18n = new VueI18n(i18nConfig)
|
||||
|
||||
export default i18n
|
||||
|
||||
94
locale/jp.json
Normal file
94
locale/jp.json
Normal file
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"utils.loading": "ロード中..",
|
||||
"uni.dataSelect.placeholder": "選択してください",
|
||||
"uni.dataSelect.emptyTips": "オプションなし",
|
||||
"utils.read-more": "詳細を表示",
|
||||
"utils.no-more": "これ以上ない",
|
||||
"button.confirm": "を選択して、",
|
||||
"button.cancel": "キャンセル",
|
||||
"button.clear": "クリアランス",
|
||||
"button.search": "クエリー#クエリー#",
|
||||
"button.confirm-quhuo": "引取確認",
|
||||
"button.scan-add": "スイープコード挿入",
|
||||
"button.add-row": "行の挿入",
|
||||
"button.del-row": "行の削除",
|
||||
"button.copy-row": "行のコピー",
|
||||
"button.material-bind": "品目バインディング",
|
||||
"button.empty-vehicle-bind": "ダミーバインド",
|
||||
"button.lock": "ロック#ロック#",
|
||||
"button.unlock": "ロック解除",
|
||||
"button.confirm-down-material": "原料投入の確認",
|
||||
"button.reissue": "再送",
|
||||
"button.force-complete": "強制完了",
|
||||
"button.enter": "に入る",
|
||||
"button.quit": "終了",
|
||||
"login.username": "ユーザー名",
|
||||
"login.password": "パスワード",
|
||||
"login.remember": "ユーザー名を記憶する",
|
||||
"login.settings": "設定#セッテイ#",
|
||||
"login.upgrade": "バージョンのアップグレード",
|
||||
"login.login": "ログイン#ログイン#",
|
||||
"login.text1": "ようこそ",
|
||||
"login.text2": "東レのWSSハンドヘルドシステム!",
|
||||
"setting.language": "言語",
|
||||
"setting.server": "サーバアドレス",
|
||||
"setting.refresh": "リフレッシュ時間",
|
||||
"setting.customer-label-printing": "顧客ラベル印刷",
|
||||
"setting.language-change-confirm": "この設定を適用するとAppが再起動されます",
|
||||
"upgrade.new-version": "新しいバージョンの検出",
|
||||
"upgrade.text1": "また新しいバージョンがあり、最新バージョンにアップグレードして、より豊富で安定した、迅速な機能と体験を楽しむことができます!",
|
||||
"upgrade.text2": "インストールパッケージのダウンロード中、しばらくお待ちください",
|
||||
"upgrade.upgrade-now": "今すぐアップグレード",
|
||||
"home.title": "トップページ",
|
||||
"home.message": "東レのWSSハンドヘルドシステムへようこそ!",
|
||||
"home.exit": "終了",
|
||||
"menu.kw-management": "ライブラリビット管理",
|
||||
"menu.man-get-goods": "手動による集荷",
|
||||
"menu.man-load-goods": "手動で荷を下ろす",
|
||||
"menu.kc-manage": "在庫ロック/ロック解除",
|
||||
"menu.line-management": "生産ライン管理",
|
||||
"menu.line-call-mater": "ラインフィード",
|
||||
"menu.line-down-mater": "ラインダウン",
|
||||
"menu.task-management": "タスク管理",
|
||||
"menu.work-manage": "ジョブ管理",
|
||||
"menu.fixedpoint-work": "ポインティングジョブ",
|
||||
"menu.inout-area-mark": "入退場区域登録",
|
||||
"filter.area": "領域",
|
||||
"filter.point": "ポイント",
|
||||
"filter.type": "を選択してオプションを設定します。",
|
||||
"filter.material": "品目",
|
||||
"filter.wltype": "品目タイプ",
|
||||
"filter.material-use-number": "材料使用量",
|
||||
"filter.callmater-pallet-number": "フィードトレイ数",
|
||||
"filter.send-area": "搬送エリア",
|
||||
"filter.vehicle-code": "キャリアコード",
|
||||
"filter.start-point": "開始点",
|
||||
"filter.end-point": "終点",
|
||||
"filter.start-area": "始点領域",
|
||||
"filter.end-area": "終点領域",
|
||||
"filter.control-area": "管制区域",
|
||||
"grid.number": "シーケンス番号",
|
||||
"grid.roll-number": "ボリューム番号",
|
||||
"grid.material-code": "品目コード",
|
||||
"grid.material-name": "品目名",
|
||||
"grid.quantity": "数量",
|
||||
"grid.unit": "単位",
|
||||
"grid.status": "ステータス",
|
||||
"grid.point": "ポイント",
|
||||
"grid.select": "せんたく",
|
||||
"grid.task-number": "タスク番号",
|
||||
"grid.start-point": "開始点",
|
||||
"grid.end-point": "終点",
|
||||
"grid.vehicle-code": "キャリア番号",
|
||||
"grid.enter-time": "にゅうりょくじかん",
|
||||
"grid.enter-man": "入場者",
|
||||
"grid.enter-area": "ゾーンに入る",
|
||||
"grid.wltype": "品目タイプ",
|
||||
"toast.select-row": "行を選択してください",
|
||||
"toast.device-not-empty": "デバイスを空にすることはできません",
|
||||
"toast.material-not-empty": "品目を空にすることはできません",
|
||||
"toast.quantity-not-empty": "数量は空にできません",
|
||||
"toast.scan-wooden-box-code": "木箱のコードを掃いてください",
|
||||
"select.coaster": "ミニトレイ",
|
||||
"unit.minute": "分"
|
||||
}
|
||||
36
locale/uni-app.en.json
Normal file
36
locale/uni-app.en.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"common": {
|
||||
"uni.app.quit": "Press again to exit the application",
|
||||
"uni.async.error": "Connection to server timeout, click on screen to retry",
|
||||
"uni.showActionSheet.cancel": "Cancel",
|
||||
"uni.showToast.unpaired": "Please note that showToast and hideToast must be paired for use",
|
||||
"uni.showLoading.unpaired": "Please note that showLoading and hideLoading must be paired for use",
|
||||
"uni.showModal.cancel": "Cancel",
|
||||
"uni.showModal.confirm": "Ok",
|
||||
"uni.chooseImage.cancel": "Cancel",
|
||||
"uni.chooseImage.sourceType.album": "Select from album",
|
||||
"uni.chooseImage.sourceType.camera": "Capture",
|
||||
"uni.chooseVideo.cancel": "Cancel",
|
||||
"uni.chooseVideo.sourceType.album": "Select from album",
|
||||
"uni.chooseVideo.sourceType.camera": "Capture",
|
||||
"uni.previewImage.cancel": "Cancel",
|
||||
"uni.previewImage.button.save": "Save image",
|
||||
"uni.previewImage.save.success": "Successfully saved image to album",
|
||||
"uni.previewImage.save.fail": "Saving image to album failed",
|
||||
"uni.setClipboardData.success": "Content copied",
|
||||
"uni.scanCode.title": "Scan Code",
|
||||
"uni.scanCode.album": "Album",
|
||||
"uni.scanCode.fail": "Recognition failed",
|
||||
"uni.scanCode.flash.on": "Tap to illuminate",
|
||||
"uni.scanCode.flash.off": "Tap to close",
|
||||
"uni.startSoterAuthentication.authContent": "Fingerprint recognition in progress...",
|
||||
"uni.picker.done": "Complete",
|
||||
"uni.picker.cancel": "Cancel",
|
||||
"uni.video.danmu": "Barrage",
|
||||
"uni.video.volume": "Volume",
|
||||
"uni.button.feedback.title": "Problem feedback",
|
||||
"uni.button.feedback.send": "Send"
|
||||
},
|
||||
"ios": {},
|
||||
"android": {}
|
||||
}
|
||||
36
locale/uni-app.jp.json
Normal file
36
locale/uni-app.jp.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"common": {
|
||||
"uni.app.quit": "もう一度押すとアプリケーションを終了します",
|
||||
"uni.async.error": "接続サーバーのタイムアウト、画面をクリックして再試行",
|
||||
"uni.showActionSheet.cancel": "キャンセル",
|
||||
"uni.showToast.unpaired": "showToastとhideToastはペアで使用する必要がありますので注意してください",
|
||||
"uni.showLoading.unpaired": "showLoadingとhideLoadingはペアで使用する必要がありますので注意してください",
|
||||
"uni.showModal.cancel": "キャンセル",
|
||||
"uni.showModal.confirm": "を選択して、",
|
||||
"uni.chooseImage.cancel": "キャンセル",
|
||||
"uni.chooseImage.sourceType.album": "アルバムから選択",
|
||||
"uni.chooseImage.sourceType.camera": "撮影する",
|
||||
"uni.chooseVideo.cancel": "キャンセル",
|
||||
"uni.chooseVideo.sourceType.album": "アルバムから選択",
|
||||
"uni.chooseVideo.sourceType.camera": "撮影する",
|
||||
"uni.previewImage.cancel": "キャンセル",
|
||||
"uni.previewImage.button.save": "画像を保存",
|
||||
"uni.previewImage.save.success": "アルバムへの画像の保存に成功しました",
|
||||
"uni.previewImage.save.fail": "画像をアルバムに保存できませんでした",
|
||||
"uni.setClipboardData.success": "コンテンツがコピーされました",
|
||||
"uni.scanCode.title": "スイープコード",
|
||||
"uni.scanCode.album": "アルバム冊",
|
||||
"uni.scanCode.fail": "認識に失敗しました",
|
||||
"uni.scanCode.flash.on": "そっと照らす",
|
||||
"uni.scanCode.flash.off": "ワンタッチオフ",
|
||||
"uni.startSoterAuthentication.authContent": "指紋認識中..",
|
||||
"uni.picker.done": "完了",
|
||||
"uni.picker.cancel": "キャンセル",
|
||||
"uni.video.danmu": "弾幕",
|
||||
"uni.video.volume": "音量",
|
||||
"uni.button.feedback.title": "もんだいフィードバック",
|
||||
"uni.button.feedback.send": "送信"
|
||||
},
|
||||
"ios": {},
|
||||
"android": {}
|
||||
}
|
||||
36
locale/uni-app.zh-Hans.json
Normal file
36
locale/uni-app.zh-Hans.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"common": {
|
||||
"uni.app.quit": "再按一次退出应用",
|
||||
"uni.async.error": "连接服务器超时,点击屏幕重试",
|
||||
"uni.showActionSheet.cancel": "取消",
|
||||
"uni.showToast.unpaired": "请注意 showToast 与 hideToast 必须配对使用",
|
||||
"uni.showLoading.unpaired": "请注意 showLoading 与 hideLoading 必须配对使用",
|
||||
"uni.showModal.cancel": "取消",
|
||||
"uni.showModal.confirm": "确定",
|
||||
"uni.chooseImage.cancel": "取消",
|
||||
"uni.chooseImage.sourceType.album": "从相册选择",
|
||||
"uni.chooseImage.sourceType.camera": "拍摄",
|
||||
"uni.chooseVideo.cancel": "取消",
|
||||
"uni.chooseVideo.sourceType.album": "从相册选择",
|
||||
"uni.chooseVideo.sourceType.camera": "拍摄",
|
||||
"uni.previewImage.cancel": "取消",
|
||||
"uni.previewImage.button.save": "保存图像",
|
||||
"uni.previewImage.save.success": "保存图像到相册成功",
|
||||
"uni.previewImage.save.fail": "保存图像到相册失败",
|
||||
"uni.setClipboardData.success": "内容已复制",
|
||||
"uni.scanCode.title": "扫码",
|
||||
"uni.scanCode.album": "相册",
|
||||
"uni.scanCode.fail": "识别失败",
|
||||
"uni.scanCode.flash.on": "轻触照亮",
|
||||
"uni.scanCode.flash.off": "轻触关闭",
|
||||
"uni.startSoterAuthentication.authContent": "指纹识别中...",
|
||||
"uni.picker.done": "完成",
|
||||
"uni.picker.cancel": "取消",
|
||||
"uni.video.danmu": "弹幕",
|
||||
"uni.video.volume": "音量",
|
||||
"uni.button.feedback.title": "问题反馈",
|
||||
"uni.button.feedback.send": "发送"
|
||||
},
|
||||
"ios": {},
|
||||
"android": {}
|
||||
}
|
||||
94
locale/zh-Hans.json
Normal file
94
locale/zh-Hans.json
Normal file
@@ -0,0 +1,94 @@
|
||||
{
|
||||
"utils.loading": "加载中...",
|
||||
"uni.dataSelect.placeholder": "请选择",
|
||||
"uni.dataSelect.emptyTips": "无选项",
|
||||
"utils.read-more": "查看更多",
|
||||
"utils.no-more": "没有更多",
|
||||
"button.confirm": "确定",
|
||||
"button.cancel": "取消",
|
||||
"button.clear": "清空",
|
||||
"button.search": "查询",
|
||||
"button.confirm-quhuo": "确认取货",
|
||||
"button.scan-add": "扫码插入",
|
||||
"button.add-row": "插入行",
|
||||
"button.del-row": "删除行",
|
||||
"button.copy-row": "复制行",
|
||||
"button.material-bind": "物料绑定",
|
||||
"button.empty-vehicle-bind": "空载具绑定",
|
||||
"button.lock": "锁定",
|
||||
"button.unlock": "解锁",
|
||||
"button.confirm-down-material": "确认下料",
|
||||
"button.reissue": "重新下发",
|
||||
"button.force-complete": "强制完成",
|
||||
"button.enter": "进入",
|
||||
"button.quit": "退出",
|
||||
"login.username": "用户名",
|
||||
"login.password": "密码",
|
||||
"login.remember": "记住用户名",
|
||||
"login.settings": "设置",
|
||||
"login.upgrade": "升级版本",
|
||||
"login.login": "登录",
|
||||
"login.text1": "欢迎来到",
|
||||
"login.text2": "东丽DTY WMS手持系统!",
|
||||
"setting.language": "语言",
|
||||
"setting.server": "服务器地址",
|
||||
"setting.refresh": "刷新时间",
|
||||
"setting.customer-label-printing": "客户标签打印",
|
||||
"setting.language-change-confirm": "应用此设置将重启App",
|
||||
"upgrade.new-version": "发现新版本",
|
||||
"upgrade.text1": "又有新版本了,升级到最新版本,享受更丰富、稳定、快速的功能和体验!",
|
||||
"upgrade.text2": "安装包下载中,请稍后",
|
||||
"upgrade.upgrade-now": "立即升级",
|
||||
"home.title": "首页",
|
||||
"home.message": "欢迎进入东丽DTY WMS手持系统!",
|
||||
"home.exit": "退出",
|
||||
"menu.kw-management": "库位管理",
|
||||
"menu.man-get-goods": "人工取货",
|
||||
"menu.man-load-goods": "人工放货",
|
||||
"menu.kc-manage": "库存锁定/解锁",
|
||||
"menu.line-management": "产线管理",
|
||||
"menu.line-call-mater": "产线叫料",
|
||||
"menu.line-down-mater": "产线下料",
|
||||
"menu.task-management": "任务管理",
|
||||
"menu.work-manage": "作业管理",
|
||||
"menu.fixedpoint-work": "定点作业",
|
||||
"menu.inout-area-mark": "进出区域登记",
|
||||
"filter.area": "区域",
|
||||
"filter.point": "点位",
|
||||
"filter.type": "类型",
|
||||
"filter.material": "物料",
|
||||
"filter.wltype": "物料类型",
|
||||
"filter.material-use-number": "用料数量",
|
||||
"filter.callmater-pallet-number": "叫料托盘数",
|
||||
"filter.send-area": "送往区域",
|
||||
"filter.vehicle-code": "载具编码",
|
||||
"filter.start-point": "起点",
|
||||
"filter.end-point": "终点",
|
||||
"filter.start-area": "起点区域",
|
||||
"filter.end-area": "终点区域",
|
||||
"filter.control-area": "管制区域",
|
||||
"grid.number": "序号",
|
||||
"grid.roll-number": "卷号",
|
||||
"grid.material-code": "物料编码",
|
||||
"grid.material-name": "物料品种",
|
||||
"grid.quantity": "数量",
|
||||
"grid.unit": "单位",
|
||||
"grid.status": "状态",
|
||||
"grid.point": "点位",
|
||||
"grid.select": "选择",
|
||||
"grid.task-number": "任务号",
|
||||
"grid.start-point": "起点",
|
||||
"grid.end-point": "终点",
|
||||
"grid.vehicle-code": "载具号",
|
||||
"grid.enter-time": "进入时间",
|
||||
"grid.enter-man": "进入人",
|
||||
"grid.enter-area": "进入区域",
|
||||
"grid.wltype": "物料类型",
|
||||
"toast.select-row": "请选择一行",
|
||||
"toast.device-not-empty": "设备不能为空",
|
||||
"toast.material-not-empty": "物料不能为空",
|
||||
"toast.quantity-not-empty": "数量不能为空",
|
||||
"toast.scan-wooden-box-code": "请扫木箱码",
|
||||
"select.coaster": "小托盘",
|
||||
"unit.minute": "分"
|
||||
}
|
||||
Reference in New Issue
Block a user