Add prompt fields to the translation section

Added prompt fields to the translation section

Not all interface elements had the ability to add translation
This commit is contained in:
Erritis
2023-03-28 03:03:23 +03:00
parent d75413cc49
commit 699760713e
3 changed files with 9 additions and 3 deletions

View File

@@ -110,7 +110,7 @@ onMounted( () => {
max-width="500"
>
<v-card-title>
<span class="headline">Frequently prompts</span>
<span class="headline">{{ $t('frequentlyPrompts') }}</span>
</v-card-title>
<v-divider></v-divider>
@@ -193,7 +193,7 @@ onMounted( () => {
<v-textarea
rows="2"
v-model="newPrompt"
label="Add a new prompt"
:label="$t('addNewPrompt')"
variant="outlined"
density="compact"
:error-messages="promptInputErrorMessage"
@@ -211,7 +211,7 @@ onMounted( () => {
@click="addPrompt()"
>
<v-icon icon="add"></v-icon>
Add prompt
{{ $t('addPrompt') }}
</v-btn>
</v-list-item>
</v-list>