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"; }