diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-01-17 21:17:36 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-01-17 21:17:36 +0100 |
commit | ba38991c131d51709a7dd11e29444f3136af0e72 (patch) | |
tree | 37dbfec7ba19078d7b21729f5e29a4f18867b03b /application/dialogs | |
parent | 98e17998fe4dd541143de3e1bbc4b267aadb383b (diff) | |
download | MultiMC-ba38991c131d51709a7dd11e29444f3136af0e72.tar MultiMC-ba38991c131d51709a7dd11e29444f3136af0e72.tar.gz MultiMC-ba38991c131d51709a7dd11e29444f3136af0e72.tar.lz MultiMC-ba38991c131d51709a7dd11e29444f3136af0e72.tar.xz MultiMC-ba38991c131d51709a7dd11e29444f3136af0e72.zip |
GH-1788 fix missing translation strings
Diffstat (limited to 'application/dialogs')
-rw-r--r-- | application/dialogs/VersionSelectDialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/application/dialogs/VersionSelectDialog.cpp b/application/dialogs/VersionSelectDialog.cpp index 271b4a04..de525d89 100644 --- a/application/dialogs/VersionSelectDialog.cpp +++ b/application/dialogs/VersionSelectDialog.cpp @@ -78,9 +78,9 @@ VersionSelectDialog::VersionSelectDialog(BaseVersionList *vlist, QString title, void VersionSelectDialog::retranslate() { // FIXME: overrides custom title given in constructor! - setWindowTitle(QApplication::translate("VersionSelectDialog", "Choose Version", Q_NULLPTR)); - m_refreshButton->setToolTip(QApplication::translate("VersionSelectDialog", "Reloads the version list.", Q_NULLPTR)); - m_refreshButton->setText(QApplication::translate("VersionSelectDialog", "&Refresh", Q_NULLPTR)); + setWindowTitle(tr("Choose Version")); + m_refreshButton->setToolTip(tr("Reloads the version list.")); + m_refreshButton->setText(tr("&Refresh")); } void VersionSelectDialog::setEmptyString(QString emptyString) |