diff --git a/include/mainwindow.h b/include/mainwindow.h index ad4572c..97ea191 100644 --- a/include/mainwindow.h +++ b/include/mainwindow.h @@ -40,6 +40,7 @@ private slots: void on_actionIgnore_C4_Reallocation_Event_Count_toggled(bool enabled); void on_actionHEX_toggled(bool enabled); void on_actionUse_Fahrenheit_toggled(bool enabled); + void on_actionUse_Human_Readable_Time_toggled(bool enabled); void on_actionCyclic_Navigation_toggled(bool arg1); void on_actionUse_GB_instead_of_TB_toggled(bool arg1); diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 2deda9f..c5cf7a8 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -103,6 +103,7 @@ MainWindow::MainWindow(QWidget *parent) ui->actionIgnore_C4_Reallocation_Event_Count->setChecked(settings.value("IgnoreC4", true).toBool()); ui->actionHEX->setChecked(settings.value("HEX", true).toBool()); ui->actionUse_Fahrenheit->setChecked(settings.value("Fahrenheit", false).toBool()); + ui->actionUse_Fahrenheit->setChecked(settings.value("HumanReadableTime", false).toBool()); ui->actionCyclic_Navigation->setChecked(settings.value("CyclicNavigation", false).toBool()); ui->actionUse_GB_instead_of_TB->setChecked(settings.value("UseGB", false).toBool()); @@ -448,6 +449,7 @@ void MainWindow::populateWindow(const QJsonObject &localObj, const QString &heal int64_t totalMbWritesI64 = 0; int64_t totalMbReadsI64 = 0; bool useGB = ui->actionUse_GB_instead_of_TB->isChecked(); + bool useHumanReadableTime = ui->actionUse_Human_Readable_Time->isChecked(); QString diskCapacityString = getMbToPrettyString(diskCapacityMbI64, PRECISION_CAPACITY_TO_STR, useGB); @@ -493,7 +495,7 @@ void MainWindow::populateWindow(const QJsonObject &localObj, const QString &heal selfTestsTableWidget->setRowCount(static_cast(rowCount)); selfTestsTableWidget->setColumnCount(3); selfTestsTableWidget->verticalHeader()->setVisible(false); - selfTestsTableWidget->setHorizontalHeaderLabels({tr("Type"), tr("Status"), tr("Power On Hours")}); + selfTestsTableWidget->setHorizontalHeaderLabels({tr("Type"), tr("Status"), tr("Power On Time")}); for (int i = 0; i < rowCount; ++i) { QJsonObject entry = selfTestsTable[i].toObject(); @@ -583,7 +585,11 @@ void MainWindow::populateWindow(const QJsonObject &localObj, const QString &heal int powerOnTimeInt = localObj["power_on_time"].toObject().value("hours").toInt(-1); QString powerOnTime; if (powerOnTimeInt >= 0) { - powerOnTime = QString::number(powerOnTimeInt) + " " + tr("hours"); + if (useHumanReadableTime) { + powerOnTime = QString::number(powerOnTimeInt / 24 / 365) + " " + tr("years") + " " + QString::number(powerOnTimeInt / 24 % 365) + " " + tr("days") + " " + QString::number(powerOnTimeInt % 24) + " " + tr("hours"); + } else { + powerOnTime = QString::number(powerOnTimeInt) + " " + tr("hours"); + } } else { powerOnTime = "Unknown"; } @@ -1391,6 +1397,14 @@ void MainWindow::on_actionUse_Fahrenheit_toggled(bool enabled) } } +void MainWindow::on_actionUse_Human_Readable_Time_toggled(bool enabled) +{ + settings.setValue("HumanReadableTime", enabled); + if (!initializing) { + updateUI(Utils.clearButtonGroup(buttonGroup, horizontalLayout, buttonStretch, menuDisk)); + } +} + void MainWindow::on_actionCyclic_Navigation_toggled(bool cyclicNavigation) { settings.setValue("CyclicNavigation", cyclicNavigation); @@ -1423,12 +1437,14 @@ void MainWindow::on_actionClear_Settings_triggered() settings.setValue("IgnoreC4", true); settings.setValue("HEX", true); settings.setValue("Fahrenheit", false); + settings.setValue("HumanReadableTime", false); settings.setValue("CyclicNavigation", false); settings.setValue("UseGB", false); ui->actionIgnore_C4_Reallocation_Event_Count->setChecked(true); ui->actionHEX->setChecked(true); ui->actionUse_Fahrenheit->setChecked(false); + ui->actionUse_Human_Readable_Time->setChecked(false); ui->actionCyclic_Navigation->setChecked(false); ui->actionUse_GB_instead_of_TB->setChecked(false); diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 34f8e30..f844036 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -325,7 +325,7 @@ - Power On Hours + Power On Time @@ -508,6 +508,7 @@ + @@ -618,6 +619,14 @@ &Use Fahrenheit + + + true + + + &Use Human Readable Time + + Self Test diff --git a/translations/qdiskinfo_af_ZA.ts b/translations/qdiskinfo_af_ZA.ts index 3c16984..0d21e8e 100644 --- a/translations/qdiskinfo_af_ZA.ts +++ b/translations/qdiskinfo_af_ZA.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_ar_SA.ts b/translations/qdiskinfo_ar_SA.ts index f126163..77227e0 100644 --- a/translations/qdiskinfo_ar_SA.ts +++ b/translations/qdiskinfo_ar_SA.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_ca_ES.ts b/translations/qdiskinfo_ca_ES.ts index 8fffbc5..308f1d1 100644 --- a/translations/qdiskinfo_ca_ES.ts +++ b/translations/qdiskinfo_ca_ES.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_cs_CZ.ts b/translations/qdiskinfo_cs_CZ.ts index 9c91fcc..782c417 100644 --- a/translations/qdiskinfo_cs_CZ.ts +++ b/translations/qdiskinfo_cs_CZ.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_da_DK.ts b/translations/qdiskinfo_da_DK.ts index 184bb73..7279203 100644 --- a/translations/qdiskinfo_da_DK.ts +++ b/translations/qdiskinfo_da_DK.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_de_DE.ts b/translations/qdiskinfo_de_DE.ts index 68b2f8d..b415ac4 100644 --- a/translations/qdiskinfo_de_DE.ts +++ b/translations/qdiskinfo_de_DE.ts @@ -75,8 +75,8 @@ Anzahl der Einschaltungen - Power On Hours - Betriebsstunden + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Fahrenheit benutzen + + &Use Human Readable Time + + Self Test Selbsttest @@ -190,6 +194,14 @@ hours Stunden + + years + + + + days + + Short Kurz diff --git a/translations/qdiskinfo_el_GR.ts b/translations/qdiskinfo_el_GR.ts index d2acaa4..36eae96 100644 --- a/translations/qdiskinfo_el_GR.ts +++ b/translations/qdiskinfo_el_GR.ts @@ -75,8 +75,8 @@ Μετρητής Λειτουργίας - Power On Hours - Ώρες Λειτουργίας + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit Χρήση &Fahrenheit + + &Use Human Readable Time + + Self Test Αυτοδιάγνωση @@ -190,6 +194,14 @@ hours ώρες + + years + + + + days + + Short Σύντομο diff --git a/translations/qdiskinfo_en_US.ts b/translations/qdiskinfo_en_US.ts index ec03504..8dc2b8c 100644 --- a/translations/qdiskinfo_en_US.ts +++ b/translations/qdiskinfo_en_US.ts @@ -75,7 +75,7 @@ - Power On Hours + Power On Time @@ -130,6 +130,10 @@ &Use Fahrenheit + + &Use Human Readable Time + + Self Test @@ -190,6 +194,14 @@ hours + + days + + + + years + + Short diff --git a/translations/qdiskinfo_es_ES.ts b/translations/qdiskinfo_es_ES.ts index 46ba68d..17e1167 100644 --- a/translations/qdiskinfo_es_ES.ts +++ b/translations/qdiskinfo_es_ES.ts @@ -75,8 +75,8 @@ Veces Encendido - Power On Hours - Horas Encendido + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Usar Fahrenheit + + &Use Human Readable Time + + Self Test Ejecutar Autotest @@ -190,6 +194,14 @@ hours horas + + years + + + + days + + Short Corto diff --git a/translations/qdiskinfo_fi_FI.ts b/translations/qdiskinfo_fi_FI.ts index a7ccf78..e7fff13 100644 --- a/translations/qdiskinfo_fi_FI.ts +++ b/translations/qdiskinfo_fi_FI.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_fr_FR.ts b/translations/qdiskinfo_fr_FR.ts index 5b55f25..167bc9d 100644 --- a/translations/qdiskinfo_fr_FR.ts +++ b/translations/qdiskinfo_fr_FR.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_he_IL.ts b/translations/qdiskinfo_he_IL.ts index 4ef0dbe..17a49ad 100644 --- a/translations/qdiskinfo_he_IL.ts +++ b/translations/qdiskinfo_he_IL.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_hu_HU.ts b/translations/qdiskinfo_hu_HU.ts index 8567545..53dc6c4 100644 --- a/translations/qdiskinfo_hu_HU.ts +++ b/translations/qdiskinfo_hu_HU.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_it_IT.ts b/translations/qdiskinfo_it_IT.ts index dcfbfb5..7e123e9 100644 --- a/translations/qdiskinfo_it_IT.ts +++ b/translations/qdiskinfo_it_IT.ts @@ -1,445 +1,457 @@ - + - - - GridView - - Grid View - Vista griglia - - - Search for a disk... - Cerca un disco... - - - - MainWindow - - QDiskInfo - QDiskInfo - - - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Stato di salute</p></body></html> - - - <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Good</span></p><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">100 %</span></p></body></html> - <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Buono</span></p><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">100 %</span></p></body></html> - - - <html><head/><body><p align="center">Temperature</p></body></html> - <html><head/><body><p align="center">Temperatura</p></body></html> - - - <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">23° C</span></p></body></html> - <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">23° C</span></p></body></html> - - - Firmware - Firmware - - - Serial Number - Numero di serie - - - Protocol - Protocollo - - - Device Node - Nodo dispositivo - - - <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Good 100 %</span></p></body></html> - <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Buono 100 %</span></p></body></html> - - - Type - Tipo - - - Total Host Reads - Totale letture host - - - Total Host Writes - Totale scritture host - - - Rotation Rate - Tasso di rotazione - - - Power On Count - Conteggio accensioni - - - Power On Hours - Ore funzionamento - - - <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> - <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Nome disco</span></p></body></html> - - - File - File - - - Settings - Impostazioni - - - &Help - &Aiuto - - - De&vice - Dispositi&vo - - - Disk - Disco - - - &Quit - &Esci - - - &Refresh Devices - Aggio&rna dispositivi - - - &GitHub - &GitHub - - - &About QDiskInfo - &Info su QDiskInfo - - - &Ignore C4 (Reallocated Event Count) - &Ignora C4 (conteggio eventi di riallocazione) - - - &Convert Raw values to HEX - &Converti valori grezzi in HEX - - - &Use Fahrenheit - &Usa i Fahrenheit - - - Self Test - Autotest - - - Cyclic &Navigation - &Navigazione Ciclica - - - Use &GB instead of TB - Usa &GB invece di TB - - - About &Qt - Info su &Qt - - - Start Self Test - Avvia autotest - - - Self Test Log - Registro autotest - - - Critical Warning - Avviso critico - - - Grown Defect List - Elenco aumento difetti - - - Good - Buono - - - Caution - Attenzione - - - Bad - Cattivo - - - Unknown - Sconosciuto - - - Status - Stato - - - count - conteggio - - - hours - ore - - - Short - Breve - - - Conveyance - Trasporto - - - Extended - Esteso - - - Min.) - Min.) - - - Read - Lettura - - - Write - Scrittura - - - Verify - Verifica - - - ID - ID - - - Attribute Name - Nome attributo - - - Raw Values - Valori grezzi - - - Available spare capacity has fallen below the threshold - Lo spazio inutilizzato disponibile è sceso al di sotto della soglia - - - Temperature error (Overheat or Overcool) - Errore di temperatura (surriscaldamento o sovraraffreddamento) - - - NVM subsystem reliability has been degraded - L'affidabilità del sottosistema NVM è diminuita - - - Media has been placed in Read Only Mode - Il supporto è stato posto in modalità sola lettura - - - Volatile memory backup device has Failed - Il dispositivo di backup della memoria volatile ha fallito - - - Persistent memory region has become Read-Only - La regione della memoria persistente è diventata di sola lettura - - - Current - Corrente - - - Worst - Peggiore - - - Threshold - Soglia - - - Empty JSON - JSON vuoto - - - The JSON is empty - Il JSON è vuoto - - - Save JSON - Salva JSON - - - JSON (*.json);;All Files (*) - JSON (*.json);;Tutti i file (*) - - - Unable to open file for writing - Impossibile aprire il file in scrittura - - - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Un visualizzatore dati S.M.A.R.T. ATA e NVMe per Linux - - - Licensed under the GNU G.P.L. Version 3 - Rilasciato con licenza GNU G.P.L. Versione 3 - - - Made by Samantas5855 - Realizzato da Samantas5855 - - - Version - Versione - - - About QDiskInfo - Informazioni su QDiskInfo - - - About Qt - Info su Qt - - - Clear &Settings - Cancella impo&stazioni - - - ASCII View - Vista ASCII - - - QDiskInfo Error - Errore QDiskInfo - - - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T! - - - Save Binary Data - Salva dati binari - - - Binary Files (*.bin);;All Files (*) - File binari (*.bin);;Tutti i file (*) - - - Success - Successo - - - Binary data saved successfully. - Dati binari salvati. - - - &Save (JSON) - &Salva (JSON) - - - Ctrl+T - Ctrl+T - - - Grid View - Vista griglia - - - Save (Image) - Salva (Immagine) - - - Save Image - Salva immagine - - - PNG Files (*.png) - File PNG (*.png) - - - - QObject - - QDiskInfo Error - Errore QDiskInfo - - - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T! - - - smartctl was not found, please install it! - smartctl non è stato trovato, è necessario installarlo! - - - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo ha bisogno di accesso root per interrompere un autotest! - - - Test Requested - Test richiesto - - - The self-test has been aborted - L'autotest è stato interrotto - - - Error: Something went wrong - Errore: qualcosa è andato storto - - - QDiskInfo needs root access in order to request a self-test! - QDiskInfo ha bisogno di accesso root per richiedere un autotest! - - - remaining - rimanenti - - - completed - completato - - - Test Already Running - Test già in esecuzione - - - A self-test is already being performed - Si sta già effettuando un autotest - - - You can press the Ok button in order to abort the test that is currently running - Premere il pulsante Ok per interrompere il test attualmente in esecuzione - - - A self-test has been requested successfully - Un autotest è stato richiesto con successo - - - It will be completed after - Sarà completato dopo - - - minutes - minuti - - - Clear Settings - Cancella impostazioni - - - Are you sure you want to clear the settings saved on disk? - Sicuri di voler cancellare le impostazioni salvate su disco? - - + + + GridView + + Grid View + Vista griglia + + + Search for a disk... + Cerca un disco... + + + + MainWindow + + QDiskInfo + QDiskInfo + + + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Stato di salute</p></body></html> + + + <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Good</span></p><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">100 %</span></p></body></html> + <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Buono</span></p><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">100 %</span></p></body></html> + + + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperatura</p></body></html> + + + <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">23° C</span></p></body></html> + <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">23° C</span></p></body></html> + + + Firmware + Firmware + + + Serial Number + Numero di serie + + + Protocol + Protocollo + + + Device Node + Nodo dispositivo + + + <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Good 100 %</span></p></body></html> + <html><head/><body><p align="center"><span style=" font-size:12pt; font-weight:700; color:#000000;">Buono 100 %</span></p></body></html> + + + Type + Tipo + + + Total Host Reads + Totale letture host + + + Total Host Writes + Totale scritture host + + + Rotation Rate + Tasso di rotazione + + + Power On Count + Conteggio accensioni + + + Power On Time + + + + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Nome disco</span></p></body></html> + + + File + File + + + Settings + Impostazioni + + + &Help + &Aiuto + + + De&vice + Dispositi&vo + + + Disk + Disco + + + &Quit + &Esci + + + &Refresh Devices + Aggio&rna dispositivi + + + &GitHub + &GitHub + + + &About QDiskInfo + &Info su QDiskInfo + + + &Ignore C4 (Reallocated Event Count) + &Ignora C4 (conteggio eventi di riallocazione) + + + &Convert Raw values to HEX + &Converti valori grezzi in HEX + + + &Use Fahrenheit + &Usa i Fahrenheit + + + &Use Human Readable Time + + + + Self Test + Autotest + + + Cyclic &Navigation + &Navigazione Ciclica + + + Use &GB instead of TB + Usa &GB invece di TB + + + About &Qt + Info su &Qt + + + Start Self Test + Avvia autotest + + + Self Test Log + Registro autotest + + + Critical Warning + Avviso critico + + + Grown Defect List + Elenco aumento difetti + + + Good + Buono + + + Caution + Attenzione + + + Bad + Cattivo + + + Unknown + Sconosciuto + + + Status + Stato + + + count + conteggio + + + hours + ore + + + years + + + + days + + + + Short + Breve + + + Conveyance + Trasporto + + + Extended + Esteso + + + Min.) + Min.) + + + Read + Lettura + + + Write + Scrittura + + + Verify + Verifica + + + ID + ID + + + Attribute Name + Nome attributo + + + Raw Values + Valori grezzi + + + Available spare capacity has fallen below the threshold + Lo spazio inutilizzato disponibile è sceso al di sotto della soglia + + + Temperature error (Overheat or Overcool) + Errore di temperatura (surriscaldamento o sovraraffreddamento) + + + NVM subsystem reliability has been degraded + L'affidabilità del sottosistema NVM è diminuita + + + Media has been placed in Read Only Mode + Il supporto è stato posto in modalità sola lettura + + + Volatile memory backup device has Failed + Il dispositivo di backup della memoria volatile ha fallito + + + Persistent memory region has become Read-Only + La regione della memoria persistente è diventata di sola lettura + + + Current + Corrente + + + Worst + Peggiore + + + Threshold + Soglia + + + Empty JSON + JSON vuoto + + + The JSON is empty + Il JSON è vuoto + + + Save JSON + Salva JSON + + + JSON (*.json);;All Files (*) + JSON (*.json);;Tutti i file (*) + + + Unable to open file for writing + Impossibile aprire il file in scrittura + + + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Un visualizzatore dati S.M.A.R.T. ATA e NVMe per Linux + + + Licensed under the GNU G.P.L. Version 3 + Rilasciato con licenza GNU G.P.L. Versione 3 + + + Made by Samantas5855 + Realizzato da Samantas5855 + + + Version + Versione + + + About QDiskInfo + Informazioni su QDiskInfo + + + About Qt + Info su Qt + + + Clear &Settings + Cancella impo&stazioni + + + ASCII View + Vista ASCII + + + QDiskInfo Error + Errore QDiskInfo + + + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T! + + + Save Binary Data + Salva dati binari + + + Binary Files (*.bin);;All Files (*) + File binari (*.bin);;Tutti i file (*) + + + Success + Successo + + + Binary data saved successfully. + Dati binari salvati. + + + &Save (JSON) + &Salva (JSON) + + + Ctrl+T + Ctrl+T + + + Grid View + Vista griglia + + + Save (Image) + Salva (Immagine) + + + Save Image + Salva immagine + + + PNG Files (*.png) + File PNG (*.png) + + + + QObject + + QDiskInfo Error + Errore QDiskInfo + + + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo ha bisogno di accesso root per leggere i dati S.M.A.R.T! + + + smartctl was not found, please install it! + smartctl non è stato trovato, è necessario installarlo! + + + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo ha bisogno di accesso root per interrompere un autotest! + + + Test Requested + Test richiesto + + + The self-test has been aborted + L'autotest è stato interrotto + + + Error: Something went wrong + Errore: qualcosa è andato storto + + + QDiskInfo needs root access in order to request a self-test! + QDiskInfo ha bisogno di accesso root per richiedere un autotest! + + + remaining + rimanenti + + + completed + completato + + + Test Already Running + Test già in esecuzione + + + A self-test is already being performed + Si sta già effettuando un autotest + + + You can press the Ok button in order to abort the test that is currently running + Premere il pulsante Ok per interrompere il test attualmente in esecuzione + + + A self-test has been requested successfully + Un autotest è stato richiesto con successo + + + It will be completed after + Sarà completato dopo + + + minutes + minuti + + + Clear Settings + Cancella impostazioni + + + Are you sure you want to clear the settings saved on disk? + Sicuri di voler cancellare le impostazioni salvate su disco? + + diff --git a/translations/qdiskinfo_ja_JP.ts b/translations/qdiskinfo_ja_JP.ts index 9b3a582..935208e 100644 --- a/translations/qdiskinfo_ja_JP.ts +++ b/translations/qdiskinfo_ja_JP.ts @@ -75,8 +75,8 @@ 電源投入回数 - Power On Hours - 動作時間 + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test セルフテスト @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_ko_KR.ts b/translations/qdiskinfo_ko_KR.ts index 7c0a26e..0792252 100644 --- a/translations/qdiskinfo_ko_KR.ts +++ b/translations/qdiskinfo_ko_KR.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_lv_LV.ts b/translations/qdiskinfo_lv_LV.ts index 51c1dcc..8198360 100644 --- a/translations/qdiskinfo_lv_LV.ts +++ b/translations/qdiskinfo_lv_LV.ts @@ -75,8 +75,8 @@ Ieslēgšanu skaits - Power On Hours - Darbojies + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Temperatūra Fārenheita grādos + + &Use Human Readable Time + + Self Test Pašpārbaude @@ -190,6 +194,14 @@ hours stundas + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_nl_NL.ts b/translations/qdiskinfo_nl_NL.ts index 71b8659..6f62591 100644 --- a/translations/qdiskinfo_nl_NL.ts +++ b/translations/qdiskinfo_nl_NL.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_no_NO.ts b/translations/qdiskinfo_no_NO.ts index 28a5b62..577806e 100644 --- a/translations/qdiskinfo_no_NO.ts +++ b/translations/qdiskinfo_no_NO.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_pl_PL.ts b/translations/qdiskinfo_pl_PL.ts index 2c262c4..75ca0bc 100644 --- a/translations/qdiskinfo_pl_PL.ts +++ b/translations/qdiskinfo_pl_PL.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_pt_BR.ts b/translations/qdiskinfo_pt_BR.ts index c7e29d5..468f606 100644 --- a/translations/qdiskinfo_pt_BR.ts +++ b/translations/qdiskinfo_pt_BR.ts @@ -75,8 +75,8 @@ Nº de Vezes Ligado - Power On Hours - Nº de Horas Ligado + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Usar Fahrenheit + + &Use Human Readable Time + + Self Test Auto Teste @@ -190,6 +194,14 @@ hours horas + + years + + + + days + + Short Rápido diff --git a/translations/qdiskinfo_pt_PT.ts b/translations/qdiskinfo_pt_PT.ts index 502def6..18e514a 100644 --- a/translations/qdiskinfo_pt_PT.ts +++ b/translations/qdiskinfo_pt_PT.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_ro_RO.ts b/translations/qdiskinfo_ro_RO.ts index 4b03f9e..8aea541 100644 --- a/translations/qdiskinfo_ro_RO.ts +++ b/translations/qdiskinfo_ro_RO.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_ru_RU.ts b/translations/qdiskinfo_ru_RU.ts index d3fca09..9978309 100644 --- a/translations/qdiskinfo_ru_RU.ts +++ b/translations/qdiskinfo_ru_RU.ts @@ -75,8 +75,8 @@ Количество включений - Power On Hours - Время работы + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Температура в Фаренгейтах + + &Use Human Readable Time + + Self Test Самотестирование @@ -190,6 +194,14 @@ hours часов + + years + + + + days + + Short Коротко diff --git a/translations/qdiskinfo_sr_SP.ts b/translations/qdiskinfo_sr_SP.ts index fa54bcc..6350d69 100644 --- a/translations/qdiskinfo_sr_SP.ts +++ b/translations/qdiskinfo_sr_SP.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_sv_SE.ts b/translations/qdiskinfo_sv_SE.ts index ab5f1b0..f612362 100644 --- a/translations/qdiskinfo_sv_SE.ts +++ b/translations/qdiskinfo_sv_SE.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_th_TH.ts b/translations/qdiskinfo_th_TH.ts index 7a7b953..268d5a3 100644 --- a/translations/qdiskinfo_th_TH.ts +++ b/translations/qdiskinfo_th_TH.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_tr_TR.ts b/translations/qdiskinfo_tr_TR.ts index 1e45a6a..2d554ea 100644 --- a/translations/qdiskinfo_tr_TR.ts +++ b/translations/qdiskinfo_tr_TR.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_uk_UA.ts b/translations/qdiskinfo_uk_UA.ts index e9e9752..b755ad6 100644 --- a/translations/qdiskinfo_uk_UA.ts +++ b/translations/qdiskinfo_uk_UA.ts @@ -75,8 +75,8 @@ Кількість вмикань - Power On Hours - Час роботи + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Температура в Фаренгейтах + + &Use Human Readable Time + + Self Test Самотестування @@ -190,6 +194,14 @@ hours годин + + years + + + + days + + Short Коротко diff --git a/translations/qdiskinfo_vi_VN.ts b/translations/qdiskinfo_vi_VN.ts index cd80167..5caced9 100644 --- a/translations/qdiskinfo_vi_VN.ts +++ b/translations/qdiskinfo_vi_VN.ts @@ -75,8 +75,8 @@ Power On Count - Power On Hours - Power On Hours + Power On Time + Power On Time <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &Use Fahrenheit + + &Use Human Readable Time + + Self Test Self Test @@ -190,6 +194,14 @@ hours hours + + years + + + + days + + Short Short diff --git a/translations/qdiskinfo_zh_CN.ts b/translations/qdiskinfo_zh_CN.ts index 4fa9aa1..60b1860 100644 --- a/translations/qdiskinfo_zh_CN.ts +++ b/translations/qdiskinfo_zh_CN.ts @@ -75,8 +75,8 @@ 通电次数 - Power On Hours - 通电时间 + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit 使用华氏度 (&U) + + &Use Human Readable Time + + Self Test 自检 @@ -190,6 +194,14 @@ hours 小时 + + years + + + + days + + Short 短 (Short) diff --git a/translations/qdiskinfo_zh_TW.ts b/translations/qdiskinfo_zh_TW.ts index 37524b4..8ed47e2 100644 --- a/translations/qdiskinfo_zh_TW.ts +++ b/translations/qdiskinfo_zh_TW.ts @@ -75,8 +75,8 @@ 通電次數 - Power On Hours - 通電時間 + Power On Time + <html><head/><body><p align="center"><span style=" font-size:14pt; font-weight:700;">Hard Drive Name</span></p></body></html> @@ -130,6 +130,10 @@ &Use Fahrenheit &使用 華氏溫度 + + &Use Human Readable Time + + Self Test 自我檢測 @@ -190,6 +194,14 @@ hours 小時 + + years + + + + days + + Short