mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
update emby connect error message
This commit is contained in:
parent
92be720459
commit
daee1ecd45
@ -113,11 +113,7 @@
|
||||
|
||||
}, function () {
|
||||
|
||||
Dashboard.alert({
|
||||
|
||||
message: Globalize.translate('ErrorAddingEmbyConnectAccount', 'apps@emby.media')
|
||||
|
||||
});
|
||||
showEmbyConnectErrorMessage('.');
|
||||
});
|
||||
|
||||
} else {
|
||||
@ -125,8 +121,27 @@
|
||||
noActionCallback();
|
||||
}
|
||||
}
|
||||
} function showEmbyConnectErrorMessage(username) {
|
||||
|
||||
var msg;
|
||||
|
||||
if (username) {
|
||||
|
||||
msg = Globalize.translate('ErrorAddingEmbyConnectAccount1', '<a href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');
|
||||
msg += '<br/><br/>' + Globalize.translate('ErrorAddingEmbyConnectAccount2', 'apps@emby.media');
|
||||
|
||||
} else {
|
||||
msg = Globalize.translate('DefaultErrorMessage');
|
||||
}
|
||||
|
||||
Dashboard.alert({
|
||||
|
||||
message: msg
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function onSaveComplete(page, user) {
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
|
@ -47,13 +47,27 @@
|
||||
|
||||
}).then(onUpdateUserComplete, function () {
|
||||
|
||||
var msgKey = form.querySelector('#txtConnectUserName').value ? 'ErrorAddingEmbyConnectAccount' : 'DefaultErrorMessage';
|
||||
showEmbyConnectErrorMessage(form.querySelector('#txtConnectUserName').value);
|
||||
});
|
||||
}
|
||||
|
||||
Dashboard.alert({
|
||||
function showEmbyConnectErrorMessage(username) {
|
||||
|
||||
message: Globalize.translate(msgKey)
|
||||
var msg;
|
||||
|
||||
if (username) {
|
||||
|
||||
msg = Globalize.translate('ErrorAddingEmbyConnectAccount1', '<a href="https://emby.media/connect" target="_blank">https://emby.media/connect</a>');
|
||||
msg += '<br/><br/>' + Globalize.translate('ErrorAddingEmbyConnectAccount2', 'apps@emby.media');
|
||||
|
||||
} else {
|
||||
msg = Globalize.translate('DefaultErrorMessage');
|
||||
}
|
||||
|
||||
Dashboard.alert({
|
||||
|
||||
message: msg
|
||||
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
@ -84,7 +98,6 @@
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
})(jQuery, document, window);
|
Loading…
Reference in New Issue
Block a user