GUI: Remove trailing spaces from translated strings
This commit is contained in:
parent
fe4086f118
commit
0b0d890bd2
|
@ -779,7 +779,7 @@ void MainWindow::LoadProjectFile(const QString &filePath)
|
||||||
{
|
{
|
||||||
QFileInfo inf(filePath);
|
QFileInfo inf(filePath);
|
||||||
const QString filename = inf.fileName();
|
const QString filename = inf.fileName();
|
||||||
FormatAndSetTitle(tr("Project: ") + QString(" ") + filename);
|
FormatAndSetTitle(tr("Project:") + QString(" ") + filename);
|
||||||
AddProjectMRU(filePath);
|
AddProjectMRU(filePath);
|
||||||
|
|
||||||
mUI.mActionCloseProjectFile->setEnabled(true);
|
mUI.mActionCloseProjectFile->setEnabled(true);
|
||||||
|
@ -825,7 +825,7 @@ void MainWindow::NewProjectFile()
|
||||||
EnableProjectActions(true);
|
EnableProjectActions(true);
|
||||||
QFileInfo inf(filepath);
|
QFileInfo inf(filepath);
|
||||||
const QString filename = inf.fileName();
|
const QString filename = inf.fileName();
|
||||||
FormatAndSetTitle(tr("Project: ") + QString(" ") + filename);
|
FormatAndSetTitle(tr("Project:") + QString(" ") + filename);
|
||||||
|
|
||||||
delete mProject;
|
delete mProject;
|
||||||
mProject = new Project(filepath, this);
|
mProject = new Project(filepath, this);
|
||||||
|
|
Loading…
Reference in New Issue