mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 10:56:52 +08:00
Feat/i18n restructure (#2529)
This commit is contained in:
47
web/i18n/en-US/dataset.ts
Normal file
47
web/i18n/en-US/dataset.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
const translation = {
|
||||
knowledge: 'Knowledge',
|
||||
documentCount: ' docs',
|
||||
wordCount: 'k words',
|
||||
appCount: ' linked apps',
|
||||
createDataset: 'Create Knowledge',
|
||||
createDatasetIntro: 'Import your own text data or write data in real-time via Webhook for LLM context enhancement.',
|
||||
deleteDatasetConfirmTitle: 'Delete this Knowledge?',
|
||||
deleteDatasetConfirmContent:
|
||||
'Deleting the Knowledge is irreversible. Users will no longer be able to access your Knowledge, and all prompt configurations and logs will be permanently deleted.',
|
||||
datasetDeleted: 'Knowledge deleted',
|
||||
datasetDeleteFailed: 'Failed to delete Knowledge',
|
||||
didYouKnow: 'Did you know?',
|
||||
intro1: 'The Knowledge can be integrated into the Dify application ',
|
||||
intro2: 'as a context',
|
||||
intro3: ',',
|
||||
intro4: 'or it ',
|
||||
intro5: 'can be created',
|
||||
intro6: ' as a standalone ChatGPT index plug-in to publish',
|
||||
unavailable: 'Unavailable',
|
||||
unavailableTip: 'Embedding model is not available, the default embedding model needs to be configured',
|
||||
datasets: 'KNOWLEDGE',
|
||||
datasetsApi: 'API',
|
||||
retrieval: {
|
||||
semantic_search: {
|
||||
title: 'Vector Search',
|
||||
description: 'Generate query embeddings and search for the text chunk most similar to its vector representation.',
|
||||
},
|
||||
full_text_search: {
|
||||
title: 'Full-Text Search',
|
||||
description: 'Index all terms in the document, allowing users to search any term and retrieve relevant text chunk containing those terms.',
|
||||
},
|
||||
hybrid_search: {
|
||||
title: 'Hybrid Search',
|
||||
description: 'Execute full-text search and vector searches simultaneously, re-rank to select the best match for the user\'s query. Configuration of the Rerank model APIis necessary.',
|
||||
recommend: 'Recommend',
|
||||
},
|
||||
invertedIndex: {
|
||||
title: 'Inverted Index',
|
||||
description: 'Inverted Index is a structure used for efficient retrieval. Organized by terms, each term points to documents or web pages containing it.',
|
||||
},
|
||||
change: 'Change',
|
||||
changeRetrievalMethod: 'Change retrieval method',
|
||||
},
|
||||
}
|
||||
|
||||
export default translation
|
||||
Reference in New Issue
Block a user