mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
perf: optimize text
This commit is contained in:
parent
48dce6c37b
commit
04c153277b
|
|
@ -17,7 +17,7 @@ export default {
|
|||
modify: 'Modify',
|
||||
modifySuccess: 'Modify successful',
|
||||
cancel: 'Cancel',
|
||||
confirm: 'Confirm',
|
||||
confirm: 'OK',
|
||||
tip: 'Prompt',
|
||||
add: 'Add',
|
||||
refresh: 'Refresh',
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ export default {
|
|||
github: 'Project Address',
|
||||
wiki: 'User Manual',
|
||||
forum: 'Forum For Help',
|
||||
logout: 'Logout',
|
||||
logout: 'Log Out',
|
||||
apiKey: 'API Key',
|
||||
apiServiceAddress: 'API Service Address',
|
||||
language: 'Language',
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
@click="openAIParamSettingDialog(chat_data.model_id)"
|
||||
@refreshForm="refreshParam"
|
||||
>
|
||||
{{ $t('common.paramSetting') }}
|
||||
<el-icon><Setting /></el-icon>
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
@click="openAIParamSettingDialog(form_data.model_id)"
|
||||
@refreshForm="refreshParam"
|
||||
>
|
||||
{{ $t('common.paramSetting') }}
|
||||
<el-icon><Setting /></el-icon>
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
@ -103,7 +103,9 @@
|
|||
</div>
|
||||
<el-tooltip effect="dark" placement="right" popper-class="max-w-200">
|
||||
<template #content
|
||||
>{{ $t('views.applicationWorkflow.nodes.imageGenerateNode.negative_prompt.tooltip') }}
|
||||
>{{
|
||||
$t('views.applicationWorkflow.nodes.imageGenerateNode.negative_prompt.tooltip')
|
||||
}}
|
||||
</template>
|
||||
<AppIcon iconName="app-warning" class="app-warning-icon"></AppIcon>
|
||||
</el-tooltip>
|
||||
|
|
@ -111,9 +113,11 @@
|
|||
</template>
|
||||
<MdEditorMagnify
|
||||
@wheel="wheel"
|
||||
:title=" $t('views.applicationWorkflow.nodes.imageGenerateNode.negative_prompt.label')"
|
||||
:title="$t('views.applicationWorkflow.nodes.imageGenerateNode.negative_prompt.label')"
|
||||
v-model="form_data.negative_prompt"
|
||||
:placeholder="$t('views.applicationWorkflow.nodes.imageGenerateNode.negative_prompt.placeholder')"
|
||||
:placeholder="
|
||||
$t('views.applicationWorkflow.nodes.imageGenerateNode.negative_prompt.placeholder')
|
||||
"
|
||||
style="height: 150px"
|
||||
@submitDialog="submitNegativeDialog"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@
|
|||
@click="openAIParamSettingDialog(form_data.model_id)"
|
||||
@refreshForm="refreshParam"
|
||||
>
|
||||
{{ $t('common.paramSetting') }}
|
||||
<el-icon><Setting /></el-icon>
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
@click="openAIParamSettingDialog(form_data.model_id)"
|
||||
@refreshForm="refreshParam"
|
||||
>
|
||||
{{ $t('common.paramSetting') }}
|
||||
<el-icon><Setting /></el-icon>
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
:disabled="!form_data.tts_model_id"
|
||||
class="mr-4"
|
||||
>
|
||||
{{ $t('common.paramSetting') }}
|
||||
<el-icon><Setting /></el-icon>
|
||||
</el-button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Reference in New Issue