mirror of https://github.com/langgenius/dify.git
chore: list fiter i18n
This commit is contained in:
parent
dc3e86b82a
commit
00f91b5dc4
|
|
@ -64,7 +64,7 @@ const Input = ({
|
|||
destructive && 'bg-components-input-bg-destructive border-components-input-border-destructive text-components-input-text-filled hover:bg-components-input-bg-destructive hover:border-components-input-border-destructive focus:bg-components-input-bg-destructive focus:border-components-input-border-destructive',
|
||||
className,
|
||||
)}
|
||||
placeholder={placeholder ?? (showLeftIcon ? t('common.operation.search') ?? '' : 'please input')}
|
||||
placeholder={placeholder ?? (showLeftIcon ? t('common.operation.search') ?? '' : t('common.placeholder.input'))}
|
||||
value={value}
|
||||
onChange={onChange}
|
||||
disabled={disabled}
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ const ConditionOperator = ({
|
|||
{
|
||||
selectedOption
|
||||
? selectedOption.label
|
||||
: 'select'
|
||||
: t(`${i18nPrefix}.select`)
|
||||
}
|
||||
<RiArrowDownSLine className='ml-1 w-3.5 h-3.5' />
|
||||
</Button>
|
||||
|
|
|
|||
|
|
@ -457,6 +457,7 @@ const translation = {
|
|||
conditionNotSetup: 'Condition NOT setup',
|
||||
selectVariable: 'Select variable...',
|
||||
addSubVariable: 'Sub Variable',
|
||||
select: 'Select',
|
||||
},
|
||||
variableAssigner: {
|
||||
title: 'Assign variables',
|
||||
|
|
|
|||
|
|
@ -457,6 +457,7 @@ const translation = {
|
|||
conditionNotSetup: '条件未设置',
|
||||
selectVariable: '选择变量',
|
||||
addSubVariable: '添加子变量',
|
||||
select: '选择',
|
||||
},
|
||||
variableAssigner: {
|
||||
title: '变量赋值',
|
||||
|
|
|
|||
Loading…
Reference in New Issue