L10n: tr()-Fixes for 2.2

This commit is contained in:
Friedemann Kleint
2011-02-15 16:05:52 +01:00
parent a6fc7e8857
commit 88ba702293
12 changed files with 82 additions and 78 deletions

View File

@@ -317,10 +317,12 @@ void IPCEngineHost::fetchFrameSource(qint64 id)
void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
{
switch (f) {
default:
default: {
showMessage(QLatin1String("IPC Error: unhandled id in guest to host call"));
showMessage(tr("Fatal engine shutdown. Incompatible binary or ipc error."), LogError);
showStatusMessage(tr("Fatal engine shutdown. Incompatible binary or ipc error."));
const QString logMessage = tr("Fatal engine shutdown. Incompatible binary or IPC error.");
showMessage(logMessage, LogError);
showStatusMessage(logMessage);
}
nuke();
break;
case IPCEngineGuest::NotifyEngineSetupOk: