I18n: tr-fixes.

This commit is contained in:
Friedemann Kleint
2010-09-13 16:51:18 +02:00
parent 947f0f3a30
commit 66ad76de4f
11 changed files with 25 additions and 22 deletions

View File

@@ -1458,7 +1458,7 @@ bool GitClient::getCommitData(const QString &workingDirectory,
args << QLatin1String("--max-count=1") << QLatin1String("--pretty=format:%h@%B");
const Utils::SynchronousProcessResponse sp = synchronousGit(repoDirectory, args);
if (sp.result != Utils::SynchronousProcessResponse::Finished) {
*errorMessage = tr("Unable to retrieve the last commit data from %1.").arg(repoDirectory);
*errorMessage = tr("Unable to retrieve the last commit data of the repository %1.").arg(repoDirectory);
return false;
}
const int separatorPos = sp.stdOut.indexOf(QLatin1Char('@'));