Translations: Fix some Tr::tr() calls

Tr::Tr::tr("Foo") would introduce extra translation contexts.

Change-Id: I43903d53d7d65677bb6b7a8bfd85eb5013c1fe6b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Alessandro Portale
2023-02-16 17:32:49 +01:00
parent cd2aef9f50
commit 6e24d3eec8
3 changed files with 3 additions and 3 deletions

View File

@@ -1603,7 +1603,7 @@ static QString msgWhereFailed(const QString & file, const QString &why)
{
//: Failed to run p4 "where" to resolve a Perforce file name to a local
//: file system name.
return Tr::Tr::tr("Error running \"where\" on %1: %2").
return Tr::tr("Error running \"where\" on %1: %2").
arg(QDir::toNativeSeparators(file), why);
}