Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/i18n/en.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"menu": {
"Dashboard1:": "Default password:{msg}",
"add_interface_credentials": "Please add interface credentials",
"Data Q&A": "Data Q&A",
"Data Connections": "Data Sources",
Expand All @@ -9,6 +8,7 @@
"Details": "Details"
},
"prompt": {
"default_password": "Default password:{msg}",
"no_prompt_words": "No prompt words",
"customize_prompt_words": "Customize prompt words",
"ask_sql": "Ask SQL",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/i18n/ko-KR.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"menu": {
"Dashboard1:": "기본 비밀번호:{msg}",
"add_interface_credentials": "인터페이스 자격 증명을 추가하십시오",
"Data Q&A": "스마트 데이터 조회",
"Data Connections": "데이터 소스",
Expand All @@ -9,6 +8,7 @@
"Details": "세부"
},
"prompt": {
"default_password:": "기본 비밀번호:{msg}",
"no_prompt_words": "프롬프트가 없습니다",
"customize_prompt_words": "사용자 정의 프롬프트",
"ask_sql": "데이터 조회 SQL",
Expand Down Expand Up @@ -717,4 +717,4 @@
"input_account": "계정을 입력해 주세요",
"redirect_2_auth": "{0} 인증으로 리디렉션 중입니다, {1}초..."
}
}
}
2 changes: 1 addition & 1 deletion frontend/src/i18n/zh-CN.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"menu": {
"Dashboard1": "默认密码:{msg}",
"add_interface_credentials": "请添加接口凭证",
"Data Q&A": "智能问数",
"Data Connections": "数据源",
Expand All @@ -9,6 +8,7 @@
"Details": "详情"
},
"prompt": {
"default_password": "默认密码:{msg}",
"no_prompt_words": "暂无提示词",
"customize_prompt_words": "自定义提示词",
"ask_sql": "问数 SQL",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/system/user/User.vue
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
</el-icon>
</span>
<div class="down-template-content" style="align-items: center">
<span>{{ t('menu.Dashboard1', { msg: 'SQLBot@123456' }) }}</span>
<span>{{ t('prompt.default_password', { msg: 'SQLBot@123456' }) }}</span>
<el-button style="margin-left: 4px" size="small" text @click="copyPassword">{{
t('datasource.copy')
}}</el-button>
Expand Down