Merge pull request #143 from dataease/pr@dev@lang

feat(国际化): 国际化
This commit is contained in:
taojinlong 2021-07-05 12:29:36 +08:00 committed by GitHub
commit 56b1895241
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 89 additions and 5 deletions

View File

@ -1,4 +1,46 @@
export default { export default {
fu: {
search_bar: {
search: 'Search',
adv_search: 'Advanced search',
ok: 'Confirm',
cancel: 'Cancel',
please_select: 'Please select',
please_input: 'Please input',
like: 'like ',
not_like: 'not like',
in: 'in',
not_in: 'not in',
gt: 'greater than',
ge: 'Greater than or equal to',
lt: 'less than',
le: 'Less than or equal to',
eq: 'equal to',
ne: 'bot equal to',
between: 'between',
select_date: 'Select a date',
start_date: 'Start date',
end_date: 'End date',
select_date_time: 'Select date time',
start_date_time: 'Start date time',
end_date_time: 'End date time',
range_separator: 'To',
data_time_error: 'The start date cannot be greater than the end date',
clean: 'Clean',
refresh: 'Refresh'
},
table: {
ok: 'Confirm',
custom_table_fields: 'Custom table fields',
custom_table_fields_desc: 'Fixed field is not in the selection range'
},
steps: {
cancel: 'Cancle',
next: 'next',
prev: 'Last step',
finish: 'Finish'
}
},
route: { route: {
dashboard: 'Dashboard', dashboard: 'Dashboard',
documentation: 'Documentation', documentation: 'Documentation',

View File

@ -933,12 +933,12 @@ export default {
input_name: '請輸入名稱', input_name: '請輸入名稱',
input_limit_2_25: '2-25字符', input_limit_2_25: '2-25字符',
input_limit_0_50: '0-50字符', input_limit_0_50: '0-50字符',
oracle_connection_type: '服名/SID', oracle_connection_type: '服名/SID',
oracle_sid: 'SID', oracle_sid: 'SID',
oracle_service_name: '服名', oracle_service_name: '服名',
get_schema: '取 Schema', get_schema: '取 Schema',
schema: '数据库 Schema', schema: '數據庫 Schema',
please_choose_schema: '请选择数据库 Schema', please_choose_schema: '請選擇數據庫 Schema',
}, },
pblink: { pblink: {
key_pwd: '請輸入密碼打開鏈接', key_pwd: '請輸入密碼打開鏈接',

View File

@ -1,4 +1,46 @@
export default { export default {
fu: {
search_bar: {
search: '搜索',
adv_search: '高級搜索',
ok: '确定',
cancel: '取消',
please_select: '请选择',
please_input: '请输入',
like: '包含',
not_like: '不包含',
in: '属于',
not_in: '不屬于',
gt: '大于',
ge: '大于等于',
lt: '小于',
le: '小于等于',
eq: '等于',
ne: '不等于',
between: '之间',
select_date: '选择日期',
start_date: '开始日期',
end_date: '結束日期',
select_date_time: '选择日期时间',
start_date_time: '开始日期时间',
end_date_time: '結束日期时间',
range_separator: '至',
data_time_error: '开始日期不能大于結束日期',
clean: '清空',
refresh: '刷新'
},
table: {
ok: '确定',
custom_table_fields: '自定义表格字段',
custom_table_fields_desc: '固定字段不在选择范围'
},
steps: {
cancel: '取消',
next: '下一步',
prev: '上一步',
finish: '完成'
}
},
route: { route: {
dashboard: '首页', dashboard: '首页',
documentation: '文档', documentation: '文档',