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