From 4d3f638945366fbe85e2bb524336fa7958c12677 Mon Sep 17 00:00:00 2001 From: dr|z3d Date: Sat, 4 Sep 2021 12:12:38 +0000 Subject: [PATCH] Console: label tweaks --- daemon/HTTPServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/HTTPServer.cpp b/daemon/HTTPServer.cpp index 48af71f7..f563e218 100644 --- a/daemon/HTTPServer.cpp +++ b/daemon/HTTPServer.cpp @@ -596,14 +596,14 @@ namespace http { } #if ((!defined(WIN32) && !defined(QT_GUI_LIB) && !defined(ANDROID)) || defined(ANDROID_BINARY)) if (auto remains = Daemon.gracefulShutdownInterval) { - s << "" << tr("Stopping in") << ""; + s << "" << tr("Shutdown") << ""; ShowUptime(s, remains); s << "…\r\n"; } #elif defined(WIN32_APP) if (i2p::win32::g_GracefulShutdownEndtime != 0) { uint16_t remains = (i2p::win32::g_GracefulShutdownEndtime - GetTickCount()) / 1000; - s << "" << tr("Stopping in") << ""; + s << "" << tr("Shutdown") << ""; ShowUptime(s, remains); s << "…\r\n"; }