dify/web/i18n/en-US/share-app.ts

86 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-05-15 08:51:32 +08:00
const translation = {
common: {
2024-07-08 18:17:41 +08:00
welcome: '',
appUnavailable: 'App is unavailable',
2024-09-07 15:59:38 +07:00
appUnknownError: 'App is unavailable',
2023-05-15 08:51:32 +08:00
},
chat: {
2025-03-03 14:44:51 +08:00
newChat: 'Start New chat',
2025-03-13 14:23:41 +08:00
newChatTip: 'Already in a new chat',
2025-03-03 14:44:51 +08:00
chatSettingsTitle: 'New chat setup',
chatFormTip: 'Chat settings cannot be modified after the chat has started.',
pinnedTitle: 'Pinned',
2025-03-03 14:44:51 +08:00
unpinnedTitle: 'Recent',
newChatDefaultName: 'New conversation',
resetChat: 'Reset conversation',
2025-03-03 14:44:51 +08:00
viewChatSettings: 'View chat settings',
2024-09-07 15:59:38 +07:00
poweredBy: 'Powered by',
prompt: 'Prompt',
privatePromptConfigTitle: 'Conversation settings',
publicPromptConfigTitle: 'Initial Prompt',
2024-11-24 04:15:46 +01:00
configStatusDes: 'Before starting, you can modify the conversation settings',
2023-05-15 08:51:32 +08:00
configDisabled:
'Previous session settings have been used for this session.',
startChat: 'Start Chat',
2023-05-15 08:51:32 +08:00
privacyPolicyLeft:
'Please read the ',
2023-05-15 08:51:32 +08:00
privacyPolicyMiddle:
'privacy policy',
2023-05-15 08:51:32 +08:00
privacyPolicyRight:
' provided by the app developer.',
deleteConversation: {
title: 'Delete conversation',
content: 'Are you sure you want to delete this conversation?',
},
tryToSolve: 'Try to solve',
temporarySystemIssue: 'Sorry, temporary system issue.',
expand: 'Expand',
collapse: 'Collapse',
2023-05-15 08:51:32 +08:00
},
generation: {
tabs: {
create: 'Run Once',
batch: 'Run Batch',
saved: 'Saved',
2023-05-15 08:51:32 +08:00
},
savedNoData: {
title: 'You haven\'t saved a result yet!',
2023-05-15 08:51:32 +08:00
description: 'Start generating content, and find your saved results here.',
startCreateContent: 'Start create content',
2023-05-15 08:51:32 +08:00
},
title: 'AI Completion',
queryTitle: 'Query content',
completionResult: 'Completion result',
queryPlaceholder: 'Write your query content...',
run: 'Execute',
2025-03-03 14:44:51 +08:00
execution: 'EXECUTION',
executions: '{{num}} EXECUTIONS',
copy: 'Copy',
resultTitle: 'AI Completion',
noData: 'AI will give you what you want here.',
csvUploadTitle: 'Drag and drop your CSV file here, or ',
browse: 'browse',
csvStructureTitle: 'The CSV file must conform to the following structure:',
downloadTemplate: 'Download the template here',
field: 'Field',
batchFailed: {
info: '{{num}} failed executions',
retry: 'Retry',
outputPlaceholder: 'No output content',
},
errorMsg: {
empty: 'Please input content in the uploaded file.',
fileStructNotMatch: 'The uploaded CSV file not match the struct.',
emptyLine: 'Row {{rowIndex}} is empty',
invalidLine: 'Row {{rowIndex}}: {{varName}} value can not be empty',
moreThanMaxLengthLine: 'Row {{rowIndex}}: {{varName}} value can not be more than {{maxLength}} characters',
atLeastOne: 'Please input at least one row in the uploaded file.',
},
2023-05-15 08:51:32 +08:00
},
2025-06-05 10:55:17 +08:00
login: {
backToHome: 'Back to Home',
},
}
2023-05-15 08:51:32 +08:00
export default translation