mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
updated translations
This commit is contained in:
parent
d02d29f33e
commit
9c61eb5dd7
40 changed files with 181 additions and 203 deletions
|
@ -53,15 +53,15 @@
|
|||
|
||||
switch (evt.target.error.code) {
|
||||
case evt.target.error.NOT_FOUND_ERR:
|
||||
Dashboard.showError(Globalize.translate("FileNotFound"));
|
||||
Dashboard.showError(Globalize.translate('FileNotFound'));
|
||||
break;
|
||||
case evt.target.error.NOT_READABLE_ERR:
|
||||
Dashboard.showError(Globalize.translate("FileReadError"));
|
||||
Dashboard.showError(Globalize.translate('FileReadError'));
|
||||
break;
|
||||
case evt.target.error.ABORT_ERR:
|
||||
break; // noop
|
||||
default:
|
||||
Dashboard.showError(Globalize.translate("FileReadError"));
|
||||
Dashboard.showError(Globalize.translate('FileReadError'));
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -73,7 +73,7 @@
|
|||
function onFileReaderAbort(evt) {
|
||||
|
||||
Dashboard.hideLoadingMsg();
|
||||
Dashboard.showError(Globalize.translate("FileReadCancelled"));
|
||||
Dashboard.showError(Globalize.translate('FileReadCancelled'));
|
||||
}
|
||||
|
||||
function setFiles(page, files) {
|
||||
|
@ -156,7 +156,7 @@
|
|||
|
||||
self.deleteImage = function () {
|
||||
|
||||
Dashboard.confirm(Globalize.translate("DeleteImageConfirmation"), Globalize.translate("DeleteImage"), function (result) {
|
||||
Dashboard.confirm(Globalize.translate('DeleteImageConfirmation'), Globalize.translate('DeleteImage'), function (result) {
|
||||
|
||||
if (result) {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue