mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
c67f626b66
Co-authored-by: John Wang <takatost@gmail.com> Co-authored-by: Jyong <718720800@qq.com> Co-authored-by: 金伟强 <iamjoel007@gmail.com>
46 lines
1.7 KiB
TypeScript
46 lines
1.7 KiB
TypeScript
const translation = {
|
|
title: 'Apps',
|
|
createApp: 'Create new App',
|
|
modes: {
|
|
completion: 'Text Generator',
|
|
chat: 'Chat App',
|
|
},
|
|
createFromConfigFile: 'Create app from config file',
|
|
deleteAppConfirmTitle: 'Delete this app?',
|
|
deleteAppConfirmContent:
|
|
'Deleting the app is irreversible. Users will no longer be able to access your app, and all prompt configurations and logs will be permanently deleted.',
|
|
appDeleted: 'App deleted',
|
|
appDeleteFailed: 'Failed to delete app',
|
|
join: 'Join the community',
|
|
communityIntro:
|
|
'Discuss with team members, contributors and developers on different channels.',
|
|
roadmap: 'See our roadmap',
|
|
newApp: {
|
|
startToCreate: 'Let\'s start with your new app',
|
|
captionName: 'Give your app a name',
|
|
captionAppType: 'What kind of app do you want?',
|
|
previewDemo: 'Preview demo',
|
|
chatApp: 'Chat App',
|
|
chatAppIntro:
|
|
'I want to build a chat-based application. This app uses a question-and-answer format, allowing for multiple rounds of continuous conversation.',
|
|
completeApp: 'Text Generator',
|
|
completeAppIntro:
|
|
'I want to create an application that generates high-quality text based on prompts, such as generating articles, summaries, translations, and more.',
|
|
showTemplates: 'I want to choose from a template',
|
|
hideTemplates: 'Go back to mode selection',
|
|
Create: 'Create',
|
|
Cancel: 'Cancel',
|
|
nameNotEmpty: 'Name cannot be empty',
|
|
appTemplateNotSelected: 'Please select a template',
|
|
appTypeRequired: 'Please select an app type',
|
|
appCreated: 'App created',
|
|
appCreateFailed: 'Failed to create app',
|
|
},
|
|
emoji: {
|
|
ok: 'OK',
|
|
cancel: 'Cancel',
|
|
},
|
|
}
|
|
|
|
export default translation
|