diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts
index c36e16fdc6905f09560f6c344a5a059c6424f4ee..b3fca09985de7ddabd76b8d74c2284652f29937c 100644
--- a/share/qtcreator/translations/qtcreator_de.ts
+++ b/share/qtcreator/translations/qtcreator_de.ts
@@ -19930,7 +19930,7 @@ p, li { white-space: pre-wrap; }
     <message>
         <location filename="../../../src/plugins/projectexplorer/baseprojectwizarddialog.cpp" line="+124"/>
         <source>untitled</source>
-        <translation type="unfinished">kein Titel</translation>
+        <translation type="unfinished"></translation>
     </message>
 </context>
 <context>
diff --git a/src/plugins/projectexplorer/baseprojectwizarddialog.cpp b/src/plugins/projectexplorer/baseprojectwizarddialog.cpp
index 9f5b8bd3c50849d3c8aba60041611caf903aa5c4..f9470c8520002ea313092e96b4036ecaef36ac5d 100644
--- a/src/plugins/projectexplorer/baseprojectwizarddialog.cpp
+++ b/src/plugins/projectexplorer/baseprojectwizarddialog.cpp
@@ -121,6 +121,8 @@ Utils::ProjectIntroPage *BaseProjectWizardDialog::introPage() const
 QString BaseProjectWizardDialog::uniqueProjectName(const QString &path)
 {
     const QDir pathDir(path);
+    //: File path suggestion for a new project. If you choose
+    //: to translate it, make sure it is a valid path name without blanks.
     const QString prefix = tr("untitled");
     for (unsigned i = 0; ; i++) {
         QString name = prefix;