From 17fa69eb4268efd63aeeb40bd11da959192f3d1c Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Sun, 7 Oct 2018 22:39:00 +0300 Subject: [PATCH] Debugger: Translate user-visible strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I8cd2c93bf6713cb1b5379228c700d36c3b71c261 Reviewed-by: André Hartmann Reviewed-by: Leena Miettinen Reviewed-by: hjk --- src/plugins/debugger/unstartedappwatcherdialog.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/debugger/unstartedappwatcherdialog.cpp b/src/plugins/debugger/unstartedappwatcherdialog.cpp index 703c1ea5ba1..9415c573550 100644 --- a/src/plugins/debugger/unstartedappwatcherdialog.cpp +++ b/src/plugins/debugger/unstartedappwatcherdialog.cpp @@ -239,8 +239,7 @@ void UnstartedAppWatcherDialog::pidFound(const DeviceProcessItem &p) void UnstartedAppWatcherDialog::startStopWatching(bool start) { setWaitingState(start ? WatchingState : NotWatchingState); - m_watchingPushButton->setText(start ? QLatin1String("Stop Watching") - : QLatin1String("Start Watching")); + m_watchingPushButton->setText(start ? tr("Stop Watching") : tr("Start Watching")); startStopTimer(start); }