1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Fix string

This commit is contained in:
MrTimscampi 2020-08-08 18:51:27 +02:00
parent c14b20727a
commit faa78ebff1
2 changed files with 3 additions and 3 deletions

View file

@ -83,7 +83,7 @@ function performInstallation(page, name, guid, version) {
loading.hide();
alertText(globalize.translate('MessagePluginInstalled'));
}).catch(() => {
alertText(globalize.translate('MessagePluginIntallError'));
alertText(globalize.translate('MessagePluginInstallError'));
});
};
@ -95,7 +95,7 @@ function performInstallation(page, name, guid, version) {
msg += globalize.translate('PleaseConfirmPluginInstallation');
import('confirm').then(({default: confirm}) => {
confirm.default(msg, globalize.translate('HeaderConfirmPluginInstallation')).then(function () {
confirm(msg, globalize.translate('HeaderConfirmPluginInstallation')).then(function () {
alertCallback();
}).catch(() => {
console.debug('plugin not installed');