fix: i18n
This commit is contained in:
parent
bbb570fee6
commit
99f77e8637
@ -2,7 +2,7 @@ export default {
|
|||||||
noHistory: 'No History',
|
noHistory: 'No History',
|
||||||
createChat: 'Create New Chat',
|
createChat: 'Create New Chat',
|
||||||
history: 'History',
|
history: 'History',
|
||||||
only20history: 'Only showing the last 20 conversations',
|
only20history: 'Only showing the last 20 chats',
|
||||||
question_count: 'Questions',
|
question_count: 'Questions',
|
||||||
exportRecords: 'Export Chat Records',
|
exportRecords: 'Export Chat Records',
|
||||||
chatId: 'Chat ID',
|
chatId: 'Chat ID',
|
||||||
@ -72,7 +72,7 @@ export default {
|
|||||||
searchContent: 'Search Content',
|
searchContent: 'Search Content',
|
||||||
searchResult: 'Search Results',
|
searchResult: 'Search Results',
|
||||||
conditionResult: 'Condition Result',
|
conditionResult: 'Condition Result',
|
||||||
currentChat: 'Current Conversation',
|
currentChat: 'Current Chat',
|
||||||
answer: 'AI Response',
|
answer: 'AI Response',
|
||||||
replyContent: 'Reply Content',
|
replyContent: 'Reply Content',
|
||||||
textContent: 'Text Content',
|
textContent: 'Text Content',
|
||||||
|
|||||||
@ -7,7 +7,7 @@ export default {
|
|||||||
save: 'Save',
|
save: 'Save',
|
||||||
saveSuccess: 'Save successful',
|
saveSuccess: 'Save successful',
|
||||||
delete: 'Delete',
|
delete: 'Delete',
|
||||||
deleteSuccess: 'Successfully deleted',
|
deleteSuccess: 'Deleted successful',
|
||||||
setting: 'Settings',
|
setting: 'Settings',
|
||||||
settingSuccess: 'Setting successful',
|
settingSuccess: 'Setting successful',
|
||||||
submit: 'Submit',
|
submit: 'Submit',
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
export default {
|
export default {
|
||||||
quickCreatePlaceholder: 'Quickly create blank document',
|
quickCreatePlaceholder: 'Quickly create blank document',
|
||||||
quickCreateName: 'Document Name',
|
quickCreateName: 'document name',
|
||||||
noData: 'No Data',
|
noData: 'No Data',
|
||||||
loading: 'Loading',
|
loading: 'Loading',
|
||||||
noMore: 'No more!'
|
noMore: 'No more!'
|
||||||
|
|||||||
@ -62,12 +62,12 @@ export default {
|
|||||||
references: ' (References Knowledge)',
|
references: ' (References Knowledge)',
|
||||||
placeholder: 'Please enter prompt',
|
placeholder: 'Please enter prompt',
|
||||||
requiredMessage: 'Please enter prompt',
|
requiredMessage: 'Please enter prompt',
|
||||||
tooltip:'By adjusting the content of the prompt, you can guide the direction of the large model conversation.',
|
tooltip:'By adjusting the content of the prompt, you can guide the direction of the large model chat.',
|
||||||
|
|
||||||
noReferencesTooltip:
|
noReferencesTooltip:
|
||||||
'By adjusting the content of the prompt, you can guide the direction of the large model conversation. This prompt will be fixed at the beginning of the context. Variables used: {question} is the question posed by the user.',
|
'By adjusting the content of the prompt, you can guide the direction of the large model chat. This prompt will be fixed at the beginning of the context. Variables used: {question} is the question posed by the user.',
|
||||||
referencesTooltip:
|
referencesTooltip:
|
||||||
'By adjusting the content of the prompt, you can guide the direction of the large model conversation. This prompt will be fixed at the beginning of the context. Variables used: {data} carries known information from the knowledge; {question} is the question posed by the user.',
|
'By adjusting the content of the prompt, you can guide the direction of the large model chat. This prompt will be fixed at the beginning of the context. Variables used: {data} carries known information from the knowledge; {question} is the question posed by the user.',
|
||||||
defaultPrompt: `Known information: {data}
|
defaultPrompt: `Known information: {data}
|
||||||
Question: {question}
|
Question: {question}
|
||||||
Response requirements:
|
Response requirements:
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
export default {
|
export default {
|
||||||
title: 'Conversation Logs',
|
title: 'Chat Logs',
|
||||||
delete: {
|
delete: {
|
||||||
confirmTitle: 'Confirm deletion of question:',
|
confirmTitle: 'Confirm deletion of question:',
|
||||||
confirmMessage1: 'Deleting this question will cancel the association of',
|
confirmMessage1: 'Deleting this question will cancel the association of',
|
||||||
@ -12,14 +12,14 @@ export default {
|
|||||||
},
|
},
|
||||||
table: {
|
table: {
|
||||||
abstract: 'Abstract',
|
abstract: 'Abstract',
|
||||||
chat_record_count: 'Number of Conversation Questions',
|
chat_record_count: 'Number of Chat Questions',
|
||||||
feedback: {
|
feedback: {
|
||||||
label: 'User Feedback',
|
label: 'User Feedback',
|
||||||
star: 'Agree',
|
star: 'Agree',
|
||||||
trample: 'Disagree'
|
trample: 'Disagree'
|
||||||
},
|
},
|
||||||
mark: 'Improvement Label',
|
mark: 'Improvement Label',
|
||||||
recenTimes: 'Recent Conversation Time'
|
recenTimes: 'Recent Chat Time'
|
||||||
},
|
},
|
||||||
addToDataset: 'Add to Knowledge',
|
addToDataset: 'Add to Knowledge',
|
||||||
daysText: 'Days ago',
|
daysText: 'Days ago',
|
||||||
|
|||||||
@ -60,7 +60,7 @@ export default {
|
|||||||
label: 'Model Type',
|
label: 'Model Type',
|
||||||
placeholder: 'Select a model type',
|
placeholder: 'Select a model type',
|
||||||
tooltip1:
|
tooltip1:
|
||||||
'LLM: An inference model for AI conversations in the APP.',
|
'LLM: An inference model for AI chats in the APP.',
|
||||||
tooltip2:
|
tooltip2:
|
||||||
'Embedding Model: A model for vectorizing document content in the knowledge.',
|
'Embedding Model: A model for vectorizing document content in the knowledge.',
|
||||||
tooltip3: 'Speech2Text: A model used for speech recognition in the APP.',
|
tooltip3: 'Speech2Text: A model used for speech recognition in the APP.',
|
||||||
|
|||||||
@ -3,7 +3,7 @@ export default {
|
|||||||
createUser: 'Create User',
|
createUser: 'Create User',
|
||||||
editUser: 'Edit User',
|
editUser: 'Edit User',
|
||||||
setting: {
|
setting: {
|
||||||
updatePwd: 'Update User Password'
|
updatePwd: 'Change Password'
|
||||||
},
|
},
|
||||||
tip: {
|
tip: {
|
||||||
professionalMessage:
|
professionalMessage:
|
||||||
@ -38,8 +38,8 @@ export default {
|
|||||||
requiredMessage: 'Please enter email'
|
requiredMessage: 'Please enter email'
|
||||||
},
|
},
|
||||||
phone: {
|
phone: {
|
||||||
label: 'Phone Number',
|
label: 'Phone',
|
||||||
placeholder: 'Please enter phone number'
|
placeholder: 'Please enter phone'
|
||||||
},
|
},
|
||||||
password: {
|
password: {
|
||||||
label: 'Login Password',
|
label: 'Login Password',
|
||||||
|
|||||||
@ -60,7 +60,7 @@ const settingRouter = {
|
|||||||
meta: {
|
meta: {
|
||||||
icon: 'app-setting',
|
icon: 'app-setting',
|
||||||
iconActive: 'app-setting-active',
|
iconActive: 'app-setting-active',
|
||||||
title: t('views.system.title'),
|
title: t('common.setting'),
|
||||||
activeMenu: '/setting',
|
activeMenu: '/setting',
|
||||||
parentPath: '/setting',
|
parentPath: '/setting',
|
||||||
parentName: 'setting',
|
parentName: 'setting',
|
||||||
|
|||||||
@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
<el-input
|
<el-input
|
||||||
v-model="filterText"
|
v-model="filterText"
|
||||||
:placeholder="$t('views.dataset.searchBar.placeholder')"
|
:placeholder="$t('views.document.searchBar.placeholder')"
|
||||||
prefix-icon="Search"
|
prefix-icon="Search"
|
||||||
class="w-240"
|
class="w-240"
|
||||||
@change="getList"
|
@change="getList"
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user