cellMsgDialog: Improve some logging and localization

This commit is contained in:
Megamouse 2023-02-18 10:39:07 +01:00
parent ebf72eb126
commit a7c3753c5a
2 changed files with 6 additions and 6 deletions

View file

@ -369,11 +369,11 @@ error_code cellMsgDialogOpen2(u32 type, vm::cptr<char> msgString, vm::ptr<CellMs
if (_type.se_normal)
{
cellSysutil.warning("%s", msgString);
cellSysutil.warning("Opening message dialog with message: %s", msgString);
}
else
{
cellSysutil.error("%s", msgString);
cellSysutil.error("Opening error message dialog with message: %s", msgString);
}
return open_msg_dialog(false, type, msgString, callback, userData, extParam);

View file

@ -16,7 +16,7 @@ void msg_dialog_frame::Create(const std::string& msg, const std::string& title)
Close(true);
m_dialog = new custom_dialog(type.disable_cancel);
m_dialog->setWindowTitle(title.empty() ? (type.se_normal ? "Normal dialog" : "Error dialog") : qstr(title));
m_dialog->setWindowTitle(title.empty() ? (type.se_normal ? tr("Normal dialog") : tr("Error dialog")) : qstr(title));
m_dialog->setWindowOpacity(type.bg_invisible ? 1. : 0.75);
m_text = new QLabel(qstr(msg));
@ -65,8 +65,8 @@ void msg_dialog_frame::Create(const std::string& msg, const std::string& title)
{
m_dialog->setModal(true);
QPushButton* m_button_yes = new QPushButton("&Yes", m_dialog);
QPushButton* m_button_no = new QPushButton("&No", m_dialog);
QPushButton* m_button_yes = new QPushButton(tr("&Yes"), m_dialog);
QPushButton* m_button_no = new QPushButton(tr("&No"), m_dialog);
QHBoxLayout* hBoxButtons = new QHBoxLayout;
hBoxButtons->setAlignment(Qt::AlignCenter);
@ -102,7 +102,7 @@ void msg_dialog_frame::Create(const std::string& msg, const std::string& title)
{
m_dialog->setModal(true);
QPushButton* m_button_ok = new QPushButton("&OK", m_dialog);
QPushButton* m_button_ok = new QPushButton(tr("&OK"), m_dialog);
m_button_ok->setFixedWidth(50);
QHBoxLayout* hBoxButtons = new QHBoxLayout;