mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
29 lines
727 B
TypeScript
29 lines
727 B
TypeScript
|
const translation = {
|
||
|
title: '命中测试',
|
||
|
desc: '基于给定的查询文本测试数据集的命中效果。',
|
||
|
dateTimeFormat: 'YYYY-MM-DD HH:mm',
|
||
|
recents: '最近查询',
|
||
|
table: {
|
||
|
header: {
|
||
|
source: "数据源",
|
||
|
text: "文本",
|
||
|
time: "时间",
|
||
|
},
|
||
|
},
|
||
|
input: {
|
||
|
title: '源文本',
|
||
|
placeholder: '请输入文本,建议使用简短的陈述句。',
|
||
|
countWarning: '不超过 200 个字符',
|
||
|
indexWarning: '仅支持高质量模式数据集',
|
||
|
testing: '测试',
|
||
|
},
|
||
|
hit: {
|
||
|
title: "命中段落",
|
||
|
emptyTip: '命中测试结果将展示在这里',
|
||
|
},
|
||
|
noRecentTip: '最近无查询结果',
|
||
|
viewChart: '查看向量图表',
|
||
|
}
|
||
|
|
||
|
export default translation
|