Fix string typos (2)
This commit is contained in:
parent
0b1b4af79a
commit
1780e93b81
|
@ -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)));
|
||||
|
||||
|
|
Loading…
Reference in New Issue