mirror of https://github.com/langgenius/dify.git
chore: 18n
This commit is contained in:
parent
b6a1562357
commit
aa0841e2a8
|
|
@ -59,18 +59,18 @@ const AppInfo: FC<Props> = ({
|
|||
)}
|
||||
<Button variant='primary' className='mt-3 flex w-full max-w-full' onClick={onCreate}>
|
||||
<RiAddLine className='mr-1 size-4 shrink-0' />
|
||||
<span className='truncate'>Create from this sample app</span>
|
||||
<span className='truncate'>{t('explore.tryApp.createFromSampleApp')}</span>
|
||||
</Button>
|
||||
|
||||
{category && (
|
||||
<div className='mt-6 shrink-0'>
|
||||
<div className={headerClassName}>Category</div>
|
||||
<div className={headerClassName}>{t('explore.tryApp.category')}</div>
|
||||
<div className='system-md-regular text-text-secondary'>{category}</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className='mt-5 grow overflow-y-auto'>
|
||||
<div className={headerClassName}>Requirements</div>
|
||||
<div className={headerClassName}>{t('explore.tryApp.requirements')}</div>
|
||||
<div className='space-y-0.5'>
|
||||
<div className='flex items-center space-x-2 py-1'>
|
||||
<div className='size-5 rounded-md bg-gray-200 shadow-xs'></div>
|
||||
|
|
|
|||
|
|
@ -35,6 +35,9 @@ const translation = {
|
|||
try: 'Try it',
|
||||
detail: 'Orchestration Details',
|
||||
},
|
||||
createFromSampleApp: 'Create from this sample app',
|
||||
category: 'Category',
|
||||
requirements: 'Requirements',
|
||||
},
|
||||
appCustomize: {
|
||||
title: 'Create app from {{name}}',
|
||||
|
|
|
|||
|
|
@ -36,6 +36,9 @@ const translation = {
|
|||
try: 'お試し',
|
||||
detail: 'オーケストレーション詳細',
|
||||
},
|
||||
createFromSampleApp: 'テンプレートから作成',
|
||||
category: 'カテゴリー',
|
||||
requirements: '必要項目',
|
||||
},
|
||||
appCustomize: {
|
||||
title: '{{name}}からアプリを作成',
|
||||
|
|
|
|||
|
|
@ -36,6 +36,9 @@ const translation = {
|
|||
try: '试用',
|
||||
detail: '编排详情',
|
||||
},
|
||||
createFromSampleApp: '从此模板创建应用',
|
||||
category: '分类',
|
||||
requirements: '必须配置项',
|
||||
},
|
||||
appCustomize: {
|
||||
title: '从 {{name}} 创建应用程序',
|
||||
|
|
|
|||
Loading…
Reference in New Issue