mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-11-30 02:08:37 +08:00
fix: add missing like i18n (#512)
This commit is contained in:
parent
4f13f8fd0a
commit
b23d8a912b
@ -200,7 +200,7 @@ const Answer: FC<IAnswerProps> = ({ item, feedbackDisabled = false, isHideFeedba
|
||||
return (
|
||||
<Tooltip
|
||||
selector={`user-feedback-${randomString(16)}`}
|
||||
content={(isWebScene || (!isUserFeedback && !isWebScene)) ? isLike ? '取消赞同' : '取消反对' : (!isWebScene && isUserFeedback) ? `用户表示${isLike ? '赞同' : '反对'}` : ''}
|
||||
content={((isWebScene || (!isUserFeedback && !isWebScene)) ? isLike ? t('appDebug.operation.cancelAgree') : t('appDebug.operation.cancelDisagree') : (!isWebScene && isUserFeedback) ? `${t('appDebug.operation.userAction')}${isLike ? t('appDebug.operation.agree') : t('appDebug.operation.disagree')}` : '') as string}
|
||||
>
|
||||
<div
|
||||
className={`relative box-border flex items-center justify-center h-7 w-7 p-0.5 rounded-lg bg-white cursor-pointer text-gray-500 hover:text-gray-800 ${(!isWebScene && isUserFeedback) ? '!cursor-default' : ''}`}
|
||||
|
@ -6,6 +6,11 @@ const translation = {
|
||||
addFeature: 'Add Feature',
|
||||
automatic: 'Automatic',
|
||||
stopResponding: 'Stop responding',
|
||||
agree: 'agree',
|
||||
disagree: 'disagree',
|
||||
cancelAgree: 'Cancel agree',
|
||||
cancelDisagree: 'Cancel disagree',
|
||||
userAction: 'User ',
|
||||
},
|
||||
notSetAPIKey: {
|
||||
title: 'LLM provider key has not been set',
|
||||
|
@ -6,6 +6,11 @@ const translation = {
|
||||
addFeature: '添加功能',
|
||||
automatic: '自动编排',
|
||||
stopResponding: '停止响应',
|
||||
agree: '赞同',
|
||||
disagree: '反对',
|
||||
cancelAgree: '取消赞同',
|
||||
cancelDisagree: '取消反对',
|
||||
userAction: '用户表示',
|
||||
},
|
||||
notSetAPIKey: {
|
||||
title: 'LLM 提供者的密钥未设置',
|
||||
|
Loading…
Reference in New Issue
Block a user