rev:设备驱动国际化以及设备监控国际化

This commit is contained in:
2024-05-13 14:22:29 +08:00
parent 756f7b47e0
commit 7de225053e
54 changed files with 1106 additions and 268 deletions

View File

@@ -23,6 +23,7 @@ import department from './department/zh'
import dict from './dict/zh'
import angle from './angle/zh'
import regional from './regional/zh'
import stage from './stage/zh'
export default {
...zhLocale,
@@ -49,6 +50,7 @@ export default {
...department,
...dict,
...angle,
...regional
...regional,
...stage
}

View File

@@ -13,6 +13,9 @@ export default {
'other': {
'Dict_detail': 'Dict Detail',
'Department_label': 'Department Label',
'Department_label_zh': 'Chinese dictionary tags',
'Department_label_en': 'English dictionary tags',
'Department_label_in': 'Indonesian dictionary labels',
'Dictionary_value': 'Dictionary Value',
'Sort': 'Sort',
'Parameter1': 'Parameter1',

View File

@@ -13,6 +13,9 @@ export default {
'other': {
'Dict_detail': 'Detail Kamus',
'Department_label': 'Tag Kamus',
'Department_label_zh': 'Kamus Cina tags',
'Department_label_en': 'Kamus bahasa Inggris tags',
'Department_label_in': 'Label kamus bahasa Indonesia',
'Dictionary_value': 'Nilai Kamus',
'Sort': 'Jenis',
'Parameter1': 'Parameter 1',

View File

@@ -13,6 +13,9 @@ export default {
'other': {
'Dict_detail': '字典详情',
'Department_label': '字典标签',
'Department_label_zh': '中文字典标签',
'Department_label_en': '英文字典标签',
'Department_label_in': '印尼字典标签',
'Dictionary_value': '字典值',
'Sort': '排序',
'Parameter1': '参数1',

View File

@@ -23,6 +23,7 @@ import department from './department/en'
import dict from './dict/en'
import angle from './angle/en'
import regional from './regional/en'
import stage from './stage/en'
export default {
...enLocale,
@@ -49,6 +50,7 @@ export default {
...department,
...dict,
...angle,
...regional
...regional,
...stage
}

View File

@@ -23,6 +23,7 @@ import department from './department/in'
import dict from './dict/in'
import angle from './angle/in'
import regional from './regional/in'
import stage from './stage/in'
export default {
...idLocale,
@@ -50,5 +51,6 @@ export default {
...department,
...dict,
...angle,
...regional
...regional,
...stage
}

View File

@@ -0,0 +1,22 @@
export default {
'stage': {
'title': 'Stage',
'stage_table_title': {
'stage_uuid': 'Stage Signage',
'stage_code': 'Stage Coding',
'stage_name': 'Stage Name',
'in_stage_name': 'Indonesian Stage Name',
'en_stage_name': 'English Stage Name',
'zh_stage_name': 'Chinese Stage Name',
'stage_data': 'Stage Data',
'message1': 'Stage encoding cannot be empty',
'message2': 'The stage name cannot be empty'
},
'driver_configuration': {
'basic_information': 'Basic Information'
},
'msg': {
'delete_msg': 'Are You Sure To Delete It? If There Are Subordinate Nodes, they Will Be Deleted Together. This Operation Cannot Be Undone!'
}
}
}

View File

@@ -0,0 +1,23 @@
export default {
'stage': {
'title': 'Panggung',
'stage_table_title': {
'stage_uuid': 'Papan Nama Panggung',
'stage_code': 'Tahap Pengkodean',
'stage_name': 'Nama Panggung',
'in_stage_name': 'Nama Panggung Indonesia',
'en_stage_name': 'Nama Panggung Bahasa Inggris',
'zh_stage_name': 'Nama Panggung Cina',
'stage_data': 'Data Tahapan',
'message1': 'Pengkodean Tahap Tidak Boleh Kosong',
'message2': 'Nama Panggung Tidak Boleh Kosong'
},
'driver_configuration': {
'basic_information': 'Informasi Dasar'
},
'msg': {
'delete_msg': 'Apakah Anda Yakin Untuk Menghapusnya? Jika Ada Nod Subordinat, Mereka Akan Dihapus Bersama. Operasi Ini Tidak Dapat Dibatalkan!'
}
}
}

View File

@@ -0,0 +1,23 @@
export default {
'stage': {
'title': '舞台',
'stage_table_title': {
'stage_uuid': '舞台标识',
'stage_code': '舞台编码',
'stage_name': '舞台名字',
'in_stage_name': '印尼舞台名字',
'en_stage_name': '英文舞台名称',
'zh_stage_name': '中文舞台名称',
'stage_data': '舞台数据',
'message1': '舞台编码不能为空',
'message2': '舞台名字不能为空'
},
'driver_configuration': {
'basic_information': '基本信息'
},
'msg': {
'delete_msg': '确定删除吗,如果存在下级节点则一并删除,此操作不能撤销!'
}
}
}