Update SettingsWindow.cpp

- Fixed minor typos.
This commit is contained in:
Michael 2024-08-27 10:56:16 +02:00 committed by GitHub
parent 87c656e7bc
commit 70b63d1e99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1326,9 +1326,9 @@ void CSettingsWindow::UpdateCert()
QStringList Info; QStringList Info;
if(g_CertInfo.expirers_in_sec > 0) if(g_CertInfo.expirers_in_sec > 0)
Info.append(tr("Expires in: %1 Days").arg(g_CertInfo.expirers_in_sec / (60*60*24))); Info.append(tr("Expires in: %1 days").arg(g_CertInfo.expirers_in_sec / (60*60*24)));
else if(g_CertInfo.expirers_in_sec < 0) else if(g_CertInfo.expirers_in_sec < 0)
Info.append(tr("Expired: %1 Days ago").arg(g_CertInfo.expirers_in_sec / (60*60*24))); Info.append(tr("Expired: %1 days ago").arg(g_CertInfo.expirers_in_sec / (60*60*24)));
QStringList Options; QStringList Options;
if (g_CertInfo.opt_sec) Options.append("SBox"); if (g_CertInfo.opt_sec) Options.append("SBox");