mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
29 lines
741 B
TypeScript
29 lines
741 B
TypeScript
const translation = {
|
|
title: "Hit Testing",
|
|
desc: "Test the hitting effect of the dataset based on the given query text.",
|
|
dateTimeFormat: 'MM/DD/YYYY hh:mm A',
|
|
recents: 'Recents',
|
|
table: {
|
|
header: {
|
|
source: "Source",
|
|
text: "Text",
|
|
time: "Time",
|
|
},
|
|
},
|
|
input: {
|
|
title: 'Source text',
|
|
placeholder: 'Please enter a text, a short declarative sentence is recommended.',
|
|
countWarning: 'Up to 200 characters.',
|
|
indexWarning: 'High quality dataset only.',
|
|
testing: 'Testing',
|
|
},
|
|
hit: {
|
|
title: "HIT PARAGRAPHS",
|
|
emptyTip: 'Hit Testing results will show here',
|
|
},
|
|
noRecentTip: 'No recent query results here',
|
|
viewChart: 'View VECTOR CHART',
|
|
};
|
|
|
|
export default translation;
|