mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-26 00:46:52 +08:00
### What problem does this PR solve? fix: Optimize internationalization configuration - Update multi-language options, adding general translations for functions like Select All and Clear - Add internationalization support for modules like Chat, Search, and Datasets ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -3,6 +3,7 @@ export default {
|
||||
common: {
|
||||
noResults: 'No results.',
|
||||
selectPlaceholder: 'select value',
|
||||
selectAll: 'Select All',
|
||||
delete: 'Delete',
|
||||
deleteModalTitle: 'Are you sure to delete this item?',
|
||||
ok: 'Yes',
|
||||
@ -37,6 +38,7 @@ export default {
|
||||
pleaseSelect: 'Please select',
|
||||
pleaseInput: 'Please input',
|
||||
submit: 'Submit',
|
||||
clear: 'Clear',
|
||||
embedIntoSite: 'Embed into webpage',
|
||||
previousPage: 'Previous',
|
||||
nextPage: 'Next',
|
||||
@ -145,7 +147,8 @@ export default {
|
||||
vectorSimilarityWeightTip:
|
||||
'This sets the weight of keyword similarity in the combined similarity score, either used with vector cosine similarity or with reranking score. The total of the two weights must equal 1.0.',
|
||||
keywordSimilarityWeight: 'Keyword similarity weight',
|
||||
keywordSimilarityWeightTip: '',
|
||||
keywordSimilarityWeightTip:
|
||||
'This sets the weight of keyword similarity in the combined similarity score, either used with vector cosine similarity or with reranking score. The total of the two weights must equal 1.0.',
|
||||
testText: 'Test text',
|
||||
testTextPlaceholder: 'Input your question here!',
|
||||
testingLabel: 'Testing',
|
||||
@ -441,6 +444,12 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s
|
||||
delete: 'Delete',
|
||||
},
|
||||
chat: {
|
||||
messagePlaceholder: 'Type your message here...',
|
||||
exit: 'Exit',
|
||||
multipleModels: 'Multiple Models',
|
||||
applyModelConfigs: 'Apply model configs',
|
||||
conversations: 'Conversations',
|
||||
chatApps: 'Chat Apps',
|
||||
newConversation: 'New conversation',
|
||||
createAssistant: 'Create an Assistant',
|
||||
assistantSetting: 'Assistant settings',
|
||||
@ -839,6 +848,7 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s
|
||||
hint: 'hint',
|
||||
},
|
||||
fileManager: {
|
||||
files: 'Files',
|
||||
name: 'Name',
|
||||
uploadDate: 'Upload Date',
|
||||
knowledgeBase: 'Dataset',
|
||||
@ -864,6 +874,12 @@ This auto-tagging feature enhances retrieval by adding another layer of domain-s
|
||||
pleaseUploadAtLeastOneFile: 'Please upload at least one file',
|
||||
},
|
||||
flow: {
|
||||
recommended: 'Recommended',
|
||||
customerSupport: 'Customer Support',
|
||||
marketing: 'Marketing',
|
||||
consumerApp: 'Consumer App',
|
||||
other: 'Other',
|
||||
agents: 'Agents',
|
||||
days: 'Days',
|
||||
beginInput: 'Begin Input',
|
||||
ref: 'Variable',
|
||||
@ -1527,6 +1543,7 @@ This delimiter is used to split the input text into several text pieces echo of
|
||||
editMCP: 'Edit MCP',
|
||||
},
|
||||
search: {
|
||||
searchApps: 'Search Apps',
|
||||
createSearch: 'Create Search',
|
||||
searchGreeting: 'How can I help you today ?',
|
||||
profile: 'Hide Profile',
|
||||
@ -1551,5 +1568,15 @@ This delimiter is used to split the input text into several text pieces echo of
|
||||
okText: 'Save',
|
||||
cancelText: 'Cancel',
|
||||
},
|
||||
language: {
|
||||
english: 'English',
|
||||
chinese: 'Chinese',
|
||||
spanish: 'Spanish',
|
||||
french: 'French',
|
||||
german: 'German',
|
||||
japanese: 'Japanese',
|
||||
korean: 'Korean',
|
||||
vietnamese: 'Vietnamese',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
@ -3,6 +3,7 @@ export default {
|
||||
common: {
|
||||
noResults: '无结果。',
|
||||
selectPlaceholder: '请选择',
|
||||
selectAll: '全选',
|
||||
delete: '删除',
|
||||
deleteModalTitle: '确定删除吗?',
|
||||
ok: '是',
|
||||
@ -36,6 +37,7 @@ export default {
|
||||
pleaseSelect: '请选择',
|
||||
pleaseInput: '请输入',
|
||||
submit: '提交',
|
||||
clear: '清空',
|
||||
embedIntoSite: '嵌入网站',
|
||||
previousPage: '上一页',
|
||||
nextPage: '下一页',
|
||||
@ -105,7 +107,7 @@ export default {
|
||||
testing: '检索测试',
|
||||
configuration: '配置',
|
||||
knowledgeGraph: '知识图谱',
|
||||
files: '文件',
|
||||
files: '个文件',
|
||||
name: '名称',
|
||||
namePlaceholder: '请输入名称',
|
||||
doc: '文档',
|
||||
@ -136,7 +138,8 @@ export default {
|
||||
vectorSimilarityWeightTip:
|
||||
'我们使用混合相似性评分来评估两行文本之间的距离。它是加权关键字相似性和矢量余弦相似性或rerank得分(0〜1)。两个权重的总和为1.0。',
|
||||
keywordSimilarityWeight: '关键词相似度权重',
|
||||
keywordSimilarityWeightTip: '',
|
||||
keywordSimilarityWeightTip:
|
||||
'我们使用混合相似性评分来评估两行文本之间的距离。它是加权关键字相似性和矢量余弦相似性或rerank得分(0〜1)。两个权重的总和为1.0。',
|
||||
testText: '测试文本',
|
||||
testTextPlaceholder: '请输入您的问题!',
|
||||
testingLabel: '测试',
|
||||
@ -440,6 +443,12 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
delete: '删除',
|
||||
},
|
||||
chat: {
|
||||
messagePlaceholder: '请输入消息...',
|
||||
exit: '退出',
|
||||
multipleModels: '多模型',
|
||||
applyModelConfigs: '应用模型配置',
|
||||
conversations: '会话',
|
||||
chatApps: '聊天',
|
||||
createChat: '创建聊天',
|
||||
newConversation: '新会话',
|
||||
createAssistant: '新建助理',
|
||||
@ -798,6 +807,7 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
hint: '提示',
|
||||
},
|
||||
fileManager: {
|
||||
files: '文件',
|
||||
name: '名称',
|
||||
uploadDate: '上传日期',
|
||||
knowledgeBase: '知识库',
|
||||
@ -822,6 +832,12 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
pleaseUploadAtLeastOneFile: '请上传至少一个文件',
|
||||
},
|
||||
flow: {
|
||||
recommended: '推荐',
|
||||
customerSupport: '客户支持',
|
||||
marketing: '营销',
|
||||
consumerApp: '消费者应用',
|
||||
other: '其他',
|
||||
agents: '智能体',
|
||||
beginInput: '开始输入',
|
||||
seconds: '秒',
|
||||
ref: '引用变量',
|
||||
@ -1441,6 +1457,7 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
cancelText: '取消',
|
||||
},
|
||||
search: {
|
||||
searchApps: '搜索',
|
||||
createSearch: '创建查询',
|
||||
searchGreeting: '今天我能为你做些什么?',
|
||||
profile: '隐藏个人资料',
|
||||
@ -1465,5 +1482,15 @@ General:实体和关系提取提示来自 GitHub - microsoft/graphrag:基于
|
||||
okText: '保存',
|
||||
cancelText: '返回',
|
||||
},
|
||||
language: {
|
||||
english: '英语',
|
||||
chinese: '中文',
|
||||
spanish: '西班牙语',
|
||||
french: '法语',
|
||||
german: '德语',
|
||||
japanese: '日语',
|
||||
korean: '韩语',
|
||||
vietnamese: '越南语',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user