添加 国际化框架
This commit is contained in:
31
wms_pro/qd/src/i18n/langs/basedata/classification/en.js
Normal file
31
wms_pro/qd/src/i18n/langs/basedata/classification/en.js
Normal file
@@ -0,0 +1,31 @@
|
||||
export default {
|
||||
'classification': {
|
||||
'title': 'Basic category',
|
||||
'dialog': {
|
||||
'code': 'Classification code',
|
||||
'name': 'Classification Name',
|
||||
'desc': 'Brief description',
|
||||
'top_class': 'Top Category',
|
||||
'superior_class': 'Superior category',
|
||||
'update_name': 'Modified by',
|
||||
'update_time': 'Change time',
|
||||
'operate': 'operation',
|
||||
'is_update': 'Can it be modified'
|
||||
},
|
||||
'other': {
|
||||
'addSibling': 'Add peers at the same level',
|
||||
'addChildren': 'Add sub level'
|
||||
},
|
||||
'placeholder': {
|
||||
'label': 'Category Name',
|
||||
'select': 'Please choose a category name',
|
||||
'open': 'Expand All',
|
||||
'superior_class': 'Select superior category'
|
||||
},
|
||||
'msg': {
|
||||
'delete': 'Are you sure to delete? If there are subordinate nodes, they will be deleted together. This operation cannot be undone!',
|
||||
'isNotEmpty': 'Cannot be empty',
|
||||
'topClassNotEmpty': 'The top-level category cannot be empty'
|
||||
}
|
||||
}
|
||||
}
|
||||
31
wms_pro/qd/src/i18n/langs/basedata/classification/vi.js
Normal file
31
wms_pro/qd/src/i18n/langs/basedata/classification/vi.js
Normal file
@@ -0,0 +1,31 @@
|
||||
export default {
|
||||
'classification': {
|
||||
'title': 'Danh mục cơ bản',
|
||||
'dialog': {
|
||||
'code': 'Mã phân loại',
|
||||
'name': 'Danh mục',
|
||||
'desc': 'Mô tả ngắn gọn',
|
||||
'top_class': 'Phân loại hàng đầu',
|
||||
'superior_class': 'Lớp trên',
|
||||
'update_name': 'Thay đổi người',
|
||||
'update_time': 'Thời gian sửa đổi',
|
||||
'operate': 'Hoạt động',
|
||||
'is_update': 'Có thể sửa đổi'
|
||||
},
|
||||
'other': {
|
||||
'addSibling': 'Thêm cùng cấp',
|
||||
'addChildren': 'Thêm lớp con mới'
|
||||
},
|
||||
'placeholder': {
|
||||
'label': 'Danh mục',
|
||||
'select': 'Vui lòng chọn tên phân loại',
|
||||
'open': 'Mở rộng tất cả',
|
||||
'superior_class': 'Chọn loại cao hơn'
|
||||
},
|
||||
'msg': {
|
||||
'delete': 'Có xác định xóa bỏ không, nếu có các nút cấp dưới thì xóa cùng một, hành động này không thể hủy bỏ!',
|
||||
'isNotEmpty': 'Không thể để trống',
|
||||
'topClassNotEmpty': 'Lớp trên không được để trống.'
|
||||
}
|
||||
}
|
||||
}
|
||||
33
wms_pro/qd/src/i18n/langs/basedata/classification/zh.js
Normal file
33
wms_pro/qd/src/i18n/langs/basedata/classification/zh.js
Normal file
@@ -0,0 +1,33 @@
|
||||
export default {
|
||||
'classification': {
|
||||
'title': '基础类别',
|
||||
'dialog': {
|
||||
'code': '分类编码',
|
||||
'name': '分类名称',
|
||||
'desc': '简要描述',
|
||||
'top_class': '顶级类目',
|
||||
'superior_class': '上级类目',
|
||||
'create_name': '创建人',
|
||||
'create_time': '创建时间',
|
||||
'update_name': '修改人',
|
||||
'update_time': '修改时间',
|
||||
'operate': '操作',
|
||||
'is_update': '是否可修改'
|
||||
},
|
||||
'other': {
|
||||
'addSibling': '新增同级',
|
||||
'addChildren': '新增子级'
|
||||
},
|
||||
'placeholder': {
|
||||
'label': '类别名称',
|
||||
'select': '请选择分类名称',
|
||||
'open': '全部展开',
|
||||
'superior_class': '选择上级类目'
|
||||
},
|
||||
'msg': {
|
||||
'delete': '确定删除吗,如果存在下级节点则一并删除,此操作不能撤销!',
|
||||
'isNotEmpty': '不能为空',
|
||||
'topClassNotEmpty': '顶级类目不能为空'
|
||||
}
|
||||
}
|
||||
}
|
||||
26
wms_pro/qd/src/i18n/langs/basedata/material/en.js
Normal file
26
wms_pro/qd/src/i18n/langs/basedata/material/en.js
Normal file
@@ -0,0 +1,26 @@
|
||||
export default {
|
||||
'material': {
|
||||
'title': 'Basic Material Information',
|
||||
'dialog': {
|
||||
'code': 'Material code',
|
||||
'name': 'Material name',
|
||||
'spec': 'Material specifications',
|
||||
'class_id': 'Material classification identification',
|
||||
'standing_time': 'Return time (hours)',
|
||||
'workshop_code': 'Workshop code',
|
||||
'remark': 'remarks',
|
||||
'is_enable': 'Is it enabled',
|
||||
'is_delete': 'Do you want to delete it',
|
||||
'create_name': 'Creator',
|
||||
'create_time': 'Creation time',
|
||||
'update_name': 'Modified by',
|
||||
'update_time': 'Change time',
|
||||
'operate': 'operation'
|
||||
},
|
||||
'placeholder': {
|
||||
'code': 'Code name',
|
||||
'select': 'Fuzzy search',
|
||||
'workshop_code': 'Belonging workshop'
|
||||
}
|
||||
}
|
||||
}
|
||||
26
wms_pro/qd/src/i18n/langs/basedata/material/vi.js
Normal file
26
wms_pro/qd/src/i18n/langs/basedata/material/vi.js
Normal file
@@ -0,0 +1,26 @@
|
||||
export default {
|
||||
'material': {
|
||||
'title': 'Thông tin cơ bản về vật liệu',
|
||||
'dialog': {
|
||||
'code': 'Mã hóa vật liệu',
|
||||
'name': 'Tên vật liệu',
|
||||
'spec': 'Thông số vật liệu',
|
||||
'class_id': 'Xác định phân loại vật liệu',
|
||||
'standing_time': 'Thời gian phục hồi (giờ)',
|
||||
'workshop_code': 'Mã hội thảo',
|
||||
'remark': 'Ghi chú',
|
||||
'is_enable': 'Bật hay không',
|
||||
'is_delete': 'Xoá',
|
||||
'create_name': 'Tạo bởi',
|
||||
'create_time': 'Thời gian tạo',
|
||||
'update_name': 'Thay đổi người',
|
||||
'update_time': 'Thời gian sửa đổi',
|
||||
'operate': 'Hoạt động'
|
||||
},
|
||||
'placeholder': {
|
||||
'code': 'Tên mã hóa',
|
||||
'select': 'Tìm kiếm mờ',
|
||||
'workshop_code': 'Hội thảo trực thuộc'
|
||||
}
|
||||
}
|
||||
}
|
||||
26
wms_pro/qd/src/i18n/langs/basedata/material/zh.js
Normal file
26
wms_pro/qd/src/i18n/langs/basedata/material/zh.js
Normal file
@@ -0,0 +1,26 @@
|
||||
export default {
|
||||
'material': {
|
||||
'title': '物料基础信息',
|
||||
'dialog': {
|
||||
'code': '物料编码',
|
||||
'name': '物料名称',
|
||||
'spec': '物料规格',
|
||||
'class_id': '物料分类标识',
|
||||
'standing_time': '回温时间(小时)',
|
||||
'workshop_code': '车间编码',
|
||||
'remark': '备注',
|
||||
'is_enable': '是否启用',
|
||||
'is_delete': '是否删除',
|
||||
'create_name': '创建人',
|
||||
'create_time': '创建时间',
|
||||
'update_name': '修改人',
|
||||
'update_time': '修改时间',
|
||||
'operate': '操作'
|
||||
},
|
||||
'placeholder': {
|
||||
'code': '编码名称',
|
||||
'select': '模糊搜索',
|
||||
'workshop_code': '所属车间'
|
||||
}
|
||||
}
|
||||
}
|
||||
27
wms_pro/qd/src/i18n/langs/basedata/vehicle/en.js
Normal file
27
wms_pro/qd/src/i18n/langs/basedata/vehicle/en.js
Normal file
@@ -0,0 +1,27 @@
|
||||
export default {
|
||||
'vehicle': {
|
||||
'title': 'Vehicle maintenance',
|
||||
'dialog': {
|
||||
'code': 'Mother tray code',
|
||||
'name': 'Vehicle name',
|
||||
'type': 'Vehicle type',
|
||||
'one_code': 'One-dimensional code',
|
||||
'two_code': 'QR code',
|
||||
'rfid_code': 'RFID code',
|
||||
'width': 'Vehicle width',
|
||||
'long': 'Vehicle length',
|
||||
'height': 'Vehicle height',
|
||||
'over_type': 'Vehicle overbooking type',
|
||||
'occupy_qty': 'Number of warehouse positions occupied',
|
||||
'create_name': 'Creator',
|
||||
'create_time': 'Creation time',
|
||||
'update_name': 'Modified by',
|
||||
'update_time': 'Change time',
|
||||
'operate': 'operation'
|
||||
},
|
||||
'placeholder': {
|
||||
'code': 'Vehicle number',
|
||||
'select': 'Please choose'
|
||||
}
|
||||
}
|
||||
}
|
||||
27
wms_pro/qd/src/i18n/langs/basedata/vehicle/vi.js
Normal file
27
wms_pro/qd/src/i18n/langs/basedata/vehicle/vi.js
Normal file
@@ -0,0 +1,27 @@
|
||||
export default {
|
||||
'vehicle': {
|
||||
'title': 'Bảo trì tàu sân bay',
|
||||
'dialog': {
|
||||
'code': 'Mã hóa pallet nữ',
|
||||
'name': 'Tên tàu sân bay',
|
||||
'type': 'Loại Carrier',
|
||||
'one_code': 'Mã một chiều',
|
||||
'two_code': 'Mã QR',
|
||||
'rfid_code': 'Mã hóa RFID',
|
||||
'width': 'Chiều rộng tàu sân bay',
|
||||
'long': 'Chiều dài tàu sân bay',
|
||||
'height': 'Chiều cao tàu sân bay',
|
||||
'over_type': 'Loại siêu vị trí tàu sân bay',
|
||||
'occupy_qty': 'Số lượng kho',
|
||||
'create_name': 'Tạo bởi',
|
||||
'create_time': 'Thời gian tạo',
|
||||
'update_name': 'Thay đổi người',
|
||||
'update_time': 'Thời gian sửa đổi',
|
||||
'operate': 'Hoạt động'
|
||||
},
|
||||
'placeholder': {
|
||||
'code': 'Số tàu sân bay',
|
||||
'select': 'Vui lòng chọn'
|
||||
}
|
||||
}
|
||||
}
|
||||
27
wms_pro/qd/src/i18n/langs/basedata/vehicle/zh.js
Normal file
27
wms_pro/qd/src/i18n/langs/basedata/vehicle/zh.js
Normal file
@@ -0,0 +1,27 @@
|
||||
export default {
|
||||
'vehicle': {
|
||||
'title': '载具维护',
|
||||
'dialog': {
|
||||
'code': '母托盘编码',
|
||||
'name': '载具名称',
|
||||
'type': '载具类型',
|
||||
'one_code': '一维码',
|
||||
'two_code': '二维码',
|
||||
'rfid_code': 'RFID编码',
|
||||
'width': '载具宽度',
|
||||
'long': '载具长度',
|
||||
'height': '载具高度',
|
||||
'over_type': '载具超仓位类型',
|
||||
'occupy_qty': '占仓位数',
|
||||
'create_name': '创建人',
|
||||
'create_time': '创建时间',
|
||||
'update_name': '修改人',
|
||||
'update_time': '修改时间',
|
||||
'operate': '操作'
|
||||
},
|
||||
'placeholder': {
|
||||
'code': '载具号',
|
||||
'select': '请选择'
|
||||
}
|
||||
}
|
||||
}
|
||||
16
wms_pro/qd/src/i18n/langs/basedata/workshop/en.js
Normal file
16
wms_pro/qd/src/i18n/langs/basedata/workshop/en.js
Normal file
@@ -0,0 +1,16 @@
|
||||
export default {
|
||||
'workshop': {
|
||||
'title': 'Basic workshop information',
|
||||
'dialog': {
|
||||
'code': 'Workshop code',
|
||||
'name': 'Workshop name',
|
||||
'remark': 'remarks',
|
||||
'is_used': 'Is it enabled',
|
||||
'create_name': 'Creator',
|
||||
'create_time': 'Creation time',
|
||||
'update_name': 'Modified by',
|
||||
'update_time': 'Change time',
|
||||
'operate': 'operation'
|
||||
}
|
||||
}
|
||||
}
|
||||
16
wms_pro/qd/src/i18n/langs/basedata/workshop/vi.js
Normal file
16
wms_pro/qd/src/i18n/langs/basedata/workshop/vi.js
Normal file
@@ -0,0 +1,16 @@
|
||||
export default {
|
||||
'workshop': {
|
||||
'title': 'Thông tin cơ sở hội thảo',
|
||||
'dialog': {
|
||||
'code': 'Mã hội thảo',
|
||||
'name': 'Tên hội thảo',
|
||||
'remark': 'Ghi chú',
|
||||
'is_used': 'Bật hay không',
|
||||
'create_name': 'Tạo bởi',
|
||||
'create_time': 'Thời gian tạo',
|
||||
'update_name': 'Thay đổi người',
|
||||
'update_time': 'Thời gian sửa đổi',
|
||||
'operate': 'Hoạt động'
|
||||
}
|
||||
}
|
||||
}
|
||||
16
wms_pro/qd/src/i18n/langs/basedata/workshop/zh.js
Normal file
16
wms_pro/qd/src/i18n/langs/basedata/workshop/zh.js
Normal file
@@ -0,0 +1,16 @@
|
||||
export default {
|
||||
'workshop': {
|
||||
'title': '车间基础信息',
|
||||
'dialog': {
|
||||
'code': '车间编码',
|
||||
'name': '车间名称',
|
||||
'remark': '备注',
|
||||
'is_used': '是否启用',
|
||||
'create_name': '创建人',
|
||||
'create_time': '创建时间',
|
||||
'update_name': '修改人',
|
||||
'update_time': '修改时间',
|
||||
'operate': '操作'
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user