diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp
index d9ee1c50..e802f3f9 100644
--- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp
+++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPath.cpp
@@ -116,8 +116,9 @@ QtProjectWizzardContentPathCDB::QtProjectWizzardContentPathCDB(
{
setTitleString("Compilation Database (compile_commands.json)");
setHelpString(
- "Sourcetrail will use all include paths and compiler flags from the compilation database and stay up-to-date "
- "with changes on refresh.
"
+ "Select the compilation database file for the project. Sourcetrail will index your project based on the compile "
+ "commands this file contains using all include paths and compiler flags of these compile commands. The project "
+ "will stay up to date with changes in the compilation database on every refresh.
"
"
"
"You can make use of environment variables with ${ENV_VAR}."
);
diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp
index 1c7b1d97..376cd1cc 100644
--- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp
+++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentPaths.cpp
@@ -238,7 +238,7 @@ QtProjectWizzardContentPathsCDBHeader::QtProjectWizzardContentPathsCDBHeader(
setTitleString("Header Files & Directories to Index");
setHelpString(
"Your Compilation Database already specifies which source files are part of your project. But Sourcetrail still needs to know which "
- "header files to index as part of your project and which to skip. Skipping to index your system headers or external frameworks will "
+ "header files to index as part of your project and which to skip. Choosing to skip indexing your system headers or external frameworks will "
"significantly improve the overall indexing performance.
"
"
"
"Use this list to define which header files should be indexed by Sourcetrail. Provide a directory to recursively add all contained files.
"
diff --git a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp
index 62e413c8..5b78b6bc 100644
--- a/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp
+++ b/src/lib_gui/qt/window/project_wizzard/QtProjectWizzardContentVS.cpp
@@ -23,7 +23,7 @@ Note: Sourcetrail's Visual Studio plugin has to be installed. Visual Studio has
layout->addWidget(descriptionLabel, row, QtProjectWizzardWindow::BACK_COL);
row++;
- QPushButton* button = new QPushButton("Create CDB");
+ QPushButton* button = new QPushButton("Create Compilation Database");
button->setObjectName("windowButton");
layout->addWidget(button, row, QtProjectWizzardWindow::BACK_COL);
row++;