Added SOURCE tag option in settings

This commit is contained in:
RemixDev 2020-10-29 13:13:22 +01:00
parent cf71f295f2
commit 728ec6b6db
4 changed files with 13 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -393,13 +393,13 @@
<input type="checkbox" v-model="settings.tags.date" /> <input type="checkbox" v-model="settings.tags.date" />
<span class="checkbox_text">{{ $t('settings.tags.date') }}</span> <span class="checkbox_text">{{ $t('settings.tags.date') }}</span>
</label> </label>
</div>
<div class="settings-container__half">
<label class="with_checkbox"> <label class="with_checkbox">
<input type="checkbox" v-model="settings.tags.explicit" /> <input type="checkbox" v-model="settings.tags.explicit" />
<span class="checkbox_text">{{ $t('settings.tags.explicit') }}</span> <span class="checkbox_text">{{ $t('settings.tags.explicit') }}</span>
</label> </label>
</div>
<div class="settings-container__half">
<label class="with_checkbox"> <label class="with_checkbox">
<input type="checkbox" v-model="settings.tags.isrc" /> <input type="checkbox" v-model="settings.tags.isrc" />
<span class="checkbox_text">{{ $t('settings.tags.isrc') }}</span> <span class="checkbox_text">{{ $t('settings.tags.isrc') }}</span>
@ -444,6 +444,10 @@
<input type="checkbox" v-model="settings.tags.involvedPeople" /> <input type="checkbox" v-model="settings.tags.involvedPeople" />
<span class="checkbox_text">{{ $t('settings.tags.involvedPeople') }}</span> <span class="checkbox_text">{{ $t('settings.tags.involvedPeople') }}</span>
</label> </label>
<label class="with_checkbox">
<input type="checkbox" v-model="settings.tags.source" />
<span class="checkbox_text">{{ $t('settings.tags.source') }}</span>
</label>
</div> </div>
</div> </div>
</div> </div>

View File

@ -300,7 +300,8 @@ const en = {
syncedLyrics: 'Synchronized Lyrics', syncedLyrics: 'Synchronized Lyrics',
copyright: 'Copyright', copyright: 'Copyright',
composer: 'Composer', composer: 'Composer',
involvedPeople: 'Involved People' involvedPeople: 'Involved People',
source: 'Source and song ID'
}, },
other: { other: {
title: 'Other', title: 'Other',

View File

@ -305,7 +305,8 @@ const it = {
syncedLyrics: 'Testo Sincronizzato', syncedLyrics: 'Testo Sincronizzato',
copyright: 'Copyright', copyright: 'Copyright',
composer: 'Compositori', composer: 'Compositori',
involvedPeople: 'Persone Coinvolte' involvedPeople: 'Persone Coinvolte',
source: 'Sorgente e ID brano'
}, },
other: { other: {
title: 'Altro', title: 'Altro',