From bf17c347fcd13657ea22190a0c17d60103a5bae4 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 20 Dec 2020 13:32:01 +0100 Subject: rbutil: Fix some texts. Change-Id: Ia94dbcfb79d823863792637953f578a82ccdf4bb --- rbutil/rbutilqt/gui/selectiveinstallwidget.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'rbutil/rbutilqt') diff --git a/rbutil/rbutilqt/gui/selectiveinstallwidget.cpp b/rbutil/rbutilqt/gui/selectiveinstallwidget.cpp index dcf3c6558f..9bfe7414a3 100644 --- a/rbutil/rbutilqt/gui/selectiveinstallwidget.cpp +++ b/rbutil/rbutilqt/gui/selectiveinstallwidget.cpp @@ -80,10 +80,7 @@ void SelectiveInstallWidget::selectedVersionChanged(int index) break; case PlayerBuildInfo::TypeDevel: ui.selectedDescription->setText(tr("The development version is " - "updated on every code change. Last update was on %1").arg( - PlayerBuildInfo::instance()->value( - PlayerBuildInfo::BuildVersion, - PlayerBuildInfo::TypeDevel).toString())); + "updated on every code change.")); voice = false; break; case PlayerBuildInfo::TypeCandidate: @@ -99,6 +96,7 @@ void SelectiveInstallWidget::selectedVersionChanged(int index) ui.voiceCheckbox->setEnabled(voice); ui.voiceCombobox->setEnabled(voice); ui.voiceLabel->setEnabled(voice); + ui.voiceCheckbox->setToolTip(voice ? "" : tr("Not available for the selected version")); updateVoiceLangs(); } @@ -652,12 +650,14 @@ void SelectiveInstallWidget::installPluginData(void) if(dataUrls.size() == 0) { - m_logger->addItem(tr("Your installation doesn't require any game files, skipping."), LOGINFO); + m_logger->addItem( + tr("Your installation doesn't require any plugin data files, skipping."), + LOGINFO); emit installSkipped(false); return; } - LOG_INFO() << "installing gamefiles"; + LOG_INFO() << "installing plugin data files"; // create new zip installer if(m_zipinstaller != nullptr) m_zipinstaller->deleteLater(); -- cgit