From e998352834a9b96963bac6a6647d82bad9d9b387 Mon Sep 17 00:00:00 2001 From: Spiros Date: Fri, 30 May 2025 23:40:32 +0300 Subject: [PATCH] Fix QT5 compilation errors --- src/asciiview.cpp | 16 +- src/gridview.cpp | 2 +- translations/qdiskinfo_af_ZA.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_ar_SA.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_ca_ES.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_cs_CZ.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_da_DK.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_de_DE.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_el_GR.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_en_US.ts | 4 - translations/qdiskinfo_es_ES.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_fi_FI.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_fr_FR.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_he_IL.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_hu_HU.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_it_IT.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_ja_JP.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_ko_KR.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_lv_LV.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_nl_NL.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_no_NO.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_pl_PL.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_pt_BR.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_pt_PT.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_ro_RO.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_ru_RU.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_sr_SP.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_sv_SE.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_th_TH.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_tr_TR.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_uk_UA.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_vi_VN.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_zh_CN.ts | 448 ++++++++++++++++---------------- translations/qdiskinfo_zh_TW.ts | 448 ++++++++++++++++---------------- 34 files changed, 6897 insertions(+), 7013 deletions(-) diff --git a/src/asciiview.cpp b/src/asciiview.cpp index d8747b9..1a5dd18 100644 --- a/src/asciiview.cpp +++ b/src/asciiview.cpp @@ -4,6 +4,7 @@ #include #include #include +#include QVector AsciiView::readSMARTData(const QString& device_path) { int fd; @@ -14,7 +15,12 @@ QVector AsciiView::readSMARTData(const QString& device_path) { unsigned char sense_buffer[SENSE_BUFFER_LEN]; sg_io_hdr_t io_hdr; QVector result; + fd = open(device_path.toStdString().c_str(), O_RDONLY); + if (fd < 0) { + return result; + } + memset(&io_hdr, 0, sizeof(sg_io_hdr_t)); io_hdr.interface_id = 'S'; io_hdr.cmd_len = SMART_READ_CMD_LEN; @@ -28,9 +34,11 @@ QVector AsciiView::readSMARTData(const QString& device_path) { if (ioctl(fd, SG_IO, &io_hdr) < 0) { close(fd); + return result; } - result.append(QArrayDataPointer::fromRawData(smart_read_resp, SMART_READ_RESP_LEN)); + result.resize(SMART_READ_RESP_LEN); + memcpy(result.data(), smart_read_resp, SMART_READ_RESP_LEN); memset(&io_hdr, 0, sizeof(sg_io_hdr_t)); io_hdr.interface_id = 'S'; @@ -45,9 +53,13 @@ QVector AsciiView::readSMARTData(const QString& device_path) { if (ioctl(fd, SG_IO, &io_hdr) < 0) { close(fd); + return result; } - result.append(QArrayDataPointer::fromRawData(inquiry_resp, INQUIRY_RESP_LEN)); + int currentSize = result.size(); + result.resize(currentSize + INQUIRY_RESP_LEN); + memcpy(result.data() + currentSize, inquiry_resp, INQUIRY_RESP_LEN); + close(fd); return result; } diff --git a/src/gridview.cpp b/src/gridview.cpp index f2c929f..7602dcc 100644 --- a/src/gridview.cpp +++ b/src/gridview.cpp @@ -58,7 +58,7 @@ void GridView::resizeEvent(QResizeEvent *) { } void GridView::setDisks(const QVector &newDisks) { - disks = newDisks; + disks = newDisks.toList(); populateGrid(); } diff --git a/translations/qdiskinfo_af_ZA.ts b/translations/qdiskinfo_af_ZA.ts index 05d1527..3c16984 100644 --- a/translations/qdiskinfo_af_ZA.ts +++ b/translations/qdiskinfo_af_ZA.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_ar_SA.ts b/translations/qdiskinfo_ar_SA.ts index bd57695..f126163 100644 --- a/translations/qdiskinfo_ar_SA.ts +++ b/translations/qdiskinfo_ar_SA.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_ca_ES.ts b/translations/qdiskinfo_ca_ES.ts index 92722bc..8fffbc5 100644 --- a/translations/qdiskinfo_ca_ES.ts +++ b/translations/qdiskinfo_ca_ES.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_cs_CZ.ts b/translations/qdiskinfo_cs_CZ.ts index 194af3c..9c91fcc 100644 --- a/translations/qdiskinfo_cs_CZ.ts +++ b/translations/qdiskinfo_cs_CZ.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_da_DK.ts b/translations/qdiskinfo_da_DK.ts index a79032a..184bb73 100644 --- a/translations/qdiskinfo_da_DK.ts +++ b/translations/qdiskinfo_da_DK.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_de_DE.ts b/translations/qdiskinfo_de_DE.ts index 353dfe5..68b2f8d 100644 --- a/translations/qdiskinfo_de_DE.ts +++ b/translations/qdiskinfo_de_DE.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Gesundheitsstatus</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Gesundheitsstatus</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;">Gut</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;">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;">Gut</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">Temperatur</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperatur</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> + <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 + Firmware + Firmware - Serial Number - Seriennummer + Serial Number + Seriennummer - Protocol - Protokoll + Protocol + Protokoll - Device Node - Geräteknoten + Device Node + Geräteknoten - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Art + Type + Art - Total Host Reads - Gesamte Lesezugriffe + Total Host Reads + Gesamte Lesezugriffe - Total Host Writes - Gesamte Schreibzugriffe + Total Host Writes + Gesamte Schreibzugriffe - Rotation Rate - Drehrate + Rotation Rate + Drehrate - Power On Count - Anzahl der Einschaltungen + Power On Count + Anzahl der Einschaltungen - Power On Hours - Betriebsstunden + Power On Hours + Betriebsstunden - <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;">Festplatten Name</span></p></body></html> + <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;">Festplatten Name</span></p></body></html> - File - Datei + File + Datei - Settings - Einstellungen + Settings + Einstellungen - &Help - &Hilfe + &Help + &Hilfe - De&vice - Gerät + De&vice + Gerät - Disk - Festplatte + Disk + Festplatte - &Quit - &Beenden + &Quit + &Beenden - &Refresh Devices - &Geräte neu laden + &Refresh Devices + &Geräte neu laden - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &Über QDiskInfo + &About QDiskInfo + &Über QDiskInfo - &Ignore C4 (Reallocated Event Count) - C4 ignorieren (neu zugewiesene Ereignisanzahl) + &Ignore C4 (Reallocated Event Count) + C4 ignorieren (neu zugewiesene Ereignisanzahl) - &Convert Raw values to HEX - &Rohwert nach HEX konvertieren + &Convert Raw values to HEX + &Rohwert nach HEX konvertieren - &Use Fahrenheit - &Fahrenheit benutzen + &Use Fahrenheit + &Fahrenheit benutzen - Self Test - Selbsttest + Self Test + Selbsttest - Cyclic &Navigation - Zyklische &Navigation + Cyclic &Navigation + Zyklische &Navigation - Use &GB instead of TB - &GB statt TB benutzen + Use &GB instead of TB + &GB statt TB benutzen - About &Qt - Über &Qt + About &Qt + Über &Qt - Start Self Test - Selbsttest starten + Start Self Test + Selbsttest starten - Self Test Log - Selbsttest Log + Self Test Log + Selbsttest Log - Critical Warning - Kritische Warnung + Critical Warning + Kritische Warnung - Grown Defect List - Gewachsene Defekt Liste + Grown Defect List + Gewachsene Defekt Liste - Good - Gut + Good + Gut - Caution - Vorsicht + Caution + Vorsicht - Bad - Schlecht + Bad + Schlecht - Unknown - Unbekannt + Unknown + Unbekannt - Status - Status + Status + Status - count - Anzahl + count + Anzahl - hours - Stunden + hours + Stunden - Short - Kurz + Short + Kurz - Conveyance - Übermittlung + Conveyance + Übermittlung - Extended - Erweitert + Extended + Erweitert - Min.) - Min.) + Min.) + Min.) - Read - Lesen + Read + Lesen - Write - Schreiben + Write + Schreiben - Verify - Verifizieren + Verify + Verifizieren - ID - ID + ID + ID - Attribute Name - Attributname + Attribute Name + Attributname - Raw Values - Rohwerte + Raw Values + Rohwerte - Available spare capacity has fallen below the threshold - Die verfügbaren Kapazitätsreserven sind unter den Schwellenwert gefallen + Available spare capacity has fallen below the threshold + Die verfügbaren Kapazitätsreserven sind unter den Schwellenwert gefallen - Temperature error (Overheat or Overcool) - Temperaturfehler (Überhitzung oder Unterkühlung) + Temperature error (Overheat or Overcool) + Temperaturfehler (Überhitzung oder Unterkühlung) - NVM subsystem reliability has been degraded - Die Zuverlässigkeit des NVM Untersystems ist gesunken + NVM subsystem reliability has been degraded + Die Zuverlässigkeit des NVM Untersystems ist gesunken - Media has been placed in Read Only Mode - Medium wurde in den nur-Lesen Modus versetzt + Media has been placed in Read Only Mode + Medium wurde in den nur-Lesen Modus versetzt - Volatile memory backup device has Failed - Sicherungsgerät mit flüchtigem Speicher ist ausgefallen + Volatile memory backup device has Failed + Sicherungsgerät mit flüchtigem Speicher ist ausgefallen - Persistent memory region has become Read-Only - Dauerhafte Speicherregion wurde schreibgeschützt + Persistent memory region has become Read-Only + Dauerhafte Speicherregion wurde schreibgeschützt - Current - Momentan + Current + Momentan - Worst - Am schlechtesten + Worst + Am schlechtesten - Threshold - Schwellenwert + Threshold + Schwellenwert - Empty JSON - Leeres JSON + Empty JSON + Leeres JSON - The JSON is empty - Das JSON ist leer + The JSON is empty + Das JSON ist leer - Save JSON - Als JSON speichern + Save JSON + Als JSON speichern - JSON (*.json);;All Files (*) - JSON (*.json);;Alle Dateien (*) + JSON (*.json);;All Files (*) + JSON (*.json);;Alle Dateien (*) - Unable to open file for writing - Konnte Datei nicht zum Schreiben öffnen + Unable to open file for writing + Konnte Datei nicht zum Schreiben öffnen - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Eine ATA und NVMe S.M.A.R.T. Datenanzeige für Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Eine ATA und NVMe S.M.A.R.T. Datenanzeige für Linux - Licensed under the GNU G.P.L. Version 3 - Lizenziert unter der GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Lizenziert unter der GNU G.P.L. Version 3 - Made by Samantas5855 - Erstellt von Samantas5855 + Made by Samantas5855 + Erstellt von Samantas5855 - Version - Version + Version + Version - About QDiskInfo - Über QDiskInfo + About QDiskInfo + Über QDiskInfo - About Qt - Über Qt + About Qt + Über Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Fehler + QDiskInfo Error + QDiskInfo Fehler - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Als JSON speichern - - - + + QObject - QDiskInfo Error - QDiskInfo Fehler + QDiskInfo Error + QDiskInfo Fehler - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo benötigt Rootzugriff um S.M.A.R.T. Daten zu lesen! - smartctl was not found, please install it! - smartctl wurde nicht gefunden, bitte installiere es! + smartctl was not found, please install it! + smartctl wurde nicht gefunden, bitte installiere es! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo benötigt Rootzugriff um einen Selbsttest abzubrechen! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo benötigt Rootzugriff um einen Selbsttest abzubrechen! - Test Requested - Test angefragt + Test Requested + Test angefragt - The self-test has been aborted - Der Selbsttest wurde abgebrochen + The self-test has been aborted + Der Selbsttest wurde abgebrochen - Error: Something went wrong - Fehler: Etwas ging schief + Error: Something went wrong + Fehler: Etwas ging schief - QDiskInfo needs root access in order to request a self-test! - QDiskInfo benötigt Rootzugriff um einen Selbsttest anzufragen! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo benötigt Rootzugriff um einen Selbsttest anzufragen! - remaining - übrig + remaining + übrig - completed - vollendet + completed + vollendet - Test Already Running - Test läuft bereits + Test Already Running + Test läuft bereits - A self-test is already being performed - Ein Selbsttest läuft bereits + A self-test is already being performed + Ein Selbsttest läuft bereits - You can press the Ok button in order to abort the test that is currently running - Du kannst den Ok Knopf drücken, um den Test abzubrechen + You can press the Ok button in order to abort the test that is currently running + Du kannst den Ok Knopf drücken, um den Test abzubrechen - A self-test has been requested successfully - Ein Selbsttest wurde erfolgreich in Auftrag gegeben + A self-test has been requested successfully + Ein Selbsttest wurde erfolgreich in Auftrag gegeben - It will be completed after - Er wird fertig sein nach + It will be completed after + Er wird fertig sein nach - minutes - Minuten + minutes + Minuten - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_el_GR.ts b/translations/qdiskinfo_el_GR.ts index dc78f55..d2acaa4 100644 --- a/translations/qdiskinfo_el_GR.ts +++ b/translations/qdiskinfo_el_GR.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Κατάστ. Υγειας</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Κατάστ. Υγειας</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Θερμοκρασία</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Θερμοκρασία</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> + <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 - Σειριακός Αριθμός + Serial Number + Σειριακός Αριθμός - Protocol - Πρωτόκολλο + Protocol + Πρωτόκολλο - Device Node - Διαδρομή + Device Node + Διαδρομή - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Τύπος + Type + Τύπος - Total Host Reads - Συνολικές Αναγνώσεις + Total Host Reads + Συνολικές Αναγνώσεις - Total Host Writes - Συνολικές Εγγραφές + Total Host Writes + Συνολικές Εγγραφές - Rotation Rate - Ρυθμός Περιστροφής + Rotation Rate + Ρυθμός Περιστροφής - Power On Count - Μετρητής Λειτουργίας + Power On Count + Μετρητής Λειτουργίας - Power On Hours - Ώρες Λειτουργίας + Power On Hours + Ώρες Λειτουργίας - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - &Αρχείο + File + &Αρχείο - Settings - &Ρυθμίσεις + Settings + &Ρυθμίσεις - &Help - &Βοήθεια + &Help + &Βοήθεια - De&vice - &Συσκευή + De&vice + &Συσκευή - Disk - &Δίσκος + Disk + &Δίσκος - &Quit - Έ&ξοδος + &Quit + Έ&ξοδος - &Refresh Devices - &Ανανέωση Συσκευών + &Refresh Devices + &Ανανέωση Συσκευών - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - Σχετικά με το &QDiskInfo + &About QDiskInfo + Σχετικά με το &QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Αγνόησε το C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Αγνόησε το C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Μετατροπή των τιμών σε δεκαεξαδικές + &Convert Raw values to HEX + &Μετατροπή των τιμών σε δεκαεξαδικές - &Use Fahrenheit - Χρήση &Fahrenheit + &Use Fahrenheit + Χρήση &Fahrenheit - Self Test - Αυτοδιάγνωση + Self Test + Αυτοδιάγνωση - Cyclic &Navigation - &Κυκλική Πλοήγηση + Cyclic &Navigation + &Κυκλική Πλοήγηση - Use &GB instead of TB - Χρήση &GB αντί για TB + Use &GB instead of TB + Χρήση &GB αντί για TB - About &Qt - Σχετικά με το &Qt + About &Qt + Σχετικά με το &Qt - Start Self Test - &Εκκίνηση Αυτοδιάγνωσης + Start Self Test + &Εκκίνηση Αυτοδιάγνωσης - Self Test Log - &Καταγραφολόγιο Αυτοδιάγνωσης + Self Test Log + &Καταγραφολόγιο Αυτοδιάγνωσης - Critical Warning - Σημαντική Προειδοποίηση + Critical Warning + Σημαντική Προειδοποίηση - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Καλή + Good + Καλή - Caution - Προσοχή + Caution + Προσοχή - Bad - Κακή + Bad + Κακή - Unknown - Άγνωστη + Unknown + Άγνωστη - Status - Κατάσταση + Status + Κατάσταση - count - μονάδες + count + μονάδες - hours - ώρες + hours + ώρες - Short - Σύντομο + Short + Σύντομο - Conveyance - Μεταφορά + Conveyance + Μεταφορά - Extended - Εμπεριστατωμένο + Extended + Εμπεριστατωμένο - Min.) - Λεπ.) + Min.) + Λεπ.) - Read - Ανάγνωση + Read + Ανάγνωση - Write - Εγγραφή + Write + Εγγραφή - Verify - Επαλήθευση + Verify + Επαλήθευση - ID - ID + ID + ID - Attribute Name - Ιδιότητα + Attribute Name + Ιδιότητα - Raw Values - Τιμή + Raw Values + Τιμή - Available spare capacity has fallen below the threshold - Η υγεία του δίσκου έχει πέσει κάτω από το όριο + Available spare capacity has fallen below the threshold + Η υγεία του δίσκου έχει πέσει κάτω από το όριο - Temperature error (Overheat or Overcool) - Σφάλμα θερμοκρασίας (Υπερθέρμανση ή Υπερψύξη) + Temperature error (Overheat or Overcool) + Σφάλμα θερμοκρασίας (Υπερθέρμανση ή Υπερψύξη) - NVM subsystem reliability has been degraded - Η αξιοπιστία του NVMe έχει μειωθεί + NVM subsystem reliability has been degraded + Η αξιοπιστία του NVMe έχει μειωθεί - Media has been placed in Read Only Mode - Το μέσο έχει τεθεί αποκλειστικά σε λειτουργία ανάγνωσης + Media has been placed in Read Only Mode + Το μέσο έχει τεθεί αποκλειστικά σε λειτουργία ανάγνωσης - Volatile memory backup device has Failed - Η δημιουργία αρχείου επαναφοράς της μη διατηρήσιμης μνήμης απέτυχε + Volatile memory backup device has Failed + Η δημιουργία αρχείου επαναφοράς της μη διατηρήσιμης μνήμης απέτυχε - Persistent memory region has become Read-Only - Η διατηρήσιμη μνήμη έχει μεταβεί αποκλειστικά σε λειτουργία ανάγνωσης + Persistent memory region has become Read-Only + Η διατηρήσιμη μνήμη έχει μεταβεί αποκλειστικά σε λειτουργία ανάγνωσης - Current - Τρέχουσα + Current + Τρέχουσα - Worst - Χειρότερη + Worst + Χειρότερη - Threshold - Όριο + Threshold + Όριο - Empty JSON - Κενό JSON + Empty JSON + Κενό JSON - The JSON is empty - Αυτό το JSON είναι κενό + The JSON is empty + Αυτό το JSON είναι κενό - Save JSON - Αποθήκευση JSON + Save JSON + Αποθήκευση JSON - JSON (*.json);;All Files (*) - JSON (*.json);;;Όλα τα αρχεία (*) + JSON (*.json);;All Files (*) + JSON (*.json);;;Όλα τα αρχεία (*) - Unable to open file for writing - Δεν είναι δυνατό το άνοιγμα αυτού του αρχείου για εγγραφή + Unable to open file for writing + Δεν είναι δυνατό το άνοιγμα αυτού του αρχείου για εγγραφή - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Ένας αναγνώστης S.M.A.R.T. για τα Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Ένας αναγνώστης S.M.A.R.T. για τα Linux - Licensed under the GNU G.P.L. Version 3 - Διατίθεται υπό την άδεια GNU G.P.L. Έκδοση 3 + Licensed under the GNU G.P.L. Version 3 + Διατίθεται υπό την άδεια GNU G.P.L. Έκδοση 3 - Made by Samantas5855 - Δημιουργήθηκε από τον Samantas5855 + Made by Samantas5855 + Δημιουργήθηκε από τον Samantas5855 - Version - Έκδοση + Version + Έκδοση - About QDiskInfo - Σχετικά με το QDiskInfo + About QDiskInfo + Σχετικά με το QDiskInfo - About Qt - Σχετικά με το Qt + About Qt + Σχετικά με το Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - Σφάλμα QDiskInfo + QDiskInfo Error + Σφάλμα QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - Αποθήκευση &JSON - - - + + QObject - QDiskInfo Error - Σφάλμα QDiskInfo + QDiskInfo Error + Σφάλμα QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να προσπελάσει τα δεδομένα S.M.A.R.T.! - smartctl was not found, please install it! - Το smartctl δε βρέθηκε, παρακαλείσθε να το εγκαταστήσετε! + smartctl was not found, please install it! + Το smartctl δε βρέθηκε, παρακαλείσθε να το εγκαταστήσετε! - QDiskInfo needs root access in order to abort a self-test! - Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να ακυρώσει μία αυτοδιάγνωση! + QDiskInfo needs root access in order to abort a self-test! + Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να ακυρώσει μία αυτοδιάγνωση! - Test Requested - Η αυτοδιάγνωση ξεκίνησε + Test Requested + Η αυτοδιάγνωση ξεκίνησε - The self-test has been aborted - Η τρέχουσα αυτοδιάγνωση ακυρώθηκε + The self-test has been aborted + Η τρέχουσα αυτοδιάγνωση ακυρώθηκε - Error: Something went wrong - Σφάλμα: Κάτι πήγε στραβά + Error: Something went wrong + Σφάλμα: Κάτι πήγε στραβά - QDiskInfo needs root access in order to request a self-test! - Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να εκτελέσει την αυτοδιάγνωση! + QDiskInfo needs root access in order to request a self-test! + Το QDiskInfo χρειάζεται δικαιώματα υπερχρήστη για να εκτελέσει την αυτοδιάγνωση! - remaining - απομένει + remaining + απομένει - completed - ολοκληρώθηκε + completed + ολοκληρώθηκε - Test Already Running - Μία αυτοδιάγνωση είναι ήδη σε εκτέλεση + Test Already Running + Μία αυτοδιάγνωση είναι ήδη σε εκτέλεση - A self-test is already being performed - Μία αυτοδιάγνωση εκτελείτε αυτή τη στιγμή + A self-test is already being performed + Μία αυτοδιάγνωση εκτελείτε αυτή τη στιγμή - You can press the Ok button in order to abort the test that is currently running - Μπορείτε να πατήσετε το κουμπί Εντάξει για να ακυρώσετε την τρέχουσα αυτοδιάγνωση + You can press the Ok button in order to abort the test that is currently running + Μπορείτε να πατήσετε το κουμπί Εντάξει για να ακυρώσετε την τρέχουσα αυτοδιάγνωση - A self-test has been requested successfully - Η αυτοδιάγνωση ξεκίνησε επιτυχώς + A self-test has been requested successfully + Η αυτοδιάγνωση ξεκίνησε επιτυχώς - It will be completed after - Θα τελειώσει μετά από + It will be completed after + Θα τελειώσει μετά από - minutes - λεπτά + minutes + λεπτά - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_en_US.ts b/translations/qdiskinfo_en_US.ts index 0a6ad00..ec03504 100644 --- a/translations/qdiskinfo_en_US.ts +++ b/translations/qdiskinfo_en_US.ts @@ -366,10 +366,6 @@ PNG Files (*.png) - - &Save JSON - - QObject diff --git a/translations/qdiskinfo_es_ES.ts b/translations/qdiskinfo_es_ES.ts index 45f33ff..46ba68d 100644 --- a/translations/qdiskinfo_es_ES.ts +++ b/translations/qdiskinfo_es_ES.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Estado</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Estado</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;">Bueno</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;">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;">Bueno</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">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> + <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 + Firmware + Firmware - Serial Number - Número de Serie + Serial Number + Número de Serie - Protocol - Protocolo + Protocol + Protocolo - Device Node - Archivo de Dispositivo + Device Node + Archivo de 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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Tipo + Type + Tipo - Total Host Reads - Lecturas Totales + Total Host Reads + Lecturas Totales - Total Host Writes - Escrituras Totales + Total Host Writes + Escrituras Totales - Rotation Rate - Velocidad Rotacional + Rotation Rate + Velocidad Rotacional - Power On Count - Veces Encendido + Power On Count + Veces Encendido - Power On Hours - Horas Encendido + Power On Hours + Horas Encendido - <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;">Nombre del Disco</span></p></body></html> + <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;">Nombre del Disco</span></p></body></html> - File - Archivo + File + Archivo - Settings - Ajustes + Settings + Ajustes - &Help - Ayuda + &Help + Ayuda - De&vice - Dispositi&vo + De&vice + Dispositi&vo - Disk - Disco + Disk + Disco - &Quit - Salir + &Quit + Salir - &Refresh Devices - Actualizar Dispositivos + &Refresh Devices + Actualizar Dispositivos - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - Acerca de &QDiskInfo + &About QDiskInfo + Acerca de &QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignorar C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignorar C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convertir valores en Bruto a HEX + &Convert Raw values to HEX + &Convertir valores en Bruto a HEX - &Use Fahrenheit - &Usar Fahrenheit + &Use Fahrenheit + &Usar Fahrenheit - Self Test - Ejecutar Autotest + Self Test + Ejecutar Autotest - Cyclic &Navigation - &Navegación Cíclica + Cyclic &Navigation + &Navegación Cíclica - Use &GB instead of TB - Usar &GB en lugar de TB + Use &GB instead of TB + Usar &GB en lugar de TB - About &Qt - Acerca de &Qt + About &Qt + Acerca de &Qt - Start Self Test - Iniciar Autotest + Start Self Test + Iniciar Autotest - Self Test Log - Registro del Autotest + Self Test Log + Registro del Autotest - Critical Warning - Aviso Importante + Critical Warning + Aviso Importante - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Bueno + Good + Bueno - Caution - Precaución + Caution + Precaución - Bad - Malo + Bad + Malo - Unknown - Desconocido + Unknown + Desconocido - Status - Estado + Status + Estado - count - veces + count + veces - hours - horas + hours + horas - Short - Corto + Short + Corto - Conveyance - Transferencia + Conveyance + Transferencia - Extended - Extendido + Extended + Extendido - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Nombre del Atributo + Attribute Name + Nombre del Atributo - Raw Values - Valores en Bruto + Raw Values + Valores en Bruto - Available spare capacity has fallen below the threshold - El espacio libre disponible ha caído por debajo del umbral + Available spare capacity has fallen below the threshold + El espacio libre disponible ha caído por debajo del umbral - Temperature error (Overheat or Overcool) - Error de temperatura (Sobrecalentado o Sobre-enfriado) + Temperature error (Overheat or Overcool) + Error de temperatura (Sobrecalentado o Sobre-enfriado) - NVM subsystem reliability has been degraded - La fiabilidad del subsitema NVM se ha degradado + NVM subsystem reliability has been degraded + La fiabilidad del subsitema NVM se ha degradado - Media has been placed in Read Only Mode - El medio se ha configurado en Modo de Solo Lectura + Media has been placed in Read Only Mode + El medio se ha configurado en Modo de Solo Lectura - Volatile memory backup device has Failed - No se pudo crear el archivo de reversión de memoria no volátil + Volatile memory backup device has Failed + No se pudo crear el archivo de reversión de memoria no volátil - Persistent memory region has become Read-Only - Una región de memoria no volátil se ha vuelto de Solo Lectura + Persistent memory region has become Read-Only + Una región de memoria no volátil se ha vuelto de Solo Lectura - Current - Actual + Current + Actual - Worst - Peor + Worst + Peor - Threshold - Umbral + Threshold + Umbral - Empty JSON - Archivo JSON vacío + Empty JSON + Archivo JSON vacío - The JSON is empty - El archivo JSON está vacío + The JSON is empty + El archivo JSON está vacío - Save JSON - Guardar archivo JSON + Save JSON + Guardar archivo JSON - JSON (*.json);;All Files (*) - JSON (*.json);;Todos los archivos (*) + JSON (*.json);;All Files (*) + JSON (*.json);;Todos los archivos (*) - Unable to open file for writing - No se ha podido abrir el archivo de escritura + Unable to open file for writing + No se ha podido abrir el archivo de escritura - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Un visor de datos S.M.A.R.T. para ATA y NVMe + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Un visor de datos S.M.A.R.T. para ATA y NVMe - Licensed under the GNU G.P.L. Version 3 - Licenciado bajo Licencia Pública General de GNU, Versión 3 + Licensed under the GNU G.P.L. Version 3 + Licenciado bajo Licencia Pública General de GNU, Versión 3 - Made by Samantas5855 - Hecho por Samantas5855 + Made by Samantas5855 + Hecho por Samantas5855 - Version - Versión + Version + Versión - About QDiskInfo - Acerca de QDiskInfo + About QDiskInfo + Acerca de QDiskInfo - About Qt - Acerca de Qt + About Qt + Acerca de Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - Error de QDiskInfo + QDiskInfo Error + Error de QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - ¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + ¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - Guardar Archivo JSON - - - + + QObject - QDiskInfo Error - Error de QDiskInfo + QDiskInfo Error + Error de QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - ¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + ¡QDiskInfo necesita acceso root para poder leer información S.M.A.R.T! - smartctl was not found, please install it! - smartctl no ha sido encontrado. ¡Por favor, instálalo! + smartctl was not found, please install it! + smartctl no ha sido encontrado. ¡Por favor, instálalo! - QDiskInfo needs root access in order to abort a self-test! - ¡QDiskInfo necesita acceso root para poder abortar un autotest! + QDiskInfo needs root access in order to abort a self-test! + ¡QDiskInfo necesita acceso root para poder abortar un autotest! - Test Requested - Autotest Solicitado + Test Requested + Autotest Solicitado - The self-test has been aborted - El autotest ha sido abortado + The self-test has been aborted + El autotest ha sido abortado - Error: Something went wrong - Error: Algo ha salido mal + Error: Something went wrong + Error: Algo ha salido mal - QDiskInfo needs root access in order to request a self-test! - ¡QDiskInfo necesita acceso root para poder solicitar un autotest! + QDiskInfo needs root access in order to request a self-test! + ¡QDiskInfo necesita acceso root para poder solicitar un autotest! - remaining - restante + remaining + restante - completed - completado + completed + completado - Test Already Running - Autotest ya ejecutándose + Test Already Running + Autotest ya ejecutándose - A self-test is already being performed - Un autotest ya está siendo realizado + A self-test is already being performed + Un autotest ya está siendo realizado - You can press the Ok button in order to abort the test that is currently running - Puedes pulsar el botón 'Aceptar' para abortar el test que se está realizando + You can press the Ok button in order to abort the test that is currently running + Puedes pulsar el botón 'Aceptar' para abortar el test que se está realizando - A self-test has been requested successfully - El autotest ha sido solicitado exitosamente + A self-test has been requested successfully + El autotest ha sido solicitado exitosamente - It will be completed after - Se completará en + It will be completed after + Se completará en - minutes - minutos + minutes + minutos - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_fi_FI.ts b/translations/qdiskinfo_fi_FI.ts index 1896122..a7ccf78 100644 --- a/translations/qdiskinfo_fi_FI.ts +++ b/translations/qdiskinfo_fi_FI.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_fr_FR.ts b/translations/qdiskinfo_fr_FR.ts index 454e3af..5b55f25 100644 --- a/translations/qdiskinfo_fr_FR.ts +++ b/translations/qdiskinfo_fr_FR.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_he_IL.ts b/translations/qdiskinfo_he_IL.ts index 34fc77f..4ef0dbe 100644 --- a/translations/qdiskinfo_he_IL.ts +++ b/translations/qdiskinfo_he_IL.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_hu_HU.ts b/translations/qdiskinfo_hu_HU.ts index 1c2532c..8567545 100644 --- a/translations/qdiskinfo_hu_HU.ts +++ b/translations/qdiskinfo_hu_HU.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_it_IT.ts b/translations/qdiskinfo_it_IT.ts index 8b132c0..a8dad51 100644 --- a/translations/qdiskinfo_it_IT.ts +++ b/translations/qdiskinfo_it_IT.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + 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">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"><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">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> + <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 + Firmware + Firmware - Serial Number - Numero di serie + Serial Number + Numero di serie - Protocol - Protocollo + Protocol + Protocollo - Device Node - Nodo dispositivo + 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> + <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 + Type + Tipo - Total Host Reads - Totale letture host + Total Host Reads + Totale letture host - Total Host Writes - Totale scritture host + Total Host Writes + Totale scritture host - Rotation Rate - Tasso di rotazione + Rotation Rate + Tasso di rotazione - Power On Count - Conteggio accensioni + Power On Count + Conteggio accensioni - Power On Hours - Ore funzionamento + 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 hard disc</span></p></body></html> + <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 hard disc</span></p></body></html> - File - File + File + File - Settings - Impostazioni + Settings + Impostazioni - &Help - &Aiuto + &Help + &Aiuto - De&vice - Dispositi&vo + De&vice + Dispositi&vo - Disk - Disco + Disk + Disco - &Quit - &Esci + &Quit + &Esci - &Refresh Devices - Aggio&rna dispositivi + &Refresh Devices + Aggio&rna dispositivi - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &Info su QDiskInfo + &About QDiskInfo + &Info su QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignora C4 (conteggio eventi di riallocazione) + &Ignore C4 (Reallocated Event Count) + &Ignora C4 (conteggio eventi di riallocazione) - &Convert Raw values to HEX - &Converti valori grezzi in HEX + &Convert Raw values to HEX + &Converti valori grezzi in HEX - &Use Fahrenheit - &Usa i Fahrenheit + &Use Fahrenheit + &Usa i Fahrenheit - Self Test - Autotest + Self Test + Autotest - Cyclic &Navigation - &Navigazione Ciclica + Cyclic &Navigation + &Navigazione Ciclica - Use &GB instead of TB - Usa &GB invece di TB + Use &GB instead of TB + Usa &GB invece di TB - About &Qt - Info su &Qt + About &Qt + Info su &Qt - Start Self Test - Avvia autotest + Start Self Test + Avvia autotest - Self Test Log - Registro dell'autotest + Self Test Log + Registro dell'autotest - Critical Warning - Avviso critico + Critical Warning + Avviso critico - Grown Defect List - Elenco aumento difetti + Grown Defect List + Elenco aumento difetti - Good - Buono + Good + Buono - Caution - Attenzione + Caution + Attenzione - Bad - Cattivo + Bad + Cattivo - Unknown - Sconosciuto + Unknown + Sconosciuto - Status - Stato + Status + Stato - count - conteggio + count + conteggio - hours - ore + hours + ore - Short - Breve + Short + Breve - Conveyance - Trasporto + Conveyance + Trasporto - Extended - Esteso + Extended + Esteso - Min.) - Min.) + Min.) + Min.) - Read - Lettura + Read + Lettura - Write - Scrivi + Write + Scrivi - Verify - Verifica + Verify + Verifica - ID - ID + ID + ID - Attribute Name - Nome attributo + Attribute Name + Nome attributo - Raw Values - Valori grezzi + Raw Values + Valori grezzi - Available spare capacity has fallen below the threshold - La capacità inutilizzata disponibile è scesa al di sotto della soglia + Available spare capacity has fallen below the threshold + La capacità inutilizzata disponibile è scesa al di sotto della soglia - Temperature error (Overheat or Overcool) - Errore di temperatura (surriscaldamento o sovraraffreddamento) + Temperature error (Overheat or Overcool) + Errore di temperatura (surriscaldamento o sovraraffreddamento) - NVM subsystem reliability has been degraded - L'affidabilità del sottosistema NVM è diminuita + 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 + 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 + 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 + Persistent memory region has become Read-Only + La regione della memoria persistente è diventata di sola lettura - Current - Corrente + Current + Corrente - Worst - Peggiore + Worst + Peggiore - Threshold - Soglia + Threshold + Soglia - Empty JSON - JSON vuoto + Empty JSON + JSON vuoto - The JSON is empty - Il JSON è vuoto + The JSON is empty + Il JSON è vuoto - Save JSON - Salva JSON + Save JSON + Salva JSON - JSON (*.json);;All Files (*) - JSON (*.json);;Tutti i file (*) + JSON (*.json);;All Files (*) + JSON (*.json);;Tutti i file (*) - Unable to open file for writing - Impossibile aprire il file in scrittura + 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 - Visualizzatore di dati S.M.A.R.T. ATA e NVMe per Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Visualizzatore di 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 + Licensed under the GNU G.P.L. Version 3 + Rilasciato con licenza GNU G.P.L. Versione 3 - Made by Samantas5855 - Realizzato da Samantas5855 + Made by Samantas5855 + Realizzato da Samantas5855 - Version - Versione + Version + Versione - About QDiskInfo - Informazioni su QDiskInfo + About QDiskInfo + Informazioni su QDiskInfo - About Qt - Info su Qt + About Qt + Info su Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - Errore QDiskInfo + 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! + 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 - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Salva JSON - - - + + QObject - QDiskInfo Error - Errore QDiskInfo + 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! + 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! + 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! + 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 + Test Requested + Test richiesto - The self-test has been aborted - L'autotest è stato interrotto + The self-test has been aborted + L'autotest è stato interrotto - Error: Something went wrong - Errore: qualcosa è andato storto + 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! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo ha bisogno di accesso root per richiedere un autotest! - remaining - rimanenti + remaining + rimanenti - completed - completato + completed + completato - Test Already Running - Test già in esecuzione + Test Already Running + Test già in esecuzione - A self-test is already being performed - Si sta già effettuando un autotest + 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 + 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 + A self-test has been requested successfully + Un autotest è stato richiesto con successo - It will be completed after - Sarà completato dopo + It will be completed after + Sarà completato dopo - minutes - minuti + minutes + minuti - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_ja_JP.ts b/translations/qdiskinfo_ja_JP.ts index 8cbf136..9b3a582 100644 --- a/translations/qdiskinfo_ja_JP.ts +++ b/translations/qdiskinfo_ja_JP.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">健康状態</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">健康状態</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;">良好</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;">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;">良好</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">温度</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">温度</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> + <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 - シリアルナンバー + Serial Number + シリアルナンバー - Protocol - プロトコル + Protocol + プロトコル - Device Node - デバイスノード + Device Node + デバイスノード - <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;">良好 100 %</span></p></body></html> + <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;">良好 100 %</span></p></body></html> - Type - タイプ + Type + タイプ - Total Host Reads - ホスト総読み込み量 + Total Host Reads + ホスト総読み込み量 - Total Host Writes - ホスト総書き込み量 + Total Host Writes + ホスト総書き込み量 - Rotation Rate - 回転速度 + Rotation Rate + 回転速度 - Power On Count - 電源投入回数 + Power On Count + 電源投入回数 - Power On Hours - 動作時間 + Power On Hours + 動作時間 - <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;">ドライブ名</span></p></body></html> + <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;">ドライブ名</span></p></body></html> - File - ファイル + File + ファイル - Settings - 設定 + Settings + 設定 - &Help - ヘルプ(&H) + &Help + ヘルプ(&H) - De&vice - デバイス(&v) + De&vice + デバイス(&v) - Disk - ディスク + Disk + ディスク - &Quit - 終了(&Q) + &Quit + 終了(&Q) - &Refresh Devices - リフレッシュ(&R) + &Refresh Devices + リフレッシュ(&R) - &GitHub - Github(&G) + &GitHub + Github(&G) - &About QDiskInfo - QDiskInfoについて(&A) + &About QDiskInfo + QDiskInfoについて(&A) - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - セルフテスト + Self Test + セルフテスト - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - Qtについて(&Q) + About &Qt + Qtについて(&Q) - Start Self Test - セルフテストを開始 + Start Self Test + セルフテストを開始 - Self Test Log - セルフテスト ログ + Self Test Log + セルフテスト ログ - Critical Warning - 致命的 + Critical Warning + 致命的 - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - 良好 + Good + 良好 - Caution - 警告 + Caution + 警告 - Bad - 危険 + Bad + 危険 - Unknown - 不明 + Unknown + 不明 - Status - ステータス + Status + ステータス - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - JSONを保存(&S) - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_ko_KR.ts b/translations/qdiskinfo_ko_KR.ts index 3b40c20..7c0a26e 100644 --- a/translations/qdiskinfo_ko_KR.ts +++ b/translations/qdiskinfo_ko_KR.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_lv_LV.ts b/translations/qdiskinfo_lv_LV.ts index 1efba7c..51c1dcc 100644 --- a/translations/qdiskinfo_lv_LV.ts +++ b/translations/qdiskinfo_lv_LV.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Veselības stāvoklis</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Veselības stāvoklis</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;">Labs</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;">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;">Labs</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">Temperatūra</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperatūra</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> + <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 - Aparātprogrammatūra + Firmware + Aparātprogrammatūra - Serial Number - Sērijas numurs + Serial Number + Sērijas numurs - Protocol - Protokols + Protocol + Protokols - Device Node - Ceļš uz ierīci + Device Node + Ceļš uz ierīci - <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;">Labs 100 %</span></p></body></html> + <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;">Labs 100 %</span></p></body></html> - Type - Tips + Type + Tips - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotācijas ātrums + Rotation Rate + Rotācijas ātrums - Power On Count - Ieslēgšanu skaits + Power On Count + Ieslēgšanu skaits - Power On Hours - Darbojies + Power On Hours + Darbojies - <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;">Datu nesēja nosaukums</span></p></body></html> + <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;">Datu nesēja nosaukums</span></p></body></html> - File - Fails + File + Fails - Settings - Iestatījumi + Settings + Iestatījumi - &Help - &Help + &Help + &Help - De&vice - &Ierīce + De&vice + &Ierīce - Disk - Disks + Disk + Disks - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - Atsvaidzināt ie&rīces + &Refresh Devices + Atsvaidzināt ie&rīces - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - P&ar QDiskInfo + &About QDiskInfo + P&ar QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - Pārveidot Raw vērtības uz heksade&cimālām vērtībām + &Convert Raw values to HEX + Pārveidot Raw vērtības uz heksade&cimālām vērtībām - &Use Fahrenheit - &Temperatūra Fārenheita grādos + &Use Fahrenheit + &Temperatūra Fārenheita grādos - Self Test - Pašpārbaude + Self Test + Pašpārbaude - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Lietot &GB nevis TB + Use &GB instead of TB + Lietot &GB nevis TB - About &Qt - Par &Qt + About &Qt + Par &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Pašpārbaudes žurnāls + Self Test Log + Pašpārbaudes žurnāls - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Labs + Good + Labs - Caution - Caution + Caution + Caution - Bad - Slikts + Bad + Slikts - Unknown - Nezināms + Unknown + Nezināms - Status - Statuss + Status + Statuss - count - reizes ieslēgts + count + reizes ieslēgts - hours - stundas + hours + stundas - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Atribūta nosaukums + Attribute Name + Atribūta nosaukums - Raw Values - Raw vērtības + Raw Values + Raw vērtības - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Saglabāt JSON + Save JSON + Saglabāt JSON - JSON (*.json);;All Files (*) - JSON (*.json);;Visi faili (*) + JSON (*.json);;All Files (*) + JSON (*.json);;Visi faili (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - ATA un NVMe S.M.A.R.T. datu skatītājs Linux operētājsistēmām + An ATA and NVMe S.M.A.R.T. data viewer for Linux + ATA un NVMe S.M.A.R.T. datu skatītājs Linux operētājsistēmām - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Izstrādāja Samantas5855 + Made by Samantas5855 + Izstrādāja Samantas5855 - Version - Versija + Version + Versija - About QDiskInfo - Par QDiskInfo + About QDiskInfo + Par QDiskInfo - About Qt - Par Qt + About Qt + Par Qt - Clear &Settings - Notīrīt ie&statījumus + Clear &Settings + Notīrīt ie&statījumus - ASCII View - ASCII skats + ASCII View + ASCII skats - QDiskInfo Error - QDiskInfo kļūda + QDiskInfo Error + QDiskInfo kļūda - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus! - Save Binary Data - Saglabāt bināros datus + Save Binary Data + Saglabāt bināros datus - Binary Files (*.bin);;All Files (*) - Binārie faili (*.bin);;Visi faili (*) + Binary Files (*.bin);;All Files (*) + Binārie faili (*.bin);;Visi faili (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Saglabāt JSON - - - + + QObject - QDiskInfo Error - QDiskInfo kļūda + QDiskInfo Error + QDiskInfo kļūda - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo nepieciešama root piekļuve, lai lasītu S.M.A.R.T. datus! - smartctl was not found, please install it! - smartctl netika atrasts, lūdzu, uzstādiet to! + smartctl was not found, please install it! + smartctl netika atrasts, lūdzu, uzstādiet to! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo nepieciešama root piekļuve, lai pārtrauktu pašpārbaudi! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo nepieciešama root piekļuve, lai pārtrauktu pašpārbaudi! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo nepieciešama root piekļuve, lai varētu veikt pašpārbaudi! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo nepieciešama root piekļuve, lai varētu veikt pašpārbaudi! - remaining - atlikušas + remaining + atlikušas - completed - pabeigts + completed + pabeigts - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - Pašpārbaude ir veiksmīgi pieprasīta + A self-test has been requested successfully + Pašpārbaude ir veiksmīgi pieprasīta - It will be completed after - Tā tiks pabeigta pēc + It will be completed after + Tā tiks pabeigta pēc - minutes - minūtes + minutes + minūtes - Clear Settings - Notīrīt iestatījumus + Clear Settings + Notīrīt iestatījumus - Are you sure you want to clear the settings saved on disk? - Vai tiešām vēlaties notīrīt diskā saglabātos iestatījumus? + Are you sure you want to clear the settings saved on disk? + Vai tiešām vēlaties notīrīt diskā saglabātos iestatījumus? - + diff --git a/translations/qdiskinfo_nl_NL.ts b/translations/qdiskinfo_nl_NL.ts index 9b24020..71b8659 100644 --- a/translations/qdiskinfo_nl_NL.ts +++ b/translations/qdiskinfo_nl_NL.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_no_NO.ts b/translations/qdiskinfo_no_NO.ts index 9f0ee52..28a5b62 100644 --- a/translations/qdiskinfo_no_NO.ts +++ b/translations/qdiskinfo_no_NO.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_pl_PL.ts b/translations/qdiskinfo_pl_PL.ts index 0213769..2c262c4 100644 --- a/translations/qdiskinfo_pl_PL.ts +++ b/translations/qdiskinfo_pl_PL.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_pt_BR.ts b/translations/qdiskinfo_pt_BR.ts index 532b81d..c7e29d5 100644 --- a/translations/qdiskinfo_pt_BR.ts +++ b/translations/qdiskinfo_pt_BR.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Status de Saúde</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Status de Saúde</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;">Saudável</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;">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;">Saudável</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">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> + <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 + Firmware + Firmware - Serial Number - Número Serial + Serial Number + Número Serial - Protocol - Padrão + Protocol + Padrão - Device Node - Nó do Dispositivo + Device Node + Nó do 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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Tipo + Type + Tipo - Total Host Reads - Leituras Totais + Total Host Reads + Leituras Totais - Total Host Writes - Escritas Totais + Total Host Writes + Escritas Totais - Rotation Rate - Taxa de Rotação + Rotation Rate + Taxa de Rotação - Power On Count - Nº de Vezes Ligado + Power On Count + Nº de Vezes Ligado - Power On Hours - Nº de Horas Ligado + Power On Hours + Nº de Horas Ligado - <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 do Disco Rígido</span></p></body></html> + <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 do Disco Rígido</span></p></body></html> - File - Arquivo + File + Arquivo - Settings - Configurações + Settings + Configurações - &Help - &Ajuda + &Help + &Ajuda - De&vice - &Dispositivo + De&vice + &Dispositivo - Disk - Disco + Disk + Disco - &Quit - &Sair + &Quit + &Sair - &Refresh Devices - &Atualizar Dispositivos + &Refresh Devices + &Atualizar Dispositivos - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - Sobre &QDiskInfo + &About QDiskInfo + Sobre &QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignorar C4 (Nº de Eventos Realocados) + &Ignore C4 (Reallocated Event Count) + &Ignorar C4 (Nº de Eventos Realocados) - &Convert Raw values to HEX - &Converter Valores Puros para HEX + &Convert Raw values to HEX + &Converter Valores Puros para HEX - &Use Fahrenheit - &Usar Fahrenheit + &Use Fahrenheit + &Usar Fahrenheit - Self Test - Auto Teste + Self Test + Auto Teste - Cyclic &Navigation - &Navegação Cíclica + Cyclic &Navigation + &Navegação Cíclica - Use &GB instead of TB - &Usar GB invés de TB + Use &GB instead of TB + &Usar GB invés de TB - About &Qt - Sobre o &Qt + About &Qt + Sobre o &Qt - Start Self Test - Começar Auto Teste + Start Self Test + Começar Auto Teste - Self Test Log - Log do Auto Teste + Self Test Log + Log do Auto Teste - Critical Warning - Aviso Crítico + Critical Warning + Aviso Crítico - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Saúdavel + Good + Saúdavel - Caution - Alerta + Caution + Alerta - Bad - Crítico + Bad + Crítico - Unknown - Indefinido + Unknown + Indefinido - Status - Status + Status + Status - count - vezes + count + vezes - hours - horas + hours + horas - Short - Rápido + Short + Rápido - Conveyance - Médio + Conveyance + Médio - Extended - Longo + Extended + Longo - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Nome do Atributo + Attribute Name + Nome do Atributo - Raw Values - Valores Puros + Raw Values + Valores Puros - Available spare capacity has fallen below the threshold - Capacidade restante disponível caiu abaixo do limite + Available spare capacity has fallen below the threshold + Capacidade restante disponível caiu abaixo do limite - Temperature error (Overheat or Overcool) - Erro de Temperatura (Muito Quente ou Frio) + Temperature error (Overheat or Overcool) + Erro de Temperatura (Muito Quente ou Frio) - NVM subsystem reliability has been degraded - Confiabilidade do subsistema NVM degradada + NVM subsystem reliability has been degraded + Confiabilidade do subsistema NVM degradada - Media has been placed in Read Only Mode - Media em modo de apenas leitura + Media has been placed in Read Only Mode + Media em modo de apenas leitura - Volatile memory backup device has Failed - Dispositivo de backup de memória volátil falhou + Volatile memory backup device has Failed + Dispositivo de backup de memória volátil falhou - Persistent memory region has become Read-Only - Região de memória persistente entrou em modo de apenas leitura + Persistent memory region has become Read-Only + Região de memória persistente entrou em modo de apenas leitura - Current - Atual + Current + Atual - Worst - Pior + Worst + Pior - Threshold - Limite + Threshold + Limite - Empty JSON - JSON vazio + Empty JSON + JSON vazio - The JSON is empty - O JSON está vazio + The JSON is empty + O JSON está vazio - Save JSON - Salvar JSON + Save JSON + Salvar JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Não foi possível abrir o aquivo para escrita + Unable to open file for writing + Não foi possível abrir o aquivo para escrita - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Um visualizador ATA e NVMe S.M.A.R.T. para Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Um visualizador ATA e NVMe S.M.A.R.T. para Linux - Licensed under the GNU G.P.L. Version 3 - Licenciado sob a GNU G.P.L. Versão 3 + Licensed under the GNU G.P.L. Version 3 + Licenciado sob a GNU G.P.L. Versão 3 - Made by Samantas5855 - Feito por Samantas5855 + Made by Samantas5855 + Feito por Samantas5855 - Version - Versão + Version + Versão - About QDiskInfo - Sobre QDiskInfo + About QDiskInfo + Sobre QDiskInfo - About Qt - Sobre o Qt + About Qt + Sobre o Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Erro + QDiskInfo Error + QDiskInfo Erro - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Salvar JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Erro + QDiskInfo Error + QDiskInfo Erro - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo precisa de acesso root para leitura dos dados S.M.A.R.T.! - smartctl was not found, please install it! - smartctl não foi encontrado, por favor instalar! + smartctl was not found, please install it! + smartctl não foi encontrado, por favor instalar! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo precisa de acesso root para abortar um auto teste! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo precisa de acesso root para abortar um auto teste! - Test Requested - Teste Solicitado + Test Requested + Teste Solicitado - The self-test has been aborted - Auto teste abortado + The self-test has been aborted + Auto teste abortado - Error: Something went wrong - Erro: Algo de errado não deu certo + Error: Something went wrong + Erro: Algo de errado não deu certo - QDiskInfo needs root access in order to request a self-test! - QDiskInfo precisa de acesso root para solicitar um auto teste! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo precisa de acesso root para solicitar um auto teste! - remaining - restante + remaining + restante - completed - completo + completed + completo - Test Already Running - Teste já Executando + Test Already Running + Teste já Executando - A self-test is already being performed - Um auto teste já está em execução + A self-test is already being performed + Um auto teste já está em execução - You can press the Ok button in order to abort the test that is currently running - Você pode apertar o botão de Ok para abortar o auto teste em execução + You can press the Ok button in order to abort the test that is currently running + Você pode apertar o botão de Ok para abortar o auto teste em execução - A self-test has been requested successfully - Um auto teste foi solicitado com sucesso + A self-test has been requested successfully + Um auto teste foi solicitado com sucesso - It will be completed after - O teste será completado depois de + It will be completed after + O teste será completado depois de - minutes - minutos + minutes + minutos - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_pt_PT.ts b/translations/qdiskinfo_pt_PT.ts index 2480c64..502def6 100644 --- a/translations/qdiskinfo_pt_PT.ts +++ b/translations/qdiskinfo_pt_PT.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_ro_RO.ts b/translations/qdiskinfo_ro_RO.ts index 1772250..4b03f9e 100644 --- a/translations/qdiskinfo_ro_RO.ts +++ b/translations/qdiskinfo_ro_RO.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_ru_RU.ts b/translations/qdiskinfo_ru_RU.ts index 80997a9..d3fca09 100644 --- a/translations/qdiskinfo_ru_RU.ts +++ b/translations/qdiskinfo_ru_RU.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Состояние здоровья</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Состояние здоровья</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;">Хорошее</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;">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;">Хорошее</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">Температура</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Температура</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> + <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 - Серийный номер + Serial Number + Серийный номер - Protocol - Протокол + Protocol + Протокол - Device Node - Путь к устройству + Device Node + Путь к устройству - <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;">Хорошее 100 %</span></p></body></html> + <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;">Хорошее 100 %</span></p></body></html> - Type - Тип + Type + Тип - Total Host Reads - Всего прочитано + Total Host Reads + Всего прочитано - Total Host Writes - Всего записано + Total Host Writes + Всего записано - Rotation Rate - Скорость вращения + Rotation Rate + Скорость вращения - Power On Count - Количество включений + Power On Count + Количество включений - Power On Hours - Время работы + Power On Hours + Время работы - <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;">Наименование устройства</span></p></body></html> + <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;">Наименование устройства</span></p></body></html> - File - Файл + File + Файл - Settings - Настройки + Settings + Настройки - &Help - &Помощь + &Help + &Помощь - De&vice - У&стройство + De&vice + У&стройство - Disk - Диск + Disk + Диск - &Quit - &Выход + &Quit + &Выход - &Refresh Devices - &Обновить устройства + &Refresh Devices + &Обновить устройства - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &Об QDiskInfo + &About QDiskInfo + &Об QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Игнорировать C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Игнорировать C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Преобразовать Raw значения в HEX + &Convert Raw values to HEX + &Преобразовать Raw значения в HEX - &Use Fahrenheit - &Температура в Фаренгейтах + &Use Fahrenheit + &Температура в Фаренгейтах - Self Test - Самотестирование + Self Test + Самотестирование - Cyclic &Navigation - Циклическая &навигация + Cyclic &Navigation + Циклическая &навигация - Use &GB instead of TB - &Использ. ГБ вместо ТБ + Use &GB instead of TB + &Использ. ГБ вместо ТБ - About &Qt - О &Qt + About &Qt + О &Qt - Start Self Test - Начать самотестирование + Start Self Test + Начать самотестирование - Self Test Log - Журнал самотестирования + Self Test Log + Журнал самотестирования - Critical Warning - Критическое предупреждение + Critical Warning + Критическое предупреждение - Grown Defect List - Список наростающих дефектов + Grown Defect List + Список наростающих дефектов - Good - Хорошее + Good + Хорошее - Caution - Предупреждение + Caution + Предупреждение - Bad - Плохое + Bad + Плохое - Unknown - Неизвестно + Unknown + Неизвестно - Status - Статус + Status + Статус - count - раз + count + раз - hours - часов + hours + часов - Short - Коротко + Short + Коротко - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Расширенно + Extended + Расширенно - Min.) - Min.) + Min.) + Min.) - Read - Чтение + Read + Чтение - Write - Запись + Write + Запись - Verify - Проверить + Verify + Проверить - ID - ID + ID + ID - Attribute Name - Название атрибута + Attribute Name + Название атрибута - Raw Values - Raw Значение + Raw Values + Raw Значение - Available spare capacity has fallen below the threshold - Запас емкости упал ниже порогового значения + Available spare capacity has fallen below the threshold + Запас емкости упал ниже порогового значения - Temperature error (Overheat or Overcool) - Ошибка температуры (перегрев или переохлаждение) + Temperature error (Overheat or Overcool) + Ошибка температуры (перегрев или переохлаждение) - NVM subsystem reliability has been degraded - Надежность подсистемы NVM деградировала + NVM subsystem reliability has been degraded + Надежность подсистемы NVM деградировала - Media has been placed in Read Only Mode - Медиа было помещено в режим "Только для чтения" + Media has been placed in Read Only Mode + Медиа было помещено в режим "Только для чтения" - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Постоянная область памяти стала только для чтения + Persistent memory region has become Read-Only + Постоянная область памяти стала только для чтения - Current - Текущее + Current + Текущее - Worst - Худшее + Worst + Худшее - Threshold - Порог + Threshold + Порог - Empty JSON - Пустой JSON + Empty JSON + Пустой JSON - The JSON is empty - JSON пустой + The JSON is empty + JSON пустой - Save JSON - Сохранить JSON + Save JSON + Сохранить JSON - JSON (*.json);;All Files (*) - JSON (*.json);;Все Файлы (*) + JSON (*.json);;All Files (*) + JSON (*.json);;Все Файлы (*) - Unable to open file for writing - Не удается открыть файл для записи + Unable to open file for writing + Не удается открыть файл для записи - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Просмотрщик данных ATA і NVMe S.M.A.R.T. для Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Просмотрщик данных ATA і NVMe S.M.A.R.T. для Linux - Licensed under the GNU G.P.L. Version 3 - Лицензия GNU G.P.L. Версия 3 + Licensed under the GNU G.P.L. Version 3 + Лицензия GNU G.P.L. Версия 3 - Made by Samantas5855 - Разработано Samantas5855 + Made by Samantas5855 + Разработано Samantas5855 - Version - Версия + Version + Версия - About QDiskInfo - Об QDiskInfo + About QDiskInfo + Об QDiskInfo - About Qt - О Qt + About Qt + О Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - Ошибка QDiskInfo + QDiskInfo Error + Ошибка QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T. + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T. - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Сохранить JSON - - - + + QObject - QDiskInfo Error - Ошибка QDiskInfo + QDiskInfo Error + Ошибка QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T. + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo нужен root доступ, чтобы прочитать данные S.M.A.R.T. - smartctl was not found, please install it! - smartctl не найден, пожалуйста, установите его! + smartctl was not found, please install it! + smartctl не найден, пожалуйста, установите его! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo нужен root доступ, чтобы прервать самотестирование! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo нужен root доступ, чтобы прервать самотестирование! - Test Requested - Тестирование запрошено + Test Requested + Тестирование запрошено - The self-test has been aborted - Самотестирование прервано + The self-test has been aborted + Самотестирование прервано - Error: Something went wrong - Ошибка – что-то пошло не так + Error: Something went wrong + Ошибка – что-то пошло не так - QDiskInfo needs root access in order to request a self-test! - QDiskInfo нужен root доступ, чтобы запросить самотестирование! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo нужен root доступ, чтобы запросить самотестирование! - remaining - осталось + remaining + осталось - completed - завершено + completed + завершено - Test Already Running - Тест уже запущен + Test Already Running + Тест уже запущен - A self-test is already being performed - Самотестирование уже проводится + A self-test is already being performed + Самотестирование уже проводится - You can press the Ok button in order to abort the test that is currently running - Вы можете нажать кнопку Ок, чтобы прервать тест, который сейчас запущен + You can press the Ok button in order to abort the test that is currently running + Вы можете нажать кнопку Ок, чтобы прервать тест, который сейчас запущен - A self-test has been requested successfully - Самотестирование было запрошено успешно + A self-test has been requested successfully + Самотестирование было запрошено успешно - It will be completed after - Оно будет завершено через + It will be completed after + Оно будет завершено через - minutes - минут + minutes + минут - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_sr_SP.ts b/translations/qdiskinfo_sr_SP.ts index 7fe8c45..fa54bcc 100644 --- a/translations/qdiskinfo_sr_SP.ts +++ b/translations/qdiskinfo_sr_SP.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_sv_SE.ts b/translations/qdiskinfo_sv_SE.ts index 089af09..ab5f1b0 100644 --- a/translations/qdiskinfo_sv_SE.ts +++ b/translations/qdiskinfo_sv_SE.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_th_TH.ts b/translations/qdiskinfo_th_TH.ts index 96fe23c..7a7b953 100644 --- a/translations/qdiskinfo_th_TH.ts +++ b/translations/qdiskinfo_th_TH.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_tr_TR.ts b/translations/qdiskinfo_tr_TR.ts index edb58ee..1e45a6a 100644 --- a/translations/qdiskinfo_tr_TR.ts +++ b/translations/qdiskinfo_tr_TR.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_uk_UA.ts b/translations/qdiskinfo_uk_UA.ts index 72519c4..e9e9752 100644 --- a/translations/qdiskinfo_uk_UA.ts +++ b/translations/qdiskinfo_uk_UA.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Стан здоров'я</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Стан здоров'я</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;">Добрий</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;">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;">Добрий</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">Температура</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Температура</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> + <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 - Серійний номер + Serial Number + Серійний номер - Protocol - Протокол + Protocol + Протокол - Device Node - Шлях до пристрою + Device Node + Шлях до пристрою - <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;">Добрий 100 %</span></p></body></html> + <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;">Добрий 100 %</span></p></body></html> - Type - Тип + Type + Тип - Total Host Reads - Всього прочитано + Total Host Reads + Всього прочитано - Total Host Writes - Всього записано + Total Host Writes + Всього записано - Rotation Rate - Швидкість обертання + Rotation Rate + Швидкість обертання - Power On Count - Кількість вмикань + Power On Count + Кількість вмикань - Power On Hours - Час роботи + Power On Hours + Час роботи - <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;">Назва пристрою</span></p></body></html> + <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;">Назва пристрою</span></p></body></html> - File - Файл + File + Файл - Settings - Налаштування + Settings + Налаштування - &Help - &Допомога + &Help + &Допомога - De&vice - Пр&истрій + De&vice + Пр&истрій - Disk - Диск + Disk + Диск - &Quit - &Вихід + &Quit + &Вихід - &Refresh Devices - &Оновити пристрої + &Refresh Devices + &Оновити пристрої - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &Про QDiskInfo + &About QDiskInfo + &Про QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ігнорувати C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ігнорувати C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Перетворення значень Raw в HEX + &Convert Raw values to HEX + &Перетворення значень Raw в HEX - &Use Fahrenheit - &Температура в Фаренгейтах + &Use Fahrenheit + &Температура в Фаренгейтах - Self Test - Самотестування + Self Test + Самотестування - Cyclic &Navigation - Циклічна &навігація + Cyclic &Navigation + Циклічна &навігація - Use &GB instead of TB - &Викор. ГБ замість ТБ + Use &GB instead of TB + &Викор. ГБ замість ТБ - About &Qt - Про &Qt + About &Qt + Про &Qt - Start Self Test - Почати самотестування + Start Self Test + Почати самотестування - Self Test Log - Журнал самотестування + Self Test Log + Журнал самотестування - Critical Warning - Критичне попередження + Critical Warning + Критичне попередження - Grown Defect List - Список наростаючих дефектів + Grown Defect List + Список наростаючих дефектів - Good - Добрий + Good + Добрий - Caution - Попередження + Caution + Попередження - Bad - Поганий + Bad + Поганий - Unknown - Невідомий + Unknown + Невідомий - Status - Статус + Status + Статус - count - раз + count + раз - hours - годин + hours + годин - Short - Коротко + Short + Коротко - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Розширено + Extended + Розширено - Min.) - Min.) + Min.) + Min.) - Read - Читання + Read + Читання - Write - Запис + Write + Запис - Verify - Перевірити + Verify + Перевірити - ID - ID + ID + ID - Attribute Name - Назва атрибуту + Attribute Name + Назва атрибуту - Raw Values - Raw Значення + Raw Values + Raw Значення - Available spare capacity has fallen below the threshold - Запас ємності впав нижче порогового значення + Available spare capacity has fallen below the threshold + Запас ємності впав нижче порогового значення - Temperature error (Overheat or Overcool) - Помилка температури (перегрів або переохолодження) + Temperature error (Overheat or Overcool) + Помилка температури (перегрів або переохолодження) - NVM subsystem reliability has been degraded - Надійність підсистеми NVM деградувала + NVM subsystem reliability has been degraded + Надійність підсистеми NVM деградувала - Media has been placed in Read Only Mode - Медіа розміщене в режимі тільки для читання + Media has been placed in Read Only Mode + Медіа розміщене в режимі тільки для читання - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Постійний регіон пам'яті став лише для читання + Persistent memory region has become Read-Only + Постійний регіон пам'яті став лише для читання - Current - Поточне + Current + Поточне - Worst - Найгірше + Worst + Найгірше - Threshold - Поріг + Threshold + Поріг - Empty JSON - Порожній JSON + Empty JSON + Порожній JSON - The JSON is empty - JSON порожній + The JSON is empty + JSON порожній - Save JSON - Зберегти JSON + Save JSON + Зберегти JSON - JSON (*.json);;All Files (*) - JSON (*.json);;Всі файли (*) + JSON (*.json);;All Files (*) + JSON (*.json);;Всі файли (*) - Unable to open file for writing - Не вдалося відкрити файл для запису + Unable to open file for writing + Не вдалося відкрити файл для запису - An ATA and NVMe S.M.A.R.T. data viewer for Linux - Переглядач даних ATA і NVMe S.M.A.R.T. для Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + Переглядач даних ATA і NVMe S.M.A.R.T. для Linux - Licensed under the GNU G.P.L. Version 3 - Ліцензія GNU G.P.L. Версія 3 + Licensed under the GNU G.P.L. Version 3 + Ліцензія GNU G.P.L. Версія 3 - Made by Samantas5855 - Розроблено by Samantas5855 + Made by Samantas5855 + Розроблено by Samantas5855 - Version - Версія + Version + Версія - About QDiskInfo - Про QDiskInfo + About QDiskInfo + Про QDiskInfo - About Qt - Про Qt + About Qt + Про Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - Помилка QDiskInfo + QDiskInfo Error + Помилка QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T. + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T. - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Зберегти JSON - - - + + QObject - QDiskInfo Error - Помилка QDiskInfo + QDiskInfo Error + Помилка QDiskInfo - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T. + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo потрібен root-доступ для читання даних S.M.A.R.T. - smartctl was not found, please install it! - smartctl не знайдено, будь ласка, встановіть його! + smartctl was not found, please install it! + smartctl не знайдено, будь ласка, встановіть його! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo потрібен root-доступ, щоб перервати самотестування! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo потрібен root-доступ, щоб перервати самотестування! - Test Requested - Тест відправлено + Test Requested + Тест відправлено - The self-test has been aborted - Самотестування перервано + The self-test has been aborted + Самотестування перервано - Error: Something went wrong - Помилка: щось пішло не так + Error: Something went wrong + Помилка: щось пішло не так - QDiskInfo needs root access in order to request a self-test! - QDiskInfo потрібен root-доступ, щоб розпочати самотестування! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo потрібен root-доступ, щоб розпочати самотестування! - remaining - залишилось + remaining + залишилось - completed - завершено + completed + завершено - Test Already Running - Тест вже запущено + Test Already Running + Тест вже запущено - A self-test is already being performed - Самотестування вже виконується + A self-test is already being performed + Самотестування вже виконується - You can press the Ok button in order to abort the test that is currently running - Ви можете натиснути кнопку ОК, щоб перервати тест, який зараз запущено + You can press the Ok button in order to abort the test that is currently running + Ви можете натиснути кнопку ОК, щоб перервати тест, який зараз запущено - A self-test has been requested successfully - Самотестування було запущено успішно + A self-test has been requested successfully + Самотестування було запущено успішно - It will be completed after - Це буде завершено через + It will be completed after + Це буде завершено через - minutes - хвилилин + minutes + хвилилин - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_vi_VN.ts b/translations/qdiskinfo_vi_VN.ts index 29049cd..cd80167 100644 --- a/translations/qdiskinfo_vi_VN.ts +++ b/translations/qdiskinfo_vi_VN.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">Health Status</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;">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;">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;">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">Temperature</p></body></html> - <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">Temperature</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> + <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 + Firmware + Firmware - Serial Number - Serial Number + Serial Number + Serial Number - Protocol - Protocol + Protocol + Protocol - Device Node - Device Node + Device Node + Device Node - <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;">Good 100 %</span></p></body></html> + <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;">Good 100 %</span></p></body></html> - Type - Type + Type + Type - Total Host Reads - Total Host Reads + Total Host Reads + Total Host Reads - Total Host Writes - Total Host Writes + Total Host Writes + Total Host Writes - Rotation Rate - Rotation Rate + Rotation Rate + Rotation Rate - Power On Count - Power On Count + Power On Count + Power On Count - Power On Hours - Power On Hours + Power On Hours + Power On Hours - <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;">Hard Drive Name</span></p></body></html> + <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;">Hard Drive Name</span></p></body></html> - File - File + File + File - Settings - Settings + Settings + Settings - &Help - &Help + &Help + &Help - De&vice - De&vice + De&vice + De&vice - Disk - Disk + Disk + Disk - &Quit - &Quit + &Quit + &Quit - &Refresh Devices - &Refresh Devices + &Refresh Devices + &Refresh Devices - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &About QDiskInfo + &About QDiskInfo + &About QDiskInfo - &Ignore C4 (Reallocated Event Count) - &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) + &Ignore C4 (Reallocated Event Count) - &Convert Raw values to HEX - &Convert Raw values to HEX + &Convert Raw values to HEX + &Convert Raw values to HEX - &Use Fahrenheit - &Use Fahrenheit + &Use Fahrenheit + &Use Fahrenheit - Self Test - Self Test + Self Test + Self Test - Cyclic &Navigation - Cyclic &Navigation + Cyclic &Navigation + Cyclic &Navigation - Use &GB instead of TB - Use &GB instead of TB + Use &GB instead of TB + Use &GB instead of TB - About &Qt - About &Qt + About &Qt + About &Qt - Start Self Test - Start Self Test + Start Self Test + Start Self Test - Self Test Log - Self Test Log + Self Test Log + Self Test Log - Critical Warning - Critical Warning + Critical Warning + Critical Warning - Grown Defect List - Grown Defect List + Grown Defect List + Grown Defect List - Good - Good + Good + Good - Caution - Caution + Caution + Caution - Bad - Bad + Bad + Bad - Unknown - Unknown + Unknown + Unknown - Status - Status + Status + Status - count - count + count + count - hours - hours + hours + hours - Short - Short + Short + Short - Conveyance - Conveyance + Conveyance + Conveyance - Extended - Extended + Extended + Extended - Min.) - Min.) + Min.) + Min.) - Read - Read + Read + Read - Write - Write + Write + Write - Verify - Verify + Verify + Verify - ID - ID + ID + ID - Attribute Name - Attribute Name + Attribute Name + Attribute Name - Raw Values - Raw Values + Raw Values + Raw Values - Available spare capacity has fallen below the threshold - Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold + Available spare capacity has fallen below the threshold - Temperature error (Overheat or Overcool) - Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) + Temperature error (Overheat or Overcool) - NVM subsystem reliability has been degraded - NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded + NVM subsystem reliability has been degraded - Media has been placed in Read Only Mode - Media has been placed in Read Only Mode + Media has been placed in Read Only Mode + Media has been placed in Read Only Mode - Volatile memory backup device has Failed - Volatile memory backup device has Failed + Volatile memory backup device has Failed + Volatile memory backup device has Failed - Persistent memory region has become Read-Only - Persistent memory region has become Read-Only + Persistent memory region has become Read-Only + Persistent memory region has become Read-Only - Current - Current + Current + Current - Worst - Worst + Worst + Worst - Threshold - Threshold + Threshold + Threshold - Empty JSON - Empty JSON + Empty JSON + Empty JSON - The JSON is empty - The JSON is empty + The JSON is empty + The JSON is empty - Save JSON - Save JSON + Save JSON + Save JSON - JSON (*.json);;All Files (*) - JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) + JSON (*.json);;All Files (*) - Unable to open file for writing - Unable to open file for writing + Unable to open file for writing + Unable to open file for writing - An ATA and NVMe S.M.A.R.T. data viewer for Linux - An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux + An ATA and NVMe S.M.A.R.T. data viewer for Linux - Licensed under the GNU G.P.L. Version 3 - Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 + Licensed under the GNU G.P.L. Version 3 - Made by Samantas5855 - Made by Samantas5855 + Made by Samantas5855 + Made by Samantas5855 - Version - Version + Version + Version - About QDiskInfo - About QDiskInfo + About QDiskInfo + About QDiskInfo - About Qt - About Qt + About Qt + About Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &Save JSON - - - + + QObject - QDiskInfo Error - QDiskInfo Error + QDiskInfo Error + QDiskInfo Error - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo needs root access in order to read S.M.A.R.T. data! - smartctl was not found, please install it! - smartctl was not found, please install it! + smartctl was not found, please install it! + smartctl was not found, please install it! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo needs root access in order to abort a self-test! - Test Requested - Test Requested + Test Requested + Test Requested - The self-test has been aborted - The self-test has been aborted + The self-test has been aborted + The self-test has been aborted - Error: Something went wrong - Error: Something went wrong + Error: Something went wrong + Error: Something went wrong - QDiskInfo needs root access in order to request a self-test! - QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo needs root access in order to request a self-test! - remaining - remaining + remaining + remaining - completed - completed + completed + completed - Test Already Running - Test Already Running + Test Already Running + Test Already Running - A self-test is already being performed - A self-test is already being performed + A self-test is already being performed + A self-test is already being performed - You can press the Ok button in order to abort the test that is currently running - You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running + You can press the Ok button in order to abort the test that is currently running - A self-test has been requested successfully - A self-test has been requested successfully + A self-test has been requested successfully + A self-test has been requested successfully - It will be completed after - It will be completed after + It will be completed after + It will be completed after - minutes - minutes + minutes + minutes - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - + diff --git a/translations/qdiskinfo_zh_CN.ts b/translations/qdiskinfo_zh_CN.ts index f877058..4fa9aa1 100644 --- a/translations/qdiskinfo_zh_CN.ts +++ b/translations/qdiskinfo_zh_CN.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">健康状态</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">健康状态</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;">良好</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;">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;">良好</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">温度</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">温度</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> + <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 - 序列号 + Serial Number + 序列号 - Protocol - 通讯协议 + Protocol + 通讯协议 - Device Node - 设备节点 + Device Node + 设备节点 - <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;">良好 100 %</span></p></body></html> + <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;">良好 100 %</span></p></body></html> - Type - 设备类型 + Type + 设备类型 - Total Host Reads - 主机总计读取 + Total Host Reads + 主机总计读取 - Total Host Writes - 主机总计写入 + Total Host Writes + 主机总计写入 - Rotation Rate - 转速 + Rotation Rate + 转速 - Power On Count - 通电次数 + Power On Count + 通电次数 - Power On Hours - 通电时间 + Power On Hours + 通电时间 - <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;">硬盘名称</span></p></body></html> + <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;">硬盘名称</span></p></body></html> - File - 文件 + File + 文件 - Settings - 设置 + Settings + 设置 - &Help - 帮助 (&H) + &Help + 帮助 (&H) - De&vice - 设备 (&D) + De&vice + 设备 (&D) - Disk - 硬盘 + Disk + 硬盘 - &Quit - 退出 (&Q) + &Quit + 退出 (&Q) - &Refresh Devices - 刷新设备 (&R) + &Refresh Devices + 刷新设备 (&R) - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - 关于 QDiskInfo (&A) + &About QDiskInfo + 关于 QDiskInfo (&A) - &Ignore C4 (Reallocated Event Count) - 忽略 C4 (Reallocated Event Count) (&I) + &Ignore C4 (Reallocated Event Count) + 忽略 C4 (Reallocated Event Count) (&I) - &Convert Raw values to HEX - 转换原始值到十六进制 (HEX) (&C) + &Convert Raw values to HEX + 转换原始值到十六进制 (HEX) (&C) - &Use Fahrenheit - 使用华氏度 (&U) + &Use Fahrenheit + 使用华氏度 (&U) - Self Test - 自检 + Self Test + 自检 - Cyclic &Navigation - 循环导航 (&N) + Cyclic &Navigation + 循环导航 (&N) - Use &GB instead of TB - 使用 &GB 而不是 TB + Use &GB instead of TB + 使用 &GB 而不是 TB - About &Qt - 关于 &Qt + About &Qt + 关于 &Qt - Start Self Test - 开始自检 + Start Self Test + 开始自检 - Self Test Log - 自检日志 + Self Test Log + 自检日志 - Critical Warning - 关键警告 + Critical Warning + 关键警告 - Grown Defect List - 生长缺陷列表 + Grown Defect List + 生长缺陷列表 - Good - 良好 + Good + 良好 - Caution - 警告 + Caution + 警告 - Bad - 不良 + Bad + 不良 - Unknown - 未知 + Unknown + 未知 - Status - 状态 + Status + 状态 - count - + count + - hours - 小时 + hours + 小时 - Short - 短 (Short) + Short + 短 (Short) - Conveyance - 输送 (Conveyance) + Conveyance + 输送 (Conveyance) - Extended - 扩展 (Extended) + Extended + 扩展 (Extended) - Min.) - 分钟) + Min.) + 分钟) - Read - 读取 + Read + 读取 - Write - 写入 + Write + 写入 - Verify - 校验 + Verify + 校验 - ID - ID + ID + ID - Attribute Name - 属性名称 + Attribute Name + 属性名称 - Raw Values - 原始值 + Raw Values + 原始值 - Available spare capacity has fallen below the threshold - 可用备用容量降至阈值以下 + Available spare capacity has fallen below the threshold + 可用备用容量降至阈值以下 - Temperature error (Overheat or Overcool) - 温度错误 (过热或过冷) + Temperature error (Overheat or Overcool) + 温度错误 (过热或过冷) - NVM subsystem reliability has been degraded - NVM 子系统可靠性降级 + NVM subsystem reliability has been degraded + NVM 子系统可靠性降级 - Media has been placed in Read Only Mode - 媒体被置于只读模式 + Media has been placed in Read Only Mode + 媒体被置于只读模式 - Volatile memory backup device has Failed - 易失性内存备份设备发生故障 + Volatile memory backup device has Failed + 易失性内存备份设备发生故障 - Persistent memory region has become Read-Only - 持久内存区域变为只读 + Persistent memory region has become Read-Only + 持久内存区域变为只读 - Current - 当前值 + Current + 当前值 - Worst - 最差值 + Worst + 最差值 - Threshold - 临界值 + Threshold + 临界值 - Empty JSON - 空 JSON + Empty JSON + 空 JSON - The JSON is empty - JSON 为空 + The JSON is empty + JSON 为空 - Save JSON - 保存 JSON + Save JSON + 保存 JSON - JSON (*.json);;All Files (*) - JSON (*.json);;所有文件 (*) + JSON (*.json);;All Files (*) + JSON (*.json);;所有文件 (*) - Unable to open file for writing - 无法打开文件以写入 + Unable to open file for writing + 无法打开文件以写入 - An ATA and NVMe S.M.A.R.T. data viewer for Linux - 适用于 Linux 的 ATA 和 NVMe S.M.A.R.T. 数据查看器 + An ATA and NVMe S.M.A.R.T. data viewer for Linux + 适用于 Linux 的 ATA 和 NVMe S.M.A.R.T. 数据查看器 - Licensed under the GNU G.P.L. Version 3 - 根据 GNU G.P.L. 版本 3 授权 + Licensed under the GNU G.P.L. Version 3 + 根据 GNU G.P.L. 版本 3 授权 - Made by Samantas5855 - 由 Samantas5855 制作 + Made by Samantas5855 + 由 Samantas5855 制作 - Version - 版本 + Version + 版本 - About QDiskInfo - 关于 QDiskInfo + About QDiskInfo + 关于 QDiskInfo - About Qt - 关于 Qt + About Qt + 关于 Qt - Clear &Settings - 清除设置(&S) + Clear &Settings + 清除设置(&S) - ASCII View - ASCII 视图 + ASCII View + ASCII 视图 - QDiskInfo Error - QDiskInfo 错误 + QDiskInfo Error + QDiskInfo 错误 - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo 需要 root 权限才能读取 S.M.A.R.T. 数据! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo 需要 root 权限才能读取 S.M.A.R.T. 数据! - Save Binary Data - 保存二进制数据 + Save Binary Data + 保存二进制数据 - Binary Files (*.bin);;All Files (*) - 二进制文件 (*.bin);;所有文件 (*) + Binary Files (*.bin);;All Files (*) + 二进制文件 (*.bin);;所有文件 (*) - Success - 成功 + Success + 成功 - Binary data saved successfully. - 成功保存了二进制数据。 + Binary data saved successfully. + 成功保存了二进制数据。 - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - 保存 J&SON - - - + + QObject - QDiskInfo Error - QDiskInfo 错误 + QDiskInfo Error + QDiskInfo 错误 - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo 需要 root 权限才能读取 S.M.A.R.T. 数据! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo 需要 root 权限才能读取 S.M.A.R.T. 数据! - smartctl was not found, please install it! - 未能找到 smartctl,请安装! + smartctl was not found, please install it! + 未能找到 smartctl,请安装! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo 需要 root 权限才能中止自检! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo 需要 root 权限才能中止自检! - Test Requested - 已请求自检 + Test Requested + 已请求自检 - The self-test has been aborted - 自检已被中止 + The self-test has been aborted + 自检已被中止 - Error: Something went wrong - 错误:出了点问题 + Error: Something went wrong + 错误:出了点问题 - QDiskInfo needs root access in order to request a self-test! - QDiskInfo 需要 root 权限才能请求自检! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo 需要 root 权限才能请求自检! - remaining - 剩余 + remaining + 剩余 - completed - 已完成 + completed + 已完成 - Test Already Running - 自检已在运行 + Test Already Running + 自检已在运行 - A self-test is already being performed - 已有正在运行的自检 + A self-test is already being performed + 已有正在运行的自检 - You can press the Ok button in order to abort the test that is currently running - 你可以按下 OK 按钮以中止正在运行的自检 + You can press the Ok button in order to abort the test that is currently running + 你可以按下 OK 按钮以中止正在运行的自检 - A self-test has been requested successfully - 已成功请求了自检 + A self-test has been requested successfully + 已成功请求了自检 - It will be completed after - 完成自检预计需要 + It will be completed after + 完成自检预计需要 - minutes - 分钟 + minutes + 分钟 - Clear Settings - 清除设置 + Clear Settings + 清除设置 - Are you sure you want to clear the settings saved on disk? - 您确定要清除磁盘上保存的设置吗? + Are you sure you want to clear the settings saved on disk? + 您确定要清除磁盘上保存的设置吗? - + diff --git a/translations/qdiskinfo_zh_TW.ts b/translations/qdiskinfo_zh_TW.ts index 3eab996..37524b4 100644 --- a/translations/qdiskinfo_zh_TW.ts +++ b/translations/qdiskinfo_zh_TW.ts @@ -1,449 +1,445 @@ - + GridView - Grid View - Grid View + Grid View + Grid View - Search for a disk... - Search for a disk... + Search for a disk... + Search for a disk... - - + + MainWindow - QDiskInfo - QDiskInfo + QDiskInfo + QDiskInfo - <html><head/><body><p align="center">Health Status</p></body></html> - <html><head/><body><p align="center">健康狀態</p></body></html> + <html><head/><body><p align="center">Health Status</p></body></html> + <html><head/><body><p align="center">健康狀態</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;">良好</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;">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;">良好</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">溫度</p></body></html> + <html><head/><body><p align="center">Temperature</p></body></html> + <html><head/><body><p align="center">溫度</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> + <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 - 序列號 + Serial Number + 序列號 - Protocol - 通訊協議 + Protocol + 通訊協議 - Device Node - 設備節點 + Device Node + 設備節點 - <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;">良好 100 %</span></p></body></html> + <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;">良好 100 %</span></p></body></html> - Type - 類型 + Type + 類型 - Total Host Reads - 主機總計讀取 + Total Host Reads + 主機總計讀取 - Total Host Writes - 主機總計寫入 + Total Host Writes + 主機總計寫入 - Rotation Rate - 轉速 + Rotation Rate + 轉速 - Power On Count - 通電次數 + Power On Count + 通電次數 - Power On Hours - 通電時間 + Power On Hours + 通電時間 - <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;">硬碟名稱</span></p></body></html> + <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;">硬碟名稱</span></p></body></html> - File - 檔案 + File + 檔案 - Settings - 設定 + Settings + 設定 - &Help - &幫助 + &Help + &幫助 - De&vice - &設備 + De&vice + &設備 - Disk - 磁碟 + Disk + 磁碟 - &Quit - &離開 + &Quit + &離開 - &Refresh Devices - &刷新設備 + &Refresh Devices + &刷新設備 - &GitHub - &GitHub + &GitHub + &GitHub - &About QDiskInfo - &關於 QDiskInfo + &About QDiskInfo + &關於 QDiskInfo - &Ignore C4 (Reallocated Event Count) - &忽略 C4 (重新分配事件計數) + &Ignore C4 (Reallocated Event Count) + &忽略 C4 (重新分配事件計數) - &Convert Raw values to HEX - &轉換原始值成十六進制 + &Convert Raw values to HEX + &轉換原始值成十六進制 - &Use Fahrenheit - &使用 華氏溫度 + &Use Fahrenheit + &使用 華氏溫度 - Self Test - 自我檢測 + Self Test + 自我檢測 - Cyclic &Navigation - 循環 &導航 + Cyclic &Navigation + 循環 &導航 - Use &GB instead of TB - 使用 &GB 而不是 TB + Use &GB instead of TB + 使用 &GB 而不是 TB - About &Qt - 關於 &Qt + About &Qt + 關於 &Qt - Start Self Test - 自檢開始 + Start Self Test + 自檢開始 - Self Test Log - 自檢記錄 + Self Test Log + 自檢記錄 - Critical Warning - 嚴重警告 + Critical Warning + 嚴重警告 - Grown Defect List - 缺陷磁區列表 + Grown Defect List + 缺陷磁區列表 - Good - + Good + - Caution - 警告 + Caution + 警告 - Bad - 不良 + Bad + 不良 - Unknown - 未知 + Unknown + 未知 - Status - 狀態 + Status + 狀態 - count - 次數 + count + 次數 - hours - 小時 + hours + 小時 - Short - + Short + - Conveyance - 轉移 + Conveyance + 轉移 - Extended - 擴充 + Extended + 擴充 - Min.) - 分鐘) + Min.) + 分鐘) - Read - 讀取 + Read + 讀取 - Write - 寫入 + Write + 寫入 - Verify - 校驗 + Verify + 校驗 - ID - ID + ID + ID - Attribute Name - 屬性名稱 + Attribute Name + 屬性名稱 - Raw Values - 原始值 + Raw Values + 原始值 - Available spare capacity has fallen below the threshold - 可用備用容量降至閾值以下 + Available spare capacity has fallen below the threshold + 可用備用容量降至閾值以下 - Temperature error (Overheat or Overcool) - 溫度錯誤 (過熱或過冷) + Temperature error (Overheat or Overcool) + 溫度錯誤 (過熱或過冷) - NVM subsystem reliability has been degraded - NVM子系統的可靠度已下降 + NVM subsystem reliability has been degraded + NVM子系統的可靠度已下降 - Media has been placed in Read Only Mode - 媒體已置於唯讀模式 + Media has been placed in Read Only Mode + 媒體已置於唯讀模式 - Volatile memory backup device has Failed - 揮發性記憶體備份設備發生故障 + Volatile memory backup device has Failed + 揮發性記憶體備份設備發生故障 - Persistent memory region has become Read-Only - 持久記憶體區域已變為唯讀 + Persistent memory region has become Read-Only + 持久記憶體區域已變為唯讀 - Current - 當前值 + Current + 當前值 - Worst - 最差值 + Worst + 最差值 - Threshold - 臨界值 + Threshold + 臨界值 - Empty JSON - 空 JSON + Empty JSON + 空 JSON - The JSON is empty - JSON 為空 + The JSON is empty + JSON 為空 - Save JSON - 存成 JSON + Save JSON + 存成 JSON - JSON (*.json);;All Files (*) - JSON (*.json);;所有檔案 (*) + JSON (*.json);;All Files (*) + JSON (*.json);;所有檔案 (*) - Unable to open file for writing - 無法開啟檔案進行寫入 + Unable to open file for writing + 無法開啟檔案進行寫入 - An ATA and NVMe S.M.A.R.T. data viewer for Linux - 適用於 Linux 的 ATA 和 NVMe S.M.A.R.T. 數據檢視器 + An ATA and NVMe S.M.A.R.T. data viewer for Linux + 適用於 Linux 的 ATA 和 NVMe S.M.A.R.T. 數據檢視器 - Licensed under the GNU G.P.L. Version 3 - 根據 GNU G.P.L. 第3版 授權 + Licensed under the GNU G.P.L. Version 3 + 根據 GNU G.P.L. 第3版 授權 - Made by Samantas5855 - 由 Samantas5855 撰寫 + Made by Samantas5855 + 由 Samantas5855 撰寫 - Version - 版本 + Version + 版本 - About QDiskInfo - 關於 QDiskInfo + About QDiskInfo + 關於 QDiskInfo - About Qt - 關於 Qt + About Qt + 關於 Qt - Clear &Settings - Clear &Settings + Clear &Settings + Clear &Settings - ASCII View - ASCII View + ASCII View + ASCII View - QDiskInfo Error - QDiskInfo 錯誤 + QDiskInfo Error + QDiskInfo 錯誤 - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo 需要 root 權限才能讀取 S.M.A.R.T. 數據! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo 需要 root 權限才能讀取 S.M.A.R.T. 數據! - Save Binary Data - Save Binary Data + Save Binary Data + Save Binary Data - Binary Files (*.bin);;All Files (*) - Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) + Binary Files (*.bin);;All Files (*) - Success - Success + Success + Success - Binary data saved successfully. - Binary data saved successfully. + Binary data saved successfully. + Binary data saved successfully. - &Save (JSON) - &Save (JSON) + &Save (JSON) + &Save (JSON) - Ctrl+T - Ctrl+T + Ctrl+T + Ctrl+T - Grid View - Grid View + Grid View + Grid View - Save (Image) - Save (Image) + Save (Image) + Save (Image) - Save Image - Save Image + Save Image + Save Image - PNG Files (*.png) - PNG Files (*.png) + PNG Files (*.png) + PNG Files (*.png) - - &Save JSON - &儲存 JSON - - - + + QObject - QDiskInfo Error - QDiskInfo 錯誤 + QDiskInfo Error + QDiskInfo 錯誤 - QDiskInfo needs root access in order to read S.M.A.R.T. data! - QDiskInfo 需要 root 權限才能讀取 S.M.A.R.T. 數據! + QDiskInfo needs root access in order to read S.M.A.R.T. data! + QDiskInfo 需要 root 權限才能讀取 S.M.A.R.T. 數據! - smartctl was not found, please install it! - 未能找到 smartctl,請安裝該相關套件! + smartctl was not found, please install it! + 未能找到 smartctl,請安裝該相關套件! - QDiskInfo needs root access in order to abort a self-test! - QDiskInfo 需要 root 權限才能中止自檢! + QDiskInfo needs root access in order to abort a self-test! + QDiskInfo 需要 root 權限才能中止自檢! - Test Requested - 已請求自檢 + Test Requested + 已請求自檢 - The self-test has been aborted - 已中止自檢 + The self-test has been aborted + 已中止自檢 - Error: Something went wrong - 錯誤:出了點問題 + Error: Something went wrong + 錯誤:出了點問題 - QDiskInfo needs root access in order to request a self-test! - QDiskInfo 需要 root 權限才能請求自檢! + QDiskInfo needs root access in order to request a self-test! + QDiskInfo 需要 root 權限才能請求自檢! - remaining - 剩餘 + remaining + 剩餘 - completed - 已完成 + completed + 已完成 - Test Already Running - 自檢已在執行 + Test Already Running + 自檢已在執行 - A self-test is already being performed - 已有正在執行的自檢 + A self-test is already being performed + 已有正在執行的自檢 - You can press the Ok button in order to abort the test that is currently running - 你可以按下 Ok 得以中止正在執行的自檢 + You can press the Ok button in order to abort the test that is currently running + 你可以按下 Ok 得以中止正在執行的自檢 - A self-test has been requested successfully - 已成功請求了自檢 + A self-test has been requested successfully + 已成功請求了自檢 - It will be completed after - 完成自檢估計需要 + It will be completed after + 完成自檢估計需要 - minutes - 分鐘 + minutes + 分鐘 - Clear Settings - Clear Settings + Clear Settings + Clear Settings - Are you sure you want to clear the settings saved on disk? - Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? + Are you sure you want to clear the settings saved on disk? - +