From 9db70d8810dbee8c3b54e4d69f9dfcee27f90259 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Tue, 7 Feb 2023 22:46:35 +0100 Subject: 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 --- src/plugins/debugger/gdb/gdbengine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/debugger/gdb/gdbengine.cpp') diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 9797a354bb..b420104afb 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -5077,7 +5077,7 @@ void GdbEngine::handleFetchVariables(const DebuggerResponse &response) QString GdbEngine::msgPtraceError(DebuggerStartMode sm) { if (sm == StartInternal) { - return QCoreApplication::translate("QtDumperHelper", + return Tr::tr( "ptrace: Operation not permitted.\n\n" "Could not attach to the process. " "Make sure no other debugger traces this process.\n" @@ -5085,7 +5085,7 @@ QString GdbEngine::msgPtraceError(DebuggerStartMode sm) "/proc/sys/kernel/yama/ptrace_scope\n" "For more details, see /etc/sysctl.d/10-ptrace.conf\n"); } - return QCoreApplication::translate("QtDumperHelper", + return Tr::tr( "ptrace: Operation not permitted.\n\n" "Could not attach to the process. " "Make sure no other debugger traces this process.\n" -- cgit v1.2.1