Fix translations

This commit is contained in:
Girish Ramakrishnan
2025-09-30 14:17:21 +02:00
parent 647209cf6d
commit cf2a90845b
12 changed files with 10 additions and 64 deletions
+2 -2
View File
@@ -121,7 +121,7 @@ onMounted(async () => {
<div>
<label>{{ $t('app.updates.auto.title') }}</label>
<div v-if="!app.appStoreId">{{ $t('app.updates.info.customAppUpdateInfo') }}</div>
<div v-else>{{ $t('app.updates.auto') }}</div>
<div v-else>{{ $t('app.updates.auto.description') }}</div>
</div>
<Switch v-if="app.appStoreId" v-model="autoUpdatesEnabled" :disabled="autoUpdatesEnabledBusy" @change="onAutoUpdatesEnabledChange"/>
</SettingsItem>
@@ -130,7 +130,7 @@ onMounted(async () => {
<div v-if="app.appStoreId">
<label>{{ $t('app.updatesTabTitle') }}</label>
<div v-html="$t('app.updates.auto.description', { appStoreLink: 'https://www.cloudron.io/store/index.html' })"></div>
<div v-html="$t('app.updates.updates.description', { appStoreLink: 'https://www.cloudron.io/store/index.html' })"></div>
</div>
<br/>
<Button v-if="app.appStoreId" @click="onCheck()" :disabled="busyCheck" :loading="busyCheck">{{ $t('settings.updates.checkForUpdatesAction') }}</Button>