UnisKB/ui/src/locales/lang/en-US/views/dataset.ts

87 lines
2.8 KiB
TypeScript
Raw Normal View History

2025-01-13 06:25:02 +00:00
export default {
2025-01-21 07:55:09 +00:00
title: 'Knowledge',
createDataset: 'Create Knowledge',
2025-01-13 06:25:02 +00:00
general: 'General',
web: 'Web Site',
2025-01-21 09:57:31 +00:00
relatedApplications: 'Linked App',
document_count: 'docs',
relatedApp_count: 'linked apps',
2025-01-13 06:25:02 +00:00
searchBar: {
placeholder: 'Search by name'
},
setting: {
vectorization: 'Vectorization',
sync: 'Sync'
},
tip: {
professionalMessage:
2025-01-21 08:46:18 +00:00
'The community edition supports up to 50 knowledge. For more knowledge, please upgrade to the professional edition.',
2025-01-13 06:25:02 +00:00
syncSuccess: 'Sync task sent successfully',
updateModeMessage:
2025-01-21 08:46:18 +00:00
'After modifying the knowledge vector model, you need to vectorize the knowledge. Do you want to continue saving?'
2025-01-13 06:25:02 +00:00
},
delete: {
2025-01-22 07:06:30 +00:00
confirmTitle: 'Confirm deletion of knowledge:',
2025-02-07 10:28:11 +00:00
confirmMessage1: 'This knowledge is related with',
2025-01-21 08:46:18 +00:00
confirmMessage2: 'APP. Deleting it will be irreversible, please proceed with caution.'
2025-01-13 06:25:02 +00:00
},
datasetForm: {
title: {
info: 'Knowledge settings'
2025-01-13 06:25:02 +00:00
},
form: {
datasetName: {
2025-02-06 07:15:23 +00:00
label: 'Name',
2025-01-21 08:46:18 +00:00
placeholder: 'Please enter the knowledge name',
requiredMessage: 'Please enter the knowledge name'
2025-01-13 06:25:02 +00:00
},
datasetDescription: {
2025-02-06 07:15:23 +00:00
label: 'Description',
2025-01-13 06:25:02 +00:00
placeholder:
2025-01-21 08:46:18 +00:00
'Describe the content of the knowledge. A detailed description will help AI understand the content better, improving the accuracy of content retrieval and hit rate.',
requiredMessage: 'Please enter the knowledge description'
2025-01-13 06:25:02 +00:00
},
2025-01-21 03:51:29 +00:00
EmbeddingModel: {
label: 'Embedding Model',
2025-01-22 07:06:30 +00:00
placeholder: 'Please select a embedding model',
2025-02-05 07:35:25 +00:00
requiredMessage: 'Please select the embedding model'
2025-01-13 06:25:02 +00:00
},
datasetType: {
2025-02-06 07:15:23 +00:00
label: 'Type',
2025-01-22 03:26:03 +00:00
generalInfo: 'Upload local documents',
2025-01-22 07:06:30 +00:00
webInfo: 'Sync text data from a web site'
2025-01-13 06:25:02 +00:00
},
source_url: {
label: 'Web Root URL',
2025-01-21 11:24:56 +00:00
placeholder: 'Please enter the web root URL',
2025-01-22 07:06:30 +00:00
requiredMessage: 'Please enter the web root URL'
2025-01-13 06:25:02 +00:00
},
selector: {
label: 'Selector',
placeholder: 'Default is body, can input .classname/#idname/tagname'
}
2025-01-21 08:18:05 +00:00
}
},
ResultSuccess: {
2025-01-22 08:46:12 +00:00
title: 'Knowledge Created Successfully',
2025-02-06 07:15:23 +00:00
paragraph: 'Segments',
paragraph_count: 'Segments',
2025-01-21 08:18:05 +00:00
documentList: 'Document List',
loading: 'Importing',
buttons: {
2025-01-22 08:46:12 +00:00
toDataset: 'Return to Knowledge List',
2025-01-21 08:18:05 +00:00
toDocument: 'Go to Document'
}
},
syncWeb: {
2025-01-22 08:46:12 +00:00
title: 'Sync Knowledge',
2025-01-21 08:18:05 +00:00
syncMethod: 'Sync Method',
replace: 'Replace Sync',
2025-01-22 08:46:12 +00:00
replaceText: 'Re-fetch Web site documents, replacing the documents in the local knowledge',
2025-01-21 08:18:05 +00:00
complete: 'Full Sync',
completeText:
2025-01-22 08:46:12 +00:00
'Delete all documents in the local knowledge and re-fetch web site documents',
2025-01-21 08:18:05 +00:00
tip: 'Note: All syncs will delete existing data and re-fetch new data. Please proceed with caution.'
2025-01-13 06:25:02 +00:00
}
}