2023-05-15 08:51:32 +08:00
const translation = {
2024-01-23 19:31:56 +08:00
knowledge : 'Knowledge' ,
2023-05-15 08:51:32 +08:00
documentCount : ' docs' ,
2024-04-24 15:02:29 +08:00
wordCount : ' k words' ,
2023-05-15 08:51:32 +08:00
appCount : ' linked apps' ,
2023-11-27 17:22:16 +08:00
createDataset : 'Create Knowledge' ,
2023-05-15 08:51:32 +08:00
createDatasetIntro : 'Import your own text data or write data in real-time via Webhook for LLM context enhancement.' ,
2023-11-27 17:22:16 +08:00
deleteDatasetConfirmTitle : 'Delete this Knowledge?' ,
2023-05-15 08:51:32 +08:00
deleteDatasetConfirmContent :
2023-11-27 17:22:16 +08:00
'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' ,
2023-05-15 08:51:32 +08:00
didYouKnow : 'Did you know?' ,
2023-11-27 17:22:16 +08:00
intro1 : 'The Knowledge can be integrated into the Dify application ' ,
2023-05-15 08:51:32 +08:00
intro2 : 'as a context' ,
intro3 : ',' ,
intro4 : 'or it ' ,
intro5 : 'can be created' ,
intro6 : ' as a standalone ChatGPT index plug-in to publish' ,
2023-08-18 17:37:31 +08:00
unavailable : 'Unavailable' ,
unavailableTip : 'Embedding model is not available, the default embedding model needs to be configured' ,
2023-11-27 17:22:16 +08:00
datasets : 'KNOWLEDGE' ,
2024-04-24 15:02:29 +08:00
datasetsApi : 'API ACCESS' ,
2023-11-18 11:53:35 +08:00
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' ,
2024-06-05 18:31:24 +08:00
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 APIs necessary.' ,
2023-11-18 11:53:35 +08:00
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' ,
} ,
2024-04-24 15:02:29 +08:00
docsFailedNotice : 'documents failed to be indexed' ,
retry : 'Retry' ,
2023-05-15 08:51:32 +08:00
}
export default translation