Fix a non-constant tr("...")

This commit is contained in:
Gary Talent 2017-05-04 01:35:37 -05:00
parent eec9a9d730
commit 411a3fe65d

View File

@ -110,7 +110,7 @@ void MainWindow::showNewWizard() {
);
pg->addDirBrowse(tr("Project &Path:"), PROJECT_PATH + "*");
pgs.push_back(pg);
pgs.push_back(new WizardConclusionPage(tr("Creating project: %1/%2"), {PROJECT_PATH, PROJECT_NAME}));
pgs.push_back(new WizardConclusionPage(tr("Creating project: ") + "%1/%2", {PROJECT_PATH, PROJECT_NAME}));
return pgs;
}