aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/welcome
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/welcome')
-rw-r--r--src/plugins/welcome/CMakeLists.txt8
-rw-r--r--src/plugins/welcome/introductionwidget.cpp6
2 files changed, 11 insertions, 3 deletions
diff --git a/src/plugins/welcome/CMakeLists.txt b/src/plugins/welcome/CMakeLists.txt
new file mode 100644
index 0000000000..4b07301581
--- /dev/null
+++ b/src/plugins/welcome/CMakeLists.txt
@@ -0,0 +1,8 @@
+add_qtc_plugin(Welcome
+ DEPENDS
+ PLUGIN_DEPENDS Core
+ SOURCES
+ introductionwidget.cpp introductionwidget.h
+ welcome.qrc
+ welcomeplugin.cpp
+)
diff --git a/src/plugins/welcome/introductionwidget.cpp b/src/plugins/welcome/introductionwidget.cpp
index e931975f6f..82539fd996 100644
--- a/src/plugins/welcome/introductionwidget.cpp
+++ b/src/plugins/welcome/introductionwidget.cpp
@@ -52,9 +52,9 @@ void IntroductionWidget::askUserAboutIntroduction(QWidget *parent, QSettings *se
auto messageBox = new CheckableMessageBox(parent);
messageBox->setWindowTitle(tr("Take a UI Tour"));
messageBox->setText(
- tr("Do you want to take a quick UI tour? This shows where the most important user "
- "interface elements are, and how they are used, and will only take a minute. You can "
- "also take the tour later by selecting Help > UI Tour."));
+ tr("Would you like to take a quick UI tour? This tour highlights important user "
+ "interface elements and shows how they are used. To take the tour later, "
+ "select Help > UI Tour."));
messageBox->setCheckBoxVisible(true);
messageBox->setCheckBoxText(CheckableMessageBox::msgDoNotAskAgain());
messageBox->setChecked(true);