Added autoCheckForUpdates opt-in option in settings

This commit is contained in:
RemixDev 2022-01-13 01:51:08 +01:00
parent 2e153770b7
commit 71caf6ffa8
4 changed files with 10 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -560,6 +560,11 @@
<h3 class="settings-group__header"><i class="material-icons">list</i>{{ $t('settings.other.title') }}</h3>
</template>
<label class="with-checkbox">
<input v-model="settings.autoCheckForUpdates" type="checkbox" />
<span class="checkbox-text">{{ $t('settings.other.autoCheckForUpdates') }}</span>
</label>
<label class="with-checkbox">
<input v-model="settings.tags.savePlaylistAsCompilation" type="checkbox" />
<span class="checkbox-text">{{ $t('settings.other.savePlaylistAsCompilation') }}</span>

View File

@ -356,6 +356,7 @@ const en = {
},
other: {
title: 'Other',
autoCheckForUpdates: 'Check for updates on startup',
savePlaylistAsCompilation: 'Save playlists as compilation',
useNullSeparator: 'Use null separator',
saveID3v1: 'Save ID3v1 as well',

View File

@ -357,6 +357,7 @@ const it = {
},
other: {
title: 'Altro',
autoCheckForUpdates: "Controlla aggiornamenti all'avvio",
savePlaylistAsCompilation: 'Salva le playlist come Compilation',
useNullSeparator: 'Usa il carattere NULL come separatore',
saveID3v1: "Salva anche l'ID3v1",