Added 'b' option to overwriteFile in settings
Added dots to logging in Delete toast item when clicking to dismiss
This commit is contained in:
parent
da2cd151c5
commit
8b8c52fab4
File diff suppressed because one or more lines are too long
@ -186,6 +186,7 @@
|
||||
<select v-model="settings.overwriteFile">
|
||||
<option value="y">{{ $t('settings.downloads.overwriteFile.y') }}</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>
|
||||
</select>
|
||||
</div>
|
||||
|
@ -148,7 +148,7 @@ const en = {
|
||||
finishDownload: '{0} finished downloading.',
|
||||
allDownloaded: 'All downloads completed!',
|
||||
refreshFavs: 'Refresh completed!',
|
||||
loggingIn: 'Logging in',
|
||||
loggingIn: 'Logging in...',
|
||||
loggedIn: 'Logged in',
|
||||
alreadyLogged: 'Already logged in',
|
||||
loginFailed: "Couldn't log in",
|
||||
@ -217,7 +217,8 @@ const en = {
|
||||
title: 'Should I overwrite the files?',
|
||||
y: 'Yes, 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',
|
||||
fallbackSearch: 'Search fallback',
|
||||
|
@ -150,7 +150,7 @@ const it = {
|
||||
finishDownload: '{0} ha finito di scaricarsi.',
|
||||
allDownloaded: 'Tutti i download completati!',
|
||||
refreshFavs: 'Preferiti ricaricati!',
|
||||
loggingIn: 'Effettuando il login',
|
||||
loggingIn: 'Effettuando il login...',
|
||||
loggedIn: 'Login effettuato',
|
||||
alreadyLogged: 'Sei già loggato',
|
||||
loginFailed: 'Impossibile loggarsi',
|
||||
@ -219,7 +219,8 @@ const it = {
|
||||
title: 'Dovrei sovrascrivere i file già scaricati?',
|
||||
y: 'Si, sovrascrivi 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',
|
||||
fallbackSearch: 'Cerca il brano se il link originale non è disponibile',
|
||||
|
@ -44,6 +44,7 @@ export const toast = function(msg, icon = null, dismiss = true, id = null) {
|
||||
}
|
||||
if (toastObj && dismissable) {
|
||||
toastObj.hideToast()
|
||||
if (id) delete toastsWithId[id]
|
||||
}
|
||||
}
|
||||
}).showToast()
|
||||
|
Loading…
Reference in New Issue
Block a user