Added 'b' option to overwriteFile in settings

Added dots to logging in
Delete toast item when clicking to dismiss
This commit is contained in:
RemixDev 2020-07-31 14:10:36 +02:00
parent da2cd151c5
commit 8b8c52fab4
5 changed files with 11 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -186,6 +186,7 @@
<select v-model="settings.overwriteFile"> <select v-model="settings.overwriteFile">
<option value="y">{{ $t('settings.downloads.overwriteFile.y') }}</option> <option value="y">{{ $t('settings.downloads.overwriteFile.y') }}</option>
<option value="n">{{ $t('settings.downloads.overwriteFile.n') }}</option> <option value="n">{{ $t('settings.downloads.overwriteFile.n') }}</option>
<option value="b">{{ $t('settings.downloads.overwriteFile.b') }}</option>
<option value="t">{{ $t('settings.downloads.overwriteFile.t') }}</option> <option value="t">{{ $t('settings.downloads.overwriteFile.t') }}</option>
</select> </select>
</div> </div>

View File

@ -148,7 +148,7 @@ const en = {
finishDownload: '{0} finished downloading.', finishDownload: '{0} finished downloading.',
allDownloaded: 'All downloads completed!', allDownloaded: 'All downloads completed!',
refreshFavs: 'Refresh completed!', refreshFavs: 'Refresh completed!',
loggingIn: 'Logging in', loggingIn: 'Logging in...',
loggedIn: 'Logged in', loggedIn: 'Logged in',
alreadyLogged: 'Already logged in', alreadyLogged: 'Already logged in',
loginFailed: "Couldn't log in", loginFailed: "Couldn't log in",
@ -217,7 +217,8 @@ const en = {
title: 'Should I overwrite the files?', title: 'Should I overwrite the files?',
y: 'Yes, overwrite the file', y: 'Yes, overwrite the file',
n: "No, don't overwrite the file", n: "No, don't overwrite the file",
t: 'Overwrite only the tags' t: 'Overwrite only the tags',
b: 'No, keep both files and add a number to the duplicate'
}, },
fallbackBitrate: 'Bitrate fallback', fallbackBitrate: 'Bitrate fallback',
fallbackSearch: 'Search fallback', fallbackSearch: 'Search fallback',

View File

@ -150,7 +150,7 @@ const it = {
finishDownload: '{0} ha finito di scaricarsi.', finishDownload: '{0} ha finito di scaricarsi.',
allDownloaded: 'Tutti i download completati!', allDownloaded: 'Tutti i download completati!',
refreshFavs: 'Preferiti ricaricati!', refreshFavs: 'Preferiti ricaricati!',
loggingIn: 'Effettuando il login', loggingIn: 'Effettuando il login...',
loggedIn: 'Login effettuato', loggedIn: 'Login effettuato',
alreadyLogged: 'Sei già loggato', alreadyLogged: 'Sei già loggato',
loginFailed: 'Impossibile loggarsi', loginFailed: 'Impossibile loggarsi',
@ -219,7 +219,8 @@ const it = {
title: 'Dovrei sovrascrivere i file già scaricati?', title: 'Dovrei sovrascrivere i file già scaricati?',
y: 'Si, sovrascrivi i file', y: 'Si, sovrascrivi i file',
n: 'No, non sovrascrivere i file', n: 'No, non sovrascrivere i file',
t: 'Sovrascrivi solo i tag' t: 'Sovrascrivi solo i tag',
b: 'No, mantieni entrambi i file e aggiungi un numero al duplicato'
}, },
fallbackBitrate: 'Utilizza bitrate più bassi se il bitrate preferito non è disponibile', fallbackBitrate: 'Utilizza bitrate più bassi se il bitrate preferito non è disponibile',
fallbackSearch: 'Cerca il brano se il link originale non è disponibile', fallbackSearch: 'Cerca il brano se il link originale non è disponibile',

View File

@ -44,6 +44,7 @@ export const toast = function(msg, icon = null, dismiss = true, id = null) {
} }
if (toastObj && dismissable) { if (toastObj && dismissable) {
toastObj.hideToast() toastObj.hideToast()
if (id) delete toastsWithId[id]
} }
} }
}).showToast() }).showToast()