From 1780e93b81986641005e26e0d9176778515014e5 Mon Sep 17 00:00:00 2001 From: isaak654 Date: Fri, 14 Jan 2022 10:55:29 +0100 Subject: [PATCH] Fix string typos (2) --- SandboxiePlus/SandMan/SandMan.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SandboxiePlus/SandMan/SandMan.cpp b/SandboxiePlus/SandMan/SandMan.cpp index 0823f80b..f923842b 100644 --- a/SandboxiePlus/SandMan/SandMan.cpp +++ b/SandboxiePlus/SandMan/SandMan.cpp @@ -2337,10 +2337,10 @@ void CSandMan::UpdateCertState() g_CertInfo.about_to_expire = g_CertInfo.expirers_in_sec && g_CertInfo.expirers_in_sec < (60*60*24*30); if (g_CertInfo.outdated) OnLogMessage(tr("The supporter certificate is not valid for this build, please get an updated certificate")); - // outdated always implicates its no longer valid - else if (g_CertInfo.expired) // may be still valid for the current ald older builds - OnLogMessage(tr("The supporter certificate is expired%1, please get an updated certificate") - .arg(g_CertInfo.valid ? tr(", but it remians valid for the current build") : "")); + // outdated always implicates it is no longer valid + else if (g_CertInfo.expired) // may be still valid for the current older builds + OnLogMessage(tr("The supporter certificate is expired %1 days ago, please get an updated certificate") + .arg(g_CertInfo.valid ? tr(", but it remains valid for the current build") : "")); else if(g_CertInfo.about_to_expire) OnLogMessage(tr("The supporter certificate will expire in %1 days, please get an updated certificate").arg(g_CertInfo.expirers_in_sec / (60*60*24)));