@@ -12,8 +12,9 @@ NvidiaDetector::NvidiaDetector(QObject *parent) : QObject(parent) {}
1212NvidiaDetector::GpuInfo NvidiaDetector::detect () const {
1313 GpuInfo info;
1414
15- // TR: Tespit adimlari olabildigince bagimsiz tutulur; biri fail etse digeri devam eder.
16- // EN: Detection steps are independent so one failure does not block others.
15+ // TR: Tespit adimlari olabildigince bagimsiz tutulur; biri fail etse digeri
16+ // devam eder. EN: Detection steps are independent so one failure does not
17+ // block others.
1718 info.name = detectGpuName ();
1819 info.found = !info.name .isEmpty ();
1920 info.driverVersion = detectDriverVersion ();
@@ -56,9 +57,9 @@ QString NvidiaDetector::verificationReport() const {
5657 " NVIDIA Modulu: %5\n Nouveau: %6" )
5758 .arg (gpuText, versionText,
5859 m_info.secureBootKnown
59- ? (m_info.secureBootEnabled ? QStringLiteral (" Acik" )
60- : QStringLiteral (" Kapali" ))
61- : QStringLiteral (" Bilinmiyor" ),
60+ ? (m_info.secureBootEnabled ? QStringLiteral (" Acik" )
61+ : QStringLiteral (" Kapali" ))
62+ : QStringLiteral (" Bilinmiyor" ),
6263 m_info.sessionType .isEmpty () ? QStringLiteral (" Bilinmiyor" )
6364 : m_info.sessionType ,
6465 m_info.driverLoaded ? QStringLiteral (" Yuklu" )
@@ -142,7 +143,8 @@ bool NvidiaDetector::isModuleLoaded(const QString &moduleName) const {
142143
143144bool NvidiaDetector::detectSecureBoot (bool *known) const {
144145 // TR: mokutil yoksa "kapali" degil "bilinmiyor" olarak siniflandir.
145- // EN: If mokutil is unavailable, classify as "unknown" rather than "disabled".
146+ // EN: If mokutil is unavailable, classify as "unknown" rather than
147+ // "disabled".
146148 CommandRunner runner;
147149 const auto result =
148150 runner.run (QStringLiteral (" mokutil" ), {QStringLiteral (" --sb-state" )});
0 commit comments