mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 19:59:50 +08:00
31 lines
859 B
TypeScript
31 lines
859 B
TypeScript
|
const translation = {
|
||
|
custom: 'Customization',
|
||
|
upgradeTip: {
|
||
|
prefix: 'Upgrade your plan to',
|
||
|
suffix: 'customize your brand.',
|
||
|
},
|
||
|
webapp: {
|
||
|
title: 'Customize WebApp brand',
|
||
|
removeBrand: 'Remove Powered by Dify',
|
||
|
changeLogo: 'Change Powered by Brand Image',
|
||
|
changeLogoTip: 'SVG or PNG format with a minimum size of 40x40px',
|
||
|
},
|
||
|
app: {
|
||
|
title: 'Customize app header brand',
|
||
|
changeLogoTip: 'SVG or PNG format with a minimum size of 80x80px',
|
||
|
},
|
||
|
upload: 'Upload',
|
||
|
uploading: 'Uploading',
|
||
|
uploadedFail: 'Image upload failed, please re-upload.',
|
||
|
change: 'Change',
|
||
|
apply: 'Apply',
|
||
|
restore: 'Restore Defaults',
|
||
|
customize: {
|
||
|
contactUs: ' contact us ',
|
||
|
prefix: 'To customize the brand logo within the app, please',
|
||
|
suffix: 'to upgrade to the Enterprise edition.',
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export default translation
|