diff options
author | Alessandro Portale <alessandro.portale@qt.io> | 2023-02-07 22:46:35 +0100 |
---|---|---|
committer | Alessandro Portale <alessandro.portale@qt.io> | 2023-02-08 08:32:42 +0000 |
commit | 9db70d8810dbee8c3b54e4d69f9dfcee27f90259 (patch) | |
tree | df271ab90654d433b1ecc690db4ee3ee6acccb73 /src/plugins/git/gerrit/gerritserver.cpp | |
parent | 2356f28647c04718919a090a4784c9453cd0c02a (diff) | |
download | qt-creator-9db70d8810dbee8c3b54e4d69f9dfcee27f90259.tar.gz |
Translations: Fix stray QApplication::translate() calls
For references to the module-own context, use Tr::tr().
For references to other modules, use the right context name (with "::"
prefix).
Change-Id: I6dce8f1ceccb23c44d93f1826402cd3be8e98e5a
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
Diffstat (limited to 'src/plugins/git/gerrit/gerritserver.cpp')
-rw-r--r-- | src/plugins/git/gerrit/gerritserver.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/git/gerrit/gerritserver.cpp b/src/plugins/git/gerrit/gerritserver.cpp index 793586f54f..1ac7a64993 100644 --- a/src/plugins/git/gerrit/gerritserver.cpp +++ b/src/plugins/git/gerrit/gerritserver.cpp @@ -281,10 +281,8 @@ bool GerritServer::resolveRoot() case CertificateError: if (QMessageBox::question( Core::ICore::dialogParent(), - QCoreApplication::translate( - "Gerrit::Internal::GerritDialog", "Certificate Error"), - QCoreApplication::translate( - "Gerrit::Internal::GerritDialog", + Tr::tr("Certificate Error"), + Tr::tr( "Server certificate for %1 cannot be authenticated.\n" "Do you want to disable SSL verification for this server?\n" "Note: This can expose you to man-in-the-middle attack.") |