UI text: fix typo

"a executable" should be "an executable"

Change-Id: I3d1717c893e1dbdc95d7af2477af253234eb0c21
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
This commit is contained in:
Leena Miettinen
2013-02-08 17:15:56 +01:00
parent 22caba4101
commit 31ecec10a8
3 changed files with 3 additions and 3 deletions

View File

@@ -521,7 +521,7 @@ bool PathChooser::validatePath(const QString &path, QString *errorMessage)
case PathChooser::ExistingCommand: case PathChooser::ExistingCommand:
if (!fi.isFile() || !fi.isExecutable()) { if (!fi.isFile() || !fi.isExecutable()) {
if (errorMessage) if (errorMessage)
*errorMessage = tr("The path <b>%1</b> is not a executable file.").arg(QDir::toNativeSeparators(expandedPath)); *errorMessage = tr("The path <b>%1</b> is not an executable file.").arg(QDir::toNativeSeparators(expandedPath));
return false; return false;
} }

View File

@@ -1270,7 +1270,7 @@ bool BaseQtVersion::queryQMakeVariables(const FileName &binary, const Environmen
const QFileInfo qmake = binary.toFileInfo(); const QFileInfo qmake = binary.toFileInfo();
if (!qmake.exists() || !qmake.isExecutable() || qmake.isDir()) { if (!qmake.exists() || !qmake.isExecutable() || qmake.isDir()) {
*error = QCoreApplication::translate("QtVersion", "qmake '%1' is not an executable").arg(binary.toUserOutput()); *error = QCoreApplication::translate("QtVersion", "qmake '%1' is not an executable.").arg(binary.toUserOutput());
return false; return false;
} }

View File

@@ -62,7 +62,7 @@ public:
*/ */
QString executable() const; QString executable() const;
/** Returns whether this runconfiguration ever was configured with a executable /** Returns whether this runconfiguration ever was configured with an executable
*/ */
bool isConfigured() const; bool isConfigured() const;