aboutsummaryrefslogtreecommitdiff
path: root/application/pages
diff options
context:
space:
mode:
authorJamie Mansfield <jmansfield@cadixdev.org>2021-06-18 23:42:40 +0100
committerJamie Mansfield <jmansfield@cadixdev.org>2021-06-18 23:57:58 +0100
commite148cfbbfd4af632afa484e2f9f164f0b1e642d4 (patch)
tree843bdd61dffb1bfee244b8b527170b3ab8a4e2a4 /application/pages
parentc0f72488d042b8f7503b7f13fdcc53ea9e185b76 (diff)
downloadPrismLauncher-e148cfbbfd4af632afa484e2f9f164f0b1e642d4.tar.gz
PrismLauncher-e148cfbbfd4af632afa484e2f9f164f0b1e642d4.tar.bz2
PrismLauncher-e148cfbbfd4af632afa484e2f9f164f0b1e642d4.zip
NOISSUE Don't translate logged entries
Diffstat (limited to 'application/pages')
-rw-r--r--application/pages/instance/LogPage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/application/pages/instance/LogPage.cpp b/application/pages/instance/LogPage.cpp
index 94ada424..3d2085c6 100644
--- a/application/pages/instance/LogPage.cpp
+++ b/application/pages/instance/LogPage.cpp
@@ -236,15 +236,15 @@ void LogPage::on_btnPaste_clicked()
return;
//FIXME: turn this into a proper task and move the upload logic out of GuiUtil!
- m_model->append(MessageLevel::MultiMC, tr("MultiMC: Log upload triggered at: %1").arg(QDateTime::currentDateTime().toString(Qt::RFC2822Date)));
+ m_model->append(MessageLevel::MultiMC, QString("MultiMC: Log upload triggered at: %1").arg(QDateTime::currentDateTime().toString(Qt::RFC2822Date)));
auto url = GuiUtil::uploadPaste(m_model->toPlainText(), this);
if(!url.isEmpty())
{
- m_model->append(MessageLevel::MultiMC, tr("MultiMC: Log uploaded to: %1").arg(url));
+ m_model->append(MessageLevel::MultiMC, QString("MultiMC: Log uploaded to: %1").arg(url));
}
else
{
- m_model->append(MessageLevel::Error, tr("MultiMC: Log upload failed!"));
+ m_model->append(MessageLevel::Error, "MultiMC: Log upload failed!");
}
}