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