Skip to content

Commit

Permalink
Remove xmlsec from diagnostics
Browse files Browse the repository at this point in the history
IB-8185

Signed-off-by: Raul Metsma <raul@metsma.ee>
  • Loading branch information
metsma committed Sep 17, 2024
1 parent 5f1f558 commit 8afbae5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 17 deletions.
10 changes: 5 additions & 5 deletions client/Diagnostics_unix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,21 @@ void Diagnostics::run()
struct utsname unameData = {};
uname(&unameData);
s << "<b>" << tr("Kernel:") << "</b> "
<< unameData.sysname << " " << unameData.release << " "
<< unameData.version << " " << unameData.machine << "<br /><br />";
<< unameData.sysname << ' ' << unameData.release << ' '
<< unameData.version << ' ' << unameData.machine << "<br /><br />";
emit update( info );
info.clear();

s << "<b>" << tr("Libraries") << ":</b><br />"
<< "QT (" << qVersion() << ")" << "<br />"
<< "QT (" << qVersion() << ")<br />"
<< "OpenSSL build (" << QSslSocket::sslLibraryBuildVersionString() << ")<br />"
<< "OpenSSL current (" << QSslSocket::sslLibraryVersionString() << ")<br />"
<< packages({
#ifdef Q_OS_DARWIN
"digidocpp"
#else
"libdigidocpp1", "qdigidoc4", "firefox-pkcs11-loader", "chrome-token-signing", "web-eid",
"libxml2", "libxmlsec1", "libpcsclite1", "pcsc-lite", "opensc"
"libdigidocpp1", "qdigidoc4", "firefox-pkcs11-loader", "web-eid",
"libxml2", "libpcsclite1", "pcsc-lite", "opensc"
#endif
}).join(QStringLiteral("<br />")) << "<br /><br />";
emit update( info );
Expand Down
4 changes: 0 additions & 4 deletions client/translations/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2464,10 +2464,6 @@ and enter Smart-ID PIN2-code.</translation>
<source>Password</source>
<translation>Password</translation>
</message>
<message>
<source>Enable proxy for SSL connections</source>
<translation>Enable proxy for SSL connections</translation>
</message>
<message>
<source>The connection to certificate status service is successful!</source>
<translation>Network settings are correct, certificate status service is accessible!</translation>
Expand Down
4 changes: 0 additions & 4 deletions client/translations/et.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2468,10 +2468,6 @@ ja sisesta nutiseadmes Smart-ID PIN2-kood.</translation>
<source>Password</source>
<translation>Parool</translation>
</message>
<message>
<source>Enable proxy for SSL connections</source>
<translation>Luba proksi kasutamine SSL-ühenduste jaoks</translation>
</message>
<message>
<source>The connection to certificate status service is successful!</source>
<translation>Interneti seaded on korrektsed, kehtivuskinnitusteenus on kättesaadav!</translation>
Expand Down
4 changes: 0 additions & 4 deletions client/translations/ru.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2469,10 +2469,6 @@ and enter Smart-ID PIN2-code.</source>
<source>Password</source>
<translation>Пароль</translation>
</message>
<message>
<source>Enable proxy for SSL connections</source>
<translation>Включить прокси-сервер для подключения SSL</translation>
</message>
<message>
<source>The connection to certificate status service is successful!</source>
<translation>Настройки Интернета верны, услуга подтверждения действительности доступна!</translation>
Expand Down

0 comments on commit 8afbae5

Please sign in to comment.