Fix translations in docker registry UI
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user