Fix translations in docker registry UI

This commit is contained in:
Girish Ramakrishnan
2025-09-10 17:26:33 +02:00
parent 38a2fdff39
commit acaf7cd934
14 changed files with 43 additions and 115 deletions

View File

@@ -83,7 +83,7 @@ defineExpose({
<template>
<Dialog ref="dialog"
:title="$t('settings.privateDockerRegistryDialog.title')"
:title="$t('dockerRegistries.dialog.title')"
:confirm-label="$t('main.dialog.save')"
:confirm-busy="busy"
:confirm-active="!busy && isValid"
@@ -103,22 +103,22 @@ defineExpose({
</FormGroup>
<FormGroup>
<label for="serverAddressInput">{{ $t('settings.privateDockerRegistry.server') }}</label>
<label for="serverAddressInput">{{ $t('dockerRegistries.server') }}</label>
<TextInput id="serverAddressInput" v-model="serverAddress" placeholder="docker.io" required />
</FormGroup>
<FormGroup>
<label for="usernameInput">{{ $t('settings.privateDockerRegistry.username') }}</label>
<label for="usernameInput">{{ $t('dockerRegistries.username') }}</label>
<TextInput id="usernameInput" v-model="username" required />
</FormGroup>
<FormGroup>
<label for="emailInput">{{ $t('settings.privateDockerRegistryDialog.email') }}</label>
<label for="emailInput">{{ $t('dockerRegistries.email') }} (Optional)</label>
<TextInput id="emailInput" v-model="email" />
</FormGroup>
<FormGroup>
<label for="passwordInput">{{ $t('settings.privateDockerRegistryDialog.passwordToken') }}</label>
<label for="passwordInput">{{ $t('dockerRegistries.passwordToken') }}</label>
<TextInput id="passwordInput" v-model="password" required />
</FormGroup>
</fieldset>