Tweak Qt debugger strings to be more translation friendly

This commit is contained in:
JosJuice 2018-01-21 16:25:58 +01:00
commit 04b9310bb6
5 changed files with 43 additions and 37 deletions

View file

@ -83,14 +83,9 @@ void RegisterColumn::SetValue()
}
if (!valid)
{
QMessageBox::critical(nullptr, QObject::tr("Invalid input"),
QObject::tr("Bad input for field"));
}
QMessageBox::critical(nullptr, QObject::tr("Error"), QObject::tr("Invalid input provided"));
else
{
m_set_register(value);
}
RefreshValue();
}