From 71af241835aef1360ecc9bc48ac1ec42f6f256d1 Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Wed, 5 Oct 2022 09:23:12 +0100 Subject: [PATCH] Tweak the do-not-power-off message We don't ever want to infer that the user is required to turn off the computer. --- src/fu-util-common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fu-util-common.c b/src/fu-util-common.c index 67790c51b..013727f72 100644 --- a/src/fu-util-common.c +++ b/src/fu-util-common.c @@ -2184,8 +2184,8 @@ fu_util_request_get_message(FwupdRequest *req) } if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_DO_NOT_POWER_OFF) == 0) { /* TRANSLATORS: warning message shown after update has been scheduled */ - return _("Do not turn off your computer or remove the AC adaptor until " - "you are sure the update has completed."); + return _("Do not turn off your computer or remove the AC adaptor " + "while the update is in progress."); } } return fwupd_request_get_message(req);