Fix i18n bugs

This commit is contained in:
2025-08-30 16:36:39 +02:00
parent 7948fed103
commit c2c52dbe45
7 changed files with 22 additions and 22 deletions
+5 -5
View File
@@ -141,8 +141,8 @@ async function submitPassword() {
v-model="password.old"
class="w-full"
:type="isPasswordVisible.value ? 'text' : 'password'"
:label="t('pages.profile.old_password')"
:placeholder="t('pages.profile.old_password')"
:label="t('page.profile.old_password')"
:placeholder="t('page.profile.old_password')"
autocomplete="current-password"
:minlength="8"
required
@@ -179,7 +179,7 @@ async function submitPassword() {
v-model="password.password"
class="w-full"
:type="isPasswordVisible.value ? 'text' : 'password'"
:label="t('pages.profile.new_password')"
:label="t('page.profile.new_password')"
:placeholder="t('auth.password')"
autocomplete="current-password"
:minlength="8"
@@ -234,7 +234,7 @@ async function submitPassword() {
</VaCardContent>
</VaCard>
<VaCard stripe stripe-color="primary">
<VaCardTitle>{{ t('pages.profile.uploaded_pictures') }}</VaCardTitle>
<VaCardTitle>{{ t('page.profile.uploaded_pictures') }}</VaCardTitle>
<VaCardContent v-if="data && data.uploadedFiles.length > 0">
<VaCarousel
stateful
@@ -264,7 +264,7 @@ async function submitPassword() {
>
</VaCarousel>
</VaCardContent>
<VaCardContent v-else>{{ t('pages.profile.no_pictures') }}</VaCardContent>
<VaCardContent v-else>{{ t('page.profile.no_pictures') }}</VaCardContent>
</VaCard>
</div>
</template>