Don't translate unexpected errors

This commit is contained in:
Samuel Mannehed 2016-10-28 15:24:59 +02:00
parent e848790194
commit 91e41150f0
4 changed files with 1 additions and 7 deletions

View File

@ -8,6 +8,4 @@ Language = {
"Connecting": "Verbunden",
"Disconnecting": "Verbindung trennen",
"Disconnected": "Verbindung zum Server getrennt",
"Invalid state": "Falscher Status",
"Unable to create RFB client -- ": "RFB Client kann nicht erstellt werden -- ",
};

View File

@ -8,6 +8,4 @@ Language = {
"Connecting": "Connecting",
"Disconnecting": "Disconnecting",
"Disconnected": "Disconnected",
"Invalid state": "Invalid state",
"Unable to create RFB client -- ": "Unable to create RFB client -- ",
};

View File

@ -8,6 +8,4 @@ Language = {
"Connecting": "Verbinden",
"Disconnecting": "Verbinding verbreken",
"Disconnected": "Verbinding verbroken",
"Invalid state": "Ongeldige toestand",
"Unable to create RFB client -- ": "Kan geen RFB client aanmaken -- ",
};

View File

@ -348,7 +348,7 @@ var UI;
'onDesktopName': UI.updateDesktopName});
return true;
} catch (exc) {
var msg = Util.Localisation.get("Unable to create RFB client -- ") + exc;
var msg = "Unable to create RFB client -- " + exc;
Util.Error(msg);
UI.showStatus(msg, 'error');
return false;